diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 5339134e5..2dc8462b1 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,4 +1,30 @@ == Changelog == += 2.8 - 2022-05-05 = +* FEATURE: Added refunds buttons for Stripe and Paypal Express orders. #1948 (@JarrydLong) +* FEATURE: Released Beta version of Stripe Checkout. Add `define('PMPRO_STRIPE_CHECKOUT_BETA_ENABLED', true);` to your wp-config.php to enable this gateway during the beta. #1923 (@dlparker1005) +* ENHANCEMENT: Introduced a new set of functions that handle cron-related tasks including: `pmpro_get_crons()` to get the list of PMPro registered crons. #1999 (@sc0ttkclark) +* ENHANCEMENT: New filter `pmpro_registered_crons` which you can register new crons to be handled by PMPro. They show up in the PMPro Site Health info and are automatically scheduled when they need to be. #1999 (@sc0ttkclark) +* ENHANCEMENT: Added an opt-in stats collection so we can get better insight on how people use Paid Memberships Pro. (@sc0ttkclark, @ideadude) +* ENHANCEMENT: Added Formal German translation files. #1926 +* ENHANCEMENT: Tracking library conflicts in Site Health, e.g. when other plugins are loading gateway libraries at the same time as PMPro. (@dparker1005) +* ENHANCEMENT: UI/UX improvements to the Orders admin area for list and single edit view. #2017 (@kimcoleman) +* ENHANCEMENT: Improved the UI for email template variables reference on the Settings > Email Templates admin page. #2018 (@kimcoleman) +* ENHANCEMENT: Various other UI improvements to the admin area. #2019 (@kimcoleman) +* ENHANCEMENT: Improved block names, descriptions, keywords, and organization for discover and usability. #2011 (@kimcoleman) +* ENHANCEMENT: Added "show_noaccess" as a setting on the Membership Required block for swapping in the appropriate content message. #2011 (@kimcoleman) +* ENHANCEMENT: Added filter 'pmpro_braintree_transaction_sale_array' to allow adding or adjusting of the sale transaction method. #2006 (@andrewlimaza) +* ENHANCEMENT: Moved the TOS input inside the label to support multiline i18n. #2002 (#mircobabini) +* ENHANCEMENT: Added new action `pmpro_checkout_after_tos` to output content after the TOS. #2003 (@mircobabini) +* ENHANCEMENT: Added filters to change gateway ipn/webhook logfile. #1996 (@mircobabini) +* ENHANCEMENT: Added filter to perform actions during PPHttpPost() method of the PayPal gateways. #1992 (@mircobabini) +* ENHANCEMENT: Added untranslated gateway identifiers to Site Health info. #1989 (@JarrydLong) +* BUG FIX/ENHANCEMENT: Fixed escaping and localization for many strings across the codebase. #1976 (@mircobabini) +* BUG FIX/ENHANCEMENT: Resolve admin area conflicts with other plugins using similar class names. #1991 (@sc0ttkclark) +* BUG FIX: Crons are now automatically rescheduled if they disappear form the cron schedule. #1999 (@sc0ttkclark, @mircobabini) +* BUG FIX: Resolved problems with PHP float precision and prevent passing along faulty floats to the gateway APIs. #1929 (@sc0ttkclark) +* BUG FIX: Fixed issue where TOS setting was not saving when using the PayFast gateway. #1990 (@andrewlimaza) +* BUG FIX: Fixed issue where the is_renewal() method didn't work during the pmpro_added_order hook. (@andrewlimaza) + = 2.7.5 - 2022-03-01 = * ENHANCEMENT: Now sending "name" separate from the "description" when creating customers for Stripe checkouts. (@ideadude) * ENHANCEMENT: You can now search the members list on specific user table columns or user meta fields by using a colon in your search term. These queries are faster than the default queries. The format is meta_key:meta_value (no backticks). You can also use login, nicename, email, url, or display_name as the meta_key and the users table will be searched against the related column. (@ideadude) diff --git a/adminpages/admin_footer.php b/adminpages/admin_footer.php index 841d6e63d..e5663ded2 100644 --- a/adminpages/admin_footer.php +++ b/adminpages/admin_footer.php @@ -1,2 +1,21 @@
+Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

', 'paid-memberships-pro' ), + [ + 'a' => [ + 'href' => [], + 'target' => [], + 'rel' => [], + ], + 'p' => [], + ] + ), + 'https://wordpress.org/support/plugin/paid-memberships-pro/reviews/?filter=5#new-post', + 'Paid Memberships Pro', + 'PMPro', + ); +?> diff --git a/adminpages/advancedsettings.php b/adminpages/advancedsettings.php index 451c53626..4bfc619d6 100644 --- a/adminpages/advancedsettings.php +++ b/adminpages/advancedsettings.php @@ -12,29 +12,29 @@ $msg = -1; $msgt = __("Are you sure you want to do that? Try again.", 'paid-memberships-pro' ); unset($_REQUEST['savesettings']); - } - + } + //get/set settings if(!empty($_REQUEST['savesettings'])) { // Dashboard settings. pmpro_setOption( 'hide_toolbar' ); pmpro_setOption( 'block_dashboard' ); - + // Message settings. // These use wp_kses for better security handling. $nonmembertext = wp_kses(wp_unslash($_POST['nonmembertext']), $allowedposttags); update_option('pmpro_nonmembertext', $nonmembertext); - + $notloggedintext = wp_kses(wp_unslash($_POST['notloggedintext']), $allowedposttags); update_option('pmpro_notloggedintext', $notloggedintext); - + $rsstext = wp_kses(wp_unslash($_POST['rsstext']), $allowedposttags); - update_option('pmpro_rsstext', $rsstext); - + update_option('pmpro_rsstext', $rsstext); + // Content settings. pmpro_setOption("filterqueries"); - pmpro_setOption("showexcerpts"); + pmpro_setOption("showexcerpts"); // Checkout settings. pmpro_setOption("tospage"); @@ -42,7 +42,7 @@ pmpro_setOption("recaptcha"); pmpro_setOption("recaptcha_version"); pmpro_setOption("recaptcha_publickey"); - pmpro_setOption("recaptcha_privatekey"); + pmpro_setOption("recaptcha_privatekey"); // Communication settings. pmpro_setOption("maxnotificationpriority"); @@ -50,9 +50,16 @@ // Other settings. pmpro_setOption("hideads"); + pmpro_setOption("wisdom_opt_out"); pmpro_setOption("hideadslevels"); pmpro_setOption("redirecttosubscription"); - pmpro_setOption("uninstall"); + pmpro_setOption("uninstall"); + + // Set up Wisdom tracking cron if needed. + if ( (int)pmpro_getOption("wisdom_opt_out") === 0 ) { + $wisdom_integration = PMPro_Wisdom_Integration::instance(); + $wisdom_integration->wisdom_tracker->schedule_tracking(); + } /** * Filter to add custom settings to the advanced settings page. @@ -63,7 +70,7 @@ if(!empty($setting['field_name'])) pmpro_setOption($setting['field_name']); } - + // Assume success. $msg = true; $msgt = __("Your advanced settings have been updated.", 'paid-memberships-pro' ); @@ -72,15 +79,15 @@ // Dashboard settings. $hide_toolbar = pmpro_getOption( 'hide_toolbar' ); $block_dashboard = pmpro_getOption( 'block_dashboard' ); - + // Message settings. $nonmembertext = pmpro_getOption("nonmembertext"); $notloggedintext = pmpro_getOption("notloggedintext"); $rsstext = pmpro_getOption("rsstext"); - + // Content settings. $filterqueries = pmpro_getOption('filterqueries'); - $showexcerpts = pmpro_getOption("showexcerpts"); + $showexcerpts = pmpro_getOption("showexcerpts"); // Checkout settings. $tospage = pmpro_getOption("tospage"); @@ -96,6 +103,7 @@ // Other settings. $hideads = pmpro_getOption("hideads"); + $wisdom_opt_out = (int)pmpro_getOption("wisdom_opt_out"); $hideadslevels = pmpro_getOption("hideadslevels"); if( is_multisite() ) { $redirecttosubscription = pmpro_getOption("redirecttosubscription"); @@ -130,9 +138,8 @@
- -


+

@@ -261,7 +268,7 @@ -

.

+

.

@@ -364,7 +371,7 @@ //insert ad code here } - + style="display: none;"> - + + + + + '; + echo '
' . sprintf( wp_kses( __( 'Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On.', 'paid-memberships-pro' ), $allowed_sbl_html ), 'https://www.paidmembershipspro.com/add-ons/pmpro-stripe-billing-limits/?utm_source=plugin&utm_medium=pmpro-membershiplevels&utm_campaign=add-ons&utm_content=stripe-billing-limits' ) . ''; } ?>

@@ -732,11 +733,9 @@ - +

-
- pmpro_discount_codes "; if( ! empty( $s ) ) { @@ -756,7 +755,7 @@

- + @@ -764,10 +763,6 @@
">

- -

- - -
+
+ +
+ +
+ +
+
-
@@ -413,7 +420,7 @@
+ + +

+ +

+

+ +

+

+ + . +

+
@@ -537,7 +569,7 @@ function pmpro_updateRecaptchaTRs() } pmpro_updateRecaptchaTRs(); - +

diff --git a/adminpages/discountcodes.php b/adminpages/discountcodes.php index 7c304cd8a..3070ebf3d 100644 --- a/adminpages/discountcodes.php +++ b/adminpages/discountcodes.php @@ -357,7 +357,7 @@ } if( ! empty( $pmpro_msg ) && ! empty( $expiration_warning_flag ) ) { - $pmpro_msg .= ' ' . sprintf( __( 'WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here.', 'paid-memberships-pro' ), 'https://www.paidmembershipspro.com/important-notes-on-recurring-billing-and-expiration-dates-for-membership-levels/?utm_source=plugin&utm_medium=pmpro-discountcodes&utm_campaign=blog&utm_content=important-notes-on-recurring-billing-and-expiration-dates-for-membership-levels' ) . ''; + $pmpro_msg .= ' ' . sprintf( __( 'WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here.', 'paid-memberships-pro' ), 'https://www.paidmembershipspro.com/important-notes-on-recurring-billing-and-expiration-dates-for-membership-levels/?utm_source=plugin&utm_medium=pmpro-discountcodes&utm_campaign=blog&utm_content=important-notes-on-recurring-billing-and-expiration-dates-for-membership-levels' ) . ''; if( $pmpro_msgt == 'success' ) { $pmpro_msgt = 'warning'; @@ -640,9 +640,10 @@ 'href' => array(), 'target' => array(), 'title' => array(), + 'rel' => array(), ), ); - echo '
' . sprintf( wp_kses( __( 'Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On.', 'paid-memberships-pro' ), $allowed_sbl_html ), 'https://www.paidmembershipspro.com/add-ons/pmpro-stripe-billing-limits/?utm_source=plugin&utm_medium=pmpro-membershiplevels&utm_campaign=add-ons&utm_content=stripe-billing-limits' ) . '
+
- - - - - - + + + + + - @@ -804,9 +805,8 @@ $uses = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->pmpro_discount_codes_uses WHERE code_id = %d", $code->id ) ); ?> id ) ) { ?> class="pmpro_error"> - - - - - -
+
id?> - code?> + + code?>
sprintf( + // translators: %s is the Order ID. + __( 'ID: %s', 'paid-memberships-pro' ), + esc_attr( $code->id ), + ), 'edit' => sprintf( '%3$s', esc_attr__( 'Edit', 'paid-memberships-pro' ), @@ -911,13 +916,13 @@ ?>
+ starts)?> + expires)?> + uses > 0) echo "" . (int)$uses . "/" . $code->uses; @@ -925,7 +930,7 @@ echo "" . (int)$uses . "/unlimited"; ?> + prepare(" SELECT l.id, l.name @@ -960,11 +965,17 @@ ?>
- - +
+
+ + + + +
+
diff --git a/adminpages/emailsettings.php b/adminpages/emailsettings.php index 9b4e57577..ddce1a919 100644 --- a/adminpages/emailsettings.php +++ b/adminpages/emailsettings.php @@ -81,9 +81,8 @@
- -


+

wordpress@yourdomain.com. You can update this from address using the fields below.', 'paid-memberships-pro' ) );?>

@@ -127,10 +126,11 @@ 'href' => array(), 'target' => array(), 'title' => array(), + 'rel' => array(), ), 'em' => array(), ); - echo sprintf( wp_kses( __( 'If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro.', 'paid-memberships-pro' ), $allowed_email_troubleshooting_html ), 'https://www.paidmembershipspro.com/troubleshooting-email-issues-sending-sent-spam-delivery-delays/?utm_source=plugin&utm_medium=pmpro-emailsettings&utm_campaign=blog&utm_content=email-troubleshooting', 'https://www.paidmembershipspro.com/documentation/member-communications/email-delivery-sendwp/?utm_source=plugin&utm_medium=pmpro-emailsettings&utm_campaign=documentation&utm_content=sendwp' ); + echo sprintf( wp_kses( __( 'If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro.', 'paid-memberships-pro' ), $allowed_email_troubleshooting_html ), 'https://www.paidmembershipspro.com/troubleshooting-email-issues-sending-sent-spam-delivery-delays/?utm_source=plugin&utm_medium=pmpro-emailsettings&utm_campaign=blog&utm_content=email-troubleshooting', 'https://www.paidmembershipspro.com/documentation/member-communications/email-delivery-sendwp/?utm_source=plugin&utm_medium=pmpro-emailsettings&utm_campaign=documentation&utm_content=sendwp' ); ?>

" . __( 'View Your SendWP Account', 'paid-memberships-pro' ) . ""; + $connected = __( 'Your site is connected to SendWP.', 'paid-memberships-pro' ) . " " . __( 'View Your SendWP Account', 'paid-memberships-pro' ) . ""; $disconnected = ' ' . sprintf( __( 'Please enable email sending inside %s.', 'paid-memberships-pro' ), 'SendWP Settings' ); ?>

diff --git a/adminpages/emailtemplates.php b/adminpages/emailtemplates.php index e69f324e1..833c95ace 100644 --- a/adminpages/emailtemplates.php +++ b/adminpages/emailtemplates.php @@ -16,10 +16,8 @@ ?> - -


- +

@@ -111,90 +109,79 @@
-

+

- + +

+
+ + __( 'Display Name (Profile/Edit User > Display name publicly as)', 'paid-memberships-pro' ), + '!!user_login!!' => __( 'Username', 'paid-memberships-pro' ), + '!!sitename!!' => __( 'Site Title', 'paid-memberships-pro' ), + '!!siteemail!!' => __( 'Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)', 'paid-memberships-pro' ), + '!!membership_id!!' => __( 'Membership Level ID', 'paid-memberships-pro' ), + '!!membership_level_name!!' => __( 'Membership Level Name', 'paid-memberships-pro' ), + '!!membership_change!!' => __( 'Membership Level Change', 'paid-memberships-pro' ), + '!!membership_expiration!!' => __( 'Membership Level Expiration', 'paid-memberships-pro' ), + '!!startdate!!' => __( 'Membership Start Date', 'paid-memberships-pro' ), + '!!enddate!!' => __( 'Membership End Date', 'paid-memberships-pro' ), + '!!display_name!!' => __( 'Display Name (Profile/Edit User > Display name publicly as)', 'paid-memberships-pro' ), + '!!user_email!!' => __( 'User Email', 'paid-memberships-pro' ), + '!!login_url!!' => __( 'Login URL', 'paid-memberships-pro' ), + '!!levels_url!!' => __( 'Membership Levels Page URL', 'paid-memberships-pro' ), + ]; + + foreach ( $email_variables as $email_variable => $description ) { + ?> + + + + + + +
+ +

+ - - - - - - - - + __( 'Billing Info Complete Address', 'paid-memberships-pro' ), + '!!billing_name!!' => __( 'Billing Info Name', 'paid-memberships-pro' ), + '!!billing_street!!' => __( 'Billing Info Street Address', 'paid-memberships-pro' ), + '!!billing_city!!' => __( 'Billing Info City', 'paid-memberships-pro' ), + '!!billing_state!!' => __( 'Billing Info State', 'paid-memberships-pro' ), + '!!billing_zip!!' => __( 'Billing Info ZIP Code', 'paid-memberships-pro' ), + '!!billing_country!!' => __( 'Billing Info Country', 'paid-memberships-pro' ), + '!!billing_phone!!' => __( 'Billing Info Phone #', 'paid-memberships-pro' ), + '!!cardtype!!' => __( 'Credit Card Type', 'paid-memberships-pro' ), + '!!accountnumber!!' => __( 'Credit Card Number (last 4 digits)', 'paid-memberships-pro' ), + '!!expirationmonth!!' => __( 'Credit Card Expiration Month (mm format)', 'paid-memberships-pro' ), + '!!expirationyear!!' => __( 'Credit Card Expiration Year (yyyy format)', 'paid-memberships-pro' ), + '!!membership_cost!!' => __( 'Membership Level Cost Text', 'paid-memberships-pro' ), + '!!instructions!!' => __( 'Payment Instructions (used in Checkout - Email Template)', 'paid-memberships-pro' ), + '!!invoice_id!!' => __( 'Invoice ID', 'paid-memberships-pro' ), + '!!invoice_total!!' => __( 'Invoice Total', 'paid-memberships-pro' ), + '!!invoice_date!!' => __( 'Invoice Date', 'paid-memberships-pro' ), + '!!invoice_url!!' => __( 'Invoice Page URL', 'paid-memberships-pro' ), + '!!discount_code!!' => __( 'Discount Code Applied', 'paid-memberships-pro' ), + '!!membership_level_confirmation_message!!' => __( 'Custom Level Confirmation Message', 'paid-memberships-pro' ), + ]; + + foreach ( $email_variables as $email_variable => $description ) { + ?> + + + + +
- - - __( 'Display Name (Profile/Edit User > Display name publicly as)', 'paid-memberships-pro' ), - '!!user_login!!' => __( 'Username', 'paid-memberships-pro' ), - '!!sitename!!' => __( 'Site Title', 'paid-memberships-pro' ), - '!!siteemail!!' => __( 'Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)', 'paid-memberships-pro' ), - '!!membership_id!!' => __( 'Membership Level ID', 'paid-memberships-pro' ), - '!!membership_level_name!!' => __( 'Membership Level Name', 'paid-memberships-pro' ), - '!!membership_change!!' => __( 'Membership Level Change', 'paid-memberships-pro' ), - '!!membership_expiration!!' => __( 'Membership Level Expiration', 'paid-memberships-pro' ), - '!!startdate!!' => __( 'Membership Start Date', 'paid-memberships-pro' ), - '!!enddate!!' => __( 'Membership End Date', 'paid-memberships-pro' ), - '!!display_name!!' => __( 'Display Name (Profile/Edit User > Display name publicly as)', 'paid-memberships-pro' ), - '!!user_email!!' => __( 'User Email', 'paid-memberships-pro' ), - '!!login_url!!' => __( 'Login URL', 'paid-memberships-pro' ), - '!!levels_url!!' => __( 'Membership Levels Page URL', 'paid-memberships-pro' ), - ]; - - foreach ( $email_variables as $email_variable => $description ) { - ?> - - - - - - -
-
- - - __( 'Billing Info Complete Address', 'paid-memberships-pro' ), - '!!billing_name!!' => __( 'Billing Info Name', 'paid-memberships-pro' ), - '!!billing_street!!' => __( 'Billing Info Street Address', 'paid-memberships-pro' ), - '!!billing_city!!' => __( 'Billing Info City', 'paid-memberships-pro' ), - '!!billing_state!!' => __( 'Billing Info State', 'paid-memberships-pro' ), - '!!billing_zip!!' => __( 'Billing Info ZIP Code', 'paid-memberships-pro' ), - '!!billing_country!!' => __( 'Billing Info Country', 'paid-memberships-pro' ), - '!!billing_phone!!' => __( 'Billing Info Phone #', 'paid-memberships-pro' ), - '!!cardtype!!' => __( 'Credit Card Type', 'paid-memberships-pro' ), - '!!accountnumber!!' => __( 'Credit Card Number (last 4 digits)', 'paid-memberships-pro' ), - '!!expirationmonth!!' => __( 'Credit Card Expiration Month (mm format)', 'paid-memberships-pro' ), - '!!expirationyear!!' => __( 'Credit Card Expiration Year (yyyy format)', 'paid-memberships-pro' ), - '!!membership_cost!!' => __( 'Membership Level Cost Text', 'paid-memberships-pro' ), - '!!instructions!!' => __( 'Payment Instructions (used in Checkout - Email Template)', 'paid-memberships-pro' ), - '!!invoice_id!!' => __( 'Invoice ID', 'paid-memberships-pro' ), - '!!invoice_total!!' => __( 'Invoice Total', 'paid-memberships-pro' ), - '!!invoice_date!!' => __( 'Invoice Date', 'paid-memberships-pro' ), - '!!invoice_url!!' => __( 'Invoice Page URL', 'paid-memberships-pro' ), - '!!discount_code!!' => __( 'Discount Code Applied', 'paid-memberships-pro' ), - '!!membership_level_confirmation_message!!' => __( 'Custom Level Confirmation Message', 'paid-memberships-pro' ), - - ]; - - foreach ( $email_variables as $email_variable => $description ) { - ?> - - - - - - -
-
diff --git a/adminpages/license.php b/adminpages/license.php index 36c42521c..1944aa395 100644 --- a/adminpages/license.php +++ b/adminpages/license.php @@ -40,6 +40,7 @@ if ( defined( 'PMPRO_DIR' ) ) { require_once( PMPRO_DIR . '/adminpages/admin_header.php' ); } ?> +

diff --git a/adminpages/membershiplevels.php b/adminpages/membershiplevels.php index 716a26955..035632a6e 100644 --- a/adminpages/membershiplevels.php +++ b/adminpages/membershiplevels.php @@ -166,7 +166,7 @@ } if( ! empty( $msgt ) && $ml_recurring && $ml_expiration ) { - $msgt .= ' ' . sprintf( __( 'WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here.', 'paid-memberships-pro' ), 'https://www.paidmembershipspro.com/important-notes-on-recurring-billing-and-expiration-dates-for-membership-levels/?utm_source=plugin&utm_medium=pmpro-membershiplevels&utm_campaign=blog&utm_content=important-notes-on-recurring-billing-and-expiration-dates-for-membership-levels' ) . ''; + $msgt .= ' ' . sprintf( __( 'WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here.', 'paid-memberships-pro' ), 'https://www.paidmembershipspro.com/important-notes-on-recurring-billing-and-expiration-dates-for-membership-levels/?utm_source=plugin&utm_medium=pmpro-membershiplevels&utm_campaign=blog&utm_content=important-notes-on-recurring-billing-and-expiration-dates-for-membership-levels' ) . ''; // turn success to errors if( $msg > 0 ) { @@ -259,7 +259,7 @@ - +

0) @@ -268,8 +268,6 @@ echo __("Add New Membership Level", 'paid-memberships-pro' ); ?>

-
-
array(), 'target' => array(), 'title' => array(), + 'rel' => array(), ), ); - echo '
' . sprintf( wp_kses( __( 'Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On.', 'paid-memberships-pro' ), $allowed_sbl_html ), 'https://www.paidmembershipspro.com/add-ons/pmpro-stripe-billing-limits/?utm_source=plugin&utm_medium=pmpro-membershiplevels&utm_campaign=add-ons&utm_content=stripe-billing-limits' ) . ''; + echo '
' . sprintf( wp_kses( __( 'Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On.', 'paid-memberships-pro' ), $allowed_sbl_html ), 'https://www.paidmembershipspro.com/add-ons/pmpro-stripe-billing-limits/?utm_source=plugin&utm_medium=pmpro-membershiplevels&utm_campaign=add-ons&utm_content=stripe-billing-limits' ) . ''; } ?>

@@ -501,9 +500,10 @@ 'href' => array(), 'target' => array(), 'title' => array(), + 'rel' => array(), ), ); - echo ' 

' . sprintf( wp_kses( __( 'Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On.', 'paid-memberships-pro' ), $allowed_sd_html ), 'https://www.paidmembershipspro.com/add-ons/subscription-delays/?utm_source=plugin&utm_medium=pmpro-membershiplevels&utm_campaign=add-ons&utm_content=subscription-delays' ) . '

'; + echo ' 

' . sprintf( wp_kses( __( 'Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On.', 'paid-memberships-pro' ), $allowed_sd_html ), 'https://www.paidmembershipspro.com/add-ons/subscription-delays/?utm_source=plugin&utm_medium=pmpro-membershiplevels&utm_campaign=add-ons&utm_content=subscription-delays' ) . '

'; } ?> > @@ -566,9 +566,10 @@ 'href' => array(), 'target' => array(), 'title' => array(), + 'rel' => array(), ), ); - echo ' 

' . sprintf( wp_kses( __( 'Optional: Allow more customizable expiration dates using the Set Expiration Date Add On.', 'paid-memberships-pro' ), $allowed_sed_html ), 'https://www.paidmembershipspro.com/add-ons/pmpro-expiration-date/?utm_source=plugin&utm_medium=pmpro-membershiplevels&utm_campaign=add-ons&utm_content=pmpro-expiration-date' ) . '

'; + echo ' 

' . sprintf( wp_kses( __( 'Optional: Allow more customizable expiration dates using the Set Expiration Date Add On.', 'paid-memberships-pro' ), $allowed_sed_html ), 'https://www.paidmembershipspro.com/add-ons/pmpro-expiration-date/?utm_source=plugin&utm_medium=pmpro-membershiplevels&utm_campaign=add-ons&utm_content=pmpro-expiration-date' ) . '

'; } ?> style="display: none;"> @@ -586,7 +587,7 @@

+
+

+ + + 0 ) { $order->getDiscountCode(); @@ -712,23 +833,15 @@ - - - - + } else { ?> - + @@ -737,7 +850,7 @@ - + +
- - MM -
+ / - YYYY +
0 ) { - echo esc_html( $order->status ); + echo esc_html( ucwords( $order->status ) ); } else { ?>
+
+

+ + - - - - - - + +
@@ -815,56 +933,21 @@ 0 ) { echo $order->subscription_transaction_id; - } else { - ?> - + } else { ?> + + is_renewal() ) { ?> + +

- 0 ) { - echo esc_html( date_i18n( get_option( 'date_format' ) . ' ' . get_option( 'time_format' ), $order->getTimestamp() ) ); - } else { - // set up date vars - if ( ! empty( $order->timestamp ) ) { - $timestamp = $order->getTimestamp(); - } else { - $timestamp = current_time( 'timestamp' ); - } - - $year = date( 'Y', $timestamp ); - $month = date( 'n', $timestamp ); - $day = date( 'j', $timestamp ); - $hour = date( 'H', $timestamp ); - $minute = date( 'i', $timestamp ); - $second = date( 's', $timestamp ); - ?> - - - - - : - - -
+
+

+ +

- + - +
@@ -1007,114 +1090,117 @@ ">

+ -
    -
  • - - +
    + + - + - + - - + + - + - + - - + + - + - - - - - + + + + - + - - + + + - + - pmpro_discount_codes "; - $sqlQuery .= "ORDER BY id DESC "; - $codes = $wpdb->get_results($sqlQuery, OBJECT); - if ( ! empty( $codes ) ) { ?> - + pmpro_discount_codes "; + $sqlQuery .= "ORDER BY id DESC "; + $codes = $wpdb->get_results($sqlQuery, OBJECT); + if ( ! empty( $codes ) ) { ?> + + - - + + - -
  • -
+ - - pmpro_membership_orders o LEFT JOIN $wpdb->users u ON o.user_id = u.ID LEFT JOIN $wpdb->pmpro_membership_levels l ON o.membership_id = l.id "; @@ -1322,44 +1401,54 @@ function pmpro_ShowMonthOrYear() { if ( $order_ids ) { ?> -

+
+ +
get_var( "SELECT id FROM $wpdb->pmpro_discount_codes LIMIT 1" ) ) { + $pmpro_discount_codes = true; + } else { + $pmpro_discount_codes = false; + } ?> -
+
+ + +
- - - + + - - - - - - - - + + + + + + + + + + nogateway = true; $order->getMemberOrderByID( $order_id ); $order->getUser(); ?> - - class="alternate"> - - + - - - - + - - - - - + + + + >
- id ); ?> - - code ); ?> -
+
+ code ); ?>
> 'pmpro_orders_nonce' ); + $refund_text = esc_html( + sprintf( + // translators: %s is the Order Code. + __( 'Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?', 'paid-memberships-pro' ), + str_replace( "'", '', $order->code ) + ) + ); + + $refund_nonce_url = wp_nonce_url( + add_query_arg( + [ + 'page' => 'pmpro-orders', + 'action' => 'refund_order', + 'refund' => $order->id, + ], + admin_url( 'admin.php' ) + ), + 'refund_order', + 'pmpro_orders_nonce' + ); + $actions = [ + 'id' => sprintf( + // translators: %s is the Order ID. + __( 'ID: %s', 'paid-memberships-pro' ), + esc_attr( $order->id ), + ), 'edit' => sprintf( '%3$s', esc_attr__( 'Edit', 'paid-memberships-pro' ), @@ -1413,7 +1528,7 @@ class="alternate"> ), esc_html__( 'Copy', 'paid-memberships-pro' ) ), - 'delete' => sprintf( + 'delete' => sprintf( '%3$s', esc_attr__( 'Delete', 'paid-memberships-pro' ), 'javascript:pmpro_askfirst(\'' . esc_js( $delete_text ) . '\', \'' . esc_js( $delete_nonce_url ) . '\'); void(0);', @@ -1442,6 +1557,15 @@ class="alternate"> ), ]; + if( pmpro_allowed_refunds( $order ) ) { + $actions['refund'] = sprintf( + '%3$s', + esc_attr__( 'Refund', 'paid-memberships-pro' ), + esc_js( 'javascript:pmpro_askfirst(' . wp_json_encode( $refund_text ) . ', ' . wp_json_encode( $refund_nonce_url ) . '); void(0);' ), + esc_html__( 'Refund', 'paid-memberships-pro' ) + ); + } + /** * Filter the extra actions for this user on this order. * @@ -1467,7 +1591,7 @@ class="alternate"> ?>
+ getUser(); ?> user ) ) { ?> user->user_login ); ?>
@@ -1479,56 +1603,84 @@ class="alternate">
+ membership_id ); if ( ! empty( $level ) ) { echo esc_html( $level->name ); } elseif ( $order->membership_id > 0 ) { ?> [] - - [] - total ) ); ?> - payment_type ) ) { - echo esc_html( $order->payment_type ) . '
'; - } - ?> - accountnumber ) ) { ?> - cardtype ); ?>: xaccountnumber ) ); ?>
- - billing->name ) ) { ?> - billing->name ); ?>
- - billing->street ) ) { ?> - billing->street ); ?>
- billing->city && $order->billing->state ) { ?> - billing->city ); ?>, billing->state ); ?> billing->zip ); ?> - billing->country ) ) { - echo esc_html( $order->billing->country ); } - ?> -
- - +
total ) ); ?> billing->phone ) ) { - echo esc_html( formatPhone( $order->billing->phone ) ); - } + // Build our return variable. + $r = ''; + + if ( ! empty( $order->payment_type ) ) { + if ( in_array( $order->payment_type, array( 'PayPal Standard', 'PayPal Express' ) ) ) { + $r .= esc_html( 'PayPal', 'paid-memberships-pro' ); + } else { + $r .= esc_html( ucwords( $order->payment_type ) ); + } + $r .= '
'; + } + + if ( ! empty( $order->accountnumber ) ) { + $r .= esc_html( $order->cardtype ) . ': x' . esc_html( last4( $order->accountnumber ) ) . '
'; + } + + if ( ! empty( $order->billing->name ) ) { + $r .= esc_html( $order->billing->name ) . '
'; + } + + if ( ! empty( $order->billing->street ) ) { + $r .= esc_html( $order->billing->street ) . '
'; + } + + if ( $order->billing->city && $order->billing->state ) { + $r .= esc_html( $order->billing->city ) . ', '; + $r .= esc_html( $order->billing->state ) . ' '; + $r .= esc_html( $order->billing->zip ) . ' '; + if ( ! empty( $order->billing->country ) ) { + $r .= esc_html( $order->billing->country ); + } + } + + if ( ! empty( $order->billing->phone ) ) { + $r .= '
' . esc_html( formatPhone( $order->billing->phone ) ); + } + + // If this column is completely empty, set $r to a dash. + if ( empty( $r ) ) { + $r .= esc_html( '—', 'paid-memberships-pro' ); + } + + // Echo the data for this column. + echo $r; ?>
gateway; ?> + gateway_environment == 'test' ) { - echo '(test)'; - } + if ( ! empty( $order->gateway ) ) { + if ( ! empty( $pmpro_gateways[$order->gateway] ) ) { + echo $pmpro_gateways[$order->gateway]; + } else { + esc_html_e( ucwords( $order->gateway ) ); + } + if ( $order->gateway_environment == 'sandbox' ) { + echo ' (test)'; + } + } else { + esc_html_e( '—', 'paid-memberships-pro' ); + } ?> + : payment_transaction_id ) ) { @@ -1547,18 +1699,38 @@ class="alternate"> } ?> status ); if( $order->is_renewal() ){ echo "
(".__( 'renewal', 'paid-memberships-pro' ).")"; } ?>
- getTimestamp() ) ); ?>
- getTimestamp() ) ); ?> -
- getDiscountCode() ) { ?> - - discount_code->code ); ?> - + + + status, array( 'success', 'cancelled' ) ) ) { + esc_html_e( 'Paid', 'paid-memberships-pro' ); + } else { + esc_html_e( ucwords( $order->status ) ); + } ?> + + is_renewal() ) { ?> + + getTimestamp() ) ), + esc_html( date_i18n( get_option( 'time_format' ), $order->getTimestamp() ) ), + ) ); ?> + + getDiscountCode() ) { ?> + + discount_code->code ); ?> + + +
- - +
+
+ + + + +
+
" method="post" enctype="multipart/form-data"> - -


+

- +

&

-
-

' . esc_html__( 'Payment Gateway Settings', 'paid-memberships-pro' ) . ''; - $ssl_settings_link = '' . esc_html__( 'SSL', 'paid-memberships-pro' ) . ''; + $gateway_settings_link = '' . esc_html__( 'Payment Gateway Settings', 'paid-memberships-pro' ) . ''; + $ssl_settings_link = '' . esc_html__( 'SSL', 'paid-memberships-pro' ) . ''; // translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. printf( esc_html__('Learn more about %s and %s.', 'paid-memberships-pro' ), $gateway_settings_link, $ssl_settings_link ); ?>

@@ -247,7 +245,7 @@ function pmpro_changeGateway() ()

pmpro_tax filter'; + $filter_link = 'pmpro_tax filter'; // translators: %s: A link to the docs for the pmpro_tax filter. printf( __('US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s.', 'paid-memberships-pro' ), $filter_link ); ?> @@ -294,7 +292,7 @@ function pmpro_changeGateway()

' . esc_html__( 'SSL Certificate', 'paid-memberships-pro' ) . ''; + $ssl_certificate_link = '' . esc_html__( 'SSL Certificate', 'paid-memberships-pro' ) . ''; // translators: %s: Link to SSL Certificate docs. printf( esc_html__('Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript.', 'paid-memberships-pro' ), $ssl_certificate_link ); ?> diff --git a/adminpages/reports.php b/adminpages/reports.php index 523034c51..165b0b9c7 100644 --- a/adminpages/reports.php +++ b/adminpages/reports.php @@ -8,14 +8,17 @@ /** * Load the Paid Memberships Pro dashboard-area header */ -require_once( dirname( __FILE__ ) . '/admin_header.php' ); +require_once( dirname( __FILE__ ) . '/admin_header.php' ); ?> +


+ + - +

-

-
    -
  • - -
  • -
+ - + + +
+ users u LEFT JOIN $wpdb->usermeta um ON u.ID = um.user_id LEFT JOIN $wpdb->pmpro_memberships_users mu ON u.ID = mu.user_id AND mu.status = 'active' LEFT JOIN $wpdb->pmpro_membership_levels m ON mu.membership_id = m.id WHERE (u.user_login LIKE '%" . esc_sql($s) . "%' OR u.user_email LIKE '%" . esc_sql($s) . "%' OR um.meta_value LIKE '%" . esc_sql($s) . "%') "; - - if($l == "all") - $sqlQuery .= " AND mu.status = 'active' AND mu.membership_id > 0 "; - elseif($l) - $sqlQuery .= " AND mu.membership_id = '" . esc_sql($l) . "' "; + if(isset($_REQUEST['limit'])) + $limit = intval($_REQUEST['limit']); + else + $limit = 15; + + $end = $pn * $limit; + $start = $end - $limit; + + if($s) + { + $sqlQuery = "SELECT SQL_CALC_FOUND_ROWS u.ID, u.user_login, u.user_email, UNIX_TIMESTAMP(CONVERT_TZ(u.user_registered, '+00:00', @@global.time_zone)) as joindate, mu.membership_id, mu.initial_payment, mu.billing_amount, mu.cycle_period, mu.cycle_number, mu.billing_limit, mu.trial_amount, mu.trial_limit, UNIX_TIMESTAMP(CONVERT_TZ(mu.startdate, '+00:00', @@global.time_zone)) as startdate, UNIX_TIMESTAMP(CONVERT_TZ(mu.enddate, '+00:00', @@global.time_zone)) as enddate, m.name as membership FROM $wpdb->users u LEFT JOIN $wpdb->usermeta um ON u.ID = um.user_id LEFT JOIN $wpdb->pmpro_memberships_users mu ON u.ID = mu.user_id AND mu.status = 'active' LEFT JOIN $wpdb->pmpro_membership_levels m ON mu.membership_id = m.id WHERE (u.user_login LIKE '%" . esc_sql($s) . "%' OR u.user_email LIKE '%" . esc_sql($s) . "%' OR um.meta_value LIKE '%" . esc_sql($s) . "%') "; + + if($l == "all") + $sqlQuery .= " AND mu.status = 'active' AND mu.membership_id > 0 "; + elseif($l) + $sqlQuery .= " AND mu.membership_id = '" . esc_sql($l) . "' "; + + $sqlQuery .= "GROUP BY u.ID ORDER BY user_registered DESC LIMIT $start, $limit"; + } + else + { + $sqlQuery = "SELECT SQL_CALC_FOUND_ROWS u.ID, u.user_login, u.user_email, UNIX_TIMESTAMP(CONVERT_TZ(u.user_registered, '+00:00', @@global.time_zone)) as joindate, mu.membership_id, mu.initial_payment, mu.billing_amount, mu.cycle_period, mu.cycle_number, mu.billing_limit, mu.trial_amount, mu.trial_limit, UNIX_TIMESTAMP(CONVERT_TZ(mu.startdate, '+00:00', @@global.time_zone)) as startdate, UNIX_TIMESTAMP(CONVERT_TZ(mu.enddate, '+00:00', @@global.time_zone)) as enddate, m.name as membership FROM $wpdb->users u LEFT JOIN $wpdb->pmpro_memberships_users mu ON u.ID = mu.user_id AND mu.status = 'active' LEFT JOIN $wpdb->pmpro_membership_levels m ON mu.membership_id = m.id"; + $sqlQuery .= " WHERE 1=1 "; + + if($l == "all") + $sqlQuery .= " AND mu.membership_id > 0 AND mu.status = 'active' "; + elseif($l) + $sqlQuery .= " AND mu.membership_id = '" . esc_sql($l) . "' "; + $sqlQuery .= "GROUP BY u.ID ORDER BY user_registered DESC LIMIT $start, $limit"; + } + + $sqlQuery = apply_filters("pmpro_members_list_sql", $sqlQuery); - $sqlQuery .= "GROUP BY u.ID ORDER BY user_registered DESC LIMIT $start, $limit"; - } - else - { - $sqlQuery = "SELECT SQL_CALC_FOUND_ROWS u.ID, u.user_login, u.user_email, UNIX_TIMESTAMP(CONVERT_TZ(u.user_registered, '+00:00', @@global.time_zone)) as joindate, mu.membership_id, mu.initial_payment, mu.billing_amount, mu.cycle_period, mu.cycle_number, mu.billing_limit, mu.trial_amount, mu.trial_limit, UNIX_TIMESTAMP(CONVERT_TZ(mu.startdate, '+00:00', @@global.time_zone)) as startdate, UNIX_TIMESTAMP(CONVERT_TZ(mu.enddate, '+00:00', @@global.time_zone)) as enddate, m.name as membership FROM $wpdb->users u LEFT JOIN $wpdb->pmpro_memberships_users mu ON u.ID = mu.user_id AND mu.status = 'active' LEFT JOIN $wpdb->pmpro_membership_levels m ON mu.membership_id = m.id"; - $sqlQuery .= " WHERE 1=1 "; - - if($l == "all") - $sqlQuery .= " AND mu.membership_id > 0 AND mu.status = 'active' "; - elseif($l) - $sqlQuery .= " AND mu.membership_id = '" . esc_sql($l) . "' "; - $sqlQuery .= "GROUP BY u.ID ORDER BY user_registered DESC LIMIT $start, $limit"; - } + $theusers = $wpdb->get_results($sqlQuery); + $totalrows = $wpdb->get_var("SELECT FOUND_ROWS() as found_rows"); - $sqlQuery = apply_filters("pmpro_members_list_sql", $sqlQuery); - - $theusers = $wpdb->get_results($sqlQuery); - $totalrows = $wpdb->get_var("SELECT FOUND_ROWS() as found_rows"); - - if($theusers) - { - ?> -

found. - + if($theusers) + { + ?> + found. + +

+
+
@@ -196,22 +196,22 @@ function pmpro_report_login_page() - + - - + ID); + //get meta + $theuser = get_userdata($auser->ID); $visits = pmpro_reports_get_values_for_user("visits", $auser->ID); $views = pmpro_reports_get_values_for_user("views", $auser->ID); $logins = pmpro_reports_get_values_for_user("logins", $auser->ID); - + if(empty($logins)) $logins = array("last"=>"N/A", "week"=>"N/A", "month"=>"N/A", "ytd"=>"N/A", "alltime"=>"N/A"); ?> @@ -224,17 +224,17 @@ function pmpro_report_login_page() $userlink = '' . $theuser->user_login . ''; $userlink = apply_filters("pmpro_members_list_user_link", $userlink, $theuser); echo $userlink; - ?> + ?> - + - + @@ -267,7 +267,7 @@ function pmpro_report_login_page() + ?>
display_name;?> membership?>membership?> user_registered ), current_time( 'timestamp' ) ) ); ?> - enddate) echo date_i18n(get_option('date_format'), $auser->enddate); else @@ -258,7 +258,7 @@ function pmpro_report_login_page()
@@ -382,7 +382,7 @@ function pmpro_reports_get_all_values($type) { $allvalues['thismonth'] = $thismonth; $update = true; } - + if(!isset($allvalues['thisyear']) || $thisyear != $allvalues['thisyear']) { $allvalues['ytd'] = 0; @@ -451,7 +451,7 @@ function pmpro_report_track_values($type, $user_id = NULL) { $values['week'] = 1; $values['thisweek'] = $thisweek; } - + if($thismonth == $values['thismonth']) $values['month'] = $values['month'] + 1; else @@ -459,15 +459,15 @@ function pmpro_report_track_values($type, $user_id = NULL) { $values['month'] = 1; $values['thismonth'] = $thismonth; } - + if($thisyear == $values['thisyear']) $values['ytd'] = $values['ytd'] + 1; else { $values['ytd'] = 1; $values['thisyear'] = $thisyear; - } - + } + //update user data update_user_meta($user_id, "pmpro_" . $type, $values); } diff --git a/adminpages/reports/memberships.php b/adminpages/reports/memberships.php index f86e43e9a..f1fba6153 100644 --- a/adminpages/reports/memberships.php +++ b/adminpages/reports/memberships.php @@ -326,65 +326,64 @@ function pmpro_report_memberships_page()

-
    -
  • - - - - - - - - + + + + + + + + + + - pmpro_discount_codes "; - $sqlQuery .= "ORDER BY id DESC "; - $codes = $wpdb->get_results($sqlQuery, OBJECT); - if ( ! empty( $codes ) ) { ?> - + + pmpro_discount_codes "; + $sqlQuery .= "ORDER BY id DESC "; + $codes = $wpdb->get_results($sqlQuery, OBJECT); + if ( ! empty( $codes ) ) { ?> + - - -
  • -
+ + + + + +
+
diff --git a/adminpages/reports/sales.php b/adminpages/reports/sales.php index 02134aa8a..11cc8af7a 100644 --- a/adminpages/reports/sales.php +++ b/adminpages/reports/sales.php @@ -358,6 +358,7 @@ function pmpro_report_sales_page() +
diff --git a/blocks/account-invoices-section/block.js b/blocks/account-invoices-section/block.js index 5a74e696b..d9899f3f5 100644 --- a/blocks/account-invoices-section/block.js +++ b/blocks/account-invoices-section/block.js @@ -19,15 +19,24 @@ export default registerBlockType( 'pmpro/account-invoices-section', { - title: __( 'Membership Account: Invoices', 'paid-memberships-pro' ), - description: __( 'Displays the member\'s invoices.', 'paid-memberships-pro' ), - category: 'pmpro', + title: __( 'PMPro Page: Account Invoices', 'paid-memberships-pro' ), + description: __( 'Dynamic page section that displays a list of the last 5 membership invoices for the active member.', 'paid-memberships-pro' ), + category: 'pmpro-pages', icon: { - background: '#2997c8', - foreground: '#ffffff', + background: '#FFFFFF', + foreground: '#1A688B', src: 'archive', }, - keywords: [ __( 'pmpro', 'paid-memberships-pro' ) ], + keywords: [ + __( 'account', 'paid-memberships-pro' ), + __( 'member', 'paid-memberships-pro' ), + __( 'order', 'paid-memberships-pro' ), + __( 'paid memberships pro', 'paid-memberships-pro' ), + __( 'pmpro', 'paid-memberships-pro' ), + __( 'purchases', 'paid-memberships-pro' ), + __( 'receipt', 'paid-memberships-pro' ), + __( 'user', 'paid-memberships-pro' ), + ], supports: { }, attributes: { diff --git a/blocks/account-links-section/block.js b/blocks/account-links-section/block.js index 6ee306b74..cc4884a29 100644 --- a/blocks/account-links-section/block.js +++ b/blocks/account-links-section/block.js @@ -19,15 +19,24 @@ export default registerBlockType( 'pmpro/account-links-section', { - title: __( 'Membership Account: Links', 'paid-memberships-pro' ), - description: __( 'Displays the member\'s member links. This block is only visible if other Add Ons or custom code have added links.', 'paid-memberships-pro' ), - category: 'pmpro', + title: __( 'PMPro Page: Account Links', 'paid-memberships-pro' ), + description: __( 'Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links.', 'paid-memberships-pro' ), + category: 'pmpro-pages', icon: { - background: '#2997c8', - foreground: '#ffffff', + background: '#FFFFFF', + foreground: '#1A688B', src: 'external', }, - keywords: [ __( 'pmpro', 'paid-memberships-pro' ) ], + keywords: [ + __( 'access', 'paid-memberships-pro' ), + __( 'account', 'paid-memberships-pro' ), + __( 'link', 'paid-memberships-pro' ), + __( 'member', 'paid-memberships-pro' ), + __( 'paid memberships pro', 'paid-memberships-pro' ), + __( 'pmpro', 'paid-memberships-pro' ), + __( 'quick link', 'paid-memberships-pro' ), + __( 'user', 'paid-memberships-pro' ), + ], supports: { }, attributes: { diff --git a/blocks/account-membership-section/block.js b/blocks/account-membership-section/block.js index d1b4a9b7e..41b0f8a59 100644 --- a/blocks/account-membership-section/block.js +++ b/blocks/account-membership-section/block.js @@ -19,15 +19,22 @@ export default registerBlockType( 'pmpro/account-membership-section', { - title: __( 'Membership Account: Memberships', 'paid-memberships-pro' ), - description: __( 'Displays the member\'s membership information.', 'paid-memberships-pro' ), - category: 'pmpro', + title: __( 'PMPro Page: Account Memberships', 'paid-memberships-pro' ), + description: __( 'Dynamic page section to display the member\'s active membership information with links to view all membership options, update billing information, and change or cancel membership.', 'paid-memberships-pro' ), + category: 'pmpro-pages', icon: { - background: '#2997c8', - foreground: '#ffffff', + background: '#FFFFFF', + foreground: '#1A688B', src: 'groups', }, - keywords: [ __( 'pmpro', 'paid-memberships-pro' ) ], + keywords: [ + __( 'active', 'paid-memberships-pro' ), + __( 'member', 'paid-memberships-pro' ), + __( 'paid memberships pro', 'paid-memberships-pro' ), + __( 'pmpro', 'paid-memberships-pro' ), + __( 'purchases', 'paid-memberships-pro' ), + __( 'user', 'paid-memberships-pro' ), + ], supports: { }, attributes: { diff --git a/blocks/account-page/block.js b/blocks/account-page/block.js index 4cce0ad7c..b2c1c2706 100644 --- a/blocks/account-page/block.js +++ b/blocks/account-page/block.js @@ -21,15 +21,29 @@ export default registerBlockType( 'pmpro/account-page', { - title: __( 'Membership Account Page', 'paid-memberships-pro' ), - description: __( 'Displays the sections of the Membership Account page as selected below.', 'paid-memberships-pro' ), - category: 'pmpro', + title: __( 'PMPro Page: Account (Full)', 'paid-memberships-pro' ), + description: __( 'Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks.', 'paid-memberships-pro' ), + category: 'pmpro-pages', icon: { - background: '#2997c8', - foreground: '#ffffff', + background: '#FFFFFF', + foreground: '#1A688B', src: 'admin-users', }, - keywords: [ __( 'pmpro', 'paid-memberships-pro' ) ], + keywords: [ + __( 'account', 'paid-memberships-pro' ), + __( 'billing', 'paid-memberships-pro' ), + __( 'invoice', 'paid-memberships-pro' ), + __( 'links', 'paid-memberships-pro' ), + __( 'member', 'paid-memberships-pro' ), + __( 'order', 'paid-memberships-pro' ), + __( 'paid memberships pro', 'paid-memberships-pro' ), + __( 'pmpro', 'paid-memberships-pro' ), + __( 'profile', 'paid-memberships-pro' ), + __( 'purchases', 'paid-memberships-pro' ), + __( 'quick link', 'paid-memberships-pro' ), + __( 'receipt', 'paid-memberships-pro' ), + __( 'user', 'paid-memberships-pro' ), + ], supports: { }, attributes: { diff --git a/blocks/account-profile-section/block.js b/blocks/account-profile-section/block.js index 5c1ae6402..8bed94b58 100644 --- a/blocks/account-profile-section/block.js +++ b/blocks/account-profile-section/block.js @@ -20,15 +20,21 @@ export default registerBlockType( 'pmpro/account-profile-section', { - title: __( 'Membership Account: Profile', 'paid-memberships-pro' ), - description: __( 'Displays the member\'s profile information.', 'paid-memberships-pro' ), - category: 'pmpro', + title: __( 'PMPro Page: Account Profile View', 'paid-memberships-pro' ), + description: __( 'Dynamic page section that displays the member\'s profile as read-only information with a link to edit fields or their change password.', 'paid-memberships-pro' ), + category: 'pmpro-pages', icon: { - background: '#2997c8', - foreground: '#ffffff', + background: '#FFFFFF', + foreground: '#1A688B', src: 'admin-users', }, - keywords: [ __( 'pmpro', 'paid-memberships-pro' ) ], + keywords: [ + __( 'fields', 'paid-memberships-pro' ), + __( 'member', 'paid-memberships-pro' ), + __( 'paid memberships pro', 'paid-memberships-pro' ), + __( 'pmpro', 'paid-memberships-pro' ), + __( 'user', 'paid-memberships-pro' ), + ], supports: { }, attributes: { diff --git a/blocks/billing-page/block.js b/blocks/billing-page/block.js index b5ad68cf6..7a152f3f0 100644 --- a/blocks/billing-page/block.js +++ b/blocks/billing-page/block.js @@ -19,15 +19,21 @@ export default registerBlockType( 'pmpro/billing-page', { - title: __( 'Membership Billing Page', 'paid-memberships-pro' ), - description: __( 'Displays the member\'s billing information and allows them to update the payment method.', 'paid-memberships-pro' ), - category: 'pmpro', + title: __( 'PMPro Page: Billing', 'paid-memberships-pro' ), + description: __( 'Dynamic page section to display the member\'s billing information. Members can update their subscription payment method from this form.', 'paid-memberships-pro' ), + category: 'pmpro-pages', icon: { - background: '#2997c8', - foreground: '#ffffff', + background: '#FFFFFF', + foreground: '#1A688B', src: 'list-view', }, - keywords: [ __( 'pmpro', 'paid-memberships-pro' ) ], + keywords: [ + __( 'credit card', 'paid-memberships-pro' ), + __( 'member', 'paid-memberships-pro' ), + __( 'paid memberships pro', 'paid-memberships-pro' ), + __( 'payment method', 'paid-memberships-pro' ), + __( 'pmpro', 'paid-memberships-pro' ), + ], supports: { }, attributes: { diff --git a/blocks/blocks.js b/blocks/blocks.js index 60aa74c8e..c3b95a5d9 100644 --- a/blocks/blocks.js +++ b/blocks/blocks.js @@ -108,4 +108,5 @@ import './login/block.js'; L5.33,4.91L9.46,3.96z"/> ; wp.blocks.updateCategory( 'pmpro', { icon: PMProSVG } ); + wp.blocks.updateCategory( 'pmpro-pages', { icon: PMProSVG } ); } )(); diff --git a/blocks/blocks.php b/blocks/blocks.php index bad8547eb..4c6f51d4b 100644 --- a/blocks/blocks.php +++ b/blocks/blocks.php @@ -40,6 +40,10 @@ function pmpro_place_blocks_in_panel( $categories, $post_or_context ) { 'slug' => 'pmpro', 'title' => __( 'Paid Memberships Pro', 'paid-memberships-pro' ), ), + array( + 'slug' => 'pmpro-pages', + 'title' => __( 'Paid Memberships Pro Pages', 'paid-memberships-pro' ), + ), ) ); } diff --git a/blocks/cancel-page/block.js b/blocks/cancel-page/block.js index ae8032bb5..caf8be4e1 100644 --- a/blocks/cancel-page/block.js +++ b/blocks/cancel-page/block.js @@ -19,15 +19,21 @@ export default registerBlockType( 'pmpro/cancel-page', { - title: __( 'Membership Cancel Page', 'paid-memberships-pro' ), - description: __( 'Generates the Membership Cancel page.', 'paid-memberships-pro' ), - category: 'pmpro', + title: __( 'PMPro Page: Cancel', 'paid-memberships-pro' ), + description: __( 'Dynamic page section where members can cancel their membership and active subscription if applicable.', 'paid-memberships-pro' ), + category: 'pmpro-pages', icon: { - background: '#2997c8', - foreground: '#ffffff', + background: '#FFFFFF', + foreground: '#1A688B', src: 'no', }, - keywords: [ __( 'pmpro', 'paid-memberships-pro' ) ], + keywords: [ + __( 'member', 'paid-memberships-pro' ), + __( 'paid memberships pro', 'paid-memberships-pro' ), + __( 'payment method', 'paid-memberships-pro' ), + __( 'pmpro', 'paid-memberships-pro' ), + __( 'terminate', 'paid-memberships-pro' ), + ], supports: { }, attributes: { diff --git a/blocks/checkout-button/block.js b/blocks/checkout-button/block.js index 92bb8f969..26a0a4b3d 100644 --- a/blocks/checkout-button/block.js +++ b/blocks/checkout-button/block.js @@ -29,17 +29,20 @@ export default registerBlockType( 'pmpro/checkout-button', { title: __( 'Membership Checkout Button', 'paid-memberships-pro' ), - description: __( 'Displays a button-styled link to Membership Checkout for the specified level.', 'paid-memberships-pro' ), + description: __( 'Inserts a button that links directly to membership checkout for the selected level.', 'paid-memberships-pro' ), category: 'pmpro', icon: { - background: '#2997c8', - foreground: '#ffffff', + background: '#FFFFFF', + foreground: '#658B24', src: 'migrate', }, - keywords: [ - __( 'pmpro', 'paid-memberships-pro' ), + keywords: [ __( 'buy', 'paid-memberships-pro' ), __( 'level', 'paid-memberships-pro' ), + __( 'member', 'paid-memberships-pro' ), + __( 'paid memberships pro', 'paid-memberships-pro' ), + __( 'pmpro', 'paid-memberships-pro' ), + __( 'purchase', 'paid-memberships-pro' ), ], supports: { }, diff --git a/blocks/checkout-page/block.js b/blocks/checkout-page/block.js index 91219b1ab..9a6897c1f 100644 --- a/blocks/checkout-page/block.js +++ b/blocks/checkout-page/block.js @@ -26,14 +26,21 @@ const { 'pmpro/checkout-page', { title: __( 'Membership Checkout Form', 'paid-memberships-pro' ), - description: __( 'Displays the Membership Checkout form.', 'paid-memberships-pro' ), + description: __( 'Dynamic form that allows users to complete free registration or paid checkout for the selected membership level.', 'paid-memberships-pro' ), category: 'pmpro', icon: { - background: '#2997c8', - foreground: '#ffffff', + background: '#FFFFFF', + foreground: '#658B24', src: 'list-view', }, - keywords: [ __( 'pmpro', 'paid-memberships-pro' ) ], + keywords: [ + __( 'member', 'paid-memberships-pro' ), + __( 'paid memberships pro', 'paid-memberships-pro' ), + __( 'pmpro', 'paid-memberships-pro' ), + __( 'buy', 'paid-memberships-pro' ), + __( 'purchase', 'paid-memberships-pro' ), + __( 'sell', 'paid-memberships-pro' ), + ], supports: { }, attributes: { diff --git a/blocks/confirmation-page/block.js b/blocks/confirmation-page/block.js index fe9adfe09..beae62af1 100644 --- a/blocks/confirmation-page/block.js +++ b/blocks/confirmation-page/block.js @@ -19,15 +19,23 @@ export default registerBlockType( 'pmpro/confirmation-page', { - title: __( 'Membership Confirmation Page', 'paid-memberships-pro' ), - description: __( 'Displays the member\'s Membership Confirmation after Membership Checkout.', 'paid-memberships-pro' ), - category: 'pmpro', + title: __( 'PMPro Page: Confirmation', 'paid-memberships-pro' ), + description: __( 'Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout.', 'paid-memberships-pro' ), + category: 'pmpro-pages', icon: { - background: '#2997c8', - foreground: '#ffffff', + background: '#FFFFFF', + foreground: '#1A688B', src: 'yes', }, - keywords: [ __( 'pmpro', 'paid-memberships-pro' ) ], + keywords: [ + __( 'member', 'paid-memberships-pro' ), + __( 'buy', 'paid-memberships-pro' ), + __( 'paid memberships pro', 'paid-memberships-pro' ), + __( 'pmpro', 'paid-memberships-pro' ), + __( 'purchase', 'paid-memberships-pro' ), + __( 'receipt', 'paid-memberships-pro' ), + __( 'success', 'paid-memberships-pro' ), + ], supports: { }, attributes: { diff --git a/blocks/invoice-page/block.js b/blocks/invoice-page/block.js index d3bd882f3..30b2129fb 100644 --- a/blocks/invoice-page/block.js +++ b/blocks/invoice-page/block.js @@ -19,15 +19,22 @@ export default registerBlockType( 'pmpro/invoice-page', { - title: __( 'Membership Invoice Page', 'paid-memberships-pro' ), - description: __( 'Displays the member\'s Membership Invoices.', 'paid-memberships-pro' ), - category: 'pmpro', + title: __( 'PMPro Page: Invoice', 'paid-memberships-pro' ), + description: __( 'Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail.', 'paid-memberships-pro' ), + category: 'pmpro-pages', icon: { - background: '#2997c8', - foreground: '#ffffff', + background: '#FFFFFF', + foreground: '#1A688B', src: 'archive', }, - keywords: [ __( 'pmpro', 'paid-memberships-pro' ) ], + keywords: [ + __( 'history', 'paid-memberships-pro' ), + __( 'order', 'paid-memberships-pro' ), + __( 'paid memberships pro', 'paid-memberships-pro' ), + __( 'pmpro', 'paid-memberships-pro' ), + __( 'purchases', 'paid-memberships-pro' ), + __( 'receipt', 'paid-memberships-pro' ), + ], supports: { }, attributes: { diff --git a/blocks/levels-page/block.js b/blocks/levels-page/block.js index b2610f3b4..b0c210c33 100644 --- a/blocks/levels-page/block.js +++ b/blocks/levels-page/block.js @@ -19,15 +19,21 @@ export default registerBlockType( 'pmpro/levels-page', { - title: __( 'Membership Levels List', 'paid-memberships-pro' ), - description: __( 'Displays a list of Membership Levels. To change the order, go to Memberships > Settings > Levels.', 'paid-memberships-pro' ), + title: __( 'Membership Levels and Pricing Table', 'paid-memberships-pro' ), + description: __( 'Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels.', 'paid-memberships-pro' ), category: 'pmpro', icon: { - background: '#2997c8', - foreground: '#ffffff', + background: '#FFFFFF', + foreground: '#658B24', src: 'list-view', }, - keywords: [ __( 'pmpro', 'paid-memberships-pro' ) ], + keywords: [ + __( 'level', 'paid-memberships-pro' ), + __( 'paid memberships pro', 'paid-memberships-pro' ), + __( 'pmpro', 'paid-memberships-pro' ), + __( 'price', 'paid-memberships-pro' ), + __( 'pricing table', 'paid-memberships-pro' ), + ], supports: { }, attributes: { diff --git a/blocks/login/block.js b/blocks/login/block.js index 434b21901..6b570e95c 100644 --- a/blocks/login/block.js +++ b/blocks/login/block.js @@ -19,37 +19,38 @@ const { Fragment } = wp.element; /** * Register block */ -export default registerBlockType("pmpro/login-form", { - title: __("Log in Form", "paid-memberships-pro"), - description: __( - "Displays a Log In Form for Paid Memberships Pro.", - "paid-memberships-pro" - ), - category: "pmpro", - icon: { - background: "#2997c8", - foreground: "#ffffff", - src: "unlock", - }, - keywords: [ - __("pmpro", "paid-memberships-pro"), - __("login", "paid-memberships-pro"), - __("form", "paid-memberships-pro"), - __("log in", "paid-memberships-pro"), - ], - supports: {}, - edit: (props) => { - return [ - - -
- {__("Paid Memberships Pro", "paid-memberships-pro")} - {__("Log in Form", "paid-memberships-pro")} -
-
, - ]; - }, - save() { - return null; - }, -}); +export default registerBlockType( + 'pmpro/login-form', + { + title: __( 'Login Form', 'paid-memberships-pro' ), + description: __( 'Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu.', 'paid-memberships-pro' ), + category: 'pmpro', + icon: { + background: '#FFFFFF', + foreground: '#658B24', + src: 'unlock', + }, + keywords: [ + __( 'log in', 'paid-memberships-pro' ), + __( 'lost password', 'paid-memberships-pro' ), + __( 'paid memberships pro', 'paid-memberships-pro' ), + __( 'password reset', 'paid-memberships-pro' ), + __( 'pmpro', 'paid-memberships-pro' ), + ], + supports: {}, + edit: (props) => { + return [ + + +
+ {__("Paid Memberships Pro", "paid-memberships-pro")} + {__("Log in Form", "paid-memberships-pro")} +
+
, + ]; + }, + save() { + return null; + }, + } +); diff --git a/blocks/member-profile-edit/block.js b/blocks/member-profile-edit/block.js index 563c381c7..85c95daac 100644 --- a/blocks/member-profile-edit/block.js +++ b/blocks/member-profile-edit/block.js @@ -13,31 +13,36 @@ const { registerBlockType } = wp.blocks; /** * Register block */ -export default registerBlockType("pmpro/member-profile-edit", { - title: __("Member Profile Edit", "paid-memberships-pro"), - description: __("Allow member profile editing.", "paid-memberships-pro"), - category: "pmpro", - icon: { - background: "#2997c8", - foreground: "#ffffff", - src: "admin-users", - }, - keywords: [ - __("pmpro", "paid-memberships-pro"), - __("member", "paid-memberships-pro"), - __("profile", "paid-memberships-pro"), - ], - edit: (props) => { - return ( -
- {__("Paid Memberships Pro", "paid-memberships-pro")} - - {__("Member Profile Edit", "paid-memberships-pro")} - -
- ); - }, - save() { - return null; - }, -}); +export default registerBlockType( + 'pmpro/member-profile-edit', + { + title: __( 'PMPro Page: Account Profile Edit', 'paid-memberships-pro' ), + description: __( 'Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields.', 'paid-memberships-pro' ), + category: 'pmpro-pages', + icon: { + background: '#FFFFFF', + foreground: '#1A688B', + src: 'admin-users', + }, + keywords: [ + __( 'custom field', 'paid-memberships-pro' ), + __( 'fields', 'paid-memberships-pro' ), + __( 'paid memberships pro', 'paid-memberships-pro' ), + __( 'pmpro', 'paid-memberships-pro' ), + __( 'user fields', 'paid-memberships-pro' ), + ], + edit: (props) => { + return ( +
+ {__("Paid Memberships Pro", "paid-memberships-pro")} + + {__("Member Profile Edit", "paid-memberships-pro")} + +
+ ); + }, + save() { + return null; + }, + } +); diff --git a/blocks/membership/block.js b/blocks/membership/block.js index a6419b958..3db915146 100644 --- a/blocks/membership/block.js +++ b/blocks/membership/block.js @@ -9,11 +9,12 @@ */ const { __ } = wp.i18n; const { - registerBlockType, + registerBlockType } = wp.blocks; const { PanelBody, CheckboxControl, + SelectControl, } = wp.components; const { InspectorControls, @@ -28,15 +29,25 @@ const all_levels = [{ value: 0, label: "Non-Members" }].concat( pmpro.all_level_ export default registerBlockType( 'pmpro/membership', { - title: __( 'Require Membership Block', 'paid-memberships-pro' ), - description: __( 'Control the visibility of nested blocks for members or non-members.', 'paid-memberships-pro' ), + title: __( 'Membership Required Block', 'paid-memberships-pro' ), + description: __( 'Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only.', 'paid-memberships-pro' ), category: 'pmpro', icon: { - background: '#2997c8', - foreground: '#ffffff', + background: '#FFFFFF', + foreground: '#1A688B', src: 'visibility', }, - keywords: [ __( 'pmpro', 'paid-memberships-pro' ) ], + keywords: [ + __( 'block visibility', 'paid-memberships-pro' ), + __( 'confitional', 'paid-memberships-pro' ), + __( 'content', 'paid-memberships-pro' ), + __( 'hide', 'paid-memberships-pro' ), + __( 'hidden', 'paid-memberships-pro' ), + __( 'paid memberships pro', 'paid-memberships-pro' ), + __( 'pmpro', 'paid-memberships-pro' ), + __( 'private', 'paid-memberships-pro' ), + __( 'restrict', 'paid-memberships-pro' ), + ], attributes: { levels: { type: 'array', @@ -46,9 +57,13 @@ const all_levels = [{ value: 0, label: "Non-Members" }].concat( pmpro.all_level_ type: 'string', default:'', }, + show_noaccess: { + type: 'boolean', + default: false, + }, }, edit: props => { - const { attributes: {levels, uid}, setAttributes, isSelected } = props; + const { attributes: {levels, uid, show_noaccess}, setAttributes, isSelected } = props; if( uid=='' ) { var rand = Math.random()+""; setAttributes( { uid:rand } ); @@ -69,7 +84,7 @@ const all_levels = [{ value: 0, label: "Non-Members" }].concat( pmpro.all_level_ } } return [ - levelID == level.value ) } onChange = { setLevelsAttribute } @@ -79,17 +94,31 @@ const all_levels = [{ value: 0, label: "Non-Members" }].concat( pmpro.all_level_ return [ isSelected && - + +

{ __( 'Which membership levels can view this block?', 'paid-memberships-pro' ) }

{checkboxes}
+
+

{ __( 'What should users without access see?', 'paid-memberships-pro' ) }

+ Advanced Settings page.", "paid-memberships-pro" ) } + options={ [ + { label: __( "Show nothing", 'paid-memberships-pro' ), value: '0' }, + { label: __( "Show the 'no access' message", 'paid-memberships-pro' ), value: '1' }, + ] } + onChange={ show_noaccess => setAttributes( { show_noaccess } ) } + />
, isSelected &&
- { __( 'Require Membership', 'paid-memberships-pro' ) } + { __( 'Membership Required', 'paid-memberships-pro' ) } +
{checkboxes} +
( @@ -98,7 +127,7 @@ const all_levels = [{ value: 0, label: "Non-Members" }].concat( pmpro.all_level_ />
, ! isSelected &&
- { __( 'Require Membership', 'paid-memberships-pro' ) } + { __( 'Membership Required', 'paid-memberships-pro' ) } ( diff --git a/blocks/membership/block.php b/blocks/membership/block.php index 5c2acd095..4c58b567e 100644 --- a/blocks/membership/block.php +++ b/blocks/membership/block.php @@ -44,6 +44,8 @@ function render_dynamic_block( $attributes, $content ) { } else { if ( pmpro_hasMembershipLevel( $attributes['levels'] ) ) { return do_blocks( $content ); + } elseif ( ! empty( $attributes['show_noaccess'] ) ) { + return pmpro_get_no_access_message( NULL, $attributes['levels'] ); } } } diff --git a/classes/class-pmpro-site-health.php b/classes/class-pmpro-site-health.php index fcf6cbe7c..a66baeff0 100644 --- a/classes/class-pmpro-site-health.php +++ b/classes/class-pmpro-site-health.php @@ -100,7 +100,11 @@ public function debug_information( $info ) { 'pmpro-pages' => [ 'label' => __( 'Membership Pages', 'paid-memberships-pro' ), 'value' => self::get_pmpro_pages(), - ] + ], + 'pmpro-library-conflicts' => [ + 'label' => __( 'Library Conflicts', 'paid-memberships-pro' ), + 'value' => self::get_library_conflicts(), + ], ], ]; @@ -316,18 +320,7 @@ public function get_cron_jobs() { $cron_times = []; // These are our crons. - $expected_crons = [ - 'pmpro_cron_expire_memberships', - 'pmpro_cron_expiration_warnings', - 'pmpro_cron_credit_card_expiring_warnings', - 'pmpro_cron_admin_activity_email', - ]; - - $gateway = pmpro_getOption( 'gateway' ); - - if ( 'stripe' === $gateway ) { - $expected_crons[] = 'pmpro_cron_stripe_subscription_updates'; - } + $expected_crons = array_keys( pmpro_get_crons() ); // Find any of our crons and when their next run is. if ( $crons ) { @@ -369,7 +362,7 @@ public function get_pmpro_pages() { global $pmpro_pages; $page_information = array(); - + if( !empty( $pmpro_pages ) ){ foreach( $pmpro_pages as $key => $val ){ @@ -472,6 +465,37 @@ public function get_htaccess_cache_usage() { return __( 'Off', 'paid-memberships-pro' ); } + /** + * Get library conflicts. + * + * @since 2.8 + * + * @return string|string[] The member page information + */ + function get_library_conflicts() { + // Get the current list of library conflicts. + $library_conflicts = get_option( 'pmpro_library_conflicts' ); + + // If there are no library conflicts, return a message. + if ( empty( $library_conflicts ) ) { + return __( 'No library conflicts detected.', 'paid-memberships-pro' ); + } + + // Format data to be displayed in site health. + $return_arr = array(); + + // Loop through all libraries that have conflicts. + foreach ( $library_conflicts as $library_name => $conflicting_plugins ) { + $conflict_strings = array(); + // Loop through all plugins that have conflicts with this library. + foreach ( $conflicting_plugins as $conflicting_plugin_path => $conflicting_plugin_data ) { + $conflict_strings[] = 'v' . $conflicting_plugin_data['version'] . ' (' . $conflicting_plugin_data['timestamp'] . ')' . ' - ' . $conflicting_plugin_path; + } + $return_arr[ $library_name ] = implode( ' | ', $conflict_strings ); + } + return $return_arr; + } + /** * Get the constants site health information. * @@ -544,5 +568,4 @@ public function get_constants() { return $constants_formatted; } - } diff --git a/classes/class-pmpro-wisdom-integration.php b/classes/class-pmpro-wisdom-integration.php new file mode 100644 index 000000000..3e2de24f8 --- /dev/null +++ b/classes/class-pmpro-wisdom-integration.php @@ -0,0 +1,490 @@ + true, + 'pmpro-discountcodes' => true, + 'pmpro-pagesettings' => true, + 'pmpro-paymentsettings' => true, + 'pmpro-emailsettings' => true, + 'pmpro-emailtemplates' => true, + 'pmpro-advancedsettings' => true, + ]; + + /** + * The Wisdom Tracker object. + * + * @since 2.8 + * + * @var PMPro_Wisdom_Tracker + */ + public $wisdom_tracker; + + /** + * Set up and return the class instance. + * + * @since 2.8 + * + * @return self + */ + public static function instance() { + if ( ! isset( self::$instance ) ) { + self::$instance = new self; + } + + return self::$instance; + } + + /** + * Prevent new public instances by having a private constructor. + */ + private function __construct() { + // Nothing to do here. + } + + /** + * Set up the Wisdom tracker. + * + * @since 2.8 + */ + public function setup_wisdom() { + require_once PMPRO_DIR . '/classes/class-pmpro-wisdom-tracker.php'; + + // Sync the options together. + add_action( 'add_option_wisdom_allow_tracking', [ $this, 'sync_wisdom_setting_to_plugin' ], 10, 2 ); + add_action( 'update_option_wisdom_allow_tracking', [ $this, 'sync_wisdom_setting_to_plugin' ], 10, 2 ); + add_action( 'add_option_' . $this->plugin_option, [ $this, 'sync_plugin_setting_to_wisdom' ], 10, 2 ); + add_action( 'update_option_' . $this->plugin_option, [ $this, 'sync_plugin_setting_to_wisdom' ], 10, 2 ); + + // Additional Wisdom customizations. + add_filter( 'wisdom_is_local_' . $this->plugin_slug, [ $this, 'bypass_local_tracking' ] ); + add_filter( 'wisdom_notice_text_' . $this->plugin_slug, [ $this, 'override_notice' ] ); + add_filter( 'wisdom_tracker_data_' . $this->plugin_slug, [ $this, 'add_stats' ] ); + + // Set up the tracker object. + $this->wisdom_tracker = new PMPro_Wisdom_Tracker( + PMPRO_BASE_FILE, + $this->plugin_slug, + 'https://asimov.paidmembershipspro.com', + [ + $this->plugin_option, + ], + true, + false, + 1 + ); + + // Adjust tracking hooks. + $this->remove_wisdom_notices_from_non_plugin_screens(); + } + + /** + * When the Wisdom setting for tracking is changed, sync the plugin setting to match. + * + * @since 2.8 + * + * @param array|null $old_value The old value of the option. + * @param array $value The new value of the option. + */ + public function sync_wisdom_setting_to_plugin( $old_value, $value ) { + $opt_out = ! empty( $value[ $this->plugin_slug ] ) ? 0 : 1; + pmpro_setOption( $this->plugin_option, $opt_out ); + } + + /** + * When the plugin setting for tracking is changed, sync the Wisdom setting to match. + * + * @since 2.8 + * + * @param array|null $old_value The old value of the option. + * @param array $value The new value of the option. + */ + public function sync_plugin_setting_to_wisdom( $old_value, $value ) { + // Only handle opt in when needed. + if ( ! isset( $value ) ) { + return; + } + + // Only update when changing the value. + if ( isset( $old_value ) && (int) $old_value === (int) $value ) { + return; + } + + $opt_out = filter_var( $value, FILTER_VALIDATE_BOOLEAN ); + + // Update opt-in. + $this->wisdom_tracker->set_is_tracking_allowed( ! $opt_out, $this->plugin_slug ); + $this->wisdom_tracker->set_can_collect_email( ! $opt_out, $this->plugin_slug ); + } + + /** + * Bypass local tracking for additional local URLs. + * + * @since 2.8 + * + * @param bool $is_local Whether the site is recognized as a local site. + * + * @return bool Whether the site is recognized as a local site. + */ + public function bypass_local_tracking( $is_local = false ) { + if ( true === $is_local || 'production' !== wp_get_environment_type() ) { + return $is_local; + } + + $url = network_site_url( '/' ); + + $url = strtolower( trim( $url ) ); + $url_parts = parse_url( $url ); + $host = ! empty( $url_parts['host'] ) ? $url_parts['host'] : false; + + if ( empty( $host ) ) { + return $is_local; + } + + if ( 'localhost' === $host ) { + return true; + } + + if ( false !== ip2long( $host ) && ! filter_var( $host, FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE ) ) { + return true; + } + + $tlds_to_check = [ + '.local', + '.test', + ]; + + foreach ( $tlds_to_check as $tld ) { + $minus_tld = strlen( $host ) - strlen( $tld ); + + if ( $minus_tld === strpos( $host, $tld ) ) { + return true; + } + } + + return $is_local; + } + + /** + * Override the notice for the Wisdom Tracker opt-in. + * + * @since 2.8 + * + * @return string + */ + public function override_notice() { + $message = esc_html__( 'Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference.', 'paid-memberships-pro' ); + $link = '' . esc_html__( 'Read more about what data we collect.', 'paid-memberships-pro' ) . ''; + return $message . ' ' . $link; + } + + /** + * Remove Wisdom notices from non-plugin screens. + * + * @since 2.8 + */ + public function remove_wisdom_notices_from_non_plugin_screens() { + $settings_page = ! empty( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : ''; + + // Check if we are on a settings page using isset() which is faster than in_array(). + if ( isset( $this->plugin_pages[ $settings_page ] ) ) { + return; + } + + // Remove the notices from the non-plugin settings pages. + remove_action( 'admin_notices', [ $this->wisdom_tracker, 'optin_notice' ] ); + remove_action( 'admin_notices', [ $this->wisdom_tracker, 'marketing_notice' ] ); + } + + /** + * Add custom stats for the plugin to the data being tracked. + * + * @since 2.8 + * + * @param array $stats The data to be sent to the Wisdom plugin site. + * + * @return array The data to be sent to the Wisdom plugin site. + */ + public function add_stats( $stats ) { + global $wpdb; + + // License info. + $license_check = get_option( 'pmpro_license_check', 'No Value' ); + + $license_plan = 'No Value'; + + if ( is_array( $license_check ) && isset( $license_check['license'] ) ) { + $license_plan = $license_check['license']; + } + + $stats['plugin_options_fields']['pmpro_license_key'] = get_option( 'pmpro_license_key', 'No Value' ); + $stats['plugin_options_fields']['pmpro_license_plan'] = $license_plan; + + // Gateway info. + $stats['plugin_options_fields'] = array_merge( $stats['plugin_options_fields'], $this->get_gateway_info() ); + + // Levels info. + $levels_info = $this->get_levels_info(); + $stats['plugin_options_fields']['pmpro_level_count'] = $levels_info['pmpro_level_count']; + $stats['plugin_options_fields']['pmpro_level_setups'] = $levels_info['pmpro_level_setups']; + $stats['plugin_options_fields']['pmpro_has_free_level'] = $levels_info['pmpro_has_free_level']; + $stats['plugin_options_fields']['pmpro_has_paid_level'] = $levels_info['pmpro_has_paid_level']; + + // Members info. + $stats['plugin_options_fields']['pmpro_members_count'] = pmpro_getSignups( 'all time' ); + $stats['plugin_options_fields']['pmpro_members_cancelled_count'] = pmpro_getCancellations( 'all time' ); + + // Orders info. + $stats['plugin_options_fields']['pmpro_orders_count'] = $wpdb->get_var( "SELECT COUNT(*) FROM `{$wpdb->pmpro_membership_orders}`" ); + + // Features. + $stats['plugin_options_fields']['pmpro_hide_toolbar'] = get_option( 'pmpro_hide_toolbar', 'No Value' ); + $stats['plugin_options_fields']['pmpro_block_dashboard'] = get_option( 'pmpro_block_dashboard', 'No Value' ); + $stats['plugin_options_fields']['pmpro_filterqueries'] = get_option( 'pmpro_filterqueries', 'No Value' ); + $stats['plugin_options_fields']['pmpro_showexcerpts'] = get_option( 'pmpro_showexcerpts', 'No Value' ); + $stats['plugin_options_fields']['pmpro_spamprotection'] = get_option( 'pmpro_spamprotection', 'No Value' ); + $stats['plugin_options_fields']['pmpro_recaptcha'] = get_option( 'pmpro_recaptcha', 'No Value' ); + $stats['plugin_options_fields']['pmpro_maxnotificationpriority'] = get_option( 'pmpro_maxnotificationpriority', 'No Value' ); + $stats['plugin_options_fields']['pmpro_activity_email_frequency'] = get_option( 'pmpro_activity_email_frequency', 'No Value' ); + $stats['plugin_options_fields']['pmpro_hideads'] = get_option( 'pmpro_hideads', 'No Value' ); + $stats['plugin_options_fields']['pmpro_redirecttosubscription'] = get_option( 'pmpro_redirecttosubscription', 'No Value' ); + $stats['plugin_options_fields']['pmpro_only_filter_pmpro_emails'] = get_option( 'pmpro_only_filter_pmpro_emails', 'No Value' ); + $stats['plugin_options_fields']['pmpro_email_member_notification'] = get_option( 'pmpro_email_member_notification', 'No Value' ); + $stats['plugin_options_fields']['pmpro_use_ssl'] = get_option( 'pmpro_pmpro_use_ssl', 'No Value' ); + $ssl_seal = get_option( 'pmpro_sslseal', '' ); + if ( ! empty( $ssl_seal ) ) { + $stats['plugin_options_fields']['pmpro_sslseal'] = 'Yes'; + } else { + $stats['plugin_options_fields']['pmpro_sslseal'] = 'No'; + } + $stats['plugin_options_fields']['pmpro_nuclear_HTTPS'] = get_option( 'pmpro_nuclear_HTTPS', 'No Value' ); + + // Add Ons. + $addons_info = $this->get_addons_info(); + + $stats['plugin_options_fields']['addons_active'] = $addons_info['addons_active']; + $stats['plugin_options_fields']['addons_inactive'] = $addons_info['addons_inactive']; + $stats['plugin_options_fields']['addons_update_available'] = $addons_info['addons_update_available']; + + // Flatten the arrays. + foreach ( $stats['plugin_options_fields'] as $option => $value ) { + if ( is_object( $value ) || is_array( $value ) ) { + $value = maybe_serialize( $value ); + } + + $stats['plugin_options_fields'][ $option ] = $value; + } + return $stats; + } + + /** + * Get the gateway information to track. + * + * @since 2.8 + * + * @return array The gateway information to track. + */ + public function get_gateway_info() { + $stats = []; + + // Gateway info. + $stats['pmpro_gateway'] = get_option( 'pmpro_gateway', 'No Value' ); + $stats['pmpro_gateway_environment'] = get_option( 'pmpro_gateway_environment', 'No Value' ); + $stats['pmpro_currency'] = get_option( 'pmpro_currency', 'No Value' ); + + // Get Stripe gateway info for other stats below. + $stripe_using_legacy_keys = PMProGateway_stripe::using_legacy_keys(); + $stripe_has_connect_credentials = PMProGateway_stripe::has_connect_credentials( 'live' ) || PMProGateway_stripe::has_connect_credentials( 'sandbox' ); + + // Append the Stripe gateway qualifiers. + if ( 'stripe' === $stats['pmpro_gateway'] ) { + // Add Legacy Keys text if using Legacy Keys. + if ( $stripe_using_legacy_keys ) { + $stats['pmpro_gateway'] .= ' (' . __( 'Legacy Keys', 'paid-memberships-pro' ) . ')'; + } + + // Add Stripe Connect text if using Stripe Connect. + if ( $stripe_has_connect_credentials ) { + $stats['pmpro_gateway'] .= ' (' . __( 'Stripe Connect', 'paid-memberships-pro' ) . ')'; + } + + $stats['pmpro_gateway'] = strtolower( $stats['pmpro_gateway'] ); + } + + // Detect any gateway settings. + $gateway_settings_detected = [ + 'authorizenet' => get_option( 'pmpro_loginname' ), + 'braintree' => get_option( 'pmpro_braintree_merchantid' ), + 'cybersource' => get_option( 'pmpro_cybersource_merchantid' ), + 'payflowpro' => get_option( 'pmpro_payflow_user' ), + 'paypal' => get_option( 'pmpro_apiusername' ), + 'paypalexpress' => get_option( 'paypalexpress_skip_confirmation' ), + 'paypalstandard' => get_option( 'gateway_email' ), + 'stripe' => $stripe_using_legacy_keys || $stripe_has_connect_credentials, + 'stripe_sandbox' => get_option( 'sandbox_stripe_connect_user_id' ), + 'twocheckout' => get_option( 'twocheckout_accountnumber' ), + ]; + + // Remove any gateway settings that are not set or are empty. + $gateway_settings_detected = array_map( static function( $value ) { + return false !== $value && '' !== $value; + }, $gateway_settings_detected ); + $gateway_settings_detected = array_filter( $gateway_settings_detected ); + + // Fill in the gateway count/detected info. + $stats['pmpro_gateways_count'] = count( $gateway_settings_detected ); + $stats['pmpro_gateways_detected'] = implode( ', ', array_keys( $gateway_settings_detected ) ); + + return $stats; + } + + /** + * Get the level information for all levels to track. + * + * @since 2.8 + * + * @return array The level information for all levels to track. + */ + public function get_levels_info() { + global $wpdb; + + $stats = array( + 'pmpro_level_setups' => array(), + 'pmpro_has_free_level' => 'no', + 'pmpro_has_paid_level' => 'no', + 'pmpro_level_count' => 0, + ); + + // Get the levels. + $levels = pmpro_getAllLevels( true ); + + // Update the level count. + $stats['pmpro_level_count'] = count( $levels ); + + // Loop through the levels. + foreach ( $levels as $level_id => $level_data ) { + // Remove sensitive info. + unset( $level_data->name ); + unset( $level_data->description ); + unset( $level_data->confirmation ); + + // Add Set Expiration Date/Subscription Delay info. + $level_data->set_expiration_date = get_option( 'pmprosed_' . $level_id , '' ); + $level_data->subscription_delay = get_option( 'pmpro_subscription_delay_' . $level_id , '' ); + + // Add if a category is set. + $categories = $wpdb->get_col( + $wpdb->prepare( + "SELECT category_id + FROM $wpdb->pmpro_memberships_categories + WHERE membership_id = %d", + $level_id + ) + ); + $level_data->has_categories = ! empty( $categories ) ? 'yes' : 'no'; + + // Add level info. + $stats['pmpro_level_setups'][ $level_id ] = $level_data; + + // Update whether or not we have a free/paid level yet. + if ( pmpro_isLevelFree( $level_data ) ) { + $stats['pmpro_has_free_level'] = 'yes'; + } else { + $stats['pmpro_has_paid_level'] = 'yes'; + } + } + return $stats; + } + + /** + * Get the list of Add Ons categorized by active, inactive, and update available. + * + * @since 2.8 + * + * @return array The list of Add Ons categorized by active, inactive, and update available. + */ + public function get_addons_info() { + // Build the list of Add Ons data to track. + $addons = pmpro_getAddons(); + $plugin_info = get_site_transient( 'update_plugins' ); + + // Split Add Ons into groups for filtering + $addons_active = []; + $addons_inactive = []; + $addons_update_available = []; + + // Build array of Visible, Hidden, Active, Inactive, Installed, and Not Installed Add Ons. + foreach ( $addons as $addon ) { + $plugin_file = $addon['Slug'] . '/' . $addon['Slug'] . '.php'; + $plugin_file_abs = WP_PLUGIN_DIR . '/' . $plugin_file; + + if ( file_exists( $plugin_file_abs ) ) { + $plugin_data = get_plugin_data( $plugin_file_abs ); + } else { + // Plugin is not on the site. + continue; + } + + // Build Active and Inactive arrays - exclude hidden Add Ons that are not installed. + if ( is_plugin_active( $plugin_file ) ) { + $addons_active[ $addon['Slug'] ] = $plugin_data['Version']; + } else { + $addons_inactive[ $addon['Slug'] ] = $plugin_data['Version']; + } + + // Build array of Add Ons that have an update available. + if ( isset( $plugin_info->response[ $plugin_file ] ) ) { + $addons_update_available[ $addon['Slug'] ] = $plugin_data['Version']; + } + } + + return [ + 'addons_active' => $addons_active, + 'addons_inactive' => $addons_inactive, + 'addons_update_available' => $addons_update_available, + ]; + } + +} diff --git a/classes/class-pmpro-wisdom-tracker.php b/classes/class-pmpro-wisdom-tracker.php new file mode 100644 index 000000000..62ff3a3c7 --- /dev/null +++ b/classes/class-pmpro-wisdom-tracker.php @@ -0,0 +1,1107 @@ +plugin_file = $_plugin_file; + $this->home_url = trailingslashit( $_home_url ); + + // If the filename is 'functions' then we're tracking a theme + if ( basename( $this->plugin_file, '.php' ) != 'functions' ) { + $this->plugin_name = basename( $this->plugin_file, '.php' ); + + // PMPRO MODIFICATION. + if ( ! empty( $_plugin_slug ) ) { + $this->plugin_name = $_plugin_slug; + } + } else { + $this->what_am_i = 'theme'; + $theme = wp_get_theme(); + if ( $theme->Name ) { + $this->plugin_name = sanitize_text_field( $theme->Name ); + } + } + + $this->options = $_options; + $this->require_optin = $_require_optin; + $this->include_goodbye_form = $_include_goodbye_form; + $this->marketing = $_marketing; + + // Only use this on switching theme + $this->theme_allows_tracking = get_theme_mod( 'wisdom-allow-tracking', 0 ); + + // Schedule / deschedule tracking when activated / deactivated + if ( $this->what_am_i == 'theme' ) { + // Need to think about scheduling for sites that have already activated the theme + add_action( 'after_switch_theme', [ $this, 'schedule_tracking' ] ); + add_action( 'switch_theme', [ $this, 'deactivate_this_plugin' ] ); + } else { + register_activation_hook( $this->plugin_file, [ $this, 'schedule_tracking' ] ); + register_deactivation_hook( $this->plugin_file, [ $this, 'deactivate_this_plugin' ] ); + } + + // Get it going + $this->init(); + } + + public function init() { + // Check marketing + if ( $this->marketing == 3 ) { + $this->set_can_collect_email( true, $this->plugin_name ); + } + + // Check whether opt-in is required + // If not, then tracking is allowed + if ( ! $this->require_optin ) { + $this->set_can_collect_email( true, $this->plugin_name ); + $this->set_is_tracking_allowed( true ); + $this->update_block_notice(); + $this->do_tracking(); + } + + // Hook our do_tracking function to the weekly action + add_filter( 'cron_schedules', [ $this, 'schedule_weekly_event' ] ); + // It's called weekly, but in fact it could be daily, weekly or monthly + add_action( 'put_do_weekly_action', [ $this, 'do_tracking' ] ); + + // Use this action for local testing + // add_action( 'admin_init', array( $this, 'do_tracking' ) ); + + // Display the admin notice on activation + add_action( 'admin_init', [ $this, 'set_notification_time' ] ); + add_action( 'admin_notices', [ $this, 'optin_notice' ] ); + add_action( 'admin_notices', [ $this, 'marketing_notice' ] ); + + // Deactivation + add_filter( 'plugin_action_links_' . plugin_basename( $this->plugin_file ), [ $this, 'filter_action_links' ] ); + add_action( 'admin_footer-plugins.php', [ $this, 'goodbye_ajax' ] ); + add_action( 'wp_ajax_goodbye_form', [ $this, 'goodbye_form_callback' ] ); + } + + /** + * When the plugin is activated + * Create scheduled event + * And check if tracking is enabled - perhaps the plugin has been reactivated + * + * @since 1.0.0 + */ + public function schedule_tracking() { + if ( ! wp_next_scheduled( 'put_do_weekly_action' ) ) { + $schedule = $this->get_schedule(); + wp_schedule_event( time(), $schedule, 'put_do_weekly_action' ); + } + $this->do_tracking( true ); + } + + /** + * Create weekly schedule + * + * @since 1.2.3 + */ + public function schedule_weekly_event( $schedules ) { + $schedules['weekly'] = [ + 'interval' => 604800, + 'display' => __( 'Once Weekly' ), + ]; + $schedules['monthly'] = [ + 'interval' => 2635200, + 'display' => __( 'Once Monthly' ), + ]; + + return $schedules; + } + + /** + * Get how frequently data is tracked back + * + * @since 1.2.3 + */ + public function get_schedule() { + // Could be daily, weekly or monthly + $schedule = apply_filters( 'wisdom_filter_schedule_' . $this->plugin_name, 'monthly' ); + + return $schedule; + } + + /** + * This is our function to get everything going + * Check that user has opted in + * Collect data + * Then send it back + * + * @since 1.0.0 + * + * @param $force Force tracking if it's not time + */ + public function do_tracking( $force = false ) { + // If the home site hasn't been defined, we just drop out. Nothing much we can do. + if ( ! $this->home_url ) { + return; + } + + // Check to see if the user has opted in to tracking + $allow_tracking = $this->get_is_tracking_allowed(); + if ( ! $allow_tracking ) { + return; + } + + // Check to see if it's time to track + $track_time = $this->get_is_time_to_track(); + if ( ! $track_time && ! $force ) { + return; + } + + $this->set_admin_email(); + + // Get our data + $body = $this->get_data(); + + // Send the data + $this->send_data( $body ); + } + + /** + * We hook this to admin_init when the user accepts tracking + * Ensures the email address is available + * + * @since 1.2.1 + */ + public function force_tracking() { + $this->do_tracking( true ); // Run this straightaway + } + + /** + * Send the data to the home site + * + * @since 1.0.0 + */ + public function send_data( $body ) { + $request = wp_remote_post( esc_url( $this->home_url . '?usage_tracker=hello' ), [ + 'method' => 'POST', + 'timeout' => 20, + 'redirection' => 5, + 'httpversion' => '1.1', + 'blocking' => true, + 'body' => $body, + 'user-agent' => 'PUT/1.0.0; ' . home_url(), + ] ); + + $this->set_track_time(); + + if ( is_wp_error( $request ) ) { + return $request; + } + } + + /** + * Here we collect most of the data + * + * @since 1.0.0 + */ + public function get_data() { + // Use this to pass error messages back if necessary + $body['message'] = ''; + + // Use this array to send data back + $body = [ + 'plugin_slug' => sanitize_text_field( $this->plugin_name ), + 'url' => home_url(), + 'site_name' => get_bloginfo( 'name' ), + 'site_version' => get_bloginfo( 'version' ), + 'site_language' => get_bloginfo( 'language' ), + 'charset' => get_bloginfo( 'charset' ), + 'wisdom_version' => $this->wisdom_version, + 'php_version' => phpversion(), + 'multisite' => is_multisite(), + 'file_location' => __FILE__, + 'product_type' => esc_html( $this->what_am_i ), + ]; + + // Collect the email if the correct option has been set + if ( $this->get_can_collect_email() ) { + $body['email'] = $this->get_admin_email(); + } + $body['marketing_method'] = $this->marketing; + + $body['server'] = isset( $_SERVER['SERVER_SOFTWARE'] ) ? $_SERVER['SERVER_SOFTWARE'] : ''; + + // Extra PHP fields + $body['memory_limit'] = ini_get( 'memory_limit' ); + $body['upload_max_size'] = ini_get( 'upload_max_size' ); + $body['post_max_size'] = ini_get( 'post_max_size' ); + $body['upload_max_filesize'] = ini_get( 'upload_max_filesize' ); + $body['max_execution_time'] = ini_get( 'max_execution_time' ); + $body['max_input_time'] = ini_get( 'max_input_time' ); + + // Retrieve current plugin information + if ( ! function_exists( 'get_plugins' ) ) { + include ABSPATH . '/wp-admin/includes/plugin.php'; + } + + $plugins = array_keys( get_plugins() ); + $active_plugins = get_option( 'active_plugins', [] ); + + foreach ( $plugins as $key => $plugin ) { + if ( in_array( $plugin, $active_plugins, true ) ) { + // Remove active plugins from list so we can show active and inactive separately + unset( $plugins[ $key ] ); + } + } + + $body['active_plugins'] = $active_plugins; + $body['inactive_plugins'] = $plugins; + + // Check text direction + $body['text_direction'] = 'LTR'; + if ( function_exists( 'is_rtl' ) ) { + if ( is_rtl() ) { + $body['text_direction'] = 'RTL'; + } + } else { + $body['text_direction'] = 'not set'; + } + + /** + * Get our plugin data + * Currently we grab plugin name and version + * Or, return a message if the plugin data is not available + * + * @since 1.0.0 + */ + $plugin = $this->plugin_data(); + $body['status'] = 'Active'; // Never translated + if ( empty( $plugin ) ) { + // We can't find the plugin data + // Send a message back to our home site + $body['message'] .= __( 'We can\'t detect any product information. This is most probably because you have not included the code snippet.', 'paid-memberships-pro' ); + $body['status'] = 'Data not found'; // Never translated + } else { + if ( isset( $plugin['Name'] ) ) { + $body['plugin'] = sanitize_text_field( $plugin['Name'] ); + } + if ( isset( $plugin['Version'] ) ) { + $body['version'] = sanitize_text_field( $plugin['Version'] ); + } + } + + /** + * Get our plugin options + * + * @since 1.0.0 + */ + $options = $this->options; + $plugin_options = []; + if ( ! empty( $options ) && is_array( $options ) ) { + foreach ( $options as $option ) { + $fields = get_option( $option ); + // Check for permission to send this option + if ( isset( $fields['wisdom_registered_setting'] ) ) { + foreach ( $fields as $key => $value ) { + $plugin_options[ $key ] = $value; + } + } + } + } + $body['plugin_options'] = $this->options; // Returns array + $body['plugin_options_fields'] = $plugin_options; // Returns object + + /** + * Get our theme data + * Currently we grab theme name and version + * + * @since 1.0.0 + */ + $theme = wp_get_theme(); + if ( $theme->Name ) { + $body['theme'] = sanitize_text_field( $theme->Name ); + } + if ( $theme->Version ) { + $body['theme_version'] = sanitize_text_field( $theme->Version ); + } + if ( $theme->Template ) { + $body['theme_parent'] = sanitize_text_field( $theme->Template ); + } + + // PMPRO MODIFICATION. + /** + * Allow filtering the data to be sent to the Wisdom plugin site. + * + * @since 2.8 + * + * @param array $body The data to be sent to the Wisdom plugin site. + */ + $body = apply_filters( "wisdom_tracker_data_{$this->plugin_name}", $body ); + + // Return the data + return $body; + } + + /** + * Return plugin data + * + * @since 1.0.0 + */ + public function plugin_data() { + // Being cautious here + if ( ! function_exists( 'get_plugin_data' ) ) { + include ABSPATH . '/wp-admin/includes/plugin.php'; + } + // Retrieve current plugin information + $plugin = get_plugin_data( $this->plugin_file ); + + return $plugin; + } + + /** + * Deactivating plugin + * + * @since 1.0.0 + */ + public function deactivate_this_plugin() { + // Check to see if the user has opted in to tracking + if ( $this->what_am_i == 'theme' ) { + $allow_tracking = $this->theme_allows_tracking; + } else { + $allow_tracking = $this->get_is_tracking_allowed(); + } + + if ( ! $allow_tracking ) { + return; + } + + $body = $this->get_data(); + $body['status'] = 'Deactivated'; // Never translated + $body['deactivated_date'] = time(); + + // Add deactivation form data + if ( false !== get_option( 'wisdom_deactivation_reason_' . $this->plugin_name ) ) { + $body['deactivation_reason'] = get_option( 'wisdom_deactivation_reason_' . $this->plugin_name ); + } + if ( false !== get_option( 'wisdom_deactivation_details_' . $this->plugin_name ) ) { + $body['deactivation_details'] = get_option( 'wisdom_deactivation_details_' . $this->plugin_name ); + } + + $this->send_data( $body ); + // Clear scheduled update + wp_clear_scheduled_hook( 'put_do_weekly_action' ); + + // Clear the wisdom_last_track_time value for this plugin + // @since 1.2.2 + $track_time = get_option( 'wisdom_last_track_time' ); + if ( isset( $track_time[ $this->plugin_name ] ) ) { + unset( $track_time[ $this->plugin_name ] ); + } + update_option( 'wisdom_last_track_time', $track_time ); + } + + /** + * Is tracking allowed? + * + * @since 1.0.0 + */ + public function get_is_tracking_allowed() { + // First, check if the user has changed their mind and opted out of tracking + if ( $this->has_user_opted_out() ) { + $this->set_is_tracking_allowed( false, $this->plugin_name ); + + // PMPRO MODIFICATION. + $this->set_can_collect_email( false, $this->plugin_name ); + + return false; + } + + if ( $this->what_am_i == 'theme' ) { + $mod = get_theme_mod( 'wisdom-allow-tracking', 0 ); + if ( $mod ) { + return true; + } + } else { + // The wisdom_allow_tracking option is an array of plugins that are being tracked + $allow_tracking = get_option( 'wisdom_allow_tracking' ); + // If this plugin is in the array, then tracking is allowed + if ( isset( $allow_tracking[ $this->plugin_name ] ) ) { + return true; + } + } + + return false; + } + + /** + * Set if tracking is allowed + * Option is an array of all plugins with tracking permitted + * More than one plugin may be using the tracker + * + * @since 1.0.0 + * + * @param $is_allowed Boolean true if tracking is allowed, false if not + */ + public function set_is_tracking_allowed( $is_allowed, $plugin = null ) { + if ( empty( $plugin ) ) { + $plugin = $this->plugin_name; + } + + // The wisdom_allow_tracking option is an array of plugins that are being tracked + $allow_tracking = get_option( 'wisdom_allow_tracking' ); + + // If the user has decided to opt out + if ( $this->has_user_opted_out() ) { + if ( $this->what_am_i == 'theme' ) { + set_theme_mod( 'wisdom-allow-tracking', 0 ); + } else { + if ( isset( $allow_tracking[ $plugin ] ) ) { + unset( $allow_tracking[ $plugin ] ); + } + } + } elseif ( $is_allowed || ! $this->require_optin ) { + // If the user has agreed to allow tracking or if opt-in is not required + + if ( $this->what_am_i == 'theme' ) { + set_theme_mod( 'wisdom-allow-tracking', 1 ); + } else { + if ( empty( $allow_tracking ) || ! is_array( $allow_tracking ) ) { + // If nothing exists in the option yet, start a new array with the plugin name + $allow_tracking = [ $plugin => $plugin ]; + } else { + // Else add the plugin name to the array + $allow_tracking[ $plugin ] = $plugin; + } + } + } else { + if ( $this->what_am_i == 'theme' ) { + set_theme_mod( 'wisdom-allow-tracking', 0 ); + } else { + if ( isset( $allow_tracking[ $plugin ] ) ) { + unset( $allow_tracking[ $plugin ] ); + } + } + } + + update_option( 'wisdom_allow_tracking', $allow_tracking ); + } + + /** + * Has the user opted out of allowing tracking? + * Note that themes are opt in / plugins are opt out + * + * @since 1.1.0 + * @return Boolean + */ + public function has_user_opted_out() { + // Different opt-out methods for plugins and themes + if ( $this->what_am_i == 'theme' ) { + // Look for the theme mod + $mod = get_theme_mod( 'wisdom-allow-tracking', 0 ); + if ( false === $mod ) { + // If the theme mod is not set, then return true - the user has opted out + return true; + } + } else { + // Iterate through the options that are being tracked looking for wisdom_opt_out setting + if ( ! empty( $this->options ) ) { + foreach ( $this->options as $option_name ) { + // Check each option + $options = get_option( $option_name ); + // If we find the setting, return true + if ( ! empty( $options['wisdom_opt_out'] ) ) { + return true; + } + } + } + } + + return false; + } + + /** + * Check if it's time to track + * + * @since 1.1.1 + */ + public function get_is_time_to_track() { + // Let's see if we're due to track this plugin yet + $track_times = get_option( 'wisdom_last_track_time', [] ); + if ( ! isset( $track_times[ $this->plugin_name ] ) ) { + // If we haven't set a time for this plugin yet, then we must track it + return true; + } else { + // If the time is set, let's get our schedule and check if it's time to track + $schedule = $this->get_schedule(); + if ( $schedule == 'daily' ) { + $period = 'day'; + } elseif ( $schedule == 'weekly' ) { + $period = 'week'; + } else { + $period = 'month'; + } + if ( $track_times[ $this->plugin_name ] < strtotime( '-1 ' . $period ) ) { + return true; + } + } + + return false; + } + + /** + * Record the time we send tracking data + * + * @since 1.1.1 + */ + public function set_track_time() { + // We've tracked, so record the time + $track_times = get_option( 'wisdom_last_track_time', [] ); + // Set different times according to plugin, in case we are tracking multiple plugins + $track_times[ $this->plugin_name ] = time(); + update_option( 'wisdom_last_track_time', $track_times ); + } + + /** + * Set the time when we can display the opt-in notification + * Will display now unless filtered + * + * @since 1.2.4 + */ + public function set_notification_time() { + $notification_times = get_option( 'wisdom_notification_times', [] ); + // Set different times according to plugin, in case we are tracking multiple plugins + if ( ! isset( $notification_times[ $this->plugin_name ] ) ) { + $delay_notification = apply_filters( 'wisdom_delay_notification_' . $this->plugin_name, 0 ); + // We can delay the notification time + $notification_time = time() + absint( $delay_notification ); + $notification_times[ $this->plugin_name ] = $notification_time; + update_option( 'wisdom_notification_times', $notification_times ); + } + } + + /** + * Get whether it's time to display the notification + * + * @since 1.2.4 + * @return Boolean + */ + public function get_is_notification_time() { + $notification_times = get_option( 'wisdom_notification_times', [] ); + $time = time(); + // Set different times according to plugin, in case we are tracking multiple plugins + if ( isset( $notification_times[ $this->plugin_name ] ) ) { + $notification_time = $notification_times[ $this->plugin_name ]; + if ( $time >= $notification_time ) { + return true; + } + } + + return false; + } + + /** + * Set if we should block the opt-in notice for this plugin + * Option is an array of all plugins that have received a response from the user + * + * @since 1.0.0 + */ + public function update_block_notice( $plugin = null ) { + if ( empty( $plugin ) ) { + $plugin = $this->plugin_name; + } + $block_notice = get_option( 'wisdom_block_notice' ); + if ( empty( $block_notice ) || ! is_array( $block_notice ) ) { + // If nothing exists in the option yet, start a new array with the plugin name + $block_notice = [ $plugin => $plugin ]; + } else { + // Else add the plugin name to the array + $block_notice[ $plugin ] = $plugin; + } + update_option( 'wisdom_block_notice', $block_notice ); + } + + /** + * Can we collect the email address? + * + * @since 1.0.0 + */ + public function get_can_collect_email() { + // The wisdom_collect_email option is an array of plugins that are being tracked + $collect_email = get_option( 'wisdom_collect_email' ); + // If this plugin is in the array, then we can collect the email address + if ( isset( $collect_email[ $this->plugin_name ] ) ) { + return true; + } + + return false; + } + + /** + * Set if user has allowed us to collect their email address + * Option is an array of all plugins with email collection permitted + * More than one plugin may be using the tracker + * + * @since 1.0.0 + * + * @param $can_collect Boolean true if collection is allowed, false if not + */ + public function set_can_collect_email( $can_collect, $plugin = null ) { + if ( empty( $plugin ) ) { + $plugin = $this->plugin_name; + } + // The wisdom_collect_email option is an array of plugins that are being tracked + $collect_email = get_option( 'wisdom_collect_email' ); + // If the user has agreed to allow tracking or if opt-in is not required + if ( $can_collect ) { + if ( empty( $collect_email ) || ! is_array( $collect_email ) ) { + // If nothing exists in the option yet, start a new array with the plugin name + $collect_email = [ $plugin => $plugin ]; + } else { + // Else add the plugin name to the array + $collect_email[ $plugin ] = $plugin; + } + } else { + if ( isset( $collect_email[ $plugin ] ) ) { + unset( $collect_email[ $plugin ] ); + } + } + update_option( 'wisdom_collect_email', $collect_email ); + } + + /** + * Get the correct email address to use + * + * @since 1.1.2 + * @return Email address + */ + public function get_admin_email() { + // The wisdom_collect_email option is an array of plugins that are being tracked + $email = get_option( 'wisdom_admin_emails' ); + // If this plugin is in the array, then we can collect the email address + if ( isset( $email[ $this->plugin_name ] ) ) { + return $email[ $this->plugin_name ]; + } + + return false; + } + + /** + * Set the correct email address to use + * There might be more than one admin on the site + * So we only use the first admin's email address + * + * @since 1.1.2 + * + * @param $plugin Plugin name to set email address for + * @param $email Email address to set + */ + public function set_admin_email( $email = null, $plugin = null ) { + if ( empty( $plugin ) ) { + $plugin = $this->plugin_name; + } + // If no email address passed, try to get the current user's email + if ( empty( $email ) ) { + // Have to check that current user object is available + if ( function_exists( 'wp_get_current_user' ) ) { + $current_user = wp_get_current_user(); + $email = $current_user->user_email; + } + } + // The wisdom_admin_emails option is an array of admin email addresses + $admin_emails = get_option( 'wisdom_admin_emails' ); + if ( empty( $admin_emails ) || ! is_array( $admin_emails ) ) { + // If nothing exists in the option yet, start a new array with the plugin name + $admin_emails = [ $plugin => sanitize_email( $email ) ]; + } elseif ( empty( $admin_emails[ $plugin ] ) ) { + // Else add the email address to the array, if not already set + $admin_emails[ $plugin ] = sanitize_email( $email ); + } + update_option( 'wisdom_admin_emails', $admin_emails ); + } + + /** + * Display the admin notice to users to allow them to opt in + * + * @since 1.0.0 + */ + public function optin_notice() { + // Check for plugin args + if ( isset( $_GET['plugin'] ) && isset( $_GET['plugin_action'] ) ) { + $plugin = sanitize_text_field( $_GET['plugin'] ); + $action = sanitize_text_field( $_GET['plugin_action'] ); + if ( $action == 'yes' ) { + $this->set_is_tracking_allowed( true, $plugin ); + // Run this straightaway + add_action( 'admin_init', [ $this, 'force_tracking' ] ); + } else { + $this->set_is_tracking_allowed( false, $plugin ); + } + $this->update_block_notice( $plugin ); + } + + // Is it time to display the notification? + $is_time = $this->get_is_notification_time(); + if ( ! $is_time ) { + return false; + } + + // Check whether to block the notice, e.g. because we're in a local environment + // wisdom_block_notice works the same as wisdom_allow_tracking, an array of plugin names + $block_notice = get_option( 'wisdom_block_notice' ); + + if ( isset( $block_notice[ $this->plugin_name ] ) ) { + return; + } + + if ( ! current_user_can( 'manage_options' ) ) { + return; + } + + // @credit EDD + // Don't bother asking user to opt in if they're in local dev + $is_local = false; + if ( stristr( network_site_url( '/' ), '.dev' ) !== false || stristr( network_site_url( '/' ), 'localhost' ) !== false || stristr( network_site_url( '/' ), ':8888' ) !== false ) { + $is_local = true; + } + + // PMPRO MODIFICATION + if ( ! $is_local && stristr( network_site_url( '/' ), '.local' ) !== false ) { + //$is_local = true; + } + + $is_local = apply_filters( 'wisdom_is_local_' . $this->plugin_name, $is_local ); + if ( $is_local ) { + $this->update_block_notice(); + + // PMPRO MODIFICATION. + if ( $this->marketing ) { + $this->set_can_collect_email( false ); + } + } else { + // Display the notice requesting permission to track + // Retrieve current plugin information + $plugin = $this->plugin_data(); + $plugin_name = $plugin['Name']; + + // Args to add to query if user opts in to tracking + $yes_args = [ + 'plugin' => $this->plugin_name, + 'plugin_action' => 'yes', + ]; + + // Decide how to request permission to collect email addresses + if ( $this->marketing == 1 ) { + // Option 1 combines permissions to track and collect email + $yes_args['marketing_optin'] = 'yes'; + } elseif ( $this->marketing == 2 ) { + // Option 2 enables a second notice that fires after the user opts in to tracking + $yes_args['marketing'] = 'yes'; + } + $url_yes = add_query_arg( $yes_args ); + $url_no = add_query_arg( [ + 'plugin' => $this->plugin_name, + 'plugin_action' => 'no', + ] ); + + // Decide on notice text + if ( $this->marketing != 1 ) { + // Standard notice text + $notice_text = sprintf( __( 'Thank you for installing our %1$s. We would like to track its usage on your site. We don\'t record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional.', 'paid-memberships-pro' ), $this->what_am_i ); + } else { + // If we have option 1 for marketing, we include reference to sending product information here + $notice_text = sprintf( __( 'Thank you for installing our %1$s. We\'d like your permission to track its usage on your site and subscribe you to our newsletter. We won\'t record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional.', 'paid-memberships-pro' ), $this->what_am_i ); + } + // And we allow you to filter the text anyway + $notice_text = apply_filters( 'wisdom_notice_text_' . esc_attr( $this->plugin_name ), $notice_text ); ?> + +
+

'; ?>

+

+

+ + +

+
+ set_can_collect_email( sanitize_text_field( $_GET['marketing_optin'] ), $this->plugin_name ); + // Do tracking + $this->do_tracking( true ); + } elseif ( isset( $_GET['marketing'] ) && $_GET['marketing'] == 'yes' ) { + // Display the notice requesting permission to collect email address + // Retrieve current plugin information + $plugin = $this->plugin_data(); + $plugin_name = $plugin['Name']; + + $url_yes = add_query_arg( [ + 'plugin' => $this->plugin_name, + 'marketing_optin' => 'yes', + ] ); + $url_no = add_query_arg( [ + 'plugin' => $this->plugin_name, + 'marketing_optin' => 'no', + ] ); + + $marketing_text = sprintf( __( 'Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?', 'paid-memberships-pro' ), $this->what_am_i ); + $marketing_text = apply_filters( 'wisdom_marketing_text_' . esc_attr( $this->plugin_name ), $marketing_text ); ?> + +
+

' . esc_html( $plugin_name ) . ''; ?>

+

+

+ + +

+
+ get_is_tracking_allowed() ) { + return $links; + } + if ( isset( $links['deactivate'] ) && $this->include_goodbye_form ) { + $deactivation_link = $links['deactivate']; + // Insert an onClick action to allow form before deactivating + $deactivation_link = str_replace( '
form_default_text(); + + return apply_filters( 'wisdom_form_text_' . esc_attr( $this->plugin_name ), $form ); + } + + /** + * Form text strings + * These can be filtered + * + * @since 1.0.0 + */ + public function goodbye_ajax() { + // Get our strings for the form + $form = $this->form_filterable_text(); + if ( ! isset( $form['heading'] ) || ! isset( $form['body'] ) || ! isset( $form['options'] ) || ! is_array( $form['options'] ) || ! isset( $form['details'] ) ) { + // If the form hasn't been filtered correctly, we revert to the default form + $form = $this->form_default_text(); + } + // Build the HTML to go in the form + $html = '
' . esc_html( $form['heading'] ) . '
'; + $html .= '

' . esc_html( $form['body'] ) . '

'; + if ( is_array( $form['options'] ) ) { + $html .= '

'; + foreach ( $form['options'] as $option ) { + $html .= '
'; + } + $html .= '

'; + $html .= '
'; + } + $html .= '
'; + $html .= '

' . __( 'Submitting form', 'paid-memberships-pro' ) . '

'; + ?> +
+ + + plugin_name, $values ); + } + if ( isset( $_POST['details'] ) ) { + $details = sanitize_text_field( $_POST['details'] ); + update_option( 'wisdom_deactivation_details_' . $this->plugin_name, $details ); + } + $this->do_tracking(); // Run this straightaway + echo 'success'; + wp_die(); + } + +} diff --git a/classes/class.memberorder.php b/classes/class.memberorder.php index fb4901c03..c9aeab07a 100644 --- a/classes/class.memberorder.php +++ b/classes/class.memberorder.php @@ -232,6 +232,12 @@ function is_renewal() { return $this->is_renewal; } + // Can't tell if this is a renewal without a timestamp. + if ( empty( $this->timestamp ) ) { + $this->is_renewal = false; + return $this->is_renewal; + } + // Check the DB. $sqlQuery = "SELECT `id` FROM $wpdb->pmpro_membership_orders @@ -754,12 +760,15 @@ function saveOrder() if(empty($this->gateway_environment)) $this->gateway_environment = pmpro_getOption("gateway_environment"); - if(empty($this->datetime) && empty($this->timestamp)) - $this->datetime = date("Y-m-d H:i:s", time()); - elseif(empty($this->datetime) && !empty($this->timestamp) && is_numeric($this->timestamp)) + if( empty( $this->datetime ) && empty( $this->timestamp ) ) { + $this->timestamp = time(); + $this->datetime = date("Y-m-d H:i:s", $this->timestamp); + } elseif( empty( $this->datetime ) && ! empty( $this->timestamp ) && is_numeric( $this->timestamp ) ) { $this->datetime = date("Y-m-d H:i:s", $this->timestamp); //get datetime from timestamp - elseif(empty($this->datetime) && !empty($this->timestamp)) + } elseif( empty( $this->datetime ) && ! empty( $this->timestamp ) ) { $this->datetime = $this->timestamp; //must have a datetime in it + $this->timestamp = strtotime( $this->datetime ); //fixing the timestamp + } if(empty($this->notes)) $this->notes = ""; @@ -1184,4 +1193,35 @@ function get_test_order() { return apply_filters( 'pmpro_test_order_data', $this ); } + + /** + * Does this order have any billing address fields set? + * @since 2.8 + * @return bool True if ANY billing address field is non-empty. + * False if ALL billing address fields are empty. + */ + function has_billing_address() { + // This is sometimes set. + if ( ! empty( $this->Address1 ) ) { + return true; + } + + // Avoid a warning if no billing object at all. + if ( empty( $this->billing ) ) { + return false; + } + + // Check billing fields. + if ( ! empty( $this->billing->name ) + || ! empty( $this->billing->street ) + || ! empty( $this->billing->city ) + || ! empty( $this->billing->state ) + || ! empty( $this->billing->country ) + || ! empty( $this->billing->zip ) + || ! empty( $this->billing->phone ) ) { + return true; + } + + return false; + } } // End of Class \ No newline at end of file diff --git a/classes/class.pmproemail.php b/classes/class.pmproemail.php index 6e0a2d94c..99d1371dc 100644 --- a/classes/class.pmproemail.php +++ b/classes/class.pmproemail.php @@ -241,6 +241,139 @@ function sendCancelAdminEmail($user = NULL, $old_level_id = NULL) return $this->sendEmail(); } + + function sendRefundedEmail( $user = NULL, $invoice = NULL ) { + global $wpdb, $current_user; + if ( ! $user ) { + $user = $current_user; + } + + if ( ! $user ) { + return false; + } + + $membership_level = pmpro_getSpecificMembershipLevelForUser( $user->ID, $invoice->membership_id ); + if ( ! empty( $membership_level ) ) { + $membership_level_id = $membership_level->id; + $membership_level_name = $membership_level->name; + } else { + $membership_level_id = ''; + $membership_level_name = __( 'N/A', 'paid-memberships-pro' ); + } + + $this->email = $user->user_email; + $this->subject = sprintf(__( 'Your invoice for order #%s at %s has been REFUNDED', 'paid-memberships-pro' ), $invoice->code, get_option( 'blogname' ) ); + + $this->data = array( + 'user_login' => $user->user_login, + 'user_email' => $user->user_email, + 'display_name' => $user->display_name, + 'sitename' => get_option('blogname'), + 'siteemail' => pmpro_getOption('from_email'), + 'login_link' => pmpro_login_url(), + 'login_url' => pmpro_login_url(), + 'membership_id' => $membership_level_id, + 'membership_level_name' => $membership_level_name, + 'invoice_id' => $invoice->code, + 'invoice_total' => pmpro_formatPrice($invoice->total), + 'invoice_date' => date_i18n(get_option('date_format'), $invoice->getTimestamp()), + 'billing_name' => $invoice->billing->name, + 'billing_street' => $invoice->billing->street, + 'billing_city' => $invoice->billing->city, + 'billing_state' => $invoice->billing->state, + 'billing_zip' => $invoice->billing->zip, + 'billing_country' => $invoice->billing->country, + 'billing_phone' => $invoice->billing->phone, + 'cardtype' => $invoice->cardtype, + 'accountnumber' => hideCardNumber($invoice->accountnumber), + 'expirationmonth' => $invoice->expirationmonth, + 'expirationyear' => $invoice->expirationyear, + 'login_link' => pmpro_login_url(), + 'login_url' => pmpro_login_url(), + 'invoice_link' => pmpro_login_url( pmpro_url( 'invoice', '?invoice=' . $invoice->code ) ), + 'invoice_url' => pmpro_login_url( pmpro_url( 'invoice', '?invoice=' . $invoice->code ) ) + ); + $this->data['billing_address'] = pmpro_formatAddress( + $invoice->billing->name, + $invoice->billing->street, + "", //address 2 + $invoice->billing->city, + $invoice->billing->state, + $invoice->billing->zip, + $invoice->billing->country, + $invoice->billing->phone + ); + + $this->template = apply_filters( 'pmpro_email_template', 'refund', $this ); + return $this->sendEmail(); + } + + function sendRefundedAdminEmail( $user = NULL, $invoice = NULL ) { + global $wpdb, $current_user; + if ( ! $user ) { + $user = $current_user; + } + + if ( ! $user ) { + return false; + } + + $membership_level = pmpro_getSpecificMembershipLevelForUser( $user->ID, $invoice->membership_id ); + if ( ! empty( $membership_level ) ) { + $membership_level_id = $membership_level->id; + $membership_level_name = $membership_level->name; + } else { + $membership_level_id = ''; + $membership_level_name = __( 'N/A', 'paid-memberships-pro' ); + } + + $this->email = get_bloginfo( 'admin_email' ); + $this->subject = sprintf(__( 'Invoice for order #%s at %s has been REFUNDED', 'paid-memberships-pro' ), $invoice->code, get_option( 'blogname' ) ); + + $this->data = array( + 'user_login' => $user->user_login, + 'user_email' => $user->user_email, + 'display_name' => $user->display_name, + 'sitename' => get_option('blogname'), + 'siteemail' => pmpro_getOption('from_email'), + 'login_link' => pmpro_login_url(), + 'login_url' => pmpro_login_url(), + 'membership_id' => $membership_level_id, + 'membership_level_name' => $membership_level_name, + 'invoice_id' => $invoice->code, + 'invoice_total' => pmpro_formatPrice($invoice->total), + 'invoice_date' => date_i18n(get_option('date_format'), $invoice->getTimestamp()), + 'billing_name' => $invoice->billing->name, + 'billing_street' => $invoice->billing->street, + 'billing_city' => $invoice->billing->city, + 'billing_state' => $invoice->billing->state, + 'billing_zip' => $invoice->billing->zip, + 'billing_country' => $invoice->billing->country, + 'billing_phone' => $invoice->billing->phone, + 'cardtype' => $invoice->cardtype, + 'accountnumber' => hideCardNumber($invoice->accountnumber), + 'expirationmonth' => $invoice->expirationmonth, + 'expirationyear' => $invoice->expirationyear, + 'login_link' => pmpro_login_url(), + 'login_url' => pmpro_login_url(), + 'invoice_link' => pmpro_login_url( pmpro_url( 'invoice', '?invoice=' . $invoice->code ) ), + 'invoice_url' => pmpro_login_url( pmpro_url( 'invoice', '?invoice=' . $invoice->code ) ) + ); + $this->data['billing_address'] = pmpro_formatAddress( + $invoice->billing->name, + $invoice->billing->street, + "", //address 2 + $invoice->billing->city, + $invoice->billing->state, + $invoice->billing->zip, + $invoice->billing->country, + $invoice->billing->phone + ); + + $this->template = apply_filters( 'pmpro_email_template', 'refund_admin', $this ); + + return $this->sendEmail(); + } function sendCheckoutEmail($user = NULL, $invoice = NULL) { diff --git a/classes/gateways/class.pmprogateway_braintree.php b/classes/gateways/class.pmprogateway_braintree.php index 3724e3049..cffd0bbd4 100644 --- a/classes/gateways/class.pmprogateway_braintree.php +++ b/classes/gateways/class.pmprogateway_braintree.php @@ -109,8 +109,15 @@ public static function dependencies() function loadBraintreeLibrary() { //load Braintree library if it hasn't been loaded already (usually by another plugin using Braintree) - if(!class_exists("\Braintree")) + if ( ! class_exists( "\Braintree" ) ) { require_once( PMPRO_DIR . "/includes/lib/Braintree/lib/Braintree.php"); + } else { + // Another plugin may have loaded the Braintree library already. + // Let's log the current Braintree Library info so that we know + // where to look if we need to troubleshoot library conflicts. + $previously_loaded_class = new \ReflectionClass( '\Braintree' ); + pmpro_track_library_conflict( 'braintree', $previously_loaded_class->getFileName(), Braintree\Version::get() ); + } } /** diff --git a/classes/gateways/class.pmprogateway_paypal.php b/classes/gateways/class.pmprogateway_paypal.php index 3ba461c09..d28150a48 100644 --- a/classes/gateways/class.pmprogateway_paypal.php +++ b/classes/gateways/class.pmprogateway_paypal.php @@ -902,7 +902,7 @@ function PPHttpPost($methodName_, $nvpStr_) { /** * Allow performing actions using the http post request's response. * - * @since TBD + * @since 2.8 * * @param array $httpParsedResponseAr The parsed response. * @param string $methodName_ The NVP API name. diff --git a/classes/gateways/class.pmprogateway_paypalexpress.php b/classes/gateways/class.pmprogateway_paypalexpress.php index b167372d4..ee9368bf1 100644 --- a/classes/gateways/class.pmprogateway_paypalexpress.php +++ b/classes/gateways/class.pmprogateway_paypalexpress.php @@ -71,6 +71,7 @@ static function init() add_filter('pmpro_checkout_default_submit_button', array('PMProGateway_paypalexpress', 'pmpro_checkout_default_submit_button')); add_action('http_api_curl', array('PMProGateway_paypalexpress', 'http_api_curl'), 10, 3); } + add_filter( 'pmpro_process_refund_paypalexpress', array('PMProGateway_paypalexpress', 'process_refund' ), 10, 2 ); } /** @@ -1080,7 +1081,7 @@ function PPHttpPost( $methodName_, $nvpStr_ ) { /** * Allow performing actions using the http post request's response. * - * @since TBD + * @since 2.8 * * @param array $httpParsedResponseAr The parsed response. * @param string $methodName_ The NVP API name. @@ -1090,7 +1091,65 @@ function PPHttpPost( $methodName_, $nvpStr_ ) { return $httpParsedResponseAr; } - /** + /** + * Refunds an order (only supports full amounts) + * + * @param bool $succes Status of the refund (default: false) + * @param object $morder The Member Order Object + * @since 2.8 + * + * @return bool Status of the processed refund + */ + public static function process_refund( $success, $morder ){ + + //need a transaction id + if ( empty( $morder->payment_transaction_id ) ) { + return false; + } + + $transaction_id = $morder->payment_transaction_id; + + //Get the real transaction ID + if ( $transaction_id === $morder->subscription_transaction_id ) { + $transaction_id = $morder->Gateway->getRealPaymentTransactionId( $morder ); + } + + $httpParsedResponseAr = $morder->Gateway->PPHttpPost( 'RefundTransaction', '&TRANSACTIONID='.$transaction_id ); + + if ( 'success' === strtolower( $httpParsedResponseAr['ACK'] ) ) { + + $success = true; + + $morder->status = 'refunded'; + + global $current_user; + + // translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. + $morder->notes = trim( $morder->notes . ' ' . sprintf( __('Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s.', 'paid-memberships-pro' ), date_i18n('Y-m-d H:i:s'), $transaction_id, $current_user->display_name ) ); + + $user = get_user_by( 'id', $morder->user_id ); + //send an email to the member + $myemail = new PMProEmail(); + $myemail->sendRefundedEmail( $user, $morder ); + + //send an email to the admin + $myemail = new PMProEmail(); + $myemail->sendRefundedAdminEmail( $user, $morder ); + + } else { + //The refund failed, so lets return the gateway message + + // translators: %1$s is the Transaction ID. %1$s is the Gateway Error + $morder->notes = trim( $morder->notes .' '. sprintf( __( 'Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s.', 'paid-memberships-pro' ), $transaction_id, $httpParsedResponseAr['L_LONGMESSAGE0'] ) ); + } + + $morder->SaveOrder(); + + return $success; + + } + + /** * PAYPAL Function * Send HTTP POST Request with uuid * diff --git a/classes/gateways/class.pmprogateway_paypalstandard.php b/classes/gateways/class.pmprogateway_paypalstandard.php index 4d5be9507..432fff83e 100644 --- a/classes/gateways/class.pmprogateway_paypalstandard.php +++ b/classes/gateways/class.pmprogateway_paypalstandard.php @@ -659,7 +659,7 @@ function PPHttpPost($methodName_, $nvpStr_) { /** * Allow performing actions using the http post request's response. * - * @since TBD + * @since 2.8 * * @param array $httpParsedResponseAr The parsed response. * @param string $methodName_ The NVP API name. diff --git a/classes/gateways/class.pmprogateway_stripe.php b/classes/gateways/class.pmprogateway_stripe.php index 6c3f7d554..cdb91463d 100644 --- a/classes/gateways/class.pmprogateway_stripe.php +++ b/classes/gateways/class.pmprogateway_stripe.php @@ -14,6 +14,7 @@ use Stripe\WebhookEndpoint as Stripe_Webhook; use Stripe\StripeClient as Stripe_Client; // Used for deleting webhook as of 2.4 use Stripe\Account as Stripe_Account; +use Stripe\Checkout\Session as Stripe_Checkout_Session; define( "PMPRO_STRIPE_API_VERSION", "2020-03-02" ); @@ -26,6 +27,7 @@ // loading plugin activation actions add_action( 'activate_paid-memberships-pro', array( 'PMProGateway_stripe', 'pmpro_activation' ) ); add_action( 'deactivate_paid-memberships-pro', array( 'PMProGateway_stripe', 'pmpro_deactivation' ) ); +add_filter( 'pmpro_registered_crons', array( 'PMProGateway_stripe', 'register_cron' ) ); /** * PMProGateway_stripe Class @@ -78,6 +80,12 @@ public static function loadStripeLibrary() { //load Stripe library if it hasn't been loaded already (usually by another plugin using Stripe) if ( ! class_exists( "Stripe\Stripe" ) ) { require_once( PMPRO_DIR . "/includes/lib/Stripe/init.php" ); + } else { + // Another plugin may have loaded the Stripe library already. + // Let's log the current Stripe Library info so that we know + // where to look if we need to troubleshoot library conflicts. + $previously_loaded_class = new \ReflectionClass( 'Stripe\Stripe' ); + pmpro_track_library_conflict( 'stripe', $previously_loaded_class->getFileName(), Stripe\Stripe::VERSION ); } } @@ -140,34 +148,42 @@ public static function init() { $current_gateway = pmpro_getGateway(); // $_REQUEST['review'] here means the PayPal Express review pag - if ( ( $default_gateway == "stripe" || $current_gateway == "stripe" ) && empty( $_REQUEST['review'] ) ) - { - add_action( 'pmpro_after_checkout_preheader', array( - 'PMProGateway_stripe', - 'pmpro_checkout_after_preheader' - ) ); - - add_action( 'pmpro_billing_preheader', array( 'PMProGateway_stripe', 'pmpro_checkout_after_preheader' ) ); - add_filter( 'pmpro_checkout_order', array( 'PMProGateway_stripe', 'pmpro_checkout_order' ) ); - add_filter( 'pmpro_billing_order', array( 'PMProGateway_stripe', 'pmpro_checkout_order' ) ); + if ( ( $default_gateway == "stripe" || $current_gateway == "stripe" ) && empty( $_REQUEST['review'] ) ) { add_filter( 'pmpro_include_billing_address_fields', array( 'PMProGateway_stripe', 'pmpro_include_billing_address_fields' ) ); - add_filter( 'pmpro_include_cardtype_field', array( - 'PMProGateway_stripe', - 'pmpro_include_billing_address_fields' - ) ); - add_filter( 'pmpro_include_payment_information_fields', array( - 'PMProGateway_stripe', - 'pmpro_include_payment_information_fields' - ) ); - //make sure we clean up subs we will be cancelling after checkout before processing - add_action( 'pmpro_checkout_before_processing', array( - 'PMProGateway_stripe', - 'pmpro_checkout_before_processing' - ) ); + if ( ! self::using_stripe_checkout() ) { + // On-site checkout flow. + add_action( 'pmpro_after_checkout_preheader', array( + 'PMProGateway_stripe', + 'pmpro_checkout_after_preheader' + ) ); + add_filter( 'pmpro_include_cardtype_field', array( + 'PMProGateway_stripe', + 'pmpro_include_billing_address_fields' + ) ); + add_action( 'pmpro_billing_preheader', array( 'PMProGateway_stripe', 'pmpro_checkout_after_preheader' ) ); + add_filter( 'pmpro_checkout_order', array( 'PMProGateway_stripe', 'pmpro_checkout_order' ) ); + add_filter( 'pmpro_billing_order', array( 'PMProGateway_stripe', 'pmpro_checkout_order' ) ); + add_filter( 'pmpro_include_payment_information_fields', array( + 'PMProGateway_stripe', + 'pmpro_include_payment_information_fields' + ) ); + + //make sure we clean up subs we will be cancelling after checkout before processing + add_action( 'pmpro_checkout_before_processing', array( + 'PMProGateway_stripe', + 'pmpro_checkout_before_processing' + ) ); + } else { + // Checkout flow for Stripe Checkout. + add_filter('pmpro_include_payment_information_fields', array('PMProGateway_stripe', 'show_stripe_checkout_pending_warning')); + add_filter('pmpro_checkout_before_change_membership_level', array('PMProGateway_stripe', 'pmpro_checkout_before_change_membership_level'), 10, 2); + add_filter('pmprommpu_gateway_supports_multiple_level_checkout', '__return_false', 10, 2); + add_action( 'pmpro_billing_preheader', array( 'PMProGateway_stripe', 'pmpro_billing_preheader_stripe_checkout' ) ); + } } add_action( 'pmpro_payment_option_fields', array( 'PMProGateway_stripe', 'pmpro_set_up_apple_pay' ), 10, 2 ); @@ -177,6 +193,8 @@ public static function init() { add_action( 'admin_init', array( 'PMProGateway_stripe', 'stripe_connect_save_options' ) ); add_action( 'admin_notices', array( 'PMProGateway_stripe', 'stripe_connect_show_errors' ) ); add_action( 'admin_notices', array( 'PMProGateway_stripe', 'stripe_connect_deauthorize' ) ); + + add_filter( 'pmpro_process_refund_stripe', array( 'PMProGateway_stripe', 'process_refund' ), 10, 2 ); } /** @@ -247,6 +265,14 @@ public static function getGatewayOptions() { 'stripe_payment_request_button', ); + if ( self::stripe_checkout_beta_enabled() ) { + $options[] = 'stripe_payment_flow'; // 'onsite' or 'checkout' + $options[] = 'stripe_update_billing_flow'; // 'onsite' or 'portal' + $options[] = 'stripe_checkout_billing_address'; //'auto' or 'required' + $options[] = 'stripe_tax'; // 'no', 'inclusive', 'exclusive' + $options[] = 'stripe_tax_id_collection_enabled'; // '0', '1' + } + return $options; } @@ -473,7 +499,93 @@ public static function pmpro_payment_option_fields( $values, $gateway ) { echo ' style="display: none;"'; } echo '> 

' . sprintf( wp_kses( __( 'Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On.', 'paid-memberships-pro' ), $allowed_appe_html ), 'https://www.paidmembershipspro.com/add-ons/pmpro-add-paypal-express-option-checkout/?utm_source=plugin&utm_medium=pmpro-paymentsettings&utm_campaign=add-ons&utm_content=pmpro-add-paypal-express-option-checkout' ) . '

'; - } ?> + } + if ( ! self::stripe_checkout_beta_enabled() ) { + // Don't show Stripe Checkout settings if the beta is not enabled. + return; + } + ?> + style="display: none;"> + +
+

+
+

+
+

+
+ + + style="display: none;"> + + + + + +

+ + + style="display: none;"> + + + + + +

+ + + style="display: none;"> + + + + + + + + style="display: none;"> + + + + + + array ( + 'href' => array(), + 'target' => array(), + 'title' => array(), + ), + ); + ?> +

activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »', 'paid-memberships-pro' ), $allowed_stripe_tax_description_html ), 'https://stripe.com/tax', 'https://dashboard.stripe.com/settings/tax/activate' ); ?>

+ + + style="display: none;"> + + + + + +

+ + user_email ) ) { - $remove[] = 'bemail'; - $bemail = $current_user->user_email; - $bconfirmemail = $bemail; - } - //remove the fields - foreach ( $remove as $field ) { - unset( $fields[ $field ] ); - } + $remove = array_merge( $remove, [ 'bfirstname', 'blastname', 'baddress', 'bcity', 'bstate', 'bzipcode', 'bphone', 'bcountry', 'CardType' ] ); + } + + // If a user is logged in, don't require bemail either + if ( ! empty( $current_user->user_email ) ) { + $remove = array_merge( $remove, [ 'bemail' ] ); + $bemail = $current_user->user_email; + $bconfirmemail = $bemail; + } + + // If using Stripe Checkout, don't require card information. + if ( self::using_stripe_checkout() ) { + $remove = array_merge( $remove, [ 'CardType', 'AccountNumber', 'ExpirationMonth', 'ExpirationYear', 'CVV' ] ); + } + + // Remove the fields. + foreach ( $remove as $field ) { + unset( $fields[ $field ] ); } return $fields; @@ -955,6 +1063,23 @@ public static function pmpro_deactivation() { wp_clear_scheduled_hook( 'pmpro_cron_stripe_subscription_updates' ); } + /** + * Register the cron we need for Stripe subscription updates. + * + * @since 2.8 + * + * @param array $crons The list of registered crons for Paid Memberships Pro. + * + * @return array The list of registered crons for Paid Memberships Pro. + */ + public static function register_cron( $crons ) { + $crons['pmpro_cron_stripe_subscription_updates'] = [ + 'interval' => 'daily', + ]; + + return $crons; + } + /** * Cron job for subscription updates. * @@ -1366,6 +1491,295 @@ public static function dependencies() { return true; } + /** + * Check if the user has opted into the Stripe Checkout beta. + * + * @return bool + */ + public static function stripe_checkout_beta_enabled() { + return ( defined( 'PMPRO_STRIPE_CHECKOUT_BETA_ENABLED' ) && PMPRO_STRIPE_CHECKOUT_BETA_ENABLED ); + } + + /** + * Check if Stripe Checkout is being used. + * + * @return bool + */ + public static function using_stripe_checkout() { + // While Stripe Checkout is in beta, only enable it if the constant is set. + if ( ! self::stripe_checkout_beta_enabled() ) { + return false; + } + + return 'checkout' === pmpro_getOption( 'stripe_payment_flow' ); + } + + /** + * Show warning at checkout if Stripe Checkout is being used and + * the last order is pending. + * + * @since 2.8 + * + * @param bool $show Whether to show the default payment information fields. + * @return bool + */ + static function show_stripe_checkout_pending_warning($show) + { + global $gateway; + + //show our submit buttons + ?> + style="display: none;"> + getLastMemberOrder( get_current_user_id(), null, null, 'stripe' ); + if ( ! empty( $last_order->id ) && $last_order->status === 'pending' ) { + ?> +

+ +
+ gateway != 'stripe' ) { + return; + } + + $morder->user_id = $user_id; + $morder->status = 'token'; + $morder->saveOrder(); + + // Save some checkout information in the order so that we can access it when the payment is complete. + // Save the request variables. + $request_vars = $_REQUEST; + unset( $request_vars['password'] ); + unset( $request_vars['password2'] ); + unset( $request_vars['password2_copy'] ); + update_pmpro_membership_order_meta( $morder->id, 'checkout_request_vars', $request_vars ); + + // Save the checkout level. + $pmpro_level_arr = (array) $pmpro_level; + update_pmpro_membership_order_meta( $morder->id, 'checkout_level', $pmpro_level_arr ); + + // Save the discount code. + $pmpro_discount_code_arr = (array) $discount_code; + update_pmpro_membership_order_meta( $morder->id, 'checkout_discount_code', $pmpro_discount_code_arr ); + + // Time to send the user to pay with Stripe! + $stripe = new PMProGateway_stripe(); + + // Let's first get the customer to charge. + $customer = $stripe->update_customer_at_checkout( $morder ); + if ( empty( $customer ) ) { + // There was an issue creating/updating the Stripe customer. + // $order will have an error message. + pmpro_setMessage( __( 'Could not get customer. ', 'paid-memberships-pro' ) . $morder->error, 'pmpro_error', true ); + return; + } + + // Next, let's get the product being purchased. + $product_id = $stripe->get_product_id_for_level( $morder->membership_id ); + if ( empty( $product_id ) ) { + // Something went wrong getting the product ID or creating the product. + // Show the user a general error message. + pmpro_setMessage( __( 'Could not get product ID.', 'paid-memberships-pro' ), 'pmpro_error', true ); + return; + } + + // Then, we need to build the line items array to charge. + $line_items = array(); + + // Used to calculate Stripe Connect fees. + $application_fee_percentage = self::get_application_fee_percentage(); + + // First, let's handle the initial payment. + if ( ! empty( $morder->InitialPayment ) ) { + $initial_subtotal = $morder->InitialPayment; + $initial_tax = $morder->getTaxForPrice( $initial_subtotal ); + $initial_payment_amount = pmpro_round_price( (float) $initial_subtotal + (float) $initial_tax ); + $initial_payment_price = $stripe->get_price_for_product( $product_id, $initial_payment_amount ); + if ( is_string( $initial_payment_price ) ) { + // There was an error getting the price. + pmpro_setMessage( __( 'Could not get price for initial payment. ', 'paid-memberships-pro' ) . $initial_payment_price, 'pmpro_error', true ); + return; + } + $line_items[] = array( + 'price' => $initial_payment_price->id, + 'quantity' => 1, + ); + if ( ! empty( $application_fee_percentage ) ) { + $application_fee = floor( $initial_payment_price->unit_amount * $application_fee_percentage / 100 ); + if ( ! empty( $application_fee ) ) { + $payment_intent_data = array( + 'application_fee_amount' => $application_fee, + ); + } + } + } + + // Now, let's handle the recurring payments. + if ( pmpro_isLevelRecurring( $morder->membership_level ) ) { + $recurring_subtotal = $morder->PaymentAmount; + $recurring_tax = $morder->getTaxForPrice( $recurring_subtotal ); + $recurring_payment_amount = pmpro_round_price( (float) $recurring_subtotal + (float) $recurring_tax ); + $recurring_payment_price = $stripe->get_price_for_product( $product_id, $recurring_payment_amount, $morder->BillingPeriod, $morder->BillingFrequency ); + if ( is_string( $recurring_payment_price ) ) { + // There was an error getting the price. + pmpro_setMessage( __( 'Could not get price for recurring payment. ', 'paid-memberships-pro' ) . $recurring_payment_price, 'pmpro_error', true ); + return; + } + $line_items[] = array( + 'price' => $recurring_payment_price->id, + 'quantity' => 1, + ); + $subscription_data = array(); + + // Check if we can combine initial and recurring payments. + $filtered_trial_period_days = $stripe->calculate_trial_period_days( $morder ); + if ( + empty( $order->TrialBillingCycles ) && // Check if there is a trial period. + $filtered_trial_period_days === $stripe->calculate_trial_period_days( $morder, false ) && // Check if the trial period is the same as the filtered trial period. + ( ! empty( $initial_payment_amount ) && $initial_payment_amount === $recurring_payment_amount ) // Check if the initial payment and recurring payment prices are the same. + ) { + // We can combine the initial payment and the recurring payment. + array_shift( $line_items ); + $payment_intent_data = null; + } else { + // We need to set the trial period days and send initial and recurring payments as separate line items. + $subscription_data['trial_period_days'] = $filtered_trial_period_days; + } + + // Add application fee for Stripe Connect. + $application_fee_percentage = self::get_application_fee_percentage(); + if ( ! empty( $application_fee_percentage ) ) { + $subscription_data['application_fee_percent'] = $application_fee_percentage; + } + } + + // Set up tax and billing addres collection. + $automatic_tax = ( ! empty( pmpro_getOption( 'stripe_tax' ) ) && 'no' !== pmpro_getOption( 'stripe_tax' ) ) ? array( + 'enabled' => true, + ) : array( + 'enabled' => false, + ); + $tax_id_collection = ! empty( pmpro_getOption( 'stripe_tax_id_collection_enabled' ) ) ? array( + 'enabled' => true, + ) : array( + 'enabled' => false, + ); + $billing_address_collection = pmpro_getOption( 'stripe_checkout_billing_address' ) ?: 'auto'; + + // And let's send 'em to Stripe! + $checkout_session_params = array( + 'customer' => $customer->id, + 'line_items' => $line_items, + 'mode' => isset( $subscription_data ) ? 'subscription' : 'payment', + 'automatic_tax' => $automatic_tax, + 'tax_id_collection' => $tax_id_collection, + 'billing_address_collection' => $billing_address_collection, + 'customer_update' => array( + 'address' => 'auto', + 'name' => 'auto' + ), + 'success_url' => add_query_arg( 'level', $morder->membership_level->id, pmpro_url("confirmation" ) ), + 'cancel_url' => add_query_arg( 'level', $morder->membership_level->id, pmpro_url("checkout" ) ), + ); + if ( ! empty( $subscription_data ) ) { + $checkout_session_params['subscription_data'] = $subscription_data; + } elseif ( ! empty( $payment_intent_data ) ) { + $checkout_session_params['payment_intent_data'] = $payment_intent_data; + } + + try { + $checkout_session = Stripe_Checkout_Session::create( $checkout_session_params ); + } catch ( Throwable $th ) { + // Error creating checkout session. + pmpro_setMessage( __( 'Could not create checkout session. ', 'paid-memberships-pro' ) . $th->getMessage(), 'pmpro_error', true ); + return; + } catch ( Exception $e ) { + // Error creating checkout session. + pmpro_setMessage( __( 'Could not create checkout session. ', 'paid-memberships-pro' ) . $e->getMessage(), 'pmpro_error', true ); + return; + } + + // Save so that we can confirm the payment later. + update_pmpro_membership_order_meta( $morder->id, 'stripe_checkout_session_id', $checkout_session->id ); + wp_redirect( $checkout_session->url ); + exit; + } + + /** + * If using Stripe Checkout, either redirect the user to the Stripe Customer + * portal or set up our update billing page with the onsite payment fields. + * + * @since 2.8 + */ + public static function pmpro_billing_preheader_stripe_checkout() { + if ( 'portal' === pmpro_getOption( 'stripe_update_billing_flow' ) ) { + // Send user to Stripe Customer Portal. + $user_order = new MemberOrder(); + $user_order->getLastMemberOrder( null, array( 'success', 'pending' ) ); + + // Check whether the user's most recent order is a Stripe subscription. + if ( empty( $user_order->gateway ) || 'stripe' !== $user_order->gateway ) { + $error = __( 'Last order was not charged with Stripe.', 'paid-memberships-pro' ); + } + + if ( empty( $error ) ) { + $stripe = new PMProGateway_stripe(); + $customer = $stripe->get_customer_for_user( $user_order->user_id ); + if ( empty( $customer->id ) ) { + $error = __( 'Could not get Stripe customer for user.', 'paid-memberships-pro' ); + } + } + + if ( empty( $error ) ) { + $customer_portal_url = $stripe->get_customer_portal_url( $customer->id ); + if ( ! empty( $customer_portal_url ) ) { + wp_redirect( $customer_portal_url ); + exit; + } + $error = __( 'Could not get Customer Portal URL. This feature may not be set up in Stripe.', 'paid-memberships-pro' ); + } + + // There must have been an error while getting the customer portal URL. Show an error and let user update + // their billing info onsite. + pmpro_setMessage( $error . ' ' . __( 'Please contact the site administrator.', 'paid-memberships-pro' ), 'pmpro_alert', true ); + } + // Disable Stripe Checkout functionality for the rest of this page load. + add_filter( 'pmpro_include_cardtype_field', array( + 'PMProGateway_stripe', + 'pmpro_include_billing_address_fields' + ), 15 ); + add_action( 'pmpro_billing_preheader', array( 'PMProGateway_stripe', 'pmpro_checkout_after_preheader' ), 15 ); + add_filter( 'pmpro_billing_order', array( 'PMProGateway_stripe', 'pmpro_checkout_order' ), 15 ); + add_filter( 'pmpro_include_payment_information_fields', array( + 'PMProGateway_stripe', + 'pmpro_include_payment_information_fields' + ), 15 ); + add_filter( 'option_pmpro_stripe_payment_flow', '__return_false' ); // Disable Stripe Checkout for rest of page load. + } + /**************************************** ************ PUBLIC METHODS ************ ****************************************/ @@ -1375,6 +1789,11 @@ public static function dependencies() { * @since 1.4 */ public function process( &$order ) { + if ( self::using_stripe_checkout() ) { + // If using Stripe Checkout, we will try to collect the payment later. + return true; + } + $payment_transaction_id = ''; $subscription_transaction_id = ''; @@ -1421,7 +1840,7 @@ public function process( &$order ) { $payment_method = $this->get_payment_method( $order ); if ( empty( $payment_method ) ) { // There was an issue getting the payment method. - $order->error = __( 'Error retrieving payment method.', 'paid-memberships-pro' ); + $order->error = __( 'Error retrieving payment method.', 'paid-memberships-pro' ) . empty( $order->error ) ? '' : ' ' . $order->error; $order->shorterror = $order->error; return false; } @@ -1674,7 +2093,7 @@ public function update( &$order ) { $payment_method = $this->get_payment_method( $order ); if ( empty( $payment_method ) ) { // There was an issue getting the payment method. - $order->error = __( "Error retrieving payment method.", 'paid-memberships-pro' ); + $order->error = __( 'Error retrieving payment method.', 'paid-memberships-pro' ) . empty( $order->error ) ? '' : ' ' . $order->error; $order->shorterror = $order->error; return false; } @@ -1749,6 +2168,26 @@ public function cancel( &$order, $update_status = true ) { } } + /** + * Get the URL for a customer's Stripe Customer Portal. + * + * @since 2.8 + * + * @param string $customer_id Customer to get the URL for. + * @return string URL for customer portal, or empty String if not found. + */ + public function get_customer_portal_url( $customer_id ) { + try { + $session = \Stripe\BillingPortal\Session::create([ + 'customer' => $customer_id, + 'return_url' => pmpro_url( 'account' ), + ]); + return $session->url; + } catch ( Exception $e ) { + return ''; + } + } + /**************************************** *********** PRIVATE METHODS ************ @@ -2111,6 +2550,9 @@ function pmpro_user_register_stripe_customerid( $user_id ) { } add_action( "user_register", "pmpro_user_register_stripe_customerid" ); } + } else { + // User already exists. Update their Stripe customer ID. + update_user_meta( $user_id, 'pmpro_stripe_customerid', $customer->id ); } /** @@ -2301,6 +2743,12 @@ private function get_price_for_product( $product_id, $amount, $cycle_period = nu $cycle_period = strtolower( $cycle_period ); + // Only for use with Stripe Checkout. + $tax_behavior = pmpro_getOption( 'stripe_tax' ); + if ( ! self::using_stripe_checkout() || empty( $tax_behavior ) ) { + $tax_behavior = 'no'; + } + $price_search_args = array( 'product' => $product_id, 'type' => $is_recurring ? 'recurring' : 'one_time', @@ -2313,31 +2761,34 @@ private function get_price_for_product( $product_id, $amount, $cycle_period = nu try { $prices = Stripe_Price::all( $price_search_args ); - - foreach ( $prices as $price ) { - // Check whether price is the same. If not, continue. - if ( (int) $price->unit_amount !== $unit_amount ) { - continue; - } - // Check if recurring structure is the same. If not, continue. - if ( $is_recurring && ( empty( $price->recurring->interval_count ) || (int) $price->recurring->interval_count !== (int) $cycle_number ) ) { - continue; - } - return $price; - } } catch (\Throwable $th) { // There was an error listing prices. - return $th->getMessage(); + return $th->getMessage();; } catch (\Exception $e) { // There was an error listing prices. return $e->getMessage(); } + foreach ( $prices as $price ) { + // Check whether price is the same. If not, continue. + if ( intval( $price->unit_amount ) !== intval( $unit_amount ) ) { + continue; + } + // Check if recurring structure is the same. If not, continue. + if ( $is_recurring && ( empty( $price->recurring->interval_count ) || intval( $price->recurring->interval_count ) !== intval( $cycle_number ) ) ) { + continue; + } + // Check if tax is enabled and set up correctly. If not, continue. + if ( 'no' !== $tax_behavior && $price->tax_behavior !== $tax_behavior ) { + continue; + } + return $price; + } // Create a new Price. $price_args = array( 'product' => $product_id, 'currency' => strtolower( $pmpro_currency ), - 'unit_amount' => $unit_amount + 'unit_amount' => $unit_amount, ); if ( $is_recurring ) { $price_args['recurring'] = array( @@ -2345,6 +2796,9 @@ private function get_price_for_product( $product_id, $amount, $cycle_period = nu 'interval_count' => $cycle_number ); } + if ( 'no' !== $tax_behavior ) { + $price_args['tax_behavior'] = $tax_behavior; + } try { $price = Stripe_Price::create( $price_args ); @@ -2368,9 +2822,10 @@ private function get_price_for_product( $product_id, $amount, $cycle_period = nu * @since 2.7.0. * * @param MemberOrder $order to calculate trial period days for. + * @param bool $filtered whether to filter the result. * @return int trial period days. */ - private function calculate_trial_period_days( $order ) { + private function calculate_trial_period_days( $order, $filtered = true ) { // Use a trial period to set the first recurring payment date. if ( $order->BillingPeriod == "Year" ) { $trial_period_days = $order->BillingFrequency * 365; //annual @@ -2391,7 +2846,9 @@ private function calculate_trial_period_days( $order ) { $order->ProfileStartDate = date_i18n( "Y-m-d\TH:i:s", strtotime( "+ " . $trial_period_days . " Day", current_time( "timestamp" ) ) ); //filter the start date - $order->ProfileStartDate = apply_filters( "pmpro_profile_start_date", $order->ProfileStartDate, $order ); + if ( $filtered ) { + $order->ProfileStartDate = apply_filters( "pmpro_profile_start_date", $order->ProfileStartDate, $order ); + } //convert back to days $trial_period_days = ceil( abs( strtotime( date_i18n( "Y-m-d\TH:i:s" ), current_time( "timestamp" ) ) - strtotime( $order->ProfileStartDate, current_time( "timestamp" ) ) ) / 86400 ); @@ -2431,7 +2888,7 @@ private function create_subscription_for_customer_from_order( $customer_id, $ord $subscription_params = array( 'customer' => $customer_id, 'items' => array( - array( 'price' => $price ), + array( 'price' => $price->id ), ), 'trial_period_days' => $trial_period_days, 'expand' => array( @@ -2731,8 +3188,6 @@ private function user_profile_fields_subscription_updates( $user, $customer ) { refund( $order, $transaction_id ); } + /** + * Refunds an order (only supports full amounts) + * + * @param bool $success Status of the refund (default: false) + * @param object $order The Member Order Object + * @since 2.8 + * + * @return bool Status of the processed refund + */ + public static function process_refund( $success, $order ) { + + //default to using the payment id from the order + if ( !empty( $order->payment_transaction_id ) ) { + $transaction_id = $order->payment_transaction_id; + } + + //need a transaction id + if ( empty( $transaction_id ) ) { + return false; + } + + //if an invoice ID is passed, get the charge/payment id + if ( strpos( $transaction_id, "in_" ) !== false ) { + $invoice = Stripe_Invoice::retrieve( $transaction_id ); + + if ( ! empty( $invoice ) && ! empty( $invoice->charge ) ) { + $transaction_id = $invoice->charge; + } + } + + $success = false; + + //attempt refund + try { + + $secretkey = pmpro_getOption( 'stripe_secretkey' ); + + // If they are not using legacy keys, get Stripe Connect keys for the relevant environment. + if ( ! self::using_legacy_keys() && empty( $secretkey ) ) { + if ( pmpro_getOption( 'gateway_environment' ) === 'live' ) { + $secretkey = pmpro_getOption( 'live_stripe_connect_secretkey' ); + } else { + $secretkey = pmpro_getOption( 'sandbox_stripe_connect_secretkey' ); + } + } + + $client = new Stripe_Client( $secretkey ); + $refund = $client->refunds->create( [ + 'charge' => $transaction_id, + ] ); + + //Make sure we're refunding an order that was successful + if ( $refund->status != 'failed' ) { + $order->status = 'refunded'; + + $success = true; + + global $current_user; + + $order->notes = trim( $order->notes.' '.sprintf( __('Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s.', 'paid-memberships-pro' ), date_i18n('Y-m-d H:i:s'), $transaction_id, $current_user->display_name ) ); + + $user = get_user_by( 'id', $order->user_id ); + //send an email to the member + $myemail = new PMProEmail(); + $myemail->sendRefundedEmail( $user, $order ); + + //send an email to the admin + $myemail = new PMProEmail(); + $myemail->sendRefundedAdminEmail( $user, $order ); + + } else { + $order->notes = trim( $order->notes . ' ' . __('Admin: An error occured while attempting to process this refund.', 'paid-memberships-pro' ) ); + } + + } catch ( \Throwable $e ) { + $order->notes = trim( $order->notes . ' ' . __( 'Admin: There was a problem processing the refund', 'paid-memberships-pro' ) . ' ' . $e->getMessage() ); + } catch ( \Exception $e ) { + $order->notes = trim( $order->notes . ' ' . __( 'Admin: There was a problem processing the refund', 'paid-memberships-pro' ) . ' ' . $e->getMessage() ); + } + + $order->saveOrder(); + + return $success; + } + /** * Refund a payment or invoice * @@ -4477,6 +5026,4 @@ public function create_plan( &$order ) { return $order->plan; } - - } diff --git a/classes/gateways/class.pmprogateway_twocheckout.php b/classes/gateways/class.pmprogateway_twocheckout.php index 10dfac579..99ddc3907 100644 --- a/classes/gateways/class.pmprogateway_twocheckout.php +++ b/classes/gateways/class.pmprogateway_twocheckout.php @@ -9,8 +9,15 @@ class PMProGateway_Twocheckout extends PMProGateway { function __construct($gateway = NULL) { - if(!class_exists("Twocheckout")) - require_once(dirname(__FILE__) . "/../../includes/lib/Twocheckout/Twocheckout.php"); + if ( ! class_exists( "Twocheckout" ) ) { + require_once( dirname(__FILE__) . "/../../includes/lib/Twocheckout/Twocheckout.php" ); + } else { + // Another plugin may have loaded the 2Checkout library already. + // Let's log the current 2Checkout Library info so that we know + // where to look if we need to troubleshoot library conflicts. + $previously_loaded_class = new \ReflectionClass( 'Twocheckout' ); + pmpro_track_library_conflict( 'twocheckout', $previously_loaded_class->getFileName(), Twocheckout::VERSION ); + } //set API connection vars Twocheckout::sellerId(pmpro_getOption('twocheckout_accountnumber')); diff --git a/css/admin-rtl.css b/css/admin-rtl.css index 6a8c2c893..b6912615e 100644 --- a/css/admin-rtl.css +++ b/css/admin-rtl.css @@ -1,7 +1,3 @@ -.pmpro_admin { - background: url(../images/Paid-Memberships-Pro_watermark.png) bottom left no-repeat !important; -} - .pmpro_admin .pmpro_banner h2 { float: right; } @@ -29,7 +25,7 @@ /* discount levels */ /* pagination */ -div.pmpro_pagination { +.pmpro_pagination { float: left; } diff --git a/css/admin.css b/css/admin.css index b3319a1fe..497dfb80b 100644 --- a/css/admin.css +++ b/css/admin.css @@ -6,7 +6,7 @@ border-bottom-width: 1px; } -/* icon */ +/* icons */ #wp-admin-bar-paid-memberships-pro .ab-item .ab-icon:before { font-family: "dashicons"; content: "\f307"; @@ -14,63 +14,87 @@ .pmpro_admin tr td .dashicons { padding-top: 5px; } +.pmpro_admin .pmpro-has-icon:before { + font: normal 16px/1 dashicons; + margin-right: 8px; + speak: never; + vertical-align: middle; + position: relative; + top: -2px; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +.pmpro_admin .pmpro-has-icon-printer:before { + content: "\f193"; +} +.pmpro_admin .pmpro-has-icon-email:before { + content: "\f465"; +} +.pmpro_admin .pmpro-has-icon-admin-users:before { + content: "\f110"; +} +.pmpro_admin .pmpro-has-icon-image-rotate:before { + content: "\f531"; +} +.pmpro_admin .pmpro-has-icon-download:before { + content: "\f316"; + top: 0; +} +.pmpro_admin .pmpro-has-icon-plus:before { + content: "\f132"; + top: 0; +} /* header/etc */ .pmpro_admin { - background-image: url(../images/Paid-Memberships-Pro_watermark.png); - background-position: bottom right; - background-repeat: no-repeat; - background-size: 290px 40px; - padding: 1em 0 70px 0; + padding: 1em 0 0 0; } -.pmpro_admin .pmpro_banner { - display: grid; - grid-template-areas: "logo meta"; - grid-template-columns: 350px auto; +.pmpro_banner { + display: flex; + padding: .5em 0; } -.pmpro_admin .pmpro_banner .pmpro_logo { - grid-area: logo; +.pmpro_banner .pmpro_logo { + margin-right: 10px; } -.pmpro_admin .pmpro_banner .pmpro_meta { +.pmpro_banner .pmpro_meta { align-self: center; - grid-area: meta; font-size: 16px; line-height: 1.5; } -.pmpro_admin .pmpro_banner .pmpro_meta .pmpro_version { - color: #333333; - display: inline-block; +.pmpro_banner .pmpro_meta .pmpro_version { + background: #DCDCDE; + color: #555; + border-radius: 999px; + font-size: 14px; font-weight: bold; - padding: 5px 10px 5px 5px; + padding: 6px 12px; } -.pmpro_admin .pmpro_banner .pmpro_meta a { - border-left: 1px solid #CCC; - padding: 5px 10px; +.pmpro_banner .pmpro_meta a { + display: inline-block; + margin: 0 0 0 10px; } -.pmpro_admin .pmpro_banner .pmpro_meta a.pmpro_license_tag { +.pmpro_banner .pmpro_meta a.pmpro_license_tag { font-weight: bold; - padding: 5px 10px 5px 5px; text-decoration: none; } -.pmpro_admin .pmpro_banner .pmpro_meta a.pmpro_license_tag:before { - bottom: 7px; +.pmpro_banner .pmpro_meta a.pmpro_license_tag:before { display: inline-block; font: 400 20px/1 dashicons; left: 0; position: relative; text-decoration: none; - vertical-align: bottom; + vertical-align: middle; } -.pmpro_admin .pmpro_banner .pmpro_meta a.pmpro_license_tag.pmpro_license_tag-valid { +.pmpro_banner .pmpro_meta a.pmpro_license_tag.pmpro_license_tag-valid { color: rgb( 70, 180, 80 ); } -.pmpro_admin .pmpro_banner .pmpro_meta a.pmpro_license_tag.pmpro_license_tag-valid:before { +.pmpro_banner .pmpro_meta a.pmpro_license_tag.pmpro_license_tag-valid:before { content: "\f147"; } -.pmpro_admin .pmpro_banner .pmpro_meta a.pmpro_license_tag.pmpro_license_tag-invalid { +.pmpro_banner .pmpro_meta a.pmpro_license_tag.pmpro_license_tag-invalid { color: #AAA; } -.pmpro_admin .pmpro_banner .pmpro_meta a.pmpro_license_tag.pmpro_license_tag-invalid:before { +.pmpro_banner .pmpro_meta a.pmpro_license_tag.pmpro_license_tag-invalid:before { content: "\f335"; } @@ -92,6 +116,10 @@ max-width: 200px; height: auto; } +.pmpro_admin h2, +.pmpro_admin h3 { + font-size: 18px; +} /* Scollable Boxes */ .pmpro_scrollable { @@ -170,6 +198,18 @@ background-color: #f6f7f7; } +/* General admin-area tables styles */ +.pmpro_admin table.wp-list-table thead th { + padding-left: 1.25em; + padding-right: 1.25em; +} +.pmpro_admin table.wp-list-table tbody td { + padding: 1.25em; +} +.pmpro_admin table.wp-list-table .row-actions { + color: #999; +} + /* levels */ .memberships_page_pmpro-membershiplevels .pmpro_admin #posts-filter p.search-box { margin: 2em 0 1em 0; @@ -217,36 +257,37 @@ } .admin_page_pmpro-paymentsettings span.pmpro_gateway-mode { - border: 1px solid; + border: 1px solid transparent; border-radius: 3px; display: inline-block; - font-size: 75%; + font-size: 14px; + font-weight: 500; margin-left: 5px; - padding: 3px 5px; + padding: .25em .5em; } .admin_page_pmpro-paymentsettings span.pmpro_gateway-mode-live { - background-color: #edfaef; - border-color: #00a32a; - color: #00a32a; + background-color: #d4edda; + border-color: #c3e6cb; + color: #0F441C; } .admin_page_pmpro-paymentsettings span.pmpro_gateway-mode-live.pmpro_gateway-mode-not-connected { - background-color: #fcf0f1; - border-color: #d63638; - color: #d63638; + background-color: #f8d7da; + border-color: #f5c6cb; + color: #721c24; } .admin_page_pmpro-paymentsettings span.pmpro_gateway-mode-test { - background-color: #fcf9e8; - border-color: #dba617; - color: #dba617; + background-color: #FFF2E0; + border-color: #F2E5D3; + color: #6B4201; } .admin_page_pmpro-paymentsettings span.pmpro_gateway-mode-test.pmpro_gateway-mode-not-connected { - background-color: #f9f3d3; - border-color: #d59a13; - color: #d59a13; + background-color: #FFF8E0; + border-color: #ffeeba; + color: #6C5101; } .admin_page_pmpro-paymentsettings .pmpro-stripe-connect { @@ -369,6 +410,62 @@ .memberships_page_pmpro-orders .pmpro_admin .nav-tab-wrapper { margin-bottom: 10px; } +.pmpro_admin .wp-list-table .column-username, +.pmpro_admin .wp-list-table .column-billing, +.pmpro_admin .wp-list-table .column-transaction-ids { + word-break: break-word; +} +.pmpro_order-status { + border: 1px solid transparent; + border-radius: 5px; + display: block; + font-weight: 500; + padding: .25em .5em; + text-align: center; +} +.pmpro_order-status-success, +.pmpro_order-status-cancelled { + background-color: #d4edda; + border-color: #c3e6cb; + color: #0F441C; +} +.pmpro_order-status-error, +.pmpro_order-status-refunded { + background-color: #f8d7da; + border-color: #f5c6cb; + color: #721c24; +} +.pmpro_order-status-pending, +.pmpro_order-status-review, +.pmpro_order-status-token { + background-color: #FFF8E0; + border-color: #ffeeba; + color: #6C5101; +} +.wp-list-table .pmpro_order-renewal { + display: block; + margin-top: 8px; + text-align: center; +} +a.pmpro_order-renewal { + color: inherit; + text-decoration: none; +} +.pmpro_order-renewal:before { + content: "\f113"; + font: normal 12px/1 dashicons; + margin-right: 3px; + vertical-align: middle; + position: relative; + top: -1px; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +.memberships_page_pmpro-orders #show_billing_action { + font-size: 14px; + font-weight: normal; + margin-left: 10px; +} /* members list */ .wp-list-table.members .column-ID { @@ -385,42 +482,41 @@ tr.pmpro_settings_divider td { } /* admin pages */ -.pmpro_admin_section-email-templates-content .pmpro-email-templates-variable-reference .form-table td { - padding: 5px; -} -.pmpro_admin_section-email-templates-content .pmpro-email-templates-variable-reference .form-table .widefat { - margin-bottom: 20px; +.pmpro_admin_section-email-templates-content .pmpro-email-templates-variable-reference table { + margin-bottom: 3em; + max-width: 900px; } /* messages */ .pmpro_admin .pmpro_message { background: #FFF; border-left: 4px solid #FFF; + color: #3c434a; margin-right: 15px; padding: 15px; } .pmpro_admin .pmpro_success { - background-color: rgba( 70, 180, 80, 0.1 ); - border-left-color: rgb( 70, 180, 80 ); + background-color: #d4edda; + border-left-color: #c3e6cb; } .pmpro_admin .pmpro_error, .pmpro_admin tr.pmpro_error td { - background-color: rgba( 220, 50, 50, 0.1 ); - border-left-color: rgb( 220, 50, 50 ); + background-color: #f8d7da; + border-left-color: #f5c6cb; } .pmpro_admin .pmpro_alert { - background-color: rgba( 255, 185, 0, 0.1 ); - border-left-color: rgb( 255, 185, 0 ); + background-color: #FFF8E0; + border-left-color: #ffeeba; } .pmpro_admin .pmpro_success a { - color: #208A1B; + color: #0F441C; } .pmpro_admin .pmpro_error a, .pmpro_admin tr.pmpro_error td { - color: #CC0000; + color: #721c24; } .pmpro_admin .pmpro_alert a { - color: #CF8516; + color: #6C5101; } /* notifications */ @@ -487,37 +583,37 @@ tr.pmpro_alert { } /* pagination */ -div.pmpro_pagination { - padding: 3px; - margin: 5px 0px 5px 0px; - font-size: 10px; - float: right; -} -div.pmpro_pagination a { - padding: 2px 5px 2px 5px; - margin: 1px; - border: 1px solid #666; +.pmpro_pagination a, +.pmpro_pagination span.current, +.pmpro_pagination span.disabled { + display: inline-block; + vertical-align: baseline; + margin: 0 2px; + padding: 0 8px; + font-size: 14px; + line-height: 1.625; + text-align: center; + color: #2271b1; + border: 1px solid #2271b1; + background: #f6f7f7; text-decoration: none; - /* no underline */ color: #666; - background: #EEE; + border-radius: 3px; } -div.pmpro_pagination a:hover, div.pmpro_pagination a:active { - background: #FFF; +.pmpro_pagination a:hover, +.pmpro_pagination a:active { + background: #f0f0f1; + border-color: #0a4b78; + color: #0a4b78; } -div.pmpro_pagination span.current { - border: 1px solid #FFF; +.pmpro_pagination span.current { + background: #0a4b78; + border-color: #0a4b78; color: #FFF; - background: #666; - padding: 2px 5px 2px 5px; - margin: 1px; - font-weight: bold; } -div.pmpro_pagination span.disabled { - padding: 2px 5px 2px 5px; - margin: 2px; - border: 1px solid #BBB; - color: #BBB; - background: #EFEFEF; +.pmpro_pagination span.disabled { + background: #f6f7f7; + border-color: #dcdcde; + color: #a7aaad; } p.pmpro_meta_notice { @@ -616,6 +712,9 @@ p.pmpro_meta_notice { .memberships_page_pmpro-license .pmpro_icon { margin-top: 20px; } +.memberships_page_pmpro-license .about-wrap .about-text { + color: #3c434a; +} /* misc */ .pmpro_lite { @@ -644,13 +743,9 @@ h2.nav-tab-wrapper { .memberships_page_pmpro-reports .pmpro_admin .nav-tab-wrapper { margin-bottom: 10px; } -.pmpro_reports-holder { } -.pmpro_reports-holder .postbox h2 { - border-bottom: 1px solid #eee; - font-size: 14px; - padding: 8px 12px; - margin: 0; - line-height: 1.4; +.pmpro_report-holder table.wp-list-table thead th, +.pmpro_report-holder table.wp-list-table tbody td { + padding: 8px 10px; } .pmpro_clickable { cursor: pointer; @@ -717,6 +812,7 @@ button.pmpro_report_th_closed:before { background-color: #f6f7f7; } .pmpro_report-holder .pmpro_report-button { + margin-bottom: 0; text-align: center; } .pmpro_chart_area { diff --git a/css/blocks.editor.css b/css/blocks.editor.css index b184c9487..59203ccc0 100644 --- a/css/blocks.editor.css +++ b/css/blocks.editor.css @@ -21,23 +21,27 @@ position: relative; text-transform: uppercase; } +.pmpro-block-element hr { + margin-bottom: 16px; + margin-top: 16px; +} .pmpro-block-element .components-base-control { margin-bottom: 16px; } .pmpro-block-element .components-base-control .components-select-control { height: auto; } -.pmpro-block-element .components-base-control .components-base-control__label { +..pmpro-block-element .components-base-control .components-base-control__label { display: block; } /* Require Membership Block */ .pmpro-block-require-membership-element { + background: rgba(237, 239, 240, 0.8); border-bottom: 5px solid #8d96a0; border-top: 5px solid #8d96a0; } .pmpro-block-require-membership-element .pmpro-block-title { - background: rgba(237, 239, 240, 0.8); color: #555d66; display: block; font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif; @@ -46,24 +50,36 @@ position: relative; text-transform: uppercase; } -.pmpro-block-require-membership-element .components-panel__body { - background: rgba(237, 239, 240, 0); - border-bottom: 0; +.pmpro-block-require-membership-element .components-panel__body, +.pmpro-block-require-membership-element .components-panel__body.is-opened { + background: rgba(237, 239, 240, 0.8); + border-bottom: none; border-top: none; - border-left: 5px solid rgba(237, 239, 240, 0.8); - border-bottom: 5px solid rgba(237, 239, 240, 0.8); - padding-top: 0; - height: 200px; - overflow: auto; +} +.pmpro-block-require-membership-element .pmpro-block-inspector-scrollable { + border: 1px solid #CCC; + margin: 0px 16px 16px 16px; } .pmpro-block-require-membership-element .block-editor-inner-blocks { - padding-left: 16px; - padding-right: 16px; + background-color: #FFF; + padding: 16px; } .pmpro-block-inspector-scrollable { - height: 200px; + height: 170px; overflow: auto; } +.pmpro-block-inspector-scrollable::-webkit-scrollbar { + background-color: #c3c4c7; + width: 8px; + height: 8px; +} +.pmpro-block-inspector-scrollable::-webkit-scrollbar-thumb { + background: #2c3338; + border-radius: 5px; +} +.pmpro-block-inspector-scrollable .components-base-control.components-checkbox-control { + margin-bottom: 5px; +} /* Checkout Button Block */ .wp-block-pmpro-checkout-button { diff --git a/includes/compatibility.php b/includes/compatibility.php index ba040a2ef..6b6b01e2e 100644 --- a/includes/compatibility.php +++ b/includes/compatibility.php @@ -113,4 +113,49 @@ function pmpro_compatibility_checker_themes(){ } -add_action( 'after_setup_theme', 'pmpro_compatibility_checker_themes' ); \ No newline at end of file +add_action( 'after_setup_theme', 'pmpro_compatibility_checker_themes' ); + +/** + * Keep track of plugins that load libraries before PMPro loads its version. + * + * @param string $name The name of the library. + * @param string $path The path of the loaded library. + * @param string $version The version of the loaded library. + * + * @since 2.8 + */ +function pmpro_track_library_conflict( $name, $path, $version ) { + // Ignore when PMPro is trying to load. + if ( strpos( $path, '/plugins/paid-memberships-pro/' ) !== false ) { + return; + } + + // Use a static var for timestamp so we can avoid multiple updates per pageload. + static $now = null; + if ( empty( $now ) ) { + $now = current_time( 'Y-m-d H:i:s' ); + } + + // Get the current list of library conflicts. + $library_conflicts = get_option( 'pmpro_library_conflicts', array() ); + + // Make sure we have an entry for this library. + if ( ! isset( $library_conflicts[ $name ] ) ) { + $library_conflicts[ $name ] = array(); + } + + // Make sure we have an entry for this path. + if ( ! isset( $library_conflicts[ $name ][ $path ] ) ) { + $library_conflicts[ $name ][ $path ] = array(); + } + + // Don't save conflict if no time has passed. + if ( ! empty( $library_conflicts[ $name ][ $path ]['timestamp'] ) && $library_conflicts[ $name ][ $path ]['timestamp'] === $now ) { + return; + } + + // Update the library conflict information. + $library_conflicts[ $name ][ $path ]['version'] = $version; + $library_conflicts[ $name ][ $path ]['timestamp'] = $now; + update_option( 'pmpro_library_conflicts', $library_conflicts, false ); +} \ No newline at end of file diff --git a/includes/crons.php b/includes/crons.php new file mode 100644 index 000000000..3ba60964a --- /dev/null +++ b/includes/crons.php @@ -0,0 +1,124 @@ + [ + 'interval' => 'hourly', + ], + 'pmpro_cron_expiration_warnings' => [ + 'interval' => 'hourly', + 'timestamp' => current_time( 'timestamp' ) + 1, + ], + 'pmpro_cron_credit_card_expiring_warnings' => [ + 'interval' => 'monthly', + ], + 'pmpro_cron_admin_activity_email' => [ + 'interval' => 'daily', + 'timestamp' => strtotime( '10:30:00' ) - ( get_option( 'gmt_offset' ) * HOUR_IN_SECONDS ), + ], + 'pmpro_license_check_key' => [ + 'interval' => 'monthly', + ], + ]; + + /** + * Allow filtering the list of registered crons for Paid Memberships Pro. + * + * @since 2.8 + * + * @param array $crons The list of registered crons for Paid Memberships Pro. + */ + $crons = (array) apply_filters( 'pmpro_registered_crons', $crons ); + + // Set up the default information for each cron if not set. + foreach ( $crons as $hook => $cron ) { + if ( empty( $cron['timestamp'] ) ) { + $cron['timestamp'] = current_time( 'timestamp' ); + } + + if ( empty( $cron['recurrence'] ) ) { + $cron['recurrence'] = 'hourly'; + } + + if ( empty( $cron['args'] ) ) { + $cron['args'] = []; + } + + $crons[ $hook ] = $cron; + } + + return $crons; +} + +/** + * Maybe schedule our registered crons. + * + * @since 2.8 + */ +function pmpro_maybe_schedule_crons() { + $crons = pmpro_get_crons(); + + foreach ( $crons as $hook => $cron ) { + pmpro_maybe_schedule_event( $cron['timestamp'], $cron['recurrence'], $hook, $cron['args'] ); + } +} + +/** + * Handle rescheduling Paid Memberships Pro crons when checking for ready cron tasks. + * + * @since 2.8 + * + * @param null|array[] $pre Array of ready cron tasks to return instead. Default null + * to continue using results from _get_cron_array(). + * + * @return null|array[] Array of ready cron tasks to return instead. Default null + * to continue using results from _get_cron_array(). + */ +function pmpro_handle_schedule_crons_on_cron_ready_check( $pre ) { + pmpro_maybe_schedule_crons(); + + return $pre; +} + +add_filter( 'pre_get_ready_cron_jobs', 'pmpro_handle_schedule_crons_on_cron_ready_check' ); + +/** + * Schedule a periodic event unless one with the same hook is already scheduled. + * + * @since 2.8 + * + * @see wp_schedule_event() + * @link https://developer.wordpress.org/reference/functions/wp_schedule_event/ + * + * @param int $timestamp Unix timestamp (UTC) for when to next run the event. + * @param string $recurrence How often the event should subsequently recur. + * See wp_get_schedules() for accepted values. + * @param string $hook Action hook to execute when the event is run. + * @param array $args Optional. Array containing arguments to pass to the + * hook's callback function. Each value in the array + * is passed to the callback as an individual parameter. + * The array keys are ignored. Default empty array. + * + * @return bool|WP_Error True when an event is scheduled, WP_Error on failure, and false if the event was already scheduled. + */ +function pmpro_maybe_schedule_event( $timestamp, $recurrence, $hook, $args = [] ) { + $next = wp_next_scheduled( $hook, $args ); + + if ( empty( $next ) ) { + return wp_schedule_event( $timestamp, $recurrence, $hook, $args, true ); + } + + return false; +} diff --git a/includes/email-templates.php b/includes/email-templates.php index b828beb1f..7880f4aee 100644 --- a/includes/email-templates.php +++ b/includes/email-templates.php @@ -498,7 +498,37 @@

Log in to your membership account here: !!login_url!!

', 'paid-memberships-pro' ), 'help_text' => __( 'This email is sent to the member when the trial portion of their membership level is approaching, at an interval based on the term of the trial.', 'paid-memberships-pro' ) ), + 'refund' => array( + 'subject' => __( 'Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED', 'paid-memberships-pro' ), + 'description' => __('Refund', 'paid-memberships-pro'), + 'body' => __( '

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

+

Account: !!display_name!! (!!user_email!!)

+

+ Invoice #!!invoice_id!! on !!invoice_date!!
+ Total Refunded: !!invoice_total!! +

+ +

Log in to your membership account here: !!login_url!!

+

To view an online version of this invoice, click here: !!invoice_url!!

+ +

If you did not request this refund and would like more information please contact us at !!siteemail!!

', 'paid-memberships-pro' ), + 'help_text' => __( 'This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway.', 'paid-memberships-pro' ) + ), + 'refund_admin' => array( + 'subject' => __( 'Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED', 'paid-memberships-pro' ), + 'description' => __('Refund (admin)', 'paid-memberships-pro'), + 'body' => __( '

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

+ +

Account: !!display_name!! (!!user_email!!)

+

+ Invoice #!!invoice_id!! on !!invoice_date!!
+ Total Refunded: !!invoice_total!! +

+ +

Log in to your WordPress admin here: !!login_url!!

', 'paid-memberships-pro' ), + 'help_text' => __( 'This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway.', 'paid-memberships-pro' ) + ), ); // add SCA payment action required emails if we're using PMPro 2.1 or later diff --git a/includes/functions.php b/includes/functions.php index c7ab7c0fa..c34a77121 100644 --- a/includes/functions.php +++ b/includes/functions.php @@ -1510,7 +1510,7 @@ function pmpro_getPaginationString( $page = 1, $totalitems = 0, $limit = 15, $ad */ $pagination = ''; if ( $lastpage > 1 ) { - $pagination .= '
$id ) { $level_obj = pmpro_getLevel( $id ); - $level_names[] = $level_obj->name; + if ( ! empty( $level_obj ) ) { + $level_names[] = $level_obj->name; + } } } @@ -3146,7 +3148,7 @@ function pmpro_round_price( $price, $currency = '' ) { * * Does not format price, to do that, call pmpro_formatPrice(). * - * @since TBD + * @since 2.8 * * @param int|float|string $amount The amount to get price information for. * @param null|string $currency The currency to use, defaults to current currency. @@ -3166,7 +3168,7 @@ function pmpro_round_price_as_string( $amount, $currency = null ) { /** * Get the price information about the provided amount. * - * @since TBD + * @since 2.8 * * @param int|float|string $amount The amount to get price information for. * @param null|string $currency The currency to use, defaults to current currency. @@ -3437,25 +3439,6 @@ function pmpro_generatePages( $pages ) { return $pages_created; } -/** - * Schedule a periodic event unless one with the same hook is already scheduled. - * - * @param int $timestamp Timestamp for when to run the event. - * @param string $recurrence How often the event should recur. - * @param string $hook Action hook to execute when cron is run. - * @param array $args Optional. Arguments to pass to the hook's callback function. - * @return false|void False when an event is not scheduled. - * @since 1.8.7.3 - */ -function pmpro_maybe_schedule_event( $timestamp, $recurrence, $hook, $args = array() ) { - $next = wp_next_scheduled( $hook, $args ); - if ( empty( $next ) ) { - return wp_schedule_event( $timestamp, $recurrence, $hook, $args ); - } else { - return false; - } -} - /** * Get an array of orders for a specific checkout ID * @@ -3839,13 +3822,13 @@ function pmpro_doing_webhook( $gateway = null, $set = false ){ * * @return void * - * @since TBD + * @since 2.8 */ function pmpro_unhandled_webhook(){ /** * Allow hooking into after a webhook has been run but was not handled. * - * @since TBD + * @since 2.8 * * @param string $gateway The gateway the webhook was not handled for. */ @@ -4100,7 +4083,99 @@ function pmpro_get_ip() { } /** - * Send the WP new user notification email, but also check our filter. + * Determines if this order can be refunded + * @param object $order The order that we want to refund + * @return bool Returns a bool value based on if the order can be refunded + */ +function pmpro_allowed_refunds( $order ) { + + //If this isn't a valid order then lets not allow it + if( empty( $order ) || empty( $order->gateway ) || empty( $order->status ) || empty( $order->payment_transaction_id ) ) { + return false; + } + + //Orders with a 0 total shouldn't be able to be refunded + if( $order->total == 0 ){ + return false; + } + + $okay = false; + + /** + * Specify which gateways support refund functionality + * + * @since 2.8 + * + * @param array $allowed_gateways A list of allowed gateways to work with refunds + */ + $allowed_gateways = apply_filters( 'pmpro_allowed_refunds_gateways', array( 'stripe', 'paypalexpress' ) ); + //Only apply to these gateways + if( in_array( $order->gateway, $allowed_gateways, true ) ) { + $okay = true; + } + + $disallowed_statuses = pmpro_disallowed_refund_statuses(); + //Don't allow pending orders to be refunded + if( in_array( $order->status, $disallowed_statuses, true ) ){ + $okay = false; + } + + $okay = apply_filters( 'pmpro_refund_allowed', $okay, $order ); + + return $okay; +} + + +/** + * Decides which filter should be used for the refund depending on gateway + * @param object $order Member Order that we are refunding + * @return bool Returns a bool value based on if a refund was processed successfully or not + */ +function pmpro_refund_order( $order ){ + + if( empty( $order ) ){ + return false; + } + + //Not going to refund an order that has already been refunded + if( $order->status == 'refunded' ) { + return true; + } + + /** + * Processes a refund for a specific gateway + * + * @since 2.8 + * + * @param bool $success Default return value is false to determine if the refund was successfully processed. + * @param object $order The Member Order we want to refund. + */ + $success = apply_filters( 'pmpro_process_refund_'.$order->gateway, false, $order ); + + return $success; + +} + +/** + * Returns an array of order statuses that do not qualify for a refund + * + * @return array Returns an array of statuses that are not allowe to be refunded + */ +function pmpro_disallowed_refund_statuses() { + + /** + * Allow filtering the list of statuses that can not be refunded from. + * + * @since 2.8 + * + * @param array $disallowed_statuses The list of statuses that can not be refunded from. + */ + $disallowed_statuses = apply_filters( 'pmpro_disallowed_refund_statuses', array( 'pending', 'refunded', 'review', 'token', 'error' ) ); + + return $disallowed_statuses; +} + +/* Send the WP new user notification email, but also check our filter. * NOTE: includes/email.php has code to check for the related setting and * filters on the pmpro_wp_new_user_notification hook. * @since 2.7.4 @@ -4111,4 +4186,5 @@ function pmpro_maybe_send_wp_new_user_notification( $user_id, $level_id = null ) if ( apply_filters( 'pmpro_wp_new_user_notification', true, $user_id, $level_id ) ) { wp_new_user_notification( $user_id, null, 'both' ); } + } \ No newline at end of file diff --git a/includes/license.php b/includes/license.php index 7ecdb0be2..23e3f97d0 100644 --- a/includes/license.php +++ b/includes/license.php @@ -87,15 +87,15 @@ function pmpro_license_isValid($key = NULL, $type = NULL, $force = false) { */ //activation function pmpro_license_activation() { - pmpro_maybe_schedule_event(current_time('timestamp'), 'monthly', 'pmpro_license_check_key'); + pmpro_maybe_schedule_event( current_time( 'timestamp' ), 'monthly', 'pmpro_license_check_key' ); } -register_activation_hook(__FILE__, 'pmpro_activation'); +add_action( 'activate_paid-memberships-pro', 'pmpro_license_activation' ); //deactivation function pmpro_license_deactivation() { - wp_clear_scheduled_hook('pmpro_license_check_key'); + wp_clear_scheduled_hook( 'pmpro_license_check_key' ); } -register_deactivation_hook(__FILE__, 'pmpro_deactivation'); +add_action( 'deactivate_paid-memberships-pro', 'pmpro_license_deactivation' ); /** * Check a key against the PMPro license server. diff --git a/includes/profile.php b/includes/profile.php index f37272c94..d9fa06fa6 100644 --- a/includes/profile.php +++ b/includes/profile.php @@ -60,6 +60,16 @@ function pmpro_membership_level_profile_fields($user) $selected_expires_hour = date( 'H', $end_date ? $user->membership_level->enddate : current_time('timestamp') ); $selected_expires_minute = date( 'i', $end_date ? $user->membership_level->enddate : current_time('timestamp') ); + + $last_order = new MemberOrder(); + + $last_order->getLastMemberOrder( $user->ID ); + + $allows_refunds = false; + + if( pmpro_allowed_refunds( $last_order ) ) { + $allows_refunds = true; + } ?> @@ -119,6 +129,12 @@ function pmpro_membership_level_profile_fields($user) + + + + + + sendAdminChangeEmail(get_userdata($user_ID)); } } + + //Refund their most recent subscription + if( !empty( $_REQUEST['refund_last_subscription'] ) ) { + + $order = new MemberOrder(); + + //We need to get a different order if we already cancelled it on the profile edit page. + if( !empty( $_REQUEST['cancel_subscription'] ) ){ + $order_status = 'cancelled'; + } else { + $order_status = 'success'; + } + + $order->getLastMemberOrder( $user_ID, $order_status ); + + if( !empty( $order ) && !empty( $order->id ) ) { + + //Gateways that we want to support this can run the action from their own class. + pmpro_refund_order( $order ); + + } + + } + } add_action( 'show_user_profile', 'pmpro_membership_level_profile_fields' ); add_action( 'edit_user_profile', 'pmpro_membership_level_profile_fields' ); diff --git a/includes/rest-api.php b/includes/rest-api.php index 795961b69..7029d8e35 100644 --- a/includes/rest-api.php +++ b/includes/rest-api.php @@ -154,6 +154,21 @@ public function pmpro_rest_api_register_routes() { ), )); + /** + * Retrieve an order. + * @since 2.8 + * Example: https://example.com/wp-json/pmpro/v1/order + */ + register_rest_route( $pmpro_namespace, '/order', + array( + array( + 'methods' => WP_REST_Server::READABLE, + 'callback' => array( $this, 'pmpro_rest_api_get_order' ), + 'permission_callback' => array( $this, 'pmpro_rest_api_get_permissions_check' ) + ), + )); + add_filter( 'pmpro_rest_api_permissions', array( $this, 'pmpro_rest_api_permissions_get_order' ), 10, 2 ); + /** * Get membership level after checkout options are applied. * @since 2.4 @@ -685,6 +700,51 @@ function pmpro_rest_api_set_discount_code( $request ) { return new WP_REST_Response( $discount_code, 200 ); } + /** + * Get an order. + * @since 2.8 + * Example: https://example.com/wp-json/pmpro/v1/order + */ + function pmpro_rest_api_get_order( $request ) { + if ( ! class_exists( 'MemberOrder' ) ) { + return new WP_REST_Response( 'Paid Memberships Pro order class not found.', 404 ); + } + + $params = $request->get_params(); + $code = isset( $params['code'] ) ? sanitize_text_field( $params['code'] ) : null; + + if ( empty( $code ) ) { + return new WP_REST_Response( 'No order code sent.', 400 ); + } + + return new WP_REST_Response( new MemberOrder( $code ), 200 ); + } + + /** + * Make sure that users can GET their own orders. + * @since 2.8 + */ + function pmpro_rest_api_permissions_get_order( $permission, $request ) { + $method = $request->get_method(); + $route = $request->get_route(); + + // Check if the user does not have access but is trying to get an order. + if ( ! $permission && 'GET' === $method && '/pmpro/v1/order' === $route ) { + // Check if the order belongs to the user. + $params = $request->get_params(); + $code = isset( $params['code'] ) ? sanitize_text_field( $params['code'] ) : null; + + if ( ! empty( $code ) ) { + $order = new MemberOrder( $code ); + + if ( $order->user_id == get_current_user_id() ) { + return true; + } + } + } + return $permission; + } + /** * Get a membership level at checkout. * Note: Not compatible with MMPU. @@ -930,6 +990,7 @@ function pmpro_rest_api_get_permissions_check( $request ) { '/pmpro/v1/cancel_membership_level' => 'pmpro_edit_memberships', '/pmpro/v1/membership_level' => true, '/pmpro/v1/discount_code' => 'pmpro_discountcodes', + '/pmpro/v1/order' => 'pmpro_orders', '/pmpro/v1/checkout_level' => true, '/pmpro/v1/checkout_levels' => true, '/pmpro/v1/me' => true, diff --git a/includes/updates/upgrade_1.php b/includes/updates/upgrade_1.php index 0338ac598..880631fff 100644 --- a/includes/updates/upgrade_1.php +++ b/includes/updates/upgrade_1.php @@ -50,6 +50,9 @@ function pmpro_upgrade_1() //let's pause the nag for the first week of use $pmpro_nag_paused = current_time('timestamp')+(3600*24*7); update_option('pmpro_nag_paused', $pmpro_nag_paused, 'no'); + + //wisdom tracking turned off by default + pmpro_setOption('wisdom_opt_out', 1); //db update pmpro_db_delta(); diff --git a/includes/upgradecheck.php b/includes/upgradecheck.php index 744fb0b10..063c9795f 100644 --- a/includes/upgradecheck.php +++ b/includes/upgradecheck.php @@ -277,6 +277,15 @@ function pmpro_checkForUpgrades() pmpro_db_delta(); pmpro_setOption( 'db_version', '2.71' ); } + + /** + * Version 2.8 + * Default option for Wisdom tracking. + */ + if ( $pmpro_db_version < 2.8 ) { + pmpro_setOption('wisdom_opt_out', 1); + pmpro_setOption( 'db_version', '2.8' ); + } } function pmpro_db_delta() diff --git a/js/blocks.build.js b/js/blocks.build.js index deb4e5519..ea32ddc1f 100644 --- a/js/blocks.build.js +++ b/js/blocks.build.js @@ -1,1883 +1 @@ -/******/ (function(modules) { // webpackBootstrap -/******/ // The module cache -/******/ var installedModules = {}; -/******/ -/******/ // The require function -/******/ function __webpack_require__(moduleId) { -/******/ -/******/ // Check if module is in cache -/******/ if(installedModules[moduleId]) { -/******/ return installedModules[moduleId].exports; -/******/ } -/******/ // Create a new module (and put it into the cache) -/******/ var module = installedModules[moduleId] = { -/******/ i: moduleId, -/******/ l: false, -/******/ exports: {} -/******/ }; -/******/ -/******/ // Execute the module function -/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); -/******/ -/******/ // Flag the module as loaded -/******/ module.l = true; -/******/ -/******/ // Return the exports of the module -/******/ return module.exports; -/******/ } -/******/ -/******/ -/******/ // expose the modules object (__webpack_modules__) -/******/ __webpack_require__.m = modules; -/******/ -/******/ // expose the module cache -/******/ __webpack_require__.c = installedModules; -/******/ -/******/ // define getter function for harmony exports -/******/ __webpack_require__.d = function(exports, name, getter) { -/******/ if(!__webpack_require__.o(exports, name)) { -/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter }); -/******/ } -/******/ }; -/******/ -/******/ // define __esModule on exports -/******/ __webpack_require__.r = function(exports) { -/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { -/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); -/******/ } -/******/ Object.defineProperty(exports, '__esModule', { value: true }); -/******/ }; -/******/ -/******/ // create a fake namespace object -/******/ // mode & 1: value is a module id, require it -/******/ // mode & 2: merge all properties of value into the ns -/******/ // mode & 4: return value when already ns object -/******/ // mode & 8|1: behave like require -/******/ __webpack_require__.t = function(value, mode) { -/******/ if(mode & 1) value = __webpack_require__(value); -/******/ if(mode & 8) return value; -/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value; -/******/ var ns = Object.create(null); -/******/ __webpack_require__.r(ns); -/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value }); -/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key)); -/******/ return ns; -/******/ }; -/******/ -/******/ // getDefaultExport function for compatibility with non-harmony modules -/******/ __webpack_require__.n = function(module) { -/******/ var getter = module && module.__esModule ? -/******/ function getDefault() { return module['default']; } : -/******/ function getModuleExports() { return module; }; -/******/ __webpack_require__.d(getter, 'a', getter); -/******/ return getter; -/******/ }; -/******/ -/******/ // Object.prototype.hasOwnProperty.call -/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; -/******/ -/******/ // __webpack_public_path__ -/******/ __webpack_require__.p = ""; -/******/ -/******/ -/******/ // Load entry module and return exports -/******/ return __webpack_require__(__webpack_require__.s = "./blocks/blocks.js"); -/******/ }) -/************************************************************************/ -/******/ ({ - -/***/ "./blocks/account-invoices-section/block.js": -/*!**************************************************!*\ - !*** ./blocks/account-invoices-section/block.js ***! - \**************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__); - - -/** - * Block: PMPro Membership Account: Invoices - * - * Displays the Membership Account > Invoices page section. - * - */ - -/** - * Internal block libraries - */ -var __ = wp.i18n.__; -var registerBlockType = wp.blocks.registerBlockType; -/** - * Register block - */ - -/* harmony default export */ __webpack_exports__["default"] = (registerBlockType('pmpro/account-invoices-section', { - title: __('Membership Account: Invoices', 'paid-memberships-pro'), - description: __('Displays the member\'s invoices.', 'paid-memberships-pro'), - category: 'pmpro', - icon: { - background: '#2997c8', - foreground: '#ffffff', - src: 'archive' - }, - keywords: [__('pmpro', 'paid-memberships-pro')], - supports: {}, - attributes: {}, - edit: function edit() { - return [Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("div", { - className: "pmpro-block-element" - }, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("span", { - className: "pmpro-block-title" - }, __('Paid Memberships Pro', 'paid-memberships-pro')), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("span", { - className: "pmpro-block-subtitle" - }, " ", __('Membership Account: Invoices', 'paid-memberships-pro')))]; - }, - save: function save() { - return null; - } -})); - -/***/ }), - -/***/ "./blocks/account-links-section/block.js": -/*!***********************************************!*\ - !*** ./blocks/account-links-section/block.js ***! - \***********************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__); - - -/** - * Block: PMPro Membership Account: Member Links - * - * Displays the Membership Account > Member Links page section. - * - */ - -/** - * Internal block libraries - */ -var __ = wp.i18n.__; -var registerBlockType = wp.blocks.registerBlockType; -/** - * Register block - */ - -/* harmony default export */ __webpack_exports__["default"] = (registerBlockType('pmpro/account-links-section', { - title: __('Membership Account: Links', 'paid-memberships-pro'), - description: __('Displays the member\'s member links. This block is only visible if other Add Ons or custom code have added links.', 'paid-memberships-pro'), - category: 'pmpro', - icon: { - background: '#2997c8', - foreground: '#ffffff', - src: 'external' - }, - keywords: [__('pmpro', 'paid-memberships-pro')], - supports: {}, - attributes: {}, - edit: function edit() { - return [Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("div", { - className: "pmpro-block-element" - }, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("span", { - className: "pmpro-block-title" - }, __('Paid Memberships Pro', 'paid-memberships-pro')), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("span", { - className: "pmpro-block-subtitle" - }, __('Membership Account: Member Links', 'paid-memberships-pro')))]; - }, - save: function save() { - return null; - } -})); - -/***/ }), - -/***/ "./blocks/account-membership-section/block.js": -/*!****************************************************!*\ - !*** ./blocks/account-membership-section/block.js ***! - \****************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__); - - -/** - * Block: PMPro Membership Account: Memberships - * - * Displays the Membership Account > My Memberships page section. - * - */ - -/** - * Internal block libraries - */ -var __ = wp.i18n.__; -var registerBlockType = wp.blocks.registerBlockType; -/** - * Register block - */ - -/* harmony default export */ __webpack_exports__["default"] = (registerBlockType('pmpro/account-membership-section', { - title: __('Membership Account: Memberships', 'paid-memberships-pro'), - description: __('Displays the member\'s membership information.', 'paid-memberships-pro'), - category: 'pmpro', - icon: { - background: '#2997c8', - foreground: '#ffffff', - src: 'groups' - }, - keywords: [__('pmpro', 'paid-memberships-pro')], - supports: {}, - attributes: {}, - edit: function edit() { - return [Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("div", { - className: "pmpro-block-element" - }, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("span", { - className: "pmpro-block-title" - }, __('Paid Memberships Pro', 'paid-memberships-pro')), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("span", { - className: "pmpro-block-subtitle" - }, __('Membership Account: My Memberships', 'paid-memberships-pro')))]; - }, - save: function save() { - return null; - } -})); - -/***/ }), - -/***/ "./blocks/account-page/block.js": -/*!**************************************!*\ - !*** ./blocks/account-page/block.js ***! - \**************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/defineProperty */ "./node_modules/@babel/runtime/helpers/defineProperty.js"); -/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_1__); -/* harmony import */ var _inspector__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./inspector */ "./blocks/account-page/inspector.js"); - - - -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } - -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0___default()(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } - -/** - * Block: PMPro Membership Account - * - * Displays the Membership Account page. - * - */ - -/** - * Block dependencies - */ - -/** - * Internal block libraries - */ - -var __ = wp.i18n.__; -var registerBlockType = wp.blocks.registerBlockType; -/** - * Register block - */ - -/* harmony default export */ __webpack_exports__["default"] = (registerBlockType('pmpro/account-page', { - title: __('Membership Account Page', 'paid-memberships-pro'), - description: __('Displays the sections of the Membership Account page as selected below.', 'paid-memberships-pro'), - category: 'pmpro', - icon: { - background: '#2997c8', - foreground: '#ffffff', - src: 'admin-users' - }, - keywords: [__('pmpro', 'paid-memberships-pro')], - supports: {}, - attributes: { - membership: { - type: 'boolean', - default: false - }, - profile: { - type: 'boolean', - default: false - }, - invoices: { - type: 'boolean', - default: false - }, - links: { - type: 'boolean', - default: false - } - }, - edit: function edit(props) { - var setAttributes = props.setAttributes, - isSelected = props.isSelected; - return [isSelected && Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_1__["createElement"])(_inspector__WEBPACK_IMPORTED_MODULE_2__["default"], _objectSpread({ - setAttributes: setAttributes - }, props)), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_1__["createElement"])("div", { - className: "pmpro-block-element" - }, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_1__["createElement"])("span", { - className: "pmpro-block-title" - }, __('Paid Memberships Pro', 'paid-memberships-pro')), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_1__["createElement"])("span", { - className: "pmpro-block-subtitle" - }, __('Membership Account Page', 'paid-memberships-pro')))]; - }, - save: function save() { - return null; - } -})); - -/***/ }), - -/***/ "./blocks/account-page/inspector.js": -/*!******************************************!*\ - !*** ./blocks/account-page/inspector.js ***! - \******************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return Inspector; }); -/* harmony import */ var _babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "./node_modules/@babel/runtime/helpers/classCallCheck.js"); -/* harmony import */ var _babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_0__); -/* harmony import */ var _babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/createClass */ "./node_modules/@babel/runtime/helpers/createClass.js"); -/* harmony import */ var _babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1__); -/* harmony import */ var _babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/inherits */ "./node_modules/@babel/runtime/helpers/inherits.js"); -/* harmony import */ var _babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2__); -/* harmony import */ var _babel_runtime_helpers_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @babel/runtime/helpers/possibleConstructorReturn */ "./node_modules/@babel/runtime/helpers/possibleConstructorReturn.js"); -/* harmony import */ var _babel_runtime_helpers_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_3__); -/* harmony import */ var _babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @babel/runtime/helpers/getPrototypeOf */ "./node_modules/@babel/runtime/helpers/getPrototypeOf.js"); -/* harmony import */ var _babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_4__); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__); - - - - - - - -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_4___default()(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_4___default()(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _babel_runtime_helpers_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_3___default()(this, result); }; } - -function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } - -/** - * Internal block libraries - */ -var __ = wp.i18n.__; -var Component = wp.element.Component; -var _wp$components = wp.components, - PanelBody = _wp$components.PanelBody, - CheckboxControl = _wp$components.CheckboxControl; -var InspectorControls = wp.blockEditor.InspectorControls; -/** - * Create an Inspector Controls wrapper Component - */ - -var Inspector = /*#__PURE__*/function (_Component) { - _babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2___default()(Inspector, _Component); - - var _super = _createSuper(Inspector); - - function Inspector() { - _babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_0___default()(this, Inspector); - - return _super.apply(this, arguments); - } - - _babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1___default()(Inspector, [{ - key: "render", - value: function render() { - var _this$props = this.props, - _this$props$attribute = _this$props.attributes, - membership = _this$props$attribute.membership, - profile = _this$props$attribute.profile, - invoices = _this$props$attribute.invoices, - links = _this$props$attribute.links, - setAttributes = _this$props.setAttributes; - return Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__["createElement"])(InspectorControls, null, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__["createElement"])(PanelBody, null, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__["createElement"])(CheckboxControl, { - label: __("Show 'My Memberships' Section", 'paid-memberships-pro'), - checked: membership, - onChange: function onChange(membership) { - return setAttributes({ - membership: membership - }); - } - })), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__["createElement"])(PanelBody, null, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__["createElement"])(CheckboxControl, { - label: __("Show 'Profile' Section", 'paid-memberships-pro'), - checked: profile, - onChange: function onChange(profile) { - return setAttributes({ - profile: profile - }); - } - })), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__["createElement"])(PanelBody, null, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__["createElement"])(CheckboxControl, { - label: __("Show 'Invoices' Section", 'paid-memberships-pro'), - checked: invoices, - onChange: function onChange(invoices) { - return setAttributes({ - invoices: invoices - }); - } - })), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__["createElement"])(PanelBody, null, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__["createElement"])(CheckboxControl, { - label: __("Show 'Member Links' Section", 'paid-memberships-pro'), - checked: links, - onChange: function onChange(links) { - return setAttributes({ - links: links - }); - } - }))); - } - }]); - - return Inspector; -}(Component); - - - -/***/ }), - -/***/ "./blocks/account-profile-section/block.js": -/*!*************************************************!*\ - !*** ./blocks/account-profile-section/block.js ***! - \*************************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__); - - -/** - * Block: PMPro Checkout Button - * - * Add a styled link to the PMPro checkout page for a - * specific level. - * - */ - -/** - * Internal block libraries - */ -var __ = wp.i18n.__; -var registerBlockType = wp.blocks.registerBlockType; -/** - * Register block - */ - -/* harmony default export */ __webpack_exports__["default"] = (registerBlockType('pmpro/account-profile-section', { - title: __('Membership Account: Profile', 'paid-memberships-pro'), - description: __('Displays the member\'s profile information.', 'paid-memberships-pro'), - category: 'pmpro', - icon: { - background: '#2997c8', - foreground: '#ffffff', - src: 'admin-users' - }, - keywords: [__('pmpro', 'paid-memberships-pro')], - supports: {}, - attributes: {}, - edit: function edit() { - return [Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("div", { - className: "pmpro-block-element" - }, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("span", { - className: "pmpro-block-title" - }, __('Paid Memberships Pro', 'paid-memberships-pro')), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("span", { - className: "pmpro-block-subtitle" - }, __('Membership Account: Profile', 'paid-memberships-pro')))]; - }, - save: function save() { - return null; - } -})); - -/***/ }), - -/***/ "./blocks/billing-page/block.js": -/*!**************************************!*\ - !*** ./blocks/billing-page/block.js ***! - \**************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__); - - -/** - * Block: PMPro Membership Billing - * - * Displays the Membership Billing page and form. - * - */ - -/** - * Internal block libraries - */ -var __ = wp.i18n.__; -var registerBlockType = wp.blocks.registerBlockType; -/** - * Register block - */ - -/* harmony default export */ __webpack_exports__["default"] = (registerBlockType('pmpro/billing-page', { - title: __('Membership Billing Page', 'paid-memberships-pro'), - description: __('Displays the member\'s billing information and allows them to update the payment method.', 'paid-memberships-pro'), - category: 'pmpro', - icon: { - background: '#2997c8', - foreground: '#ffffff', - src: 'list-view' - }, - keywords: [__('pmpro', 'paid-memberships-pro')], - supports: {}, - attributes: {}, - edit: function edit() { - return [Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("div", { - className: "pmpro-block-element" - }, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("span", { - className: "pmpro-block-title" - }, __('Paid Memberships Pro', 'paid-memberships-pro')), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("span", { - className: "pmpro-block-subtitle" - }, __('Membership Billing Page', 'paid-memberships-pro')))]; - }, - save: function save() { - return null; - } -})); - -/***/ }), - -/***/ "./blocks/blocks.js": -/*!**************************!*\ - !*** ./blocks/blocks.js ***! - \**************************/ -/*! no exports provided */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__); -/* harmony import */ var _i18n_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./i18n.js */ "./blocks/i18n.js"); -/* harmony import */ var _i18n_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_i18n_js__WEBPACK_IMPORTED_MODULE_1__); -/* harmony import */ var _checkout_button_block_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./checkout-button/block.js */ "./blocks/checkout-button/block.js"); -/* harmony import */ var _account_page_block_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./account-page/block.js */ "./blocks/account-page/block.js"); -/* harmony import */ var _account_membership_section_block_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./account-membership-section/block.js */ "./blocks/account-membership-section/block.js"); -/* harmony import */ var _account_profile_section_block_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./account-profile-section/block.js */ "./blocks/account-profile-section/block.js"); -/* harmony import */ var _account_invoices_section_block_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./account-invoices-section/block.js */ "./blocks/account-invoices-section/block.js"); -/* harmony import */ var _account_links_section_block_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./account-links-section/block.js */ "./blocks/account-links-section/block.js"); -/* harmony import */ var _billing_page_block_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./billing-page/block.js */ "./blocks/billing-page/block.js"); -/* harmony import */ var _cancel_page_block_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./cancel-page/block.js */ "./blocks/cancel-page/block.js"); -/* harmony import */ var _checkout_page_block_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./checkout-page/block.js */ "./blocks/checkout-page/block.js"); -/* harmony import */ var _confirmation_page_block_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./confirmation-page/block.js */ "./blocks/confirmation-page/block.js"); -/* harmony import */ var _invoice_page_block_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./invoice-page/block.js */ "./blocks/invoice-page/block.js"); -/* harmony import */ var _levels_page_block_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./levels-page/block.js */ "./blocks/levels-page/block.js"); -/* harmony import */ var _membership_block_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./membership/block.js */ "./blocks/membership/block.js"); -/* harmony import */ var _member_profile_edit_block_js__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./member-profile-edit/block.js */ "./blocks/member-profile-edit/block.js"); -/* harmony import */ var _login_block_js__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./login/block.js */ "./blocks/login/block.js"); - - -/** - * Import internationalization - */ - -/** - * Import registerBlockType blocks - */ - - - - - - - - - - - - - - - - - -(function () { - var PMProSVG = Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("svg", { - version: "1.1", - id: "Layer_1", - x: "0px", - y: "0px", - viewBox: "0 0 18 18" - }, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("path", { - d: "M17.99,4.53c-0.35,0.12-0.7,0.26-1.06,0.4c-0.35,0.14-0.7,0.3-1.05,0.46c-0.35,0.16-0.69,0.33-1.03,0.51 c-0.34,0.18-0.68,0.37-1.02,0.56c-0.15,0.09-0.31,0.18-0.46,0.27c-0.15,0.09-0.3,0.19-0.45,0.28c-0.15,0.1-0.3,0.19-0.45,0.29 c-0.15,0.1-0.3,0.2-0.44,0.3c-0.08,0.05-0.16,0.11-0.23,0.16c-0.08,0.05-0.16,0.11-0.23,0.17c-0.08,0.06-0.15,0.11-0.23,0.17 c-0.08,0.06-0.15,0.11-0.23,0.17c-0.07,0.05-0.13,0.1-0.2,0.15c-0.07,0.05-0.13,0.1-0.2,0.15c-0.07,0.05-0.13,0.1-0.2,0.15 c-0.07,0.05-0.13,0.1-0.2,0.16c-0.04,0.03-0.09,0.07-0.13,0.1c-0.04,0.03-0.09,0.07-0.13,0.1C10,9.13,9.95,9.17,9.91,9.2 C9.87,9.24,9.83,9.27,9.79,9.31C9.77,9.32,9.75,9.33,9.74,9.35C9.72,9.36,9.71,9.37,9.69,9.39C9.67,9.4,9.66,9.42,9.64,9.43 C9.63,9.44,9.61,9.46,9.59,9.47C9.54,9.52,9.49,9.56,9.43,9.61C9.38,9.65,9.33,9.7,9.27,9.74C9.22,9.79,9.17,9.84,9.11,9.88 c-0.05,0.05-0.11,0.09-0.16,0.14c-0.27,0.24-0.54,0.49-0.81,0.75c-0.26,0.25-0.53,0.51-0.78,0.78c-0.26,0.26-0.51,0.53-0.76,0.81 c-0.25,0.27-0.49,0.55-0.73,0.84c-0.03,0.04-0.07,0.08-0.1,0.12c-0.03,0.04-0.07,0.08-0.1,0.12c-0.03,0.04-0.07,0.08-0.1,0.12 c-0.03,0.04-0.07,0.08-0.1,0.12c-0.03,0.04-0.07,0.08-0.1,0.12c-0.03,0.04-0.06,0.08-0.1,0.12c-0.03,0.04-0.06,0.08-0.1,0.12 c-0.03,0.04-0.06,0.08-0.1,0.12c0,0.01-0.01,0.01-0.01,0.02c0,0.01-0.01,0.01-0.01,0.02c0,0.01-0.01,0.01-0.01,0.02 c0,0.01-0.01,0.01-0.01,0.02c-0.03,0.03-0.05,0.07-0.08,0.1c-0.03,0.03-0.05,0.07-0.08,0.1c-0.03,0.03-0.05,0.07-0.08,0.11 c-0.03,0.03-0.05,0.07-0.08,0.11c-0.03,0.04-0.06,0.08-0.09,0.12c-0.03,0.04-0.06,0.08-0.09,0.12C4.5,14.96,4.47,15,4.44,15.05 c-0.03,0.04-0.06,0.08-0.09,0.13c0,0-0.01,0.01-0.01,0.01c0,0-0.01,0.01-0.01,0.01c0,0-0.01,0.01-0.01,0.01c0,0-0.01,0.01-0.01,0.01 c-0.15,0.22-0.31,0.44-0.46,0.67c-0.15,0.22-0.3,0.45-0.44,0.68c-0.14,0.23-0.29,0.46-0.43,0.7C2.85,17.52,2.71,17.76,2.58,18 c-0.08-0.19-0.16-0.38-0.23-0.56c-0.07-0.18-0.14-0.35-0.21-0.51c-0.07-0.16-0.13-0.32-0.19-0.47c-0.06-0.15-0.12-0.3-0.18-0.45 l-0.01,0.01l0.01-0.03c-0.01-0.03-0.02-0.05-0.03-0.08c-0.01-0.02-0.02-0.05-0.03-0.07c-0.01-0.02-0.02-0.05-0.03-0.07 c-0.01-0.02-0.02-0.05-0.03-0.07c0-0.01-0.01-0.02-0.01-0.02c0-0.01-0.01-0.02-0.01-0.02c0-0.01-0.01-0.02-0.01-0.02 c0-0.01-0.01-0.02-0.01-0.02c-0.01-0.02-0.01-0.04-0.02-0.05c-0.01-0.02-0.01-0.04-0.02-0.05c-0.01-0.02-0.01-0.04-0.02-0.05 c-0.01-0.02-0.01-0.04-0.02-0.05c-0.01-0.03-0.02-0.05-0.03-0.07c-0.01-0.02-0.02-0.05-0.03-0.07c-0.01-0.02-0.02-0.05-0.03-0.07 c-0.01-0.02-0.02-0.05-0.03-0.07c-0.01-0.02-0.02-0.05-0.03-0.07c-0.01-0.02-0.02-0.05-0.03-0.07c-0.01-0.02-0.02-0.05-0.03-0.07 c-0.01-0.02-0.02-0.05-0.03-0.07c-0.02-0.05-0.04-0.1-0.06-0.16c-0.02-0.05-0.04-0.1-0.06-0.16c-0.02-0.05-0.04-0.11-0.06-0.16 c-0.02-0.05-0.04-0.11-0.06-0.16c-0.08-0.23-0.16-0.47-0.25-0.72c-0.08-0.25-0.17-0.5-0.26-0.77c-0.09-0.27-0.18-0.55-0.27-0.84 c-0.09-0.29-0.19-0.6-0.29-0.93c0.05,0.07,0.1,0.15,0.15,0.22c0.05,0.07,0.1,0.14,0.14,0.2c0.05,0.07,0.09,0.13,0.14,0.19 c0.04,0.06,0.09,0.12,0.13,0.18c0.09,0.13,0.18,0.24,0.27,0.35c0.09,0.11,0.17,0.21,0.24,0.3c0.08,0.09,0.15,0.18,0.23,0.27 c0.07,0.09,0.15,0.17,0.22,0.25c0.02,0.02,0.03,0.04,0.05,0.06c0.02,0.02,0.03,0.04,0.05,0.06c0.02,0.02,0.03,0.04,0.05,0.06 c0.02,0.02,0.03,0.04,0.05,0.06c0.07,0.07,0.13,0.14,0.2,0.22c0.07,0.08,0.14,0.16,0.22,0.24c0.08,0.08,0.16,0.17,0.24,0.27 c0.09,0.1,0.18,0.2,0.27,0.31c0.01,0.01,0.02,0.02,0.03,0.03c0.01,0.01,0.02,0.02,0.03,0.03c0.01,0.01,0.02,0.02,0.03,0.04 c0.01,0.01,0.02,0.02,0.03,0.04c0.02-0.02,0.04-0.05,0.06-0.07c0.02-0.02,0.04-0.05,0.06-0.07c0.02-0.02,0.04-0.05,0.06-0.07 C2.96,14.03,2.98,14,3,13.98c0.03-0.03,0.05-0.06,0.08-0.09c0.03-0.03,0.05-0.06,0.08-0.09c0.03-0.03,0.05-0.06,0.08-0.09 c0.03-0.03,0.05-0.06,0.08-0.09c0.28-0.33,0.58-0.65,0.88-0.97c0.31-0.32,0.63-0.62,0.95-0.92c0.33-0.3,0.67-0.6,1.02-0.88 c0.35-0.29,0.72-0.57,1.09-0.84c0.06-0.04,0.11-0.08,0.17-0.12C7.49,9.83,7.55,9.79,7.6,9.75c0.06-0.04,0.11-0.08,0.17-0.12 c0.06-0.04,0.12-0.08,0.17-0.12C7.97,9.5,7.98,9.49,8,9.48c0.02-0.01,0.03-0.02,0.05-0.03C8.06,9.43,8.08,9.42,8.1,9.41 C8.11,9.4,8.13,9.38,8.14,9.37c0.05-0.03,0.1-0.06,0.14-0.1c0.05-0.03,0.1-0.06,0.14-0.1c0.05-0.03,0.1-0.06,0.14-0.1 c0.05-0.03,0.1-0.06,0.15-0.09C8.79,8.94,8.87,8.9,8.94,8.85C9.01,8.8,9.09,8.76,9.16,8.71c0.07-0.05,0.15-0.09,0.22-0.14 c0.07-0.05,0.15-0.09,0.22-0.14c0.09-0.05,0.17-0.11,0.26-0.16c0.09-0.05,0.17-0.1,0.26-0.16c0.09-0.05,0.18-0.1,0.27-0.15 c0.09-0.05,0.18-0.1,0.27-0.15c0.25-0.14,0.51-0.28,0.76-0.42c0.26-0.14,0.52-0.27,0.78-0.41c0.26-0.13,0.53-0.27,0.79-0.4 c0.27-0.13,0.54-0.26,0.81-0.38c0.01,0,0.02-0.01,0.03-0.01c0.01,0,0.02-0.01,0.03-0.01c0.01,0,0.02-0.01,0.03-0.01 c0.01,0,0.02-0.01,0.03-0.01c0.33-0.15,0.67-0.3,1-0.44c0.34-0.15,0.68-0.29,1.02-0.42c0.34-0.14,0.69-0.27,1.03-0.4 C17.31,4.77,17.65,4.64,17.99,4.53z M15.73,9.59l0.65,4.56l-10.4-0.05c-0.02,0.02-0.04,0.04-0.05,0.07 c-0.02,0.02-0.04,0.04-0.05,0.07c-0.02,0.02-0.04,0.04-0.05,0.07c-0.02,0.02-0.04,0.04-0.05,0.07c-0.02,0.02-0.03,0.04-0.05,0.06 c-0.02,0.02-0.03,0.04-0.05,0.06c-0.02,0.02-0.03,0.04-0.05,0.06c-0.02,0.02-0.03,0.04-0.05,0.06l11.23,0.2l-0.78-5.24L15.73,9.59z M6.75,13.2c-0.04,0.04-0.08,0.09-0.11,0.13c-0.04,0.04-0.08,0.09-0.11,0.13c-0.04,0.04-0.07,0.09-0.11,0.13l9.22-0.07L15.04,9.1 l-0.07-0.53l-0.39,0.04l0.55,4.3l-8.27,0.17C6.83,13.12,6.79,13.16,6.75,13.2z M13.78,7.66l-0.59,0.08 c-0.06,0.04-0.12,0.08-0.18,0.12c-0.06,0.04-0.12,0.08-0.18,0.12c-0.06,0.04-0.12,0.08-0.18,0.12c-0.06,0.04-0.12,0.08-0.18,0.12 c-0.08,0.05-0.16,0.11-0.24,0.16c-0.08,0.06-0.16,0.11-0.24,0.17c-0.08,0.06-0.16,0.11-0.24,0.17c-0.08,0.06-0.16,0.11-0.24,0.17 c-0.07,0.05-0.14,0.1-0.21,0.15c-0.07,0.05-0.14,0.1-0.21,0.15c-0.07,0.05-0.14,0.1-0.2,0.16c-0.07,0.05-0.14,0.11-0.2,0.16 c-0.04,0.03-0.09,0.07-0.13,0.1c-0.04,0.03-0.09,0.07-0.13,0.1c-0.04,0.04-0.09,0.07-0.13,0.11c-0.04,0.04-0.09,0.07-0.13,0.11 c-0.02,0.01-0.03,0.03-0.05,0.04c-0.02,0.01-0.03,0.03-0.05,0.04c-0.02,0.01-0.03,0.03-0.05,0.04c-0.02,0.01-0.03,0.03-0.05,0.04 c-0.06,0.05-0.11,0.09-0.16,0.14c-0.05,0.05-0.11,0.09-0.16,0.14c-0.05,0.05-0.11,0.09-0.16,0.14c-0.05,0.05-0.11,0.09-0.16,0.14 c-0.17,0.15-0.34,0.3-0.51,0.46c-0.17,0.16-0.33,0.31-0.5,0.47c-0.16,0.16-0.33,0.32-0.49,0.48c-0.16,0.16-0.32,0.33-0.48,0.49 l6.98-0.23l-0.48-4.16L13.78,7.66z M13.32,5.73c-0.06,0.03-0.11,0.05-0.17,0.08c-0.06,0.03-0.12,0.06-0.17,0.09 c-0.03,0.01-0.06,0.03-0.08,0.04c0,0,0,0,0,0c-0.02-0.01-0.04-0.03-0.06-0.04c-0.06-0.04-0.13-0.07-0.21-0.09 c-0.07-0.02-0.15-0.04-0.23-0.04c-0.08,0-0.16,0-0.24,0.01l-0.14,0.02c0.07-0.04,0.13-0.08,0.18-0.14c0.05-0.05,0.1-0.11,0.14-0.18 c0.04-0.06,0.06-0.13,0.08-0.2c0.02-0.07,0.02-0.15,0.01-0.22c-0.01-0.1-0.04-0.18-0.08-0.26c-0.05-0.08-0.11-0.14-0.18-0.19 c-0.07-0.05-0.16-0.08-0.25-0.1c-0.09-0.02-0.19-0.02-0.29,0c-0.1,0.02-0.19,0.06-0.27,0.11c-0.08,0.05-0.15,0.11-0.21,0.19 C11.08,4.9,11.03,4.98,11,5.07c-0.03,0.09-0.04,0.18-0.03,0.27c0.01,0.07,0.02,0.14,0.05,0.2c0.03,0.06,0.06,0.12,0.11,0.17 c0.05,0.05,0.1,0.09,0.16,0.12c0.06,0.03,0.13,0.06,0.2,0.07l-0.17,0.03C11.18,5.96,11.06,6,10.94,6.07 c-0.11,0.07-0.21,0.15-0.29,0.25c-0.08,0.1-0.14,0.21-0.19,0.33c-0.04,0.12-0.06,0.25-0.05,0.38l0.02,0.33 c-0.09,0.05-0.17,0.1-0.26,0.16c-0.02,0-0.05,0-0.07,0c0.02-0.01,0.04-0.02,0.06-0.03c-0.06-0.06-0.13-0.11-0.21-0.16 c-0.07-0.04-0.15-0.08-0.24-0.1C9.63,7.2,9.54,7.18,9.45,7.18c-0.09-0.01-0.18,0-0.27,0.01L9.01,7.21c0.08-0.05,0.16-0.1,0.23-0.17 C9.3,6.97,9.36,6.9,9.41,6.81C9.46,6.73,9.5,6.64,9.52,6.55c0.02-0.09,0.03-0.19,0.03-0.29C9.54,6.13,9.51,6.02,9.46,5.92 c-0.05-0.1-0.12-0.18-0.21-0.25C9.17,5.6,9.07,5.56,8.96,5.53c-0.11-0.02-0.22-0.03-0.34,0C8.5,5.55,8.39,5.6,8.29,5.66 C8.19,5.72,8.1,5.81,8.02,5.9C7.95,5.99,7.89,6.1,7.85,6.21C7.81,6.32,7.79,6.44,7.79,6.56c0,0.09,0.02,0.18,0.05,0.26 c0.03,0.08,0.07,0.16,0.12,0.22c0.05,0.07,0.11,0.12,0.18,0.17c0.07,0.04,0.15,0.08,0.23,0.1l-0.2,0.03 C8.01,7.37,7.85,7.42,7.72,7.51C7.58,7.59,7.46,7.7,7.35,7.82C7.25,7.95,7.17,8.1,7.11,8.25c-0.06,0.16-0.09,0.33-0.08,0.5 l0.01,0.74C6.98,9.53,6.93,9.58,6.88,9.62C6.81,9.49,6.74,9.38,6.65,9.28c-0.1-0.11-0.21-0.2-0.33-0.27 C6.2,8.94,6.07,8.89,5.93,8.87C5.8,8.84,5.66,8.83,5.51,8.85L5.3,8.88c0.1-0.06,0.2-0.13,0.29-0.22c0.09-0.09,0.16-0.19,0.23-0.3 c0.06-0.11,0.12-0.23,0.15-0.35C6,7.88,6.02,7.75,6.02,7.62c0-0.17-0.03-0.32-0.08-0.46C5.88,7.03,5.8,6.91,5.71,6.82 C5.61,6.73,5.5,6.67,5.37,6.63c-0.12-0.04-0.26-0.04-0.4-0.02c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0 c-0.14,0.03-0.28,0.08-0.4,0.16c-0.12,0.08-0.23,0.18-0.33,0.3C4.14,7.2,4.07,7.33,4.01,7.48c-0.06,0.15-0.09,0.3-0.1,0.46 c0,0.12,0.01,0.24,0.03,0.35c0.03,0.11,0.07,0.21,0.12,0.3c0.05,0.09,0.12,0.17,0.2,0.23c0.08,0.06,0.17,0.11,0.27,0.14L4.3,9 C4.1,9.03,3.92,9.09,3.75,9.2C3.58,9.3,3.43,9.44,3.3,9.6c-0.13,0.16-0.24,0.35-0.32,0.56c-0.08,0.21-0.13,0.43-0.14,0.67 l-0.12,2.26l-0.53-0.6l0.49-6.3C2.68,6.09,2.71,6,2.74,5.91c0.04-0.09,0.08-0.17,0.14-0.24c0.06-0.07,0.12-0.14,0.2-0.19 C3.15,5.44,3.23,5.4,3.32,5.38l0.71-0.17l0-0.02l0.18-0.04l0.06-1.19C4.3,3.56,4.39,3.15,4.55,2.77c0.16-0.38,0.37-0.75,0.64-1.08 C5.45,1.35,5.76,1.05,6.11,0.8c0.35-0.26,0.74-0.47,1.16-0.61C7.7,0.05,8.12-0.01,8.51,0c0.4,0.02,0.77,0.12,1.1,0.29 c0.33,0.18,0.62,0.43,0.83,0.75c0.21,0.33,0.35,0.73,0.38,1.19l0.1,1.36l0.3-0.07l0,0.02l0.89-0.21c0.13-0.03,0.25-0.03,0.36-0.02 c0.12,0.02,0.22,0.05,0.32,0.11c0.09,0.05,0.17,0.13,0.23,0.21c0.06,0.09,0.1,0.19,0.11,0.31L13.32,5.73z M9.46,3.96L9.4,2.61 C9.39,2.33,9.31,2.09,9.19,1.88C9.07,1.68,8.91,1.51,8.71,1.4C8.52,1.28,8.29,1.21,8.05,1.19C7.81,1.17,7.55,1.2,7.28,1.28 C7.01,1.37,6.76,1.49,6.53,1.65c-0.22,0.16-0.43,0.35-0.6,0.57C5.77,2.43,5.63,2.67,5.53,2.91c-0.1,0.25-0.16,0.5-0.17,0.76 L5.33,4.91L9.46,3.96z" - })); - wp.blocks.updateCategory('pmpro', { - icon: PMProSVG - }); -})(); - -/***/ }), - -/***/ "./blocks/cancel-page/block.js": -/*!*************************************!*\ - !*** ./blocks/cancel-page/block.js ***! - \*************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__); - - -/** - * Block: PMPro Membership Cancel - * - * Displays the Membership Cancel page. - * - */ - -/** - * Internal block libraries - */ -var __ = wp.i18n.__; -var registerBlockType = wp.blocks.registerBlockType; -/** - * Register block - */ - -/* harmony default export */ __webpack_exports__["default"] = (registerBlockType('pmpro/cancel-page', { - title: __('Membership Cancel Page', 'paid-memberships-pro'), - description: __('Generates the Membership Cancel page.', 'paid-memberships-pro'), - category: 'pmpro', - icon: { - background: '#2997c8', - foreground: '#ffffff', - src: 'no' - }, - keywords: [__('pmpro', 'paid-memberships-pro')], - supports: {}, - attributes: {}, - edit: function edit() { - return [Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("div", { - className: "pmpro-block-element" - }, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("span", { - className: "pmpro-block-title" - }, __('Paid Memberships Pro', 'paid-memberships-pro')), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("span", { - className: "pmpro-block-subtitle" - }, __('Membership Cancel Page', 'paid-memberships-pro')))]; - }, - save: function save() { - return null; - } -})); - -/***/ }), - -/***/ "./blocks/checkout-button/block.js": -/*!*****************************************!*\ - !*** ./blocks/checkout-button/block.js ***! - \*****************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/defineProperty */ "./node_modules/@babel/runtime/helpers/defineProperty.js"); -/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_1__); -/* harmony import */ var _inspector__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./inspector */ "./blocks/checkout-button/inspector.js"); - - - -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } - -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0___default()(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } - -/** - * Block: PMPro Checkout Button - * - * Add a styled link to the PMPro checkout page for a specific level. - * - */ - -/** - * Block dependencies - */ - -/** - * Internal block libraries - */ - -var __ = wp.i18n.__; -var registerBlockType = wp.blocks.registerBlockType; -var _wp$components = wp.components, - TextControl = _wp$components.TextControl, - SelectControl = _wp$components.SelectControl; -/** - * Register block - */ - -/* harmony default export */ __webpack_exports__["default"] = (registerBlockType('pmpro/checkout-button', { - title: __('Membership Checkout Button', 'paid-memberships-pro'), - description: __('Displays a button-styled link to Membership Checkout for the specified level.', 'paid-memberships-pro'), - category: 'pmpro', - icon: { - background: '#2997c8', - foreground: '#ffffff', - src: 'migrate' - }, - keywords: [__('pmpro', 'paid-memberships-pro'), __('buy', 'paid-memberships-pro'), __('level', 'paid-memberships-pro')], - supports: {}, - attributes: { - text: { - type: 'string', - default: 'Buy Now' - }, - css_class: { - type: 'string', - default: 'pmpro_btn' - }, - level: { - type: 'string' - } - }, - edit: function edit(props) { - var _props$attributes = props.attributes, - text = _props$attributes.text, - level = _props$attributes.level, - css_class = _props$attributes.css_class, - className = props.className, - setAttributes = props.setAttributes, - isSelected = props.isSelected; - return [isSelected && Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_1__["createElement"])(_inspector__WEBPACK_IMPORTED_MODULE_2__["default"], _objectSpread({ - setAttributes: setAttributes - }, props)), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_1__["createElement"])("div", { - className: className - }, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_1__["createElement"])("a", { - class: css_class - }, text)), isSelected && Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_1__["createElement"])("div", { - className: "pmpro-block-element" - }, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_1__["createElement"])(TextControl, { - label: __('Button Text', 'paid-memberships-pro'), - value: text, - onChange: function onChange(text) { - return setAttributes({ - text: text - }); - } - }), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_1__["createElement"])(SelectControl, { - label: __('Membership Level', 'paid-memberships-pro'), - value: level, - onChange: function onChange(level) { - return setAttributes({ - level: level - }); - }, - options: window.pmpro.all_level_values_and_labels - }), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_1__["createElement"])(TextControl, { - label: __('CSS Class', 'paid-memberships-pro'), - value: css_class, - onChange: function onChange(css_class) { - return setAttributes({ - css_class: css_class - }); - } - }))]; - }, - save: function save() { - return null; - } -})); - -/***/ }), - -/***/ "./blocks/checkout-button/inspector.js": -/*!*********************************************!*\ - !*** ./blocks/checkout-button/inspector.js ***! - \*********************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return Inspector; }); -/* harmony import */ var _babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "./node_modules/@babel/runtime/helpers/classCallCheck.js"); -/* harmony import */ var _babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_0__); -/* harmony import */ var _babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/createClass */ "./node_modules/@babel/runtime/helpers/createClass.js"); -/* harmony import */ var _babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1__); -/* harmony import */ var _babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/inherits */ "./node_modules/@babel/runtime/helpers/inherits.js"); -/* harmony import */ var _babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2__); -/* harmony import */ var _babel_runtime_helpers_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @babel/runtime/helpers/possibleConstructorReturn */ "./node_modules/@babel/runtime/helpers/possibleConstructorReturn.js"); -/* harmony import */ var _babel_runtime_helpers_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_3__); -/* harmony import */ var _babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @babel/runtime/helpers/getPrototypeOf */ "./node_modules/@babel/runtime/helpers/getPrototypeOf.js"); -/* harmony import */ var _babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_4__); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__); - - - - - - - -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_4___default()(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_4___default()(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _babel_runtime_helpers_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_3___default()(this, result); }; } - -function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } - -/** - * Internal block libraries - */ -var __ = wp.i18n.__; -var Component = wp.element.Component; -var _wp$components = wp.components, - PanelBody = _wp$components.PanelBody, - TextControl = _wp$components.TextControl, - SelectControl = _wp$components.SelectControl; -var InspectorControls = wp.blockEditor.InspectorControls; -/** - * Create an Inspector Controls wrapper Component - */ - -var Inspector = /*#__PURE__*/function (_Component) { - _babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2___default()(Inspector, _Component); - - var _super = _createSuper(Inspector); - - function Inspector() { - _babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_0___default()(this, Inspector); - - return _super.apply(this, arguments); - } - - _babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1___default()(Inspector, [{ - key: "render", - value: function render() { - var _this$props = this.props, - _this$props$attribute = _this$props.attributes, - text = _this$props$attribute.text, - level = _this$props$attribute.level, - css_class = _this$props$attribute.css_class, - setAttributes = _this$props.setAttributes; - return Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__["createElement"])(InspectorControls, null, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__["createElement"])(PanelBody, null, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__["createElement"])(TextControl, { - label: __('Button Text', 'paid-memberships-pro'), - help: __('Text for checkout button', 'paid-memberships-pro'), - value: text, - onChange: function onChange(text) { - return setAttributes({ - text: text - }); - } - })), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__["createElement"])(PanelBody, null, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__["createElement"])(SelectControl, { - label: __('Level', 'paid-memberships-pro'), - help: __('The level to link to for checkout button', 'paid-memberships-pro'), - value: level, - onChange: function onChange(level) { - return setAttributes({ - level: level - }); - }, - options: window.pmpro.all_level_values_and_labels - })), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__["createElement"])(PanelBody, null, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__["createElement"])(TextControl, { - label: __('CSS Class', 'paid-memberships-pro'), - help: __('Additional styling for checkout button', 'paid-memberships-pro'), - value: css_class, - onChange: function onChange(css_class) { - return setAttributes({ - css_class: css_class - }); - } - }))); - } - }]); - - return Inspector; -}(Component); - - - -/***/ }), - -/***/ "./blocks/checkout-page/block.js": -/*!***************************************!*\ - !*** ./blocks/checkout-page/block.js ***! - \***************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/defineProperty */ "./node_modules/@babel/runtime/helpers/defineProperty.js"); -/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_1__); -/* harmony import */ var _inspector__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./inspector */ "./blocks/checkout-page/inspector.js"); - - - -function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } - -function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0___default()(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } - -/** - * Block: PMPro Membership Checkout - * - * Displays the Membership Checkout form. - * - */ - -/** - * Block dependencies - */ - -/** - * Internal block libraries - */ - -var __ = wp.i18n.__; -var registerBlockType = wp.blocks.registerBlockType; -var SelectControl = wp.components.SelectControl; -/** - * Register block - */ - -/* harmony default export */ __webpack_exports__["default"] = (registerBlockType('pmpro/checkout-page', { - title: __('Membership Checkout Form', 'paid-memberships-pro'), - description: __('Displays the Membership Checkout form.', 'paid-memberships-pro'), - category: 'pmpro', - icon: { - background: '#2997c8', - foreground: '#ffffff', - src: 'list-view' - }, - keywords: [__('pmpro', 'paid-memberships-pro')], - supports: {}, - attributes: { - pmpro_default_level: { - type: 'string', - source: 'meta', - meta: 'pmpro_default_level' - } - }, - edit: function edit(props) { - var pmpro_default_level = props.attributes.pmpro_default_level, - className = props.className, - setAttributes = props.setAttributes, - isSelected = props.isSelected; - return [isSelected && Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_1__["createElement"])(_inspector__WEBPACK_IMPORTED_MODULE_2__["default"], _objectSpread({ - setAttributes: setAttributes - }, props)), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_1__["createElement"])("div", { - className: "pmpro-block-element" - }, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_1__["createElement"])("span", { - className: "pmpro-block-title" - }, __('Paid Memberships Pro', 'paid-memberships-pro')), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_1__["createElement"])("span", { - className: "pmpro-block-subtitle" - }, __('Membership Checkout Form', 'paid-memberships-pro')), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_1__["createElement"])("hr", null), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_1__["createElement"])(SelectControl, { - label: __('Membership Level', 'paid-memberships-pro'), - value: pmpro_default_level, - onChange: function onChange(pmpro_default_level) { - return setAttributes({ - pmpro_default_level: pmpro_default_level - }); - }, - options: window.pmpro.all_level_values_and_labels - }))]; - }, - save: function save() { - return null; - } -})); - -/***/ }), - -/***/ "./blocks/checkout-page/inspector.js": -/*!*******************************************!*\ - !*** ./blocks/checkout-page/inspector.js ***! - \*******************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return Inspector; }); -/* harmony import */ var _babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "./node_modules/@babel/runtime/helpers/classCallCheck.js"); -/* harmony import */ var _babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_0__); -/* harmony import */ var _babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/createClass */ "./node_modules/@babel/runtime/helpers/createClass.js"); -/* harmony import */ var _babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1__); -/* harmony import */ var _babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/inherits */ "./node_modules/@babel/runtime/helpers/inherits.js"); -/* harmony import */ var _babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2__); -/* harmony import */ var _babel_runtime_helpers_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @babel/runtime/helpers/possibleConstructorReturn */ "./node_modules/@babel/runtime/helpers/possibleConstructorReturn.js"); -/* harmony import */ var _babel_runtime_helpers_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_3__); -/* harmony import */ var _babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @babel/runtime/helpers/getPrototypeOf */ "./node_modules/@babel/runtime/helpers/getPrototypeOf.js"); -/* harmony import */ var _babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_4__); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__); - - - - - - - -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_4___default()(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_4___default()(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _babel_runtime_helpers_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_3___default()(this, result); }; } - -function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } - -/** - * Internal block libraries - */ -var __ = wp.i18n.__; -var Component = wp.element.Component; -var _wp$components = wp.components, - PanelBody = _wp$components.PanelBody, - PanelRow = _wp$components.PanelRow, - SelectControl = _wp$components.SelectControl; -var InspectorControls = wp.blockEditor.InspectorControls; -/** - * Create an Inspector Controls wrapper Component - */ - -var Inspector = /*#__PURE__*/function (_Component) { - _babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2___default()(Inspector, _Component); - - var _super = _createSuper(Inspector); - - function Inspector() { - _babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_0___default()(this, Inspector); - - return _super.apply(this, arguments); - } - - _babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1___default()(Inspector, [{ - key: "render", - value: function render() { - var _this$props = this.props, - pmpro_default_level = _this$props.attributes.pmpro_default_level, - setAttributes = _this$props.setAttributes; - return Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__["createElement"])(InspectorControls, null, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__["createElement"])(PanelBody, null, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__["createElement"])(SelectControl, { - label: __('Membership Level', 'paid-memberships-pro'), - help: __('Choose a default level for Membership Checkout.', 'paid-memberships-pro'), - value: pmpro_default_level, - onChange: function onChange(pmpro_default_level) { - return setAttributes({ - pmpro_default_level: pmpro_default_level - }); - }, - options: [''].concat(window.pmpro.all_level_values_and_labels) - }))); - } - }]); - - return Inspector; -}(Component); - - - -/***/ }), - -/***/ "./blocks/confirmation-page/block.js": -/*!*******************************************!*\ - !*** ./blocks/confirmation-page/block.js ***! - \*******************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__); - - -/** - * Block: PMPro Membership Confirmation - * - * Displays the Membership Confirmation template. - * - */ - -/** - * Internal block libraries - */ -var __ = wp.i18n.__; -var registerBlockType = wp.blocks.registerBlockType; -/** - * Register block - */ - -/* harmony default export */ __webpack_exports__["default"] = (registerBlockType('pmpro/confirmation-page', { - title: __('Membership Confirmation Page', 'paid-memberships-pro'), - description: __('Displays the member\'s Membership Confirmation after Membership Checkout.', 'paid-memberships-pro'), - category: 'pmpro', - icon: { - background: '#2997c8', - foreground: '#ffffff', - src: 'yes' - }, - keywords: [__('pmpro', 'paid-memberships-pro')], - supports: {}, - attributes: {}, - edit: function edit() { - return [Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("div", { - className: "pmpro-block-element" - }, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("span", { - className: "pmpro-block-title" - }, __('Paid Memberships Pro', 'paid-memberships-pro')), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("span", { - className: "pmpro-block-subtitle" - }, __('Membership Confirmation Page', 'paid-memberships-pro')))]; - }, - save: function save() { - return null; - } -})); - -/***/ }), - -/***/ "./blocks/i18n.js": -/*!************************!*\ - !*** ./blocks/i18n.js ***! - \************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -wp.i18n.setLocaleData({ - '': {} -}, 'paid-memberships-pro'); - -/***/ }), - -/***/ "./blocks/invoice-page/block.js": -/*!**************************************!*\ - !*** ./blocks/invoice-page/block.js ***! - \**************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__); - - -/** - * Block: PMPro Membership Invoices - * - * Displays the Membership Invoices template. - * - */ - -/** - * Internal block libraries - */ -var __ = wp.i18n.__; -var registerBlockType = wp.blocks.registerBlockType; -/** - * Register block - */ - -/* harmony default export */ __webpack_exports__["default"] = (registerBlockType('pmpro/invoice-page', { - title: __('Membership Invoice Page', 'paid-memberships-pro'), - description: __('Displays the member\'s Membership Invoices.', 'paid-memberships-pro'), - category: 'pmpro', - icon: { - background: '#2997c8', - foreground: '#ffffff', - src: 'archive' - }, - keywords: [__('pmpro', 'paid-memberships-pro')], - supports: {}, - attributes: {}, - edit: function edit() { - return [Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("div", { - className: "pmpro-block-element" - }, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("span", { - className: "pmpro-block-title" - }, __('Paid Memberships Pro', 'paid-memberships-pro')), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("span", { - className: "pmpro-block-subtitle" - }, __('Membership Invoices', 'paid-memberships-pro')))]; - }, - save: function save() { - return null; - } -})); - -/***/ }), - -/***/ "./blocks/levels-page/block.js": -/*!*************************************!*\ - !*** ./blocks/levels-page/block.js ***! - \*************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__); - - -/** - * Block: PMPro Membership Levels - * - * Displays the Membership Levels template. - * - */ - -/** - * Internal block libraries - */ -var __ = wp.i18n.__; -var registerBlockType = wp.blocks.registerBlockType; -/** - * Register block - */ - -/* harmony default export */ __webpack_exports__["default"] = (registerBlockType('pmpro/levels-page', { - title: __('Membership Levels List', 'paid-memberships-pro'), - description: __('Displays a list of Membership Levels. To change the order, go to Memberships > Settings > Levels.', 'paid-memberships-pro'), - category: 'pmpro', - icon: { - background: '#2997c8', - foreground: '#ffffff', - src: 'list-view' - }, - keywords: [__('pmpro', 'paid-memberships-pro')], - supports: {}, - attributes: {}, - edit: function edit() { - return [Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("div", { - className: "pmpro-block-element" - }, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("span", { - className: "pmpro-block-title" - }, __('Paid Memberships Pro', 'paid-memberships-pro')), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("span", { - className: "pmpro-block-subtitle" - }, __('Membership Levels List', 'paid-memberships-pro')))]; - }, - save: function save() { - return null; - } -})); - -/***/ }), - -/***/ "./blocks/login/block.js": -/*!*******************************!*\ - !*** ./blocks/login/block.js ***! - \*******************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__); -/* harmony import */ var _inspector__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./inspector */ "./blocks/login/inspector.js"); - - -/** - * Block: PMPro Login Form - * - * Add a login form to any page or post. - * - */ - -/** - * Block dependencies - */ - -/** - * Internal block libraries - */ - -var __ = wp.i18n.__; -var registerBlockType = wp.blocks.registerBlockType; -var Fragment = wp.element.Fragment; -/** - * Register block - */ - -/* harmony default export */ __webpack_exports__["default"] = (registerBlockType("pmpro/login-form", { - title: __("Log in Form", "paid-memberships-pro"), - description: __("Displays a Log In Form for Paid Memberships Pro.", "paid-memberships-pro"), - category: "pmpro", - icon: { - background: "#2997c8", - foreground: "#ffffff", - src: "unlock" - }, - keywords: [__("pmpro", "paid-memberships-pro"), __("login", "paid-memberships-pro"), __("form", "paid-memberships-pro"), __("log in", "paid-memberships-pro")], - supports: {}, - edit: function edit(props) { - return [Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])(Fragment, null, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])(_inspector__WEBPACK_IMPORTED_MODULE_1__["default"], props), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("div", { - className: "pmpro-block-element" - }, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("span", { - className: "pmpro-block-title" - }, __("Paid Memberships Pro", "paid-memberships-pro")), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("span", { - className: "pmpro-block-subtitle" - }, __("Log in Form", "paid-memberships-pro"))))]; - }, - save: function save() { - return null; - } -})); - -/***/ }), - -/***/ "./blocks/login/inspector.js": -/*!***********************************!*\ - !*** ./blocks/login/inspector.js ***! - \***********************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return Inspector; }); -/* harmony import */ var _babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "./node_modules/@babel/runtime/helpers/classCallCheck.js"); -/* harmony import */ var _babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_0__); -/* harmony import */ var _babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/createClass */ "./node_modules/@babel/runtime/helpers/createClass.js"); -/* harmony import */ var _babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1__); -/* harmony import */ var _babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/inherits */ "./node_modules/@babel/runtime/helpers/inherits.js"); -/* harmony import */ var _babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2__); -/* harmony import */ var _babel_runtime_helpers_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @babel/runtime/helpers/possibleConstructorReturn */ "./node_modules/@babel/runtime/helpers/possibleConstructorReturn.js"); -/* harmony import */ var _babel_runtime_helpers_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_3__); -/* harmony import */ var _babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @babel/runtime/helpers/getPrototypeOf */ "./node_modules/@babel/runtime/helpers/getPrototypeOf.js"); -/* harmony import */ var _babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_4__); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__); - - - - - - - -function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_4___default()(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _babel_runtime_helpers_getPrototypeOf__WEBPACK_IMPORTED_MODULE_4___default()(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _babel_runtime_helpers_possibleConstructorReturn__WEBPACK_IMPORTED_MODULE_3___default()(this, result); }; } - -function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } - -/** - * Internal block libraries - */ -var __ = wp.i18n.__; -var Component = wp.element.Component; -var _wp$components = wp.components, - PanelBody = _wp$components.PanelBody, - SelectControl = _wp$components.SelectControl, - ToggleControl = _wp$components.ToggleControl; -var InspectorControls = wp.blockEditor.InspectorControls; -/** - * Create an Inspector Controls wrapper Component - */ - -var Inspector = /*#__PURE__*/function (_Component) { - _babel_runtime_helpers_inherits__WEBPACK_IMPORTED_MODULE_2___default()(Inspector, _Component); - - var _super = _createSuper(Inspector); - - function Inspector() { - _babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_0___default()(this, Inspector); - - return _super.apply(this, arguments); - } - - _babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1___default()(Inspector, [{ - key: "render", - value: function render() { - var _this = this; - - var _this$props = this.props, - attributes = _this$props.attributes, - setAttributes = _this$props.setAttributes; - var display_if_logged_in = attributes.display_if_logged_in, - show_menu = attributes.show_menu, - show_logout_link = attributes.show_logout_link, - location = attributes.location; - return Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__["createElement"])(InspectorControls, null, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__["createElement"])(PanelBody, null, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__["createElement"])(ToggleControl, { - label: __("Display 'Welcome' content when logged in.", "paid-memberships-pro"), - checked: display_if_logged_in, - onChange: function onChange(value) { - _this.props.setAttributes({ - display_if_logged_in: value - }); - } - }), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__["createElement"])(ToggleControl, { - label: __("Display the 'Log In Widget' menu.", "paid-memberships-pro"), - help: __("Assign the menu under Appearance > Menus.", "paid-memberships-pro"), - checked: show_menu, - onChange: function onChange(value) { - _this.props.setAttributes({ - show_menu: value - }); - } - }), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_5__["createElement"])(ToggleControl, { - label: __("Display a 'Log Out' link.", "paid-memberships-pro"), - checked: show_logout_link, - onChange: function onChange(value) { - _this.props.setAttributes({ - show_logout_link: value - }); - } - }))); - } - }]); - - return Inspector; -}(Component); - - - -/***/ }), - -/***/ "./blocks/member-profile-edit/block.js": -/*!*********************************************!*\ - !*** ./blocks/member-profile-edit/block.js ***! - \*********************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__); - - -/** - * Block: PMPro Member Profile Edit - * - * - */ - -/** - * Internal block libraries - */ -var __ = wp.i18n.__; -var registerBlockType = wp.blocks.registerBlockType; -/** - * Register block - */ - -/* harmony default export */ __webpack_exports__["default"] = (registerBlockType("pmpro/member-profile-edit", { - title: __("Member Profile Edit", "paid-memberships-pro"), - description: __("Allow member profile editing.", "paid-memberships-pro"), - category: "pmpro", - icon: { - background: "#2997c8", - foreground: "#ffffff", - src: "admin-users" - }, - keywords: [__("pmpro", "paid-memberships-pro"), __("member", "paid-memberships-pro"), __("profile", "paid-memberships-pro")], - edit: function edit(props) { - return Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("div", { - className: "pmpro-block-element" - }, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("span", { - className: "pmpro-block-title" - }, __("Paid Memberships Pro", "paid-memberships-pro")), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("span", { - className: "pmpro-block-subtitle" - }, __("Member Profile Edit", "paid-memberships-pro"))); - }, - save: function save() { - return null; - } -})); - -/***/ }), - -/***/ "./blocks/membership/block.js": -/*!************************************!*\ - !*** ./blocks/membership/block.js ***! - \************************************/ -/*! exports provided: default */ -/***/ (function(module, __webpack_exports__, __webpack_require__) { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @wordpress/element */ "@wordpress/element"); -/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__); - - -/** - * Block: PMPro Membership - * - * - */ - -/** - * Internal block libraries - */ -var __ = wp.i18n.__; -var registerBlockType = wp.blocks.registerBlockType; -var _wp$components = wp.components, - PanelBody = _wp$components.PanelBody, - CheckboxControl = _wp$components.CheckboxControl; -var _wp$blockEditor = wp.blockEditor, - InspectorControls = _wp$blockEditor.InspectorControls, - InnerBlocks = _wp$blockEditor.InnerBlocks; -var all_levels = [{ - value: 0, - label: "Non-Members" -}].concat(pmpro.all_level_values_and_labels); -/** - * Register block - */ - -/* harmony default export */ __webpack_exports__["default"] = (registerBlockType('pmpro/membership', { - title: __('Require Membership Block', 'paid-memberships-pro'), - description: __('Control the visibility of nested blocks for members or non-members.', 'paid-memberships-pro'), - category: 'pmpro', - icon: { - background: '#2997c8', - foreground: '#ffffff', - src: 'visibility' - }, - keywords: [__('pmpro', 'paid-memberships-pro')], - attributes: { - levels: { - type: 'array', - default: [] - }, - uid: { - type: 'string', - default: '' - } - }, - edit: function edit(props) { - var _props$attributes = props.attributes, - levels = _props$attributes.levels, - uid = _props$attributes.uid, - setAttributes = props.setAttributes, - isSelected = props.isSelected; - - if (uid == '') { - var rand = Math.random() + ""; - setAttributes({ - uid: rand - }); - } // Build an array of checkboxes for each level. - - - var checkboxes = all_levels.map(function (level) { - function setLevelsAttribute(nowChecked) { - if (nowChecked && !levels.some(function (levelID) { - return levelID == level.value; - })) { - // Add the level. - var newLevels = levels.slice(); - newLevels.push(level.value + ''); - setAttributes({ - levels: newLevels - }); - } else if (!nowChecked && levels.some(function (levelID) { - return levelID == level.value; - })) { - // Remove the level. - var _newLevels = levels.filter(function (levelID) { - return levelID != level.value; - }); - - setAttributes({ - levels: _newLevels - }); - } - } - - return [Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])(CheckboxControl, { - label: level.label, - checked: levels.some(function (levelID) { - return levelID == level.value; - }), - onChange: setLevelsAttribute - })]; - }); - return [isSelected && Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])(InspectorControls, null, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])(PanelBody, null, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("div", { - class: "pmpro-block-inspector-scrollable" - }, checkboxes))), isSelected && Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("div", { - className: "pmpro-block-require-membership-element" - }, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("span", { - className: "pmpro-block-title" - }, __('Require Membership', 'paid-memberships-pro')), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])(PanelBody, null, checkboxes), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])(InnerBlocks, { - renderAppender: function renderAppender() { - return Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])(InnerBlocks.ButtonBlockAppender, null); - }, - templateLock: false - })), !isSelected && Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("div", { - className: "pmpro-block-require-membership-element" - }, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("span", { - className: "pmpro-block-title" - }, __('Require Membership', 'paid-memberships-pro')), Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])(InnerBlocks, { - renderAppender: function renderAppender() { - return Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])(InnerBlocks.ButtonBlockAppender, null); - }, - templateLock: false - }))]; - }, - save: function save(props) { - var className = props.className; - return Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])("div", { - className: className - }, Object(_wordpress_element__WEBPACK_IMPORTED_MODULE_0__["createElement"])(InnerBlocks.Content, null)); - } -})); - -/***/ }), - -/***/ "./node_modules/@babel/runtime/helpers/assertThisInitialized.js": -/*!**********************************************************************!*\ - !*** ./node_modules/@babel/runtime/helpers/assertThisInitialized.js ***! - \**********************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -function _assertThisInitialized(self) { - if (self === void 0) { - throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); - } - - return self; -} - -module.exports = _assertThisInitialized; -module.exports["default"] = module.exports, module.exports.__esModule = true; - -/***/ }), - -/***/ "./node_modules/@babel/runtime/helpers/classCallCheck.js": -/*!***************************************************************!*\ - !*** ./node_modules/@babel/runtime/helpers/classCallCheck.js ***! - \***************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -function _classCallCheck(instance, Constructor) { - if (!(instance instanceof Constructor)) { - throw new TypeError("Cannot call a class as a function"); - } -} - -module.exports = _classCallCheck; -module.exports["default"] = module.exports, module.exports.__esModule = true; - -/***/ }), - -/***/ "./node_modules/@babel/runtime/helpers/createClass.js": -/*!************************************************************!*\ - !*** ./node_modules/@babel/runtime/helpers/createClass.js ***! - \************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -function _defineProperties(target, props) { - for (var i = 0; i < props.length; i++) { - var descriptor = props[i]; - descriptor.enumerable = descriptor.enumerable || false; - descriptor.configurable = true; - if ("value" in descriptor) descriptor.writable = true; - Object.defineProperty(target, descriptor.key, descriptor); - } -} - -function _createClass(Constructor, protoProps, staticProps) { - if (protoProps) _defineProperties(Constructor.prototype, protoProps); - if (staticProps) _defineProperties(Constructor, staticProps); - return Constructor; -} - -module.exports = _createClass; -module.exports["default"] = module.exports, module.exports.__esModule = true; - -/***/ }), - -/***/ "./node_modules/@babel/runtime/helpers/defineProperty.js": -/*!***************************************************************!*\ - !*** ./node_modules/@babel/runtime/helpers/defineProperty.js ***! - \***************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -function _defineProperty(obj, key, value) { - if (key in obj) { - Object.defineProperty(obj, key, { - value: value, - enumerable: true, - configurable: true, - writable: true - }); - } else { - obj[key] = value; - } - - return obj; -} - -module.exports = _defineProperty; -module.exports["default"] = module.exports, module.exports.__esModule = true; - -/***/ }), - -/***/ "./node_modules/@babel/runtime/helpers/getPrototypeOf.js": -/*!***************************************************************!*\ - !*** ./node_modules/@babel/runtime/helpers/getPrototypeOf.js ***! - \***************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -function _getPrototypeOf(o) { - module.exports = _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { - return o.__proto__ || Object.getPrototypeOf(o); - }; - module.exports["default"] = module.exports, module.exports.__esModule = true; - return _getPrototypeOf(o); -} - -module.exports = _getPrototypeOf; -module.exports["default"] = module.exports, module.exports.__esModule = true; - -/***/ }), - -/***/ "./node_modules/@babel/runtime/helpers/inherits.js": -/*!*********************************************************!*\ - !*** ./node_modules/@babel/runtime/helpers/inherits.js ***! - \*********************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var setPrototypeOf = __webpack_require__(/*! ./setPrototypeOf.js */ "./node_modules/@babel/runtime/helpers/setPrototypeOf.js"); - -function _inherits(subClass, superClass) { - if (typeof superClass !== "function" && superClass !== null) { - throw new TypeError("Super expression must either be null or a function"); - } - - subClass.prototype = Object.create(superClass && superClass.prototype, { - constructor: { - value: subClass, - writable: true, - configurable: true - } - }); - if (superClass) setPrototypeOf(subClass, superClass); -} - -module.exports = _inherits; -module.exports["default"] = module.exports, module.exports.__esModule = true; - -/***/ }), - -/***/ "./node_modules/@babel/runtime/helpers/possibleConstructorReturn.js": -/*!**************************************************************************!*\ - !*** ./node_modules/@babel/runtime/helpers/possibleConstructorReturn.js ***! - \**************************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports, __webpack_require__) { - -var _typeof = __webpack_require__(/*! @babel/runtime/helpers/typeof */ "./node_modules/@babel/runtime/helpers/typeof.js")["default"]; - -var assertThisInitialized = __webpack_require__(/*! ./assertThisInitialized.js */ "./node_modules/@babel/runtime/helpers/assertThisInitialized.js"); - -function _possibleConstructorReturn(self, call) { - if (call && (_typeof(call) === "object" || typeof call === "function")) { - return call; - } - - return assertThisInitialized(self); -} - -module.exports = _possibleConstructorReturn; -module.exports["default"] = module.exports, module.exports.__esModule = true; - -/***/ }), - -/***/ "./node_modules/@babel/runtime/helpers/setPrototypeOf.js": -/*!***************************************************************!*\ - !*** ./node_modules/@babel/runtime/helpers/setPrototypeOf.js ***! - \***************************************************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -function _setPrototypeOf(o, p) { - module.exports = _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { - o.__proto__ = p; - return o; - }; - - module.exports["default"] = module.exports, module.exports.__esModule = true; - return _setPrototypeOf(o, p); -} - -module.exports = _setPrototypeOf; -module.exports["default"] = module.exports, module.exports.__esModule = true; - -/***/ }), - -/***/ "./node_modules/@babel/runtime/helpers/typeof.js": -/*!*******************************************************!*\ - !*** ./node_modules/@babel/runtime/helpers/typeof.js ***! - \*******************************************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -function _typeof(obj) { - "@babel/helpers - typeof"; - - if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { - module.exports = _typeof = function _typeof(obj) { - return typeof obj; - }; - - module.exports["default"] = module.exports, module.exports.__esModule = true; - } else { - module.exports = _typeof = function _typeof(obj) { - return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; - }; - - module.exports["default"] = module.exports, module.exports.__esModule = true; - } - - return _typeof(obj); -} - -module.exports = _typeof; -module.exports["default"] = module.exports, module.exports.__esModule = true; - -/***/ }), - -/***/ "@wordpress/element": -/*!*********************************!*\ - !*** external ["wp","element"] ***! - \*********************************/ -/*! no static exports found */ -/***/ (function(module, exports) { - -(function() { module.exports = window["wp"]["element"]; }()); - -/***/ }) - -/******/ }); -//# sourceMappingURL=blocks.build.js.map +!function(e){var r={};function t(o){if(r[o])return r[o].exports;var p=r[o]={i:o,l:!1,exports:{}};return e[o].call(p.exports,p,p.exports,t),p.l=!0,p.exports}t.m=e,t.c=r,t.d=function(e,r,o){t.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:o})},t.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,r){if(1&r&&(e=t(e)),8&r)return e;if(4&r&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(t.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var p in e)t.d(o,p,function(r){return e[r]}.bind(null,p));return o},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,"a",r),r},t.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},t.p="",t(t.s=11)}([function(e,r){e.exports=window.wp.element},function(e,r){function t(r){return e.exports=t=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},e.exports.__esModule=!0,e.exports.default=e.exports,t(r)}e.exports=t,e.exports.__esModule=!0,e.exports.default=e.exports},function(e,r){e.exports=function(e,r){if(!(e instanceof r))throw new TypeError("Cannot call a class as a function")},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,r){function t(e,r){for(var t=0;t Settings > Levels.","paid-memberships-pro"),category:"pmpro",icon:{background:"#FFFFFF",foreground:"#658B24",src:"list-view"},keywords:[le("level","paid-memberships-pro"),le("paid memberships pro","paid-memberships-pro"),le("pmpro","paid-memberships-pro"),le("price","paid-memberships-pro"),le("pricing table","paid-memberships-pro")],supports:{},attributes:{},edit:function(){return[Object(o.createElement)("div",{className:"pmpro-block-element"},Object(o.createElement)("span",{className:"pmpro-block-title"},le("Paid Memberships Pro","paid-memberships-pro")),Object(o.createElement)("span",{className:"pmpro-block-subtitle"},le("Membership Levels List","paid-memberships-pro")))]},save:function(){return null}}),wp.i18n.__),be=wp.blocks.registerBlockType,ue=wp.components,de=ue.PanelBody,he=ue.CheckboxControl,fe=ue.SelectControl,ye=wp.blockEditor,ge=ye.InspectorControls,ve=ye.InnerBlocks,ke=[{value:0,label:"Non-Members"}].concat(pmpro.all_level_values_and_labels),Oe=(be("pmpro/membership",{title:me("Membership Required Block","paid-memberships-pro"),description:me("Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only.","paid-memberships-pro"),category:"pmpro",icon:{background:"#FFFFFF",foreground:"#1A688B",src:"visibility"},keywords:[me("block visibility","paid-memberships-pro"),me("confitional","paid-memberships-pro"),me("content","paid-memberships-pro"),me("hide","paid-memberships-pro"),me("hidden","paid-memberships-pro"),me("paid memberships pro","paid-memberships-pro"),me("pmpro","paid-memberships-pro"),me("private","paid-memberships-pro"),me("restrict","paid-memberships-pro")],attributes:{levels:{type:"array",default:[]},uid:{type:"string",default:""},show_noaccess:{type:"boolean",default:!1}},edit:function(e){var r=e.attributes,t=r.levels,p=r.uid,s=r.show_noaccess,i=e.setAttributes,c=e.isSelected;if(""==p){var n=Math.random()+"";i({uid:n})}var a=ke.map((function(e){return[Object(o.createElement)(he,{label:e.label,checked:t.some((function(r){return r==e.value})),onChange:function(r){if(r&&!t.some((function(r){return r==e.value}))){var o=t.slice();o.push(e.value+""),i({levels:o})}else if(!r&&t.some((function(r){return r==e.value}))){var p=t.filter((function(r){return r!=e.value}));i({levels:p})}}})]}));return[c&&Object(o.createElement)(ge,null,Object(o.createElement)(de,null,Object(o.createElement)("p",null,Object(o.createElement)("strong",null,me("Which membership levels can view this block?","paid-memberships-pro"))),Object(o.createElement)("div",{class:"pmpro-block-inspector-scrollable"},a),Object(o.createElement)("hr",null),Object(o.createElement)("p",null,Object(o.createElement)("strong",null,me("What should users without access see?","paid-memberships-pro"))),Object(o.createElement)(fe,{value:s,help:me("Modify the 'no access' message on the Memberships > Advanced Settings page.","paid-memberships-pro"),options:[{label:me("Show nothing","paid-memberships-pro"),value:"0"},{label:me("Show the 'no access' message","paid-memberships-pro"),value:"1"}],onChange:function(e){return i({show_noaccess:e})}}))),c&&Object(o.createElement)("div",{className:"pmpro-block-require-membership-element"},Object(o.createElement)("span",{className:"pmpro-block-title"},me("Membership Required","paid-memberships-pro")),Object(o.createElement)("div",{class:"pmpro-block-inspector-scrollable"},Object(o.createElement)(de,null,a)),Object(o.createElement)(ve,{renderAppender:function(){return Object(o.createElement)(ve.ButtonBlockAppender,null)},templateLock:!1})),!c&&Object(o.createElement)("div",{className:"pmpro-block-require-membership-element"},Object(o.createElement)("span",{className:"pmpro-block-title"},me("Membership Required","paid-memberships-pro")),Object(o.createElement)(ve,{renderAppender:function(){return Object(o.createElement)(ve.ButtonBlockAppender,null)},templateLock:!1}))]},save:function(e){var r=e.className;return Object(o.createElement)("div",{className:r},Object(o.createElement)(ve.Content,null))}}),wp.i18n.__);(0,wp.blocks.registerBlockType)("pmpro/member-profile-edit",{title:Oe("PMPro Page: Account Profile Edit","paid-memberships-pro"),description:Oe("Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields.","paid-memberships-pro"),category:"pmpro-pages",icon:{background:"#FFFFFF",foreground:"#1A688B",src:"admin-users"},keywords:[Oe("custom field","paid-memberships-pro"),Oe("fields","paid-memberships-pro"),Oe("paid memberships pro","paid-memberships-pro"),Oe("pmpro","paid-memberships-pro"),Oe("user fields","paid-memberships-pro")],edit:function(e){return Object(o.createElement)("div",{className:"pmpro-block-element"},Object(o.createElement)("span",{className:"pmpro-block-title"},Oe("Paid Memberships Pro","paid-memberships-pro")),Object(o.createElement)("span",{className:"pmpro-block-subtitle"},Oe("Member Profile Edit","paid-memberships-pro")))},save:function(){return null}});function je(e){var r=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var t,o=h()(e);if(r){var p=h()(this).constructor;t=Reflect.construct(o,arguments,p)}else t=o.apply(this,arguments);return u()(this,t)}}var we,_e=wp.i18n.__,Ee=wp.element.Component,Pe=wp.components,Ce=Pe.PanelBody,Fe=(Pe.SelectControl,Pe.ToggleControl),Me=wp.blockEditor.InspectorControls,xe=function(e){m()(t,e);var r=je(t);function t(){return c()(this,t),r.apply(this,arguments)}return a()(t,[{key:"render",value:function(){var e=this,r=this.props,t=r.attributes,p=(r.setAttributes,t.display_if_logged_in),s=t.show_menu,i=t.show_logout_link;t.location;return Object(o.createElement)(Me,null,Object(o.createElement)(Ce,null,Object(o.createElement)(Fe,{label:_e("Display 'Welcome' content when logged in.","paid-memberships-pro"),checked:p,onChange:function(r){e.props.setAttributes({display_if_logged_in:r})}}),Object(o.createElement)(Fe,{label:_e("Display the 'Log In Widget' menu.","paid-memberships-pro"),help:_e("Assign the menu under Appearance > Menus.","paid-memberships-pro"),checked:s,onChange:function(r){e.props.setAttributes({show_menu:r})}}),Object(o.createElement)(Fe,{label:_e("Display a 'Log Out' link.","paid-memberships-pro"),checked:i,onChange:function(r){e.props.setAttributes({show_logout_link:r})}})))}}]),t}(Ee),Be=wp.i18n.__,Ne=wp.blocks.registerBlockType,Ae=wp.element.Fragment;Ne("pmpro/login-form",{title:Be("Login Form","paid-memberships-pro"),description:Be("Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu.","paid-memberships-pro"),category:"pmpro",icon:{background:"#FFFFFF",foreground:"#658B24",src:"unlock"},keywords:[Be("log in","paid-memberships-pro"),Be("lost password","paid-memberships-pro"),Be("paid memberships pro","paid-memberships-pro"),Be("password reset","paid-memberships-pro"),Be("pmpro","paid-memberships-pro")],supports:{},edit:function(e){return[Object(o.createElement)(Ae,null,Object(o.createElement)(xe,e),Object(o.createElement)("div",{className:"pmpro-block-element"},Object(o.createElement)("span",{className:"pmpro-block-title"},Be("Paid Memberships Pro","paid-memberships-pro")),Object(o.createElement)("span",{className:"pmpro-block-subtitle"},Be("Log in Form","paid-memberships-pro"))))]},save:function(){return null}});we=Object(o.createElement)("svg",{version:"1.1",id:"Layer_1",x:"0px",y:"0px",viewBox:"0 0 18 18"},Object(o.createElement)("path",{d:"M17.99,4.53c-0.35,0.12-0.7,0.26-1.06,0.4c-0.35,0.14-0.7,0.3-1.05,0.46c-0.35,0.16-0.69,0.33-1.03,0.51 c-0.34,0.18-0.68,0.37-1.02,0.56c-0.15,0.09-0.31,0.18-0.46,0.27c-0.15,0.09-0.3,0.19-0.45,0.28c-0.15,0.1-0.3,0.19-0.45,0.29 c-0.15,0.1-0.3,0.2-0.44,0.3c-0.08,0.05-0.16,0.11-0.23,0.16c-0.08,0.05-0.16,0.11-0.23,0.17c-0.08,0.06-0.15,0.11-0.23,0.17 c-0.08,0.06-0.15,0.11-0.23,0.17c-0.07,0.05-0.13,0.1-0.2,0.15c-0.07,0.05-0.13,0.1-0.2,0.15c-0.07,0.05-0.13,0.1-0.2,0.15 c-0.07,0.05-0.13,0.1-0.2,0.16c-0.04,0.03-0.09,0.07-0.13,0.1c-0.04,0.03-0.09,0.07-0.13,0.1C10,9.13,9.95,9.17,9.91,9.2 C9.87,9.24,9.83,9.27,9.79,9.31C9.77,9.32,9.75,9.33,9.74,9.35C9.72,9.36,9.71,9.37,9.69,9.39C9.67,9.4,9.66,9.42,9.64,9.43 C9.63,9.44,9.61,9.46,9.59,9.47C9.54,9.52,9.49,9.56,9.43,9.61C9.38,9.65,9.33,9.7,9.27,9.74C9.22,9.79,9.17,9.84,9.11,9.88 c-0.05,0.05-0.11,0.09-0.16,0.14c-0.27,0.24-0.54,0.49-0.81,0.75c-0.26,0.25-0.53,0.51-0.78,0.78c-0.26,0.26-0.51,0.53-0.76,0.81 c-0.25,0.27-0.49,0.55-0.73,0.84c-0.03,0.04-0.07,0.08-0.1,0.12c-0.03,0.04-0.07,0.08-0.1,0.12c-0.03,0.04-0.07,0.08-0.1,0.12 c-0.03,0.04-0.07,0.08-0.1,0.12c-0.03,0.04-0.07,0.08-0.1,0.12c-0.03,0.04-0.06,0.08-0.1,0.12c-0.03,0.04-0.06,0.08-0.1,0.12 c-0.03,0.04-0.06,0.08-0.1,0.12c0,0.01-0.01,0.01-0.01,0.02c0,0.01-0.01,0.01-0.01,0.02c0,0.01-0.01,0.01-0.01,0.02 c0,0.01-0.01,0.01-0.01,0.02c-0.03,0.03-0.05,0.07-0.08,0.1c-0.03,0.03-0.05,0.07-0.08,0.1c-0.03,0.03-0.05,0.07-0.08,0.11 c-0.03,0.03-0.05,0.07-0.08,0.11c-0.03,0.04-0.06,0.08-0.09,0.12c-0.03,0.04-0.06,0.08-0.09,0.12C4.5,14.96,4.47,15,4.44,15.05 c-0.03,0.04-0.06,0.08-0.09,0.13c0,0-0.01,0.01-0.01,0.01c0,0-0.01,0.01-0.01,0.01c0,0-0.01,0.01-0.01,0.01c0,0-0.01,0.01-0.01,0.01 c-0.15,0.22-0.31,0.44-0.46,0.67c-0.15,0.22-0.3,0.45-0.44,0.68c-0.14,0.23-0.29,0.46-0.43,0.7C2.85,17.52,2.71,17.76,2.58,18 c-0.08-0.19-0.16-0.38-0.23-0.56c-0.07-0.18-0.14-0.35-0.21-0.51c-0.07-0.16-0.13-0.32-0.19-0.47c-0.06-0.15-0.12-0.3-0.18-0.45 l-0.01,0.01l0.01-0.03c-0.01-0.03-0.02-0.05-0.03-0.08c-0.01-0.02-0.02-0.05-0.03-0.07c-0.01-0.02-0.02-0.05-0.03-0.07 c-0.01-0.02-0.02-0.05-0.03-0.07c0-0.01-0.01-0.02-0.01-0.02c0-0.01-0.01-0.02-0.01-0.02c0-0.01-0.01-0.02-0.01-0.02 c0-0.01-0.01-0.02-0.01-0.02c-0.01-0.02-0.01-0.04-0.02-0.05c-0.01-0.02-0.01-0.04-0.02-0.05c-0.01-0.02-0.01-0.04-0.02-0.05 c-0.01-0.02-0.01-0.04-0.02-0.05c-0.01-0.03-0.02-0.05-0.03-0.07c-0.01-0.02-0.02-0.05-0.03-0.07c-0.01-0.02-0.02-0.05-0.03-0.07 c-0.01-0.02-0.02-0.05-0.03-0.07c-0.01-0.02-0.02-0.05-0.03-0.07c-0.01-0.02-0.02-0.05-0.03-0.07c-0.01-0.02-0.02-0.05-0.03-0.07 c-0.01-0.02-0.02-0.05-0.03-0.07c-0.02-0.05-0.04-0.1-0.06-0.16c-0.02-0.05-0.04-0.1-0.06-0.16c-0.02-0.05-0.04-0.11-0.06-0.16 c-0.02-0.05-0.04-0.11-0.06-0.16c-0.08-0.23-0.16-0.47-0.25-0.72c-0.08-0.25-0.17-0.5-0.26-0.77c-0.09-0.27-0.18-0.55-0.27-0.84 c-0.09-0.29-0.19-0.6-0.29-0.93c0.05,0.07,0.1,0.15,0.15,0.22c0.05,0.07,0.1,0.14,0.14,0.2c0.05,0.07,0.09,0.13,0.14,0.19 c0.04,0.06,0.09,0.12,0.13,0.18c0.09,0.13,0.18,0.24,0.27,0.35c0.09,0.11,0.17,0.21,0.24,0.3c0.08,0.09,0.15,0.18,0.23,0.27 c0.07,0.09,0.15,0.17,0.22,0.25c0.02,0.02,0.03,0.04,0.05,0.06c0.02,0.02,0.03,0.04,0.05,0.06c0.02,0.02,0.03,0.04,0.05,0.06 c0.02,0.02,0.03,0.04,0.05,0.06c0.07,0.07,0.13,0.14,0.2,0.22c0.07,0.08,0.14,0.16,0.22,0.24c0.08,0.08,0.16,0.17,0.24,0.27 c0.09,0.1,0.18,0.2,0.27,0.31c0.01,0.01,0.02,0.02,0.03,0.03c0.01,0.01,0.02,0.02,0.03,0.03c0.01,0.01,0.02,0.02,0.03,0.04 c0.01,0.01,0.02,0.02,0.03,0.04c0.02-0.02,0.04-0.05,0.06-0.07c0.02-0.02,0.04-0.05,0.06-0.07c0.02-0.02,0.04-0.05,0.06-0.07 C2.96,14.03,2.98,14,3,13.98c0.03-0.03,0.05-0.06,0.08-0.09c0.03-0.03,0.05-0.06,0.08-0.09c0.03-0.03,0.05-0.06,0.08-0.09 c0.03-0.03,0.05-0.06,0.08-0.09c0.28-0.33,0.58-0.65,0.88-0.97c0.31-0.32,0.63-0.62,0.95-0.92c0.33-0.3,0.67-0.6,1.02-0.88 c0.35-0.29,0.72-0.57,1.09-0.84c0.06-0.04,0.11-0.08,0.17-0.12C7.49,9.83,7.55,9.79,7.6,9.75c0.06-0.04,0.11-0.08,0.17-0.12 c0.06-0.04,0.12-0.08,0.17-0.12C7.97,9.5,7.98,9.49,8,9.48c0.02-0.01,0.03-0.02,0.05-0.03C8.06,9.43,8.08,9.42,8.1,9.41 C8.11,9.4,8.13,9.38,8.14,9.37c0.05-0.03,0.1-0.06,0.14-0.1c0.05-0.03,0.1-0.06,0.14-0.1c0.05-0.03,0.1-0.06,0.14-0.1 c0.05-0.03,0.1-0.06,0.15-0.09C8.79,8.94,8.87,8.9,8.94,8.85C9.01,8.8,9.09,8.76,9.16,8.71c0.07-0.05,0.15-0.09,0.22-0.14 c0.07-0.05,0.15-0.09,0.22-0.14c0.09-0.05,0.17-0.11,0.26-0.16c0.09-0.05,0.17-0.1,0.26-0.16c0.09-0.05,0.18-0.1,0.27-0.15 c0.09-0.05,0.18-0.1,0.27-0.15c0.25-0.14,0.51-0.28,0.76-0.42c0.26-0.14,0.52-0.27,0.78-0.41c0.26-0.13,0.53-0.27,0.79-0.4 c0.27-0.13,0.54-0.26,0.81-0.38c0.01,0,0.02-0.01,0.03-0.01c0.01,0,0.02-0.01,0.03-0.01c0.01,0,0.02-0.01,0.03-0.01 c0.01,0,0.02-0.01,0.03-0.01c0.33-0.15,0.67-0.3,1-0.44c0.34-0.15,0.68-0.29,1.02-0.42c0.34-0.14,0.69-0.27,1.03-0.4 C17.31,4.77,17.65,4.64,17.99,4.53z M15.73,9.59l0.65,4.56l-10.4-0.05c-0.02,0.02-0.04,0.04-0.05,0.07 c-0.02,0.02-0.04,0.04-0.05,0.07c-0.02,0.02-0.04,0.04-0.05,0.07c-0.02,0.02-0.04,0.04-0.05,0.07c-0.02,0.02-0.03,0.04-0.05,0.06 c-0.02,0.02-0.03,0.04-0.05,0.06c-0.02,0.02-0.03,0.04-0.05,0.06c-0.02,0.02-0.03,0.04-0.05,0.06l11.23,0.2l-0.78-5.24L15.73,9.59z M6.75,13.2c-0.04,0.04-0.08,0.09-0.11,0.13c-0.04,0.04-0.08,0.09-0.11,0.13c-0.04,0.04-0.07,0.09-0.11,0.13l9.22-0.07L15.04,9.1 l-0.07-0.53l-0.39,0.04l0.55,4.3l-8.27,0.17C6.83,13.12,6.79,13.16,6.75,13.2z M13.78,7.66l-0.59,0.08 c-0.06,0.04-0.12,0.08-0.18,0.12c-0.06,0.04-0.12,0.08-0.18,0.12c-0.06,0.04-0.12,0.08-0.18,0.12c-0.06,0.04-0.12,0.08-0.18,0.12 c-0.08,0.05-0.16,0.11-0.24,0.16c-0.08,0.06-0.16,0.11-0.24,0.17c-0.08,0.06-0.16,0.11-0.24,0.17c-0.08,0.06-0.16,0.11-0.24,0.17 c-0.07,0.05-0.14,0.1-0.21,0.15c-0.07,0.05-0.14,0.1-0.21,0.15c-0.07,0.05-0.14,0.1-0.2,0.16c-0.07,0.05-0.14,0.11-0.2,0.16 c-0.04,0.03-0.09,0.07-0.13,0.1c-0.04,0.03-0.09,0.07-0.13,0.1c-0.04,0.04-0.09,0.07-0.13,0.11c-0.04,0.04-0.09,0.07-0.13,0.11 c-0.02,0.01-0.03,0.03-0.05,0.04c-0.02,0.01-0.03,0.03-0.05,0.04c-0.02,0.01-0.03,0.03-0.05,0.04c-0.02,0.01-0.03,0.03-0.05,0.04 c-0.06,0.05-0.11,0.09-0.16,0.14c-0.05,0.05-0.11,0.09-0.16,0.14c-0.05,0.05-0.11,0.09-0.16,0.14c-0.05,0.05-0.11,0.09-0.16,0.14 c-0.17,0.15-0.34,0.3-0.51,0.46c-0.17,0.16-0.33,0.31-0.5,0.47c-0.16,0.16-0.33,0.32-0.49,0.48c-0.16,0.16-0.32,0.33-0.48,0.49 l6.98-0.23l-0.48-4.16L13.78,7.66z M13.32,5.73c-0.06,0.03-0.11,0.05-0.17,0.08c-0.06,0.03-0.12,0.06-0.17,0.09 c-0.03,0.01-0.06,0.03-0.08,0.04c0,0,0,0,0,0c-0.02-0.01-0.04-0.03-0.06-0.04c-0.06-0.04-0.13-0.07-0.21-0.09 c-0.07-0.02-0.15-0.04-0.23-0.04c-0.08,0-0.16,0-0.24,0.01l-0.14,0.02c0.07-0.04,0.13-0.08,0.18-0.14c0.05-0.05,0.1-0.11,0.14-0.18 c0.04-0.06,0.06-0.13,0.08-0.2c0.02-0.07,0.02-0.15,0.01-0.22c-0.01-0.1-0.04-0.18-0.08-0.26c-0.05-0.08-0.11-0.14-0.18-0.19 c-0.07-0.05-0.16-0.08-0.25-0.1c-0.09-0.02-0.19-0.02-0.29,0c-0.1,0.02-0.19,0.06-0.27,0.11c-0.08,0.05-0.15,0.11-0.21,0.19 C11.08,4.9,11.03,4.98,11,5.07c-0.03,0.09-0.04,0.18-0.03,0.27c0.01,0.07,0.02,0.14,0.05,0.2c0.03,0.06,0.06,0.12,0.11,0.17 c0.05,0.05,0.1,0.09,0.16,0.12c0.06,0.03,0.13,0.06,0.2,0.07l-0.17,0.03C11.18,5.96,11.06,6,10.94,6.07 c-0.11,0.07-0.21,0.15-0.29,0.25c-0.08,0.1-0.14,0.21-0.19,0.33c-0.04,0.12-0.06,0.25-0.05,0.38l0.02,0.33 c-0.09,0.05-0.17,0.1-0.26,0.16c-0.02,0-0.05,0-0.07,0c0.02-0.01,0.04-0.02,0.06-0.03c-0.06-0.06-0.13-0.11-0.21-0.16 c-0.07-0.04-0.15-0.08-0.24-0.1C9.63,7.2,9.54,7.18,9.45,7.18c-0.09-0.01-0.18,0-0.27,0.01L9.01,7.21c0.08-0.05,0.16-0.1,0.23-0.17 C9.3,6.97,9.36,6.9,9.41,6.81C9.46,6.73,9.5,6.64,9.52,6.55c0.02-0.09,0.03-0.19,0.03-0.29C9.54,6.13,9.51,6.02,9.46,5.92 c-0.05-0.1-0.12-0.18-0.21-0.25C9.17,5.6,9.07,5.56,8.96,5.53c-0.11-0.02-0.22-0.03-0.34,0C8.5,5.55,8.39,5.6,8.29,5.66 C8.19,5.72,8.1,5.81,8.02,5.9C7.95,5.99,7.89,6.1,7.85,6.21C7.81,6.32,7.79,6.44,7.79,6.56c0,0.09,0.02,0.18,0.05,0.26 c0.03,0.08,0.07,0.16,0.12,0.22c0.05,0.07,0.11,0.12,0.18,0.17c0.07,0.04,0.15,0.08,0.23,0.1l-0.2,0.03 C8.01,7.37,7.85,7.42,7.72,7.51C7.58,7.59,7.46,7.7,7.35,7.82C7.25,7.95,7.17,8.1,7.11,8.25c-0.06,0.16-0.09,0.33-0.08,0.5 l0.01,0.74C6.98,9.53,6.93,9.58,6.88,9.62C6.81,9.49,6.74,9.38,6.65,9.28c-0.1-0.11-0.21-0.2-0.33-0.27 C6.2,8.94,6.07,8.89,5.93,8.87C5.8,8.84,5.66,8.83,5.51,8.85L5.3,8.88c0.1-0.06,0.2-0.13,0.29-0.22c0.09-0.09,0.16-0.19,0.23-0.3 c0.06-0.11,0.12-0.23,0.15-0.35C6,7.88,6.02,7.75,6.02,7.62c0-0.17-0.03-0.32-0.08-0.46C5.88,7.03,5.8,6.91,5.71,6.82 C5.61,6.73,5.5,6.67,5.37,6.63c-0.12-0.04-0.26-0.04-0.4-0.02c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0 c-0.14,0.03-0.28,0.08-0.4,0.16c-0.12,0.08-0.23,0.18-0.33,0.3C4.14,7.2,4.07,7.33,4.01,7.48c-0.06,0.15-0.09,0.3-0.1,0.46 c0,0.12,0.01,0.24,0.03,0.35c0.03,0.11,0.07,0.21,0.12,0.3c0.05,0.09,0.12,0.17,0.2,0.23c0.08,0.06,0.17,0.11,0.27,0.14L4.3,9 C4.1,9.03,3.92,9.09,3.75,9.2C3.58,9.3,3.43,9.44,3.3,9.6c-0.13,0.16-0.24,0.35-0.32,0.56c-0.08,0.21-0.13,0.43-0.14,0.67 l-0.12,2.26l-0.53-0.6l0.49-6.3C2.68,6.09,2.71,6,2.74,5.91c0.04-0.09,0.08-0.17,0.14-0.24c0.06-0.07,0.12-0.14,0.2-0.19 C3.15,5.44,3.23,5.4,3.32,5.38l0.71-0.17l0-0.02l0.18-0.04l0.06-1.19C4.3,3.56,4.39,3.15,4.55,2.77c0.16-0.38,0.37-0.75,0.64-1.08 C5.45,1.35,5.76,1.05,6.11,0.8c0.35-0.26,0.74-0.47,1.16-0.61C7.7,0.05,8.12-0.01,8.51,0c0.4,0.02,0.77,0.12,1.1,0.29 c0.33,0.18,0.62,0.43,0.83,0.75c0.21,0.33,0.35,0.73,0.38,1.19l0.1,1.36l0.3-0.07l0,0.02l0.89-0.21c0.13-0.03,0.25-0.03,0.36-0.02 c0.12,0.02,0.22,0.05,0.32,0.11c0.09,0.05,0.17,0.13,0.23,0.21c0.06,0.09,0.1,0.19,0.11,0.31L13.32,5.73z M9.46,3.96L9.4,2.61 C9.39,2.33,9.31,2.09,9.19,1.88C9.07,1.68,8.91,1.51,8.71,1.4C8.52,1.28,8.29,1.21,8.05,1.19C7.81,1.17,7.55,1.2,7.28,1.28 C7.01,1.37,6.76,1.49,6.53,1.65c-0.22,0.16-0.43,0.35-0.6,0.57C5.77,2.43,5.63,2.67,5.53,2.91c-0.1,0.25-0.16,0.5-0.17,0.76 L5.33,4.91L9.46,3.96z"})),wp.blocks.updateCategory("pmpro",{icon:we}),wp.blocks.updateCategory("pmpro-pages",{icon:we})}]); \ No newline at end of file diff --git a/js/pmpro-confirmation.js b/js/pmpro-confirmation.js new file mode 100644 index 000000000..0aab7122b --- /dev/null +++ b/js/pmpro-confirmation.js @@ -0,0 +1,25 @@ +jQuery( document ).ready( function() { + // If this script is loaded, then we are on the confirmation page for a pending or token order. + // We want to poll the server to see if the order has been completed and if so, refresh so + // the user can see the user can see their completed checkout. + var pollInterval = setInterval( function() { + // Get the level price so that information can be shown in payment request popup + jQuery.noConflict().ajax({ + url: pmpro.restUrl + 'pmpro/v1/order', + beforeSend: function ( xhr ) { + xhr.setRequestHeader( 'X-WP-Nonce', pmpro.nonce ); + }, + dataType: 'json', + data: { + 'code': pmpro.code + }, + success: function( response ) { + if ( response.status == 'success' ) { + // Order is complete. + clearInterval( pollInterval ); + window.location.reload(); + } + } + } ); + }, 5000 ); // Poll every 5 seconds. +}); \ No newline at end of file diff --git a/languages/paid-memberships-pro-ca.mo b/languages/paid-memberships-pro-ca.mo index b9f1de6eb..58689a895 100644 Binary files a/languages/paid-memberships-pro-ca.mo and b/languages/paid-memberships-pro-ca.mo differ diff --git a/languages/paid-memberships-pro-ca.po b/languages/paid-memberships-pro-ca.po index f4de37057..f2de632ca 100644 --- a/languages/paid-memberships-pro-ca.po +++ b/languages/paid-memberships-pro-ca.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:20:05+00:00\n" +"POT-Creation-Date: 2022-05-05T20:36:56+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -93,6 +93,7 @@ msgstr "Comproveu una vegada més" #: adminpages/orders.php:1014 #: includes/metaboxes.php:19 #: adminpages/orders.php:1015 +#: adminpages/orders.php:1103 msgid "All" msgstr "Tot" @@ -136,6 +137,7 @@ msgstr "Tipus" #: adminpages/membershiplevels.php:296 #: adminpages/membershiplevels.php:298 #: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "Descripció" @@ -218,6 +220,11 @@ msgstr "Activa %s" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "Esborra" @@ -286,6 +293,18 @@ msgstr "WordPress.org" #: adminpages/orders.php:913 #: adminpages/orders.php:1537 #: adminpages/orders.php:1546 +#: adminpages/orders.php:704 +#: adminpages/orders.php:996 +#: adminpages/orders.php:1689 +#: adminpages/orders.php:1698 +#: classes/class.pmproemail.php:261 +#: classes/class.pmproemail.php:327 +#: includes/profile.php:167 +#: includes/profile.php:483 +#: includes/profile.php:484 +#: includes/profile.php:556 +#: includes/profile.php:557 +#: includes/profile.php:558 msgid "N/A" msgstr "N/A" @@ -481,6 +500,11 @@ msgstr "Passarela de pagament (Payment Gateway) & SSL" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "Correu electrònic" @@ -496,6 +520,7 @@ msgstr "Avançat" #: adminpages/advancedsettings.php:42 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "La vostra configuració avançada s’han actualitzat." @@ -516,6 +541,7 @@ msgstr "Si us plau login per a veure aquest contingut. (total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "El total de cicles de pagament recurrent per a aquest nivell, incloent el període de prova (si s’aplica) però sense incloure el pagament inicial. Deixa-ho a zero si la subscripció és infinita." @@ -1466,6 +1569,8 @@ msgstr "El total de cicles de pagament recurrent per a aquest n #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "Prova personalitzada" @@ -1482,6 +1587,8 @@ msgstr "Prova personalitzada" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "Clica per afegir un període de prova personalitzat." @@ -1498,6 +1605,7 @@ msgstr "Clica per afegir un període de prova personalitzat." #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "Facturació per al període de prova" @@ -1514,6 +1622,7 @@ msgstr "Facturació per al període de prova" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "per al primer" @@ -1530,6 +1639,7 @@ msgstr "per al primer" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "pagaments de subscripció" @@ -1547,6 +1657,7 @@ msgstr "pagaments de subscripció" #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "Venciment de la subscripció" @@ -1563,6 +1674,7 @@ msgstr "Venciment de la subscripció" #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "Clica per afegir quan expira l’accés del subscriptor" @@ -1581,6 +1693,8 @@ msgstr "Clica per afegir quan expira l’accés del subscriptor" #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "Expira En" @@ -1597,6 +1711,8 @@ msgstr "Expira En" #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "Indiqueu la durada de l’accés de subcriptors. Recordeu que qualsevol pagament futur (recurrent de subscripció, si escau) es cancel·larà quan la subscripció caduqui." @@ -1606,6 +1722,7 @@ msgstr "Indiqueu la durada de l’accés de subcriptors. Recordeu que qualsevol #: adminpages/discountcodes.php:556 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "Codis de descompte per a subscripcions" @@ -1615,6 +1732,7 @@ msgstr "Codis de descompte per a subscripcions" #: adminpages/discountcodes.php:566 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "Cerca codis de descompte" @@ -1627,6 +1745,7 @@ msgstr "Cerca codis de descompte" #: adminpages/reports/login.php:83 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "Cerca" @@ -1636,6 +1755,7 @@ msgstr "Cerca" #: adminpages/discountcodes.php:587 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "Comença" @@ -1665,6 +1785,8 @@ msgstr "Comença" #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "Acaba" @@ -1675,6 +1797,7 @@ msgstr "Acaba" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "Nivells" @@ -1717,6 +1840,7 @@ msgstr "Els codis de descompte et permeten oferir" #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "Edita" @@ -1775,6 +1899,7 @@ msgstr "Configuració de correu electrònic" #: adminpages/emailsettings.php:70 #: adminpages/emailsettings.php:61 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "Per defecte, els correus electrònics generats són enviats desde wordpress@yourdomain.com. Pots modificar-ho utilitzant els camps que hi ha a continuació." @@ -1786,22 +1911,26 @@ msgstr "Per modificar l’aparença dels emails generats pel sistema, afegeix el #: adminpages/emailsettings.php:78 #: adminpages/emailsettings.php:69 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "Del Correu Electrònic" #: adminpages/emailsettings.php:86 #: adminpages/emailsettings.php:77 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "Del Nom" #: adminpages/emailsettings.php:94 #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "Filtra només els correus de PMPro?" #: adminpages/emailsettings.php:98 #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 #, php-format msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "Si no està clicat, tots els correus de \"WordPress <%s>\" seran filtrats per utilitzar la configuració de dalt." @@ -1971,6 +2100,8 @@ msgstr "Afegeix un nou nivell de subscripció" #: adminpages/reports/history.php:184 #: adminpages/reports/login.php:181 #: adminpages/reports/login.php:184 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 msgid "Name" msgstr "Nom" @@ -1978,6 +2109,7 @@ msgstr "Nom" #: adminpages/membershiplevels.php:314 #: adminpages/membershiplevels.php:316 #: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "Missatge de confirmació" @@ -1991,6 +2123,8 @@ msgstr "Missatge de confirmació" #: adminpages/membershiplevels.php:639 #: adminpages/membershiplevels.php:397 #: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "Detalls de facturació" @@ -2015,6 +2149,8 @@ msgstr "Detalls de facturació" #: classes/gateways/class.pmprogateway_stripe.php:2696 #: classes/gateways/class.pmprogateway_stripe.php:2698 #: classes/gateways/class.pmprogateway_stripe.php:2694 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "per" @@ -2033,6 +2169,7 @@ msgstr "La integració d’Stripe actualment només suporta períodes de factura #: adminpages/discountcodes.php:620 #: adminpages/membershiplevels.php:448 #: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:446 msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." msgstr "La integració de Braintree actualment només suporta períodes de facturació de “mes” o “any”." @@ -2050,6 +2187,7 @@ msgstr "La integració de Payflow actualment només suporta períodes de factura #: adminpages/membershiplevels.php:393 #: adminpages/membershiplevels.php:396 #: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." msgstr "Després de salvar aquest nivell, anota’t la ID i crea un \"Plan\" al dashboard de Braintree amb la mateixa configuració i el \"Plan ID\" set to pmpro_#, on # és el level ID." @@ -2072,6 +2210,8 @@ msgstr "Després de salvar aquest nivell, anota’t la ID i crea un \"Plan\" al #: adminpages/membershiplevels.php:454 #: adminpages/membershiplevels.php:459 #: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 msgid "Note" msgstr "Nota" @@ -2091,6 +2231,7 @@ msgstr "Has de crear un “Plan\" a Braintree dashboard amb la mateixa configura #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "La integració d’Stripe no suporta límits de facturació actualment. Pots posar una data de límit de facturació a sota." @@ -2102,6 +2243,8 @@ msgstr "La integració d’Stripe no suporta límits de facturació actualment. #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "La integració de 2Checkout no suporta proves personalitzades. Pots afegir un període de prova configurant un pagament inicial diferent del total de facturació." @@ -2114,6 +2257,7 @@ msgstr "La integració de 2Checkout no suporta proves personalitzades. Pots afeg #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "La integració d’Stripe no suporta preus de prova majors que $0." @@ -2126,6 +2270,7 @@ msgstr "La integració d’Stripe no suporta preus de prova majors que $0." #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "La integració de Braintree no suporta preus de prova majors que $0." @@ -2138,6 +2283,7 @@ msgstr "La integració de Braintree no suporta preus de prova majors que $0." #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "La integració de Payflow no suporta preus de prova majors que $0." @@ -2152,6 +2298,7 @@ msgstr "La integració de Payflow no suporta preus de prova majors que $0." #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "Configuració, altres" @@ -2187,6 +2334,8 @@ msgstr "Clica per amagar aquest nivell de la pàgina de nivells de subscripció #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "Configuració de continguts" @@ -2198,12 +2347,14 @@ msgstr "Configuració de continguts" #: adminpages/membershiplevels.php:497 #: adminpages/membershiplevels.php:500 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "Categories" #: adminpages/membershiplevels.php:516 #: adminpages/membershiplevels.php:517 #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "Salva nivell" @@ -2241,6 +2392,11 @@ msgstr "Salva nivell" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "Cancel·la" @@ -2281,6 +2437,7 @@ msgstr "Cerca Nivells" #: adminpages/membershiplevels.php:579 #: adminpages/membershiplevels.php:631 #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "Arrossega i deixa anar els nivells de subscripció per a reordenar-los a la pàgina de nivells" @@ -2306,6 +2463,8 @@ msgstr "Arrossega i deixa anar els nivells de subscripció per a reordenar-los a #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "Data final (d’expiració)" @@ -2318,6 +2477,7 @@ msgstr "Data final (d’expiració)" #: adminpages/membershiplevels.php:587 #: adminpages/membershiplevels.php:641 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "Permet nous “signups”" @@ -2331,6 +2491,7 @@ msgstr "Permet nous “signups”" #: adminpages/membershiplevels.php:656 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "GRATUÏT" @@ -2344,6 +2505,7 @@ msgstr "GRATUÏT" #: adminpages/membershiplevels.php:665 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "Després" @@ -2389,6 +2551,7 @@ msgstr "copia" #: includes/adminpages.php:149 #: includes/adminpages.php:153 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "Llistat de subscriptors" @@ -2402,6 +2565,8 @@ msgstr "Llistat de subscriptors" #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "Exporta a CSV" @@ -2431,6 +2596,8 @@ msgstr "Exporta a CSV" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "Mostra" @@ -2459,6 +2626,8 @@ msgstr "Mostra" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "Tots els nivells" @@ -2502,6 +2671,8 @@ msgstr "Subscriptors antics" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "Cerca Subscriptors" @@ -2540,6 +2711,8 @@ msgstr "%d subscriptor no trobat." #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "Nom d’usuari" @@ -2583,6 +2756,7 @@ msgstr "Cognoms" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "Adreça de Facturació" @@ -2694,6 +2868,7 @@ msgstr "Error esborrant comanda." #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "Comanda salvada correctament." @@ -2709,6 +2884,7 @@ msgstr "Error actualitzant la marca de temps de la comanda (order timestamp)" #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "Error guardant la comanda." @@ -2722,6 +2898,7 @@ msgstr "Error guardant la comanda." #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "Comanda" @@ -2732,6 +2909,7 @@ msgstr "Comanda" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "Nova comanda" @@ -2742,6 +2920,7 @@ msgstr "Nova comanda" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "Generat aleatoriament per a tu" @@ -2752,6 +2931,7 @@ msgstr "Generat aleatoriament per a tu" #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "ID d’usuari" @@ -2763,6 +2943,8 @@ msgstr "ID d’usuari" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "ID del Nivell de subscripció" @@ -2774,6 +2956,7 @@ msgstr "ID del Nivell de subscripció" #: includes/privacy.php:245 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "Nom de Facturació" @@ -2785,6 +2968,7 @@ msgstr "Nom de Facturació" #: includes/privacy.php:249 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "Adreça de Facturació" @@ -2797,6 +2981,7 @@ msgstr "Adreça de Facturació" #: includes/privacy.php:358 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "Ciutat de Facturació" @@ -2808,6 +2993,7 @@ msgstr "Ciutat de Facturació" #: includes/privacy.php:257 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "Provincia de Facturació" @@ -2821,6 +3007,7 @@ msgstr "Provincia de Facturació" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "Codi postal de Facturació" @@ -2834,6 +3021,7 @@ msgstr "Codi postal de Facturació" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "País de Facturació" @@ -2846,6 +3034,7 @@ msgstr "País de Facturació" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "Telèfon de Facturació" @@ -2858,6 +3047,7 @@ msgstr "Telèfon de Facturació" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "Subtotal" @@ -2877,6 +3067,8 @@ msgstr "Subtotal" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "Impost" @@ -2889,6 +3081,7 @@ msgstr "Impost" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "Valor del cupó" @@ -2920,6 +3113,9 @@ msgstr "Valor del cupó" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "Total" @@ -2939,6 +3135,7 @@ msgstr "Hauria de ser subtotal+impost+valor del cupó" #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "Tipus de pagament" @@ -2950,6 +3147,7 @@ msgstr "Tipus de pagament" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "Per exemple PayPal Express, PayPal Standard, Tarja de crèdit" @@ -2990,6 +3188,9 @@ msgstr "Per exemple PayPal Express, PayPal Standard, Tarja de crèdit" #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "Tipus de targeta" @@ -3001,6 +3202,7 @@ msgstr "Tipus de targeta" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "Per exemple Visa, MasterCard, AMEX, etc" @@ -3019,6 +3221,8 @@ msgstr "Per exemple Visa, MasterCard, AMEX, etc" #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "Nombre de Compte" @@ -3029,6 +3233,7 @@ msgstr "Nombre de Compte" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "Tot amagat menys els últims 4 dígits" @@ -3043,6 +3248,7 @@ msgstr "Tot amagat menys els últims 4 dígits" #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "Mes de finalització/expiració" @@ -3085,6 +3291,10 @@ msgstr "Any de finalització/expiració" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "Estat" @@ -3107,6 +3317,9 @@ msgstr "Estat" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "Passarel·la" @@ -3125,6 +3338,8 @@ msgstr "Passarel·la" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "Entorn de passarel·la" @@ -3146,6 +3361,9 @@ msgstr "Entorn de passarel·la" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "Sandbox/Proves" @@ -3167,6 +3385,9 @@ msgstr "Sandbox/Proves" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "Live/Producció" @@ -3179,6 +3400,7 @@ msgstr "Live/Producció" #: includes/privacy.php:321 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "ID de la transacció de pagament" @@ -3190,6 +3412,7 @@ msgstr "ID de la transacció de pagament" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "Generat per la passarel·la. Útil per a comandes de referències creuades." @@ -3204,6 +3427,8 @@ msgstr "Generat per la passarel·la. Útil per a comandes de referències creuad #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "ID de la transacció per a subscripció" @@ -3216,6 +3441,7 @@ msgstr "ID de la transacció per a subscripció" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "Generat per la passarel·la. Útil per a subscripcions de referències creuades." @@ -3249,6 +3475,8 @@ msgstr "Generat per la passarel·la. Útil per a subscripcions de referències c #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "Data" @@ -3260,6 +3488,7 @@ msgstr "Data" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "ID de subscripció" @@ -3271,6 +3500,7 @@ msgstr "ID de subscripció" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "SubID de subscripció" @@ -3282,6 +3512,7 @@ msgstr "SubID de subscripció" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "Notes" @@ -3293,6 +3524,7 @@ msgstr "Notes" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "Salva Comanda" @@ -3338,6 +3570,8 @@ msgstr "Envia Correu" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "Comandes" @@ -3349,6 +3583,7 @@ msgstr "Comandes" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "Afegeix nova comanda" @@ -3359,6 +3594,7 @@ msgstr "Afegeix nova comanda" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "Dins del període" @@ -3369,6 +3605,7 @@ msgstr "Dins del període" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "Període predefinit" @@ -3379,6 +3616,7 @@ msgstr "Període predefinit" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "Dins del nivell" @@ -3389,6 +3627,7 @@ msgstr "Dins del nivell" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "Dins de l’”Status”" @@ -3399,6 +3638,7 @@ msgstr "Dins de l’”Status”" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "De" @@ -3409,6 +3649,7 @@ msgstr "De" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "per a " @@ -3419,6 +3660,7 @@ msgstr "per a " #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "filtrat per" @@ -3429,6 +3671,7 @@ msgstr "filtrat per" #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "Filtre" @@ -3448,6 +3691,8 @@ msgstr "Filtre" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "Cerca Comandes" @@ -3460,6 +3705,8 @@ msgstr "Cerca Comandes" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "%d comandes no trobades" @@ -3484,6 +3731,7 @@ msgstr "%d comandes no trobades" #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "Usuari" @@ -3527,6 +3775,8 @@ msgstr "Usuari" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "Nivell de subscripció" @@ -3548,6 +3798,7 @@ msgstr "Nivell de subscripció" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "Pagament" @@ -3560,6 +3811,7 @@ msgstr "Pagament" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "IDs de transacció" @@ -3583,6 +3835,8 @@ msgstr "IDs de transacció" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "esborrat" @@ -3596,6 +3850,7 @@ msgstr "esborrat" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "Subscripció" @@ -3611,6 +3866,7 @@ msgstr "Subscripció" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "Esborra comandes és permanent i pot afectar usuaris actius. Estàs segur que vols esborrar la comanda %s?" @@ -3640,6 +3896,7 @@ msgstr "correu electrònic" #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "No s’han trobat comandes" @@ -3712,6 +3969,7 @@ msgstr "Les següents pàgines han estat creades per a tu" #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "Utilitza les pàgines de WordPress a cadascuna de les pàgines requerides per al Paid Memberships Pro" @@ -3721,6 +3979,7 @@ msgstr "Utilitza les pàgines de WordPress a cadascuna de les pàgines requeride #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "Assigna pàgines al WordPress per cadascuna de les pàgines requerides pel Paid Memberships Pro o" @@ -3730,6 +3989,7 @@ msgstr "Assigna pàgines al WordPress per cadascuna de les pàgines requerides p #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "Clica aquí per permetre’ns generar-les per a tu" @@ -3739,6 +3999,7 @@ msgstr "Clica aquí per permetre’ns generar-les per a tu" #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "Pàgina de Compte" @@ -3785,6 +4046,14 @@ msgstr "Pàgina de Compte" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "Escull-ne un" @@ -3845,6 +4114,16 @@ msgstr "Escull-ne un" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "Edita la pàgina" @@ -3902,6 +4181,15 @@ msgstr "Edita la pàgina" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "Mira la pàgina" @@ -3955,6 +4243,12 @@ msgstr "Mira la pàgina" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "Inclou l’”enllaç” (shortcode)" @@ -3966,6 +4260,7 @@ msgstr "Inclou l’”enllaç” (shortcode)" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "Pàgina d’informació de Facturació" @@ -3977,6 +4272,7 @@ msgstr "Pàgina d’informació de Facturació" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "Cancel·la pàgina" @@ -3988,6 +4284,7 @@ msgstr "Cancel·la pàgina" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "Pàgina de Checkout" @@ -3999,6 +4296,7 @@ msgstr "Pàgina de Checkout" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "Pàgina de Confirmació" @@ -4010,6 +4308,7 @@ msgstr "Pàgina de Confirmació" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "Pàgina de Factura" @@ -4021,6 +4320,7 @@ msgstr "Pàgina de Factura" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "Pàgina de Nivells" @@ -4028,6 +4328,7 @@ msgstr "Pàgina de Nivells" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "Configuració addicional de pàgina" @@ -4041,6 +4342,9 @@ msgstr "Configuració addicional de pàgina" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "Genera pàgina" @@ -4061,6 +4365,7 @@ msgstr "La teva configuració de pagament ha estat actualitzada" #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "Passarela de pagament (Payment Gateway)" @@ -4071,6 +4376,7 @@ msgstr "Passarela de pagament (Payment Gateway)" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "Configuració SSL" @@ -4082,12 +4388,14 @@ msgstr "Aprèn més sobre If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "Stripe no necessita camps d’adreça de facturació. Escull “No” per amagar-los de la pàgina de Checkout.
Si No, assegura’t de desabilitar la verificació de l’adreça a l’escripori de configuració de l’Stripe." @@ -6019,6 +6441,7 @@ msgstr "Per integrar totalment l’Stripe, assegura’t de configurar el teu Web #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "Actualització de subscripcions" @@ -6068,6 +6491,7 @@ msgstr "Actualització de subscripcions, et permet canviar el valor subscripció #: classes/gateways/class.pmprogateway_stripe.php:2653 #: classes/gateways/class.pmprogateway_stripe.php:2649 #: pages/billing.php:441 +#: classes/gateways/class.pmprogateway_stripe.php:3106 msgid "Update" msgstr "Actualitza" @@ -6084,6 +6508,7 @@ msgstr "Actualitza" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "No s’ha pogut cancel·lar l’antiga subscripció. Les actualitzacions no s’han processat." @@ -6132,6 +6557,8 @@ msgstr "Error creant un registre d’usuari amb Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "Error agafant la subscripció amb Stripe:" @@ -6171,6 +6598,8 @@ msgstr "Error agafant la subscripció amb Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "Error creant pla amb Stripe:" @@ -6205,6 +6634,8 @@ msgstr "Error creant pla amb Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "Error subscrivint un pla de comprador amb Stripe:" @@ -6226,6 +6657,7 @@ msgstr "Error subscrivint un pla de comprador amb Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "No s’ha pogut cancel·lar l’antiga subscripció. " @@ -6244,6 +6676,7 @@ msgstr "No s’ha pogut cancel·lar l’antiga subscripció. " #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "No s’ha trobat el comprador." @@ -6255,6 +6688,7 @@ msgstr "No s’ha trobat el comprador." #: paid-memberships-pro.php:125 #: paid-memberships-pro.php:132 #: paid-memberships-pro.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "2Checkout" @@ -6262,24 +6696,28 @@ msgstr "2Checkout" #: classes/gateways/class.pmprogateway_twocheckout.php:108 #: classes/gateways/class.pmprogateway_twocheckout.php:116 #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "Configuració de 2Checkout" #: classes/gateways/class.pmprogateway_twocheckout.php:123 #: classes/gateways/class.pmprogateway_twocheckout.php:125 #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "Vés a Account » User Management in 2Checkout i crea un usuari amb API Access i API Updating." #: classes/gateways/class.pmprogateway_twocheckout.php:132 #: classes/gateways/class.pmprogateway_twocheckout.php:134 #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "Clau per a l’usuari de l’API creada." #: classes/gateways/class.pmprogateway_twocheckout.php:141 #: classes/gateways/class.pmprogateway_twocheckout.php:152 #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "Clica a la icona del perfil a 2Checkout per trobar el teu Account Number." @@ -6289,12 +6727,14 @@ msgstr "Clica a la icona del perfil a 2Checkout per trobar el teu Account Number #: classes/gateways/class.pmprogateway_twocheckout.php:137 #: classes/gateways/class.pmprogateway_twocheckout.php:157 #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "Paraula Secreta" #: classes/gateways/class.pmprogateway_twocheckout.php:150 #: classes/gateways/class.pmprogateway_twocheckout.php:161 #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "Vés a Account » Site Management. Mira sota Checkout Options i troba la Paraula Secreta" @@ -6305,12 +6745,14 @@ msgstr "Vés a Account » Site Management. Mira sota Checkout Options i tro #: classes/gateways/class.pmprogateway_twocheckout.php:145 #: classes/gateways/class.pmprogateway_twocheckout.php:166 #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "TwoCheckout INS URL" #: classes/gateways/class.pmprogateway_twocheckout.php:158 #: classes/gateways/class.pmprogateway_twocheckout.php:169 #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "Per integrar-te totalment amb 2Checkout, assegura’t d’utilitzar la següent INS URL i Approved URL" @@ -6318,6 +6760,7 @@ msgstr "Per integrar-te totalment amb 2Checkout, assegura’t d’utilitzar la s #: classes/gateways/class.pmprogateway_twocheckout.php:192 #: classes/gateways/class.pmprogateway_twocheckout.php:214 #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "Check Out amb 2Checkout" @@ -7298,6 +7741,7 @@ msgstr "i" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "Sign Up per !!name!! Ara" @@ -7344,6 +7788,9 @@ msgstr "Si us plau especifica un ID de Nivell" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "Cap" @@ -7355,6 +7802,7 @@ msgstr "La teva clau (license key) ha estat validada." #: includes/license.php:81 #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "Paid Memberships Pro Support License" @@ -7375,6 +7823,7 @@ msgstr "Visita PMPro
Moltes gràcies! A valid %s license #: adminpages/license.php:59 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "Introdueix license key aquí" @@ -7500,6 +7950,8 @@ msgstr "Nivell actual" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "Sense pagament fet." @@ -7604,6 +8056,9 @@ msgstr "logout" #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "Nivell" @@ -7670,6 +8125,7 @@ msgstr "El pagament de la teva subscripció és gestionat per PayPal. Si us plau #: includes/profile.php:759 #: includes/profile.php:755 #: pages/billing.php:166 +#: includes/profile.php:795 msgid "First Name" msgstr "Nom" @@ -7690,6 +8146,7 @@ msgstr "Nom" #: includes/profile.php:760 #: includes/profile.php:756 #: pages/billing.php:170 +#: includes/profile.php:796 msgid "Last Name" msgstr "Cognoms" @@ -8194,6 +8651,10 @@ msgstr "Factura #%s a %s" #: adminpages/orders.php:391 #: adminpages/orders.php:1424 #: adminpages/orders.php:1434 +#: adminpages/orders.php:439 +#: adminpages/orders.php:1539 +#: adminpages/orders.php:1549 +#: includes/profile.php:473 msgid "Print" msgstr "Imprimeix" @@ -8244,6 +8705,7 @@ msgstr "Mètode de pagament" #: pages/invoice.php:97 #: pages/invoice.php:125 #: includes/profile.php:413 +#: includes/profile.php:453 msgid "Total Billed" msgstr "Total facturat" @@ -8268,6 +8730,7 @@ msgstr "A sota hi ha els detalls del teu compte de subscripció. Un correu elect #: pages/confirmation.php:103 #: pages/confirmation.php:138 #: shortcodes/pmpro_account.php:247 +#: pages/confirmation.php:65 msgid "Pending" msgstr "Pendent" @@ -8295,6 +8758,7 @@ msgstr "Si el teu compte no s’activa en uns minuts, si us plau contacta amb l #: includes/functions.php:2857 #: includes/functions.php:2888 #: includes/functions.php:2910 +#: includes/functions.php:2912 msgid "Coupon" msgstr "Cupó" @@ -8379,6 +8843,7 @@ msgstr "← Torna a la pàgina d’inici" #: paid-memberships-pro.php:157 #: paid-memberships-pro.php:159 #: paid-memberships-pro.php:160 +#: paid-memberships-pro.php:166 msgid "Testing Only" msgstr "Només test" @@ -8390,6 +8855,7 @@ msgstr "Només test" #: paid-memberships-pro.php:162 #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:165 +#: paid-memberships-pro.php:171 msgid "PayPal Payflow Pro/PayPal Pro" msgstr "PayPal Payflow Pro/PayPal Pro" @@ -8401,12 +8867,14 @@ msgstr "PayPal Payflow Pro/PayPal Pro" #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:168 #: paid-memberships-pro.php:169 +#: paid-memberships-pro.php:175 msgid "Cybersource" msgstr "Cybersource" #: paid-memberships-pro.php:156 #: paid-memberships-pro.php:194 #: paid-memberships-pro.php:195 +#: paid-memberships-pro.php:201 msgid "Once a month" msgstr "Un cop al mes" @@ -8524,6 +8992,7 @@ msgstr "Error actualitzant la informació de facturació." #: classes/class.pmproemail.php:907 #: includes/email.php:459 #: classes/class.pmproemail.php:900 +#: classes/class.pmproemail.php:1033 msgid "Your membership has been cancelled." msgstr "La teva subscripció ha estat cancel·lada." @@ -8840,6 +9309,7 @@ msgstr "%s ha cancel·lat la seva subscripció per Stripe. Si us plau, confirma #: pages/account.php:19 #: includes/email-templates.php:68 #: shortcodes/pmpro_account.php:43 +#: adminpages/orders.php:1431 msgid "Billing" msgstr "Facturació" @@ -8894,6 +9364,8 @@ msgstr "Edita el perfil" #: includes/profile.php:921 #: includes/profile.php:880 #: includes/profile.php:917 +#: includes/profile.php:920 +#: includes/profile.php:957 msgid "Change Password" msgstr "Canvia Clau" @@ -8992,6 +9464,8 @@ msgstr "cada" #: includes/profile.php:515 #: includes/profile.php:511 #: adminpages/advancedsettings.php:331 +#: adminpages/advancedsettings.php:338 +#: includes/profile.php:551 msgid "Never" msgstr "Mai" @@ -9176,6 +9650,7 @@ msgstr "El teu primer %d pagament serà de %s." #: pages/account.php:87 #: pages/account.php:91 #: adminpages/emailtemplates.php:156 +#: adminpages/emailtemplates.php:149 msgid "Billing Information" msgstr "Informació de Facturació" @@ -9292,6 +9767,18 @@ msgstr "Configura el teu compte" #: js/blocks.build.js:1342 #: js/blocks.build.js:1502 #: classes/class-pmpro-admin-activity-email.php:349 +#: blocks/account-invoices-section/block.js:47 +#: blocks/account-links-section/block.js:47 +#: blocks/account-membership-section/block.js:45 +#: blocks/account-page/block.js:72 +#: blocks/account-profile-section/block.js:45 +#: blocks/billing-page/block.js:44 +#: blocks/cancel-page/block.js:44 +#: blocks/checkout-page/block.js:58 +#: blocks/confirmation-page/block.js:46 +#: blocks/invoice-page/block.js:45 +#: blocks/levels-page/block.js:44 +#: blocks/member-profile-edit/block.js:37 msgid "Paid Memberships Pro" msgstr "" @@ -9337,6 +9824,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:76 #: classes/gateways/class.pmprogateway_stripe.php:82 #: classes/gateways/class.pmprogateway_stripe.php:1338 +#: classes/gateways/class.pmprogateway_stripe.php:1463 msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade." msgstr "" @@ -9377,6 +9865,7 @@ msgstr "" #: includes/adminpages.php:52 #: includes/adminpages.php:158 #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Members" msgstr "" @@ -9421,41 +9910,49 @@ msgstr "" #: adminpages/advancedsettings.php:106 #: includes/updates/upgrade_1.php:7 #: adminpages/advancedsettings.php:108 +#: adminpages/advancedsettings.php:116 msgid "This content is for !!levels!! members only.
Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -9463,93 +9960,111 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -9575,6 +10090,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -9645,6 +10161,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -9750,6 +10267,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -9788,6 +10306,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -9800,31 +10319,39 @@ msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 msgid "%d discount codes found." msgstr "" @@ -9850,6 +10377,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -9868,6 +10402,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -9876,15 +10416,18 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -9925,192 +10468,241 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:960 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:170 #: includes/privacy.php:363 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -10128,6 +10720,7 @@ msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -10135,14 +10728,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -10159,27 +10755,34 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -10189,6 +10792,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -10196,6 +10801,7 @@ msgstr "" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -10203,6 +10809,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -10210,6 +10817,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -10217,6 +10825,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -10224,6 +10833,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -10231,6 +10841,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -10269,78 +10880,91 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -10350,12 +10974,15 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -10363,18 +10990,21 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" @@ -10384,11 +11014,13 @@ msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" @@ -10398,6 +11030,7 @@ msgstr "" #: adminpages/paymentsettings.php:260 #: adminpages/paymentsettings.php:273 +#: adminpages/paymentsettings.php:271 msgid "Your Site URL starts with https:// and so PMPro will allow your entire site to be served over HTTPS." msgstr "" @@ -10429,6 +11062,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -10439,6 +11073,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -10481,21 +11116,25 @@ msgid "Logins This Year" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -10654,51 +11293,63 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:962 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -10711,6 +11362,8 @@ msgstr "" #: includes/email.php:465 #: classes/class.pmproemail.php:898 #: classes/class.pmproemail.php:943 +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 msgid "The new level is %s." msgstr "" @@ -10723,30 +11376,36 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -10758,14 +11417,17 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:91 #: classes/gateways/class.pmprogateway_stripe.php:97 #: classes/gateways/class.pmprogateway_stripe.php:1353 +#: classes/gateways/class.pmprogateway_stripe.php:1478 msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" @@ -10779,21 +11441,30 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:750 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -10801,11 +11472,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -11083,17 +11757,20 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:185 #: classes/gateways/class.pmprogateway_paypalexpress.php:194 #: classes/gateways/class.pmprogateway_paypalexpress.php:204 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 msgid "Confirmation Step" msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -11102,6 +11779,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -11110,6 +11788,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -11125,6 +11804,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -11133,6 +11813,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -11144,6 +11825,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -11155,6 +11837,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -11166,6 +11849,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -11174,6 +11858,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -11185,6 +11870,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -11196,6 +11882,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -11204,6 +11891,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -11215,6 +11903,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -11223,6 +11912,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -11246,6 +11936,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -11262,6 +11954,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -11270,6 +11964,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -11278,6 +11973,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -11286,6 +11982,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -11293,6 +11990,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -11301,6 +11999,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -11314,6 +12013,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -11322,6 +12023,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -11330,6 +12032,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -11339,6 +12042,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -11356,6 +12061,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -11364,6 +12071,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -11385,6 +12093,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -11393,6 +12103,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -11401,6 +12112,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -11409,6 +12121,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -11417,6 +12130,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -11425,6 +12139,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -11433,6 +12148,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -11441,6 +12157,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -11449,6 +12166,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -11457,6 +12175,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -11465,6 +12184,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -11477,6 +12197,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -11485,6 +12206,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -11493,6 +12215,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -11501,6 +12224,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -11509,6 +12233,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -11552,6 +12277,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "" @@ -11563,6 +12290,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 msgid "Error: Unkown error while refunding charge #%s" msgstr "" @@ -11572,6 +12300,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -11592,6 +12321,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -11600,6 +12333,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -11609,6 +12343,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -11618,6 +12353,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -11629,6 +12365,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -11640,6 +12377,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -11651,6 +12389,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -11662,6 +12401,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" @@ -11696,6 +12436,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -11708,6 +12449,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -11720,6 +12462,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -13510,14 +14253,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -13526,18 +14272,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -13549,6 +14299,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -13681,6 +14432,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -13794,6 +14546,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -13801,6 +14554,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -13832,6 +14586,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -13841,6 +14596,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -13848,6 +14604,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -13947,6 +14704,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -13954,6 +14713,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -13961,6 +14721,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -13968,6 +14729,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -14039,126 +14801,148 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -14170,6 +14954,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -14267,6 +15054,7 @@ msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -14292,6 +15080,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -14330,6 +15119,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -14345,6 +15149,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -14360,6 +15165,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -14392,6 +15198,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -14404,6 +15211,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -14429,11 +15237,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -14441,6 +15254,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -14448,6 +15262,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -14470,6 +15285,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -14495,6 +15311,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -14502,6 +15319,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -14534,6 +15352,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -14556,6 +15375,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -14566,11 +15386,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -14590,6 +15421,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -14603,6 +15435,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -14612,6 +15445,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -14621,10 +15455,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -14635,6 +15471,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -14642,6 +15479,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -14651,6 +15489,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -14660,12 +15499,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -14673,6 +15515,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -14681,6 +15525,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -14688,6 +15533,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -14695,22 +15541,26 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -14768,12 +15618,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -14783,6 +15635,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -14792,6 +15645,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -14801,54 +15655,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -14859,42 +15723,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -14909,51 +15783,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -14961,6 +15847,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -14968,6 +15855,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -14975,6 +15863,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -14983,6 +15872,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -14996,6 +15887,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -15016,19 +15908,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -15038,31 +15934,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -15088,21 +15992,25 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" @@ -15172,26 +16080,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -15200,51 +16114,62 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -15258,19 +16183,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -15301,3 +16230,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-ca_AD.mo b/languages/paid-memberships-pro-ca_AD.mo index 8b00bbcbd..dd484d849 100644 Binary files a/languages/paid-memberships-pro-ca_AD.mo and b/languages/paid-memberships-pro-ca_AD.mo differ diff --git a/languages/paid-memberships-pro-ca_AD.po b/languages/paid-memberships-pro-ca_AD.po index 3f3aba031..143de8278 100644 --- a/languages/paid-memberships-pro-ca_AD.po +++ b/languages/paid-memberships-pro-ca_AD.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:20:08+00:00\n" +"POT-Creation-Date: 2022-05-05T20:36:59+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -93,6 +93,7 @@ msgstr "Comproveu una vegada més" #: adminpages/orders.php:1014 #: includes/metaboxes.php:19 #: adminpages/orders.php:1015 +#: adminpages/orders.php:1103 msgid "All" msgstr "Tot" @@ -136,6 +137,7 @@ msgstr "Tipus" #: adminpages/membershiplevels.php:296 #: adminpages/membershiplevels.php:298 #: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "Descripció" @@ -218,6 +220,11 @@ msgstr "Activa %s" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "Esborra" @@ -286,6 +293,18 @@ msgstr "WordPress.org" #: adminpages/orders.php:913 #: adminpages/orders.php:1537 #: adminpages/orders.php:1546 +#: adminpages/orders.php:704 +#: adminpages/orders.php:996 +#: adminpages/orders.php:1689 +#: adminpages/orders.php:1698 +#: classes/class.pmproemail.php:261 +#: classes/class.pmproemail.php:327 +#: includes/profile.php:167 +#: includes/profile.php:483 +#: includes/profile.php:484 +#: includes/profile.php:556 +#: includes/profile.php:557 +#: includes/profile.php:558 msgid "N/A" msgstr "N/A" @@ -481,6 +500,11 @@ msgstr "Passarela de pagament (Payment Gateway) & SSL" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "Correu electrònic" @@ -496,6 +520,7 @@ msgstr "Avançat" #: adminpages/advancedsettings.php:42 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "La vostra configuració avançada s’han actualitzat." @@ -516,6 +541,7 @@ msgstr "Si us plau login per a veure aquest contingut. (total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "El total de cicles de pagament recurrent per a aquest nivell, incloent el període de prova (si s’aplica) però sense incloure el pagament inicial. Deixa-ho a zero si la subscripció és infinita." @@ -1466,6 +1569,8 @@ msgstr "El total de cicles de pagament recurrent per a aquest n #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "Prova personalitzada" @@ -1482,6 +1587,8 @@ msgstr "Prova personalitzada" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "Clica per afegir un període de prova personalitzat." @@ -1498,6 +1605,7 @@ msgstr "Clica per afegir un període de prova personalitzat." #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "Facturació per al període de prova" @@ -1514,6 +1622,7 @@ msgstr "Facturació per al període de prova" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "per al primer" @@ -1530,6 +1639,7 @@ msgstr "per al primer" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "pagaments de subscripció" @@ -1547,6 +1657,7 @@ msgstr "pagaments de subscripció" #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "Venciment de la subscripció" @@ -1563,6 +1674,7 @@ msgstr "Venciment de la subscripció" #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "Clica per afegir quan expira l’accés del subscriptor" @@ -1581,6 +1693,8 @@ msgstr "Clica per afegir quan expira l’accés del subscriptor" #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "Expira En" @@ -1597,6 +1711,8 @@ msgstr "Expira En" #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "Indiqueu la durada de l’accés de subcriptors. Recordeu que qualsevol pagament futur (recurrent de subscripció, si escau) es cancel·larà quan la subscripció caduqui." @@ -1606,6 +1722,7 @@ msgstr "Indiqueu la durada de l’accés de subcriptors. Recordeu que qualsevol #: adminpages/discountcodes.php:556 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "Codis de descompte per a subscripcions" @@ -1615,6 +1732,7 @@ msgstr "Codis de descompte per a subscripcions" #: adminpages/discountcodes.php:566 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "Cerca codis de descompte" @@ -1627,6 +1745,7 @@ msgstr "Cerca codis de descompte" #: adminpages/reports/login.php:83 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "Cerca" @@ -1636,6 +1755,7 @@ msgstr "Cerca" #: adminpages/discountcodes.php:587 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "Comença" @@ -1665,6 +1785,8 @@ msgstr "Comença" #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "Acaba" @@ -1675,6 +1797,7 @@ msgstr "Acaba" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "Nivells" @@ -1717,6 +1840,7 @@ msgstr "Els codis de descompte et permeten oferir" #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "Edita" @@ -1775,6 +1899,7 @@ msgstr "Configuració de correu electrònic" #: adminpages/emailsettings.php:70 #: adminpages/emailsettings.php:61 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "Per defecte, els correus electrònics generats són enviats desde wordpress@yourdomain.com. Pots modificar-ho utilitzant els camps que hi ha a continuació." @@ -1786,22 +1911,26 @@ msgstr "Per modificar l’aparença dels emails generats pel sistema, afegeix el #: adminpages/emailsettings.php:78 #: adminpages/emailsettings.php:69 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "Del Correu Electrònic" #: adminpages/emailsettings.php:86 #: adminpages/emailsettings.php:77 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "Del Nom" #: adminpages/emailsettings.php:94 #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "Filtra només els correus de PMPro?" #: adminpages/emailsettings.php:98 #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 #, php-format msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "Si no està clicat, tots els correus de \"WordPress <%s>\" seran filtrats per utilitzar la configuració de dalt." @@ -1971,6 +2100,8 @@ msgstr "Afegeix un nou nivell de subscripció" #: adminpages/reports/history.php:184 #: adminpages/reports/login.php:181 #: adminpages/reports/login.php:184 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 msgid "Name" msgstr "Nom" @@ -1978,6 +2109,7 @@ msgstr "Nom" #: adminpages/membershiplevels.php:314 #: adminpages/membershiplevels.php:316 #: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "Missatge de confirmació" @@ -1991,6 +2123,8 @@ msgstr "Missatge de confirmació" #: adminpages/membershiplevels.php:639 #: adminpages/membershiplevels.php:397 #: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "Detalls de facturació" @@ -2015,6 +2149,8 @@ msgstr "Detalls de facturació" #: classes/gateways/class.pmprogateway_stripe.php:2696 #: classes/gateways/class.pmprogateway_stripe.php:2698 #: classes/gateways/class.pmprogateway_stripe.php:2694 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "per" @@ -2033,6 +2169,7 @@ msgstr "La integració d’Stripe actualment només suporta períodes de factura #: adminpages/discountcodes.php:620 #: adminpages/membershiplevels.php:448 #: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:446 msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." msgstr "La integració de Braintree actualment només suporta períodes de facturació de “mes” o “any”." @@ -2050,6 +2187,7 @@ msgstr "La integració de Payflow actualment només suporta períodes de factura #: adminpages/membershiplevels.php:393 #: adminpages/membershiplevels.php:396 #: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." msgstr "Després de salvar aquest nivell, anota’t la ID i crea un \"Plan\" al dashboard de Braintree amb la mateixa configuració i el \"Plan ID\" set to pmpro_#, on # és el level ID." @@ -2072,6 +2210,8 @@ msgstr "Després de salvar aquest nivell, anota’t la ID i crea un \"Plan\" al #: adminpages/membershiplevels.php:454 #: adminpages/membershiplevels.php:459 #: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 msgid "Note" msgstr "Nota" @@ -2091,6 +2231,7 @@ msgstr "Has de crear un “Plan\" a Braintree dashboard amb la mateixa configura #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "La integració d’Stripe no suporta límits de facturació actualment. Pots posar una data de límit de facturació a sota." @@ -2102,6 +2243,8 @@ msgstr "La integració d’Stripe no suporta límits de facturació actualment. #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "La integració de 2Checkout no suporta proves personalitzades. Pots afegir un període de prova configurant un pagament inicial diferent del total de facturació." @@ -2114,6 +2257,7 @@ msgstr "La integració de 2Checkout no suporta proves personalitzades. Pots afeg #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "La integració d’Stripe no suporta preus de prova majors que $0." @@ -2126,6 +2270,7 @@ msgstr "La integració d’Stripe no suporta preus de prova majors que $0." #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "La integració de Braintree no suporta preus de prova majors que $0." @@ -2138,6 +2283,7 @@ msgstr "La integració de Braintree no suporta preus de prova majors que $0." #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "La integració de Payflow no suporta preus de prova majors que $0." @@ -2152,6 +2298,7 @@ msgstr "La integració de Payflow no suporta preus de prova majors que $0." #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "Configuració, altres" @@ -2187,6 +2334,8 @@ msgstr "Clica per amagar aquest nivell de la pàgina de nivells de subscripció #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "Configuració de continguts" @@ -2198,12 +2347,14 @@ msgstr "Configuració de continguts" #: adminpages/membershiplevels.php:497 #: adminpages/membershiplevels.php:500 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "Categories" #: adminpages/membershiplevels.php:516 #: adminpages/membershiplevels.php:517 #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "Salva nivell" @@ -2241,6 +2392,11 @@ msgstr "Salva nivell" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "Cancel·la" @@ -2281,6 +2437,7 @@ msgstr "Cerca Nivells" #: adminpages/membershiplevels.php:579 #: adminpages/membershiplevels.php:631 #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "Arrossega i deixa anar els nivells de subscripció per a reordenar-los a la pàgina de nivells" @@ -2306,6 +2463,8 @@ msgstr "Arrossega i deixa anar els nivells de subscripció per a reordenar-los a #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "Data final (d’expiració)" @@ -2318,6 +2477,7 @@ msgstr "Data final (d’expiració)" #: adminpages/membershiplevels.php:587 #: adminpages/membershiplevels.php:641 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "Permet nous “signups”" @@ -2331,6 +2491,7 @@ msgstr "Permet nous “signups”" #: adminpages/membershiplevels.php:656 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "GRATUÏT" @@ -2344,6 +2505,7 @@ msgstr "GRATUÏT" #: adminpages/membershiplevels.php:665 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "Després" @@ -2389,6 +2551,7 @@ msgstr "copia" #: includes/adminpages.php:149 #: includes/adminpages.php:153 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "Llistat de subscriptors" @@ -2402,6 +2565,8 @@ msgstr "Llistat de subscriptors" #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "Exporta a CSV" @@ -2431,6 +2596,8 @@ msgstr "Exporta a CSV" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "Mostra" @@ -2459,6 +2626,8 @@ msgstr "Mostra" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "Tots els nivells" @@ -2502,6 +2671,8 @@ msgstr "Subscriptors antics" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "Cerca Subscriptors" @@ -2540,6 +2711,8 @@ msgstr "%d subscriptor no trobat." #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "Nom d’usuari" @@ -2583,6 +2756,7 @@ msgstr "Cognoms" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "Adreça de Facturació" @@ -2694,6 +2868,7 @@ msgstr "Error esborrant comanda." #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "Comanda salvada correctament." @@ -2709,6 +2884,7 @@ msgstr "Error actualitzant la marca de temps de la comanda (order timestamp)" #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "Error guardant la comanda." @@ -2722,6 +2898,7 @@ msgstr "Error guardant la comanda." #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "Comanda" @@ -2732,6 +2909,7 @@ msgstr "Comanda" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "Nova comanda" @@ -2742,6 +2920,7 @@ msgstr "Nova comanda" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "Generat aleatoriament per a tu" @@ -2752,6 +2931,7 @@ msgstr "Generat aleatoriament per a tu" #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "ID d’usuari" @@ -2763,6 +2943,8 @@ msgstr "ID d’usuari" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "ID del Nivell de subscripció" @@ -2774,6 +2956,7 @@ msgstr "ID del Nivell de subscripció" #: includes/privacy.php:245 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "Nom de Facturació" @@ -2785,6 +2968,7 @@ msgstr "Nom de Facturació" #: includes/privacy.php:249 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "Adreça de Facturació" @@ -2797,6 +2981,7 @@ msgstr "Adreça de Facturació" #: includes/privacy.php:358 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "Ciutat de Facturació" @@ -2808,6 +2993,7 @@ msgstr "Ciutat de Facturació" #: includes/privacy.php:257 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "Provincia de Facturació" @@ -2821,6 +3007,7 @@ msgstr "Provincia de Facturació" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "Codi postal de Facturació" @@ -2834,6 +3021,7 @@ msgstr "Codi postal de Facturació" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "País de Facturació" @@ -2846,6 +3034,7 @@ msgstr "País de Facturació" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "Telèfon de Facturació" @@ -2858,6 +3047,7 @@ msgstr "Telèfon de Facturació" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "Subtotal" @@ -2877,6 +3067,8 @@ msgstr "Subtotal" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "Impost" @@ -2889,6 +3081,7 @@ msgstr "Impost" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "Valor del cupó" @@ -2920,6 +3113,9 @@ msgstr "Valor del cupó" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "Total" @@ -2939,6 +3135,7 @@ msgstr "Hauria de ser subtotal+impost+valor del cupó" #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "Tipus de pagament" @@ -2950,6 +3147,7 @@ msgstr "Tipus de pagament" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "Per exemple PayPal Express, PayPal Standard, Tarja de crèdit" @@ -2990,6 +3188,9 @@ msgstr "Per exemple PayPal Express, PayPal Standard, Tarja de crèdit" #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "Tipus de targeta" @@ -3001,6 +3202,7 @@ msgstr "Tipus de targeta" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "Per exemple Visa, MasterCard, AMEX, etc" @@ -3019,6 +3221,8 @@ msgstr "Per exemple Visa, MasterCard, AMEX, etc" #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "Nombre de Compte" @@ -3029,6 +3233,7 @@ msgstr "Nombre de Compte" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "Tot amagat menys els últims 4 dígits" @@ -3043,6 +3248,7 @@ msgstr "Tot amagat menys els últims 4 dígits" #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "Mes de finalització/expiració" @@ -3085,6 +3291,10 @@ msgstr "Any de finalització/expiració" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "Estat" @@ -3107,6 +3317,9 @@ msgstr "Estat" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "Passarel·la" @@ -3125,6 +3338,8 @@ msgstr "Passarel·la" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "Entorn de passarel·la" @@ -3146,6 +3361,9 @@ msgstr "Entorn de passarel·la" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "Sandbox/Proves" @@ -3167,6 +3385,9 @@ msgstr "Sandbox/Proves" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "Live/Producció" @@ -3179,6 +3400,7 @@ msgstr "Live/Producció" #: includes/privacy.php:321 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "ID de la transacció de pagament" @@ -3190,6 +3412,7 @@ msgstr "ID de la transacció de pagament" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "Generat per la passarel·la. Útil per a comandes de referències creuades." @@ -3204,6 +3427,8 @@ msgstr "Generat per la passarel·la. Útil per a comandes de referències creuad #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "ID de la transacció per a subscripció" @@ -3216,6 +3441,7 @@ msgstr "ID de la transacció per a subscripció" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "Generat per la passarel·la. Útil per a subscripcions de referències creuades." @@ -3249,6 +3475,8 @@ msgstr "Generat per la passarel·la. Útil per a subscripcions de referències c #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "Data" @@ -3260,6 +3488,7 @@ msgstr "Data" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "ID de subscripció" @@ -3271,6 +3500,7 @@ msgstr "ID de subscripció" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "SubID de subscripció" @@ -3282,6 +3512,7 @@ msgstr "SubID de subscripció" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "Notes" @@ -3293,6 +3524,7 @@ msgstr "Notes" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "Salva Comanda" @@ -3338,6 +3570,8 @@ msgstr "Envia Correu" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "Comandes" @@ -3349,6 +3583,7 @@ msgstr "Comandes" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "Afegeix nova comanda" @@ -3359,6 +3594,7 @@ msgstr "Afegeix nova comanda" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "Dins del període" @@ -3369,6 +3605,7 @@ msgstr "Dins del període" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "Període predefinit" @@ -3379,6 +3616,7 @@ msgstr "Període predefinit" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "Dins del nivell" @@ -3389,6 +3627,7 @@ msgstr "Dins del nivell" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "Dins de l’”Status”" @@ -3399,6 +3638,7 @@ msgstr "Dins de l’”Status”" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "De" @@ -3409,6 +3649,7 @@ msgstr "De" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "per a " @@ -3419,6 +3660,7 @@ msgstr "per a " #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "filtrat per" @@ -3429,6 +3671,7 @@ msgstr "filtrat per" #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "Filtre" @@ -3448,6 +3691,8 @@ msgstr "Filtre" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "Cerca Comandes" @@ -3460,6 +3705,8 @@ msgstr "Cerca Comandes" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "%d comandes no trobades" @@ -3484,6 +3731,7 @@ msgstr "%d comandes no trobades" #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "Usuari" @@ -3527,6 +3775,8 @@ msgstr "Usuari" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "Nivell de subscripció" @@ -3548,6 +3798,7 @@ msgstr "Nivell de subscripció" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "Pagament" @@ -3560,6 +3811,7 @@ msgstr "Pagament" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "IDs de transacció" @@ -3583,6 +3835,8 @@ msgstr "IDs de transacció" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "esborrat" @@ -3596,6 +3850,7 @@ msgstr "esborrat" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "Subscripció" @@ -3611,6 +3866,7 @@ msgstr "Subscripció" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "Esborra comandes és permanent i pot afectar usuaris actius. Estàs segur que vols esborrar la comanda %s?" @@ -3640,6 +3896,7 @@ msgstr "correu electrònic" #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "No s’han trobat comandes" @@ -3712,6 +3969,7 @@ msgstr "Les següents pàgines han estat creades per a tu" #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "Utilitza les pàgines de WordPress a cadascuna de les pàgines requerides per al Paid Memberships Pro" @@ -3721,6 +3979,7 @@ msgstr "Utilitza les pàgines de WordPress a cadascuna de les pàgines requeride #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "Assigna pàgines al WordPress per cadascuna de les pàgines requerides pel Paid Memberships Pro o" @@ -3730,6 +3989,7 @@ msgstr "Assigna pàgines al WordPress per cadascuna de les pàgines requerides p #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "Clica aquí per permetre’ns generar-les per a tu" @@ -3739,6 +3999,7 @@ msgstr "Clica aquí per permetre’ns generar-les per a tu" #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "Pàgina de Compte" @@ -3785,6 +4046,14 @@ msgstr "Pàgina de Compte" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "Escull-ne un" @@ -3845,6 +4114,16 @@ msgstr "Escull-ne un" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "Edita la pàgina" @@ -3902,6 +4181,15 @@ msgstr "Edita la pàgina" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "Mira la pàgina" @@ -3955,6 +4243,12 @@ msgstr "Mira la pàgina" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "Inclou l’”enllaç” (shortcode)" @@ -3966,6 +4260,7 @@ msgstr "Inclou l’”enllaç” (shortcode)" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "Pàgina d’informació de Facturació" @@ -3977,6 +4272,7 @@ msgstr "Pàgina d’informació de Facturació" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "Cancel·la pàgina" @@ -3988,6 +4284,7 @@ msgstr "Cancel·la pàgina" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "Pàgina de Checkout" @@ -3999,6 +4296,7 @@ msgstr "Pàgina de Checkout" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "Pàgina de Confirmació" @@ -4010,6 +4308,7 @@ msgstr "Pàgina de Confirmació" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "Pàgina de Factura" @@ -4021,6 +4320,7 @@ msgstr "Pàgina de Factura" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "Pàgina de Nivells" @@ -4028,6 +4328,7 @@ msgstr "Pàgina de Nivells" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "Configuració addicional de pàgina" @@ -4041,6 +4342,9 @@ msgstr "Configuració addicional de pàgina" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "Genera pàgina" @@ -4061,6 +4365,7 @@ msgstr "La teva configuració de pagament ha estat actualitzada" #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "Passarela de pagament (Payment Gateway)" @@ -4071,6 +4376,7 @@ msgstr "Passarela de pagament (Payment Gateway)" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "Configuració SSL" @@ -4082,12 +4388,14 @@ msgstr "Aprèn més sobre If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "Stripe no necessita camps d’adreça de facturació. Escull “No” per amagar-los de la pàgina de Checkout.
Si No, assegura’t de desabilitar la verificació de l’adreça a l’escripori de configuració de l’Stripe." @@ -6019,6 +6441,7 @@ msgstr "Per integrar totalment l’Stripe, assegura’t de configurar el teu Web #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "Actualització de subscripcions" @@ -6068,6 +6491,7 @@ msgstr "Actualització de subscripcions, et permet canviar el valor subscripció #: classes/gateways/class.pmprogateway_stripe.php:2653 #: classes/gateways/class.pmprogateway_stripe.php:2649 #: pages/billing.php:441 +#: classes/gateways/class.pmprogateway_stripe.php:3106 msgid "Update" msgstr "Actualitza" @@ -6084,6 +6508,7 @@ msgstr "Actualitza" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "No s’ha pogut cancel·lar l’antiga subscripció. Les actualitzacions no s’han processat." @@ -6132,6 +6557,8 @@ msgstr "Error creant un registre d’usuari amb Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "Error agafant la subscripció amb Stripe:" @@ -6171,6 +6598,8 @@ msgstr "Error agafant la subscripció amb Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "Error creant pla amb Stripe:" @@ -6205,6 +6634,8 @@ msgstr "Error creant pla amb Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "Error subscrivint un pla de comprador amb Stripe:" @@ -6226,6 +6657,7 @@ msgstr "Error subscrivint un pla de comprador amb Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "No s’ha pogut cancel·lar l’antiga subscripció. " @@ -6244,6 +6676,7 @@ msgstr "No s’ha pogut cancel·lar l’antiga subscripció. " #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "No s’ha trobat el comprador." @@ -6255,6 +6688,7 @@ msgstr "No s’ha trobat el comprador." #: paid-memberships-pro.php:125 #: paid-memberships-pro.php:132 #: paid-memberships-pro.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "2Checkout" @@ -6262,24 +6696,28 @@ msgstr "2Checkout" #: classes/gateways/class.pmprogateway_twocheckout.php:108 #: classes/gateways/class.pmprogateway_twocheckout.php:116 #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "Configuració de 2Checkout" #: classes/gateways/class.pmprogateway_twocheckout.php:123 #: classes/gateways/class.pmprogateway_twocheckout.php:125 #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "Vés a Account » User Management in 2Checkout i crea un usuari amb API Access i API Updating." #: classes/gateways/class.pmprogateway_twocheckout.php:132 #: classes/gateways/class.pmprogateway_twocheckout.php:134 #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "Clau per a l’usuari de l’API creada." #: classes/gateways/class.pmprogateway_twocheckout.php:141 #: classes/gateways/class.pmprogateway_twocheckout.php:152 #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "Clica a la icona del perfil a 2Checkout per trobar el teu Account Number." @@ -6289,12 +6727,14 @@ msgstr "Clica a la icona del perfil a 2Checkout per trobar el teu Account Number #: classes/gateways/class.pmprogateway_twocheckout.php:137 #: classes/gateways/class.pmprogateway_twocheckout.php:157 #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "Paraula Secreta" #: classes/gateways/class.pmprogateway_twocheckout.php:150 #: classes/gateways/class.pmprogateway_twocheckout.php:161 #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "Vés a Account » Site Management. Mira sota Checkout Options i troba la Paraula Secreta" @@ -6305,12 +6745,14 @@ msgstr "Vés a Account » Site Management. Mira sota Checkout Options i tro #: classes/gateways/class.pmprogateway_twocheckout.php:145 #: classes/gateways/class.pmprogateway_twocheckout.php:166 #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "TwoCheckout INS URL" #: classes/gateways/class.pmprogateway_twocheckout.php:158 #: classes/gateways/class.pmprogateway_twocheckout.php:169 #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "Per integrar-te totalment amb 2Checkout, assegura’t d’utilitzar la següent INS URL i Approved URL" @@ -6318,6 +6760,7 @@ msgstr "Per integrar-te totalment amb 2Checkout, assegura’t d’utilitzar la s #: classes/gateways/class.pmprogateway_twocheckout.php:192 #: classes/gateways/class.pmprogateway_twocheckout.php:214 #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "Check Out amb 2Checkout" @@ -7298,6 +7741,7 @@ msgstr "i" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "Sign Up per !!name!! Ara" @@ -7344,6 +7788,9 @@ msgstr "Si us plau especifica un ID de Nivell" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "Cap" @@ -7355,6 +7802,7 @@ msgstr "La teva clau (license key) ha estat validada." #: includes/license.php:81 #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "Paid Memberships Pro Support License" @@ -7375,6 +7823,7 @@ msgstr "Visita PMPro
Moltes gràcies! A valid %s license #: adminpages/license.php:59 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "Introdueix license key aquí" @@ -7500,6 +7950,8 @@ msgstr "Nivell actual" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "Sense pagament fet." @@ -7604,6 +8056,9 @@ msgstr "logout" #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "Nivell" @@ -7670,6 +8125,7 @@ msgstr "El pagament de la teva subscripció és gestionat per PayPal. Si us plau #: includes/profile.php:759 #: includes/profile.php:755 #: pages/billing.php:166 +#: includes/profile.php:795 msgid "First Name" msgstr "Nom" @@ -7690,6 +8146,7 @@ msgstr "Nom" #: includes/profile.php:760 #: includes/profile.php:756 #: pages/billing.php:170 +#: includes/profile.php:796 msgid "Last Name" msgstr "Cognoms" @@ -8194,6 +8651,10 @@ msgstr "Factura #%s a %s" #: adminpages/orders.php:391 #: adminpages/orders.php:1424 #: adminpages/orders.php:1434 +#: adminpages/orders.php:439 +#: adminpages/orders.php:1539 +#: adminpages/orders.php:1549 +#: includes/profile.php:473 msgid "Print" msgstr "Imprimeix" @@ -8244,6 +8705,7 @@ msgstr "Mètode de pagament" #: pages/invoice.php:97 #: pages/invoice.php:125 #: includes/profile.php:413 +#: includes/profile.php:453 msgid "Total Billed" msgstr "Total facturat" @@ -8268,6 +8730,7 @@ msgstr "A sota hi ha els detalls del teu compte de subscripció. Un correu elect #: pages/confirmation.php:103 #: pages/confirmation.php:138 #: shortcodes/pmpro_account.php:247 +#: pages/confirmation.php:65 msgid "Pending" msgstr "Pendent" @@ -8295,6 +8758,7 @@ msgstr "Si el teu compte no s’activa en uns minuts, si us plau contacta amb l #: includes/functions.php:2857 #: includes/functions.php:2888 #: includes/functions.php:2910 +#: includes/functions.php:2912 msgid "Coupon" msgstr "Cupó" @@ -8379,6 +8843,7 @@ msgstr "← Torna a la pàgina d’inici" #: paid-memberships-pro.php:157 #: paid-memberships-pro.php:159 #: paid-memberships-pro.php:160 +#: paid-memberships-pro.php:166 msgid "Testing Only" msgstr "Només test" @@ -8390,6 +8855,7 @@ msgstr "Només test" #: paid-memberships-pro.php:162 #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:165 +#: paid-memberships-pro.php:171 msgid "PayPal Payflow Pro/PayPal Pro" msgstr "PayPal Payflow Pro/PayPal Pro" @@ -8401,12 +8867,14 @@ msgstr "PayPal Payflow Pro/PayPal Pro" #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:168 #: paid-memberships-pro.php:169 +#: paid-memberships-pro.php:175 msgid "Cybersource" msgstr "Cybersource" #: paid-memberships-pro.php:156 #: paid-memberships-pro.php:194 #: paid-memberships-pro.php:195 +#: paid-memberships-pro.php:201 msgid "Once a month" msgstr "Un cop al mes" @@ -8524,6 +8992,7 @@ msgstr "Error actualitzant la informació de facturació." #: classes/class.pmproemail.php:907 #: includes/email.php:459 #: classes/class.pmproemail.php:900 +#: classes/class.pmproemail.php:1033 msgid "Your membership has been cancelled." msgstr "La teva subscripció ha estat cancel·lada." @@ -8840,6 +9309,7 @@ msgstr "%s ha cancel·lat la seva subscripció per Stripe. Si us plau, confirma #: pages/account.php:19 #: includes/email-templates.php:68 #: shortcodes/pmpro_account.php:43 +#: adminpages/orders.php:1431 msgid "Billing" msgstr "Facturació" @@ -8894,6 +9364,8 @@ msgstr "Edita el perfil" #: includes/profile.php:921 #: includes/profile.php:880 #: includes/profile.php:917 +#: includes/profile.php:920 +#: includes/profile.php:957 msgid "Change Password" msgstr "Canvia Clau" @@ -8992,6 +9464,8 @@ msgstr "cada" #: includes/profile.php:515 #: includes/profile.php:511 #: adminpages/advancedsettings.php:331 +#: adminpages/advancedsettings.php:338 +#: includes/profile.php:551 msgid "Never" msgstr "Mai" @@ -9176,6 +9650,7 @@ msgstr "El teu primer %d pagament serà de %s." #: pages/account.php:87 #: pages/account.php:91 #: adminpages/emailtemplates.php:156 +#: adminpages/emailtemplates.php:149 msgid "Billing Information" msgstr "Informació de Facturació" @@ -9292,6 +9767,18 @@ msgstr "Configura el teu compte" #: js/blocks.build.js:1342 #: js/blocks.build.js:1502 #: classes/class-pmpro-admin-activity-email.php:349 +#: blocks/account-invoices-section/block.js:47 +#: blocks/account-links-section/block.js:47 +#: blocks/account-membership-section/block.js:45 +#: blocks/account-page/block.js:72 +#: blocks/account-profile-section/block.js:45 +#: blocks/billing-page/block.js:44 +#: blocks/cancel-page/block.js:44 +#: blocks/checkout-page/block.js:58 +#: blocks/confirmation-page/block.js:46 +#: blocks/invoice-page/block.js:45 +#: blocks/levels-page/block.js:44 +#: blocks/member-profile-edit/block.js:37 msgid "Paid Memberships Pro" msgstr "" @@ -9337,6 +9824,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:76 #: classes/gateways/class.pmprogateway_stripe.php:82 #: classes/gateways/class.pmprogateway_stripe.php:1338 +#: classes/gateways/class.pmprogateway_stripe.php:1463 msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade." msgstr "" @@ -9377,6 +9865,7 @@ msgstr "" #: includes/adminpages.php:52 #: includes/adminpages.php:158 #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Members" msgstr "" @@ -9421,41 +9910,49 @@ msgstr "" #: adminpages/advancedsettings.php:106 #: includes/updates/upgrade_1.php:7 #: adminpages/advancedsettings.php:108 +#: adminpages/advancedsettings.php:116 msgid "This content is for !!levels!! members only.
Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -9463,93 +9960,111 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -9575,6 +10090,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -9645,6 +10161,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -9750,6 +10267,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -9788,6 +10306,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -9800,31 +10319,39 @@ msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 msgid "%d discount codes found." msgstr "" @@ -9850,6 +10377,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -9868,6 +10402,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -9876,15 +10416,18 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -9925,192 +10468,241 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:960 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:170 #: includes/privacy.php:363 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -10128,6 +10720,7 @@ msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -10135,14 +10728,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -10159,27 +10755,34 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -10189,6 +10792,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -10196,6 +10801,7 @@ msgstr "" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -10203,6 +10809,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -10210,6 +10817,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -10217,6 +10825,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -10224,6 +10833,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -10231,6 +10841,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -10269,78 +10880,91 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -10350,12 +10974,15 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -10363,18 +10990,21 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" @@ -10384,11 +11014,13 @@ msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" @@ -10398,6 +11030,7 @@ msgstr "" #: adminpages/paymentsettings.php:260 #: adminpages/paymentsettings.php:273 +#: adminpages/paymentsettings.php:271 msgid "Your Site URL starts with https:// and so PMPro will allow your entire site to be served over HTTPS." msgstr "" @@ -10429,6 +11062,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -10439,6 +11073,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -10481,21 +11116,25 @@ msgid "Logins This Year" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -10654,51 +11293,63 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:962 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -10711,6 +11362,8 @@ msgstr "" #: includes/email.php:465 #: classes/class.pmproemail.php:898 #: classes/class.pmproemail.php:943 +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 msgid "The new level is %s." msgstr "" @@ -10723,30 +11376,36 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -10758,14 +11417,17 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:91 #: classes/gateways/class.pmprogateway_stripe.php:97 #: classes/gateways/class.pmprogateway_stripe.php:1353 +#: classes/gateways/class.pmprogateway_stripe.php:1478 msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" @@ -10779,21 +11441,30 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:750 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -10801,11 +11472,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -11083,17 +11757,20 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:185 #: classes/gateways/class.pmprogateway_paypalexpress.php:194 #: classes/gateways/class.pmprogateway_paypalexpress.php:204 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 msgid "Confirmation Step" msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -11102,6 +11779,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -11110,6 +11788,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -11125,6 +11804,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -11133,6 +11813,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -11144,6 +11825,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -11155,6 +11837,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -11166,6 +11849,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -11174,6 +11858,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -11185,6 +11870,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -11196,6 +11882,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -11204,6 +11891,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -11215,6 +11903,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -11223,6 +11912,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -11246,6 +11936,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -11262,6 +11954,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -11270,6 +11964,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -11278,6 +11973,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -11286,6 +11982,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -11293,6 +11990,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -11301,6 +11999,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -11314,6 +12013,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -11322,6 +12023,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -11330,6 +12032,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -11339,6 +12042,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -11356,6 +12061,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -11364,6 +12071,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -11385,6 +12093,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -11393,6 +12103,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -11401,6 +12112,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -11409,6 +12121,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -11417,6 +12130,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -11425,6 +12139,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -11433,6 +12148,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -11441,6 +12157,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -11449,6 +12166,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -11457,6 +12175,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -11465,6 +12184,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -11477,6 +12197,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -11485,6 +12206,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -11493,6 +12215,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -11501,6 +12224,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -11509,6 +12233,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -11552,6 +12277,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "" @@ -11563,6 +12290,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 msgid "Error: Unkown error while refunding charge #%s" msgstr "" @@ -11572,6 +12300,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -11592,6 +12321,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -11600,6 +12333,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -11609,6 +12343,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -11618,6 +12353,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -11629,6 +12365,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -11640,6 +12377,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -11651,6 +12389,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -11662,6 +12401,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" @@ -11696,6 +12436,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -11708,6 +12449,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -11720,6 +12462,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -13510,14 +14253,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -13526,18 +14272,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -13549,6 +14299,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -13681,6 +14432,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -13794,6 +14546,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -13801,6 +14554,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -13832,6 +14586,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -13841,6 +14596,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -13848,6 +14604,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -13947,6 +14704,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -13954,6 +14713,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -13961,6 +14721,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -13968,6 +14729,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -14039,126 +14801,148 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -14170,6 +14954,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -14267,6 +15054,7 @@ msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -14292,6 +15080,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -14330,6 +15119,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -14345,6 +15149,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -14360,6 +15165,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -14392,6 +15198,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -14404,6 +15211,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -14429,11 +15237,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -14441,6 +15254,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -14448,6 +15262,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -14470,6 +15285,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -14495,6 +15311,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -14502,6 +15319,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -14534,6 +15352,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -14556,6 +15375,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -14566,11 +15386,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -14590,6 +15421,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -14603,6 +15435,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -14612,6 +15445,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -14621,10 +15455,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -14635,6 +15471,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -14642,6 +15479,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -14651,6 +15489,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -14660,12 +15499,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -14673,6 +15515,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -14681,6 +15525,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -14688,6 +15533,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -14695,22 +15541,26 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -14768,12 +15618,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -14783,6 +15635,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -14792,6 +15645,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -14801,54 +15655,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -14859,42 +15723,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -14909,51 +15783,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -14961,6 +15847,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -14968,6 +15855,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -14975,6 +15863,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -14983,6 +15872,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -14996,6 +15887,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -15016,19 +15908,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -15038,31 +15934,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -15088,21 +15992,25 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" @@ -15172,26 +16080,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -15200,51 +16114,62 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -15258,19 +16183,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -15301,3 +16230,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-ca_ES.mo b/languages/paid-memberships-pro-ca_ES.mo index 412a7c406..6a4489307 100644 Binary files a/languages/paid-memberships-pro-ca_ES.mo and b/languages/paid-memberships-pro-ca_ES.mo differ diff --git a/languages/paid-memberships-pro-ca_ES.po b/languages/paid-memberships-pro-ca_ES.po index adafd7460..652028559 100644 --- a/languages/paid-memberships-pro-ca_ES.po +++ b/languages/paid-memberships-pro-ca_ES.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:20:11+00:00\n" +"POT-Creation-Date: 2022-05-05T20:37:01+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -93,6 +93,7 @@ msgstr "Comproveu una vegada més" #: adminpages/orders.php:1014 #: includes/metaboxes.php:19 #: adminpages/orders.php:1015 +#: adminpages/orders.php:1103 msgid "All" msgstr "Tot" @@ -136,6 +137,7 @@ msgstr "Tipus" #: adminpages/membershiplevels.php:296 #: adminpages/membershiplevels.php:298 #: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "Descripció" @@ -218,6 +220,11 @@ msgstr "Activa %s" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "Esborra" @@ -286,6 +293,18 @@ msgstr "WordPress.org" #: adminpages/orders.php:913 #: adminpages/orders.php:1537 #: adminpages/orders.php:1546 +#: adminpages/orders.php:704 +#: adminpages/orders.php:996 +#: adminpages/orders.php:1689 +#: adminpages/orders.php:1698 +#: classes/class.pmproemail.php:261 +#: classes/class.pmproemail.php:327 +#: includes/profile.php:167 +#: includes/profile.php:483 +#: includes/profile.php:484 +#: includes/profile.php:556 +#: includes/profile.php:557 +#: includes/profile.php:558 msgid "N/A" msgstr "N/A" @@ -481,6 +500,11 @@ msgstr "Passarela de pagament (Payment Gateway) & SSL" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "Correu electrònic" @@ -496,6 +520,7 @@ msgstr "Avançat" #: adminpages/advancedsettings.php:42 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "La vostra configuració avançada s’han actualitzat." @@ -516,6 +541,7 @@ msgstr "Si us plau login per a veure aquest contingut. (total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "El total de cicles de pagament recurrent per a aquest nivell, incloent el període de prova (si s’aplica) però sense incloure el pagament inicial. Deixa-ho a zero si la subscripció és infinita." @@ -1466,6 +1569,8 @@ msgstr "El total de cicles de pagament recurrent per a aquest n #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "Prova personalitzada" @@ -1482,6 +1587,8 @@ msgstr "Prova personalitzada" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "Clica per afegir un període de prova personalitzat." @@ -1498,6 +1605,7 @@ msgstr "Clica per afegir un període de prova personalitzat." #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "Facturació per al període de prova" @@ -1514,6 +1622,7 @@ msgstr "Facturació per al període de prova" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "per al primer" @@ -1530,6 +1639,7 @@ msgstr "per al primer" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "pagaments de subscripció" @@ -1547,6 +1657,7 @@ msgstr "pagaments de subscripció" #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "Venciment de la subscripció" @@ -1563,6 +1674,7 @@ msgstr "Venciment de la subscripció" #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "Clica per afegir quan expira l’accés del subscriptor" @@ -1581,6 +1693,8 @@ msgstr "Clica per afegir quan expira l’accés del subscriptor" #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "Expira En" @@ -1597,6 +1711,8 @@ msgstr "Expira En" #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "Indiqueu la durada de l’accés de subcriptors. Recordeu que qualsevol pagament futur (recurrent de subscripció, si escau) es cancel·larà quan la subscripció caduqui." @@ -1606,6 +1722,7 @@ msgstr "Indiqueu la durada de l’accés de subcriptors. Recordeu que qualsevol #: adminpages/discountcodes.php:556 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "Codis de descompte per a subscripcions" @@ -1615,6 +1732,7 @@ msgstr "Codis de descompte per a subscripcions" #: adminpages/discountcodes.php:566 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "Cerca codis de descompte" @@ -1627,6 +1745,7 @@ msgstr "Cerca codis de descompte" #: adminpages/reports/login.php:83 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "Cerca" @@ -1636,6 +1755,7 @@ msgstr "Cerca" #: adminpages/discountcodes.php:587 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "Comença" @@ -1665,6 +1785,8 @@ msgstr "Comença" #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "Acaba" @@ -1675,6 +1797,7 @@ msgstr "Acaba" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "Nivells" @@ -1717,6 +1840,7 @@ msgstr "Els codis de descompte et permeten oferir" #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "Edita" @@ -1775,6 +1899,7 @@ msgstr "Configuració de correu electrònic" #: adminpages/emailsettings.php:70 #: adminpages/emailsettings.php:61 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "Per defecte, els correus electrònics generats són enviats desde wordpress@yourdomain.com. Pots modificar-ho utilitzant els camps que hi ha a continuació." @@ -1786,22 +1911,26 @@ msgstr "Per modificar l’aparença dels emails generats pel sistema, afegeix el #: adminpages/emailsettings.php:78 #: adminpages/emailsettings.php:69 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "Del Correu Electrònic" #: adminpages/emailsettings.php:86 #: adminpages/emailsettings.php:77 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "Del Nom" #: adminpages/emailsettings.php:94 #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "Filtra només els correus de PMPro?" #: adminpages/emailsettings.php:98 #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 #, php-format msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "Si no està clicat, tots els correus de \"WordPress <%s>\" seran filtrats per utilitzar la configuració de dalt." @@ -1971,6 +2100,8 @@ msgstr "Afegeix un nou nivell de subscripció" #: adminpages/reports/history.php:184 #: adminpages/reports/login.php:181 #: adminpages/reports/login.php:184 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 msgid "Name" msgstr "Nom" @@ -1978,6 +2109,7 @@ msgstr "Nom" #: adminpages/membershiplevels.php:314 #: adminpages/membershiplevels.php:316 #: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "Missatge de confirmació" @@ -1991,6 +2123,8 @@ msgstr "Missatge de confirmació" #: adminpages/membershiplevels.php:639 #: adminpages/membershiplevels.php:397 #: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "Detalls de facturació" @@ -2015,6 +2149,8 @@ msgstr "Detalls de facturació" #: classes/gateways/class.pmprogateway_stripe.php:2696 #: classes/gateways/class.pmprogateway_stripe.php:2698 #: classes/gateways/class.pmprogateway_stripe.php:2694 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "per" @@ -2033,6 +2169,7 @@ msgstr "La integració d’Stripe actualment només suporta períodes de factura #: adminpages/discountcodes.php:620 #: adminpages/membershiplevels.php:448 #: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:446 msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." msgstr "La integració de Braintree actualment només suporta períodes de facturació de “mes” o “any”." @@ -2050,6 +2187,7 @@ msgstr "La integració de Payflow actualment només suporta períodes de factura #: adminpages/membershiplevels.php:393 #: adminpages/membershiplevels.php:396 #: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." msgstr "Després de salvar aquest nivell, anota’t la ID i crea un \"Plan\" al dashboard de Braintree amb la mateixa configuració i el \"Plan ID\" set to pmpro_#, on # és el level ID." @@ -2072,6 +2210,8 @@ msgstr "Després de salvar aquest nivell, anota’t la ID i crea un \"Plan\" al #: adminpages/membershiplevels.php:454 #: adminpages/membershiplevels.php:459 #: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 msgid "Note" msgstr "Nota" @@ -2091,6 +2231,7 @@ msgstr "Has de crear un “Plan\" a Braintree dashboard amb la mateixa configura #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "La integració d’Stripe no suporta límits de facturació actualment. Pots posar una data de límit de facturació a sota." @@ -2102,6 +2243,8 @@ msgstr "La integració d’Stripe no suporta límits de facturació actualment. #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "La integració de 2Checkout no suporta proves personalitzades. Pots afegir un període de prova configurant un pagament inicial diferent del total de facturació." @@ -2114,6 +2257,7 @@ msgstr "La integració de 2Checkout no suporta proves personalitzades. Pots afeg #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "La integració d’Stripe no suporta preus de prova majors que $0." @@ -2126,6 +2270,7 @@ msgstr "La integració d’Stripe no suporta preus de prova majors que $0." #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "La integració de Braintree no suporta preus de prova majors que $0." @@ -2138,6 +2283,7 @@ msgstr "La integració de Braintree no suporta preus de prova majors que $0." #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "La integració de Payflow no suporta preus de prova majors que $0." @@ -2152,6 +2298,7 @@ msgstr "La integració de Payflow no suporta preus de prova majors que $0." #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "Configuració, altres" @@ -2187,6 +2334,8 @@ msgstr "Clica per amagar aquest nivell de la pàgina de nivells de subscripció #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "Configuració de continguts" @@ -2198,12 +2347,14 @@ msgstr "Configuració de continguts" #: adminpages/membershiplevels.php:497 #: adminpages/membershiplevels.php:500 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "Categories" #: adminpages/membershiplevels.php:516 #: adminpages/membershiplevels.php:517 #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "Salva nivell" @@ -2241,6 +2392,11 @@ msgstr "Salva nivell" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "Cancel·la" @@ -2281,6 +2437,7 @@ msgstr "Cerca Nivells" #: adminpages/membershiplevels.php:579 #: adminpages/membershiplevels.php:631 #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "Arrossega i deixa anar els nivells de subscripció per a reordenar-los a la pàgina de nivells" @@ -2306,6 +2463,8 @@ msgstr "Arrossega i deixa anar els nivells de subscripció per a reordenar-los a #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "Data final (d’expiració)" @@ -2318,6 +2477,7 @@ msgstr "Data final (d’expiració)" #: adminpages/membershiplevels.php:587 #: adminpages/membershiplevels.php:641 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "Permet nous “signups”" @@ -2331,6 +2491,7 @@ msgstr "Permet nous “signups”" #: adminpages/membershiplevels.php:656 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "GRATUÏT" @@ -2344,6 +2505,7 @@ msgstr "GRATUÏT" #: adminpages/membershiplevels.php:665 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "Després" @@ -2389,6 +2551,7 @@ msgstr "copia" #: includes/adminpages.php:149 #: includes/adminpages.php:153 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "Llistat de subscriptors" @@ -2402,6 +2565,8 @@ msgstr "Llistat de subscriptors" #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "Exporta a CSV" @@ -2431,6 +2596,8 @@ msgstr "Exporta a CSV" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "Mostra" @@ -2459,6 +2626,8 @@ msgstr "Mostra" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "Tots els nivells" @@ -2502,6 +2671,8 @@ msgstr "Subscriptors antics" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "Cerca Subscriptors" @@ -2540,6 +2711,8 @@ msgstr "%d subscriptor no trobat." #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "Nom d’usuari" @@ -2583,6 +2756,7 @@ msgstr "Cognoms" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "Adreça de Facturació" @@ -2694,6 +2868,7 @@ msgstr "Error esborrant comanda." #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "Comanda salvada correctament." @@ -2709,6 +2884,7 @@ msgstr "Error actualitzant la marca de temps de la comanda (order timestamp)" #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "Error guardant la comanda." @@ -2722,6 +2898,7 @@ msgstr "Error guardant la comanda." #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "Comanda" @@ -2732,6 +2909,7 @@ msgstr "Comanda" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "Nova comanda" @@ -2742,6 +2920,7 @@ msgstr "Nova comanda" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "Generat aleatoriament per a tu" @@ -2752,6 +2931,7 @@ msgstr "Generat aleatoriament per a tu" #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "ID d’usuari" @@ -2763,6 +2943,8 @@ msgstr "ID d’usuari" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "ID del Nivell de subscripció" @@ -2774,6 +2956,7 @@ msgstr "ID del Nivell de subscripció" #: includes/privacy.php:245 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "Nom de Facturació" @@ -2785,6 +2968,7 @@ msgstr "Nom de Facturació" #: includes/privacy.php:249 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "Adreça de Facturació" @@ -2797,6 +2981,7 @@ msgstr "Adreça de Facturació" #: includes/privacy.php:358 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "Ciutat de Facturació" @@ -2808,6 +2993,7 @@ msgstr "Ciutat de Facturació" #: includes/privacy.php:257 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "Provincia de Facturació" @@ -2821,6 +3007,7 @@ msgstr "Provincia de Facturació" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "Codi postal de Facturació" @@ -2834,6 +3021,7 @@ msgstr "Codi postal de Facturació" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "País de Facturació" @@ -2846,6 +3034,7 @@ msgstr "País de Facturació" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "Telèfon de Facturació" @@ -2858,6 +3047,7 @@ msgstr "Telèfon de Facturació" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "Subtotal" @@ -2877,6 +3067,8 @@ msgstr "Subtotal" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "Impost" @@ -2889,6 +3081,7 @@ msgstr "Impost" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "Valor del cupó" @@ -2920,6 +3113,9 @@ msgstr "Valor del cupó" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "Total" @@ -2939,6 +3135,7 @@ msgstr "Hauria de ser subtotal+impost+valor del cupó" #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "Tipus de pagament" @@ -2950,6 +3147,7 @@ msgstr "Tipus de pagament" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "Per exemple PayPal Express, PayPal Standard, Tarja de crèdit" @@ -2990,6 +3188,9 @@ msgstr "Per exemple PayPal Express, PayPal Standard, Tarja de crèdit" #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "Tipus de targeta" @@ -3001,6 +3202,7 @@ msgstr "Tipus de targeta" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "Per exemple Visa, MasterCard, AMEX, etc" @@ -3019,6 +3221,8 @@ msgstr "Per exemple Visa, MasterCard, AMEX, etc" #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "Nombre de Compte" @@ -3029,6 +3233,7 @@ msgstr "Nombre de Compte" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "Tot amagat menys els últims 4 dígits" @@ -3043,6 +3248,7 @@ msgstr "Tot amagat menys els últims 4 dígits" #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "Mes de finalització/expiració" @@ -3085,6 +3291,10 @@ msgstr "Any de finalització/expiració" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "Estat" @@ -3107,6 +3317,9 @@ msgstr "Estat" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "Passarel·la" @@ -3125,6 +3338,8 @@ msgstr "Passarel·la" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "Entorn de passarel·la" @@ -3146,6 +3361,9 @@ msgstr "Entorn de passarel·la" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "Sandbox/Proves" @@ -3167,6 +3385,9 @@ msgstr "Sandbox/Proves" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "Live/Producció" @@ -3179,6 +3400,7 @@ msgstr "Live/Producció" #: includes/privacy.php:321 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "ID de la transacció de pagament" @@ -3190,6 +3412,7 @@ msgstr "ID de la transacció de pagament" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "Generat per la passarel·la. Útil per a comandes de referències creuades." @@ -3204,6 +3427,8 @@ msgstr "Generat per la passarel·la. Útil per a comandes de referències creuad #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "ID de la transacció per a subscripció" @@ -3216,6 +3441,7 @@ msgstr "ID de la transacció per a subscripció" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "Generat per la passarel·la. Útil per a subscripcions de referències creuades." @@ -3249,6 +3475,8 @@ msgstr "Generat per la passarel·la. Útil per a subscripcions de referències c #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "Data" @@ -3260,6 +3488,7 @@ msgstr "Data" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "ID de subscripció" @@ -3271,6 +3500,7 @@ msgstr "ID de subscripció" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "SubID de subscripció" @@ -3282,6 +3512,7 @@ msgstr "SubID de subscripció" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "Notes" @@ -3293,6 +3524,7 @@ msgstr "Notes" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "Salva Comanda" @@ -3338,6 +3570,8 @@ msgstr "Envia Correu" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "Comandes" @@ -3349,6 +3583,7 @@ msgstr "Comandes" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "Afegeix nova comanda" @@ -3359,6 +3594,7 @@ msgstr "Afegeix nova comanda" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "Dins del període" @@ -3369,6 +3605,7 @@ msgstr "Dins del període" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "Període predefinit" @@ -3379,6 +3616,7 @@ msgstr "Període predefinit" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "Dins del nivell" @@ -3389,6 +3627,7 @@ msgstr "Dins del nivell" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "Dins de l’”Status”" @@ -3399,6 +3638,7 @@ msgstr "Dins de l’”Status”" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "De" @@ -3409,6 +3649,7 @@ msgstr "De" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "per a " @@ -3419,6 +3660,7 @@ msgstr "per a " #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "filtrat per" @@ -3429,6 +3671,7 @@ msgstr "filtrat per" #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "Filtre" @@ -3448,6 +3691,8 @@ msgstr "Filtre" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "Cerca Comandes" @@ -3460,6 +3705,8 @@ msgstr "Cerca Comandes" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "%d comandes no trobades" @@ -3484,6 +3731,7 @@ msgstr "%d comandes no trobades" #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "Usuari" @@ -3527,6 +3775,8 @@ msgstr "Usuari" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "Nivell de subscripció" @@ -3548,6 +3798,7 @@ msgstr "Nivell de subscripció" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "Pagament" @@ -3560,6 +3811,7 @@ msgstr "Pagament" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "IDs de transacció" @@ -3583,6 +3835,8 @@ msgstr "IDs de transacció" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "esborrat" @@ -3596,6 +3850,7 @@ msgstr "esborrat" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "Subscripció" @@ -3611,6 +3866,7 @@ msgstr "Subscripció" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "Esborra comandes és permanent i pot afectar usuaris actius. Estàs segur que vols esborrar la comanda %s?" @@ -3640,6 +3896,7 @@ msgstr "correu electrònic" #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "No s’han trobat comandes" @@ -3712,6 +3969,7 @@ msgstr "Les següents pàgines han estat creades per a tu" #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "Utilitza les pàgines de WordPress a cadascuna de les pàgines requerides per al Paid Memberships Pro" @@ -3721,6 +3979,7 @@ msgstr "Utilitza les pàgines de WordPress a cadascuna de les pàgines requeride #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "Assigna pàgines al WordPress per cadascuna de les pàgines requerides pel Paid Memberships Pro o" @@ -3730,6 +3989,7 @@ msgstr "Assigna pàgines al WordPress per cadascuna de les pàgines requerides p #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "Clica aquí per permetre’ns generar-les per a tu" @@ -3739,6 +3999,7 @@ msgstr "Clica aquí per permetre’ns generar-les per a tu" #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "Pàgina de Compte" @@ -3785,6 +4046,14 @@ msgstr "Pàgina de Compte" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "Escull-ne un" @@ -3845,6 +4114,16 @@ msgstr "Escull-ne un" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "Edita la pàgina" @@ -3902,6 +4181,15 @@ msgstr "Edita la pàgina" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "Mira la pàgina" @@ -3955,6 +4243,12 @@ msgstr "Mira la pàgina" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "Inclou l’”enllaç” (shortcode)" @@ -3966,6 +4260,7 @@ msgstr "Inclou l’”enllaç” (shortcode)" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "Pàgina d’informació de Facturació" @@ -3977,6 +4272,7 @@ msgstr "Pàgina d’informació de Facturació" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "Cancel·la pàgina" @@ -3988,6 +4284,7 @@ msgstr "Cancel·la pàgina" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "Pàgina de Checkout" @@ -3999,6 +4296,7 @@ msgstr "Pàgina de Checkout" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "Pàgina de Confirmació" @@ -4010,6 +4308,7 @@ msgstr "Pàgina de Confirmació" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "Pàgina de Factura" @@ -4021,6 +4320,7 @@ msgstr "Pàgina de Factura" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "Pàgina de Nivells" @@ -4028,6 +4328,7 @@ msgstr "Pàgina de Nivells" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "Configuració addicional de pàgina" @@ -4041,6 +4342,9 @@ msgstr "Configuració addicional de pàgina" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "Genera pàgina" @@ -4061,6 +4365,7 @@ msgstr "La teva configuració de pagament ha estat actualitzada" #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "Passarela de pagament (Payment Gateway)" @@ -4071,6 +4376,7 @@ msgstr "Passarela de pagament (Payment Gateway)" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "Configuració SSL" @@ -4082,12 +4388,14 @@ msgstr "Aprèn més sobre If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "Stripe no necessita camps d’adreça de facturació. Escull “No” per amagar-los de la pàgina de Checkout.
Si No, assegura’t de desabilitar la verificació de l’adreça a l’escripori de configuració de l’Stripe." @@ -6019,6 +6441,7 @@ msgstr "Per integrar totalment l’Stripe, assegura’t de configurar el teu Web #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "Actualització de subscripcions" @@ -6068,6 +6491,7 @@ msgstr "Actualització de subscripcions, et permet canviar el valor subscripció #: classes/gateways/class.pmprogateway_stripe.php:2653 #: classes/gateways/class.pmprogateway_stripe.php:2649 #: pages/billing.php:441 +#: classes/gateways/class.pmprogateway_stripe.php:3106 msgid "Update" msgstr "Actualitza" @@ -6084,6 +6508,7 @@ msgstr "Actualitza" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "No s’ha pogut cancel·lar l’antiga subscripció. Les actualitzacions no s’han processat." @@ -6132,6 +6557,8 @@ msgstr "Error creant un registre d’usuari amb Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "Error agafant la subscripció amb Stripe:" @@ -6171,6 +6598,8 @@ msgstr "Error agafant la subscripció amb Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "Error creant pla amb Stripe:" @@ -6205,6 +6634,8 @@ msgstr "Error creant pla amb Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "Error subscrivint un pla de comprador amb Stripe:" @@ -6226,6 +6657,7 @@ msgstr "Error subscrivint un pla de comprador amb Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "No s’ha pogut cancel·lar l’antiga subscripció. " @@ -6244,6 +6676,7 @@ msgstr "No s’ha pogut cancel·lar l’antiga subscripció. " #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "No s’ha trobat el comprador." @@ -6255,6 +6688,7 @@ msgstr "No s’ha trobat el comprador." #: paid-memberships-pro.php:125 #: paid-memberships-pro.php:132 #: paid-memberships-pro.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "2Checkout" @@ -6262,24 +6696,28 @@ msgstr "2Checkout" #: classes/gateways/class.pmprogateway_twocheckout.php:108 #: classes/gateways/class.pmprogateway_twocheckout.php:116 #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "Configuració de 2Checkout" #: classes/gateways/class.pmprogateway_twocheckout.php:123 #: classes/gateways/class.pmprogateway_twocheckout.php:125 #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "Vés a Account » User Management in 2Checkout i crea un usuari amb API Access i API Updating." #: classes/gateways/class.pmprogateway_twocheckout.php:132 #: classes/gateways/class.pmprogateway_twocheckout.php:134 #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "Clau per a l’usuari de l’API creada." #: classes/gateways/class.pmprogateway_twocheckout.php:141 #: classes/gateways/class.pmprogateway_twocheckout.php:152 #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "Clica a la icona del perfil a 2Checkout per trobar el teu Account Number." @@ -6289,12 +6727,14 @@ msgstr "Clica a la icona del perfil a 2Checkout per trobar el teu Account Number #: classes/gateways/class.pmprogateway_twocheckout.php:137 #: classes/gateways/class.pmprogateway_twocheckout.php:157 #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "Paraula Secreta" #: classes/gateways/class.pmprogateway_twocheckout.php:150 #: classes/gateways/class.pmprogateway_twocheckout.php:161 #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "Vés a Account » Site Management. Mira sota Checkout Options i troba la Paraula Secreta" @@ -6305,12 +6745,14 @@ msgstr "Vés a Account » Site Management. Mira sota Checkout Options i tro #: classes/gateways/class.pmprogateway_twocheckout.php:145 #: classes/gateways/class.pmprogateway_twocheckout.php:166 #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "TwoCheckout INS URL" #: classes/gateways/class.pmprogateway_twocheckout.php:158 #: classes/gateways/class.pmprogateway_twocheckout.php:169 #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "Per integrar-te totalment amb 2Checkout, assegura’t d’utilitzar la següent INS URL i Approved URL" @@ -6318,6 +6760,7 @@ msgstr "Per integrar-te totalment amb 2Checkout, assegura’t d’utilitzar la s #: classes/gateways/class.pmprogateway_twocheckout.php:192 #: classes/gateways/class.pmprogateway_twocheckout.php:214 #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "Check Out amb 2Checkout" @@ -7298,6 +7741,7 @@ msgstr "i" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "Sign Up per !!name!! Ara" @@ -7344,6 +7788,9 @@ msgstr "Si us plau especifica un ID de Nivell" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "Cap" @@ -7355,6 +7802,7 @@ msgstr "La teva clau (license key) ha estat validada." #: includes/license.php:81 #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "Paid Memberships Pro Support License" @@ -7375,6 +7823,7 @@ msgstr "Visita PMPro
Moltes gràcies! A valid %s license #: adminpages/license.php:59 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "Introdueix license key aquí" @@ -7500,6 +7950,8 @@ msgstr "Nivell actual" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "Sense pagament fet." @@ -7604,6 +8056,9 @@ msgstr "logout" #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "Nivell" @@ -7670,6 +8125,7 @@ msgstr "El pagament de la teva subscripció és gestionat per PayPal. Si us plau #: includes/profile.php:759 #: includes/profile.php:755 #: pages/billing.php:166 +#: includes/profile.php:795 msgid "First Name" msgstr "Nom" @@ -7690,6 +8146,7 @@ msgstr "Nom" #: includes/profile.php:760 #: includes/profile.php:756 #: pages/billing.php:170 +#: includes/profile.php:796 msgid "Last Name" msgstr "Cognoms" @@ -8194,6 +8651,10 @@ msgstr "Factura #%s a %s" #: adminpages/orders.php:391 #: adminpages/orders.php:1424 #: adminpages/orders.php:1434 +#: adminpages/orders.php:439 +#: adminpages/orders.php:1539 +#: adminpages/orders.php:1549 +#: includes/profile.php:473 msgid "Print" msgstr "Imprimeix" @@ -8244,6 +8705,7 @@ msgstr "Mètode de pagament" #: pages/invoice.php:97 #: pages/invoice.php:125 #: includes/profile.php:413 +#: includes/profile.php:453 msgid "Total Billed" msgstr "Total facturat" @@ -8268,6 +8730,7 @@ msgstr "A sota hi ha els detalls del teu compte de subscripció. Un correu elect #: pages/confirmation.php:103 #: pages/confirmation.php:138 #: shortcodes/pmpro_account.php:247 +#: pages/confirmation.php:65 msgid "Pending" msgstr "Pendent" @@ -8295,6 +8758,7 @@ msgstr "Si el teu compte no s’activa en uns minuts, si us plau contacta amb l #: includes/functions.php:2857 #: includes/functions.php:2888 #: includes/functions.php:2910 +#: includes/functions.php:2912 msgid "Coupon" msgstr "Cupó" @@ -8379,6 +8843,7 @@ msgstr "← Torna a la pàgina d’inici" #: paid-memberships-pro.php:157 #: paid-memberships-pro.php:159 #: paid-memberships-pro.php:160 +#: paid-memberships-pro.php:166 msgid "Testing Only" msgstr "Només test" @@ -8390,6 +8855,7 @@ msgstr "Només test" #: paid-memberships-pro.php:162 #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:165 +#: paid-memberships-pro.php:171 msgid "PayPal Payflow Pro/PayPal Pro" msgstr "PayPal Payflow Pro/PayPal Pro" @@ -8401,12 +8867,14 @@ msgstr "PayPal Payflow Pro/PayPal Pro" #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:168 #: paid-memberships-pro.php:169 +#: paid-memberships-pro.php:175 msgid "Cybersource" msgstr "Cybersource" #: paid-memberships-pro.php:156 #: paid-memberships-pro.php:194 #: paid-memberships-pro.php:195 +#: paid-memberships-pro.php:201 msgid "Once a month" msgstr "Un cop al mes" @@ -8524,6 +8992,7 @@ msgstr "Error actualitzant la informació de facturació." #: classes/class.pmproemail.php:907 #: includes/email.php:459 #: classes/class.pmproemail.php:900 +#: classes/class.pmproemail.php:1033 msgid "Your membership has been cancelled." msgstr "La teva subscripció ha estat cancel·lada." @@ -8840,6 +9309,7 @@ msgstr "%s ha cancel·lat la seva subscripció per Stripe. Si us plau, confirma #: pages/account.php:19 #: includes/email-templates.php:68 #: shortcodes/pmpro_account.php:43 +#: adminpages/orders.php:1431 msgid "Billing" msgstr "Facturació" @@ -8894,6 +9364,8 @@ msgstr "Edita el perfil" #: includes/profile.php:921 #: includes/profile.php:880 #: includes/profile.php:917 +#: includes/profile.php:920 +#: includes/profile.php:957 msgid "Change Password" msgstr "Canvia Clau" @@ -8992,6 +9464,8 @@ msgstr "cada" #: includes/profile.php:515 #: includes/profile.php:511 #: adminpages/advancedsettings.php:331 +#: adminpages/advancedsettings.php:338 +#: includes/profile.php:551 msgid "Never" msgstr "Mai" @@ -9176,6 +9650,7 @@ msgstr "El teu primer %d pagament serà de %s." #: pages/account.php:87 #: pages/account.php:91 #: adminpages/emailtemplates.php:156 +#: adminpages/emailtemplates.php:149 msgid "Billing Information" msgstr "Informació de Facturació" @@ -9292,6 +9767,18 @@ msgstr "Configura el teu compte" #: js/blocks.build.js:1342 #: js/blocks.build.js:1502 #: classes/class-pmpro-admin-activity-email.php:349 +#: blocks/account-invoices-section/block.js:47 +#: blocks/account-links-section/block.js:47 +#: blocks/account-membership-section/block.js:45 +#: blocks/account-page/block.js:72 +#: blocks/account-profile-section/block.js:45 +#: blocks/billing-page/block.js:44 +#: blocks/cancel-page/block.js:44 +#: blocks/checkout-page/block.js:58 +#: blocks/confirmation-page/block.js:46 +#: blocks/invoice-page/block.js:45 +#: blocks/levels-page/block.js:44 +#: blocks/member-profile-edit/block.js:37 msgid "Paid Memberships Pro" msgstr "" @@ -9337,6 +9824,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:76 #: classes/gateways/class.pmprogateway_stripe.php:82 #: classes/gateways/class.pmprogateway_stripe.php:1338 +#: classes/gateways/class.pmprogateway_stripe.php:1463 msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade." msgstr "" @@ -9377,6 +9865,7 @@ msgstr "" #: includes/adminpages.php:52 #: includes/adminpages.php:158 #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Members" msgstr "" @@ -9421,41 +9910,49 @@ msgstr "" #: adminpages/advancedsettings.php:106 #: includes/updates/upgrade_1.php:7 #: adminpages/advancedsettings.php:108 +#: adminpages/advancedsettings.php:116 msgid "This content is for !!levels!! members only.
Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -9463,93 +9960,111 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -9575,6 +10090,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -9645,6 +10161,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -9750,6 +10267,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -9788,6 +10306,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -9800,31 +10319,39 @@ msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 msgid "%d discount codes found." msgstr "" @@ -9850,6 +10377,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -9868,6 +10402,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -9876,15 +10416,18 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -9925,192 +10468,241 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:960 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:170 #: includes/privacy.php:363 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -10128,6 +10720,7 @@ msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -10135,14 +10728,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -10159,27 +10755,34 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -10189,6 +10792,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -10196,6 +10801,7 @@ msgstr "" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -10203,6 +10809,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -10210,6 +10817,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -10217,6 +10825,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -10224,6 +10833,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -10231,6 +10841,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -10269,78 +10880,91 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -10350,12 +10974,15 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -10363,18 +10990,21 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" @@ -10384,11 +11014,13 @@ msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" @@ -10398,6 +11030,7 @@ msgstr "" #: adminpages/paymentsettings.php:260 #: adminpages/paymentsettings.php:273 +#: adminpages/paymentsettings.php:271 msgid "Your Site URL starts with https:// and so PMPro will allow your entire site to be served over HTTPS." msgstr "" @@ -10429,6 +11062,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -10439,6 +11073,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -10481,21 +11116,25 @@ msgid "Logins This Year" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -10654,51 +11293,63 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:962 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -10711,6 +11362,8 @@ msgstr "" #: includes/email.php:465 #: classes/class.pmproemail.php:898 #: classes/class.pmproemail.php:943 +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 msgid "The new level is %s." msgstr "" @@ -10723,30 +11376,36 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -10758,14 +11417,17 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:91 #: classes/gateways/class.pmprogateway_stripe.php:97 #: classes/gateways/class.pmprogateway_stripe.php:1353 +#: classes/gateways/class.pmprogateway_stripe.php:1478 msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" @@ -10779,21 +11441,30 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:750 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -10801,11 +11472,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -11083,17 +11757,20 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:185 #: classes/gateways/class.pmprogateway_paypalexpress.php:194 #: classes/gateways/class.pmprogateway_paypalexpress.php:204 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 msgid "Confirmation Step" msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -11102,6 +11779,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -11110,6 +11788,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -11125,6 +11804,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -11133,6 +11813,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -11144,6 +11825,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -11155,6 +11837,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -11166,6 +11849,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -11174,6 +11858,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -11185,6 +11870,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -11196,6 +11882,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -11204,6 +11891,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -11215,6 +11903,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -11223,6 +11912,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -11246,6 +11936,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -11262,6 +11954,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -11270,6 +11964,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -11278,6 +11973,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -11286,6 +11982,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -11293,6 +11990,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -11301,6 +11999,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -11314,6 +12013,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -11322,6 +12023,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -11330,6 +12032,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -11339,6 +12042,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -11356,6 +12061,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -11364,6 +12071,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -11385,6 +12093,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -11393,6 +12103,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -11401,6 +12112,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -11409,6 +12121,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -11417,6 +12130,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -11425,6 +12139,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -11433,6 +12148,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -11441,6 +12157,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -11449,6 +12166,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -11457,6 +12175,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -11465,6 +12184,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -11477,6 +12197,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -11485,6 +12206,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -11493,6 +12215,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -11501,6 +12224,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -11509,6 +12233,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -11552,6 +12277,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "" @@ -11563,6 +12290,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 msgid "Error: Unkown error while refunding charge #%s" msgstr "" @@ -11572,6 +12300,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -11592,6 +12321,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -11600,6 +12333,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -11609,6 +12343,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -11618,6 +12353,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -11629,6 +12365,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -11640,6 +12377,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -11651,6 +12389,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -11662,6 +12401,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" @@ -11696,6 +12436,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -11708,6 +12449,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -11720,6 +12462,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -13510,14 +14253,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -13526,18 +14272,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -13549,6 +14299,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -13681,6 +14432,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -13794,6 +14546,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -13801,6 +14554,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -13832,6 +14586,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -13841,6 +14596,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -13848,6 +14604,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -13947,6 +14704,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -13954,6 +14713,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -13961,6 +14721,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -13968,6 +14729,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -14039,126 +14801,148 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -14170,6 +14954,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -14267,6 +15054,7 @@ msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -14292,6 +15080,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -14330,6 +15119,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -14345,6 +15149,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -14360,6 +15165,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -14392,6 +15198,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -14404,6 +15211,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -14429,11 +15237,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -14441,6 +15254,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -14448,6 +15262,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -14470,6 +15285,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -14495,6 +15311,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -14502,6 +15319,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -14534,6 +15352,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -14556,6 +15375,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -14566,11 +15386,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -14590,6 +15421,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -14603,6 +15435,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -14612,6 +15445,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -14621,10 +15455,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -14635,6 +15471,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -14642,6 +15479,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -14651,6 +15489,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -14660,12 +15499,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -14673,6 +15515,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -14681,6 +15525,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -14688,6 +15533,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -14695,22 +15541,26 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -14768,12 +15618,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -14783,6 +15635,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -14792,6 +15645,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -14801,54 +15655,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -14859,42 +15723,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -14909,51 +15783,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -14961,6 +15847,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -14968,6 +15855,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -14975,6 +15863,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -14983,6 +15872,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -14996,6 +15887,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -15016,19 +15908,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -15038,31 +15934,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -15088,21 +15992,25 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" @@ -15172,26 +16080,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -15200,51 +16114,62 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -15258,19 +16183,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -15301,3 +16230,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-cs_CZ.mo b/languages/paid-memberships-pro-cs_CZ.mo index 236335d19..8f0155a00 100644 Binary files a/languages/paid-memberships-pro-cs_CZ.mo and b/languages/paid-memberships-pro-cs_CZ.mo differ diff --git a/languages/paid-memberships-pro-cs_CZ.po b/languages/paid-memberships-pro-cs_CZ.po index 7d6b13465..5554741c7 100644 --- a/languages/paid-memberships-pro-cs_CZ.po +++ b/languages/paid-memberships-pro-cs_CZ.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:20:14+00:00\n" +"POT-Creation-Date: 2022-05-05T20:37:03+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -202,6 +202,11 @@ msgstr "Platební brána & SSL" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "E-mail" @@ -230,6 +235,7 @@ msgstr "Doplňky" #: adminpages/advancedsettings.php:42 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "Vaše rozšířená nastavení byla aktualizována." @@ -250,6 +256,7 @@ msgstr "Pro zobrazení tohoto obsahu se prosím přihlaste. ( #: adminpages/advancedsettings.php:116 #: includes/updates/upgrade_1.php:13 #: adminpages/advancedsettings.php:118 +#: adminpages/advancedsettings.php:126 msgid "This content is for members only. Visit the site and log in/register to read." msgstr "Tento obsah je určen pouze pro členy. Pro jeho čtení navštivte stránky a přihlaste se/zaregistrujte se." @@ -265,6 +272,7 @@ msgstr "Tento obsah je určen pouze pro členy. Pro jeho čtení navštivte str #: adminpages/advancedsettings.php:132 #: includes/adminpages.php:73 #: adminpages/advancedsettings.php:134 +#: adminpages/advancedsettings.php:142 msgid "Advanced Settings" msgstr "Rozšířená nastavení" @@ -273,6 +281,7 @@ msgstr "Rozšířená nastavení" #: adminpages/advancedsettings.php:92 #: adminpages/advancedsettings.php:164 #: adminpages/advancedsettings.php:166 +#: adminpages/advancedsettings.php:173 msgid "Message for Logged-in Non-members" msgstr "Zpráva pro přihlášené nečleny" @@ -281,6 +290,7 @@ msgstr "Zpráva pro přihlášené nečleny" #: adminpages/advancedsettings.php:96 #: adminpages/advancedsettings.php:168 #: adminpages/advancedsettings.php:170 +#: adminpages/advancedsettings.php:177 msgid "This message replaces the post content for non-members. Available variables" msgstr "Tato zpráva nahrazuje obsah příspěvku pro nečleny. Dostupné proměnné" @@ -289,6 +299,7 @@ msgstr "Tato zpráva nahrazuje obsah příspěvku pro nečleny. Dostupné promě #: adminpages/advancedsettings.php:101 #: adminpages/advancedsettings.php:173 #: adminpages/advancedsettings.php:175 +#: adminpages/advancedsettings.php:182 msgid "Message for Logged-out Users" msgstr "Zpráva pro odhlášené uživatele" @@ -297,6 +308,7 @@ msgstr "Zpráva pro odhlášené uživatele" #: adminpages/advancedsettings.php:105 #: adminpages/advancedsettings.php:177 #: adminpages/advancedsettings.php:179 +#: adminpages/advancedsettings.php:186 msgid "This message replaces the post content for logged-out visitors." msgstr "Tato zpráva nahrazuje obsah příspěvku pro nepřihlášené návštěvníky." @@ -305,6 +317,7 @@ msgstr "Tato zpráva nahrazuje obsah příspěvku pro nepřihlášené návště #: adminpages/advancedsettings.php:110 #: adminpages/advancedsettings.php:182 #: adminpages/advancedsettings.php:184 +#: adminpages/advancedsettings.php:191 msgid "Message for RSS Feed" msgstr "Zpráva pro RSS Feed" @@ -313,24 +326,28 @@ msgstr "Zpráva pro RSS Feed" #: adminpages/advancedsettings.php:114 #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "This message replaces the post content in RSS feeds." msgstr "Tato zpráva nahrazuje obsah příspěvku v RSS feedech." #: adminpages/advancedsettings.php:122 #: adminpages/advancedsettings.php:199 #: adminpages/advancedsettings.php:201 +#: adminpages/advancedsettings.php:208 msgid "Filter searches and archives?" msgstr "Filtrovat vyhledávání a archivy?" #: adminpages/advancedsettings.php:126 #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:205 +#: adminpages/advancedsettings.php:212 msgid "No - Non-members will see restricted posts/pages in searches and archives." msgstr "Ne - Nečlenové uvidí omezené příspěvky/stránky v hledání a archivech." #: adminpages/advancedsettings.php:127 #: adminpages/advancedsettings.php:204 #: adminpages/advancedsettings.php:206 +#: adminpages/advancedsettings.php:213 msgid "Yes - Only members will see restricted posts/pages in searches and archives." msgstr "Ano - Pouze členové uvidí omezené příspěvky/stránky v hledání a archivech." @@ -339,6 +356,7 @@ msgstr "Ano - Pouze členové uvidí omezené příspěvky/stránky v hledání #: adminpages/advancedsettings.php:120 #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:212 +#: adminpages/advancedsettings.php:219 msgid "Show Excerpts to Non-Members?" msgstr "Zobrazit ukázky pro nečleny?" @@ -347,6 +365,7 @@ msgstr "Zobrazit ukázky pro nečleny?" #: adminpages/advancedsettings.php:124 #: adminpages/advancedsettings.php:214 #: adminpages/advancedsettings.php:216 +#: adminpages/advancedsettings.php:223 msgid "No - Hide excerpts." msgstr "Ne - Skrýt výňatky." @@ -355,6 +374,7 @@ msgstr "Ne - Skrýt výňatky." #: adminpages/advancedsettings.php:125 #: adminpages/advancedsettings.php:215 #: adminpages/advancedsettings.php:217 +#: adminpages/advancedsettings.php:224 msgid "Yes - Show excerpts." msgstr "Ano - Ukázat výňatky." @@ -413,6 +433,16 @@ msgstr "Ano - Ukázat výňatky." #: classes/gateways/class.pmprogateway_stripe.php:404 #: classes/gateways/class.pmprogateway_stripe.php:418 #: adminpages/paymentsettings.php:279 +#: adminpages/advancedsettings.php:254 +#: adminpages/advancedsettings.php:267 +#: adminpages/advancedsettings.php:359 +#: adminpages/advancedsettings.php:418 +#: adminpages/advancedsettings.php:526 +#: adminpages/membershiplevels.php:939 +#: adminpages/paymentsettings.php:277 +#: classes/gateways/class.pmprogateway_stripe.php:430 +#: classes/gateways/class.pmprogateway_stripe.php:444 +#: includes/profile.php:78 msgid "No" msgstr "Ne" @@ -421,6 +451,7 @@ msgstr "Ne" #: adminpages/advancedsettings.php:136 #: adminpages/advancedsettings.php:338 #: adminpages/advancedsettings.php:353 +#: adminpages/advancedsettings.php:360 msgid "Hide Ads From All Members" msgstr "Skrýt reklamy všem členům" @@ -429,6 +460,7 @@ msgstr "Skrýt reklamy všem členům" #: adminpages/advancedsettings.php:137 #: adminpages/advancedsettings.php:339 #: adminpages/advancedsettings.php:354 +#: adminpages/advancedsettings.php:361 msgid "Hide Ads From Certain Members" msgstr "Skrýt reklamy některým členům" @@ -443,6 +475,7 @@ msgstr "Reklama z následujících pluginů bude automaticky vypnuta" #: adminpages/advancedsettings.php:145 #: adminpages/advancedsettings.php:346 #: adminpages/advancedsettings.php:361 +#: adminpages/advancedsettings.php:368 msgid "To hide ads in your template code, use code like the following" msgstr "Chcete-li skrýt reklamy ve vašem kódu šablony, použijte následující kód" @@ -451,6 +484,7 @@ msgstr "Chcete-li skrýt reklamy ve vašem kódu šablony, použijte následují #: adminpages/advancedsettings.php:156 #: adminpages/advancedsettings.php:355 #: adminpages/advancedsettings.php:370 +#: adminpages/advancedsettings.php:377 msgid "Choose Levels to Hide Ads From" msgstr "Zvolte úrovně pro skrytí reklam" @@ -469,6 +503,7 @@ msgstr "Přesměrovat veškerý provoz z registrační stránky na /subscription #: adminpages/advancedsettings.php:390 #: adminpages/advancedsettings.php:392 #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "multisite only" msgstr "Pouze pro multisite" @@ -516,6 +551,12 @@ msgstr "Pouze pro multisite" #: classes/gateways/class.pmprogateway_stripe.php:406 #: classes/gateways/class.pmprogateway_stripe.php:420 #: adminpages/paymentsettings.php:280 +#: adminpages/advancedsettings.php:419 +#: adminpages/membershiplevels.php:934 +#: adminpages/paymentsettings.php:278 +#: classes/gateways/class.pmprogateway_stripe.php:432 +#: classes/gateways/class.pmprogateway_stripe.php:446 +#: includes/profile.php:79 msgid "Yes" msgstr "Ano" @@ -524,6 +565,7 @@ msgstr "Ano" #: adminpages/advancedsettings.php:202 #: adminpages/advancedsettings.php:241 #: adminpages/advancedsettings.php:256 +#: adminpages/advancedsettings.php:263 msgid "Use reCAPTCHA?" msgstr "Použít reCAPTCHU?" @@ -539,6 +581,7 @@ msgstr "Ano - Pouze členství zdarma." #: adminpages/advancedsettings.php:208 #: adminpages/advancedsettings.php:247 #: adminpages/advancedsettings.php:262 +#: adminpages/advancedsettings.php:269 msgid "Yes - All memberships." msgstr "Ano - Všechna členství." @@ -547,6 +590,7 @@ msgstr "Ano - Všechna členství." #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "A free reCAPTCHA key is required." msgstr "Je vyžadován bezplatný reCAPTCHA klíč." @@ -555,6 +599,7 @@ msgstr "Je vyžadován bezplatný reCAPTCHA klíč." #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "Click here to signup for reCAPTCHA" msgstr "Klikněte zde pro registraci reCAPTCHA" @@ -610,6 +655,9 @@ msgstr "vybráno" #: adminpages/pagesettings.php:508 #: adminpages/pagesettings.php:512 #: adminpages/paymentsettings.php:316 +#: adminpages/advancedsettings.php:574 +#: adminpages/pagesettings.php:511 +#: adminpages/paymentsettings.php:314 msgid "Save Settings" msgstr "Uložit nastavení" @@ -685,6 +733,7 @@ msgstr "Chyba při mazání kódu. Zkuste to znovu." #: adminpages/discountcodes.php:796 #: adminpages/discountcodes.php:354 #: adminpages/discountcodes.php:798 +#: adminpages/discountcodes.php:799 msgid "Code not found." msgstr "Kód nenalezen." @@ -707,6 +756,7 @@ msgstr "Upravit slevový kód" #: adminpages/discountcodes.php:735 #: adminpages/discountcodes.php:377 #: adminpages/discountcodes.php:737 +#: adminpages/discountcodes.php:738 msgid "Add New Discount Code" msgstr "Vložit nový slevový kód" @@ -747,6 +797,8 @@ msgstr "Vložit nový slevový kód" #: adminpages/reports/login.php:182 #: adminpages/templates/orders-email.php:49 #: adminpages/templates/orders-print.php:78 +#: adminpages/membershiplevels.php:345 +#: adminpages/membershiplevels.php:805 msgid "ID" msgstr "ID" @@ -788,6 +840,9 @@ msgstr "Toto bude vygenerováno při uložení." #: adminpages/dashboard.php:292 #: adminpages/orders.php:429 #: adminpages/orders.php:1333 +#: adminpages/discountcodes.php:787 +#: adminpages/orders.php:475 +#: adminpages/orders.php:1426 msgid "Code" msgstr "Kód" @@ -801,6 +856,7 @@ msgstr "Kód" #: adminpages/discountcodes.php:489 #: includes/profile.php:501 #: includes/profile.php:497 +#: includes/profile.php:537 msgid "Start Date" msgstr "Počáteční datum" @@ -827,6 +883,8 @@ msgstr "Počáteční datum" #: classes/gateways/class.pmprogateway_stripe.php:1326 #: classes/gateways/class.pmprogateway_stripe.php:785 #: pages/billing.php:381 +#: classes/gateways/class.pmprogateway_braintree.php:486 +#: classes/gateways/class.pmprogateway_stripe.php:893 msgid "Expiration Date" msgstr "Datum vypršení" @@ -841,6 +899,7 @@ msgstr "Datum vypršení" #: adminpages/discountcodes.php:787 #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:789 +#: adminpages/discountcodes.php:790 msgid "Uses" msgstr "Použití" @@ -872,6 +931,7 @@ msgstr "Jakých úrovní se bude tento kód týkat?" #: adminpages/discountcodes.php:574 #: adminpages/membershiplevels.php:401 #: adminpages/discountcodes.php:576 +#: adminpages/membershiplevels.php:399 msgid "Initial Payment" msgstr "Počáteční platba" @@ -885,6 +945,7 @@ msgstr "Počáteční platba" #: adminpages/discountcodes.php:585 #: adminpages/membershiplevels.php:412 #: adminpages/discountcodes.php:587 +#: adminpages/membershiplevels.php:410 msgid "The initial amount collected at registration." msgstr "Počáteční částka získaná při registraci." @@ -898,6 +959,7 @@ msgstr "Počáteční částka získaná při registraci." #: adminpages/discountcodes.php:590 #: adminpages/membershiplevels.php:417 #: adminpages/discountcodes.php:592 +#: adminpages/membershiplevels.php:415 msgid "Recurring Subscription" msgstr "Opakující se předplatné" @@ -911,6 +973,7 @@ msgstr "Opakující se předplatné" #: adminpages/discountcodes.php:591 #: adminpages/membershiplevels.php:418 #: adminpages/discountcodes.php:593 +#: adminpages/membershiplevels.php:416 msgid "Check if this level has a recurring subscription payment." msgstr "Zatrhněte, pokud má tato úroveň opakující se platbu předplatného." @@ -923,6 +986,7 @@ msgstr "Zatrhněte, pokud má tato úroveň opakující se platbu předplatného #: adminpages/discountcodes.php:595 #: adminpages/membershiplevels.php:422 #: adminpages/discountcodes.php:597 +#: adminpages/membershiplevels.php:420 msgid "Billing Amount" msgstr "Vyfakturovaná částka" @@ -953,6 +1017,10 @@ msgstr "Vyfakturovaná částka" #: classes/gateways/class.pmprogateway_stripe.php:2637 #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2635 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3092 msgid "Day(s)" msgstr "den(y)" @@ -983,6 +1051,10 @@ msgstr "den(y)" #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2641 #: classes/gateways/class.pmprogateway_stripe.php:2637 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3094 msgid "Month(s)" msgstr "měsíc(e)" @@ -1013,6 +1085,10 @@ msgstr "měsíc(e)" #: classes/gateways/class.pmprogateway_stripe.php:2638 #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2636 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3093 msgid "Week(s)" msgstr "týden(y)" @@ -1043,6 +1119,10 @@ msgstr "týden(y)" #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2642 #: classes/gateways/class.pmprogateway_stripe.php:2638 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3095 msgid "Year(s)" msgstr "rok(y)" @@ -1056,6 +1136,7 @@ msgstr "rok(y)" #: adminpages/discountcodes.php:618 #: adminpages/membershiplevels.php:446 #: adminpages/discountcodes.php:620 +#: adminpages/membershiplevels.php:444 msgid "The amount to be billed one cycle after the initial payment." msgstr "Částka, která má být účtována pro jeden cyklus po počáteční platbě." @@ -1069,6 +1150,7 @@ msgstr "Částka, která má být účtována pro jeden cyklus po počáteční #: adminpages/discountcodes.php:628 #: adminpages/membershiplevels.php:465 #: adminpages/discountcodes.php:630 +#: adminpages/membershiplevels.php:463 msgid "Billing Cycle Limit" msgstr "Limit fakturačního cyklu" @@ -1082,6 +1164,7 @@ msgstr "Limit fakturačního cyklu" #: adminpages/discountcodes.php:632 #: adminpages/membershiplevels.php:469 #: adminpages/discountcodes.php:634 +#: adminpages/membershiplevels.php:467 msgid "The total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "Počet všech opakujících se fakturačních cyklů pro tuto úroveň, včetně zkušební doby (pokud existuje), ale ne včetně počáteční platby. Nastavit na nulu, pokud je členství na dobu neurčitou." @@ -1095,6 +1178,8 @@ msgstr "Počet všech opakujících se fakturačních cyklů pr #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "Vlastní zkušební doba" @@ -1109,6 +1194,8 @@ msgstr "Vlastní zkušební doba" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "Zatrhněte pro přidání vlastní zkušební doby." @@ -1123,6 +1210,7 @@ msgstr "Zatrhněte pro přidání vlastní zkušební doby." #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "Částka fakturace zkušební doby" @@ -1137,6 +1225,7 @@ msgstr "Částka fakturace zkušební doby" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "pro první" @@ -1151,6 +1240,7 @@ msgstr "pro první" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "platby předplatného" @@ -1166,6 +1256,7 @@ msgstr "platby předplatného" #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "Vypršení členství" @@ -1180,6 +1271,7 @@ msgstr "Vypršení členství" #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "Zatrhněte pro nastavení, kdy přístup ke členství vyprší." @@ -1196,6 +1288,8 @@ msgstr "Zatrhněte pro nastavení, kdy přístup ke členství vyprší." #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "Vyprší za" @@ -1210,6 +1304,8 @@ msgstr "Vyprší za" #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "Nastavte dobu trvání přístupu ke členství. Vezměte na vědomí, že všechny budoucí platby (opakující se předplatné, pokud existuje) budou zrušeny, pokud členství vyprší." @@ -1219,6 +1315,7 @@ msgstr "Nastavte dobu trvání přístupu ke členství. Vezměte na vědomí, #: adminpages/discountcodes.php:556 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "Slevové kódy členství" @@ -1228,6 +1325,7 @@ msgstr "Slevové kódy členství" #: adminpages/discountcodes.php:566 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "Hledat slevové kódy" @@ -1238,6 +1336,7 @@ msgstr "Hledat slevové kódy" #: adminpages/discountcodes.php:569 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "Hledat" @@ -1247,6 +1346,7 @@ msgstr "Hledat" #: adminpages/discountcodes.php:587 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "Začíná" @@ -1271,6 +1371,8 @@ msgstr "Začíná" #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "Vyprší" @@ -1281,6 +1383,7 @@ msgstr "Vyprší" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "Úrovně" @@ -1315,6 +1418,7 @@ msgstr "Slevové kódy vám umožňují nabízet vaše členství vybraným zák #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "upravit" @@ -1361,6 +1465,7 @@ msgstr "Nastavení e-mailu" #: adminpages/emailsettings.php:70 #: adminpages/emailsettings.php:61 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "Ve výchozím nastavení jsou systémem generovené e-maily odesílány z wordpress@yourdomain.com. Můžete tuto adresu aktualizovat pomocí níže uvedených polí." @@ -1372,17 +1477,20 @@ msgstr "Chcete-li změnit vzhled systémem generovaných e-mailů, přidejte sou #: adminpages/emailsettings.php:78 #: adminpages/emailsettings.php:69 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "E-mail odesílatele" #: adminpages/emailsettings.php:86 #: adminpages/emailsettings.php:77 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "Jméno odesílatele" #: adminpages/emailsettings.php:94 #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "Filtrovat jen PMPro e-maily?" @@ -1538,6 +1646,8 @@ msgstr "Přidat novou úroveň členství" #: adminpages/reports/history.php:184 #: adminpages/reports/login.php:181 #: adminpages/reports/login.php:184 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 msgid "Name" msgstr "Jméno" @@ -1545,12 +1655,14 @@ msgstr "Jméno" #: adminpages/membershiplevels.php:296 #: adminpages/addons.php:111 #: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "Popis" #: adminpages/membershiplevels.php:316 #: adminpages/membershiplevels.php:314 #: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "Potvrzovací zpráva" @@ -1559,6 +1671,8 @@ msgstr "Potvrzovací zpráva" #: adminpages/membershiplevels.php:333 #: adminpages/membershiplevels.php:397 #: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "Fakturační údaje" @@ -1577,6 +1691,8 @@ msgstr "Fakturační údaje" #: classes/gateways/class.pmprogateway_stripe.php:2696 #: classes/gateways/class.pmprogateway_stripe.php:2698 #: classes/gateways/class.pmprogateway_stripe.php:2694 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "na" @@ -1591,6 +1707,7 @@ msgstr "Integrace Stripe v současné době podporuje pouze fakturační období #: adminpages/discountcodes.php:620 #: adminpages/membershiplevels.php:448 #: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:446 msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." msgstr "Integrace Braintree v současné době podporuje pouze fakturační období \"Month\" nebo \"Year\"." @@ -1604,6 +1721,7 @@ msgstr "Integrace Payflow v současné době podporuje pouze frekvenci fakturace #: adminpages/membershiplevels.php:372 #: adminpages/membershiplevels.php:374 #: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." msgstr "Po uložení této úrovně si poznamenejte ID a vytvořte \"Plan\" ve vašem ovládacím panelu Braintree se stejným nastavením a \"Plan ID\" nastavte na pmpro_#, kde # je úroveň ID." @@ -1622,6 +1740,8 @@ msgstr "Po uložení této úrovně si poznamenejte ID a vytvořte \"Plan\" ve v #: adminpages/membershiplevels.php:454 #: adminpages/membershiplevels.php:459 #: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 msgid "Note" msgstr "Poznámka" @@ -1637,6 +1757,7 @@ msgstr "Budete muset vytvořit \"Plan\" v Braintree nástěnce se stejným nasta #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "Integrace Stripe v současné době nepodporuje fakturační limity. Přesto můžete nastavit datum vypršení platnosti níže." @@ -1646,6 +1767,8 @@ msgstr "Integrace Stripe v současné době nepodporuje fakturační limity. Př #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "Integrace 2Checkout nepodporuje vlastní zkušební dobu. Můžete vytvořit jednorázové zkušební doby nastavením počáteční platby, která se liší od fakturované částky." @@ -1656,6 +1779,7 @@ msgstr "Integrace 2Checkout nepodporuje vlastní zkušební dobu. Můžete vytvo #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "Integrace Stripe v současné době nepodporuje částku zkušební doby vyšší než 0 Kč." @@ -1666,6 +1790,7 @@ msgstr "Integrace Stripe v současné době nepodporuje částku zkušební doby #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "Integrace Braintree v současné době nepodporuje částku zkušební doby vyšší než 0 Kč." @@ -1676,6 +1801,7 @@ msgstr "Integrace Braintree v současné době nepodporuje částku zkušební d #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "Integrace Payflow v současné době nepodporuje částku zkušební doby než 0 Kč." @@ -1688,6 +1814,7 @@ msgstr "Integrace Payflow v současné době nepodporuje částku zkušební dob #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "Další nastavení" @@ -1717,6 +1844,8 @@ msgstr "Zatrhněte pro skrytí této úrovně ze stránky úrovně členství a #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "Nastavení obsahu" @@ -1726,6 +1855,7 @@ msgstr "Nastavení obsahu" #: adminpages/membershiplevels.php:469 #: adminpages/membershiplevels.php:496 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "Kategorie" @@ -1771,6 +1901,8 @@ msgstr "Najít úrovně" #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "Vypršení" @@ -1780,6 +1912,7 @@ msgstr "Vypršení" #: adminpages/membershiplevels.php:519 #: adminpages/membershiplevels.php:546 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "Povolit registraci" @@ -1790,6 +1923,7 @@ msgstr "Povolit registraci" #: adminpages/membershiplevels.php:569 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "ZDARMA" @@ -1800,6 +1934,7 @@ msgstr "ZDARMA" #: adminpages/membershiplevels.php:595 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "Po" @@ -1833,6 +1968,7 @@ msgstr "kopírovat" #: includes/adminpages.php:74 #: includes/adminpages.php:142 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "Seznam členů" @@ -1844,6 +1980,8 @@ msgstr "Seznam členů" #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "Exportovat do CSV" @@ -1866,6 +2004,8 @@ msgstr "Exportovat do CSV" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "Ukaž" @@ -1889,6 +2029,8 @@ msgstr "Ukaž" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "Všechny úrovně" @@ -1932,6 +2074,8 @@ msgstr "Starší členové" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "Prohledat členy" @@ -1963,6 +2107,8 @@ msgstr "%d členů nalezeno" #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "Uživatelské jméno" @@ -1999,6 +2145,7 @@ msgstr "Příjmení" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "Fakturační adresa" @@ -2083,6 +2230,7 @@ msgstr "Chyba při odstraňování objednávky." #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "Objednávka byla úspěšně uložena." @@ -2096,6 +2244,7 @@ msgstr "Chyba při aktualizaci časového razítka objednávky." #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "Chyba při ukládání objednávky." @@ -2107,6 +2256,7 @@ msgstr "Chyba při ukládání objednávky." #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "Objednávka" @@ -2115,6 +2265,7 @@ msgstr "Objednávka" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "Nová objednávka" @@ -2123,6 +2274,7 @@ msgstr "Nová objednávka" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "Náhodně generované pro vás." @@ -2131,6 +2283,7 @@ msgstr "Náhodně generované pro vás." #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "Uživatelské ID" @@ -2140,6 +2293,8 @@ msgstr "Uživatelské ID" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "ID členské úrovně" @@ -2149,6 +2304,7 @@ msgstr "ID členské úrovně" #: includes/privacy.php:245 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "Fakturační jméno" @@ -2158,6 +2314,7 @@ msgstr "Fakturační jméno" #: includes/privacy.php:249 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "Fakturační ulice" @@ -2168,6 +2325,7 @@ msgstr "Fakturační ulice" #: includes/privacy.php:358 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "Fakturační město" @@ -2177,6 +2335,7 @@ msgstr "Fakturační město" #: includes/privacy.php:257 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "Fakturační kraj" @@ -2188,6 +2347,7 @@ msgstr "Fakturační kraj" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "Fakturační PSČ" @@ -2199,6 +2359,7 @@ msgstr "Fakturační PSČ" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "Fakturační země" @@ -2209,6 +2370,7 @@ msgstr "Fakturační země" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "Fakturační telefon" @@ -2219,6 +2381,7 @@ msgstr "Fakturační telefon" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "Mezisoučet" @@ -2234,6 +2397,8 @@ msgstr "Mezisoučet" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "Daň" @@ -2244,6 +2409,7 @@ msgstr "Daň" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "Sleva" @@ -2268,6 +2434,9 @@ msgstr "Sleva" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "Celkem" @@ -2283,6 +2452,7 @@ msgstr "Částka by měla obsahovat mezisoučet + daň - sleva." #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "Typ platby" @@ -2292,6 +2462,7 @@ msgstr "Typ platby" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "např. PayPal Express, PayPal Standard, platební karta." @@ -2319,6 +2490,9 @@ msgstr "např. PayPal Express, PayPal Standard, platební karta." #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "Typ karty" @@ -2328,6 +2502,7 @@ msgstr "Typ karty" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "Například Visa, MasterCard, AMEX, atd." @@ -2342,6 +2517,8 @@ msgstr "Například Visa, MasterCard, AMEX, atd." #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "Číslo účtu" @@ -2350,6 +2527,7 @@ msgstr "Číslo účtu" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "Všechno skryté až na poslední 4 číslice." @@ -2362,6 +2540,7 @@ msgstr "Všechno skryté až na poslední 4 číslice." #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "Měsíc expirace" @@ -2397,6 +2576,10 @@ msgstr "Rok expirace" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "Stav" @@ -2414,6 +2597,9 @@ msgstr "Stav" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "Brána" @@ -2430,6 +2616,8 @@ msgstr "Brána" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "Prostředí brány" @@ -2449,6 +2637,9 @@ msgstr "Prostředí brány" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "Sandbox/testování" @@ -2468,6 +2659,9 @@ msgstr "Sandbox/testování" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "Ostré/produkční" @@ -2478,6 +2672,7 @@ msgstr "Ostré/produkční" #: includes/privacy.php:321 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "ID platební transakce" @@ -2487,6 +2682,7 @@ msgstr "ID platební transakce" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "Generováno platební bránou. Užitečné pro spárování objednávek." @@ -2499,6 +2695,8 @@ msgstr "Generováno platební bránou. Užitečné pro spárování objednávek. #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "ID transakce předplatného" @@ -2509,6 +2707,7 @@ msgstr "ID transakce předplatného" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "Generováno platební bránou. Užitečné pro spárování předplatného." @@ -2535,6 +2734,8 @@ msgstr "Generováno platební bránou. Užitečné pro spárování předplatné #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "Datum" @@ -2544,6 +2745,7 @@ msgstr "Datum" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "Partnerské ID" @@ -2553,6 +2755,7 @@ msgstr "Partnerské ID" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "Partnerské SubID" @@ -2562,6 +2765,7 @@ msgstr "Partnerské SubID" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "Poznámky" @@ -2571,6 +2775,7 @@ msgstr "Poznámky" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "Uložit objednávku" @@ -2599,6 +2804,11 @@ msgstr "Uložit objednávku" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "Zrušit" @@ -2621,6 +2831,8 @@ msgstr "Zrušit" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "Objednávky" @@ -2630,6 +2842,7 @@ msgstr "Objednávky" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "Vložit novou objednávku" @@ -2640,6 +2853,7 @@ msgstr "Vložit novou objednávku" #: adminpages/orders.php:1014 #: includes/metaboxes.php:19 #: adminpages/orders.php:1015 +#: adminpages/orders.php:1103 msgid "All" msgstr "Vše" @@ -2648,6 +2862,7 @@ msgstr "Vše" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "V časovém období" @@ -2656,6 +2871,7 @@ msgstr "V časovém období" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "Předdefinované období" @@ -2664,6 +2880,7 @@ msgstr "Předdefinované období" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "V rámci úrovně" @@ -2672,6 +2889,7 @@ msgstr "V rámci úrovně" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "V rámci stavu" @@ -2680,6 +2898,7 @@ msgstr "V rámci stavu" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "Od" @@ -2688,6 +2907,7 @@ msgstr "Od" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "Do" @@ -2696,6 +2916,7 @@ msgstr "Do" #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "filtrovat podle" @@ -2704,6 +2925,7 @@ msgstr "filtrovat podle" #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "Filtrovat" @@ -2719,6 +2941,8 @@ msgstr "Filtrovat" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "Hledat objednávky" @@ -2728,6 +2952,8 @@ msgstr "Hledat objednávky" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "%d objednávek nalezeno." @@ -2747,6 +2973,7 @@ msgstr "%d objednávek nalezeno." #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "Uživatel" @@ -2782,6 +3009,8 @@ msgstr "Uživatel" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "Úroveň členství" @@ -2798,6 +3027,7 @@ msgstr "Úroveň členství" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "Platba" @@ -2807,6 +3037,7 @@ msgstr "Platba" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "ID transakce" @@ -2827,6 +3058,8 @@ msgstr "ID transakce" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "smazáno" @@ -2837,6 +3070,7 @@ msgstr "smazáno" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "Předplatné" @@ -2848,6 +3082,7 @@ msgstr "Předplatné" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "Odstranění objednávek je trvalé a může mít vliv na aktivní uživatele. Jste si jisti, že chcete odstranit objednávku %s?" @@ -2863,6 +3098,7 @@ msgstr "Odstranění objednávek je trvalé a může mít vliv na aktivní uživ #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "Nebyly nalezeny žádné objednávky." @@ -2926,6 +3162,7 @@ msgstr "Následující stránky byly pro vás vytvořeny" #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "Spravovat WordPress stránky přiřazené ke každé vyžadované stránce Memberships Pro." @@ -2934,6 +3171,7 @@ msgstr "Spravovat WordPress stránky přiřazené ke každé vyžadované strán #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "Přiřaďte Wordpress stránky ke každé požadované stránce Paid Memberships Pro nebo," @@ -2942,6 +3180,7 @@ msgstr "Přiřaďte Wordpress stránky ke každé požadované stránce Paid Mem #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "klikněte zde a my je vygenerujeme za vás" @@ -2950,6 +3189,7 @@ msgstr "klikněte zde a my je vygenerujeme za vás" #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "Stránka účtu" @@ -3001,6 +3241,16 @@ msgstr "Stránka účtu" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "upravit stránku" @@ -3045,6 +3295,16 @@ msgstr "upravit stránku" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:246 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "zobrazit stránku" @@ -3088,6 +3348,13 @@ msgstr "zobrazit stránku" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:248 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "Vložit shortcode" @@ -3097,6 +3364,7 @@ msgstr "Vložit shortcode" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "Stránka fakturačních údajů" @@ -3106,6 +3374,7 @@ msgstr "Stránka fakturačních údajů" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "Stránka zrušení" @@ -3115,6 +3384,7 @@ msgstr "Stránka zrušení" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "Stránka pokladny" @@ -3124,6 +3394,7 @@ msgstr "Stránka pokladny" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "Stránka potvrzení" @@ -3133,6 +3404,7 @@ msgstr "Stránka potvrzení" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "Stránka vyúčtování" @@ -3142,6 +3414,7 @@ msgstr "Stránka vyúčtování" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "Stránka úrovní" @@ -3162,6 +3435,7 @@ msgstr "Vaše nastavení plateb bylo úspěšně aktualizováno." #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "Platební brána" @@ -3171,6 +3445,7 @@ msgstr "Platební brána" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "Nastavení SSL" @@ -3187,6 +3462,7 @@ msgstr "Více informací o If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "Stripe nevyžaduje pole fakturační adresy. Zvolte 'Ne' pro jejich skrytí na stránce pokladny.
Pokud zvolíte Ne, ujistěte se, že jste zakázali ověření adresy v ovládacím panelu Stripe." @@ -4760,6 +5143,7 @@ msgstr "Chcete-li plně integrovat Stripe, ujistěte se, že máte správně nas #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "Aktualizace předplatného" @@ -4794,6 +5178,7 @@ msgstr "Aktualizace předplatného, umožňují změnit hodnoty předplatného v #: classes/gateways/class.pmprogateway_stripe.php:2653 #: classes/gateways/class.pmprogateway_stripe.php:2649 #: pages/billing.php:441 +#: classes/gateways/class.pmprogateway_stripe.php:3106 msgid "Update" msgstr "Aktualizovat" @@ -4806,6 +5191,7 @@ msgstr "Aktualizovat" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "Nemohu zrušit staré předplatné. Aktualizace nebyly zpracovány." @@ -4856,6 +5242,8 @@ msgstr "Chyba při vytváření záznamu zákazníka Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "Chyba při vytváření plánu předplatného Stripe:" @@ -4883,6 +5271,8 @@ msgstr "Chyba při vytváření plánu předplatného Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "Chyba při přihlášení zákazníka k plánu předplatného Stripe:" @@ -4897,6 +5287,7 @@ msgstr "Chyba při přihlášení zákazníka k plánu předplatného Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "Nelze zrušit staré předplatné." @@ -4908,17 +5299,20 @@ msgstr "Nelze zrušit staré předplatné." #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "Nelze najít zákazníka." #: classes/gateways/class.pmprogateway_twocheckout.php:53 #: paid-memberships-pro.php:124 #: classes/gateways/class.pmprogateway_twocheckout.php:59 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "2Checkout" #: classes/gateways/class.pmprogateway_twocheckout.php:108 #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "Nastavení 2Checkout" @@ -4926,6 +5320,7 @@ msgstr "Nastavení 2Checkout" #: adminpages/paymentsettings.php:355 #: adminpages/paymentsettings.php:360 #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "Tajné slovo" @@ -4934,6 +5329,7 @@ msgstr "Tajné slovo" #: adminpages/paymentsettings.php:493 #: adminpages/paymentsettings.php:495 #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "URL 2Checkout INS" @@ -4946,6 +5342,7 @@ msgstr "Chcete-li plně integrovat 2Checkout, ujistěte se že jste nastavili UR #: classes/gateways/class.pmprogateway_twocheckout.php:192 #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "Zaplatit pomocí 2Checkout" @@ -5654,6 +6051,7 @@ msgstr "a" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "Pro !!name!! se nyní přihlaste" @@ -5688,6 +6086,9 @@ msgstr "Prosím, zadejte ID úrovně." #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "žádný" @@ -5825,12 +6226,16 @@ msgstr "Moje členství" #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "Úroveň" #: pages/account.php:19 #: includes/email-templates.php:68 #: shortcodes/pmpro_account.php:43 +#: adminpages/orders.php:1431 msgid "Billing" msgstr "Fakturace" @@ -5881,6 +6286,8 @@ msgstr "Upravit profil" #: includes/profile.php:921 #: includes/profile.php:880 #: includes/profile.php:917 +#: includes/profile.php:920 +#: includes/profile.php:957 msgid "Change Password" msgstr "Změnit heslo" @@ -5975,6 +6382,7 @@ msgstr "Vaše placené předplatné spravuje PayPal. Pro aktualizazi Vašich fak #: includes/profile.php:759 #: includes/profile.php:755 #: pages/billing.php:166 +#: includes/profile.php:795 msgid "First Name" msgstr "Jméno" @@ -5991,6 +6399,7 @@ msgstr "Jméno" #: includes/profile.php:760 #: includes/profile.php:756 #: pages/billing.php:170 +#: includes/profile.php:796 msgid "Last Name" msgstr "Příjmení" @@ -6384,6 +6793,10 @@ msgstr "Vyúčtování #%s z %s" #: adminpages/orders.php:391 #: adminpages/orders.php:1424 #: adminpages/orders.php:1434 +#: adminpages/orders.php:439 +#: adminpages/orders.php:1539 +#: adminpages/orders.php:1549 +#: includes/profile.php:473 msgid "Print" msgstr "Tisk" @@ -6434,6 +6847,7 @@ msgstr "Platební metoda" #: pages/invoice.php:97 #: pages/invoice.php:125 #: includes/profile.php:413 +#: includes/profile.php:453 msgid "Total Billed" msgstr "Celková částka" @@ -6458,6 +6872,7 @@ msgstr "Níže jsou uvedeny informace o Vašem členském účtu. Na %s byl odes #: pages/confirmation.php:103 #: pages/confirmation.php:138 #: shortcodes/pmpro_account.php:247 +#: pages/confirmation.php:65 msgid "Pending" msgstr "Čekající" @@ -6485,6 +6900,7 @@ msgstr "Pokud nebude Váš účet aktivován během několika minut, kontaktujte #: includes/functions.php:2842 #: includes/functions.php:2873 #: includes/functions.php:2895 +#: includes/functions.php:2897 msgid "Subtotal" msgstr "Mezisoučet" @@ -6493,6 +6909,7 @@ msgstr "Mezisoučet" #: includes/functions.php:2857 #: includes/functions.php:2888 #: includes/functions.php:2910 +#: includes/functions.php:2912 msgid "Coupon" msgstr "Kupón" @@ -6565,6 +6982,7 @@ msgstr "← Zpět na úvod" #: paid-memberships-pro.php:157 #: paid-memberships-pro.php:159 #: paid-memberships-pro.php:160 +#: paid-memberships-pro.php:166 msgid "Testing Only" msgstr "Pouze testování" @@ -6572,6 +6990,7 @@ msgstr "Pouze testování" #: paid-memberships-pro.php:162 #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:165 +#: paid-memberships-pro.php:171 msgid "PayPal Payflow Pro/PayPal Pro" msgstr "PayPal Payflow Pro/PayPal Pro" @@ -6579,6 +6998,7 @@ msgstr "PayPal Payflow Pro/PayPal Pro" #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:168 #: paid-memberships-pro.php:169 +#: paid-memberships-pro.php:175 msgid "Cybersource" msgstr "Cybersource" @@ -6695,6 +7115,7 @@ msgstr "Chyba při aktualizaci fakturačních údajů." #: classes/class.pmproemail.php:907 #: includes/email.php:459 #: classes/class.pmproemail.php:900 +#: classes/class.pmproemail.php:1033 msgid "Your membership has been cancelled." msgstr "Vaše členství bylo zrušeno." @@ -7026,6 +7447,8 @@ msgstr "každý" #: includes/profile.php:515 #: includes/profile.php:511 #: adminpages/advancedsettings.php:331 +#: adminpages/advancedsettings.php:338 +#: includes/profile.php:551 msgid "Never" msgstr "Nikdy" @@ -7104,6 +7527,7 @@ msgstr "Vašich prvních %d plateb bude stát %s." #: pages/account.php:87 #: pages/account.php:91 #: adminpages/emailtemplates.php:156 +#: adminpages/emailtemplates.php:149 msgid "Billing Information" msgstr "Fakturační údaje" @@ -7238,6 +7662,18 @@ msgstr "Informace o doručení" #: js/blocks.build.js:1342 #: js/blocks.build.js:1502 #: classes/class-pmpro-admin-activity-email.php:349 +#: blocks/account-invoices-section/block.js:47 +#: blocks/account-links-section/block.js:47 +#: blocks/account-membership-section/block.js:45 +#: blocks/account-page/block.js:72 +#: blocks/account-profile-section/block.js:45 +#: blocks/billing-page/block.js:44 +#: blocks/cancel-page/block.js:44 +#: blocks/checkout-page/block.js:58 +#: blocks/confirmation-page/block.js:46 +#: blocks/invoice-page/block.js:45 +#: blocks/levels-page/block.js:44 +#: blocks/member-profile-edit/block.js:37 msgid "Paid Memberships Pro" msgstr "" @@ -7361,6 +7797,18 @@ msgstr "" #: adminpages/orders.php:913 #: adminpages/orders.php:1537 #: adminpages/orders.php:1546 +#: adminpages/orders.php:704 +#: adminpages/orders.php:996 +#: adminpages/orders.php:1689 +#: adminpages/orders.php:1698 +#: classes/class.pmproemail.php:261 +#: classes/class.pmproemail.php:327 +#: includes/profile.php:167 +#: includes/profile.php:483 +#: includes/profile.php:484 +#: includes/profile.php:556 +#: includes/profile.php:557 +#: includes/profile.php:558 msgid "N/A" msgstr "" @@ -7389,6 +7837,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:76 #: classes/gateways/class.pmprogateway_stripe.php:82 #: classes/gateways/class.pmprogateway_stripe.php:1338 +#: classes/gateways/class.pmprogateway_stripe.php:1463 msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade." msgstr "" @@ -7429,6 +7878,7 @@ msgstr "" #: includes/adminpages.php:52 #: includes/adminpages.php:158 #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Members" msgstr "" @@ -7473,41 +7923,49 @@ msgstr "" #: adminpages/advancedsettings.php:106 #: includes/updates/upgrade_1.php:7 #: adminpages/advancedsettings.php:108 +#: adminpages/advancedsettings.php:116 msgid "This content is for !!levels!! members only.
Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -7515,98 +7973,117 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:333 #: adminpages/advancedsettings.php:348 +#: adminpages/advancedsettings.php:355 msgid "Hide Ads From Members?" msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -7632,6 +8109,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -7695,6 +8173,7 @@ msgstr "" #: adminpages/license.php:49 #: adminpages/dashboard.php:178 #: adminpages/license.php:41 +#: adminpages/license.php:53 msgid "Your license is invalid or expired." msgstr "" @@ -7709,6 +8188,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -7814,6 +8294,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -7852,6 +8333,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -7864,31 +8346,39 @@ msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 msgid "%d discount codes found." msgstr "" @@ -7914,6 +8404,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -7932,6 +8429,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -7949,6 +8452,11 @@ msgstr "" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "" @@ -7957,19 +8465,23 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -8010,192 +8522,241 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:960 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:170 #: includes/privacy.php:363 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -8225,6 +8786,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "" @@ -8242,12 +8804,14 @@ msgstr "" #: adminpages/license.php:59 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -8255,14 +8819,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -8279,35 +8846,44 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -8317,6 +8893,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -8324,6 +8902,7 @@ msgstr "" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -8331,6 +8910,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -8338,6 +8918,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -8345,6 +8926,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -8352,6 +8934,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -8359,6 +8942,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -8403,24 +8987,28 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" @@ -8447,60 +9035,77 @@ msgstr "" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -8510,6 +9115,8 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" @@ -8522,12 +9129,16 @@ msgstr "" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -8535,24 +9146,28 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "" @@ -8562,26 +9177,31 @@ msgstr "" #: adminpages/paymentsettings.php:122 #: adminpages/paymentsettings.php:127 +#: adminpages/paymentsettings.php:125 msgid "Choose a Gateway" msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" #: adminpages/paymentsettings.php:194 #: adminpages/paymentsettings.php:201 +#: adminpages/paymentsettings.php:199 msgid "Currency and Tax Settings" msgstr "" #: adminpages/paymentsettings.php:239 #: adminpages/paymentsettings.php:246 +#: adminpages/paymentsettings.php:244 msgid "Tax Rate" msgstr "" @@ -8591,11 +9211,13 @@ msgstr "" #: adminpages/paymentsettings.php:260 #: adminpages/paymentsettings.php:273 +#: adminpages/paymentsettings.php:271 msgid "Your Site URL starts with https:// and so PMPro will allow your entire site to be served over HTTPS." msgstr "" #: adminpages/paymentsettings.php:270 #: adminpages/paymentsettings.php:283 +#: adminpages/paymentsettings.php:281 msgid "Recommended: Yes. Try the JavaScript redirects setting if you are having issues with infinite redirect loops." msgstr "" @@ -8605,6 +9227,7 @@ msgstr "" #: adminpages/reports.php:19 #: adminpages/reports.php:18 +#: adminpages/reports.php:21 msgid "Back to Reports Dashboard" msgstr "" @@ -8632,6 +9255,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -8642,6 +9266,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -8700,29 +9325,35 @@ msgid "All Cancellations" msgstr "" #: adminpages/reports/memberships.php:338 +#: adminpages/reports/memberships.php:337 msgid "Signups vs. All Cancellations" msgstr "" #: adminpages/reports/memberships.php:340 +#: adminpages/reports/memberships.php:339 msgid "Signups vs. Expirations" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -8915,63 +9546,77 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:962 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:463 #: classes/class.pmproemail.php:475 #: classes/class.pmproemail.php:468 +#: classes/class.pmproemail.php:601 msgid "Your billing information has been updated at %s" msgstr "" #: classes/class.pmproemail.php:513 #: classes/class.pmproemail.php:525 #: classes/class.pmproemail.php:518 +#: classes/class.pmproemail.php:651 msgid "Billing information has been updated for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -8984,30 +9629,36 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -9019,14 +9670,17 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:91 #: classes/gateways/class.pmprogateway_stripe.php:97 #: classes/gateways/class.pmprogateway_stripe.php:1353 +#: classes/gateways/class.pmprogateway_stripe.php:1478 msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" @@ -9040,21 +9694,30 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:750 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -9062,11 +9725,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -9344,17 +10010,20 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:185 #: classes/gateways/class.pmprogateway_paypalexpress.php:194 #: classes/gateways/class.pmprogateway_paypalexpress.php:204 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 msgid "Confirmation Step" msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -9363,6 +10032,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -9371,6 +10041,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -9386,6 +10057,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -9394,6 +10066,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -9405,6 +10078,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -9416,6 +10090,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -9427,6 +10102,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -9435,6 +10111,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -9446,6 +10123,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -9457,6 +10135,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -9465,6 +10144,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -9476,6 +10156,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -9484,6 +10165,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -9507,6 +10189,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -9523,6 +10207,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -9531,6 +10217,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -9539,6 +10226,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -9547,6 +10235,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -9554,6 +10243,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -9562,6 +10252,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -9575,6 +10266,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -9583,6 +10276,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -9591,6 +10285,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -9600,6 +10295,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -9617,6 +10314,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -9625,6 +10324,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -9646,6 +10346,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -9654,6 +10356,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -9662,6 +10365,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -9670,6 +10374,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -9678,6 +10383,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -9686,6 +10392,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -9694,6 +10401,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -9702,6 +10410,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -9710,6 +10419,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -9718,6 +10428,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -9726,6 +10437,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -9738,6 +10450,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -9746,6 +10459,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -9754,6 +10468,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -9762,6 +10477,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -9770,6 +10486,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -9815,6 +10532,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "" @@ -9832,6 +10551,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "" @@ -9843,6 +10564,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 msgid "Error: Unkown error while refunding charge #%s" msgstr "" @@ -9852,6 +10574,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -9872,6 +10595,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -9880,6 +10607,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -9889,6 +10617,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -9898,6 +10627,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -9909,6 +10639,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -9920,6 +10651,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -9931,6 +10663,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -9942,22 +10675,27 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "" @@ -9996,6 +10734,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -10008,6 +10747,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -10020,6 +10760,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -11818,14 +12559,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -11834,18 +12578,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -11857,6 +12605,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -11989,6 +12738,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -12102,6 +12852,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -12109,6 +12860,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -12140,6 +12892,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -12149,6 +12902,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -12156,6 +12910,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -12260,6 +13015,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -12267,6 +13024,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -12274,6 +13032,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -12281,6 +13040,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -12352,6 +13112,7 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" @@ -12360,126 +13121,149 @@ msgstr "" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "" #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -12491,6 +13275,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -12600,6 +13387,7 @@ msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -12629,6 +13417,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -12667,6 +13456,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -12682,6 +13486,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -12697,6 +13502,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -12729,6 +13535,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -12741,6 +13548,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -12766,11 +13574,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -12778,6 +13591,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -12785,6 +13599,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -12807,6 +13622,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -12832,6 +13648,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -12839,6 +13656,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -12871,6 +13689,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -12893,6 +13712,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -12903,11 +13723,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -12927,6 +13758,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -12940,6 +13772,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -12949,6 +13782,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -12958,10 +13792,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -12972,6 +13808,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -12979,6 +13816,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -12988,6 +13826,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -12997,12 +13836,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -13010,6 +13852,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -13018,6 +13862,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -13025,6 +13870,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -13032,27 +13878,32 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: paid-memberships-pro.php:194 #: paid-memberships-pro.php:195 +#: paid-memberships-pro.php:201 msgid "Once a month" msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -13110,12 +13961,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -13125,6 +13978,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -13134,6 +13988,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -13143,54 +13998,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -13201,42 +14066,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -13251,51 +14126,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -13303,6 +14190,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -13310,6 +14198,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -13317,6 +14206,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -13325,6 +14215,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -13338,6 +14230,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -13358,19 +14251,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -13380,31 +14277,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -13434,25 +14339,30 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "" @@ -13522,26 +14432,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -13550,51 +14466,62 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -13608,19 +14535,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -13651,3 +14582,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-da_DK.mo b/languages/paid-memberships-pro-da_DK.mo index 706f8d62e..682dd1a5b 100644 Binary files a/languages/paid-memberships-pro-da_DK.mo and b/languages/paid-memberships-pro-da_DK.mo differ diff --git a/languages/paid-memberships-pro-da_DK.po b/languages/paid-memberships-pro-da_DK.po index 9e213636f..01951aa08 100644 --- a/languages/paid-memberships-pro-da_DK.po +++ b/languages/paid-memberships-pro-da_DK.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:20:17+00:00\n" +"POT-Creation-Date: 2022-05-05T20:37:05+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -196,6 +196,11 @@ msgstr "Betalingsgateway & SSL" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "E-mail" @@ -223,6 +228,7 @@ msgstr "Tilføjelser" #: adminpages/advancedsettings.php:35 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "Dine advancerede indstillinger er blevet opdateret." @@ -240,6 +246,7 @@ msgstr "Vær venlig at Logge ind for at læse dette indhold. #: adminpages/advancedsettings.php:116 #: includes/updates/upgrade_1.php:13 #: adminpages/advancedsettings.php:118 +#: adminpages/advancedsettings.php:126 msgid "This content is for members only. Visit the site and log in/register to read." msgstr "Dette indhold er kun for medlemmer. - Besøg siden og log ind/registrer for at se mere." @@ -254,6 +261,7 @@ msgstr "Dette indhold er kun for medlemmer. - Besøg siden og log ind/registrer #: adminpages/advancedsettings.php:132 #: includes/adminpages.php:73 #: adminpages/advancedsettings.php:134 +#: adminpages/advancedsettings.php:142 msgid "Advanced Settings" msgstr "Avancerede Indstillinger" @@ -261,6 +269,7 @@ msgstr "Avancerede Indstillinger" #: adminpages/advancedsettings.php:85 #: adminpages/advancedsettings.php:164 #: adminpages/advancedsettings.php:166 +#: adminpages/advancedsettings.php:173 msgid "Message for Logged-in Non-members" msgstr "Beskeder til ikke-medlemmer som er logget ind" @@ -268,6 +277,7 @@ msgstr "Beskeder til ikke-medlemmer som er logget ind" #: adminpages/advancedsettings.php:89 #: adminpages/advancedsettings.php:168 #: adminpages/advancedsettings.php:170 +#: adminpages/advancedsettings.php:177 msgid "This message replaces the post content for non-members. Available variables" msgstr "Denne besked erstatter dette indlægs indhold for ikke-medlemmer. Forskellige variabler er tilgængelig" @@ -275,6 +285,7 @@ msgstr "Denne besked erstatter dette indlægs indhold for ikke-medlemmer. Forske #: adminpages/advancedsettings.php:94 #: adminpages/advancedsettings.php:173 #: adminpages/advancedsettings.php:175 +#: adminpages/advancedsettings.php:182 msgid "Message for Logged-out Users" msgstr "Besked til brugere der er logget ud" @@ -282,6 +293,7 @@ msgstr "Besked til brugere der er logget ud" #: adminpages/advancedsettings.php:98 #: adminpages/advancedsettings.php:177 #: adminpages/advancedsettings.php:179 +#: adminpages/advancedsettings.php:186 msgid "This message replaces the post content for logged-out visitors." msgstr "Denne besked erstatter dette indlægs indhold for besøgende der er logget ud." @@ -289,6 +301,7 @@ msgstr "Denne besked erstatter dette indlægs indhold for besøgende der er logg #: adminpages/advancedsettings.php:103 #: adminpages/advancedsettings.php:182 #: adminpages/advancedsettings.php:184 +#: adminpages/advancedsettings.php:191 msgid "Message for RSS Feed" msgstr "Besked til RSS Feed" @@ -296,6 +309,7 @@ msgstr "Besked til RSS Feed" #: adminpages/advancedsettings.php:107 #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "This message replaces the post content in RSS feeds." msgstr "Denne besked erstatter indlæggets indhold i RSS feeds." @@ -303,6 +317,7 @@ msgstr "Denne besked erstatter indlæggets indhold i RSS feeds." #: adminpages/advancedsettings.php:113 #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:212 +#: adminpages/advancedsettings.php:219 msgid "Show Excerpts to Non-Members?" msgstr "Vis Uddrag til ikke-medlemmer?" @@ -310,6 +325,7 @@ msgstr "Vis Uddrag til ikke-medlemmer?" #: adminpages/advancedsettings.php:117 #: adminpages/advancedsettings.php:214 #: adminpages/advancedsettings.php:216 +#: adminpages/advancedsettings.php:223 msgid "No - Hide excerpts." msgstr "Nej - Skjul uddrag" @@ -317,6 +333,7 @@ msgstr "Nej - Skjul uddrag" #: adminpages/advancedsettings.php:118 #: adminpages/advancedsettings.php:215 #: adminpages/advancedsettings.php:217 +#: adminpages/advancedsettings.php:224 msgid "Yes - Show excerpts." msgstr "Ja - Vis uddrag" @@ -365,6 +382,16 @@ msgstr "Ja - Vis uddrag" #: classes/gateways/class.pmprogateway_stripe.php:404 #: classes/gateways/class.pmprogateway_stripe.php:418 #: adminpages/paymentsettings.php:279 +#: adminpages/advancedsettings.php:254 +#: adminpages/advancedsettings.php:267 +#: adminpages/advancedsettings.php:359 +#: adminpages/advancedsettings.php:418 +#: adminpages/advancedsettings.php:526 +#: adminpages/membershiplevels.php:939 +#: adminpages/paymentsettings.php:277 +#: classes/gateways/class.pmprogateway_stripe.php:430 +#: classes/gateways/class.pmprogateway_stripe.php:444 +#: includes/profile.php:78 msgid "No" msgstr "Nej" @@ -372,6 +399,7 @@ msgstr "Nej" #: adminpages/advancedsettings.php:129 #: adminpages/advancedsettings.php:338 #: adminpages/advancedsettings.php:353 +#: adminpages/advancedsettings.php:360 msgid "Hide Ads From All Members" msgstr "Skjul Reklamer For Alle Medlemmer" @@ -379,6 +407,7 @@ msgstr "Skjul Reklamer For Alle Medlemmer" #: adminpages/advancedsettings.php:130 #: adminpages/advancedsettings.php:339 #: adminpages/advancedsettings.php:354 +#: adminpages/advancedsettings.php:361 msgid "Hide Ads From Certain Members" msgstr "Skjul Reklamer For Specifikke Medlemmer" @@ -391,6 +420,7 @@ msgstr "Reklamer fra følgende plugins ville automatisk blive slået fra" #: adminpages/advancedsettings.php:138 #: adminpages/advancedsettings.php:346 #: adminpages/advancedsettings.php:361 +#: adminpages/advancedsettings.php:368 msgid "To hide ads in your template code, use code like the following" msgstr "For at skjule reklamer i din template kode, brug følgende" @@ -398,6 +428,7 @@ msgstr "For at skjule reklamer i din template kode, brug følgende" #: adminpages/advancedsettings.php:149 #: adminpages/advancedsettings.php:355 #: adminpages/advancedsettings.php:370 +#: adminpages/advancedsettings.php:377 msgid "Choose Levels to Hide Ads From" msgstr "Vælg nivauer hvor Reklamer skal skjules" @@ -414,6 +445,7 @@ msgstr "Omdiregér alt trafik fra Registrerings-siden til /registrering/?" #: adminpages/advancedsettings.php:390 #: adminpages/advancedsettings.php:392 #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "multisite only" msgstr "Kun multisider" @@ -453,6 +485,12 @@ msgstr "Kun multisider" #: classes/gateways/class.pmprogateway_stripe.php:406 #: classes/gateways/class.pmprogateway_stripe.php:420 #: adminpages/paymentsettings.php:280 +#: adminpages/advancedsettings.php:419 +#: adminpages/membershiplevels.php:934 +#: adminpages/paymentsettings.php:278 +#: classes/gateways/class.pmprogateway_stripe.php:432 +#: classes/gateways/class.pmprogateway_stripe.php:446 +#: includes/profile.php:79 msgid "Yes" msgstr "Ja" @@ -460,6 +498,7 @@ msgstr "Ja" #: adminpages/advancedsettings.php:195 #: adminpages/advancedsettings.php:241 #: adminpages/advancedsettings.php:256 +#: adminpages/advancedsettings.php:263 msgid "Use reCAPTCHA?" msgstr "Brug reCAPTCHA?" @@ -473,6 +512,7 @@ msgstr "Ja - Kun for gratis medlemsskab." #: adminpages/advancedsettings.php:201 #: adminpages/advancedsettings.php:247 #: adminpages/advancedsettings.php:262 +#: adminpages/advancedsettings.php:269 msgid "Yes - All memberships." msgstr "Ja - Alle medlemsskaber." @@ -480,6 +520,7 @@ msgstr "Ja - Alle medlemsskaber." #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "A free reCAPTCHA key is required." msgstr "En gratis reCAPTCHA nøgle er påkrævet." @@ -487,6 +528,7 @@ msgstr "En gratis reCAPTCHA nøgle er påkrævet." #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "Click here to signup for reCAPTCHA" msgstr "Klik her, for at registere med reCAPTCHA" @@ -504,6 +546,7 @@ msgstr "reCAPTCHA Privat Nøgle" #: adminpages/advancedsettings.php:218 #: adminpages/advancedsettings.php:229 #: adminpages/advancedsettings.php:231 +#: adminpages/advancedsettings.php:238 msgid "Require Terms of Service on signups?" msgstr "Kræv godkendelse af Vilkår og Betingelser ved registrering? " @@ -511,6 +554,7 @@ msgstr "Kræv godkendelse af Vilkår og Betingelser ved registrering? " #: adminpages/advancedsettings.php:225 #: adminpages/advancedsettings.php:236 #: adminpages/advancedsettings.php:238 +#: adminpages/advancedsettings.php:245 msgid "If yes, create a WordPress page containing your TOS agreement and assign it using the dropdown above." msgstr "Hvis ja er valgt, opret en Wordpress side med din VOB aftale, og vælg den derefter fra listen herover" @@ -534,6 +578,9 @@ msgstr "valgte" #: adminpages/pagesettings.php:508 #: adminpages/pagesettings.php:512 #: adminpages/paymentsettings.php:316 +#: adminpages/advancedsettings.php:574 +#: adminpages/pagesettings.php:511 +#: adminpages/paymentsettings.php:314 msgid "Save Settings" msgstr "Gem Indstillinger" @@ -602,6 +649,7 @@ msgstr "Fejl opstod i at slette koden. - Prøv igen" #: adminpages/discountcodes.php:796 #: adminpages/discountcodes.php:354 #: adminpages/discountcodes.php:798 +#: adminpages/discountcodes.php:799 msgid "Code not found." msgstr "Kode ikke fundet." @@ -620,6 +668,7 @@ msgstr "Redigér Rabatkode" #: adminpages/discountcodes.php:735 #: adminpages/discountcodes.php:377 #: adminpages/discountcodes.php:737 +#: adminpages/discountcodes.php:738 msgid "Add New Discount Code" msgstr "Tilføj Ny Rabatkode" @@ -654,6 +703,8 @@ msgstr "Tilføj Ny Rabatkode" #: adminpages/reports/login.php:182 #: adminpages/templates/orders-email.php:49 #: adminpages/templates/orders-print.php:78 +#: adminpages/membershiplevels.php:345 +#: adminpages/membershiplevels.php:805 msgid "ID" msgstr "ID" @@ -691,6 +742,9 @@ msgstr "Dette ville blive genereret, når du gemmer." #: adminpages/dashboard.php:292 #: adminpages/orders.php:429 #: adminpages/orders.php:1333 +#: adminpages/discountcodes.php:787 +#: adminpages/orders.php:475 +#: adminpages/orders.php:1426 msgid "Code" msgstr "Kode" @@ -703,6 +757,7 @@ msgstr "Kode" #: adminpages/discountcodes.php:489 #: includes/profile.php:501 #: includes/profile.php:497 +#: includes/profile.php:537 msgid "Start Date" msgstr "Startdato" @@ -724,6 +779,8 @@ msgstr "Startdato" #: classes/gateways/class.pmprogateway_stripe.php:1326 #: classes/gateways/class.pmprogateway_stripe.php:785 #: pages/billing.php:381 +#: classes/gateways/class.pmprogateway_braintree.php:486 +#: classes/gateways/class.pmprogateway_stripe.php:893 msgid "Expiration Date" msgstr "Udløbsdato" @@ -735,6 +792,7 @@ msgstr "Udløbsdato" #: adminpages/discountcodes.php:787 #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:789 +#: adminpages/discountcodes.php:790 msgid "Uses" msgstr "Forbrug" @@ -756,6 +814,7 @@ msgstr "Lad dette stå blank, for ubegrænset brug." #: adminpages/discountcodes.php:574 #: adminpages/membershiplevels.php:401 #: adminpages/discountcodes.php:576 +#: adminpages/membershiplevels.php:399 msgid "Initial Payment" msgstr "Første Betaling" @@ -766,6 +825,7 @@ msgstr "Første Betaling" #: adminpages/discountcodes.php:585 #: adminpages/membershiplevels.php:412 #: adminpages/discountcodes.php:587 +#: adminpages/membershiplevels.php:410 msgid "The initial amount collected at registration." msgstr "Det første beløb der opkræves ved registrering." @@ -776,6 +836,7 @@ msgstr "Det første beløb der opkræves ved registrering." #: adminpages/discountcodes.php:590 #: adminpages/membershiplevels.php:417 #: adminpages/discountcodes.php:592 +#: adminpages/membershiplevels.php:415 msgid "Recurring Subscription" msgstr "Gentagende Betalinger" @@ -786,6 +847,7 @@ msgstr "Gentagende Betalinger" #: adminpages/discountcodes.php:591 #: adminpages/membershiplevels.php:418 #: adminpages/discountcodes.php:593 +#: adminpages/membershiplevels.php:416 msgid "Check if this level has a recurring subscription payment." msgstr "Klik her, hvis dette niveau har Gentagende Betalinger." @@ -795,6 +857,7 @@ msgstr "Klik her, hvis dette niveau har Gentagende Betalinger." #: adminpages/discountcodes.php:595 #: adminpages/membershiplevels.php:422 #: adminpages/discountcodes.php:597 +#: adminpages/membershiplevels.php:420 msgid "Billing Amount" msgstr "Beløb" @@ -817,6 +880,10 @@ msgstr "Beløb" #: classes/gateways/class.pmprogateway_stripe.php:2637 #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2635 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3092 msgid "Day(s)" msgstr "Dag(e)" @@ -839,6 +906,10 @@ msgstr "Dag(e)" #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2641 #: classes/gateways/class.pmprogateway_stripe.php:2637 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3094 msgid "Month(s)" msgstr "Måned(er)" @@ -861,6 +932,10 @@ msgstr "Måned(er)" #: classes/gateways/class.pmprogateway_stripe.php:2638 #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2636 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3093 msgid "Week(s)" msgstr "Uge(r)" @@ -883,6 +958,10 @@ msgstr "Uge(r)" #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2642 #: classes/gateways/class.pmprogateway_stripe.php:2638 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3095 msgid "Year(s)" msgstr "År" @@ -893,6 +972,7 @@ msgstr "År" #: adminpages/discountcodes.php:618 #: adminpages/membershiplevels.php:446 #: adminpages/discountcodes.php:620 +#: adminpages/membershiplevels.php:444 msgid "The amount to be billed one cycle after the initial payment." msgstr "Det beløb, der faktureres den ene cyklus efter den oprindelige betaling." @@ -903,6 +983,7 @@ msgstr "Det beløb, der faktureres den ene cyklus efter den oprindelige betaling #: adminpages/discountcodes.php:628 #: adminpages/membershiplevels.php:465 #: adminpages/discountcodes.php:630 +#: adminpages/membershiplevels.php:463 msgid "Billing Cycle Limit" msgstr "Betalings-Cyklus Grænse " @@ -913,6 +994,7 @@ msgstr "Betalings-Cyklus Grænse " #: adminpages/discountcodes.php:632 #: adminpages/membershiplevels.php:469 #: adminpages/discountcodes.php:634 +#: adminpages/membershiplevels.php:467 msgid "The total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "Det totale antal af gentagende faktura cykluser for dette niveau, herunder prøveperioden (hvis relevant), men ikke inkluderet i den første betaling. Sæt til nul, hvis medlemskabet er ubegrænset." @@ -923,6 +1005,8 @@ msgstr "Det totale antal af gentagende faktura cykluser for det #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "Brugerdefineret Prøveperiode" @@ -934,6 +1018,8 @@ msgstr "Brugerdefineret Prøveperiode" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "Klik her, for at tilføje en Brugerdefineret Prøveperiode" @@ -945,6 +1031,7 @@ msgstr "Klik her, for at tilføje en Brugerdefineret Prøveperiode" #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "Prøveperiode Beløb" @@ -956,6 +1043,7 @@ msgstr "Prøveperiode Beløb" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "for det første" @@ -967,6 +1055,7 @@ msgstr "for det første" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "Abonnements-betalinger" @@ -978,6 +1067,7 @@ msgstr "Abonnements-betalinger" #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "Medlemskab Udløber" @@ -988,6 +1078,7 @@ msgstr "Medlemskab Udløber" #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "Klik her for at indstille hvornår medlemsskabet udløber" @@ -1000,6 +1091,8 @@ msgstr "Klik her for at indstille hvornår medlemsskabet udløber" #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "Udløber om" @@ -1010,6 +1103,8 @@ msgstr "Udløber om" #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "Indstil varigheden af medlemskabet. - Bemærk, at eventuelle fremtidige betalinger (gentagende betalinger, hvis nogen) vil blive annulleret, når medlemskabet udløber." @@ -1017,6 +1112,7 @@ msgstr "Indstil varigheden af medlemskabet. - Bemærk, at eventuelle fremtidige #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "Medlemsskab Rabatkode" @@ -1024,6 +1120,7 @@ msgstr "Medlemsskab Rabatkode" #: adminpages/discountcodes.php:535 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "Søg efter Rabatkoder" @@ -1032,6 +1129,7 @@ msgstr "Søg efter Rabatkoder" #: adminpages/discountcodes.php:538 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "Søg" @@ -1039,6 +1137,7 @@ msgstr "Søg" #: adminpages/discountcodes.php:549 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "Starter" @@ -1059,6 +1158,8 @@ msgstr "Starter" #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "Udløber" @@ -1067,6 +1168,7 @@ msgstr "Udløber" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "Niveauer" @@ -1092,6 +1194,7 @@ msgstr "Rabatkoder giver dig mulighed for at tilbyde medlemmer Rabat til udvalgt #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "Redigér" @@ -1131,6 +1234,7 @@ msgstr "E-mail Indstillinger" #: adminpages/emailsettings.php:70 #: adminpages/emailsettings.php:61 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "Som standard, vil systemet generere en e-mail sendt fra wordpress@ditdomæne.com. - Du har mulighed for, at opdatere denne adresse ved at bruge felterne nedenfor. " @@ -1142,17 +1246,20 @@ msgstr "Hvis du vil ændre udseendet af systemets genererede e-mails, tilføj fi #: adminpages/emailsettings.php:78 #: adminpages/emailsettings.php:69 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "Fra Email" #: adminpages/emailsettings.php:86 #: adminpages/emailsettings.php:77 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "Fra Navn" #: adminpages/emailsettings.php:94 #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "Filtrer Kun PMPro Emails?" @@ -1306,6 +1413,8 @@ msgstr "Tilføj Nyt Medlemsskabniveau" #: adminpages/reports/history.php:184 #: adminpages/reports/login.php:181 #: adminpages/reports/login.php:184 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 msgid "Name" msgstr "Navn" @@ -1313,12 +1422,14 @@ msgstr "Navn" #: adminpages/membershiplevels.php:296 #: adminpages/addons.php:111 #: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "Beskrivelse" #: adminpages/membershiplevels.php:316 #: adminpages/membershiplevels.php:314 #: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "Bekræftigelses Besked" @@ -1326,6 +1437,8 @@ msgstr "Bekræftigelses Besked" #: adminpages/membershiplevels.php:333 #: adminpages/membershiplevels.php:397 #: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "Faktura Detaljer" @@ -1342,6 +1455,8 @@ msgstr "Faktura Detaljer" #: classes/gateways/class.pmprogateway_stripe.php:2696 #: classes/gateways/class.pmprogateway_stripe.php:2698 #: classes/gateways/class.pmprogateway_stripe.php:2694 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "pr" @@ -1354,6 +1469,7 @@ msgstr "Stripe integration understøtter kun gentagende betalinger per \"Uge\", #: adminpages/discountcodes.php:620 #: adminpages/membershiplevels.php:448 #: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:446 msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." msgstr "Braintree integration understøtter kun gentagende betalinger per \"Uge\", \"Måned\" eller \"År\"." @@ -1365,6 +1481,7 @@ msgstr "Payflow integration understøtter kun gentagende betalinger af 1 og per #: adminpages/membershiplevels.php:374 #: adminpages/membershiplevels.php:372 #: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." msgstr "Når du har gemt dette niveau, lav en note af ID og opret en \"Plan\" i dit Braintree kontrolpanel, med de samme indstillinger, og at \"Plan ID\" er sat til pmpro_#, hvor # er niveau ID." @@ -1377,6 +1494,8 @@ msgstr "Når du har gemt dette niveau, lav en note af ID og opret en \"Plan\" i #: adminpages/membershiplevels.php:454 #: adminpages/membershiplevels.php:459 #: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 msgid "Note" msgstr "Note" @@ -1390,6 +1509,7 @@ msgstr "Du er nød til at oprette en \"Plan\" i dit Braintree kontrolpanel med d #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "Stripe integration understøtter ikke faktura begrænsninger. Du kan stadig sætte en udløbsdato på nedenfor." @@ -1398,6 +1518,8 @@ msgstr "Stripe integration understøtter ikke faktura begrænsninger. Du kan sta #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "2Checkout integration understøtter ikke brugerdefineret prøveperiode. Du kan lave en prøveperiode via indstillinger, og sætte første betaling til et andet beløb." @@ -1407,6 +1529,7 @@ msgstr "2Checkout integration understøtter ikke brugerdefineret prøveperiode. #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "Stripe integration understøtter ikke prøveperioder der er større en $0." @@ -1416,6 +1539,7 @@ msgstr "Stripe integration understøtter ikke prøveperioder der er større en $ #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "Braintree integration understøtter prøveperioder der er større end $0." @@ -1425,6 +1549,7 @@ msgstr "Braintree integration understøtter prøveperioder der er større end $0 #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "Payflow integration understøtter ikke prøveperioder der er større end $0." @@ -1435,6 +1560,7 @@ msgstr "Payflow integration understøtter ikke prøveperioder der er større end #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "Andre Indstillinger" @@ -1458,6 +1584,8 @@ msgstr "Kryds her, for at skjule dette Niveau fra medlemsskabsniveau-siden, og d #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "Indhold - Indstillinger" @@ -1465,6 +1593,7 @@ msgstr "Indhold - Indstillinger" #: adminpages/membershiplevels.php:461 #: adminpages/membershiplevels.php:467 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "Kategorier" @@ -1512,6 +1641,8 @@ msgstr "Prøveperiode-Cyklus" #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "Udløb" @@ -1519,6 +1650,7 @@ msgstr "Udløb" #: adminpages/membershiplevels.php:511 #: adminpages/membershiplevels.php:517 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "Tillad Registrering" @@ -1527,6 +1659,7 @@ msgstr "Tillad Registrering" #: adminpages/membershiplevels.php:540 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "GRATIS" @@ -1555,6 +1688,8 @@ msgstr "alle" #: adminpages/reports/sales.php:314 #: adminpages/reports/sales.php:321 #: adminpages/reports/sales.php:332 +#: adminpages/reports/memberships.php:341 +#: adminpages/reports/memberships.php:352 msgid "for" msgstr "for" @@ -1563,6 +1698,7 @@ msgstr "for" #: adminpages/membershiplevels.php:566 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "Efter" @@ -1591,6 +1727,7 @@ msgstr "Er du sikker på, at du ville slette medlemsskabniveau %s? - Alle abonne #: includes/adminpages.php:74 #: includes/adminpages.php:142 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "Medlemsliste" @@ -1602,6 +1739,8 @@ msgstr "Medlemsliste" #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "Eksportér til CSV" @@ -1624,6 +1763,8 @@ msgstr "Eksportér til CSV" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "Vis" @@ -1647,6 +1788,8 @@ msgstr "Vis" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "Alle Niveauer" @@ -1668,6 +1811,8 @@ msgstr "Gamle Medlemmer" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "Søg Medlemmer" @@ -1695,6 +1840,8 @@ msgstr "%d medlemmer fundet." #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "Brugernavn" @@ -1726,6 +1873,7 @@ msgstr "Efternavn" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "Faktura Addresse" @@ -1803,6 +1951,7 @@ msgstr "Fejl i at slette ordre." #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "Ordre gemt succesfuldt." @@ -1816,6 +1965,7 @@ msgstr "Fejl i at opdatere ordrens tidsstempel." #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "Fejl i at gemme ordre." @@ -1827,6 +1977,7 @@ msgstr "Fejl i at gemme ordre." #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "Ordre" @@ -1835,6 +1986,7 @@ msgstr "Ordre" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "Ny Ordre" @@ -1843,6 +1995,7 @@ msgstr "Ny Ordre" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "Tilfældig genereret til dig" @@ -1851,6 +2004,7 @@ msgstr "Tilfældig genereret til dig" #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "Bruger ID" @@ -1860,6 +2014,8 @@ msgstr "Bruger ID" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "Medlemsniveau ID" @@ -1869,6 +2025,7 @@ msgstr "Medlemsniveau ID" #: includes/privacy.php:245 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "Faktura Navn" @@ -1878,6 +2035,7 @@ msgstr "Faktura Navn" #: includes/privacy.php:249 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "Faktura Vej" @@ -1888,6 +2046,7 @@ msgstr "Faktura Vej" #: includes/privacy.php:358 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "Faktura By" @@ -1897,6 +2056,7 @@ msgstr "Faktura By" #: includes/privacy.php:257 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "Faktura Region" @@ -1908,6 +2068,7 @@ msgstr "Faktura Region" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "Faktura Postnummer" @@ -1919,6 +2080,7 @@ msgstr "Faktura Postnummer" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "Faktura Land" @@ -1929,6 +2091,7 @@ msgstr "Faktura Land" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "Faktura Telefon" @@ -1939,6 +2102,7 @@ msgstr "Faktura Telefon" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "Subtotal" @@ -1954,6 +2118,8 @@ msgstr "Subtotal" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "Skat" @@ -1964,6 +2130,7 @@ msgstr "Skat" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "Rabatbeløb" @@ -1988,6 +2155,9 @@ msgstr "Rabatbeløb" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "Total" @@ -2003,6 +2173,7 @@ msgstr "Skal være subtotal + skat - rabatbeløb" #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "Betalingstype" @@ -2012,6 +2183,7 @@ msgstr "Betalingstype" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "e.g. PayPal Express, PayPal Standard. Kreditkort." @@ -2036,6 +2208,9 @@ msgstr "e.g. PayPal Express, PayPal Standard. Kreditkort." #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "Korttype" @@ -2045,6 +2220,7 @@ msgstr "Korttype" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "e.g Visa, MasterCard. AMEX, etc" @@ -2058,6 +2234,8 @@ msgstr "e.g Visa, MasterCard. AMEX, etc" #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "Kontonummer" @@ -2066,6 +2244,7 @@ msgstr "Kontonummer" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "Skjul alle personlige oplysninger, undtagen de sidste 4 cifre" @@ -2078,6 +2257,7 @@ msgstr "Skjul alle personlige oplysninger, undtagen de sidste 4 cifre" #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "Udløbsmåned" @@ -2113,6 +2293,10 @@ msgstr "Udløbsår" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "Status" @@ -2130,6 +2314,9 @@ msgstr "Status" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "Gateway" @@ -2138,6 +2325,7 @@ msgstr "Gateway" #: paid-memberships-pro.php:157 #: paid-memberships-pro.php:159 #: paid-memberships-pro.php:160 +#: paid-memberships-pro.php:166 msgid "Testing Only" msgstr "Kun til Test" @@ -2149,6 +2337,7 @@ msgstr "Kun til Test" #: paid-memberships-pro.php:158 #: paid-memberships-pro.php:160 #: paid-memberships-pro.php:161 +#: paid-memberships-pro.php:167 msgid "Pay by Check" msgstr "Betal med Check" @@ -2163,6 +2352,8 @@ msgstr "Betal med Check" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "Gateway Miljø" @@ -2180,6 +2371,9 @@ msgstr "Gateway Miljø" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "Sandkasse/Test" @@ -2197,6 +2391,9 @@ msgstr "Sandkasse/Test" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "Live/Produktion" @@ -2206,6 +2403,7 @@ msgstr "Live/Produktion" #: includes/privacy.php:321 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "Betalings Transaktions ID" @@ -2214,6 +2412,7 @@ msgstr "Betalings Transaktions ID" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "Genereret af Gatewayen. - Nyttigt til krydsreferencer med ordre." @@ -2225,6 +2424,8 @@ msgstr "Genereret af Gatewayen. - Nyttigt til krydsreferencer med ordre." #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "Abonnements Transaktion ID" @@ -2234,6 +2435,7 @@ msgstr "Abonnements Transaktion ID" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "Genereret af Gateway. - Nyttigt til krydsreferencer med abonnementer. " @@ -2258,6 +2460,8 @@ msgstr "Genereret af Gateway. - Nyttigt til krydsreferencer med abonnementer. " #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "Dato" @@ -2267,6 +2471,7 @@ msgstr "Dato" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "Assosieret ID" @@ -2276,6 +2481,7 @@ msgstr "Assosieret ID" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "Assosieret SubID" @@ -2285,6 +2491,7 @@ msgstr "Assosieret SubID" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "Noter" @@ -2294,6 +2501,7 @@ msgstr "Noter" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "Gem Ordre" @@ -2320,6 +2528,11 @@ msgstr "Gem Ordre" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "Annullér" @@ -2342,6 +2555,8 @@ msgstr "Annullér" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "Ordrer" @@ -2351,6 +2566,7 @@ msgstr "Ordrer" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "Tilføj Ny Ordre" @@ -2361,6 +2577,7 @@ msgstr "Tilføj Ny Ordre" #: adminpages/orders.php:1014 #: includes/metaboxes.php:19 #: adminpages/orders.php:1015 +#: adminpages/orders.php:1103 msgid "All" msgstr "Alle" @@ -2369,6 +2586,7 @@ msgstr "Alle" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "Inden for et datointerval" @@ -2377,6 +2595,7 @@ msgstr "Inden for et datointerval" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "Foruddefineret datointerval" @@ -2385,6 +2604,7 @@ msgstr "Foruddefineret datointerval" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "Indenfor et Niveau" @@ -2393,6 +2613,7 @@ msgstr "Indenfor et Niveau" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "Indenfor en Status" @@ -2401,6 +2622,7 @@ msgstr "Indenfor en Status" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "Fra" @@ -2409,6 +2631,7 @@ msgstr "Fra" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "Til" @@ -2417,6 +2640,7 @@ msgstr "Til" #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "Filtreret efter" @@ -2425,6 +2649,7 @@ msgstr "Filtreret efter" #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "Filtreret" @@ -2440,6 +2665,8 @@ msgstr "Filtreret" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "Søg Ordrer" @@ -2449,6 +2676,8 @@ msgstr "Søg Ordrer" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "%d ordre fundet." @@ -2467,6 +2696,7 @@ msgstr "%d ordre fundet." #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "Bruger" @@ -2498,6 +2728,8 @@ msgstr "Bruger" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "Medlemsniveau" @@ -2513,6 +2745,7 @@ msgstr "Medlemsniveau" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "Betaling" @@ -2522,6 +2755,7 @@ msgstr "Betaling" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "Transaktion ID'er" @@ -2542,6 +2776,8 @@ msgstr "Transaktion ID'er" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "slettet" @@ -2551,6 +2787,7 @@ msgstr "slettet" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "Abonnement" @@ -2561,6 +2798,7 @@ msgstr "Abonnement" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "Slette en ordre er permanent og kan påvirke aktive brugere. - Er du sikker på, at du ville slette ordre %s?" @@ -2575,6 +2813,7 @@ msgstr "Slette en ordre er permanent og kan påvirke aktive brugere. - Er du sik #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "Ingen ordre fundet." @@ -2638,6 +2877,7 @@ msgstr "De følgende sider, er blevet oprettet til dig" #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "Indstil hvilke Wordpress-sider som er tildelt hver af de påkrævede Paid Memberships Pro-side." @@ -2646,6 +2886,7 @@ msgstr "Indstil hvilke Wordpress-sider som er tildelt hver af de påkrævede Pai #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "Tildel Wordpress sider til hver påkrævet Paid Memberships Pro-side eller" @@ -2654,6 +2895,7 @@ msgstr "Tildel Wordpress sider til hver påkrævet Paid Memberships Pro-side ell #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "Klik her, for at lade Paid Memberships Pro generere dem for dig" @@ -2662,6 +2904,7 @@ msgstr "Klik her, for at lade Paid Memberships Pro generere dem for dig" #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "Konto Side" @@ -2713,6 +2956,16 @@ msgstr "Konto Side" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "redigér side" @@ -2757,6 +3010,16 @@ msgstr "redigér side" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:246 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "se side" @@ -2800,6 +3063,13 @@ msgstr "se side" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:248 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "Inkludér shortcode" @@ -2809,6 +3079,7 @@ msgstr "Inkludér shortcode" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "Regnings Information-Side" @@ -2818,6 +3089,7 @@ msgstr "Regnings Information-Side" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "Annullér-Side" @@ -2827,6 +3099,7 @@ msgstr "Annullér-Side" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "Gå til Kassen-Side" @@ -2836,6 +3109,7 @@ msgstr "Gå til Kassen-Side" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "Bekræftigelses-Side" @@ -2845,6 +3119,7 @@ msgstr "Bekræftigelses-Side" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "Faktura-Side" @@ -2854,6 +3129,7 @@ msgstr "Faktura-Side" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "Niveau-Side" @@ -2871,6 +3147,7 @@ msgstr "Dine betalings-indstillinger er blevet opdateret." #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "Betalingsgateway" @@ -2879,6 +3156,7 @@ msgstr "Betalingsgateway" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "SSL Indstillinger" @@ -2926,6 +3204,7 @@ msgstr "Adgangskode" #: classes/gateways/class.pmprogateway_paypalexpress.php:162 #: classes/gateways/class.pmprogateway_paypalstandard.php:154 #: classes/gateways/class.pmprogateway_paypalexpress.php:172 +#: classes/gateways/class.pmprogateway_paypalexpress.php:173 msgid "Gateway Account Email" msgstr "Gateway Konto Email" @@ -2939,6 +3218,8 @@ msgstr "Gateway Konto Email" #: classes/gateways/class.pmprogateway_paypalstandard.php:162 #: classes/gateways/class.pmprogateway_twocheckout.php:120 #: classes/gateways/class.pmprogateway_paypalexpress.php:180 +#: classes/gateways/class.pmprogateway_paypalexpress.php:181 +#: classes/gateways/class.pmprogateway_twocheckout.php:127 msgid "API Username" msgstr "API Brugernavn" @@ -2952,6 +3233,8 @@ msgstr "API Brugernavn" #: classes/gateways/class.pmprogateway_paypalstandard.php:170 #: classes/gateways/class.pmprogateway_twocheckout.php:129 #: classes/gateways/class.pmprogateway_paypalexpress.php:188 +#: classes/gateways/class.pmprogateway_paypalexpress.php:189 +#: classes/gateways/class.pmprogateway_twocheckout.php:136 msgid "API Password" msgstr "API Adgangskode" @@ -2962,6 +3245,7 @@ msgstr "API Adgangskode" #: classes/gateways/class.pmprogateway_paypalexpress.php:186 #: classes/gateways/class.pmprogateway_paypalstandard.php:178 #: classes/gateways/class.pmprogateway_paypalexpress.php:196 +#: classes/gateways/class.pmprogateway_paypalexpress.php:197 msgid "API Signature" msgstr "API Signatur" @@ -2987,6 +3271,7 @@ msgstr "Transaktions Nøgle" #: classes/gateways/class.pmprogateway_stripe.php:570 #: classes/gateways/class.pmprogateway_stripe.php:576 #: classes/gateways/class.pmprogateway_stripe.php:340 +#: classes/gateways/class.pmprogateway_stripe.php:366 msgid "Secret Key" msgstr "Hemmelig Nøgle" @@ -2998,6 +3283,7 @@ msgstr "Hemmelig Nøgle" #: classes/gateways/class.pmprogateway_stripe.php:554 #: classes/gateways/class.pmprogateway_stripe.php:560 #: classes/gateways/class.pmprogateway_stripe.php:324 +#: classes/gateways/class.pmprogateway_stripe.php:350 msgid "Publishable Key" msgstr "Publicérbar Nøgle" @@ -3008,6 +3294,7 @@ msgstr "Publicérbar Nøgle" #: adminpages/paymentsettings.php:364 #: classes/gateways/class.pmprogateway_braintree.php:313 #: classes/gateways/class.pmprogateway_cybersource.php:94 +#: classes/gateways/class.pmprogateway_braintree.php:320 msgid "Merchant ID" msgstr "Forhandler ID" @@ -3015,6 +3302,7 @@ msgstr "Forhandler ID" #: adminpages/paymentsettings.php:302 #: adminpages/paymentsettings.php:306 #: classes/gateways/class.pmprogateway_braintree.php:321 +#: classes/gateways/class.pmprogateway_braintree.php:328 msgid "Public Key" msgstr "Offentlig Nøgle" @@ -3022,6 +3310,7 @@ msgstr "Offentlig Nøgle" #: adminpages/paymentsettings.php:310 #: adminpages/paymentsettings.php:314 #: classes/gateways/class.pmprogateway_braintree.php:329 +#: classes/gateways/class.pmprogateway_braintree.php:336 msgid "Private Key" msgstr "Privat Nøgle" @@ -3029,12 +3318,14 @@ msgstr "Privat Nøgle" #: adminpages/paymentsettings.php:318 #: adminpages/paymentsettings.php:322 #: classes/gateways/class.pmprogateway_braintree.php:337 +#: classes/gateways/class.pmprogateway_braintree.php:344 msgid "Client-Side Encryption Key" msgstr "Klient-Side Krypteret Nøgle" #: adminpages/paymentsettings.php:360 #: adminpages/paymentsettings.php:355 #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "Hemmeligt Ord" @@ -3051,12 +3342,14 @@ msgstr "Transaktion Sikkerheds Nøgle" #: adminpages/paymentsettings.php:381 #: adminpages/paymentsettings.php:199 #: adminpages/paymentsettings.php:206 +#: adminpages/paymentsettings.php:204 msgid "Currency" msgstr "Valuta" #: adminpages/paymentsettings.php:400 #: adminpages/paymentsettings.php:215 #: adminpages/paymentsettings.php:222 +#: adminpages/paymentsettings.php:220 msgid "Not all currencies will be supported by every gateway. Please check with your gateway." msgstr "Ikke alt Valuta understøtter af alle gateways. - Kontroller venligst med din Gateway." @@ -3065,6 +3358,7 @@ msgstr "Ikke alt Valuta understøtter af alle gateways. - Kontroller venligst me #: adminpages/paymentsettings.php:401 #: adminpages/paymentsettings.php:220 #: adminpages/paymentsettings.php:227 +#: adminpages/paymentsettings.php:225 msgid "Accepted Credit Card Types" msgstr "Accepterede Kreditkort" @@ -3089,6 +3383,8 @@ msgstr "Hvem skal checken udskrives til. Hvor skal den sendes til. Vises ved Gå #: classes/gateways/class.pmprogateway_stripe.php:629 #: classes/gateways/class.pmprogateway_stripe.php:635 #: classes/gateways/class.pmprogateway_stripe.php:399 +#: adminpages/orders.php:570 +#: classes/gateways/class.pmprogateway_stripe.php:425 msgid "Show Billing Address Fields" msgstr "Vis Regnings Adresse-felter." @@ -3098,6 +3394,7 @@ msgstr "Vis Regnings Adresse-felter." #: classes/gateways/class.pmprogateway_stripe.php:638 #: classes/gateways/class.pmprogateway_stripe.php:644 #: classes/gateways/class.pmprogateway_stripe.php:408 +#: classes/gateways/class.pmprogateway_stripe.php:434 msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.
If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "Stripe behøver ikke regnings adresse-felter. Vælg 'Nej' for at skjule dem på Gå til kassen siden.
Hvis Nej, så vær sikker på, at du har deaktiveret bekræftigelse i Stripe Kontrolpanel Indstillingerne." @@ -3106,6 +3403,7 @@ msgstr "Stripe behøver ikke regnings adresse-felter. Vælg 'Nej' for at skjule #: adminpages/paymentsettings.php:438 #: adminpages/paymentsettings.php:234 #: adminpages/paymentsettings.php:241 +#: adminpages/paymentsettings.php:239 msgid "Sales Tax" msgstr "Moms" @@ -3118,6 +3416,7 @@ msgstr "Moms" #: pages/billing.php:179 #: adminpages/paymentsettings.php:241 #: pages/billing.php:181 +#: adminpages/paymentsettings.php:239 msgid "optional" msgstr "valgfri" @@ -3126,6 +3425,7 @@ msgstr "valgfri" #: adminpages/paymentsettings.php:441 #: adminpages/paymentsettings.php:237 #: adminpages/paymentsettings.php:244 +#: adminpages/paymentsettings.php:242 msgid "Tax State" msgstr "Moms sats" @@ -3134,6 +3434,7 @@ msgstr "Moms sats" #: adminpages/paymentsettings.php:442 #: adminpages/paymentsettings.php:238 #: adminpages/paymentsettings.php:245 +#: adminpages/paymentsettings.php:243 msgid "abbreviation, e.g. \"PA\"" msgstr "forkortelse, e.g. \"PA\"" @@ -3142,6 +3443,7 @@ msgstr "forkortelse, e.g. \"PA\"" #: adminpages/paymentsettings.php:444 #: adminpages/paymentsettings.php:240 #: adminpages/paymentsettings.php:247 +#: adminpages/paymentsettings.php:245 msgid "decimal, e.g. \"0.06\"" msgstr "decimal, e.g \"0.06\"" @@ -3153,6 +3455,7 @@ msgstr "Kun for US. Hvis værdien er sat korret op, så vil skat blive tilføjet #: adminpages/paymentsettings.php:450 #: adminpages/paymentsettings.php:253 #: adminpages/paymentsettings.php:266 +#: adminpages/paymentsettings.php:264 msgid "Force SSL" msgstr "Gennemtving SSL" @@ -3160,6 +3463,7 @@ msgstr "Gennemtving SSL" #: adminpages/paymentsettings.php:456 #: adminpages/paymentsettings.php:268 #: adminpages/paymentsettings.php:281 +#: adminpages/paymentsettings.php:279 msgid "Yes (with JavaScript redirects)" msgstr "Ja (med JavaScript omdirigering)" @@ -3168,6 +3472,7 @@ msgstr "Ja (med JavaScript omdirigering)" #: adminpages/paymentsettings.php:463 #: adminpages/paymentsettings.php:278 #: adminpages/paymentsettings.php:291 +#: adminpages/paymentsettings.php:289 msgid "SSL Seal Code" msgstr "SSL Seal Kode" @@ -3190,6 +3495,7 @@ msgstr "Brug \"Nuclear Funktion\" for at sikre (HTTPS) URLs på dine sikre sider #: classes/gateways/class.pmprogateway_paypalexpress.php:205 #: classes/gateways/class.pmprogateway_paypalstandard.php:186 #: classes/gateways/class.pmprogateway_paypalexpress.php:215 +#: classes/gateways/class.pmprogateway_paypalexpress.php:216 msgid "IPN Handler URL" msgstr "IPN Handler URL" @@ -3199,12 +3505,14 @@ msgstr "IPN Handler URL" #: classes/gateways/class.pmprogateway_paypal.php:199 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 #: classes/gateways/class.pmprogateway_paypalexpress.php:218 +#: classes/gateways/class.pmprogateway_paypalexpress.php:219 msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to " msgstr "For at integrere fuldt ud med PayPal, sørg for at du har sat din IPN Handler URL til " #: adminpages/paymentsettings.php:493 #: adminpages/paymentsettings.php:487 #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "TwoCheckout INS URL" @@ -3234,6 +3542,7 @@ msgstr "For at kunne integrere fuldt ud med Authorize.net, sørg for at sætte d #: adminpages/paymentsettings.php:503 #: adminpages/paymentsettings.php:511 #: classes/gateways/class.pmprogateway_braintree.php:345 +#: classes/gateways/class.pmprogateway_braintree.php:352 msgid "Web Hook URL" msgstr "Web Hook URL" @@ -3247,6 +3556,7 @@ msgstr "For at kunne integrere fuldt ud med Stripe, sørg for at sætte din web #: adminpages/paymentsettings.php:474 #: adminpages/paymentsettings.php:515 #: classes/gateways/class.pmprogateway_braintree.php:348 +#: classes/gateways/class.pmprogateway_braintree.php:355 msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to" msgstr "For at kunne integrere fuldt ud med Braintree, sørg for at sætte din Silent Post URL til" @@ -3327,6 +3637,7 @@ msgstr "Besøgende, Visninger, og Logget Ind Rapport" #: classes/class-pmpro-members-list-table.php:234 #: classes/class-pmpro-members-list-table.php:233 #: adminpages/reports/login.php:105 +#: adminpages/reports/login.php:111 msgid "All Users" msgstr "Alle Brugere" @@ -3372,6 +3683,7 @@ msgstr "Registreringer" #: adminpages/reports/memberships.php:52 #: adminpages/reports/sales.php:53 #: adminpages/reports/sales.php:542 +#: adminpages/reports/sales.php:543 msgid "All Time" msgstr "Totalt" @@ -3383,6 +3695,7 @@ msgstr "Totalt" #: adminpages/orders.php:1081 #: adminpages/orders.php:1073 #: adminpages/orders.php:1074 +#: adminpages/orders.php:1162 msgid "This Year" msgstr "Dette År" @@ -3395,6 +3708,7 @@ msgstr "Dette År" #: adminpages/orders.php:1077 #: adminpages/orders.php:1069 #: adminpages/orders.php:1070 +#: adminpages/orders.php:1158 msgid "This Month" msgstr "Denne Måned" @@ -3435,6 +3749,8 @@ msgstr "Livstids-Værdi (LTV)" #: adminpages/reports/sales.php:295 #: adminpages/advancedsettings.php:322 #: adminpages/reports/sales.php:313 +#: adminpages/advancedsettings.php:329 +#: adminpages/reports/memberships.php:332 msgid "Daily" msgstr "Daglig" @@ -3447,6 +3763,8 @@ msgstr "Daglig" #: adminpages/reports/sales.php:296 #: adminpages/advancedsettings.php:328 #: adminpages/reports/sales.php:314 +#: adminpages/advancedsettings.php:335 +#: adminpages/reports/memberships.php:333 msgid "Monthly" msgstr "Månedelig" @@ -3457,11 +3775,13 @@ msgstr "Månedelig" #: adminpages/reports/memberships.php:335 #: adminpages/reports/sales.php:297 #: adminpages/reports/sales.php:315 +#: adminpages/reports/memberships.php:334 msgid "Annual" msgstr "Årlig" #: adminpages/reports/memberships.php:299 #: adminpages/reports/memberships.php:339 +#: adminpages/reports/memberships.php:338 msgid "Signups vs. Cancellations" msgstr "Registreringer vs Annulleringer" @@ -3472,6 +3792,7 @@ msgstr "Registreringer vs Annulleringer" #: adminpages/reports/memberships.php:385 #: adminpages/reports/sales.php:342 #: adminpages/reports/sales.php:360 +#: adminpages/reports/memberships.php:384 msgid "Generate Report" msgstr "Generér Rapport" @@ -3513,6 +3834,7 @@ msgstr "Salg" #: includes/cleanup.php:24 #: classes/class.memberorder.php:959 #: classes/class.memberorder.php:1001 +#: classes/class.memberorder.php:1010 #, php-format msgid "There was an error canceling the subscription for user with ID=%s. You will want to check your payment gateway to see if their subscription is still active." msgstr "Der er sket en fejl, ved annullering af abonnement for bruger med ID=%s. Du skal nok kontrollere din betalingsgateway, for at se om deres abonnementet stadigvæk er aktivt." @@ -3544,6 +3866,7 @@ msgstr "Medlemskab for %s hos %s er blevet ANNULLERET" #: classes/class.pmproemail.php:173 #: classes/class.pmproemail.php:269 #: classes/class.pmproemail.php:262 +#: classes/class.pmproemail.php:395 #, php-format msgid "Your membership confirmation for %s" msgstr "Bekræftigelse af dit medlemskab for %s" @@ -3617,6 +3940,18 @@ msgstr "Bekræftigelse af dit medlemskab for %s" #: classes/class.pmproemail.php:764 #: adminpages/orders.php:576 #: adminpages/orders.php:1343 +#: adminpages/orders.php:697 +#: adminpages/orders.php:1437 +#: classes/class.pmproemail.php:465 +#: classes/class.pmproemail.php:471 +#: classes/class.pmproemail.php:477 +#: classes/class.pmproemail.php:567 +#: classes/class.pmproemail.php:573 +#: classes/class.pmproemail.php:895 +#: classes/class.pmproemail.php:897 +#: classes/gateways/class.pmprogateway_braintree.php:516 +#: classes/gateways/class.pmprogateway_stripe.php:906 +#: includes/profile.php:454 msgid "Discount Code" msgstr "Rabatkode" @@ -3650,6 +3985,11 @@ msgstr "Rabatkode" #: classes/class.pmproemail.php:771 #: classes/class.pmproemail.php:905 #: classes/class.pmproemail.php:950 +#: classes/class.pmproemail.php:485 +#: classes/class.pmproemail.php:583 +#: classes/class.pmproemail.php:904 +#: classes/class.pmproemail.php:1038 +#: classes/class.pmproemail.php:1083 #, php-format msgid "This membership will expire on %s." msgstr "Dette medlemskab udløber den %s." @@ -3708,6 +4048,7 @@ msgstr "FAKTURA for %s medlemsskab" #: classes/class.pmproemail.php:794 #: classes/class.pmproemail.php:806 #: classes/class.pmproemail.php:799 +#: classes/class.pmproemail.php:932 #, php-format msgid "Your trial at %s is ending soon" msgstr "Din prøveperiode hos %s stopper snart" @@ -3718,6 +4059,7 @@ msgstr "Din prøveperiode hos %s stopper snart" #: classes/class.pmproemail.php:831 #: classes/class.pmproemail.php:843 #: classes/class.pmproemail.php:836 +#: classes/class.pmproemail.php:969 #, php-format msgid "Your membership at %s has ended" msgstr "Dit medlemskab hos %s er stoppet" @@ -3728,6 +4070,7 @@ msgstr "Dit medlemskab hos %s er stoppet" #: classes/class.pmproemail.php:858 #: classes/class.pmproemail.php:870 #: classes/class.pmproemail.php:863 +#: classes/class.pmproemail.php:996 #, php-format msgid "Your membership at %s will end soon" msgstr "Dit medlemsskab hos %s vil snart stoppe" @@ -3738,6 +4081,7 @@ msgstr "Dit medlemsskab hos %s vil snart stoppe" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:900 #: classes/class.pmproemail.php:893 +#: classes/class.pmproemail.php:1026 #, php-format msgid "Your membership at %s has been changed" msgstr "Dit medlemsskab hos %s er belvet ændret" @@ -3752,6 +4096,8 @@ msgstr "Dit medlemsskab hos %s er belvet ændret" #: includes/email.php:465 #: classes/class.pmproemail.php:898 #: classes/class.pmproemail.php:943 +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 #, php-format msgid "The new level is %s." msgstr "Det nye niveau er %s." @@ -3787,6 +4133,7 @@ msgstr "Dette medlemsskab udløber ikke" #: classes/class.pmproemail.php:933 #: classes/class.pmproemail.php:945 #: classes/class.pmproemail.php:938 +#: classes/class.pmproemail.php:1071 #, php-format msgid "Membership for %s at %s has been changed" msgstr "Medlemsskab for %s hos %s er blevet ændret" @@ -3869,36 +4216,42 @@ msgstr "Kunne ikke forbinde til Authorize.net" #: classes/gateways/class.pmprogateway_braintree.php:61 #: classes/gateways/class.pmprogateway_stripe.php:53 #: classes/gateways/class.pmprogateway_braintree.php:574 +#: classes/gateways/class.pmprogateway_braintree.php:581 msgid "Unknown error: Initial payment failed." msgstr "Ukendt fejl: Indledende betaling mislykkedes." #: classes/gateways/class.pmprogateway_braintree.php:120 #: classes/gateways/class.pmprogateway_braintree.php:650 #: classes/gateways/class.pmprogateway_braintree.php:653 +#: classes/gateways/class.pmprogateway_braintree.php:660 msgid "Error during settlement:" msgstr "Fejl under afvikling:" #: classes/gateways/class.pmprogateway_braintree.php:129 #: classes/gateways/class.pmprogateway_braintree.php:659 #: classes/gateways/class.pmprogateway_braintree.php:662 +#: classes/gateways/class.pmprogateway_braintree.php:669 msgid "Error during charge:" msgstr "Fejl under ændring:" #: classes/gateways/class.pmprogateway_braintree.php:198 #: classes/gateways/class.pmprogateway_braintree.php:762 #: classes/gateways/class.pmprogateway_braintree.php:765 +#: classes/gateways/class.pmprogateway_braintree.php:772 msgid "Failed to update customer." msgstr "Fejlet i at opdatere kunde." #: classes/gateways/class.pmprogateway_braintree.php:246 #: classes/gateways/class.pmprogateway_braintree.php:810 #: classes/gateways/class.pmprogateway_braintree.php:813 +#: classes/gateways/class.pmprogateway_braintree.php:820 msgid "Failed to create customer." msgstr "Fejlret i at oprette kunde." #: classes/gateways/class.pmprogateway_braintree.php:253 #: classes/gateways/class.pmprogateway_braintree.php:817 #: classes/gateways/class.pmprogateway_braintree.php:820 +#: classes/gateways/class.pmprogateway_braintree.php:827 msgid "Error creating customer record with Braintree:" msgstr "Fejl i at oprette en kunde konto hos Braintree:" @@ -3927,6 +4280,7 @@ msgstr "Fejl i at tilmelde hos Braintree:" #: classes/gateways/class.pmprogateway_stripe.php:361 #: classes/gateways/class.pmprogateway_braintree.php:1036 #: classes/gateways/class.pmprogateway_braintree.php:1039 +#: classes/gateways/class.pmprogateway_braintree.php:1046 msgid "Could not find the subscription." msgstr "Kunne ikke finde abonnement." @@ -3950,6 +4304,7 @@ msgstr "Noget af betalingen er gennemført, så vi kunne ikke refundere beløbet #: classes/gateways/class.pmprogateway_paypalexpress.php:854 #: classes/gateways/class.pmprogateway_paypal.php:726 #: classes/gateways/class.pmprogateway_paypalexpress.php:865 +#: classes/gateways/class.pmprogateway_paypalexpress.php:866 msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward." msgstr "Kontakt venligst hjemmesidens administrator eller annullér dit abonnement gennem PayPal, for at være sikker på at du ikke bliver trukket for beløbet fremover." @@ -3991,6 +4346,8 @@ msgstr "Fejl i at oprette kunde konto hos Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "Fejl i at oprette en plan hos Stripe:" @@ -4014,6 +4371,8 @@ msgstr "Fejl i at oprette en plan hos Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "Fejl i at tilmelde kunden til en plan hos Stripe:" @@ -4024,6 +4383,7 @@ msgstr "Fejl i at tilmelde kunden til en plan hos Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "Kunne ikke annullere det gamle abonnement." @@ -4562,6 +4922,7 @@ msgstr "og" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "Tilmeld !!name!! nu" @@ -4633,6 +4994,9 @@ msgstr "Nuværrende Niveau" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "Ingen" @@ -4691,6 +5055,9 @@ msgstr "Dit medlemskab er aktiv." #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "Niveau" @@ -4771,12 +5138,15 @@ msgstr "Redigér Profil" #: includes/profile.php:921 #: includes/profile.php:880 #: includes/profile.php:917 +#: includes/profile.php:920 +#: includes/profile.php:957 msgid "Change Password" msgstr "Skift Adganskode" #: pages/account.php:91 #: pages/account.php:87 #: adminpages/emailtemplates.php:156 +#: adminpages/emailtemplates.php:149 msgid "Billing Information" msgstr "Betalingsinformation" @@ -4860,6 +5230,7 @@ msgstr "Dit betalings-abonnement bliver styret af PayPal. Venligst Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -6203,113 +6638,135 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:199 #: adminpages/advancedsettings.php:201 +#: adminpages/advancedsettings.php:208 msgid "Filter searches and archives?" msgstr "" #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:205 +#: adminpages/advancedsettings.php:212 msgid "No - Non-members will see restricted posts/pages in searches and archives." msgstr "" #: adminpages/advancedsettings.php:204 #: adminpages/advancedsettings.php:206 +#: adminpages/advancedsettings.php:213 msgid "Yes - Only members will see restricted posts/pages in searches and archives." msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:333 #: adminpages/advancedsettings.php:348 +#: adminpages/advancedsettings.php:355 msgid "Hide Ads From Members?" msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -6335,6 +6792,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -6398,6 +6856,7 @@ msgstr "" #: adminpages/license.php:49 #: adminpages/dashboard.php:178 #: adminpages/license.php:41 +#: adminpages/license.php:53 msgid "Your license is invalid or expired." msgstr "" @@ -6412,6 +6871,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -6517,6 +6977,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -6560,6 +7021,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -6572,31 +7034,39 @@ msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 msgid "%d discount codes found." msgstr "" @@ -6622,6 +7092,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -6640,6 +7117,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -6657,6 +7140,11 @@ msgstr "" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "" @@ -6665,19 +7153,23 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -6718,192 +7210,241 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:960 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:170 #: includes/privacy.php:363 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -6933,6 +7474,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "" @@ -6950,12 +7492,14 @@ msgstr "" #: adminpages/license.php:59 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -6963,14 +7507,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -6987,35 +7534,44 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -7025,6 +7581,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -7032,6 +7590,7 @@ msgstr "" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -7039,6 +7598,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -7046,6 +7606,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -7053,6 +7614,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -7060,6 +7622,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -7067,6 +7630,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -7111,24 +7675,28 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" @@ -7155,60 +7723,77 @@ msgstr "" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -7218,6 +7803,8 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" @@ -7230,12 +7817,16 @@ msgstr "" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -7243,24 +7834,28 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "" @@ -7270,26 +7865,31 @@ msgstr "" #: adminpages/paymentsettings.php:122 #: adminpages/paymentsettings.php:127 +#: adminpages/paymentsettings.php:125 msgid "Choose a Gateway" msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" #: adminpages/paymentsettings.php:194 #: adminpages/paymentsettings.php:201 +#: adminpages/paymentsettings.php:199 msgid "Currency and Tax Settings" msgstr "" #: adminpages/paymentsettings.php:239 #: adminpages/paymentsettings.php:246 +#: adminpages/paymentsettings.php:244 msgid "Tax Rate" msgstr "" @@ -7299,11 +7899,13 @@ msgstr "" #: adminpages/paymentsettings.php:260 #: adminpages/paymentsettings.php:273 +#: adminpages/paymentsettings.php:271 msgid "Your Site URL starts with https:// and so PMPro will allow your entire site to be served over HTTPS." msgstr "" #: adminpages/paymentsettings.php:270 #: adminpages/paymentsettings.php:283 +#: adminpages/paymentsettings.php:281 msgid "Recommended: Yes. Try the JavaScript redirects setting if you are having issues with infinite redirect loops." msgstr "" @@ -7313,16 +7915,19 @@ msgstr "" #: adminpages/paymentsettings.php:287 #: adminpages/paymentsettings.php:306 +#: adminpages/paymentsettings.php:304 msgid "Extra HTTPS URL Filter" msgstr "" #: adminpages/paymentsettings.php:290 #: adminpages/paymentsettings.php:309 +#: adminpages/paymentsettings.php:307 msgid "Pass all generated HTML through a URL filter to add HTTPS to URLs used on secure pages. Check this if you are using SSL and have warnings on your checkout pages." msgstr "" #: adminpages/reports.php:19 #: adminpages/reports.php:18 +#: adminpages/reports.php:21 msgid "Back to Reports Dashboard" msgstr "" @@ -7350,6 +7955,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -7360,6 +7966,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -7418,29 +8025,35 @@ msgid "All Cancellations" msgstr "" #: adminpages/reports/memberships.php:338 +#: adminpages/reports/memberships.php:337 msgid "Signups vs. All Cancellations" msgstr "" #: adminpages/reports/memberships.php:340 +#: adminpages/reports/memberships.php:339 msgid "Signups vs. Expirations" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -7651,63 +8264,77 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:962 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:463 #: classes/class.pmproemail.php:475 #: classes/class.pmproemail.php:468 +#: classes/class.pmproemail.php:601 msgid "Your billing information has been updated at %s" msgstr "" #: classes/class.pmproemail.php:513 #: classes/class.pmproemail.php:525 #: classes/class.pmproemail.php:518 +#: classes/class.pmproemail.php:651 msgid "Billing information has been updated for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -7720,30 +8347,36 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -7751,6 +8384,7 @@ msgstr "" #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:167 +#: paid-memberships-pro.php:173 msgid "Authorize.net" msgstr "" @@ -7766,14 +8400,17 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:91 #: classes/gateways/class.pmprogateway_stripe.php:97 #: classes/gateways/class.pmprogateway_stripe.php:1353 +#: classes/gateways/class.pmprogateway_stripe.php:1478 msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" @@ -7781,10 +8418,13 @@ msgstr "" #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:167 #: paid-memberships-pro.php:168 +#: classes/gateways/class.pmprogateway_braintree.php:258 +#: paid-memberships-pro.php:174 msgid "Braintree Payments" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:308 +#: classes/gateways/class.pmprogateway_braintree.php:315 msgid "Braintree Settings" msgstr "" @@ -7798,21 +8438,30 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:750 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -7820,11 +8469,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -8126,6 +8778,7 @@ msgstr "" #: paid-memberships-pro.php:161 #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:164 +#: paid-memberships-pro.php:170 msgid "PayPal Website Payments Pro" msgstr "" @@ -8133,6 +8786,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:141 #: classes/gateways/class.pmprogateway_paypalstandard.php:133 #: classes/gateways/class.pmprogateway_paypalexpress.php:151 +#: classes/gateways/class.pmprogateway_paypalexpress.php:152 msgid "PayPal Settings" msgstr "" @@ -8140,12 +8794,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:185 #: classes/gateways/class.pmprogateway_paypalexpress.php:194 #: classes/gateways/class.pmprogateway_paypalexpress.php:204 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 msgid "Confirmation Step" msgstr "" @@ -8154,11 +8810,14 @@ msgstr "" #: paid-memberships-pro.php:162 #: classes/gateways/class.pmprogateway_paypalexpress.php:94 #: paid-memberships-pro.php:163 +#: classes/gateways/class.pmprogateway_paypalexpress.php:95 +#: paid-memberships-pro.php:169 msgid "PayPal Express" msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -8167,6 +8826,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -8175,6 +8835,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -8182,6 +8843,7 @@ msgstr "" #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:166 +#: paid-memberships-pro.php:172 msgid "PayPal Standard" msgstr "" @@ -8199,6 +8861,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:258 #: classes/gateways/class.pmprogateway_stripe.php:216 #: paid-memberships-pro.php:162 +#: classes/gateways/class.pmprogateway_stripe.php:234 +#: paid-memberships-pro.php:168 msgid "Stripe" msgstr "" @@ -8210,6 +8874,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -8218,6 +8883,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -8229,6 +8895,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -8240,6 +8907,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -8251,6 +8919,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -8259,6 +8928,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -8270,6 +8940,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -8281,6 +8952,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -8289,6 +8961,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -8300,6 +8973,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -8308,6 +8982,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -8331,6 +9006,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -8347,6 +9024,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -8355,6 +9034,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -8363,6 +9043,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -8371,6 +9052,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -8378,6 +9060,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -8386,6 +9069,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -8399,6 +9083,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -8407,6 +9093,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -8415,6 +9102,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -8424,6 +9112,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -8441,6 +9131,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -8449,6 +9141,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -8470,6 +9163,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -8478,6 +9173,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -8486,6 +9182,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -8494,6 +9191,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -8502,6 +9200,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -8510,6 +9209,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -8518,6 +9218,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -8526,6 +9227,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -8534,6 +9236,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -8542,6 +9245,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -8550,6 +9254,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -8562,6 +9267,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -8570,6 +9276,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -8578,6 +9285,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -8586,6 +9294,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -8594,6 +9303,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -8612,6 +9322,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "" @@ -8664,6 +9375,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "" @@ -8675,6 +9388,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "" @@ -8684,6 +9398,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "" @@ -8701,6 +9416,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "" @@ -8712,6 +9429,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 msgid "Error: Unkown error while refunding charge #%s" msgstr "" @@ -8721,6 +9439,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -8741,6 +9460,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -8749,6 +9472,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -8758,6 +9482,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -8767,6 +9492,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -8778,6 +9504,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -8789,6 +9516,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -8800,6 +9528,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -8811,34 +9540,42 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:59 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "" @@ -8881,6 +9618,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -8893,6 +9631,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -8905,6 +9644,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -10142,6 +10882,7 @@ msgstr "" #: includes/email-templates.php:68 #: shortcodes/pmpro_account.php:43 +#: adminpages/orders.php:1431 msgid "Billing" msgstr "" @@ -10732,14 +11473,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -10748,18 +11492,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -10771,6 +11519,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -10909,6 +11658,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -11038,6 +11788,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -11045,6 +11796,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -11076,6 +11828,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -11085,6 +11838,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -11092,6 +11846,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -11196,6 +11951,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -11203,6 +11960,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -11210,6 +11968,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -11217,6 +11976,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -11288,6 +12048,7 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" @@ -11296,6 +12057,8 @@ msgstr "" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "" @@ -11306,121 +12069,142 @@ msgstr "" #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -11432,6 +12216,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -11560,18 +12347,21 @@ msgstr "" #: paid-memberships-pro.php:162 #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:165 +#: paid-memberships-pro.php:171 msgid "PayPal Payflow Pro/PayPal Pro" msgstr "" #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:168 #: paid-memberships-pro.php:169 +#: paid-memberships-pro.php:175 msgid "Cybersource" msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -11621,6 +12411,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -11659,6 +12450,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -11674,6 +12480,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -11689,6 +12496,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -11721,6 +12529,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -11733,6 +12542,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -11758,11 +12568,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -11770,6 +12585,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -11777,6 +12593,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -11799,6 +12616,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -11824,6 +12642,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -11831,6 +12650,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -11863,6 +12683,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -11885,6 +12706,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -11895,11 +12717,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -11919,6 +12752,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -11932,6 +12766,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -11941,6 +12776,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -11950,10 +12786,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -11964,6 +12802,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -11971,6 +12810,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -11980,6 +12820,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -11989,12 +12830,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -12002,6 +12846,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -12010,6 +12856,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -12017,6 +12864,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -12024,27 +12872,32 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: paid-memberships-pro.php:194 #: paid-memberships-pro.php:195 +#: paid-memberships-pro.php:201 msgid "Once a month" msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -12102,12 +12955,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -12117,6 +12972,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -12126,6 +12982,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -12135,54 +12992,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -12193,42 +13060,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -12243,51 +13120,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -12295,6 +13184,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -12302,6 +13192,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -12309,6 +13200,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -12317,6 +13209,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -12330,6 +13224,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -12350,19 +13245,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -12372,31 +13271,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -12426,25 +13333,30 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "" @@ -12514,26 +13426,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -12542,51 +13460,62 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -12600,19 +13529,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -12643,3 +13576,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-de_DE.mo b/languages/paid-memberships-pro-de_DE.mo index 49cbd400e..82a54f32c 100644 Binary files a/languages/paid-memberships-pro-de_DE.mo and b/languages/paid-memberships-pro-de_DE.mo differ diff --git a/languages/paid-memberships-pro-de_DE.po b/languages/paid-memberships-pro-de_DE.po index c32b74f66..8aef62b49 100644 --- a/languages/paid-memberships-pro-de_DE.po +++ b/languages/paid-memberships-pro-de_DE.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:20:20+00:00\n" +"POT-Creation-Date: 2022-05-05T20:37:08+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -104,6 +104,7 @@ msgstr "Nochmal überprüfen" #: adminpages/orders.php:1014 #: includes/metaboxes.php:19 #: adminpages/orders.php:1015 +#: adminpages/orders.php:1103 msgid "All" msgstr "Alle" @@ -156,6 +157,7 @@ msgstr "Typ" #: adminpages/membershiplevels.php:300 #: adminpages/membershiplevels.php:324 #: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "Beschreibung" @@ -253,6 +255,11 @@ msgstr "Aktivieren %s" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "Löschen" @@ -334,6 +341,18 @@ msgstr "WordPress.org" #: adminpages/orders.php:913 #: adminpages/orders.php:1537 #: adminpages/orders.php:1546 +#: adminpages/orders.php:704 +#: adminpages/orders.php:996 +#: adminpages/orders.php:1689 +#: adminpages/orders.php:1698 +#: classes/class.pmproemail.php:261 +#: classes/class.pmproemail.php:327 +#: includes/profile.php:167 +#: includes/profile.php:483 +#: includes/profile.php:484 +#: includes/profile.php:556 +#: includes/profile.php:557 +#: includes/profile.php:558 msgid "N/A" msgstr "Nicht verfügbar" @@ -459,6 +478,7 @@ msgstr "Die Zahlungs-Einstellungen für dieses Paket werden von 2Checkout nicht #: classes/gateways/class.pmprogateway_stripe.php:76 #: classes/gateways/class.pmprogateway_stripe.php:82 #: classes/gateways/class.pmprogateway_stripe.php:1338 +#: classes/gateways/class.pmprogateway_stripe.php:1463 #, php-format msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade." msgstr "" @@ -594,6 +614,11 @@ msgstr "Zahlungsdienstleister & SSL" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "Email" @@ -635,6 +660,7 @@ msgstr "Sind Sie sicher, dass Sie das tun wollen? Versuchen Sie es noch einmal." #: adminpages/advancedsettings.php:46 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "Ihre erweiterten Einstellungen wurden gespeichert." @@ -661,6 +687,7 @@ msgstr "Loggen Sie sich bitte ein um diesen Inhalt zu sehen. #: adminpages/advancedsettings.php:116 #: includes/updates/upgrade_1.php:13 #: adminpages/advancedsettings.php:118 +#: adminpages/advancedsettings.php:126 msgid "This content is for members only. Visit the site and log in/register to read." msgstr "Diese Inhalte sind nur für angemeldete User sichtbar. Bitte melden Sie sich an oder registrieren Sie sich, um die Inhalte zu sehen." @@ -681,6 +708,7 @@ msgstr "Diese Inhalte sind nur für angemeldete User sichtbar. Bitte melden Sie #: adminpages/advancedsettings.php:132 #: includes/adminpages.php:73 #: adminpages/advancedsettings.php:134 +#: adminpages/advancedsettings.php:142 msgid "Advanced Settings" msgstr "Erweiterte Einstellungen" @@ -691,6 +719,7 @@ msgstr "Erweiterte Einstellungen" #: adminpages/advancedsettings.php:97 #: adminpages/advancedsettings.php:164 #: adminpages/advancedsettings.php:166 +#: adminpages/advancedsettings.php:173 msgid "Message for Logged-in Non-members" msgstr "Nachricht für eingeloggte Nicht-Mitglieder" @@ -701,6 +730,7 @@ msgstr "Nachricht für eingeloggte Nicht-Mitglieder" #: adminpages/advancedsettings.php:101 #: adminpages/advancedsettings.php:168 #: adminpages/advancedsettings.php:170 +#: adminpages/advancedsettings.php:177 msgid "This message replaces the post content for non-members. Available variables" msgstr "Diese Nachricht ersetzt den Artikel-Inhalt für Nicht-Mitglieder. Verfügbare Variablen" @@ -711,6 +741,7 @@ msgstr "Diese Nachricht ersetzt den Artikel-Inhalt für Nicht-Mitglieder. Verfü #: adminpages/advancedsettings.php:106 #: adminpages/advancedsettings.php:173 #: adminpages/advancedsettings.php:175 +#: adminpages/advancedsettings.php:182 msgid "Message for Logged-out Users" msgstr "Nachricht für ausgeloggte User" @@ -721,6 +752,7 @@ msgstr "Nachricht für ausgeloggte User" #: adminpages/advancedsettings.php:110 #: adminpages/advancedsettings.php:177 #: adminpages/advancedsettings.php:179 +#: adminpages/advancedsettings.php:186 msgid "This message replaces the post content for logged-out visitors." msgstr "Diese Nachricht ersetzt den Artikel-Inhalt für ausgeloggte Besucher." @@ -731,6 +763,7 @@ msgstr "Diese Nachricht ersetzt den Artikel-Inhalt für ausgeloggte Besucher." #: adminpages/advancedsettings.php:115 #: adminpages/advancedsettings.php:182 #: adminpages/advancedsettings.php:184 +#: adminpages/advancedsettings.php:191 msgid "Message for RSS Feed" msgstr "Nachricht für RSS Feed" @@ -741,6 +774,7 @@ msgstr "Nachricht für RSS Feed" #: adminpages/advancedsettings.php:119 #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "This message replaces the post content in RSS feeds." msgstr "Diese Nachricht ersetzt den Artikel-Inhalt in RSS-feeds." @@ -749,6 +783,7 @@ msgstr "Diese Nachricht ersetzt den Artikel-Inhalt in RSS-feeds." #: adminpages/advancedsettings.php:125 #: adminpages/advancedsettings.php:199 #: adminpages/advancedsettings.php:201 +#: adminpages/advancedsettings.php:208 msgid "Filter searches and archives?" msgstr "Suchen und Archive filtern?" @@ -757,6 +792,7 @@ msgstr "Suchen und Archive filtern?" #: adminpages/advancedsettings.php:129 #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:205 +#: adminpages/advancedsettings.php:212 msgid "No - Non-members will see restricted posts/pages in searches and archives." msgstr "Nein - Nicht-Mitglieder werden eingeschränkte Beiträge/Seiten in Suchen und Archiven sehen." @@ -765,6 +801,7 @@ msgstr "Nein - Nicht-Mitglieder werden eingeschränkte Beiträge/Seiten in Suche #: adminpages/advancedsettings.php:130 #: adminpages/advancedsettings.php:204 #: adminpages/advancedsettings.php:206 +#: adminpages/advancedsettings.php:213 msgid "Yes - Only members will see restricted posts/pages in searches and archives." msgstr "Ja - Nur Mitglieder werden eingeschränkte Beiträge/Seiten in Suchen und Archiven sehen." @@ -775,6 +812,7 @@ msgstr "Ja - Nur Mitglieder werden eingeschränkte Beiträge/Seiten in Suchen un #: adminpages/advancedsettings.php:136 #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:212 +#: adminpages/advancedsettings.php:219 msgid "Show Excerpts to Non-Members?" msgstr "Soll Nicht-Mitgliedern ein Ausschnitt gezeigt werden?" @@ -785,6 +823,7 @@ msgstr "Soll Nicht-Mitgliedern ein Ausschnitt gezeigt werden?" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:214 #: adminpages/advancedsettings.php:216 +#: adminpages/advancedsettings.php:223 msgid "No - Hide excerpts." msgstr "Nein - Ausschnitt verbergen." @@ -795,6 +834,7 @@ msgstr "Nein - Ausschnitt verbergen." #: adminpages/advancedsettings.php:141 #: adminpages/advancedsettings.php:215 #: adminpages/advancedsettings.php:217 +#: adminpages/advancedsettings.php:224 msgid "Yes - Show excerpts." msgstr "Ja - Ausschnitt anzeigen." @@ -803,6 +843,7 @@ msgstr "Ja - Ausschnitt anzeigen." #: adminpages/advancedsettings.php:147 #: adminpages/advancedsettings.php:333 #: adminpages/advancedsettings.php:348 +#: adminpages/advancedsettings.php:355 msgid "Hide Ads From Members?" msgstr "Werbung vor Mitgliedern verstecken?" @@ -893,6 +934,16 @@ msgstr "Werbung vor Mitgliedern verstecken?" #: classes/gateways/class.pmprogateway_stripe.php:404 #: classes/gateways/class.pmprogateway_stripe.php:418 #: adminpages/paymentsettings.php:279 +#: adminpages/advancedsettings.php:254 +#: adminpages/advancedsettings.php:267 +#: adminpages/advancedsettings.php:359 +#: adminpages/advancedsettings.php:418 +#: adminpages/advancedsettings.php:526 +#: adminpages/membershiplevels.php:939 +#: adminpages/paymentsettings.php:277 +#: classes/gateways/class.pmprogateway_stripe.php:430 +#: classes/gateways/class.pmprogateway_stripe.php:444 +#: includes/profile.php:78 msgid "No" msgstr "Nein" @@ -903,6 +954,7 @@ msgstr "Nein" #: adminpages/advancedsettings.php:152 #: adminpages/advancedsettings.php:338 #: adminpages/advancedsettings.php:353 +#: adminpages/advancedsettings.php:360 msgid "Hide Ads From All Members" msgstr "Werbung für alle Mitglieder ausblenden" @@ -913,6 +965,7 @@ msgstr "Werbung für alle Mitglieder ausblenden" #: adminpages/advancedsettings.php:153 #: adminpages/advancedsettings.php:339 #: adminpages/advancedsettings.php:354 +#: adminpages/advancedsettings.php:361 msgid "Hide Ads From Certain Members" msgstr "Werbung für bestimmte Mitglieder ausblenden" @@ -931,6 +984,7 @@ msgstr "Werbung von den folgenden Plugins wird automatisch deaktiviert" #: adminpages/advancedsettings.php:161 #: adminpages/advancedsettings.php:346 #: adminpages/advancedsettings.php:361 +#: adminpages/advancedsettings.php:368 msgid "To hide ads in your template code, use code like the following" msgstr "Um Werbung in Ihrem Template Code zu verbergen, verwenden Sie den folgenden Code" @@ -941,6 +995,7 @@ msgstr "Um Werbung in Ihrem Template Code zu verbergen, verwenden Sie den folgen #: adminpages/advancedsettings.php:172 #: adminpages/advancedsettings.php:355 #: adminpages/advancedsettings.php:370 +#: adminpages/advancedsettings.php:377 msgid "Choose Levels to Hide Ads From" msgstr "Pakete auswählen, für die Werbung ausgeblendet werden soll" @@ -963,6 +1018,7 @@ msgstr "Alle Besucher der Registrierungs-Seite zu /susbcription/ weiterleiten?" #: adminpages/advancedsettings.php:390 #: adminpages/advancedsettings.php:392 #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "multisite only" msgstr "nur multisite" @@ -1038,6 +1094,12 @@ msgstr "nur multisite" #: classes/gateways/class.pmprogateway_stripe.php:406 #: classes/gateways/class.pmprogateway_stripe.php:420 #: adminpages/paymentsettings.php:280 +#: adminpages/advancedsettings.php:419 +#: adminpages/membershiplevels.php:934 +#: adminpages/paymentsettings.php:278 +#: classes/gateways/class.pmprogateway_stripe.php:432 +#: classes/gateways/class.pmprogateway_stripe.php:446 +#: includes/profile.php:79 msgid "Yes" msgstr "Ja" @@ -1048,6 +1110,7 @@ msgstr "Ja" #: adminpages/advancedsettings.php:218 #: adminpages/advancedsettings.php:241 #: adminpages/advancedsettings.php:256 +#: adminpages/advancedsettings.php:263 msgid "Use reCAPTCHA?" msgstr "reCAPTCHA verwenden?" @@ -1067,6 +1130,7 @@ msgstr "Ja - nur Gratis-Mitgliedschaft" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:247 #: adminpages/advancedsettings.php:262 +#: adminpages/advancedsettings.php:269 msgid "Yes - All memberships." msgstr "Ja - jede Mitgliedschaft" @@ -1077,6 +1141,7 @@ msgstr "Ja - jede Mitgliedschaft" #: adminpages/advancedsettings.php:226 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "A free reCAPTCHA key is required." msgstr "Ein kostenloser reCAPTCHA key ist erforderlich." @@ -1087,18 +1152,21 @@ msgstr "Ein kostenloser reCAPTCHA key ist erforderlich." #: adminpages/advancedsettings.php:226 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "Click here to signup for reCAPTCHA" msgstr "Klicken Sie hier um sich bei reCAPTCHA anzumelden" #: adminpages/advancedsettings.php:248 #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "reCAPTCHA Site Key" #: adminpages/advancedsettings.php:251 #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "reCAPTCHA Secret Key" @@ -1149,6 +1217,9 @@ msgstr "Falls Ja, erstellen Sie eine WordPress Seite mit Ihren AGB und wählen S #: adminpages/pagesettings.php:508 #: adminpages/pagesettings.php:512 #: adminpages/paymentsettings.php:316 +#: adminpages/advancedsettings.php:574 +#: adminpages/pagesettings.php:511 +#: adminpages/paymentsettings.php:314 msgid "Save Settings" msgstr "Einstellungen speichern" @@ -1264,6 +1335,7 @@ msgstr "Fehler beim Löschen des Codes. Bitte versuchen Sie es erneut." #: adminpages/discountcodes.php:796 #: adminpages/discountcodes.php:354 #: adminpages/discountcodes.php:798 +#: adminpages/discountcodes.php:799 msgid "Code not found." msgstr "Code nicht gefunden." @@ -1298,6 +1370,7 @@ msgstr "Gutscheincode bearbeiten" #: adminpages/discountcodes.php:735 #: adminpages/discountcodes.php:377 #: adminpages/discountcodes.php:737 +#: adminpages/discountcodes.php:738 msgid "Add New Discount Code" msgstr "Neuen Gutscheincode hinzufügen." @@ -1368,6 +1441,8 @@ msgstr "Neuen Gutscheincode hinzufügen." #: adminpages/reports/login.php:182 #: adminpages/templates/orders-email.php:49 #: adminpages/templates/orders-print.php:78 +#: adminpages/membershiplevels.php:345 +#: adminpages/membershiplevels.php:805 msgid "ID" msgstr "ID" @@ -1440,6 +1515,9 @@ msgstr "Wird beim Speichern automatisch generiert." #: adminpages/dashboard.php:292 #: adminpages/orders.php:429 #: adminpages/orders.php:1333 +#: adminpages/discountcodes.php:787 +#: adminpages/orders.php:475 +#: adminpages/orders.php:1426 msgid "Code" msgstr "Code" @@ -1457,6 +1535,7 @@ msgstr "Code" #: adminpages/discountcodes.php:489 #: includes/profile.php:501 #: includes/profile.php:497 +#: includes/profile.php:537 msgid "Start Date" msgstr "Start Datum" @@ -1525,6 +1604,8 @@ msgstr "Start Datum" #: classes/gateways/class.pmprogateway_stripe.php:1326 #: classes/gateways/class.pmprogateway_stripe.php:785 #: pages/billing.php:381 +#: classes/gateways/class.pmprogateway_braintree.php:486 +#: classes/gateways/class.pmprogateway_stripe.php:893 msgid "Expiration Date" msgstr "Ablaufdatum" @@ -1547,6 +1628,7 @@ msgstr "Ablaufdatum" #: adminpages/discountcodes.php:787 #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:789 +#: adminpages/discountcodes.php:790 msgid "Uses" msgstr "Nutzungen" @@ -1594,6 +1676,7 @@ msgstr "Für welche Pakete wird dieser Code angewandt?" #: adminpages/discountcodes.php:574 #: adminpages/membershiplevels.php:401 #: adminpages/discountcodes.php:576 +#: adminpages/membershiplevels.php:399 msgid "Initial Payment" msgstr "Einmal-Zahlung" @@ -1615,6 +1698,7 @@ msgstr "Einmal-Zahlung" #: adminpages/discountcodes.php:585 #: adminpages/membershiplevels.php:412 #: adminpages/discountcodes.php:587 +#: adminpages/membershiplevels.php:410 msgid "The initial amount collected at registration." msgstr "Einmal-Zahlung, die bei Anmeldung fällig wird." @@ -1636,6 +1720,7 @@ msgstr "Einmal-Zahlung, die bei Anmeldung fällig wird." #: adminpages/discountcodes.php:590 #: adminpages/membershiplevels.php:417 #: adminpages/discountcodes.php:592 +#: adminpages/membershiplevels.php:415 msgid "Recurring Subscription" msgstr "Abo-Mitgliedschaft" @@ -1657,6 +1742,7 @@ msgstr "Abo-Mitgliedschaft" #: adminpages/discountcodes.php:591 #: adminpages/membershiplevels.php:418 #: adminpages/discountcodes.php:593 +#: adminpages/membershiplevels.php:416 msgid "Check if this level has a recurring subscription payment." msgstr "Auswählen, wenn dieses Paket eine Abo-Mitgliedschaft haben soll." @@ -1677,6 +1763,7 @@ msgstr "Auswählen, wenn dieses Paket eine Abo-Mitgliedschaft haben soll." #: adminpages/discountcodes.php:595 #: adminpages/membershiplevels.php:422 #: adminpages/discountcodes.php:597 +#: adminpages/membershiplevels.php:420 msgid "Billing Amount" msgstr "Gesamtbetrag" @@ -1738,6 +1825,10 @@ msgstr "Gesamtbetrag" #: classes/gateways/class.pmprogateway_stripe.php:2637 #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2635 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3092 msgid "Day(s)" msgstr "Tag(e)" @@ -1799,6 +1890,10 @@ msgstr "Tag(e)" #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2641 #: classes/gateways/class.pmprogateway_stripe.php:2637 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3094 msgid "Month(s)" msgstr "Monat(e)" @@ -1860,6 +1955,10 @@ msgstr "Monat(e)" #: classes/gateways/class.pmprogateway_stripe.php:2638 #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2636 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3093 msgid "Week(s)" msgstr "Woche(n)" @@ -1921,6 +2020,10 @@ msgstr "Woche(n)" #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2642 #: classes/gateways/class.pmprogateway_stripe.php:2638 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3095 msgid "Year(s)" msgstr "Jahr(e)" @@ -1942,6 +2045,7 @@ msgstr "Jahr(e)" #: adminpages/discountcodes.php:618 #: adminpages/membershiplevels.php:446 #: adminpages/discountcodes.php:620 +#: adminpages/membershiplevels.php:444 msgid "The amount to be billed one cycle after the initial payment." msgstr "Der Betrag, der eine Periode nach der Einmal-Zahlung fällig wird." @@ -1963,6 +2067,7 @@ msgstr "Der Betrag, der eine Periode nach der Einmal-Zahlung fällig wird." #: adminpages/discountcodes.php:628 #: adminpages/membershiplevels.php:465 #: adminpages/discountcodes.php:630 +#: adminpages/membershiplevels.php:463 msgid "Billing Cycle Limit" msgstr "Limit an Zahlungs-Perioden" @@ -1984,6 +2089,7 @@ msgstr "Limit an Zahlungs-Perioden" #: adminpages/discountcodes.php:632 #: adminpages/membershiplevels.php:469 #: adminpages/discountcodes.php:634 +#: adminpages/membershiplevels.php:467 msgid "The total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "Die gesamte Anzahl an Zahlungsperioden für dieses Level, inklusive der Test-Periode (falls zutreffend) aber ohne die Einmal-Zahlung. Auf Null setzen, falls der Zugang unbegrenzt ist." @@ -2005,6 +2111,8 @@ msgstr "Die gesamte Anzahl an Zahlungsperioden für dieses Leve #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "Testperiode" @@ -2027,6 +2135,8 @@ msgstr "Testperiode" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "Aktivieren, um eine Testperiode hinzuzufügen." @@ -2049,6 +2159,7 @@ msgstr "Aktivieren, um eine Testperiode hinzuzufügen." #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "Betrag für Testperiode" @@ -2071,6 +2182,7 @@ msgstr "Betrag für Testperiode" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "für die ersten" @@ -2093,6 +2205,7 @@ msgstr "für die ersten" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "Abonnement Zahlungen" @@ -2116,6 +2229,7 @@ msgstr "Abonnement Zahlungen" #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "Zugang läuft ab" @@ -2138,6 +2252,7 @@ msgstr "Zugang läuft ab" #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "Wählen Sie diese Option, wenn der Zugang ablaufen soll." @@ -2162,6 +2277,8 @@ msgstr "Wählen Sie diese Option, wenn der Zugang ablaufen soll." #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "Läuft ab in" @@ -2184,6 +2301,8 @@ msgstr "Läuft ab in" #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr " Dauer des Zugangs bestimmen. Beachten Sie, dass zukünftige Zahlungen (Abo-Zahlungen, falls welche anfallen) storniert werden, wenn der Zugang abläuft. " @@ -2197,12 +2316,15 @@ msgstr " Dauer des Zugangs bestimmen. Beachten Sie, dass zukünftige Zahlungen ( #: adminpages/discountcodes.php:636 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "Membership Gutscheincodes" #: adminpages/discountcodes.php:700 #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 #, php-format msgid "%d discount codes found." msgstr "%d Gutscheincodes gefunden." @@ -2217,6 +2339,7 @@ msgstr "%d Gutscheincodes gefunden." #: adminpages/discountcodes.php:646 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "Gutscheincodes durchsuchen" @@ -2234,6 +2357,7 @@ msgstr "Gutscheincodes durchsuchen" #: adminpages/reports/login.php:99 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "Suchen" @@ -2247,6 +2371,7 @@ msgstr "Suchen" #: adminpages/discountcodes.php:667 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "Beginnt" @@ -2284,6 +2409,8 @@ msgstr "Beginnt" #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "Endet" @@ -2298,6 +2425,7 @@ msgstr "Endet" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "Levels" @@ -2361,6 +2489,7 @@ msgstr "Gutscheincodes erlauben Ihnen, Zugänge zu günstigeren Preisen an ausge #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "bearbeiten" @@ -2438,6 +2567,7 @@ msgstr "Email Einstellungen" #: adminpages/emailsettings.php:61 #: adminpages/emailsettings.php:70 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "wordpress@yourdomain.com wird per default als Absender für vom System verschickte e-mails verwendet. Sie können diese e-mail Adresse über die untenstehenden Felder ändern." @@ -2449,6 +2579,7 @@ msgstr "Um das Design von system-generierten e-mails anzupassen, fügen Sie die #: adminpages/emailsettings.php:69 #: adminpages/emailsettings.php:78 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "Von Email" @@ -2456,18 +2587,21 @@ msgstr "Von Email" #: adminpages/emailsettings.php:77 #: adminpages/emailsettings.php:86 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "Von Name" #: adminpages/emailsettings.php:104 #: adminpages/emailsettings.php:94 #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "Nur PMPro e-mails filtern?" #: adminpages/emailsettings.php:108 #: adminpages/emailsettings.php:98 #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 #, php-format msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "Wenn deaktiviert werden alle E-Mails von \"WordPress <%s>\" gefiltert, um die obigen Einstellungen zu verwenden." @@ -2680,6 +2814,8 @@ msgstr "Neues Paket hinzufügen" #: adminpages/reports/history.php:184 #: adminpages/reports/login.php:181 #: adminpages/reports/login.php:184 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 msgid "Name" msgstr "Name" @@ -2689,6 +2825,7 @@ msgstr "Name" #: adminpages/membershiplevels.php:318 #: adminpages/membershiplevels.php:342 #: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "Bestätigungs-Nachricht" @@ -2709,6 +2846,8 @@ msgstr "Bestätigungs-Nachricht" #: adminpages/membershiplevels.php:655 #: adminpages/membershiplevels.php:397 #: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "Zahlungs-Einstellungen" @@ -2746,6 +2885,8 @@ msgstr "Zahlungs-Einstellungen" #: classes/gateways/class.pmprogateway_stripe.php:2696 #: classes/gateways/class.pmprogateway_stripe.php:2698 #: classes/gateways/class.pmprogateway_stripe.php:2694 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "pro" @@ -2768,6 +2909,7 @@ msgstr "Stripe unterstützt derzeit nur \"Wochen\", \"Monate\" oder \"Jahre\" al #: adminpages/discountcodes.php:620 #: adminpages/membershiplevels.php:448 #: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:446 msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." msgstr "Braintree unterstützt derzeit nur \"Monate\" oder \"Jahre\" als Zahlungsperioden." @@ -2779,6 +2921,7 @@ msgstr "Braintree unterstützt derzeit nur \"Monate\" oder \"Jahre\" als Zahlung #: adminpages/membershiplevels.php:396 #: adminpages/membershiplevels.php:417 #: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." msgstr "Nach dem Speichern des Pakets notieren Sie sich die ID und erstellen Sie einen \"Plan\" in Ihrem Braintree Dashboard mit den gleichen Einstellungen und der \"Plan ID\" wie in pmpro_#, wobei # die Level ID ist." @@ -2808,6 +2951,8 @@ msgstr "Nach dem Speichern des Pakets notieren Sie sich die ID und erstellen Sie #: adminpages/membershiplevels.php:454 #: adminpages/membershiplevels.php:459 #: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 msgid "Note" msgstr "Hinweis" @@ -2831,6 +2976,7 @@ msgstr "Sie müssen in Ihrem Braintree Dashboard einen \"Plan\" anlegen mit den #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "Stripe unterstützt derzeit keine Zahlungs-Limits. Sie können unten dennoch ein Ablaufdatum festlegen." @@ -2844,6 +2990,8 @@ msgstr "Stripe unterstützt derzeit keine Zahlungs-Limits. Sie können unten den #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "2Checkout unterstützt keine Testperioden. Sie können eine Testperiode einrichten, indem Sie eine Erst-Zahlung einstellen, die sich von den anderen Beträgen unterscheidet." @@ -2858,6 +3006,7 @@ msgstr "2Checkout unterstützt keine Testperioden. Sie können eine Testperiode #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "Stripe unterstützt derzeit keine Beträge für Testperioden, die größer als $0 sind." @@ -2872,6 +3021,7 @@ msgstr "Stripe unterstützt derzeit keine Beträge für Testperioden, die größ #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "Braintree unterstützt derzeit keine Beträge für Testperioden, die größer als $0 sind." @@ -2886,6 +3036,7 @@ msgstr "Braintree unterstützt derzeit keine Beträge für Testperioden, die gr #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "Payflow unterstützt derzeit keine Beträge für Testperioden, die größer als $0 sind." @@ -2902,6 +3053,7 @@ msgstr "Payflow unterstützt derzeit keine Beträge für Testperioden, die grö #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "Andere Einstellungen" @@ -2943,6 +3095,8 @@ msgstr "Auswählen, um dieses Paket auf der Paket-Seite zu verbergen und die Anm #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "Content Einstellungen" @@ -2956,6 +3110,7 @@ msgstr "Content Einstellungen" #: adminpages/membershiplevels.php:500 #: adminpages/membershiplevels.php:521 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "Kategorien" @@ -2966,6 +3121,7 @@ msgstr "Kategorien" #: adminpages/membershiplevels.php:517 #: adminpages/membershiplevels.php:529 #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "Paket speichern" @@ -3023,6 +3179,11 @@ msgstr "Paket speichern" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "Stornieren" @@ -3079,6 +3240,7 @@ msgstr "Pakete durchsuchen" #: adminpages/membershiplevels.php:631 #: adminpages/membershiplevels.php:643 #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "Pakete mit der Maus verschieben, um sie auf der Pakete-Seite zu sortieren." @@ -3115,6 +3277,8 @@ msgstr "Pakete mit der Maus verschieben, um sie auf der Pakete-Seite zu sortiere #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "Gültig bis" @@ -3132,6 +3296,7 @@ msgstr "Gültig bis" #: adminpages/membershiplevels.php:645 #: adminpages/membershiplevels.php:657 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "Anmeldungen zulassen" @@ -3150,6 +3315,7 @@ msgstr "Anmeldungen zulassen" #: adminpages/membershiplevels.php:672 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "Kostenlos" @@ -3168,6 +3334,7 @@ msgstr "Kostenlos" #: adminpages/membershiplevels.php:681 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "Nach" @@ -3228,6 +3395,7 @@ msgstr "kopieren" #: includes/adminpages.php:149 #: includes/adminpages.php:153 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "MItglieder Liste" @@ -3245,6 +3413,8 @@ msgstr "MItglieder Liste" #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "Als CSV exportieren" @@ -3283,6 +3453,8 @@ msgstr "Als CSV exportieren" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "Anzeigen" @@ -3321,6 +3493,8 @@ msgstr "Anzeigen" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "Alle Levels" @@ -3364,6 +3538,8 @@ msgstr "Alte Mitglieder" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "Mitglieder suchen" @@ -3407,6 +3583,8 @@ msgstr "%d Mitglieder gefunden." #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "Username" @@ -3463,6 +3641,7 @@ msgstr "Nachname" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "Rechnungsadresse" @@ -3598,6 +3777,7 @@ msgstr "Fehler beim Löschen der Bestellung." #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "Bestellung erfolgreich gespeichert." @@ -3621,6 +3801,7 @@ msgstr "Fehler beim aktualisieren des timestamps für die Bestellung." #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "Fehler beim Speichern der Bestellung." @@ -3641,6 +3822,7 @@ msgstr "Fehler beim Speichern der Bestellung." #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "Bestellung" @@ -3655,6 +3837,7 @@ msgstr "Bestellung" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "Neue Bestellung" @@ -3669,6 +3852,7 @@ msgstr "Neue Bestellung" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "Automatisch generiert." @@ -3683,6 +3867,7 @@ msgstr "Automatisch generiert." #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "User ID" @@ -3698,6 +3883,8 @@ msgstr "User ID" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "Paket ID" @@ -3713,6 +3900,7 @@ msgstr "Paket ID" #: adminpages/orders.php:464 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "Name" @@ -3728,6 +3916,7 @@ msgstr "Name" #: adminpages/orders.php:478 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "Straße" @@ -3744,6 +3933,7 @@ msgstr "Straße" #: adminpages/orders.php:491 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "Ort" @@ -3759,6 +3949,7 @@ msgstr "Ort" #: adminpages/orders.php:504 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "Bundesland" @@ -3776,6 +3967,7 @@ msgstr "Bundesland" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "Postleitzahl" @@ -3793,6 +3985,7 @@ msgstr "Postleitzahl" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "Land" @@ -3809,6 +4002,7 @@ msgstr "Land" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "Telefon" @@ -3825,6 +4019,7 @@ msgstr "Telefon" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "Zwischensumme" @@ -3850,6 +4045,8 @@ msgstr "Zwischensumme" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "Steuern" @@ -3866,6 +4063,7 @@ msgstr "Steuern" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "Gutscheinbetrag" @@ -3907,6 +4105,9 @@ msgstr "Gutscheinbetrag" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "Gesamt" @@ -3934,6 +4135,7 @@ msgstr "Sollte Zwischensumme + Steuern - Gutscheinwert entsprechen." #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "Zahlungsart" @@ -3949,6 +4151,7 @@ msgstr "Zahlungsart" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "z.B. PayPal Express, PayPal Standard, Kreditkarte." @@ -4021,6 +4224,9 @@ msgstr "z.B. PayPal Express, PayPal Standard, Kreditkarte." #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "Kreditkarte" @@ -4036,6 +4242,7 @@ msgstr "Kreditkarte" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "z.B. Visa, MasterCard, AMEX, etc" @@ -4058,6 +4265,8 @@ msgstr "z.B. Visa, MasterCard, AMEX, etc" #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "Account Nummer" @@ -4072,6 +4281,7 @@ msgstr "Account Nummer" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "alle Stellen verbergen, außer die letzten 4 " @@ -4090,6 +4300,7 @@ msgstr "alle Stellen verbergen, außer die letzten 4 " #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "Ablaufdatum Monat" @@ -4144,6 +4355,10 @@ msgstr "Ablaufdatum Jahr" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "Status" @@ -4177,6 +4392,9 @@ msgstr "Status" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "Zahlungsdienstleister" @@ -4200,6 +4418,8 @@ msgstr "Zahlungsdienstleister" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "Zahlungsfunktion" @@ -4226,6 +4446,9 @@ msgstr "Zahlungsfunktion" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "Sandbox/Testing" @@ -4252,6 +4475,9 @@ msgstr "Sandbox/Testing" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "Live/Production" @@ -4268,6 +4494,7 @@ msgstr "Live/Production" #: adminpages/orders.php:798 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "Payment Transaction ID" @@ -4283,6 +4510,7 @@ msgstr "Payment Transaction ID" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "Vom Zahlungsdienstleister generiert. Hilfreich um Bestellungen zuzuordnen." @@ -4304,6 +4532,8 @@ msgstr "Vom Zahlungsdienstleister generiert. Hilfreich um Bestellungen zuzuordne #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "Mitlgieds-Transaktions-ID" @@ -4320,6 +4550,7 @@ msgstr "Mitlgieds-Transaktions-ID" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "Vom Zahlungsdienstleister generiert. Hilfreich um Zahlungen zuzuordnen." @@ -4365,6 +4596,8 @@ msgstr "Vom Zahlungsdienstleister generiert. Hilfreich um Zahlungen zuzuordnen." #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "Datum" @@ -4380,6 +4613,7 @@ msgstr "Datum" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "Affiliate ID" @@ -4395,6 +4629,7 @@ msgstr "Affiliate ID" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "Affiliate SubID" @@ -4403,6 +4638,7 @@ msgstr "Affiliate SubID" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "AGB Zustimmung" @@ -4418,6 +4654,7 @@ msgstr "AGB Zustimmung" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "Anmerkungen" @@ -4433,6 +4670,7 @@ msgstr "Anmerkungen" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "Auftrag speichern" @@ -4494,6 +4732,8 @@ msgstr "E-Mail senden" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "Bestellungen" @@ -4509,6 +4749,7 @@ msgstr "Bestellungen" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "Neuen Auftrag hinzufügen" @@ -4523,6 +4764,7 @@ msgstr "Neuen Auftrag hinzufügen" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "Innerhalb eines Zeitraums" @@ -4537,6 +4779,7 @@ msgstr "Innerhalb eines Zeitraums" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "Vorgegebener Zeitraum" @@ -4551,6 +4794,7 @@ msgstr "Vorgegebener Zeitraum" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "innerhalb eines Pakets" @@ -4565,6 +4809,7 @@ msgstr "innerhalb eines Pakets" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "innerhalb eines Status" @@ -4579,6 +4824,7 @@ msgstr "innerhalb eines Status" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "Von" @@ -4593,6 +4839,7 @@ msgstr "Von" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "An" @@ -4607,6 +4854,7 @@ msgstr "An" #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "filtern nach " @@ -4621,6 +4869,7 @@ msgstr "filtern nach " #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "Filter" @@ -4648,6 +4897,8 @@ msgstr "Filter" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "Bestellungen suchen" @@ -4664,6 +4915,8 @@ msgstr "Bestellungen suchen" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "%d Bestellungen gefunden." @@ -4693,6 +4946,7 @@ msgstr "%d Bestellungen gefunden." #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "User" @@ -4752,6 +5006,8 @@ msgstr "User" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "Paket" @@ -4781,6 +5037,7 @@ msgstr "Paket" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "Zahlung" @@ -4797,6 +5054,7 @@ msgstr "Zahlung" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "Transaktions-IDs" @@ -4824,6 +5082,8 @@ msgstr "Transaktions-IDs" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "gelöscht" @@ -4843,6 +5103,7 @@ msgstr "gelöscht" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "keine" @@ -4860,6 +5121,7 @@ msgstr "keine" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "Mitgliedschaft" @@ -4879,6 +5141,7 @@ msgstr "Mitgliedschaft" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "Das Löschen von Bestellungen ist dauerhaft und kann aktive User betreffen. Sind Sie sicher, dass Sie die Bestellung %s löschen wollen?" @@ -4920,6 +5183,7 @@ msgstr "E-Mail" #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "Keine Bestellungen gefunden." @@ -5009,6 +5273,7 @@ msgstr "Folgende Seiten wurden für Sie erstellt" #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "Bearbeiten der WordPress Seiten, die den erforderlichen Paid Memberships Pro Seiten zugeordnet sind." @@ -5020,6 +5285,7 @@ msgstr "Bearbeiten der WordPress Seiten, die den erforderlichen Paid Memberships #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "Ordnen Sie Ihre WordPress Seiten allen erforderlichen Paid Memberships Pro Seiten zu oder " @@ -5031,6 +5297,7 @@ msgstr "Ordnen Sie Ihre WordPress Seiten allen erforderlichen Paid Memberships P #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "klicken Sie hier, um sie automatisch zu generieren" @@ -5041,6 +5308,7 @@ msgstr "klicken Sie hier, um sie automatisch zu generieren" #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "Account Seite" @@ -5101,6 +5369,13 @@ msgstr "Account Seite" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "Bitte wählen" @@ -5175,6 +5450,16 @@ msgstr "Bitte wählen" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "Seite bearbeiten" @@ -5247,6 +5532,15 @@ msgstr "Seite bearbeiten" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "Seite ansehen" @@ -5312,6 +5606,12 @@ msgstr "Seite ansehen" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "Shortcode einfügen" @@ -5325,6 +5625,7 @@ msgstr "Shortcode einfügen" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "Zahlungsinfos-Seite" @@ -5338,6 +5639,7 @@ msgstr "Zahlungsinfos-Seite" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "Storno-Seite" @@ -5351,6 +5653,7 @@ msgstr "Storno-Seite" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "Checkout-Seite" @@ -5364,6 +5667,7 @@ msgstr "Checkout-Seite" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "Bestätigungs-Seite" @@ -5376,6 +5680,7 @@ msgstr "Bestätigungs-Seite" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "Rechnungs-Seite" @@ -5389,6 +5694,7 @@ msgstr "Rechnungs-Seite" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "Paket-Seite" @@ -5398,6 +5704,7 @@ msgstr "Paket-Seite" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "Zusätzliche Seiteneinstellungen" @@ -5413,6 +5720,9 @@ msgstr "Zusätzliche Seiteneinstellungen" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "Seite erstellen" @@ -5436,6 +5746,7 @@ msgstr "Ihre Zahlungs-Einstellungen wurden gespeichert." #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "Zahlungsdienstleister" @@ -5448,6 +5759,7 @@ msgstr "Zahlungsdienstleister" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "SSL Einstellungen" @@ -5461,6 +5773,7 @@ msgstr "Mehr Informationen über If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "Stripe erfordert keine Adressangaben. Wählen Sie 'Nein' um die entsprechenden Felder auf den Checkout-Seiten zu verbergen.
Wenn Sie Nein auswählen, stellen Sie sicher, dass Sie die Adresen-Verifizierung in den Stripe Dashboard Settings deaktivieren." @@ -8306,6 +8753,7 @@ msgstr "%1$sAchtung:%2$s Subskription %3$s%4$s%5$s konnte bei Strips nicht gefun #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "Abonnement-Updates" @@ -8397,6 +8845,7 @@ msgstr "Mit Abonnement-Updates können Sie die Abonnementwerte des Mitglieds zu #: classes/gateways/class.pmprogateway_stripe.php:2653 #: classes/gateways/class.pmprogateway_stripe.php:2649 #: pages/billing.php:441 +#: classes/gateways/class.pmprogateway_stripe.php:3106 msgid "Update" msgstr "Aktualisieren" @@ -8477,6 +8926,8 @@ msgstr "Stripe meldet einen Fehler bei der Erstellung des Kunden-Satzes:" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "Fehler beim Anlegen des Abonnements in Stripe:" @@ -8528,6 +8979,8 @@ msgstr "Fehler beim Anlegen des Abonnements in Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "Fehler beim Erstellen eines Plans mit Stripe:" @@ -8574,6 +9027,8 @@ msgstr "Fehler beim Erstellen eines Plans mit Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "Stripe meldet einen Fehler beim Einrichten des Abos für den Kunden:" @@ -8601,6 +9056,7 @@ msgstr "Stripe meldet einen Fehler beim Einrichten des Abos für den Kunden:" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "Die alte Mitgliedschaft konnte nicht gekündigt werden. Aktualisierungen wurden nicht durchgeführt." @@ -8635,6 +9091,7 @@ msgstr "Die alte Mitgliedschaft konnte nicht gekündigt werden. Aktualisierungen #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "Das alte Abonnement konnte nicht storniert werden." @@ -8666,6 +9123,7 @@ msgstr "Das alte Abonnement konnte nicht storniert werden." #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "Konnte den Kunden nicht finden." @@ -8692,6 +9150,8 @@ msgstr "Konnte den Kunden nicht finden." #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "Fehler:" @@ -8712,6 +9172,7 @@ msgstr "Fehler:" #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 #, php-format msgid "Error: Unkown error while refunding charge #%s" msgstr "Fehler: Unbekannter Fehler bei der Erstattung der Zahlung #%s" @@ -8729,6 +9190,7 @@ msgstr "Fehler: Unbekannter Fehler bei der Erstattung der Zahlung #%s" #: paid-memberships-pro.php:136 #: paid-memberships-pro.php:137 #: paid-memberships-pro.php:144 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "2Checkout" @@ -8736,24 +9198,28 @@ msgstr "2Checkout" #: classes/gateways/class.pmprogateway_twocheckout.php:108 #: classes/gateways/class.pmprogateway_twocheckout.php:116 #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "2Checkout Einstellungen" #: classes/gateways/class.pmprogateway_twocheckout.php:123 #: classes/gateways/class.pmprogateway_twocheckout.php:125 #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:132 #: classes/gateways/class.pmprogateway_twocheckout.php:134 #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:141 #: classes/gateways/class.pmprogateway_twocheckout.php:152 #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "" @@ -8763,12 +9229,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:137 #: classes/gateways/class.pmprogateway_twocheckout.php:157 #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "Geheimwort" #: classes/gateways/class.pmprogateway_twocheckout.php:150 #: classes/gateways/class.pmprogateway_twocheckout.php:161 #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "" @@ -8779,12 +9247,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:145 #: classes/gateways/class.pmprogateway_twocheckout.php:166 #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "TwoCheckout INS URL" #: classes/gateways/class.pmprogateway_twocheckout.php:158 #: classes/gateways/class.pmprogateway_twocheckout.php:169 #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "" @@ -8792,6 +9262,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:192 #: classes/gateways/class.pmprogateway_twocheckout.php:214 #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "Mit 2Checkout bezahlen" @@ -11025,6 +11496,7 @@ msgstr "und" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "Jetzt für !!name!! anmelden" @@ -11076,6 +11548,7 @@ msgstr "Ihr Lizenzschlüssel wurde bestätigt." #: includes/license.php:81 #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "Paid Memberships Pro Support Lizenz" @@ -11098,6 +11571,7 @@ msgstr "" #: adminpages/license.php:49 #: adminpages/dashboard.php:178 #: adminpages/license.php:41 +#: adminpages/license.php:53 msgid "Your license is invalid or expired." msgstr "Ihre Lizenz ist ungültig oder abgelaufen." @@ -11112,6 +11586,7 @@ msgstr "

Danke! Ein gültiger %s Lizenzschl #: adminpages/license.php:59 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "Lizenzschlüssel hier eingeben..." @@ -11285,6 +11760,8 @@ msgstr "Paid Memberships Pro User Data" #: includes/profile.php:515 #: includes/profile.php:511 #: adminpages/advancedsettings.php:331 +#: adminpages/advancedsettings.php:338 +#: includes/profile.php:551 msgid "Never" msgstr "Nie" @@ -11294,6 +11771,8 @@ msgstr "Nie" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "Paket-ID" @@ -11301,6 +11780,7 @@ msgstr "Paket-ID" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "Änderungsdatum" @@ -11308,6 +11788,7 @@ msgstr "Änderungsdatum" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "End-Datum" @@ -11315,6 +11796,7 @@ msgstr "End-Datum" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "Paket-Preis" @@ -11385,6 +11867,9 @@ msgstr "Bestelldatum" #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "Paket" @@ -11418,6 +11903,7 @@ msgstr "Telefon" #: includes/privacy.php:363 #: adminpages/emailtemplates.php:170 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "Kartentyp" @@ -11479,6 +11965,8 @@ msgstr "Aktuelles Paket" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "Nicht bezahlen." @@ -11494,18 +11982,21 @@ msgstr "" #: includes/profile.php:156 #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "Sende dem User eine Email über diese Änderung." #: includes/profile.php:162 #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:176 #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" @@ -11696,6 +12187,7 @@ msgstr "Ihre Zahlungen werden von PayPal abgewickelt. Sie können sich Eine Zahlung wird von Authorize.net zur Überprüfung zurückgehalten #: shortcodes/pmpro_account.php:44 #: includes/email-templates.php:68 #: shortcodes/pmpro_account.php:43 +#: adminpages/orders.php:1431 msgid "Billing" msgstr "Abrechnung" @@ -13288,6 +13794,8 @@ msgstr "Profil editieren" #: includes/profile.php:921 #: includes/profile.php:880 #: includes/profile.php:917 +#: includes/profile.php:920 +#: includes/profile.php:957 msgid "Change Password" msgstr "Passwort ändern" @@ -13880,6 +14388,7 @@ msgstr "Ihre erste %d Zahlung wird %s betragen." #: pages/account.php:87 #: pages/account.php:91 #: adminpages/emailtemplates.php:156 +#: adminpages/emailtemplates.php:149 msgid "Billing Information" msgstr "Zahlungsinformationen" @@ -14011,6 +14520,8 @@ msgstr "" #: includes/email.php:465 #: classes/class.pmproemail.php:898 #: classes/class.pmproemail.php:943 +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 #~ msgid "The new level is %s." #~ msgstr "Das neue Paket ist %s." @@ -14053,6 +14564,18 @@ msgstr "" #: js/blocks.build.js:1342 #: js/blocks.build.js:1502 #: classes/class-pmpro-admin-activity-email.php:349 +#: blocks/account-invoices-section/block.js:47 +#: blocks/account-links-section/block.js:47 +#: blocks/account-membership-section/block.js:45 +#: blocks/account-page/block.js:72 +#: blocks/account-profile-section/block.js:45 +#: blocks/billing-page/block.js:44 +#: blocks/cancel-page/block.js:44 +#: blocks/checkout-page/block.js:58 +#: blocks/confirmation-page/block.js:46 +#: blocks/invoice-page/block.js:45 +#: blocks/levels-page/block.js:44 +#: blocks/member-profile-edit/block.js:37 msgid "Paid Memberships Pro" msgstr "" @@ -14112,6 +14635,7 @@ msgstr "" #: includes/adminpages.php:52 #: includes/adminpages.php:158 #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Members" msgstr "" @@ -14139,41 +14663,49 @@ msgstr "" #: adminpages/advancedsettings.php:106 #: includes/updates/upgrade_1.php:7 #: adminpages/advancedsettings.php:108 +#: adminpages/advancedsettings.php:116 msgid "This content is for !!levels!! members only.
Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -14181,83 +14713,99 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -14283,6 +14831,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -14353,6 +14902,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -14478,6 +15028,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -14490,26 +15041,32 @@ msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" @@ -14535,6 +15092,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -14553,6 +15117,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -14561,15 +15131,18 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -14610,181 +15183,227 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -14802,6 +15421,7 @@ msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -14809,14 +15429,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -14833,27 +15456,34 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -14863,6 +15493,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -14870,6 +15502,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -14877,6 +15510,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -14884,6 +15518,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -14891,6 +15526,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -14898,6 +15534,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -14936,78 +15573,91 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -15017,12 +15667,15 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -15030,18 +15683,21 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" @@ -15051,11 +15707,13 @@ msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" @@ -15091,6 +15749,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -15101,6 +15760,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -15143,21 +15803,25 @@ msgid "Logins This Year" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -15312,46 +15976,57 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -15364,40 +16039,48 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -15405,11 +16088,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -15687,11 +16373,13 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -15700,6 +16388,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -15708,6 +16397,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -15719,6 +16409,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -15727,6 +16418,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -15738,6 +16430,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -15749,6 +16442,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -15760,6 +16454,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -15768,6 +16463,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -15779,6 +16475,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -15790,6 +16487,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -15798,6 +16496,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -15809,6 +16508,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -15817,6 +16517,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -15840,6 +16541,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -15856,6 +16559,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -15864,6 +16569,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -15872,6 +16578,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -15880,6 +16587,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -15887,6 +16595,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -15900,6 +16609,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -15908,6 +16619,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -15916,6 +16628,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -15925,6 +16638,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -15942,6 +16657,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -15950,6 +16667,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -15971,6 +16689,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -15979,6 +16699,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -15987,6 +16708,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -15995,6 +16717,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -16003,6 +16726,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -16011,6 +16735,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -16019,6 +16744,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -16027,6 +16753,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -16035,6 +16762,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -16043,6 +16771,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -16051,6 +16780,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -16063,6 +16793,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -16071,6 +16802,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -16079,6 +16811,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -16087,6 +16820,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -16095,6 +16829,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -16123,6 +16858,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -16143,6 +16879,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -16151,6 +16891,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -16160,6 +16901,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -16169,6 +16911,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -16180,6 +16923,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -16191,6 +16935,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -16202,6 +16947,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -16213,6 +16959,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" @@ -16226,6 +16973,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -16238,6 +16986,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -16250,6 +16999,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -17047,14 +17797,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -17063,18 +17816,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -17086,6 +17843,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -17104,6 +17862,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -17217,6 +17976,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -17224,6 +17984,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -17255,6 +18016,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -17264,6 +18026,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -17271,6 +18034,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -17335,111 +18099,130 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -17451,6 +18234,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -17524,6 +18310,7 @@ msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -17545,6 +18332,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -17583,6 +18371,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -17598,6 +18401,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -17613,6 +18417,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -17645,6 +18450,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -17657,6 +18463,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -17682,11 +18489,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -17694,6 +18506,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -17701,6 +18514,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -17723,6 +18537,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -17748,6 +18563,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -17755,6 +18571,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -17787,6 +18604,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -17809,6 +18627,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -17819,11 +18638,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -17843,6 +18673,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -17856,6 +18687,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -17865,6 +18697,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -17874,10 +18707,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -17888,6 +18723,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -17895,6 +18731,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -17904,6 +18741,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -17913,12 +18751,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -17926,6 +18767,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -17934,6 +18777,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -17941,6 +18785,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -17948,22 +18793,26 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -18021,12 +18870,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -18036,6 +18887,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -18045,6 +18897,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -18054,54 +18907,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -18112,42 +18975,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -18162,51 +19035,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -18214,6 +19099,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -18221,6 +19107,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -18228,6 +19115,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -18236,6 +19124,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -18249,6 +19139,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -18269,19 +19160,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -18291,31 +19186,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -18341,21 +19244,25 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" @@ -18403,26 +19310,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -18431,51 +19344,62 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -18489,19 +19413,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -18532,3 +19460,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-de_DE_formal.mo b/languages/paid-memberships-pro-de_DE_formal.mo new file mode 100644 index 000000000..c65be9912 Binary files /dev/null and b/languages/paid-memberships-pro-de_DE_formal.mo differ diff --git a/languages/paid-memberships-pro-de_DE_formal.po b/languages/paid-memberships-pro-de_DE_formal.po new file mode 100644 index 000000000..94e801830 --- /dev/null +++ b/languages/paid-memberships-pro-de_DE_formal.po @@ -0,0 +1,19498 @@ +# Copyright (C) 2022 Paid Memberships Pro +# This file is distributed under the same license as the Paid Memberships Pro plugin. +msgid "" +msgstr "" +"Project-Id-Version: Paid Memberships Pro 2.8\n" +"Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" +"Last-Translator: Paid Memberships Pro \n" +"Language-Team: Paid Memberships Pro \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"POT-Creation-Date: 2022-05-05T20:37:10+00:00\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"X-Generator: WP-CLI 2.6.0\n" +"X-Domain: paid-memberships-pro\n" + +#: adminpages/addons.php:5 +#: adminpages/advancedsettings.php:5 +#: adminpages/discountcodes.php:5 +#: adminpages/emailsettings.php:5 +#: adminpages/membershiplevels.php:5 +#: adminpages/memberslist-csv.php:5 +#: adminpages/memberslist.php:5 +#: adminpages/orders-csv.php:4 +#: adminpages/orders-print.php:12 +#: adminpages/orders.php:4 +#: adminpages/pagesettings.php:4 +#: adminpages/paymentsettings.php:5 +#: adminpages/updates.php:5 +#: includes/license.php:36 +#: adminpages/addons.php:21 +#: adminpages/orders-csv.php:5 +#: adminpages/orders.php:5 +#: adminpages/pagesettings.php:5 +#: adminpages/emailtemplates.php:5 +#: adminpages/license.php:4 +#: includes/services.php:91 +#: includes/services.php:104 +#: includes/email.php:175 +#: includes/email.php:211 +#: includes/email.php:230 +#: includes/email.php:255 +#: includes/email.php:273 +#: includes/email.php:178 +#: includes/email.php:214 +#: includes/email.php:237 +#: includes/email.php:262 +#: includes/email.php:280 +msgid "You do not have permissions to perform this action." +msgstr "Sie haben keine Berechtigung für diesen Vorgang." + +#: adminpages/addons.php:67 +#: adminpages/admin_header.php:204 +#: includes/adminpages.php:53 +#: includes/adminpages.php:151 +#: adminpages/addons.php:64 +#: adminpages/addons.php:80 +#: adminpages/admin_header.php:133 +#: adminpages/admin_header.php:154 +#: adminpages/admin_header.php:170 +#: adminpages/admin_header.php:179 +#: adminpages/admin_header.php:191 +#: includes/adminpages.php:14 +#: includes/adminpages.php:52 +#: includes/adminpages.php:69 +#: includes/adminpages.php:135 +#: includes/adminpages.php:142 +#: includes/adminpages.php:146 +#: adminpages/addons.php:81 +#: adminpages/admin_header.php:242 +#: includes/adminpages.php:56 +#: includes/adminpages.php:206 +msgid "Add Ons" +msgstr "Add-Ons" + +#: adminpages/addons.php:74 +#: adminpages/addons.php:71 +#: adminpages/addons.php:87 +#: adminpages/addons.php:89 +#, php-format +msgid "Last checked on %s at %s." +msgstr "Zuletzt überprüft am %s um a%s." + +#: adminpages/addons.php:75 +#: adminpages/addons.php:72 +#: adminpages/addons.php:88 +#: adminpages/addons.php:90 +msgid "Check Again" +msgstr "Nochmal überprüfen" + +#: adminpages/addons.php:79 +#: adminpages/orders.php:983 +#: adminpages/addons.php:76 +#: adminpages/addons.php:92 +#: adminpages/orders.php:605 +#: adminpages/orders.php:712 +#: adminpages/orders.php:741 +#: adminpages/orders.php:850 +#: adminpages/orders.php:881 +#: adminpages/orders.php:892 +#: adminpages/addons.php:94 +#: adminpages/orders.php:1016 +#: adminpages/orders.php:1022 +#: adminpages/orders.php:1103 +#: includes/metaboxes.php:19 +msgid "All" +msgstr "Alle" + +#: adminpages/addons.php:80 +#: adminpages/addons.php:77 +#: adminpages/addons.php:93 +#: adminpages/addons.php:95 +msgid "Active" +msgstr "Aktiv" + +#: adminpages/addons.php:81 +#: adminpages/addons.php:78 +#: adminpages/addons.php:94 +#: adminpages/addons.php:96 +msgid "Inactive" +msgstr "Inaktiv" + +#: adminpages/addons.php:82 +#: adminpages/addons.php:79 +#: adminpages/addons.php:95 +#: adminpages/addons.php:97 +msgid "Update Available" +msgstr "Update verfügbar" + +#: adminpages/addons.php:83 +#: adminpages/addons.php:80 +#: adminpages/addons.php:96 +#: adminpages/addons.php:98 +msgid "Not Installed" +msgstr "Nicht installiert" + +#: adminpages/addons.php:96 +#: adminpages/addons.php:93 +#: adminpages/addons.php:109 +msgid "Add On Name" +msgstr "Add-On Name" + +#: adminpages/addons.php:97 +#: adminpages/addons.php:94 +#: adminpages/addons.php:110 +msgid "Type" +msgstr "Typ" + +#: adminpages/addons.php:98 +#: adminpages/membershiplevels.php:334 +#: adminpages/addons.php:95 +#: adminpages/addons.php:111 +#: adminpages/membershiplevels.php:296 +#: adminpages/membershiplevels.php:298 +#: adminpages/membershiplevels.php:300 +#: adminpages/membershiplevels.php:324 +#: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 +msgid "Description" +msgstr "Beschreibung" + +#: adminpages/addons.php:121 +#: adminpages/addons.php:118 +#: adminpages/addons.php:134 +#: adminpages/addons.php:135 +msgid "No Add Ons found." +msgstr "Keine Add-Ons gefunden." + +#: adminpages/addons.php:182 +#: adminpages/addons.php:187 +#: adminpages/addons.php:199 +#: adminpages/addons.php:179 +#: adminpages/addons.php:184 +#: adminpages/addons.php:195 +#: adminpages/addons.php:196 +#: adminpages/addons.php:200 +#: adminpages/addons.php:212 +#: adminpages/addons.php:201 +#: adminpages/addons.php:213 +msgid "Install Now" +msgstr "Jetzt installieren" + +#: adminpages/addons.php:188 +#: adminpages/addons.php:194 +#: adminpages/addons.php:200 +#: adminpages/addons.php:206 +#: adminpages/addons.php:185 +#: adminpages/addons.php:191 +#: adminpages/addons.php:197 +#: adminpages/addons.php:201 +#: adminpages/addons.php:203 +#: adminpages/addons.php:207 +#: adminpages/addons.php:213 +#: adminpages/addons.php:219 +#: adminpages/addons.php:202 +#: adminpages/addons.php:208 +#: adminpages/addons.php:214 +#: adminpages/addons.php:220 +msgid "Download" +msgstr "Herunterladen" + +#: adminpages/addons.php:193 +#: adminpages/addons.php:205 +#: adminpages/addons.php:190 +#: adminpages/addons.php:202 +#: adminpages/addons.php:206 +#: adminpages/addons.php:218 +#: adminpages/addons.php:207 +#: adminpages/addons.php:219 +msgid "Update License" +msgstr "Update-Lizenz" + +#: adminpages/addons.php:211 +#: adminpages/addons.php:208 +#: adminpages/addons.php:224 +msgid "Deactivate" +msgstr "Deaktivieren" + +#: adminpages/addons.php:211 +#: adminpages/addons.php:208 +#: adminpages/addons.php:224 +#, php-format +msgid "Deactivate %s" +msgstr "Deaktivieren %s" + +#: adminpages/addons.php:215 +#: adminpages/addons.php:212 +#: adminpages/addons.php:228 +msgid "Activate" +msgstr "Aktivieren" + +#: adminpages/addons.php:215 +#: adminpages/addons.php:212 +#: adminpages/addons.php:228 +#, php-format +msgid "Activate %s" +msgstr "Aktivieren %s" + +#: adminpages/addons.php:216 +#: adminpages/addons.php:213 +#: adminpages/addons.php:229 +#: adminpages/discountcodes.php:816 +#: adminpages/membershiplevels.php:835 +#: adminpages/orders.php:1374 +#: adminpages/discountcodes.php:862 +#: adminpages/discountcodes.php:864 +#: adminpages/membershiplevels.php:887 +#: adminpages/membershiplevels.php:889 +#: adminpages/orders.php:1425 +#: adminpages/orders.php:1427 +#: adminpages/discountcodes.php:866 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 +msgid "Delete" +msgstr "Löschen" + +#: adminpages/addons.php:216 +#: adminpages/addons.php:213 +#: adminpages/addons.php:229 +#, php-format +msgid "Delete %s" +msgstr "Lösche %s" + +#: adminpages/addons.php:226 +#: adminpages/addons.php:223 +#: adminpages/addons.php:239 +#: adminpages/addons.php:240 +msgid "PMPro Free" +msgstr "PMPro Free" + +#: adminpages/addons.php:228 +#: adminpages/addons.php:225 +#: adminpages/addons.php:241 +#: adminpages/addons.php:242 +msgid "PMPro Core" +msgstr "PMPro Core" + +#: adminpages/addons.php:230 +#: adminpages/addons.php:227 +#: adminpages/addons.php:243 +#: adminpages/addons.php:244 +msgid "PMPro Plus" +msgstr "PMPro Plus" + +#: adminpages/addons.php:232 +#: adminpages/addons.php:229 +#: adminpages/addons.php:245 +#: adminpages/addons.php:246 +#: adminpages/addons.php:248 +msgid "WordPress.org" +msgstr "WordPress.org" + +#: adminpages/addons.php:234 +#: adminpages/orders.php:855 +#: adminpages/orders.php:1340 +#: adminpages/orders.php:1350 +#: includes/profile.php:186 +#: shortcodes/pmpro_account.php:148 +#: adminpages/addons.php:231 +#: adminpages/addons.php:247 +#: shortcodes/pmpro_account.php:145 +#: shortcodes/pmpro_account.php:146 +#: adminpages/addons.php:248 +#: adminpages/orders.php:581 +#: adminpages/orders.php:1467 +#: adminpages/orders.php:1477 +#: includes/profile.php:173 +#: includes/profile.php:456 +#: includes/profile.php:457 +#: includes/profile.php:514 +#: includes/profile.php:515 +#: includes/profile.php:516 +#: shortcodes/pmpro_account.php:254 +#: adminpages/orders.php:587 +#: adminpages/orders.php:1544 +#: adminpages/orders.php:1554 +#: adminpages/orders.php:1553 +#: includes/profile.php:520 +#: includes/profile.php:521 +#: includes/profile.php:522 +#: adminpages/addons.php:250 +#: adminpages/orders.php:704 +#: adminpages/orders.php:996 +#: adminpages/orders.php:1689 +#: adminpages/orders.php:1698 +#: classes/class.pmproemail.php:261 +#: classes/class.pmproemail.php:327 +#: includes/profile.php:167 +#: includes/profile.php:483 +#: includes/profile.php:484 +#: includes/profile.php:556 +#: includes/profile.php:557 +#: includes/profile.php:558 +msgid "N/A" +msgstr "Nicht verfügbar" + +#: adminpages/addons.php:243 +#: adminpages/addons.php:240 +#: adminpages/addons.php:256 +#, php-format +msgid "Version %s" +msgstr "Version %s" + +#: adminpages/addons.php:248 +#: adminpages/addons.php:245 +#: adminpages/addons.php:261 +#, php-format +msgid "By %s" +msgstr "Von %s" + +#: adminpages/addons.php:255 +#: adminpages/addons.php:252 +#: adminpages/addons.php:268 +#, php-format +msgid "More information about %s" +msgstr "Weitere Informationen über %s" + +#: adminpages/addons.php:257 +#: adminpages/addons.php:254 +#: adminpages/addons.php:270 +msgid "View details" +msgstr "Zeige Details" + +#: adminpages/addons.php:262 +#: adminpages/addons.php:259 +#: adminpages/addons.php:275 +msgid "Visit plugin site" +msgstr "Gehe zur Plugin-Seite" + +#: adminpages/admin_header.php:25 +msgid "Add a membership level to get started." +msgstr "Fügen Sie ein Paket hinzu, um zu beginnen." + +#: adminpages/admin_header.php:27 +msgid "Set up the membership pages" +msgstr "Mitglieds-Seiten erstellen" + +#: adminpages/admin_header.php:29 +msgid "Set up your SSL certificate and payment gateway" +msgstr "SSL-Zertifikat und Zahlungsdienstleister einstellen" + +#: adminpages/admin_header.php:39 +#: adminpages/admin_header.php:38 +msgid "The billing details for some of your membership levels is not supported by Stripe." +msgstr "Die Zahlungs-Einstellungen für einige Ihrer Pakete werden von Stripe nicht unterstützt." + +#: adminpages/admin_header.php:47 +#: adminpages/admin_header.php:46 +msgid "The billing details for this level are not supported by Stripe. Please review the notes in the Billing Details section below." +msgstr "Die Zahlungs-Einstellungen für dieses Paket werden von Stripe nicht unterstützt. Bitte überprüfen Sie die Angaben unter Zahlungs-Einstellungen." + +#: adminpages/admin_header.php:51 +#: adminpages/admin_header.php:71 +#: adminpages/admin_header.php:98 +#: adminpages/admin_header.php:122 +#: adminpages/admin_header.php:50 +#: adminpages/admin_header.php:70 +#: adminpages/admin_header.php:90 +#: adminpages/admin_header.php:91 +#: adminpages/admin_header.php:111 +#: adminpages/admin_header.php:112 +msgid "The levels with issues are highlighted below." +msgstr "Die Pakete mit Fehlern sind unten hervorgehoben." + +#: adminpages/admin_header.php:53 +#: adminpages/admin_header.php:73 +#: adminpages/admin_header.php:101 +#: adminpages/admin_header.php:124 +#: adminpages/admin_header.php:52 +#: adminpages/admin_header.php:72 +#: adminpages/admin_header.php:92 +#: adminpages/admin_header.php:93 +#: adminpages/admin_header.php:113 +#: adminpages/admin_header.php:114 +msgid "Please edit your levels" +msgstr "Ändern Sie bitte Ihre Pakete" + +#: adminpages/admin_header.php:59 +#: adminpages/admin_header.php:58 +msgid "The billing details for some of your membership levels is not supported by Payflow." +msgstr "Die Zahlungs-Einstellungen für einige Ihrer Pakete werden von Payflow nicht unterstützt." + +#: adminpages/admin_header.php:67 +#: adminpages/admin_header.php:66 +msgid "The billing details for this level are not supported by Payflow. Please review the notes in the Billing Details section below." +msgstr "Die Zahlungs-Einstellungen für dieses Paket werden von Payflow nicht unterstützt. Bitte überprüfen Sie die Angaben unter Zahlungs-Einstellungen." + +#: adminpages/admin_header.php:82 +#: adminpages/admin_header.php:78 +#: adminpages/admin_header.php:79 +msgid "The billing details for some of your membership levels is not supported by Braintree." +msgstr "Die Zahlungs-Einstellungen für einige Ihrer Pakete werden von Braintree nicht unterstützt." + +#: adminpages/admin_header.php:93 +#: adminpages/admin_header.php:86 +#: adminpages/admin_header.php:87 +msgid "The billing details for this level are not supported by Braintree. Please review the notes in the Billing Details section below." +msgstr "Die Zahlungs-Einstellungen für dieses Paket werden von Braintree nicht unterstützt. Bitte überprüfen Sie die Angaben unter Zahlungs-Einstellungen." + +#: adminpages/admin_header.php:109 +#: adminpages/admin_header.php:98 +#: adminpages/admin_header.php:99 +msgid "The billing details for some of your membership levels is not supported by TwoCheckout." +msgstr "Die Zahlungs-Einstellungen für einige Ihrer Pakete werden von TwoCheckout nicht unterstützt." + +#: adminpages/admin_header.php:118 +#: adminpages/admin_header.php:107 +#: adminpages/admin_header.php:108 +msgid "The billing details for this level are not supported by 2Checkout. Please review the notes in the Billing Details section below." +msgstr "Die Zahlungs-Einstellungen für dieses Paket werden von 2Checkout nicht unterstützt. Bitte überprüfen Sie die Angaben unter Zahlungs-Einstellungen." + +#: adminpages/admin_header.php:135 +#: classes/gateways/class.pmprogateway_stripe.php:66 +#: adminpages/admin_header.php:125 +#: adminpages/admin_header.php:152 +#: classes/gateways/class.pmprogateway_stripe.php:76 +#: classes/gateways/class.pmprogateway_stripe.php:82 +#: classes/gateways/class.pmprogateway_stripe.php:1463 +#, php-format +msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade." +msgstr "Das Stripe Gateway erfordert PHP 5.3.29 oder höher. Wir empfehlen ein Upgrade auf PHP %s oder höher. Bitten Sie Ihren Hoster um ein Upgrade." + +#: adminpages/admin_header.php:138 +#: classes/gateways/class.pmprogateway_braintree.php:70 +#: adminpages/admin_header.php:128 +#: classes/gateways/class.pmprogateway_braintree.php:50 +#: adminpages/admin_header.php:155 +#: classes/gateways/class.pmprogateway_braintree.php:73 +#, php-format +msgid "The Braintree Gateway requires PHP 5.4.45 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade." +msgstr "Das Braintree-Gateway erfordert PHP 5.4.45 oder höher. Wir empfehlen ein Upgrade auf PHP %s oder höher. Bitten Sie Ihren Hoster um ein Upgrade." + +#: adminpages/admin_header.php:144 +#: adminpages/admin_header.php:134 +#: adminpages/admin_header.php:161 +#, php-format +msgid "We recommend upgrading to PHP %s or greater. Ask your host to upgrade." +msgstr "Wir empfehlen ein Upgrade auf PHP %s oder höher. Bitten Sie Ihren Hoster um ein Upgrade." + +#: adminpages/admin_header.php:160 +#: adminpages/admin_header.php:173 +msgid "Documentation" +msgstr "Dokumentation" + +#: adminpages/admin_header.php:161 +#: adminpages/admin_header.php:174 +#: classes/class-pmpro-admin-activity-email.php:356 +#: classes/class-pmpro-admin-activity-email.php:350 +msgid "Get Support" +msgstr "Support bekommen" + +#: adminpages/admin_header.php:184 +#: adminpages/membershiplevels.php:641 +#: adminpages/pagesettings.php:85 +#: includes/adminpages.php:69 +#: includes/adminpages.php:70 +#: includes/adminpages.php:116 +#: includes/metaboxes.php:132 +#: adminpages/admin_header.php:128 +#: adminpages/admin_header.php:149 +#: adminpages/admin_header.php:150 +#: adminpages/admin_header.php:159 +#: adminpages/admin_header.php:171 +#: adminpages/membershiplevels.php:490 +#: adminpages/membershiplevels.php:496 +#: adminpages/membershiplevels.php:498 +#: adminpages/membershiplevels.php:525 +#: adminpages/membershiplevels.php:526 +#: adminpages/membershiplevels.php:569 +#: adminpages/membershiplevels.php:607 +#: adminpages/membershiplevels.php:609 +#: adminpages/membershiplevels.php:618 +#: adminpages/membershiplevels.php:619 +#: adminpages/membershiplevels.php:631 +#: adminpages/pagesettings.php:69 +#: adminpages/pagesettings.php:70 +#: adminpages/pagesettings.php:71 +#: includes/adminpages.php:44 +#: includes/adminpages.php:64 +#: includes/adminpages.php:65 +#: includes/adminpages.php:100 +#: includes/adminpages.php:107 +#: includes/adminpages.php:111 +#: includes/metaboxes.php:126 +#: includes/metaboxes.php:131 +#: adminpages/admin_header.php:253 +#: adminpages/membershiplevels.php:792 +#: adminpages/pagesettings.php:98 +#: includes/compatibility/beaver-builder.php:134 +#: adminpages/pagesettings.php:117 +#: classes/class-pmpro-site-health.php:85 +#: includes/metaboxes.php:151 +msgid "Membership Levels" +msgstr "Pakete" + +#: adminpages/admin_header.php:188 +#: adminpages/pagesettings.php:108 +#: adminpages/admin_header.php:129 +#: adminpages/admin_header.php:150 +#: adminpages/admin_header.php:154 +#: adminpages/admin_header.php:163 +#: adminpages/admin_header.php:175 +#: adminpages/pagesettings.php:92 +#: adminpages/pagesettings.php:93 +#: adminpages/pagesettings.php:120 +#: adminpages/admin_header.php:261 +msgid "Pages" +msgstr "Seiten" + +#: adminpages/admin_header.php:192 +#: adminpages/admin_header.php:130 +#: adminpages/admin_header.php:151 +#: adminpages/admin_header.php:158 +#: adminpages/admin_header.php:167 +#: adminpages/admin_header.php:179 +#: adminpages/admin_header.php:265 +msgid "Payment Gateway & SSL" +msgstr "Zahlungsdienstleister & SSL" + +#: adminpages/admin_header.php:196 +#: adminpages/memberslist.php:168 +#: shortcodes/pmpro_account.php:111 +#: adminpages/admin_header.php:131 +#: adminpages/admin_header.php:152 +#: adminpages/admin_header.php:162 +#: adminpages/admin_header.php:171 +#: adminpages/admin_header.php:183 +#: adminpages/memberslist.php:115 +#: adminpages/memberslist.php:148 +#: adminpages/memberslist.php:158 +#: pages/account.php:52 +#: pages/account.php:56 +#: pages/account.php:77 +#: shortcodes/pmpro_account.php:106 +#: shortcodes/pmpro_account.php:108 +#: shortcodes/pmpro_account.php:109 +#: adminpages/orders.php:385 +#: adminpages/orders.php:1381 +#: includes/profile.php:451 +#: includes/profile.php:750 +#: shortcodes/pmpro_account.php:174 +#: adminpages/orders.php:391 +#: adminpages/orders.php:1445 +#: adminpages/orders.php:1448 +#: includes/profile.php:762 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 +msgid "Email" +msgstr "E-Mail" + +#: adminpages/admin_header.php:200 +#: adminpages/admin_header.php:132 +#: adminpages/admin_header.php:153 +#: adminpages/admin_header.php:166 +#: adminpages/admin_header.php:175 +#: adminpages/admin_header.php:187 +#: adminpages/admin_header.php:277 +msgid "Advanced" +msgstr "Erweitert" + +#: adminpages/advancedsettings.php:13 +#: adminpages/discountcodes.php:58 +#: adminpages/discountcodes.php:304 +#: adminpages/emailsettings.php:16 +#: adminpages/membershiplevels.php:43 +#: adminpages/pagesettings.php:29 +#: adminpages/pagesettings.php:68 +#: adminpages/paymentsettings.php:19 +#: adminpages/discountcodes.php:63 +#: adminpages/discountcodes.php:311 +#: adminpages/emailsettings.php:18 +#: adminpages/pagesettings.php:72 +#: adminpages/discountcodes.php:65 +#: adminpages/discountcodes.php:313 +#: adminpages/pagesettings.php:48 +#: adminpages/pagesettings.php:91 +msgid "Are you sure you want to do that? Try again." +msgstr "Sind Sie sicher, dass Sie das tun wollen? Versuchen Sie es noch einmal." + +#: adminpages/advancedsettings.php:60 +#: adminpages/advancedsettings.php:35 +#: adminpages/advancedsettings.php:42 +#: adminpages/advancedsettings.php:43 +#: adminpages/advancedsettings.php:46 +#: adminpages/advancedsettings.php:68 +#: adminpages/advancedsettings.php:76 +msgid "Your advanced settings have been updated." +msgstr "Ihre erweiterten Einstellungen wurden gespeichert." + +#: adminpages/advancedsettings.php:85 +#: adminpages/advancedsettings.php:66 +#: adminpages/advancedsettings.php:68 +#: adminpages/advancedsettings.php:71 +#, php-format +msgid "This content is for !!levels!! members only. Register here." +msgstr "Dieser Inhalt ist nur für !!levels!! Mitglieder. Hier registrieren." + +#: adminpages/advancedsettings.php:90 +#: adminpages/advancedsettings.php:71 +#: adminpages/advancedsettings.php:73 +#: adminpages/advancedsettings.php:76 +#, php-format +msgid "Please login to view this content. (Register here.)" +msgstr "Loggen Sie sich bitte ein um diesen Inhalt zu sehen. (Wenn Sie noch kein Konto haben, können Sie sich Hier registrieren.)" + +#: adminpages/advancedsettings.php:95 +#: adminpages/advancedsettings.php:76 +#: adminpages/advancedsettings.php:78 +#: adminpages/advancedsettings.php:81 +#: adminpages/advancedsettings.php:116 +#: includes/updates/upgrade_1.php:13 +#: adminpages/advancedsettings.php:126 +msgid "This content is for members only. Visit the site and log in/register to read." +msgstr "Diese Inhalte sind nur für angemeldete Benutzer sichtbar. Bitte melden Sie sich an oder registrieren Sie sich, um die Inhalte zu sehen." + +#: adminpages/advancedsettings.php:107 +#: includes/adminpages.php:52 +#: includes/adminpages.php:144 +#: adminpages/advancedsettings.php:79 +#: adminpages/advancedsettings.php:86 +#: adminpages/advancedsettings.php:88 +#: adminpages/advancedsettings.php:91 +#: includes/adminpages.php:13 +#: includes/adminpages.php:51 +#: includes/adminpages.php:64 +#: includes/adminpages.php:128 +#: includes/adminpages.php:135 +#: includes/adminpages.php:139 +#: adminpages/admin_header.php:277 +#: adminpages/advancedsettings.php:132 +#: includes/adminpages.php:73 +#: adminpages/advancedsettings.php:142 +msgid "Advanced Settings" +msgstr "Erweiterte Einstellungen" + +#: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:85 +#: adminpages/advancedsettings.php:92 +#: adminpages/advancedsettings.php:94 +#: adminpages/advancedsettings.php:97 +#: adminpages/advancedsettings.php:164 +#: adminpages/advancedsettings.php:173 +msgid "Message for Logged-in Non-members" +msgstr "Nachricht für eingeloggte Nicht-Mitglieder" + +#: adminpages/advancedsettings.php:117 +#: adminpages/advancedsettings.php:89 +#: adminpages/advancedsettings.php:96 +#: adminpages/advancedsettings.php:98 +#: adminpages/advancedsettings.php:101 +#: adminpages/advancedsettings.php:168 +#: adminpages/advancedsettings.php:177 +msgid "This message replaces the post content for non-members. Available variables" +msgstr "Diese Nachricht ersetzt den Artikel-Inhalt für Nicht-Mitglieder. Verfügbare Variablen" + +#: adminpages/advancedsettings.php:122 +#: adminpages/advancedsettings.php:94 +#: adminpages/advancedsettings.php:101 +#: adminpages/advancedsettings.php:103 +#: adminpages/advancedsettings.php:106 +#: adminpages/advancedsettings.php:173 +#: adminpages/advancedsettings.php:182 +msgid "Message for Logged-out Users" +msgstr "Nachricht für ausgeloggte Benutzer" + +#: adminpages/advancedsettings.php:126 +#: adminpages/advancedsettings.php:98 +#: adminpages/advancedsettings.php:105 +#: adminpages/advancedsettings.php:107 +#: adminpages/advancedsettings.php:110 +#: adminpages/advancedsettings.php:177 +#: adminpages/advancedsettings.php:186 +msgid "This message replaces the post content for logged-out visitors." +msgstr "Diese Nachricht ersetzt den Artikel-Inhalt für ausgeloggte Besucher." + +#: adminpages/advancedsettings.php:131 +#: adminpages/advancedsettings.php:103 +#: adminpages/advancedsettings.php:110 +#: adminpages/advancedsettings.php:112 +#: adminpages/advancedsettings.php:115 +#: adminpages/advancedsettings.php:182 +#: adminpages/advancedsettings.php:191 +msgid "Message for RSS Feed" +msgstr "Nachricht für RSS Feed" + +#: adminpages/advancedsettings.php:135 +#: adminpages/advancedsettings.php:107 +#: adminpages/advancedsettings.php:114 +#: adminpages/advancedsettings.php:116 +#: adminpages/advancedsettings.php:119 +#: adminpages/advancedsettings.php:186 +#: adminpages/advancedsettings.php:195 +msgid "This message replaces the post content in RSS feeds." +msgstr "Diese Nachricht ersetzt den Artikel-Inhalt in RSS-feeds." + +#: adminpages/advancedsettings.php:141 +#: adminpages/advancedsettings.php:122 +#: adminpages/advancedsettings.php:125 +#: adminpages/advancedsettings.php:199 +#: adminpages/advancedsettings.php:208 +msgid "Filter searches and archives?" +msgstr "Suchen und Archive filtern?" + +#: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:126 +#: adminpages/advancedsettings.php:129 +#: adminpages/advancedsettings.php:203 +#: adminpages/advancedsettings.php:212 +msgid "No - Non-members will see restricted posts/pages in searches and archives." +msgstr "Nein - Nicht-Mitglieder werden eingeschränkte Beiträge/Seiten in Suchen und Archiven sehen." + +#: adminpages/advancedsettings.php:146 +#: adminpages/advancedsettings.php:127 +#: adminpages/advancedsettings.php:130 +#: adminpages/advancedsettings.php:204 +#: adminpages/advancedsettings.php:213 +msgid "Yes - Only members will see restricted posts/pages in searches and archives." +msgstr "Ja - Nur Mitglieder werden eingeschränkte Beiträge/Seiten in Suchen und Archiven sehen." + +#: adminpages/advancedsettings.php:152 +#: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:120 +#: adminpages/advancedsettings.php:133 +#: adminpages/advancedsettings.php:136 +#: adminpages/advancedsettings.php:210 +#: adminpages/advancedsettings.php:219 +msgid "Show Excerpts to Non-Members?" +msgstr "Soll Nicht-Mitgliedern ein Ausschnitt gezeigt werden?" + +#: adminpages/advancedsettings.php:156 +#: adminpages/advancedsettings.php:117 +#: adminpages/advancedsettings.php:124 +#: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:140 +#: adminpages/advancedsettings.php:214 +#: adminpages/advancedsettings.php:223 +msgid "No - Hide excerpts." +msgstr "Nein - Ausschnitt verbergen." + +#: adminpages/advancedsettings.php:157 +#: adminpages/advancedsettings.php:118 +#: adminpages/advancedsettings.php:125 +#: adminpages/advancedsettings.php:138 +#: adminpages/advancedsettings.php:141 +#: adminpages/advancedsettings.php:215 +#: adminpages/advancedsettings.php:224 +msgid "Yes - Show excerpts." +msgstr "Ja - Ausschnitt anzeigen." + +#: adminpages/advancedsettings.php:163 +#: adminpages/advancedsettings.php:144 +#: adminpages/advancedsettings.php:147 +#: adminpages/advancedsettings.php:333 +#: adminpages/advancedsettings.php:355 +msgid "Hide Ads From Members?" +msgstr "Werbung vor Mitgliedern verstecken?" + +#: adminpages/advancedsettings.php:167 +#: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:238 +#: adminpages/membershiplevels.php:694 +#: adminpages/paymentsettings.php:236 +#: classes/gateways/class.pmprogateway_stripe.php:289 +#: includes/profile.php:125 +#: adminpages/advancedsettings.php:128 +#: adminpages/advancedsettings.php:135 +#: adminpages/advancedsettings.php:148 +#: adminpages/advancedsettings.php:151 +#: adminpages/advancedsettings.php:187 +#: adminpages/advancedsettings.php:194 +#: adminpages/advancedsettings.php:199 +#: adminpages/advancedsettings.php:206 +#: adminpages/advancedsettings.php:207 +#: adminpages/advancedsettings.php:210 +#: adminpages/advancedsettings.php:219 +#: adminpages/advancedsettings.php:222 +#: adminpages/membershiplevels.php:563 +#: adminpages/membershiplevels.php:569 +#: adminpages/membershiplevels.php:571 +#: adminpages/membershiplevels.php:578 +#: adminpages/membershiplevels.php:598 +#: adminpages/membershiplevels.php:658 +#: adminpages/membershiplevels.php:660 +#: adminpages/membershiplevels.php:662 +#: adminpages/membershiplevels.php:667 +#: adminpages/membershiplevels.php:668 +#: adminpages/membershiplevels.php:672 +#: adminpages/membershiplevels.php:684 +#: adminpages/paymentsettings.php:210 +#: adminpages/paymentsettings.php:219 +#: adminpages/paymentsettings.php:414 +#: adminpages/paymentsettings.php:429 +#: adminpages/paymentsettings.php:434 +#: adminpages/paymentsettings.php:436 +#: adminpages/paymentsettings.php:454 +#: adminpages/paymentsettings.php:459 +#: adminpages/paymentsettings.php:461 +#: classes/gateways/class.pmprogateway_stripe.php:173 +#: classes/gateways/class.pmprogateway_stripe.php:174 +#: classes/gateways/class.pmprogateway_stripe.php:184 +#: classes/gateways/class.pmprogateway_stripe.php:206 +#: classes/gateways/class.pmprogateway_stripe.php:208 +#: classes/gateways/class.pmprogateway_stripe.php:209 +#: classes/gateways/class.pmprogateway_stripe.php:220 +#: classes/gateways/class.pmprogateway_stripe.php:222 +#: classes/gateways/class.pmprogateway_stripe.php:249 +#: classes/gateways/class.pmprogateway_stripe.php:281 +#: classes/gateways/class.pmprogateway_stripe.php:297 +#: classes/gateways/class.pmprogateway_stripe.php:298 +#: includes/profile.php:101 +#: includes/profile.php:105 +#: includes/profile.php:110 +#: includes/profile.php:117 +#: includes/profile.php:121 +#: includes/profile.php:123 +#: adminpages/advancedsettings.php:245 +#: adminpages/advancedsettings.php:337 +#: adminpages/advancedsettings.php:394 +#: adminpages/advancedsettings.php:477 +#: adminpages/membershiplevels.php:860 +#: adminpages/paymentsettings.php:266 +#: classes/gateways/class.pmprogateway_stripe.php:603 +#: classes/gateways/class.pmprogateway_stripe.php:617 +#: includes/compatibility/beaver-builder.php:45 +#: includes/compatibility/beaver-builder.php:141 +#: includes/profile.php:92 +#: adminpages/membershiplevels.php:941 +#: classes/gateways/class.pmprogateway_stripe.php:615 +#: classes/gateways/class.pmprogateway_stripe.php:629 +#: adminpages/advancedsettings.php:396 +#: adminpages/advancedsettings.php:479 +#: classes/gateways/class.pmprogateway_stripe.php:634 +#: classes/gateways/class.pmprogateway_stripe.php:648 +#: classes/gateways/class.pmprogateway_stripe.php:640 +#: classes/gateways/class.pmprogateway_stripe.php:654 +#: adminpages/advancedsettings.php:254 +#: adminpages/advancedsettings.php:267 +#: adminpages/advancedsettings.php:359 +#: adminpages/advancedsettings.php:418 +#: adminpages/advancedsettings.php:526 +#: adminpages/membershiplevels.php:939 +#: adminpages/paymentsettings.php:277 +#: classes/gateways/class.pmprogateway_stripe.php:430 +#: classes/gateways/class.pmprogateway_stripe.php:444 +#: includes/profile.php:78 +msgid "No" +msgstr "Nein" + +#: adminpages/advancedsettings.php:168 +#: adminpages/advancedsettings.php:129 +#: adminpages/advancedsettings.php:136 +#: adminpages/advancedsettings.php:149 +#: adminpages/advancedsettings.php:152 +#: adminpages/advancedsettings.php:338 +#: adminpages/advancedsettings.php:360 +msgid "Hide Ads From All Members" +msgstr "Werbung für alle Mitglieder ausblenden" + +#: adminpages/advancedsettings.php:169 +#: adminpages/advancedsettings.php:130 +#: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:339 +#: adminpages/advancedsettings.php:361 +msgid "Hide Ads From Certain Members" +msgstr "Werbung für bestimmte Mitglieder ausblenden" + +#: adminpages/advancedsettings.php:176 +#: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 +#: adminpages/advancedsettings.php:157 +#: adminpages/advancedsettings.php:160 +msgid "Ads from the following plugins will be automatically turned off" +msgstr "Werbung von den folgenden Plugins wird automatisch deaktiviert" + +#: adminpages/advancedsettings.php:177 +#: adminpages/advancedsettings.php:138 +#: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:158 +#: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:346 +#: adminpages/advancedsettings.php:368 +msgid "To hide ads in your template code, use code like the following" +msgstr "Um Werbung in Ihrem Template Code zu verbergen, verwenden Sie den folgenden Code" + +#: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:149 +#: adminpages/advancedsettings.php:156 +#: adminpages/advancedsettings.php:169 +#: adminpages/advancedsettings.php:172 +#: adminpages/advancedsettings.php:355 +#: adminpages/advancedsettings.php:377 +msgid "Choose Levels to Hide Ads From" +msgstr "Pakete auswählen, für die Werbung ausgeblendet werden soll" + +#: adminpages/advancedsettings.php:222 +#: adminpages/advancedsettings.php:183 +#: adminpages/advancedsettings.php:190 +#: adminpages/advancedsettings.php:203 +#: adminpages/advancedsettings.php:206 +#: adminpages/advancedsettings.php:390 +#: adminpages/advancedsettings.php:392 +msgid "Redirect all traffic from registration page to /susbcription/?" +msgstr "Alle Besucher der Registrierungs-Seite zu /susbcription/ weiterleiten?" + +#: adminpages/advancedsettings.php:222 +#: adminpages/advancedsettings.php:183 +#: adminpages/advancedsettings.php:190 +#: adminpages/advancedsettings.php:203 +#: adminpages/advancedsettings.php:206 +#: adminpages/advancedsettings.php:390 +#: adminpages/advancedsettings.php:392 +#: adminpages/advancedsettings.php:414 +msgid "multisite only" +msgstr "nur Multisite" + +#: adminpages/advancedsettings.php:227 +#: adminpages/membershiplevels.php:694 +#: adminpages/paymentsettings.php:237 +#: classes/gateways/class.pmprogateway_stripe.php:290 +#: includes/profile.php:126 +#: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 +#: adminpages/advancedsettings.php:208 +#: adminpages/advancedsettings.php:211 +#: adminpages/membershiplevels.php:563 +#: adminpages/membershiplevels.php:569 +#: adminpages/membershiplevels.php:571 +#: adminpages/membershiplevels.php:578 +#: adminpages/membershiplevels.php:598 +#: adminpages/membershiplevels.php:658 +#: adminpages/membershiplevels.php:660 +#: adminpages/membershiplevels.php:662 +#: adminpages/membershiplevels.php:667 +#: adminpages/membershiplevels.php:668 +#: adminpages/membershiplevels.php:672 +#: adminpages/membershiplevels.php:684 +#: adminpages/paymentsettings.php:211 +#: adminpages/paymentsettings.php:220 +#: adminpages/paymentsettings.php:415 +#: adminpages/paymentsettings.php:424 +#: adminpages/paymentsettings.php:430 +#: adminpages/paymentsettings.php:435 +#: adminpages/paymentsettings.php:437 +#: adminpages/paymentsettings.php:455 +#: adminpages/paymentsettings.php:460 +#: adminpages/paymentsettings.php:462 +#: classes/gateways/class.pmprogateway_stripe.php:174 +#: classes/gateways/class.pmprogateway_stripe.php:175 +#: classes/gateways/class.pmprogateway_stripe.php:185 +#: classes/gateways/class.pmprogateway_stripe.php:207 +#: classes/gateways/class.pmprogateway_stripe.php:209 +#: classes/gateways/class.pmprogateway_stripe.php:210 +#: classes/gateways/class.pmprogateway_stripe.php:221 +#: classes/gateways/class.pmprogateway_stripe.php:223 +#: classes/gateways/class.pmprogateway_stripe.php:250 +#: classes/gateways/class.pmprogateway_stripe.php:282 +#: classes/gateways/class.pmprogateway_stripe.php:298 +#: classes/gateways/class.pmprogateway_stripe.php:299 +#: includes/profile.php:102 +#: includes/profile.php:106 +#: includes/profile.php:111 +#: includes/profile.php:118 +#: includes/profile.php:122 +#: includes/profile.php:124 +#: adminpages/advancedsettings.php:395 +#: adminpages/membershiplevels.php:855 +#: adminpages/membershiplevels.php:857 +#: adminpages/paymentsettings.php:267 +#: classes/gateways/class.pmprogateway_stripe.php:605 +#: classes/gateways/class.pmprogateway_stripe.php:619 +#: includes/compatibility/beaver-builder.php:44 +#: includes/compatibility/beaver-builder.php:140 +#: includes/profile.php:93 +#: adminpages/membershiplevels.php:936 +#: adminpages/membershiplevels.php:938 +#: classes/gateways/class.pmprogateway_stripe.php:617 +#: classes/gateways/class.pmprogateway_stripe.php:631 +#: adminpages/advancedsettings.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:636 +#: classes/gateways/class.pmprogateway_stripe.php:650 +#: classes/gateways/class.pmprogateway_stripe.php:642 +#: classes/gateways/class.pmprogateway_stripe.php:656 +#: adminpages/advancedsettings.php:419 +#: adminpages/membershiplevels.php:934 +#: adminpages/paymentsettings.php:278 +#: classes/gateways/class.pmprogateway_stripe.php:432 +#: classes/gateways/class.pmprogateway_stripe.php:446 +#: includes/profile.php:79 +msgid "Yes" +msgstr "Ja" + +#: adminpages/advancedsettings.php:234 +#: adminpages/advancedsettings.php:195 +#: adminpages/advancedsettings.php:202 +#: adminpages/advancedsettings.php:215 +#: adminpages/advancedsettings.php:218 +#: adminpages/advancedsettings.php:241 +#: adminpages/advancedsettings.php:263 +msgid "Use reCAPTCHA?" +msgstr "reCAPTCHA verwenden?" + +#: adminpages/advancedsettings.php:239 +#: adminpages/advancedsettings.php:200 +#: adminpages/advancedsettings.php:207 +#: adminpages/advancedsettings.php:220 +#: adminpages/advancedsettings.php:223 +#: adminpages/advancedsettings.php:246 +msgid "Yes - Free memberships only." +msgstr "Ja - nur Gratis-Mitgliedschaft." + +#: adminpages/advancedsettings.php:240 +#: adminpages/advancedsettings.php:201 +#: adminpages/advancedsettings.php:208 +#: adminpages/advancedsettings.php:221 +#: adminpages/advancedsettings.php:224 +#: adminpages/advancedsettings.php:247 +#: adminpages/advancedsettings.php:269 +msgid "Yes - All memberships." +msgstr "Ja - jede Mitgliedschaft." + +#: adminpages/advancedsettings.php:242 +#: adminpages/advancedsettings.php:203 +#: adminpages/advancedsettings.php:210 +#: adminpages/advancedsettings.php:223 +#: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:271 +msgid "A free reCAPTCHA key is required." +msgstr "Ein kostenloser reCAPTCHA key ist erforderlich." + +#: adminpages/advancedsettings.php:242 +#: adminpages/advancedsettings.php:203 +#: adminpages/advancedsettings.php:210 +#: adminpages/advancedsettings.php:223 +#: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:271 +msgid "Click here to signup for reCAPTCHA" +msgstr "Klicken Sie hier um sich bei reCAPTCHA anzumelden" + +#: adminpages/advancedsettings.php:248 +#: adminpages/advancedsettings.php:267 +#: adminpages/advancedsettings.php:289 +msgid "reCAPTCHA Site Key" +msgstr "reCAPTCHA Site Key" + +#: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:273 +#: adminpages/advancedsettings.php:295 +msgid "reCAPTCHA Secret Key" +msgstr "reCAPTCHA Secret Key" + +#: adminpages/advancedsettings.php:257 +#: adminpages/advancedsettings.php:218 +#: adminpages/advancedsettings.php:225 +#: adminpages/advancedsettings.php:238 +#: adminpages/advancedsettings.php:241 +#: adminpages/advancedsettings.php:229 +msgid "Require Terms of Service on signups?" +msgstr "Geschäftsbedingungen bei Registrierung bestätigen?" + +#: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:225 +#: adminpages/advancedsettings.php:232 +#: adminpages/advancedsettings.php:245 +#: adminpages/advancedsettings.php:248 +#: adminpages/advancedsettings.php:236 +msgid "If yes, create a WordPress page containing your TOS agreement and assign it using the dropdown above." +msgstr "Falls Ja, erstellen Sie eine WordPress Seite mit Ihren AGB und wählen Sie diese in obigem Dropdown-Menü aus." + +#: adminpages/advancedsettings.php:375 +#: adminpages/pagesettings.php:310 +#: adminpages/paymentsettings.php:267 +#: adminpages/advancedsettings.php:284 +#: adminpages/advancedsettings.php:355 +#: adminpages/advancedsettings.php:359 +#: adminpages/advancedsettings.php:368 +#: adminpages/pagesettings.php:209 +#: adminpages/pagesettings.php:223 +#: adminpages/pagesettings.php:251 +#: adminpages/pagesettings.php:254 +#: adminpages/pagesettings.php:294 +#: adminpages/pagesettings.php:295 +#: adminpages/paymentsettings.php:238 +#: adminpages/paymentsettings.php:250 +#: adminpages/paymentsettings.php:485 +#: adminpages/paymentsettings.php:526 +#: adminpages/paymentsettings.php:532 +#: adminpages/paymentsettings.php:534 +#: adminpages/advancedsettings.php:525 +#: adminpages/pagesettings.php:439 +#: adminpages/paymentsettings.php:297 +#: adminpages/advancedsettings.php:527 +#: adminpages/advancedsettings.php:574 +#: adminpages/pagesettings.php:511 +#: adminpages/paymentsettings.php:314 +msgid "Save Settings" +msgstr "Einstellungen speichern" + +#: adminpages/discountcodes.php:102 +#: adminpages/discountcodes.php:64 +#: adminpages/discountcodes.php:65 +#: adminpages/discountcodes.php:70 +#: adminpages/discountcodes.php:71 +#: adminpages/discountcodes.php:107 +#: adminpages/discountcodes.php:109 +msgid "Discount code added successfully." +msgstr "Gutscheincode erfolgreich hinzugefügt." + +#: adminpages/discountcodes.php:108 +#: adminpages/discountcodes.php:48 +#: adminpages/discountcodes.php:49 +#: adminpages/discountcodes.php:54 +#: adminpages/discountcodes.php:77 +#: adminpages/discountcodes.php:113 +#: adminpages/discountcodes.php:115 +msgid "Discount code updated successfully." +msgstr "Gutscheincode erfolgreich bearbeitet." + +#: adminpages/discountcodes.php:116 +#: adminpages/discountcodes.php:71 +#: adminpages/discountcodes.php:72 +#: adminpages/discountcodes.php:73 +#: adminpages/discountcodes.php:78 +#: adminpages/discountcodes.php:85 +#: adminpages/discountcodes.php:121 +#: adminpages/discountcodes.php:123 +msgid "Error adding discount code. That code may already be in use." +msgstr "Fehler beim Hinzufügen des Gutscheincodes. Dieser Code wird möglicherweise bereits verwendet." + +#: adminpages/discountcodes.php:120 +#: adminpages/discountcodes.php:55 +#: adminpages/discountcodes.php:56 +#: adminpages/discountcodes.php:61 +#: adminpages/discountcodes.php:89 +#: adminpages/discountcodes.php:125 +#: adminpages/discountcodes.php:127 +msgid "Error updating discount code. That code may already be in use." +msgstr "Fehler beim Bearbeiten des Gutscheincodes. Der Code wird möglicherweise bereits verwendet." + +#: adminpages/discountcodes.php:280 +#: adminpages/discountcodes.php:196 +#: adminpages/discountcodes.php:197 +#: adminpages/discountcodes.php:198 +#: adminpages/discountcodes.php:203 +#: adminpages/discountcodes.php:247 +#: adminpages/discountcodes.php:287 +#: adminpages/discountcodes.php:289 +#, php-format +msgid "Error saving values for the %s level." +msgstr "Fehler beim Speichern der Einstellungen für das %s Paket." + +#: adminpages/discountcodes.php:288 +#: adminpages/discountcodes.php:204 +#: adminpages/discountcodes.php:205 +#: adminpages/discountcodes.php:206 +#: adminpages/discountcodes.php:211 +#: adminpages/discountcodes.php:255 +#: adminpages/discountcodes.php:295 +#: adminpages/discountcodes.php:297 +msgid "There were errors updating the level values: " +msgstr "Es gab Fehler beim aktualisieren der Paket-Einstellungen:" + +#: adminpages/discountcodes.php:328 +#: adminpages/discountcodes.php:234 +#: adminpages/discountcodes.php:237 +#: adminpages/discountcodes.php:238 +#: adminpages/discountcodes.php:239 +#: adminpages/discountcodes.php:244 +#: adminpages/discountcodes.php:288 +#: adminpages/discountcodes.php:335 +#: adminpages/discountcodes.php:337 +#, php-format +msgid "Code %s deleted successfully." +msgstr "Code %s erfolgreich gelöscht." + +#: adminpages/discountcodes.php:333 +#: adminpages/discountcodes.php:239 +#: adminpages/discountcodes.php:242 +#: adminpages/discountcodes.php:243 +#: adminpages/discountcodes.php:244 +#: adminpages/discountcodes.php:249 +#: adminpages/discountcodes.php:293 +#: adminpages/discountcodes.php:340 +#: adminpages/discountcodes.php:342 +msgid "Error deleting discount code. The code was only partially deleted. Please try again." +msgstr "Fehler beim Löschen des Gutscheincodes. Der Code wurde nur teilweise gelöscht. Bitte versuchen Sie es erneut." + +#: adminpages/discountcodes.php:339 +#: adminpages/discountcodes.php:245 +#: adminpages/discountcodes.php:248 +#: adminpages/discountcodes.php:249 +#: adminpages/discountcodes.php:250 +#: adminpages/discountcodes.php:255 +#: adminpages/discountcodes.php:299 +#: adminpages/discountcodes.php:346 +#: adminpages/discountcodes.php:348 +msgid "Error deleting code. Please try again." +msgstr "Fehler beim Löschen des Codes. Bitte versuchen Sie es erneut." + +#: adminpages/discountcodes.php:345 +#: adminpages/discountcodes.php:251 +#: adminpages/discountcodes.php:254 +#: adminpages/discountcodes.php:255 +#: adminpages/discountcodes.php:256 +#: adminpages/discountcodes.php:261 +#: adminpages/discountcodes.php:305 +#: adminpages/discountcodes.php:352 +#: adminpages/discountcodes.php:796 +#: adminpages/discountcodes.php:354 +#: adminpages/discountcodes.php:798 +#: adminpages/discountcodes.php:799 +msgid "Code not found." +msgstr "Code nicht gefunden." + +#: adminpages/discountcodes.php:358 +#: adminpages/discountcodes.php:264 +#: adminpages/discountcodes.php:267 +#: adminpages/discountcodes.php:268 +#: adminpages/discountcodes.php:269 +#: adminpages/discountcodes.php:274 +#: adminpages/discountcodes.php:318 +#: adminpages/discountcodes.php:373 +#: adminpages/discountcodes.php:375 +msgid "Edit Discount Code" +msgstr "Gutscheincode bearbeiten" + +#: adminpages/discountcodes.php:360 +#: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:266 +#: adminpages/discountcodes.php:269 +#: adminpages/discountcodes.php:270 +#: adminpages/discountcodes.php:271 +#: adminpages/discountcodes.php:276 +#: adminpages/discountcodes.php:320 +#: adminpages/discountcodes.php:526 +#: adminpages/discountcodes.php:529 +#: adminpages/discountcodes.php:557 +#: adminpages/discountcodes.php:558 +#: adminpages/discountcodes.php:559 +#: adminpages/discountcodes.php:564 +#: adminpages/discountcodes.php:637 +#: adminpages/discountcodes.php:375 +#: adminpages/discountcodes.php:735 +#: adminpages/discountcodes.php:377 +#: adminpages/discountcodes.php:737 +#: adminpages/discountcodes.php:738 +msgid "Add New Discount Code" +msgstr "Neuen Gutscheincode hinzufügen" + +#: adminpages/discountcodes.php:422 +#: adminpages/discountcodes.php:719 +#: adminpages/membershiplevels.php:322 +#: adminpages/membershiplevels.php:663 +#: adminpages/memberslist.php:164 +#: adminpages/orders.php:1231 +#: adminpages/reports/login.php:162 +#: adminpages/templates/orders-email.php:46 +#: adminpages/templates/orders-print.php:75 +#: adminpages/discountcodes.php:306 +#: adminpages/discountcodes.php:309 +#: adminpages/discountcodes.php:310 +#: adminpages/discountcodes.php:311 +#: adminpages/discountcodes.php:316 +#: adminpages/discountcodes.php:381 +#: adminpages/discountcodes.php:547 +#: adminpages/discountcodes.php:557 +#: adminpages/discountcodes.php:585 +#: adminpages/discountcodes.php:586 +#: adminpages/discountcodes.php:587 +#: adminpages/discountcodes.php:592 +#: adminpages/discountcodes.php:665 +#: adminpages/membershiplevels.php:284 +#: adminpages/membershiplevels.php:286 +#: adminpages/membershiplevels.php:288 +#: adminpages/membershiplevels.php:312 +#: adminpages/membershiplevels.php:505 +#: adminpages/membershiplevels.php:511 +#: adminpages/membershiplevels.php:513 +#: adminpages/membershiplevels.php:540 +#: adminpages/membershiplevels.php:541 +#: adminpages/membershiplevels.php:583 +#: adminpages/membershiplevels.php:629 +#: adminpages/membershiplevels.php:631 +#: adminpages/membershiplevels.php:636 +#: adminpages/membershiplevels.php:637 +#: adminpages/membershiplevels.php:641 +#: adminpages/membershiplevels.php:653 +#: adminpages/memberslist.php:111 +#: adminpages/memberslist.php:144 +#: adminpages/memberslist.php:154 +#: adminpages/orders.php:597 +#: adminpages/orders.php:900 +#: adminpages/orders.php:910 +#: adminpages/orders.php:937 +#: adminpages/orders.php:966 +#: adminpages/orders.php:1103 +#: adminpages/orders.php:1134 +#: adminpages/orders.php:1140 +#: adminpages/reports/login.php:140 +#: adminpages/reports/login.php:142 +#: adminpages/reports/login.php:158 +#: adminpages/discountcodes.php:444 +#: adminpages/discountcodes.php:783 +#: adminpages/membershiplevels.php:347 +#: adminpages/membershiplevels.php:807 +#: adminpages/orders.php:1333 +#: adminpages/reports/history.php:182 +#: adminpages/reports/login.php:179 +#: adminpages/orders.php:1339 +#: adminpages/discountcodes.php:446 +#: adminpages/discountcodes.php:785 +#: adminpages/membershiplevels.php:345 +#: adminpages/membershiplevels.php:805 +#: adminpages/reports/login.php:182 +#: adminpages/templates/orders-email.php:49 +#: adminpages/templates/orders-print.php:78 +msgid "ID" +msgstr "ID" + +#: adminpages/discountcodes.php:423 +#: adminpages/orders.php:394 +#: adminpages/discountcodes.php:307 +#: adminpages/discountcodes.php:310 +#: adminpages/discountcodes.php:311 +#: adminpages/discountcodes.php:312 +#: adminpages/discountcodes.php:317 +#: adminpages/discountcodes.php:382 +#: adminpages/orders.php:211 +#: adminpages/orders.php:261 +#: adminpages/orders.php:333 +#: adminpages/orders.php:344 +#: adminpages/orders.php:362 +#: adminpages/orders.php:375 +#: adminpages/orders.php:386 +#: adminpages/discountcodes.php:445 +#: adminpages/orders.php:415 +#: adminpages/orders.php:421 +#: adminpages/discountcodes.php:447 +msgid "This will be generated when you save." +msgstr "Wird beim Speichern automatisch generiert." + +#: adminpages/discountcodes.php:427 +#: adminpages/discountcodes.php:720 +#: adminpages/orders.php:401 +#: adminpages/orders.php:1232 +#: adminpages/discountcodes.php:311 +#: adminpages/discountcodes.php:314 +#: adminpages/discountcodes.php:315 +#: adminpages/discountcodes.php:316 +#: adminpages/discountcodes.php:321 +#: adminpages/discountcodes.php:386 +#: adminpages/discountcodes.php:548 +#: adminpages/discountcodes.php:558 +#: adminpages/discountcodes.php:586 +#: adminpages/discountcodes.php:587 +#: adminpages/discountcodes.php:588 +#: adminpages/discountcodes.php:593 +#: adminpages/discountcodes.php:666 +#: adminpages/orders.php:215 +#: adminpages/orders.php:265 +#: adminpages/orders.php:337 +#: adminpages/orders.php:349 +#: adminpages/orders.php:366 +#: adminpages/orders.php:380 +#: adminpages/orders.php:391 +#: adminpages/orders.php:598 +#: adminpages/orders.php:901 +#: adminpages/orders.php:911 +#: adminpages/orders.php:938 +#: adminpages/orders.php:967 +#: adminpages/orders.php:1104 +#: adminpages/orders.php:1135 +#: adminpages/orders.php:1141 +#: adminpages/dashboard.php:286 +#: adminpages/discountcodes.php:449 +#: adminpages/discountcodes.php:784 +#: adminpages/orders.php:422 +#: adminpages/orders.php:1334 +#: adminpages/dashboard.php:290 +#: adminpages/orders.php:428 +#: adminpages/orders.php:1340 +#: adminpages/discountcodes.php:451 +#: adminpages/discountcodes.php:786 +#: adminpages/dashboard.php:292 +#: adminpages/discountcodes.php:787 +#: adminpages/orders.php:475 +#: adminpages/orders.php:1426 +msgid "Code" +msgstr "Code" + +#: adminpages/discountcodes.php:465 +#: includes/privacy.php:186 +#: adminpages/discountcodes.php:349 +#: adminpages/discountcodes.php:352 +#: adminpages/discountcodes.php:353 +#: adminpages/discountcodes.php:354 +#: adminpages/discountcodes.php:359 +#: adminpages/discountcodes.php:424 +#: adminpages/discountcodes.php:487 +#: adminpages/reports/history.php:34 +#: includes/profile.php:495 +#: adminpages/discountcodes.php:489 +#: includes/profile.php:501 +#: includes/profile.php:537 +msgid "Start Date" +msgstr "Start Datum" + +#: adminpages/discountcodes.php:483 +#: classes/gateways/class.pmprogateway_braintree.php:459 +#: classes/gateways/class.pmprogateway_stripe.php:621 +#: pages/billing.php:313 +#: pages/checkout.php:463 +#: adminpages/discountcodes.php:367 +#: adminpages/discountcodes.php:370 +#: adminpages/discountcodes.php:371 +#: adminpages/discountcodes.php:372 +#: adminpages/discountcodes.php:377 +#: adminpages/discountcodes.php:442 +#: classes/gateways/class.pmprogateway_braintree.php:308 +#: classes/gateways/class.pmprogateway_braintree.php:321 +#: classes/gateways/class.pmprogateway_braintree.php:323 +#: classes/gateways/class.pmprogateway_braintree.php:326 +#: classes/gateways/class.pmprogateway_braintree.php:327 +#: classes/gateways/class.pmprogateway_braintree.php:359 +#: classes/gateways/class.pmprogateway_braintree.php:361 +#: classes/gateways/class.pmprogateway_braintree.php:423 +#: classes/gateways/class.pmprogateway_stripe.php:454 +#: classes/gateways/class.pmprogateway_stripe.php:455 +#: classes/gateways/class.pmprogateway_stripe.php:465 +#: classes/gateways/class.pmprogateway_stripe.php:469 +#: classes/gateways/class.pmprogateway_stripe.php:495 +#: classes/gateways/class.pmprogateway_stripe.php:498 +#: classes/gateways/class.pmprogateway_stripe.php:500 +#: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:521 +#: classes/gateways/class.pmprogateway_stripe.php:532 +#: classes/gateways/class.pmprogateway_stripe.php:570 +#: classes/gateways/class.pmprogateway_stripe.php:597 +#: classes/gateways/class.pmprogateway_stripe.php:613 +#: classes/gateways/class.pmprogateway_stripe.php:629 +#: classes/gateways/class.pmprogateway_stripe.php:630 +#: pages/billing.php:249 +#: pages/billing.php:253 +#: pages/billing.php:262 +#: pages/billing.php:265 +#: pages/billing.php:268 +#: pages/billing.php:310 +#: pages/billing.php:316 +#: pages/billing.php:317 +#: pages/billing.php:319 +#: pages/billing.php:342 +#: pages/checkout.php:508 +#: pages/checkout.php:524 +#: pages/checkout.php:525 +#: pages/checkout.php:532 +#: pages/checkout.php:553 +#: pages/checkout.php:562 +#: pages/checkout.php:571 +#: pages/checkout.php:575 +#: pages/checkout.php:582 +#: pages/checkout.php:585 +#: adminpages/discountcodes.php:505 +#: classes/gateways/class.pmprogateway_braintree.php:479 +#: classes/gateways/class.pmprogateway_stripe.php:1289 +#: pages/billing.php:375 +#: pages/checkout.php:393 +#: classes/gateways/class.pmprogateway_stripe.php:1301 +#: adminpages/discountcodes.php:507 +#: classes/gateways/class.pmprogateway_stripe.php:1320 +#: classes/gateways/class.pmprogateway_stripe.php:1326 +#: classes/gateways/class.pmprogateway_braintree.php:486 +#: classes/gateways/class.pmprogateway_stripe.php:893 +#: pages/billing.php:381 +msgid "Expiration Date" +msgstr "Ablaufdatum" + +#: adminpages/discountcodes.php:501 +#: adminpages/discountcodes.php:723 +#: adminpages/discountcodes.php:385 +#: adminpages/discountcodes.php:388 +#: adminpages/discountcodes.php:389 +#: adminpages/discountcodes.php:390 +#: adminpages/discountcodes.php:395 +#: adminpages/discountcodes.php:460 +#: adminpages/discountcodes.php:551 +#: adminpages/discountcodes.php:561 +#: adminpages/discountcodes.php:589 +#: adminpages/discountcodes.php:590 +#: adminpages/discountcodes.php:591 +#: adminpages/discountcodes.php:596 +#: adminpages/discountcodes.php:669 +#: adminpages/discountcodes.php:523 +#: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:525 +#: adminpages/discountcodes.php:789 +#: adminpages/discountcodes.php:790 +msgid "Uses" +msgstr "Nutzungen" + +#: adminpages/discountcodes.php:504 +#: adminpages/discountcodes.php:388 +#: adminpages/discountcodes.php:391 +#: adminpages/discountcodes.php:392 +#: adminpages/discountcodes.php:393 +#: adminpages/discountcodes.php:398 +#: adminpages/discountcodes.php:463 +#: adminpages/discountcodes.php:526 +#: adminpages/discountcodes.php:528 +msgid "Leave blank for unlimited uses." +msgstr "Für unbeschränkte Anzahl an Nutzungen leer lassen." + +#: adminpages/discountcodes.php:513 +#: adminpages/discountcodes.php:400 +#: adminpages/discountcodes.php:401 +#: adminpages/discountcodes.php:402 +#: adminpages/discountcodes.php:407 +#: adminpages/discountcodes.php:472 +#: adminpages/discountcodes.php:535 +#: adminpages/discountcodes.php:537 +msgid "Which Levels Will This Code Apply To?" +msgstr "Für welche Pakete wird dieser Code angewandt?" + +#: adminpages/discountcodes.php:551 +#: adminpages/membershiplevels.php:375 +#: adminpages/discountcodes.php:427 +#: adminpages/discountcodes.php:430 +#: adminpages/discountcodes.php:431 +#: adminpages/discountcodes.php:432 +#: adminpages/discountcodes.php:437 +#: adminpages/discountcodes.php:510 +#: adminpages/membershiplevels.php:337 +#: adminpages/membershiplevels.php:339 +#: adminpages/membershiplevels.php:341 +#: adminpages/membershiplevels.php:342 +#: adminpages/membershiplevels.php:365 +#: adminpages/membershiplevels.php:507 +#: adminpages/membershiplevels.php:513 +#: adminpages/membershiplevels.php:515 +#: adminpages/membershiplevels.php:542 +#: pages/levels.php:14 +#: adminpages/discountcodes.php:574 +#: adminpages/membershiplevels.php:401 +#: adminpages/discountcodes.php:576 +#: adminpages/membershiplevels.php:399 +msgid "Initial Payment" +msgstr "Einmal-Zahlung" + +#: adminpages/discountcodes.php:562 +#: adminpages/membershiplevels.php:386 +#: adminpages/discountcodes.php:428 +#: adminpages/discountcodes.php:431 +#: adminpages/discountcodes.php:441 +#: adminpages/discountcodes.php:442 +#: adminpages/discountcodes.php:443 +#: adminpages/discountcodes.php:448 +#: adminpages/discountcodes.php:521 +#: adminpages/membershiplevels.php:338 +#: adminpages/membershiplevels.php:340 +#: adminpages/membershiplevels.php:350 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:353 +#: adminpages/membershiplevels.php:376 +#: adminpages/discountcodes.php:585 +#: adminpages/membershiplevels.php:412 +#: adminpages/discountcodes.php:587 +#: adminpages/membershiplevels.php:410 +msgid "The initial amount collected at registration." +msgstr "Einmal-Zahlung, die bei Anmeldung fällig wird." + +#: adminpages/discountcodes.php:567 +#: adminpages/membershiplevels.php:390 +#: adminpages/discountcodes.php:432 +#: adminpages/discountcodes.php:435 +#: adminpages/discountcodes.php:446 +#: adminpages/discountcodes.php:447 +#: adminpages/discountcodes.php:448 +#: adminpages/discountcodes.php:453 +#: adminpages/discountcodes.php:526 +#: adminpages/membershiplevels.php:342 +#: adminpages/membershiplevels.php:344 +#: adminpages/membershiplevels.php:354 +#: adminpages/membershiplevels.php:356 +#: adminpages/membershiplevels.php:357 +#: adminpages/membershiplevels.php:380 +#: adminpages/discountcodes.php:590 +#: adminpages/membershiplevels.php:417 +#: adminpages/discountcodes.php:592 +#: adminpages/membershiplevels.php:415 +msgid "Recurring Subscription" +msgstr "Abo-Mitgliedschaft" + +#: adminpages/discountcodes.php:568 +#: adminpages/membershiplevels.php:391 +#: adminpages/discountcodes.php:433 +#: adminpages/discountcodes.php:436 +#: adminpages/discountcodes.php:447 +#: adminpages/discountcodes.php:448 +#: adminpages/discountcodes.php:449 +#: adminpages/discountcodes.php:454 +#: adminpages/discountcodes.php:527 +#: adminpages/membershiplevels.php:343 +#: adminpages/membershiplevels.php:345 +#: adminpages/membershiplevels.php:355 +#: adminpages/membershiplevels.php:357 +#: adminpages/membershiplevels.php:358 +#: adminpages/membershiplevels.php:381 +#: adminpages/discountcodes.php:591 +#: adminpages/membershiplevels.php:418 +#: adminpages/discountcodes.php:593 +#: adminpages/membershiplevels.php:416 +msgid "Check if this level has a recurring subscription payment." +msgstr "Auswählen, wenn dieses Paket eine Abo-Mitgliedschaft haben soll." + +#: adminpages/discountcodes.php:572 +#: adminpages/membershiplevels.php:395 +#: adminpages/discountcodes.php:440 +#: adminpages/discountcodes.php:451 +#: adminpages/discountcodes.php:452 +#: adminpages/discountcodes.php:453 +#: adminpages/discountcodes.php:458 +#: adminpages/discountcodes.php:531 +#: adminpages/membershiplevels.php:347 +#: adminpages/membershiplevels.php:349 +#: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:361 +#: adminpages/membershiplevels.php:362 +#: adminpages/membershiplevels.php:385 +#: adminpages/discountcodes.php:595 +#: adminpages/membershiplevels.php:422 +#: adminpages/discountcodes.php:597 +#: adminpages/membershiplevels.php:420 +msgid "Billing Amount" +msgstr "Gesamtbetrag" + +#: adminpages/discountcodes.php:587 +#: adminpages/discountcodes.php:641 +#: adminpages/membershiplevels.php:410 +#: adminpages/membershiplevels.php:511 +#: classes/gateways/class.pmprogateway_stripe.php:679 +#: adminpages/discountcodes.php:446 +#: adminpages/discountcodes.php:466 +#: adminpages/discountcodes.php:467 +#: adminpages/discountcodes.php:468 +#: adminpages/discountcodes.php:473 +#: adminpages/discountcodes.php:492 +#: adminpages/discountcodes.php:520 +#: adminpages/discountcodes.php:521 +#: adminpages/discountcodes.php:522 +#: adminpages/discountcodes.php:527 +#: adminpages/discountcodes.php:546 +#: adminpages/discountcodes.php:600 +#: adminpages/membershiplevels.php:353 +#: adminpages/membershiplevels.php:355 +#: adminpages/membershiplevels.php:374 +#: adminpages/membershiplevels.php:376 +#: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:400 +#: adminpages/membershiplevels.php:449 +#: adminpages/membershiplevels.php:476 +#: adminpages/membershiplevels.php:477 +#: adminpages/membershiplevels.php:479 +#: adminpages/membershiplevels.php:480 +#: adminpages/membershiplevels.php:501 +#: classes/gateways/class.pmprogateway_stripe.php:521 +#: classes/gateways/class.pmprogateway_stripe.php:522 +#: classes/gateways/class.pmprogateway_stripe.php:532 +#: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:562 +#: classes/gateways/class.pmprogateway_stripe.php:566 +#: classes/gateways/class.pmprogateway_stripe.php:567 +#: classes/gateways/class.pmprogateway_stripe.php:570 +#: classes/gateways/class.pmprogateway_stripe.php:588 +#: classes/gateways/class.pmprogateway_stripe.php:599 +#: classes/gateways/class.pmprogateway_stripe.php:637 +#: classes/gateways/class.pmprogateway_stripe.php:664 +#: classes/gateways/class.pmprogateway_stripe.php:671 +#: classes/gateways/class.pmprogateway_stripe.php:687 +#: classes/gateways/class.pmprogateway_stripe.php:688 +#: adminpages/discountcodes.php:610 +#: adminpages/discountcodes.php:697 +#: adminpages/membershiplevels.php:437 +#: adminpages/membershiplevels.php:580 +#: classes/gateways/class.pmprogateway_stripe.php:1332 +#: classes/gateways/class.pmprogateway_stripe.php:1344 +#: adminpages/discountcodes.php:612 +#: adminpages/discountcodes.php:699 +#: classes/gateways/class.pmprogateway_stripe.php:1363 +#: classes/gateways/class.pmprogateway_stripe.php:1369 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3092 +msgid "Day(s)" +msgstr "Tag(e)" + +#: adminpages/discountcodes.php:587 +#: adminpages/discountcodes.php:641 +#: adminpages/membershiplevels.php:410 +#: adminpages/membershiplevels.php:511 +#: classes/gateways/class.pmprogateway_stripe.php:679 +#: adminpages/discountcodes.php:446 +#: adminpages/discountcodes.php:466 +#: adminpages/discountcodes.php:467 +#: adminpages/discountcodes.php:468 +#: adminpages/discountcodes.php:473 +#: adminpages/discountcodes.php:492 +#: adminpages/discountcodes.php:520 +#: adminpages/discountcodes.php:521 +#: adminpages/discountcodes.php:522 +#: adminpages/discountcodes.php:527 +#: adminpages/discountcodes.php:546 +#: adminpages/discountcodes.php:600 +#: adminpages/membershiplevels.php:353 +#: adminpages/membershiplevels.php:355 +#: adminpages/membershiplevels.php:374 +#: adminpages/membershiplevels.php:376 +#: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:400 +#: adminpages/membershiplevels.php:449 +#: adminpages/membershiplevels.php:476 +#: adminpages/membershiplevels.php:477 +#: adminpages/membershiplevels.php:479 +#: adminpages/membershiplevels.php:480 +#: adminpages/membershiplevels.php:501 +#: classes/gateways/class.pmprogateway_stripe.php:521 +#: classes/gateways/class.pmprogateway_stripe.php:522 +#: classes/gateways/class.pmprogateway_stripe.php:532 +#: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:562 +#: classes/gateways/class.pmprogateway_stripe.php:566 +#: classes/gateways/class.pmprogateway_stripe.php:567 +#: classes/gateways/class.pmprogateway_stripe.php:570 +#: classes/gateways/class.pmprogateway_stripe.php:588 +#: classes/gateways/class.pmprogateway_stripe.php:599 +#: classes/gateways/class.pmprogateway_stripe.php:637 +#: classes/gateways/class.pmprogateway_stripe.php:664 +#: classes/gateways/class.pmprogateway_stripe.php:671 +#: classes/gateways/class.pmprogateway_stripe.php:687 +#: classes/gateways/class.pmprogateway_stripe.php:688 +#: adminpages/discountcodes.php:610 +#: adminpages/discountcodes.php:697 +#: adminpages/membershiplevels.php:437 +#: adminpages/membershiplevels.php:580 +#: classes/gateways/class.pmprogateway_stripe.php:1334 +#: classes/gateways/class.pmprogateway_stripe.php:1346 +#: adminpages/discountcodes.php:612 +#: adminpages/discountcodes.php:699 +#: classes/gateways/class.pmprogateway_stripe.php:1365 +#: classes/gateways/class.pmprogateway_stripe.php:1371 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3094 +msgid "Month(s)" +msgstr "Monat(e)" + +#: adminpages/discountcodes.php:587 +#: adminpages/discountcodes.php:641 +#: adminpages/membershiplevels.php:410 +#: adminpages/membershiplevels.php:511 +#: classes/gateways/class.pmprogateway_stripe.php:679 +#: adminpages/discountcodes.php:446 +#: adminpages/discountcodes.php:466 +#: adminpages/discountcodes.php:467 +#: adminpages/discountcodes.php:468 +#: adminpages/discountcodes.php:473 +#: adminpages/discountcodes.php:492 +#: adminpages/discountcodes.php:520 +#: adminpages/discountcodes.php:521 +#: adminpages/discountcodes.php:522 +#: adminpages/discountcodes.php:527 +#: adminpages/discountcodes.php:546 +#: adminpages/discountcodes.php:600 +#: adminpages/membershiplevels.php:353 +#: adminpages/membershiplevels.php:355 +#: adminpages/membershiplevels.php:374 +#: adminpages/membershiplevels.php:376 +#: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:400 +#: adminpages/membershiplevels.php:449 +#: adminpages/membershiplevels.php:476 +#: adminpages/membershiplevels.php:477 +#: adminpages/membershiplevels.php:479 +#: adminpages/membershiplevels.php:480 +#: adminpages/membershiplevels.php:501 +#: classes/gateways/class.pmprogateway_stripe.php:521 +#: classes/gateways/class.pmprogateway_stripe.php:522 +#: classes/gateways/class.pmprogateway_stripe.php:532 +#: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:562 +#: classes/gateways/class.pmprogateway_stripe.php:566 +#: classes/gateways/class.pmprogateway_stripe.php:567 +#: classes/gateways/class.pmprogateway_stripe.php:570 +#: classes/gateways/class.pmprogateway_stripe.php:588 +#: classes/gateways/class.pmprogateway_stripe.php:599 +#: classes/gateways/class.pmprogateway_stripe.php:637 +#: classes/gateways/class.pmprogateway_stripe.php:664 +#: classes/gateways/class.pmprogateway_stripe.php:671 +#: classes/gateways/class.pmprogateway_stripe.php:687 +#: classes/gateways/class.pmprogateway_stripe.php:688 +#: adminpages/discountcodes.php:610 +#: adminpages/discountcodes.php:697 +#: adminpages/membershiplevels.php:437 +#: adminpages/membershiplevels.php:580 +#: classes/gateways/class.pmprogateway_stripe.php:1333 +#: classes/gateways/class.pmprogateway_stripe.php:1345 +#: adminpages/discountcodes.php:612 +#: adminpages/discountcodes.php:699 +#: classes/gateways/class.pmprogateway_stripe.php:1364 +#: classes/gateways/class.pmprogateway_stripe.php:1370 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3093 +msgid "Week(s)" +msgstr "Woche(n)" + +#: adminpages/discountcodes.php:587 +#: adminpages/discountcodes.php:641 +#: adminpages/membershiplevels.php:410 +#: adminpages/membershiplevels.php:511 +#: classes/gateways/class.pmprogateway_stripe.php:679 +#: adminpages/discountcodes.php:446 +#: adminpages/discountcodes.php:466 +#: adminpages/discountcodes.php:467 +#: adminpages/discountcodes.php:468 +#: adminpages/discountcodes.php:473 +#: adminpages/discountcodes.php:492 +#: adminpages/discountcodes.php:520 +#: adminpages/discountcodes.php:521 +#: adminpages/discountcodes.php:522 +#: adminpages/discountcodes.php:527 +#: adminpages/discountcodes.php:546 +#: adminpages/discountcodes.php:600 +#: adminpages/membershiplevels.php:353 +#: adminpages/membershiplevels.php:355 +#: adminpages/membershiplevels.php:374 +#: adminpages/membershiplevels.php:376 +#: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:400 +#: adminpages/membershiplevels.php:449 +#: adminpages/membershiplevels.php:476 +#: adminpages/membershiplevels.php:477 +#: adminpages/membershiplevels.php:479 +#: adminpages/membershiplevels.php:480 +#: adminpages/membershiplevels.php:501 +#: classes/gateways/class.pmprogateway_stripe.php:521 +#: classes/gateways/class.pmprogateway_stripe.php:522 +#: classes/gateways/class.pmprogateway_stripe.php:532 +#: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:562 +#: classes/gateways/class.pmprogateway_stripe.php:566 +#: classes/gateways/class.pmprogateway_stripe.php:567 +#: classes/gateways/class.pmprogateway_stripe.php:570 +#: classes/gateways/class.pmprogateway_stripe.php:588 +#: classes/gateways/class.pmprogateway_stripe.php:599 +#: classes/gateways/class.pmprogateway_stripe.php:637 +#: classes/gateways/class.pmprogateway_stripe.php:664 +#: classes/gateways/class.pmprogateway_stripe.php:671 +#: classes/gateways/class.pmprogateway_stripe.php:687 +#: classes/gateways/class.pmprogateway_stripe.php:688 +#: adminpages/discountcodes.php:610 +#: adminpages/discountcodes.php:697 +#: adminpages/membershiplevels.php:437 +#: adminpages/membershiplevels.php:580 +#: classes/gateways/class.pmprogateway_stripe.php:1335 +#: classes/gateways/class.pmprogateway_stripe.php:1347 +#: adminpages/discountcodes.php:612 +#: adminpages/discountcodes.php:699 +#: classes/gateways/class.pmprogateway_stripe.php:1366 +#: classes/gateways/class.pmprogateway_stripe.php:1372 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3095 +msgid "Year(s)" +msgstr "Jahr(e)" + +#: adminpages/discountcodes.php:595 +#: adminpages/membershiplevels.php:419 +#: adminpages/discountcodes.php:451 +#: adminpages/discountcodes.php:454 +#: adminpages/discountcodes.php:474 +#: adminpages/discountcodes.php:475 +#: adminpages/discountcodes.php:476 +#: adminpages/discountcodes.php:481 +#: adminpages/discountcodes.php:554 +#: adminpages/membershiplevels.php:362 +#: adminpages/membershiplevels.php:364 +#: adminpages/membershiplevels.php:383 +#: adminpages/membershiplevels.php:385 +#: adminpages/membershiplevels.php:386 +#: adminpages/membershiplevels.php:409 +#: adminpages/discountcodes.php:618 +#: adminpages/membershiplevels.php:446 +#: adminpages/discountcodes.php:620 +#: adminpages/membershiplevels.php:444 +msgid "The amount to be billed one cycle after the initial payment." +msgstr "Der Betrag, der einen Zyklus nach der ersten Zahlung in Rechnung gestellt wird." + +#: adminpages/discountcodes.php:600 +#: adminpages/membershiplevels.php:435 +#: adminpages/discountcodes.php:456 +#: adminpages/discountcodes.php:459 +#: adminpages/discountcodes.php:479 +#: adminpages/discountcodes.php:480 +#: adminpages/discountcodes.php:481 +#: adminpages/discountcodes.php:486 +#: adminpages/discountcodes.php:559 +#: adminpages/membershiplevels.php:380 +#: adminpages/membershiplevels.php:382 +#: adminpages/membershiplevels.php:401 +#: adminpages/membershiplevels.php:403 +#: adminpages/membershiplevels.php:404 +#: adminpages/membershiplevels.php:425 +#: adminpages/discountcodes.php:628 +#: adminpages/membershiplevels.php:465 +#: adminpages/discountcodes.php:630 +#: adminpages/membershiplevels.php:463 +msgid "Billing Cycle Limit" +msgstr "Limit der Abrechnungszyklen" + +#: adminpages/discountcodes.php:603 +#: adminpages/membershiplevels.php:439 +#: adminpages/discountcodes.php:459 +#: adminpages/discountcodes.php:462 +#: adminpages/discountcodes.php:482 +#: adminpages/discountcodes.php:483 +#: adminpages/discountcodes.php:484 +#: adminpages/discountcodes.php:489 +#: adminpages/discountcodes.php:562 +#: adminpages/membershiplevels.php:384 +#: adminpages/membershiplevels.php:386 +#: adminpages/membershiplevels.php:405 +#: adminpages/membershiplevels.php:407 +#: adminpages/membershiplevels.php:408 +#: adminpages/membershiplevels.php:429 +#: adminpages/discountcodes.php:632 +#: adminpages/membershiplevels.php:469 +#: adminpages/discountcodes.php:634 +#: adminpages/membershiplevels.php:467 +msgid "The total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." +msgstr "Die gesamte Anzahl an Zahlungszyklen für dieses Paket, inklusive der Test-Periode (falls zutreffend) aber ohne die Einmal-Zahlung. Auf Null setzen, falls der Zugang unbegrenzt ist." + +#: adminpages/discountcodes.php:608 +#: adminpages/membershiplevels.php:448 +#: adminpages/discountcodes.php:464 +#: adminpages/discountcodes.php:467 +#: adminpages/discountcodes.php:487 +#: adminpages/discountcodes.php:488 +#: adminpages/discountcodes.php:489 +#: adminpages/discountcodes.php:494 +#: adminpages/discountcodes.php:567 +#: adminpages/membershiplevels.php:393 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:414 +#: adminpages/membershiplevels.php:416 +#: adminpages/membershiplevels.php:417 +#: adminpages/membershiplevels.php:438 +#: adminpages/discountcodes.php:651 +#: adminpages/membershiplevels.php:488 +#: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 +msgid "Custom Trial" +msgstr "Testphase" + +#: adminpages/discountcodes.php:609 +#: adminpages/membershiplevels.php:450 +#: adminpages/discountcodes.php:465 +#: adminpages/discountcodes.php:468 +#: adminpages/discountcodes.php:488 +#: adminpages/discountcodes.php:489 +#: adminpages/discountcodes.php:490 +#: adminpages/discountcodes.php:495 +#: adminpages/discountcodes.php:568 +#: adminpages/membershiplevels.php:394 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:397 +#: adminpages/membershiplevels.php:416 +#: adminpages/membershiplevels.php:418 +#: adminpages/membershiplevels.php:419 +#: adminpages/membershiplevels.php:440 +#: adminpages/discountcodes.php:653 +#: adminpages/membershiplevels.php:490 +#: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 +msgid "Check to add a custom trial period." +msgstr "Aktivieren, um eine Testphase hinzuzufügen." + +#: adminpages/discountcodes.php:613 +#: adminpages/membershiplevels.php:459 +#: adminpages/discountcodes.php:469 +#: adminpages/discountcodes.php:472 +#: adminpages/discountcodes.php:492 +#: adminpages/discountcodes.php:493 +#: adminpages/discountcodes.php:494 +#: adminpages/discountcodes.php:499 +#: adminpages/discountcodes.php:572 +#: adminpages/membershiplevels.php:398 +#: adminpages/membershiplevels.php:404 +#: adminpages/membershiplevels.php:406 +#: adminpages/membershiplevels.php:425 +#: adminpages/membershiplevels.php:427 +#: adminpages/membershiplevels.php:428 +#: adminpages/membershiplevels.php:449 +#: adminpages/discountcodes.php:661 +#: adminpages/membershiplevels.php:510 +#: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 +msgid "Trial Billing Amount" +msgstr "Betrag für Testphase" + +#: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:470 +#: adminpages/discountcodes.php:472 +#: adminpages/discountcodes.php:475 +#: adminpages/discountcodes.php:503 +#: adminpages/discountcodes.php:504 +#: adminpages/discountcodes.php:505 +#: adminpages/discountcodes.php:510 +#: adminpages/discountcodes.php:583 +#: adminpages/membershiplevels.php:401 +#: adminpages/membershiplevels.php:407 +#: adminpages/membershiplevels.php:409 +#: adminpages/membershiplevels.php:436 +#: adminpages/membershiplevels.php:438 +#: adminpages/membershiplevels.php:439 +#: adminpages/membershiplevels.php:460 +#: adminpages/discountcodes.php:672 +#: adminpages/membershiplevels.php:521 +#: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 +msgid "for the first" +msgstr "für die ersten" + +#: adminpages/discountcodes.php:626 +#: adminpages/membershiplevels.php:472 +#: adminpages/discountcodes.php:474 +#: adminpages/discountcodes.php:477 +#: adminpages/discountcodes.php:505 +#: adminpages/discountcodes.php:506 +#: adminpages/discountcodes.php:507 +#: adminpages/discountcodes.php:512 +#: adminpages/discountcodes.php:585 +#: adminpages/membershiplevels.php:403 +#: adminpages/membershiplevels.php:409 +#: adminpages/membershiplevels.php:411 +#: adminpages/membershiplevels.php:438 +#: adminpages/membershiplevels.php:440 +#: adminpages/membershiplevels.php:441 +#: adminpages/membershiplevels.php:462 +#: adminpages/discountcodes.php:674 +#: adminpages/membershiplevels.php:523 +#: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 +msgid "subscription payments" +msgstr "Abonnement Zahlungen" + +#: adminpages/discountcodes.php:631 +#: adminpages/membershiplevels.php:501 +#: adminpages/discountcodes.php:479 +#: adminpages/discountcodes.php:482 +#: adminpages/discountcodes.php:510 +#: adminpages/discountcodes.php:511 +#: adminpages/discountcodes.php:512 +#: adminpages/discountcodes.php:517 +#: adminpages/discountcodes.php:590 +#: adminpages/membershiplevels.php:431 +#: adminpages/membershiplevels.php:437 +#: adminpages/membershiplevels.php:439 +#: adminpages/membershiplevels.php:466 +#: adminpages/membershiplevels.php:467 +#: adminpages/membershiplevels.php:469 +#: adminpages/membershiplevels.php:470 +#: adminpages/membershiplevels.php:491 +#: adminpages/discountcodes.php:686 +#: adminpages/membershiplevels.php:559 +#: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 +msgid "Membership Expiration" +msgstr "Zugang läuft ab" + +#: adminpages/discountcodes.php:632 +#: adminpages/membershiplevels.php:502 +#: adminpages/discountcodes.php:483 +#: adminpages/discountcodes.php:511 +#: adminpages/discountcodes.php:512 +#: adminpages/discountcodes.php:513 +#: adminpages/discountcodes.php:518 +#: adminpages/discountcodes.php:591 +#: adminpages/membershiplevels.php:432 +#: adminpages/membershiplevels.php:438 +#: adminpages/membershiplevels.php:440 +#: adminpages/membershiplevels.php:467 +#: adminpages/membershiplevels.php:468 +#: adminpages/membershiplevels.php:470 +#: adminpages/membershiplevels.php:471 +#: adminpages/membershiplevels.php:492 +#: adminpages/discountcodes.php:687 +#: adminpages/membershiplevels.php:560 +#: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 +msgid "Check this to set when membership access expires." +msgstr "Wählen Sie diese Option, wenn der Zugang ablaufen soll." + +#: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:506 +#: adminpages/discountcodes.php:484 +#: adminpages/discountcodes.php:487 +#: adminpages/discountcodes.php:515 +#: adminpages/discountcodes.php:516 +#: adminpages/discountcodes.php:517 +#: adminpages/discountcodes.php:522 +#: adminpages/discountcodes.php:595 +#: adminpages/membershiplevels.php:436 +#: adminpages/membershiplevels.php:442 +#: adminpages/membershiplevels.php:444 +#: adminpages/membershiplevels.php:471 +#: adminpages/membershiplevels.php:472 +#: adminpages/membershiplevels.php:474 +#: adminpages/membershiplevels.php:475 +#: adminpages/membershiplevels.php:496 +#: adminpages/discountcodes.php:691 +#: adminpages/membershiplevels.php:575 +#: pages/confirmation.php:140 +#: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 +msgid "Expires In" +msgstr "Läuft ab in" + +#: adminpages/discountcodes.php:649 +#: adminpages/membershiplevels.php:519 +#: adminpages/discountcodes.php:500 +#: adminpages/discountcodes.php:528 +#: adminpages/discountcodes.php:529 +#: adminpages/discountcodes.php:530 +#: adminpages/discountcodes.php:535 +#: adminpages/discountcodes.php:608 +#: adminpages/membershiplevels.php:449 +#: adminpages/membershiplevels.php:455 +#: adminpages/membershiplevels.php:457 +#: adminpages/membershiplevels.php:484 +#: adminpages/membershiplevels.php:485 +#: adminpages/membershiplevels.php:487 +#: adminpages/membershiplevels.php:488 +#: adminpages/membershiplevels.php:509 +#: adminpages/discountcodes.php:707 +#: adminpages/membershiplevels.php:586 +#: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 +msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." +msgstr " Dauer des Zugangs bestimmen. Beachten Sie, dass zukünftige Zahlungen (Abo-Zahlungen, falls welche anfallen) storniert werden, wenn der Zugang abläuft." + +#: adminpages/discountcodes.php:677 +#: adminpages/discountcodes.php:525 +#: adminpages/discountcodes.php:528 +#: adminpages/discountcodes.php:556 +#: adminpages/discountcodes.php:557 +#: adminpages/discountcodes.php:558 +#: adminpages/discountcodes.php:563 +#: adminpages/discountcodes.php:636 +#: adminpages/discountcodes.php:734 +#: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 +msgid "Memberships Discount Codes" +msgstr "Mitgliedschaft Gutscheincodes" + +#: adminpages/discountcodes.php:700 +#: adminpages/discountcodes.php:766 +#: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 +#, php-format +msgid "%d discount codes found." +msgstr "%d Gutscheincodes gefunden." + +#: adminpages/discountcodes.php:707 +#: adminpages/discountcodes.php:535 +#: adminpages/discountcodes.php:538 +#: adminpages/discountcodes.php:566 +#: adminpages/discountcodes.php:567 +#: adminpages/discountcodes.php:568 +#: adminpages/discountcodes.php:573 +#: adminpages/discountcodes.php:646 +#: adminpages/discountcodes.php:771 +#: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 +msgid "Search Discount Codes" +msgstr "Gutscheincodes durchsuchen" + +#: adminpages/discountcodes.php:710 +#: adminpages/reports/login.php:103 +#: adminpages/discountcodes.php:538 +#: adminpages/discountcodes.php:541 +#: adminpages/discountcodes.php:569 +#: adminpages/discountcodes.php:570 +#: adminpages/discountcodes.php:571 +#: adminpages/discountcodes.php:576 +#: adminpages/discountcodes.php:649 +#: adminpages/reports/login.php:81 +#: adminpages/reports/login.php:83 +#: adminpages/reports/login.php:99 +#: adminpages/discountcodes.php:774 +#: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 +msgid "Search" +msgstr "Suchen" + +#: adminpages/discountcodes.php:721 +#: adminpages/discountcodes.php:549 +#: adminpages/discountcodes.php:559 +#: adminpages/discountcodes.php:587 +#: adminpages/discountcodes.php:588 +#: adminpages/discountcodes.php:589 +#: adminpages/discountcodes.php:594 +#: adminpages/discountcodes.php:667 +#: adminpages/discountcodes.php:785 +#: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 +msgid "Starts" +msgstr "Beginnt" + +#: adminpages/discountcodes.php:722 +#: adminpages/memberslist.php:183 +#: adminpages/reports/login.php:167 +#: includes/profile.php:122 +#: adminpages/discountcodes.php:550 +#: adminpages/discountcodes.php:560 +#: adminpages/discountcodes.php:588 +#: adminpages/discountcodes.php:589 +#: adminpages/discountcodes.php:590 +#: adminpages/discountcodes.php:595 +#: adminpages/discountcodes.php:668 +#: adminpages/memberslist.php:121 +#: adminpages/memberslist.php:159 +#: adminpages/memberslist.php:169 +#: adminpages/memberslist.php:179 +#: adminpages/reports/login.php:145 +#: adminpages/reports/login.php:147 +#: adminpages/reports/login.php:163 +#: includes/profile.php:98 +#: includes/profile.php:102 +#: includes/profile.php:107 +#: includes/profile.php:114 +#: includes/profile.php:118 +#: includes/profile.php:120 +#: adminpages/dashboard.php:222 +#: adminpages/discountcodes.php:786 +#: adminpages/reports/history.php:187 +#: adminpages/reports/login.php:184 +#: includes/profile.php:89 +#: adminpages/dashboard.php:226 +#: adminpages/discountcodes.php:788 +#: adminpages/dashboard.php:228 +#: adminpages/discountcodes.php:789 +#: adminpages/reports/login.php:187 +#: includes/profile.php:75 +msgid "Expires" +msgstr "Endet" + +#: adminpages/discountcodes.php:724 +#: adminpages/discountcodes.php:552 +#: adminpages/discountcodes.php:562 +#: adminpages/discountcodes.php:590 +#: adminpages/discountcodes.php:591 +#: adminpages/discountcodes.php:592 +#: adminpages/discountcodes.php:597 +#: adminpages/discountcodes.php:670 +#: adminpages/admin_header.php:253 +#: adminpages/discountcodes.php:788 +#: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 +msgid "Levels" +msgstr "Pakete" + +#: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:570 +#: adminpages/discountcodes.php:574 +#: adminpages/discountcodes.php:602 +#: adminpages/discountcodes.php:603 +#: adminpages/discountcodes.php:604 +#: adminpages/discountcodes.php:609 +#: adminpages/discountcodes.php:682 +msgid "Create your first discount code now" +msgstr "Erstellen Sie Ihren ersten Gutscheincode" + +#: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:570 +#: adminpages/discountcodes.php:574 +#: adminpages/discountcodes.php:602 +#: adminpages/discountcodes.php:603 +#: adminpages/discountcodes.php:604 +#: adminpages/discountcodes.php:609 +#: adminpages/discountcodes.php:682 +msgid "Discount codes allow you to offer your memberships at discounted prices to select customers." +msgstr "Gutscheincodes erlauben Ihnen, Zugänge zu günstigeren Preisen an ausgewählte Kunden zu vergeben." + +#: adminpages/discountcodes.php:789 +#: adminpages/membershiplevels.php:696 +#: adminpages/orders.php:1360 +#: adminpages/discountcodes.php:614 +#: adminpages/discountcodes.php:619 +#: adminpages/discountcodes.php:647 +#: adminpages/discountcodes.php:648 +#: adminpages/discountcodes.php:649 +#: adminpages/discountcodes.php:650 +#: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:735 +#: adminpages/membershiplevels.php:564 +#: adminpages/membershiplevels.php:570 +#: adminpages/membershiplevels.php:572 +#: adminpages/membershiplevels.php:580 +#: adminpages/membershiplevels.php:599 +#: adminpages/membershiplevels.php:660 +#: adminpages/membershiplevels.php:662 +#: adminpages/membershiplevels.php:664 +#: adminpages/membershiplevels.php:669 +#: adminpages/membershiplevels.php:670 +#: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:686 +#: adminpages/orders.php:658 +#: adminpages/orders.php:961 +#: adminpages/orders.php:979 +#: adminpages/orders.php:989 +#: adminpages/orders.php:992 +#: adminpages/orders.php:1021 +#: adminpages/orders.php:1050 +#: adminpages/orders.php:1205 +#: adminpages/orders.php:1239 +#: adminpages/orders.php:1245 +#: adminpages/orders.php:1488 +#: adminpages/orders.php:1565 +#: adminpages/orders.php:1564 +#: adminpages/orders.php:1726 +msgid "edit" +msgstr "bearbeiten" + +#. translators: %s is the Discount Code. +#: adminpages/discountcodes.php:792 +#: adminpages/discountcodes.php:617 +#: adminpages/discountcodes.php:622 +#: adminpages/discountcodes.php:650 +#: adminpages/discountcodes.php:651 +#: adminpages/discountcodes.php:652 +#: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:658 +#: adminpages/discountcodes.php:738 +#: adminpages/discountcodes.php:816 +#: adminpages/discountcodes.php:813 +#: adminpages/discountcodes.php:815 +#, php-format +msgid "Are you sure you want to delete the %s discount code? The subscriptions for existing users will not change, but new users will not be able to use this code anymore." +msgstr "Sind Sie sicher, dass Sie den %s Gutscheincode löschen wollen? Die Mitgliedschaften für bestehende Kunden wird nicht verändert, aber neue Kunden werden diesen Code nicht mehr nutzen können." + +#: adminpages/discountcodes.php:792 +#: adminpages/membershiplevels.php:696 +#: adminpages/orders.php:1366 +#: adminpages/discountcodes.php:617 +#: adminpages/discountcodes.php:622 +#: adminpages/discountcodes.php:650 +#: adminpages/discountcodes.php:651 +#: adminpages/discountcodes.php:652 +#: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:658 +#: adminpages/discountcodes.php:738 +#: adminpages/membershiplevels.php:566 +#: adminpages/membershiplevels.php:572 +#: adminpages/membershiplevels.php:574 +#: adminpages/membershiplevels.php:580 +#: adminpages/membershiplevels.php:601 +#: adminpages/membershiplevels.php:660 +#: adminpages/membershiplevels.php:662 +#: adminpages/membershiplevels.php:664 +#: adminpages/membershiplevels.php:669 +#: adminpages/membershiplevels.php:670 +#: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:686 +#: adminpages/orders.php:664 +#: adminpages/orders.php:967 +#: adminpages/orders.php:985 +#: adminpages/orders.php:995 +#: adminpages/orders.php:998 +#: adminpages/orders.php:1027 +#: adminpages/orders.php:1056 +#: adminpages/orders.php:1211 +#: adminpages/orders.php:1245 +#: adminpages/orders.php:1251 +msgid "delete" +msgstr "löschen" + +#: adminpages/emailsettings.php:79 +#: includes/adminpages.php:51 +#: includes/adminpages.php:137 +#: adminpages/emailsettings.php:60 +#: adminpages/emailsettings.php:69 +#: includes/adminpages.php:12 +#: includes/adminpages.php:50 +#: includes/adminpages.php:59 +#: includes/adminpages.php:121 +#: includes/adminpages.php:128 +#: includes/adminpages.php:132 +#: adminpages/admin_header.php:269 +#: adminpages/emailsettings.php:85 +#: includes/adminpages.php:71 +msgid "Email Settings" +msgstr "E-Mail Einstellungen" + +#: adminpages/emailsettings.php:80 +#: adminpages/emailsettings.php:61 +#: adminpages/emailsettings.php:70 +#: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 +msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." +msgstr "wordpress@yourdomain.com wird als Standard als Absender für vom System verschickte E-Mails verwendet. Sie können diese E-Mail Adresse über die unten stehenden Felder ändern." + +#: adminpages/emailsettings.php:82 +msgid "To modify the appearance of system generated emails, add the files email_header.html and email_footer.html to your theme's directory. This will modify both the WordPress default messages as well as messages generated by Paid Memberships Pro. Click here to learn more about Paid Memberships Pro emails." +msgstr "Um das Design von system-generierten E-Mails anzupassen, fügen Sie die Dateien email_header.html und email_footer.html Ihrem Theme-Ordner hinzu. Damit werden sowohl die Wordpress-Standard-Nachrichten, als auch die von Paid Memberships Pro generierten Nachrichten angepasst. Klicken Sie hier um mehr über Paid Memberships Pro emails zu erfahren." + +#: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:69 +#: adminpages/emailsettings.php:78 +#: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 +msgid "From Email" +msgstr "Von E-Mail" + +#: adminpages/emailsettings.php:96 +#: adminpages/emailsettings.php:77 +#: adminpages/emailsettings.php:86 +#: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 +msgid "From Name" +msgstr "Von Name" + +#: adminpages/emailsettings.php:104 +#: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 +msgid "Only Filter PMPro Emails?" +msgstr "Nur PMPro E-Mails filtern?" + +#: adminpages/emailsettings.php:108 +#: adminpages/emailsettings.php:98 +#: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 +#, php-format +msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." +msgstr "Wenn deaktiviert werden alle E-Mails von \"WordPress <%s>\" gefiltert, um die obigen Einstellungen zu verwenden." + +#: adminpages/emailsettings.php:125 +#: adminpages/emailsettings.php:86 +#: adminpages/emailsettings.php:104 +#: adminpages/emailsettings.php:115 +msgid "Send the site admin emails" +msgstr "E-Mails an den Admin senden" + +#: adminpages/emailsettings.php:131 +#: adminpages/emailsettings.php:92 +#: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:121 +msgid "Checkout" +msgstr "Buchen" + +#: adminpages/emailsettings.php:135 +#: adminpages/emailsettings.php:96 +#: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:125 +msgid "when a member checks out." +msgstr "wenn ein Kunde die Anmeldung abschließt." + +#: adminpages/emailsettings.php:140 +#: adminpages/emailsettings.php:101 +#: adminpages/emailsettings.php:119 +#: adminpages/emailsettings.php:130 +msgid "Admin Changes" +msgstr "Admin Änderungen" + +#: adminpages/emailsettings.php:144 +#: adminpages/emailsettings.php:105 +#: adminpages/emailsettings.php:123 +#: adminpages/emailsettings.php:134 +msgid "when an admin changes a user's membership level through the dashboard." +msgstr "wenn ein Admin über das Dashboard das Paket eines Kunden ändert." + +#: adminpages/emailsettings.php:149 +#: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:128 +#: adminpages/emailsettings.php:139 +msgid "Cancellation" +msgstr "Stornierung" + +#: adminpages/emailsettings.php:153 +#: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:132 +#: adminpages/emailsettings.php:143 +msgid "when a user cancels his or her account." +msgstr "wenn ein Benutzer sein Konto storniert." + +#: adminpages/emailsettings.php:158 +#: adminpages/emailsettings.php:119 +#: adminpages/emailsettings.php:137 +#: adminpages/emailsettings.php:148 +msgid "Bill Updates" +msgstr "Zahlungs-Updates" + +#: adminpages/emailsettings.php:162 +#: adminpages/emailsettings.php:123 +#: adminpages/emailsettings.php:141 +#: adminpages/emailsettings.php:152 +msgid "when a user updates his or her billing information." +msgstr "wenn ein Benutzer seine Zahlungsinformationen aktualisiert." + +#: adminpages/emailsettings.php:168 +#: adminpages/emailsettings.php:129 +#: adminpages/emailsettings.php:147 +#: adminpages/emailsettings.php:158 +#: adminpages/emailsettings.php:162 +msgid "Send members emails" +msgstr "E-Mails an Mitglieder versenden" + +#: adminpages/emailsettings.php:174 +#: adminpages/emailsettings.php:135 +#: adminpages/emailsettings.php:153 +#: adminpages/emailsettings.php:164 +msgid "New Users" +msgstr "Neue Benutzer" + +#: adminpages/emailsettings.php:178 +#: adminpages/emailsettings.php:139 +#: adminpages/emailsettings.php:157 +#: adminpages/emailsettings.php:168 +msgid "Default WP notification email. (Recommended: Leave unchecked. Members will still get an email confirmation from PMPro after checkout.)" +msgstr "Standard WP Benachrichtigungs E-Mail. (Empfohlen: nicht auswählen. Kunden bekommen trotzdem eine E-Mail Bestätigung von PMPro nach dem Checkout)" + +#: adminpages/membershiplevels.php:146 +#: adminpages/membershiplevels.php:137 +#: adminpages/membershiplevels.php:141 +#: adminpages/membershiplevels.php:143 +#: adminpages/membershiplevels.php:150 +msgid "Membership level added successfully." +msgstr "Paket erfolgreich hinzugefügt." + +#: adminpages/membershiplevels.php:149 +#: adminpages/membershiplevels.php:140 +#: adminpages/membershiplevels.php:146 +#: adminpages/membershiplevels.php:148 +#: adminpages/membershiplevels.php:153 +msgid "Error adding membership level." +msgstr "Fehler beim Hinzfügen eines Pakets." + +#: adminpages/membershiplevels.php:157 +#: adminpages/membershiplevels.php:118 +#: adminpages/membershiplevels.php:120 +#: adminpages/membershiplevels.php:148 +#: adminpages/membershiplevels.php:161 +msgid "Membership level updated successfully." +msgstr "Paket erfolgreich bearbeitet." + +#: adminpages/membershiplevels.php:161 +#: adminpages/membershiplevels.php:124 +#: adminpages/membershiplevels.php:126 +#: adminpages/membershiplevels.php:152 +#: adminpages/membershiplevels.php:164 +msgid "Error updating membership level." +msgstr "Fehler beim bearbeiten des Pakets." + +#: adminpages/membershiplevels.php:202 +#: adminpages/membershiplevels.php:179 +#: adminpages/membershiplevels.php:181 +#: adminpages/membershiplevels.php:183 +#: adminpages/membershiplevels.php:193 +#: adminpages/membershiplevels.php:219 +#: classes/class-pmpro-levels.php:232 +#, php-format +msgid "There was an error canceling the subscription for user with ID=%d. You will want to check your payment gateway to see if their subscription is still active." +msgstr "Es gab einen Fehler beim Stornieren der Mitgliedschaft für den Benutzer mit der ID=%d. Bitte checken Sie die Daten bei Ihrem Zahlungsdienstleister um zu überprüfen, ob die Mitgliedschaft noch aktiv ist." + +# Da keine gesetzlichen Kriterien für Rechnungen erfüllt werden Rechnung in Zahlungsbestätigung umbenannt. +#: adminpages/membershiplevels.php:210 +#: adminpages/membershiplevels.php:182 +#: adminpages/membershiplevels.php:184 +#: adminpages/membershiplevels.php:186 +#: adminpages/membershiplevels.php:201 +#: adminpages/membershiplevels.php:227 +#: classes/class-pmpro-levels.php:240 +msgid "Last Invoice" +msgstr "Letzte Rechnung" + +#: adminpages/membershiplevels.php:227 +#: adminpages/membershiplevels.php:196 +#: adminpages/membershiplevels.php:198 +#: adminpages/membershiplevels.php:200 +#: adminpages/membershiplevels.php:218 +#: adminpages/membershiplevels.php:244 +msgid "Membership level deleted successfully." +msgstr "Paket erfolgreich gelöscht." + +#: adminpages/membershiplevels.php:230 +#: adminpages/membershiplevels.php:235 +#: adminpages/membershiplevels.php:201 +#: adminpages/membershiplevels.php:203 +#: adminpages/membershiplevels.php:205 +#: adminpages/membershiplevels.php:207 +#: adminpages/membershiplevels.php:209 +#: adminpages/membershiplevels.php:211 +#: adminpages/membershiplevels.php:221 +#: adminpages/membershiplevels.php:226 +#: adminpages/membershiplevels.php:247 +#: adminpages/membershiplevels.php:252 +msgid "Error deleting membership level." +msgstr "Fehler beim Löschen des Pakets." + +#: adminpages/membershiplevels.php:249 +#: adminpages/membershiplevels.php:222 +#: adminpages/membershiplevels.php:224 +#: adminpages/membershiplevels.php:226 +#: adminpages/membershiplevels.php:240 +#: adminpages/membershiplevels.php:266 +msgid "Edit Membership Level" +msgstr "Paket bearbeiten" + +#: adminpages/membershiplevels.php:251 +#: adminpages/membershiplevels.php:224 +#: adminpages/membershiplevels.php:226 +#: adminpages/membershiplevels.php:228 +#: adminpages/membershiplevels.php:242 +#: adminpages/membershiplevels.php:268 +msgid "Add New Membership Level" +msgstr "Neues Paket hinzufügen" + +#: adminpages/membershiplevels.php:329 +#: adminpages/membershiplevels.php:664 +#: adminpages/reports/login.php:164 +#: adminpages/membershiplevels.php:291 +#: adminpages/membershiplevels.php:293 +#: adminpages/membershiplevels.php:295 +#: adminpages/membershiplevels.php:319 +#: adminpages/membershiplevels.php:506 +#: adminpages/membershiplevels.php:512 +#: adminpages/membershiplevels.php:514 +#: adminpages/membershiplevels.php:541 +#: adminpages/membershiplevels.php:542 +#: adminpages/membershiplevels.php:584 +#: adminpages/membershiplevels.php:630 +#: adminpages/membershiplevels.php:632 +#: adminpages/membershiplevels.php:637 +#: adminpages/membershiplevels.php:638 +#: adminpages/membershiplevels.php:642 +#: adminpages/membershiplevels.php:654 +#: adminpages/reports/login.php:142 +#: adminpages/reports/login.php:144 +#: adminpages/reports/login.php:160 +#: adminpages/membershiplevels.php:354 +#: adminpages/membershiplevels.php:808 +#: adminpages/reports/history.php:184 +#: adminpages/reports/login.php:181 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 +#: adminpages/reports/login.php:184 +msgid "Name" +msgstr "Name" + +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:314 +#: adminpages/membershiplevels.php:316 +#: adminpages/membershiplevels.php:318 +#: adminpages/membershiplevels.php:342 +#: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 +msgid "Confirmation Message" +msgstr "Bestätigungs-Nachricht" + +#: adminpages/membershiplevels.php:371 +#: adminpages/membershiplevels.php:665 +#: adminpages/membershiplevels.php:333 +#: adminpages/membershiplevels.php:335 +#: adminpages/membershiplevels.php:337 +#: adminpages/membershiplevels.php:338 +#: adminpages/membershiplevels.php:361 +#: adminpages/membershiplevels.php:543 +#: adminpages/membershiplevels.php:585 +#: adminpages/membershiplevels.php:631 +#: adminpages/membershiplevels.php:633 +#: adminpages/membershiplevels.php:638 +#: adminpages/membershiplevels.php:639 +#: adminpages/membershiplevels.php:643 +#: adminpages/membershiplevels.php:655 +#: adminpages/membershiplevels.php:397 +#: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 +msgid "Billing Details" +msgstr "Zahlungs-Einstellungen" + +#: adminpages/membershiplevels.php:406 +#: classes/gateways/class.pmprogateway_stripe.php:777 +#: adminpages/membershiplevels.php:349 +#: adminpages/membershiplevels.php:351 +#: adminpages/membershiplevels.php:370 +#: adminpages/membershiplevels.php:372 +#: adminpages/membershiplevels.php:373 +#: adminpages/membershiplevels.php:396 +#: classes/gateways/class.pmprogateway_stripe.php:619 +#: classes/gateways/class.pmprogateway_stripe.php:620 +#: classes/gateways/class.pmprogateway_stripe.php:630 +#: classes/gateways/class.pmprogateway_stripe.php:634 +#: classes/gateways/class.pmprogateway_stripe.php:660 +#: classes/gateways/class.pmprogateway_stripe.php:664 +#: classes/gateways/class.pmprogateway_stripe.php:665 +#: classes/gateways/class.pmprogateway_stripe.php:668 +#: classes/gateways/class.pmprogateway_stripe.php:686 +#: classes/gateways/class.pmprogateway_stripe.php:697 +#: classes/gateways/class.pmprogateway_stripe.php:735 +#: classes/gateways/class.pmprogateway_stripe.php:762 +#: classes/gateways/class.pmprogateway_stripe.php:769 +#: classes/gateways/class.pmprogateway_stripe.php:785 +#: classes/gateways/class.pmprogateway_stripe.php:786 +#: adminpages/discountcodes.php:606 +#: adminpages/membershiplevels.php:433 +#: classes/gateways/class.pmprogateway_stripe.php:1466 +#: classes/gateways/class.pmprogateway_stripe.php:1478 +#: adminpages/discountcodes.php:608 +#: classes/gateways/class.pmprogateway_stripe.php:1497 +#: classes/gateways/class.pmprogateway_stripe.php:1503 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 +msgid "per" +msgstr "pro" + +#: adminpages/membershiplevels.php:421 +#: adminpages/membershiplevels.php:366 +#: adminpages/membershiplevels.php:385 +#: adminpages/membershiplevels.php:387 +#: adminpages/membershiplevels.php:388 +#: adminpages/membershiplevels.php:411 +msgid "Stripe integration currently only supports billing periods of \"Week\", \"Month\" or \"Year\"." +msgstr "Stripe unterstützt derzeit nur \"Wochen\", \"Monate\" oder \"Jahre\" als Zahlungszyklen." + +#: adminpages/membershiplevels.php:423 +#: adminpages/membershiplevels.php:366 +#: adminpages/membershiplevels.php:368 +#: adminpages/membershiplevels.php:387 +#: adminpages/membershiplevels.php:389 +#: adminpages/membershiplevels.php:390 +#: adminpages/membershiplevels.php:413 +#: adminpages/discountcodes.php:620 +#: adminpages/membershiplevels.php:448 +#: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:446 +msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." +msgstr "Braintree unterstützt derzeit nur \"Monate\" oder \"Jahre\" als Zahlungszyklen." + +#: adminpages/membershiplevels.php:427 +#: adminpages/membershiplevels.php:372 +#: adminpages/membershiplevels.php:374 +#: adminpages/membershiplevels.php:393 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:396 +#: adminpages/membershiplevels.php:417 +#: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 +msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." +msgstr "Nach dem Speichern des Pakets notieren Sie sich die ID und erstellen Sie einen \"Tarif\" in Ihrem Braintree Dashboard mit den gleichen Einstellungen und der \"Tarif ID\" wie in pmpro_Nummer, wobei Nummer die Paket ID ist." + +#: adminpages/membershiplevels.php:427 +#: adminpages/membershiplevels.php:429 +#: classes/gateways/class.pmprogateway_cybersource.php:101 +#: classes/gateways/class.pmprogateway_paypal.php:130 +#: classes/gateways/class.pmprogateway_paypalexpress.php:145 +#: classes/gateways/class.pmprogateway_paypalstandard.php:137 +#: adminpages/membershiplevels.php:372 +#: adminpages/membershiplevels.php:374 +#: adminpages/membershiplevels.php:376 +#: adminpages/membershiplevels.php:393 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:396 +#: adminpages/membershiplevels.php:397 +#: adminpages/membershiplevels.php:398 +#: adminpages/membershiplevels.php:417 +#: adminpages/membershiplevels.php:419 +#: adminpages/paymentsettings.php:170 +#: adminpages/paymentsettings.php:174 +#: adminpages/paymentsettings.php:179 +#: classes/gateways/class.pmprogateway_paypal.php:118 +#: classes/gateways/class.pmprogateway_paypalexpress.php:123 +#: classes/gateways/class.pmprogateway_paypalexpress.php:133 +#: classes/gateways/class.pmprogateway_paypalstandard.php:117 +#: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:459 +#: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 +msgid "Note" +msgstr "Hinweis" + +#: adminpages/membershiplevels.php:429 +#: adminpages/membershiplevels.php:374 +#: adminpages/membershiplevels.php:376 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:397 +#: adminpages/membershiplevels.php:398 +#: adminpages/membershiplevels.php:419 +msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to" +msgstr "Sie müssen in Ihrem Braintree Dashboard einen \"Tarif\" anlegen mit den gleichen Einstellungen und der \"Tarif ID\" " + +#: adminpages/membershiplevels.php:441 +#: adminpages/membershiplevels.php:386 +#: adminpages/membershiplevels.php:388 +#: adminpages/membershiplevels.php:407 +#: adminpages/membershiplevels.php:409 +#: adminpages/membershiplevels.php:410 +#: adminpages/membershiplevels.php:431 +#: adminpages/discountcodes.php:634 +#: adminpages/membershiplevels.php:471 +#: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 +msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." +msgstr "Stripe unterstützt derzeit keine Zahlungs-Limits. Sie können unten dennoch ein Ablaufdatum festlegen." + +#: adminpages/membershiplevels.php:453 +#: adminpages/membershiplevels.php:398 +#: adminpages/membershiplevels.php:400 +#: adminpages/membershiplevels.php:419 +#: adminpages/membershiplevels.php:421 +#: adminpages/membershiplevels.php:422 +#: adminpages/membershiplevels.php:443 +#: adminpages/discountcodes.php:655 +#: adminpages/membershiplevels.php:493 +#: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 +msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." +msgstr "2Checkout unterstützt keine Testphasen. Sie können eine Testphase einrichten, indem Sie eine Erst-Zahlung einstellen, die sich von den anderen Beträgen unterscheidet." + +#: adminpages/membershiplevels.php:475 +#: adminpages/membershiplevels.php:406 +#: adminpages/membershiplevels.php:412 +#: adminpages/membershiplevels.php:414 +#: adminpages/membershiplevels.php:441 +#: adminpages/membershiplevels.php:443 +#: adminpages/membershiplevels.php:444 +#: adminpages/membershiplevels.php:465 +#: adminpages/discountcodes.php:676 +#: adminpages/membershiplevels.php:525 +#: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 +msgid "Stripe integration currently does not support trial amounts greater than $0." +msgstr "Stripe unterstützt derzeit keine Beträge für Testphasen, die größer als $0 sind." + +#: adminpages/membershiplevels.php:479 +#: adminpages/membershiplevels.php:410 +#: adminpages/membershiplevels.php:416 +#: adminpages/membershiplevels.php:418 +#: adminpages/membershiplevels.php:445 +#: adminpages/membershiplevels.php:447 +#: adminpages/membershiplevels.php:448 +#: adminpages/membershiplevels.php:469 +#: adminpages/discountcodes.php:678 +#: adminpages/membershiplevels.php:527 +#: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 +msgid "Braintree integration currently does not support trial amounts greater than $0." +msgstr "Braintree unterstützt derzeit keine Beträge für Testphasen, die größer als $0 sind." + +#: adminpages/membershiplevels.php:483 +#: adminpages/membershiplevels.php:414 +#: adminpages/membershiplevels.php:420 +#: adminpages/membershiplevels.php:422 +#: adminpages/membershiplevels.php:449 +#: adminpages/membershiplevels.php:451 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:473 +#: adminpages/discountcodes.php:680 +#: adminpages/membershiplevels.php:529 +#: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 +msgid "Payflow integration currently does not support trial amounts greater than $0." +msgstr "Payflow unterstützt derzeit keine Beträge für Testphasen, die größer als $0 sind." + +#: adminpages/membershiplevels.php:492 +#: adminpages/membershiplevels.php:422 +#: adminpages/membershiplevels.php:428 +#: adminpages/membershiplevels.php:430 +#: adminpages/membershiplevels.php:457 +#: adminpages/membershiplevels.php:458 +#: adminpages/membershiplevels.php:460 +#: adminpages/membershiplevels.php:461 +#: adminpages/membershiplevels.php:482 +#: adminpages/advancedsettings.php:328 +#: adminpages/dashboard.php:140 +#: adminpages/membershiplevels.php:550 +#: adminpages/advancedsettings.php:350 +msgid "Other Settings" +msgstr "Andere Einstellungen" + +#: adminpages/membershiplevels.php:496 +#: adminpages/membershiplevels.php:426 +#: adminpages/membershiplevels.php:432 +#: adminpages/membershiplevels.php:434 +#: adminpages/membershiplevels.php:461 +#: adminpages/membershiplevels.php:462 +#: adminpages/membershiplevels.php:464 +#: adminpages/membershiplevels.php:465 +#: adminpages/membershiplevels.php:486 +#: adminpages/membershiplevels.php:554 +msgid "Disable New Signups" +msgstr "Neuanmeldungen deaktivieren" + +#: adminpages/membershiplevels.php:497 +#: adminpages/membershiplevels.php:427 +#: adminpages/membershiplevels.php:433 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:462 +#: adminpages/membershiplevels.php:463 +#: adminpages/membershiplevels.php:465 +#: adminpages/membershiplevels.php:466 +#: adminpages/membershiplevels.php:487 +#: adminpages/membershiplevels.php:555 +msgid "Check to hide this level from the membership levels page and disable registration." +msgstr "Auswählen, um dieses Paket auf der Paket-Seite zu verbergen und die Anmeldung dafür zu deaktivieren." + +#: adminpages/membershiplevels.php:527 +#: adminpages/membershiplevels.php:457 +#: adminpages/membershiplevels.php:463 +#: adminpages/membershiplevels.php:465 +#: adminpages/membershiplevels.php:492 +#: adminpages/membershiplevels.php:493 +#: adminpages/membershiplevels.php:495 +#: adminpages/membershiplevels.php:496 +#: adminpages/membershiplevels.php:517 +#: adminpages/advancedsettings.php:194 +#: adminpages/membershiplevels.php:624 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 +msgid "Content Settings" +msgstr "Inhaltliche Einstellungen" + +#: adminpages/membershiplevels.php:531 +#: adminpages/membershiplevels.php:461 +#: adminpages/membershiplevels.php:467 +#: adminpages/membershiplevels.php:469 +#: adminpages/membershiplevels.php:496 +#: adminpages/membershiplevels.php:497 +#: adminpages/membershiplevels.php:499 +#: adminpages/membershiplevels.php:500 +#: adminpages/membershiplevels.php:521 +#: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 +msgid "Categories" +msgstr "Kategorien" + +#: adminpages/membershiplevels.php:539 +#: adminpages/membershiplevels.php:505 +#: adminpages/membershiplevels.php:507 +#: adminpages/membershiplevels.php:516 +#: adminpages/membershiplevels.php:517 +#: adminpages/membershiplevels.php:529 +#: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 +msgid "Save Level" +msgstr "Paket speichern" + +#: adminpages/membershiplevels.php:540 +#: adminpages/orders.php:894 +#: pages/billing.php:363 +#: pages/cancel.php:84 +#: shortcodes/pmpro_account.php:72 +#: adminpages/membershiplevels.php:506 +#: adminpages/membershiplevels.php:508 +#: adminpages/membershiplevels.php:517 +#: adminpages/membershiplevels.php:518 +#: adminpages/membershiplevels.php:530 +#: adminpages/orders.php:511 +#: adminpages/orders.php:561 +#: adminpages/orders.php:633 +#: adminpages/orders.php:662 +#: adminpages/orders.php:765 +#: adminpages/orders.php:796 +#: adminpages/orders.php:807 +#: pages/account.php:44 +#: pages/billing.php:295 +#: pages/billing.php:299 +#: pages/billing.php:330 +#: pages/billing.php:339 +#: pages/billing.php:342 +#: pages/billing.php:344 +#: pages/billing.php:348 +#: pages/billing.php:364 +#: pages/billing.php:365 +#: pages/billing.php:371 +#: pages/billing.php:392 +#: pages/billing.php:397 +#: pages/billing.php:401 +#: pages/billing.php:406 +#: pages/cancel.php:71 +#: pages/cancel.php:83 +#: shortcodes/pmpro_account.php:70 +#: shortcodes/pmpro_account.php:73 +#: adminpages/membershiplevels.php:675 +#: adminpages/orders.php:962 +#: includes/email-templates.php:123 +#: includes/profile.php:786 +#: includes/profile.php:910 +#: pages/billing.php:426 +#: pages/cancel.php:96 +#: shortcodes/pmpro_account.php:106 +#: adminpages/orders.php:968 +#: includes/profile.php:798 +#: includes/profile.php:922 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 +#: pages/billing.php:443 +msgid "Cancel" +msgstr "Stornieren" + +#: adminpages/membershiplevels.php:641 +#: adminpages/membershiplevels.php:490 +#: adminpages/membershiplevels.php:496 +#: adminpages/membershiplevels.php:498 +#: adminpages/membershiplevels.php:525 +#: adminpages/membershiplevels.php:526 +#: adminpages/membershiplevels.php:569 +#: adminpages/membershiplevels.php:607 +#: adminpages/membershiplevels.php:609 +#: adminpages/membershiplevels.php:618 +#: adminpages/membershiplevels.php:619 +#: adminpages/membershiplevels.php:631 +#: adminpages/membershiplevels.php:793 +msgid "Add New Level" +msgstr "Neues Paket hinzufügen" + +#: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:493 +#: adminpages/membershiplevels.php:496 +#: adminpages/membershiplevels.php:499 +#: adminpages/membershiplevels.php:501 +#: adminpages/membershiplevels.php:502 +#: adminpages/membershiplevels.php:504 +#: adminpages/membershiplevels.php:528 +#: adminpages/membershiplevels.php:529 +#: adminpages/membershiplevels.php:531 +#: adminpages/membershiplevels.php:532 +#: adminpages/membershiplevels.php:572 +#: adminpages/membershiplevels.php:575 +#: adminpages/membershiplevels.php:610 +#: adminpages/membershiplevels.php:612 +#: adminpages/membershiplevels.php:613 +#: adminpages/membershiplevels.php:615 +#: adminpages/membershiplevels.php:621 +#: adminpages/membershiplevels.php:622 +#: adminpages/membershiplevels.php:624 +#: adminpages/membershiplevels.php:625 +#: adminpages/membershiplevels.php:634 +#: adminpages/membershiplevels.php:637 +#: adminpages/membershiplevels.php:786 +#: adminpages/membershiplevels.php:789 +msgid "Search Levels" +msgstr "Pakete durchsuchen" + +#: adminpages/membershiplevels.php:653 +#: adminpages/membershiplevels.php:579 +#: adminpages/membershiplevels.php:619 +#: adminpages/membershiplevels.php:621 +#: adminpages/membershiplevels.php:630 +#: adminpages/membershiplevels.php:631 +#: adminpages/membershiplevels.php:643 +#: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 +msgid "Drag and drop membership levels to reorder them on the Levels page." +msgstr "Pakete mit der Maus verschieben, um sie auf der Pakete-Seite zu sortieren." + +#: adminpages/membershiplevels.php:666 +#: pages/cancel.php:62 +#: pages/confirmation.php:81 +#: pages/invoice.php:63 +#: shortcodes/pmpro_account.php:46 +#: adminpages/membershiplevels.php:510 +#: adminpages/membershiplevels.php:516 +#: adminpages/membershiplevels.php:518 +#: adminpages/membershiplevels.php:544 +#: adminpages/membershiplevels.php:545 +#: adminpages/membershiplevels.php:586 +#: adminpages/membershiplevels.php:632 +#: adminpages/membershiplevels.php:634 +#: adminpages/membershiplevels.php:639 +#: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:656 +#: pages/account.php:20 +#: pages/cancel.php:53 +#: pages/cancel.php:61 +#: pages/confirmation.php:83 +#: pages/confirmation.php:84 +#: pages/confirmation.php:89 +#: pages/invoice.php:68 +#: pages/invoice.php:70 +#: shortcodes/pmpro_account.php:45 +#: adminpages/membershiplevels.php:810 +#: pages/billing.php:100 +#: pages/cancel.php:71 +#: pages/confirmation.php:99 +#: pages/invoice.php:89 +#: shortcodes/pmpro_account.php:44 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 +#: pages/billing.php:102 +msgid "Expiration" +msgstr "Gültig bis" + +#: adminpages/membershiplevels.php:667 +#: adminpages/membershiplevels.php:511 +#: adminpages/membershiplevels.php:517 +#: adminpages/membershiplevels.php:519 +#: adminpages/membershiplevels.php:545 +#: adminpages/membershiplevels.php:546 +#: adminpages/membershiplevels.php:587 +#: adminpages/membershiplevels.php:633 +#: adminpages/membershiplevels.php:635 +#: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 +#: adminpages/membershiplevels.php:645 +#: adminpages/membershiplevels.php:657 +#: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 +msgid "Allow Signups" +msgstr "Anmeldungen zulassen" + +#: adminpages/membershiplevels.php:682 +#: adminpages/membershiplevels.php:534 +#: adminpages/membershiplevels.php:540 +#: adminpages/membershiplevels.php:542 +#: adminpages/membershiplevels.php:566 +#: adminpages/membershiplevels.php:569 +#: adminpages/membershiplevels.php:646 +#: adminpages/membershiplevels.php:648 +#: adminpages/membershiplevels.php:650 +#: adminpages/membershiplevels.php:655 +#: adminpages/membershiplevels.php:656 +#: adminpages/membershiplevels.php:660 +#: adminpages/membershiplevels.php:672 +#: adminpages/membershiplevels.php:840 +#: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 +msgid "FREE" +msgstr "Kostenlos" + +#: adminpages/membershiplevels.php:691 +#: adminpages/membershiplevels.php:560 +#: adminpages/membershiplevels.php:566 +#: adminpages/membershiplevels.php:568 +#: adminpages/membershiplevels.php:575 +#: adminpages/membershiplevels.php:595 +#: adminpages/membershiplevels.php:655 +#: adminpages/membershiplevels.php:657 +#: adminpages/membershiplevels.php:659 +#: adminpages/membershiplevels.php:664 +#: adminpages/membershiplevels.php:665 +#: adminpages/membershiplevels.php:669 +#: adminpages/membershiplevels.php:681 +#: adminpages/membershiplevels.php:849 +#: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 +msgid "After" +msgstr "Nach" + +#. translators: %s is the Level Name. +#: adminpages/membershiplevels.php:696 +#: adminpages/membershiplevels.php:566 +#: adminpages/membershiplevels.php:572 +#: adminpages/membershiplevels.php:574 +#: adminpages/membershiplevels.php:580 +#: adminpages/membershiplevels.php:601 +#: adminpages/membershiplevels.php:660 +#: adminpages/membershiplevels.php:662 +#: adminpages/membershiplevels.php:664 +#: adminpages/membershiplevels.php:669 +#: adminpages/membershiplevels.php:670 +#: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:686 +#: adminpages/membershiplevels.php:835 +#: adminpages/membershiplevels.php:837 +#, php-format +msgid "Are you sure you want to delete membership level %s? All subscriptions will be cancelled." +msgstr "Sind Sie sicher, dass sie Mitgliedschafts-Paket %s löschen möchten? Alle Anmeldungen werden storniert." + +#: adminpages/membershiplevels.php:696 +#: adminpages/orders.php:1363 +#: adminpages/membershiplevels.php:565 +#: adminpages/membershiplevels.php:571 +#: adminpages/membershiplevels.php:573 +#: adminpages/membershiplevels.php:580 +#: adminpages/membershiplevels.php:600 +#: adminpages/membershiplevels.php:660 +#: adminpages/membershiplevels.php:662 +#: adminpages/membershiplevels.php:664 +#: adminpages/membershiplevels.php:669 +#: adminpages/membershiplevels.php:670 +#: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:686 +#: adminpages/orders.php:661 +#: adminpages/orders.php:964 +#: adminpages/orders.php:982 +#: adminpages/orders.php:992 +#: adminpages/orders.php:995 +#: adminpages/orders.php:1024 +#: adminpages/orders.php:1053 +#: adminpages/orders.php:1208 +#: adminpages/orders.php:1242 +#: adminpages/orders.php:1248 +msgid "copy" +msgstr "kopieren" + +#: adminpages/memberslist.php:25 +#: includes/adminpages.php:54 +#: includes/adminpages.php:158 +#: includes/adminpages.php:15 +#: includes/adminpages.php:53 +#: includes/adminpages.php:74 +#: includes/adminpages.php:142 +#: includes/adminpages.php:149 +#: includes/adminpages.php:153 +#: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 +msgid "Members List" +msgstr "Mitgliederliste" + +#: adminpages/memberslist.php:26 +#: adminpages/orders.php:962 +#: adminpages/orders.php:522 +#: adminpages/orders.php:591 +#: adminpages/orders.php:698 +#: adminpages/orders.php:727 +#: adminpages/orders.php:833 +#: adminpages/orders.php:864 +#: adminpages/orders.php:875 +#: adminpages/memberslist.php:21 +#: adminpages/orders.php:994 +#: adminpages/orders.php:1000 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 +msgid "Export to CSV" +msgstr "Als CSV exportieren" + +#: adminpages/memberslist.php:30 +#: adminpages/orders.php:981 +#: adminpages/reports/login.php:87 +#: adminpages/reports/memberships.php:328 +#: adminpages/reports/sales.php:203 +#: adminpages/orders.php:603 +#: adminpages/orders.php:710 +#: adminpages/orders.php:739 +#: adminpages/orders.php:848 +#: adminpages/orders.php:879 +#: adminpages/orders.php:890 +#: adminpages/reports/login.php:65 +#: adminpages/reports/login.php:67 +#: adminpages/reports/login.php:83 +#: adminpages/reports/memberships.php:256 +#: adminpages/reports/memberships.php:263 +#: adminpages/reports/memberships.php:276 +#: adminpages/reports/memberships.php:292 +#: adminpages/reports/memberships.php:304 +#: adminpages/reports/sales.php:185 +#: adminpages/reports/sales.php:193 +#: adminpages/reports/sales.php:194 +#: adminpages/reports/sales.php:202 +#: adminpages/orders.php:1014 +#: adminpages/reports/history.php:103 +#: adminpages/reports/memberships.php:331 +#: adminpages/reports/sales.php:293 +#: classes/class-pmpro-members-list-table.php:623 +#: adminpages/orders.php:1020 +#: classes/class-pmpro-members-list-table.php:622 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 +#: adminpages/reports/sales.php:311 +#: classes/class-pmpro-members-list-table.php:657 +msgid "Show" +msgstr "Anzeigen" + +#: adminpages/memberslist.php:32 +#: adminpages/reports/login.php:89 +#: adminpages/reports/memberships.php:355 +#: adminpages/reports/sales.php:226 +#: classes/class.pmproemail.php:154 +#: classes/class.pmproemail.php:199 +#: adminpages/reports/login.php:67 +#: adminpages/reports/login.php:69 +#: adminpages/reports/login.php:85 +#: adminpages/reports/memberships.php:281 +#: adminpages/reports/memberships.php:290 +#: adminpages/reports/memberships.php:303 +#: adminpages/reports/memberships.php:317 +#: adminpages/reports/memberships.php:331 +#: adminpages/reports/sales.php:208 +#: adminpages/reports/sales.php:216 +#: adminpages/reports/sales.php:217 +#: adminpages/reports/sales.php:225 +#: classes/class.pmproemail.php:145 +#: classes/class.pmproemail.php:147 +#: classes/class.pmproemail.php:189 +#: classes/class.pmproemail.php:192 +#: adminpages/reports/history.php:105 +#: adminpages/reports/login.php:105 +#: adminpages/reports/sales.php:316 +#: classes/class-pmpro-members-list-table.php:625 +#: classes/class.pmproemail.php:202 +#: classes/class.pmproemail.php:242 +#: classes/class-pmpro-members-list-table.php:624 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 +#: adminpages/reports/sales.php:334 +#: classes/class-pmpro-members-list-table.php:659 +#: classes/class.pmproemail.php:195 +#: classes/class.pmproemail.php:235 +msgid "All Levels" +msgstr "Alle Pakete" + +#: adminpages/memberslist.php:42 +#: classes/class-pmpro-members-list-table.php:235 +#: classes/class-pmpro-members-list-table.php:635 +#: classes/class-pmpro-members-list-table.php:234 +#: classes/class-pmpro-members-list-table.php:634 +#: classes/class-pmpro-members-list-table.php:669 +msgid "Cancelled Members" +msgstr "Stornierte Mitgliedschaften" + +#: adminpages/memberslist.php:43 +#: classes/class-pmpro-members-list-table.php:236 +#: classes/class-pmpro-members-list-table.php:636 +#: classes/class-pmpro-members-list-table.php:235 +#: classes/class-pmpro-members-list-table.php:635 +#: classes/class-pmpro-members-list-table.php:670 +msgid "Expired Members" +msgstr "Abgelaufene Mitgliedschaften" + +#: adminpages/memberslist.php:44 +#: adminpages/memberslist.php:42 +#: classes/class-pmpro-members-list-table.php:237 +#: classes/class-pmpro-members-list-table.php:637 +#: classes/class-pmpro-members-list-table.php:236 +#: classes/class-pmpro-members-list-table.php:636 +#: classes/class-pmpro-members-list-table.php:671 +msgid "Old Members" +msgstr "Alte Mitglieder" + +#: adminpages/memberslist.php:49 +#: adminpages/memberslist.php:52 +#: adminpages/memberslist.php:46 +#: adminpages/memberslist.php:47 +#: adminpages/memberslist.php:50 +#: adminpages/memberslist.php:28 +#: adminpages/reports/history.php:115 +#: adminpages/reports/history.php:119 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 +msgid "Search Members" +msgstr "Mitglieder suchen" + +#: adminpages/memberslist.php:156 +#: adminpages/memberslist.php:103 +#: adminpages/memberslist.php:136 +#: adminpages/memberslist.php:146 +#: adminpages/reports/history.php:177 +#, php-format +msgid "%d members found." +msgstr "%d Mitglieder gefunden." + +#: adminpages/memberslist.php:165 +#: pages/checkout.php:167 +#: shortcodes/pmpro_account.php:110 +#: adminpages/memberslist.php:112 +#: adminpages/memberslist.php:145 +#: adminpages/memberslist.php:155 +#: pages/account.php:51 +#: pages/account.php:55 +#: pages/account.php:76 +#: pages/checkout.php:168 +#: pages/checkout.php:171 +#: pages/checkout.php:173 +#: pages/checkout.php:180 +#: pages/checkout.php:182 +#: pages/checkout.php:184 +#: pages/checkout.php:191 +#: pages/checkout.php:194 +#: shortcodes/pmpro_account.php:105 +#: shortcodes/pmpro_account.php:107 +#: shortcodes/pmpro_account.php:108 +#: adminpages/dashboard.php:219 +#: adminpages/emailtemplates.php:127 +#: adminpages/reports/history.php:183 +#: adminpages/reports/login.php:180 +#: classes/class.memberorder.php:961 +#: pages/checkout.php:134 +#: shortcodes/pmpro_account.php:173 +#: adminpages/dashboard.php:223 +#: adminpages/dashboard.php:225 +#: adminpages/emailtemplates.php:122 +#: adminpages/reports/login.php:183 +#: classes/class.memberorder.php:1012 +msgid "Username" +msgstr "Benutzername" + +#: adminpages/memberslist.php:166 +#: adminpages/memberslist.php:113 +#: adminpages/memberslist.php:146 +#: adminpages/memberslist.php:156 +msgid "First Name" +msgstr "Vorname" + +#: adminpages/memberslist.php:167 +#: adminpages/memberslist.php:114 +#: adminpages/memberslist.php:147 +#: adminpages/memberslist.php:157 +msgid "Last Name" +msgstr "Nachname" + +#: adminpages/memberslist.php:170 +#: pages/billing.php:100 +#: pages/checkout.php:275 +#: pages/confirmation.php:66 +#: pages/invoice.php:48 +#: adminpages/memberslist.php:117 +#: adminpages/memberslist.php:150 +#: adminpages/memberslist.php:160 +#: pages/account.php:90 +#: pages/account.php:94 +#: pages/billing.php:58 +#: pages/billing.php:62 +#: pages/billing.php:71 +#: pages/billing.php:74 +#: pages/billing.php:76 +#: pages/billing.php:77 +#: pages/billing.php:80 +#: pages/billing.php:103 +#: pages/billing.php:104 +#: pages/checkout.php:298 +#: pages/checkout.php:300 +#: pages/checkout.php:302 +#: pages/checkout.php:311 +#: pages/checkout.php:314 +#: pages/checkout.php:317 +#: pages/checkout.php:319 +#: pages/checkout.php:321 +#: pages/checkout.php:326 +#: pages/checkout.php:329 +#: pages/confirmation.php:59 +#: pages/confirmation.php:61 +#: pages/confirmation.php:67 +#: pages/confirmation.php:69 +#: pages/invoice.php:46 +#: pages/billing.php:160 +#: pages/checkout.php:230 +#: pages/confirmation.php:78 +#: pages/invoice.php:68 +#: adminpages/orders.php:568 +#: pages/billing.php:162 +msgid "Billing Address" +msgstr "Rechnungsadresse" + +#: adminpages/memberslist.php:171 +#: adminpages/reports/login.php:165 +#: classes/gateways/class.pmprogateway_authorizenet.php:303 +#: adminpages/memberslist.php:118 +#: adminpages/memberslist.php:151 +#: adminpages/memberslist.php:161 +#: adminpages/pagesettings.php:51 +#: adminpages/reports/login.php:143 +#: adminpages/reports/login.php:145 +#: adminpages/reports/login.php:161 +#: classes/gateways/class.pmprogateway_authorizenet.php:187 +msgid "Membership" +msgstr "Mitgliedschaft" + +#: adminpages/memberslist.php:172 +#: adminpages/memberslist.php:119 +#: adminpages/memberslist.php:152 +#: adminpages/memberslist.php:162 +msgid "Fee" +msgstr "Gebühr" + +#: adminpages/memberslist.php:173 +#: adminpages/reports/login.php:166 +#: adminpages/memberslist.php:120 +#: adminpages/memberslist.php:153 +#: adminpages/memberslist.php:163 +#: adminpages/reports/login.php:144 +#: adminpages/reports/login.php:146 +#: adminpages/reports/login.php:162 +#: adminpages/dashboard.php:221 +#: adminpages/reports/history.php:186 +#: adminpages/reports/login.php:183 +#: adminpages/dashboard.php:225 +#: adminpages/dashboard.php:227 +#: adminpages/reports/login.php:186 +msgid "Joined" +msgstr "Beigetreten" + +#: adminpages/memberslist.php:177 +#: adminpages/memberslist.php:157 +#: adminpages/memberslist.php:167 +msgid "Ended" +msgstr "Beendet" + +#: adminpages/memberslist.php:179 +msgid "Cancelled" +msgstr "Storniert" + +#: adminpages/memberslist.php:181 +msgid "Expired" +msgstr "Abgelaufen" + +#: adminpages/memberslist.php:266 +#: adminpages/reports/login.php:232 +#: adminpages/memberslist.php:195 +#: adminpages/memberslist.php:223 +#: adminpages/memberslist.php:251 +#: adminpages/memberslist.php:261 +#: adminpages/memberslist.php:262 +#: adminpages/reports/login.php:210 +#: adminpages/reports/login.php:212 +#: adminpages/reports/login.php:228 +#: adminpages/dashboard.php:228 +#: adminpages/reports/history.php:236 +#: adminpages/reports/login.php:263 +#: classes/class-pmpro-members-list-table.php:226 +#: adminpages/dashboard.php:232 +#: classes/class-pmpro-members-list-table.php:225 +#: adminpages/dashboard.php:234 +#: adminpages/reports/login.php:266 +msgid "No members found." +msgstr "Keine Mitglieder gefunden." + +#: adminpages/memberslist.php:266 +#: adminpages/reports/login.php:232 +#: adminpages/memberslist.php:195 +#: adminpages/memberslist.php:223 +#: adminpages/memberslist.php:251 +#: adminpages/memberslist.php:261 +#: adminpages/memberslist.php:262 +#: adminpages/reports/login.php:210 +#: adminpages/reports/login.php:212 +#: adminpages/reports/login.php:228 +#: adminpages/reports/history.php:236 +#: adminpages/reports/login.php:263 +#: classes/class-pmpro-members-list-table.php:228 +#: classes/class-pmpro-members-list-table.php:227 +#: adminpages/reports/login.php:266 +msgid "Search all levels" +msgstr "Alle Pakete durchsuchen" + +#: adminpages/orders.php:146 +#: adminpages/orders.php:155 +#: adminpages/functions.php:394 +msgid "Invoice emailed successfully." +msgstr "Rechnung erfolgreich als E-Mail versendet." + +#: adminpages/orders.php:149 +#: adminpages/orders.php:160 +#: adminpages/functions.php:398 +msgid "Error emailing invoice." +msgstr "Fehler beim E-Mail-Versand der Rechnung." + +#: adminpages/orders.php:162 +#: adminpages/orders.php:26 +#: adminpages/orders.php:67 +#: adminpages/orders.php:175 +#: adminpages/orders.php:161 +#: adminpages/orders.php:167 +msgid "Order deleted successfully." +msgstr "Bestellung erfolgreich gelöscht." + +#: adminpages/orders.php:165 +#: adminpages/orders.php:31 +#: adminpages/orders.php:72 +#: adminpages/orders.php:180 +#: adminpages/orders.php:164 +#: adminpages/orders.php:170 +#: adminpages/orders.php:171 +msgid "Error deleting order." +msgstr "Fehler beim Löschen der Bestellung." + +#: adminpages/orders.php:297 +#: adminpages/orders.php:119 +#: adminpages/orders.php:169 +#: adminpages/orders.php:270 +#: adminpages/orders.php:284 +#: adminpages/orders.php:285 +#: adminpages/orders.php:295 +#: adminpages/orders.php:309 +#: adminpages/orders.php:315 +#: adminpages/orders.php:342 +msgid "Order saved successfully." +msgstr "Bestellung erfolgreich gespeichert." + +#: adminpages/orders.php:300 +#: adminpages/orders.php:124 +#: adminpages/orders.php:174 +#: adminpages/orders.php:275 +#: adminpages/orders.php:287 +#: adminpages/orders.php:288 +#: adminpages/orders.php:298 +msgid "Error updating order timestamp." +msgstr "Fehler beim aktualisieren des Zeitstempels für die Bestellung." + +#: adminpages/orders.php:304 +#: adminpages/orders.php:130 +#: adminpages/orders.php:180 +#: adminpages/orders.php:281 +#: adminpages/orders.php:291 +#: adminpages/orders.php:292 +#: adminpages/orders.php:302 +#: adminpages/orders.php:312 +#: adminpages/orders.php:318 +#: adminpages/orders.php:345 +msgid "Error saving order." +msgstr "Fehler beim Speichern der Bestellung." + +#: adminpages/orders.php:364 +#: classes/class.memberorder.php:763 +#: adminpages/orders.php:195 +#: adminpages/orders.php:245 +#: adminpages/orders.php:317 +#: adminpages/orders.php:321 +#: adminpages/orders.php:346 +#: adminpages/orders.php:352 +#: adminpages/orders.php:362 +#: classes/class.memberorder.php:743 +#: classes/class.memberorder.php:746 +#: adminpages/orders.php:383 +#: classes/class-pmpro-admin-activity-email.php:219 +#: classes/class.memberorder.php:963 +#: adminpages/orders.php:389 +#: classes/class.memberorder.php:1014 +msgid "Order" +msgstr "Bestellung" + +#: adminpages/orders.php:366 +#: adminpages/orders.php:197 +#: adminpages/orders.php:247 +#: adminpages/orders.php:319 +#: adminpages/orders.php:323 +#: adminpages/orders.php:348 +#: adminpages/orders.php:354 +#: adminpages/orders.php:364 +#: adminpages/orders.php:387 +#: adminpages/orders.php:393 +#: adminpages/orders.php:454 +msgid "New Order" +msgstr "Neue Bestellung" + +#: adminpages/orders.php:413 +#: adminpages/orders.php:220 +#: adminpages/orders.php:270 +#: adminpages/orders.php:342 +#: adminpages/orders.php:359 +#: adminpages/orders.php:371 +#: adminpages/orders.php:390 +#: adminpages/orders.php:401 +#: adminpages/orders.php:433 +#: adminpages/orders.php:439 +#: adminpages/orders.php:487 +msgid "Randomly generated for you." +msgstr "Automatisch generiert." + +#: adminpages/orders.php:418 +#: adminpages/orders.php:225 +#: adminpages/orders.php:275 +#: adminpages/orders.php:347 +#: adminpages/orders.php:364 +#: adminpages/orders.php:376 +#: adminpages/orders.php:395 +#: adminpages/orders.php:406 +#: adminpages/orders.php:438 +#: adminpages/orders.php:444 +#: adminpages/orders.php:539 +msgid "User ID" +msgstr "Benutzer ID" + +#: adminpages/orders.php:432 +#: adminpages/orders.php:234 +#: adminpages/orders.php:284 +#: adminpages/orders.php:356 +#: adminpages/orders.php:376 +#: adminpages/orders.php:385 +#: adminpages/orders.php:407 +#: adminpages/orders.php:418 +#: adminpages/emailtemplates.php:130 +#: adminpages/orders.php:451 +#: adminpages/orders.php:457 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 +msgid "Membership Level ID" +msgstr "Paket ID" + +#: adminpages/orders.php:447 +#: includes/privacy.php:245 +#: adminpages/orders.php:243 +#: adminpages/orders.php:293 +#: adminpages/orders.php:365 +#: adminpages/orders.php:389 +#: adminpages/orders.php:394 +#: adminpages/orders.php:420 +#: adminpages/orders.php:431 +#: adminpages/orders.php:464 +#: adminpages/orders.php:470 +#: adminpages/orders.php:576 +msgid "Billing Name" +msgstr "Name" + +#: adminpages/orders.php:461 +#: includes/privacy.php:249 +#: adminpages/orders.php:251 +#: adminpages/orders.php:301 +#: adminpages/orders.php:373 +#: adminpages/orders.php:401 +#: adminpages/orders.php:402 +#: adminpages/orders.php:432 +#: adminpages/orders.php:443 +#: adminpages/orders.php:478 +#: adminpages/orders.php:484 +#: adminpages/orders.php:590 +msgid "Billing Street" +msgstr "Straße" + +#: adminpages/orders.php:474 +#: includes/privacy.php:253 +#: includes/privacy.php:358 +#: adminpages/orders.php:258 +#: adminpages/orders.php:308 +#: adminpages/orders.php:380 +#: adminpages/orders.php:409 +#: adminpages/orders.php:412 +#: adminpages/orders.php:443 +#: adminpages/orders.php:454 +#: adminpages/orders.php:491 +#: adminpages/orders.php:497 +#: adminpages/orders.php:602 +msgid "Billing City" +msgstr "Ort" + +#: adminpages/orders.php:487 +#: includes/privacy.php:257 +#: adminpages/orders.php:265 +#: adminpages/orders.php:315 +#: adminpages/orders.php:387 +#: adminpages/orders.php:416 +#: adminpages/orders.php:423 +#: adminpages/orders.php:454 +#: adminpages/orders.php:465 +#: adminpages/orders.php:504 +#: adminpages/orders.php:510 +#: adminpages/orders.php:615 +msgid "Billing State" +msgstr "Bundesland" + +#: adminpages/orders.php:500 +#: includes/privacy.php:261 +#: includes/privacy.php:360 +#: adminpages/orders.php:272 +#: adminpages/orders.php:322 +#: adminpages/orders.php:394 +#: adminpages/orders.php:423 +#: adminpages/orders.php:434 +#: adminpages/orders.php:465 +#: adminpages/orders.php:476 +#: adminpages/orders.php:517 +#: adminpages/orders.php:523 +#: adminpages/orders.php:627 +msgid "Billing Postal Code" +msgstr "Postleitzahl" + +#: adminpages/orders.php:513 +#: includes/privacy.php:265 +#: includes/privacy.php:362 +#: adminpages/orders.php:279 +#: adminpages/orders.php:329 +#: adminpages/orders.php:401 +#: adminpages/orders.php:430 +#: adminpages/orders.php:445 +#: adminpages/orders.php:476 +#: adminpages/orders.php:487 +#: adminpages/orders.php:530 +#: adminpages/orders.php:536 +#: adminpages/orders.php:639 +msgid "Billing Country" +msgstr "Land" + +#: adminpages/orders.php:527 +#: includes/privacy.php:269 +#: adminpages/orders.php:287 +#: adminpages/orders.php:337 +#: adminpages/orders.php:409 +#: adminpages/orders.php:438 +#: adminpages/orders.php:457 +#: adminpages/orders.php:488 +#: adminpages/orders.php:499 +#: adminpages/orders.php:544 +#: adminpages/orders.php:550 +#: adminpages/orders.php:652 +msgid "Billing Phone" +msgstr "Telefon" + +#: adminpages/orders.php:542 +#: includes/privacy.php:273 +#: adminpages/orders.php:296 +#: adminpages/orders.php:346 +#: adminpages/orders.php:418 +#: adminpages/orders.php:447 +#: adminpages/orders.php:470 +#: adminpages/orders.php:501 +#: adminpages/orders.php:512 +#: adminpages/orders.php:596 +#: adminpages/orders.php:602 +#: adminpages/orders.php:719 +msgid "Sub Total" +msgstr "Zwischensumme" + +#: adminpages/orders.php:555 +#: adminpages/templates/orders-email.php:60 +#: adminpages/templates/orders-print.php:89 +#: includes/privacy.php:277 +#: pages/confirmation.php:92 +#: pages/invoice.php:74 +#: adminpages/orders.php:304 +#: adminpages/orders.php:354 +#: adminpages/orders.php:426 +#: adminpages/orders.php:455 +#: adminpages/orders.php:481 +#: adminpages/orders.php:512 +#: adminpages/orders.php:523 +#: pages/invoice.php:78 +#: pages/invoice.php:80 +#: adminpages/orders.php:609 +#: includes/functions.php:2849 +#: adminpages/orders.php:615 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 +msgid "Tax" +msgstr "Steuern" + +#: adminpages/orders.php:568 +#: includes/privacy.php:281 +#: adminpages/orders.php:312 +#: adminpages/orders.php:362 +#: adminpages/orders.php:434 +#: adminpages/orders.php:463 +#: adminpages/orders.php:492 +#: adminpages/orders.php:523 +#: adminpages/orders.php:534 +#: adminpages/orders.php:626 +#: adminpages/orders.php:632 +#: adminpages/orders.php:749 +msgid "Coupon Amount" +msgstr "Gutscheinbetrag" + +#: adminpages/orders.php:582 +#: adminpages/orders.php:1236 +#: adminpages/templates/orders-email.php:64 +#: adminpages/templates/orders-print.php:93 +#: includes/privacy.php:285 +#: pages/confirmation.php:96 +#: pages/invoice.php:78 +#: adminpages/orders.php:320 +#: adminpages/orders.php:370 +#: adminpages/orders.php:442 +#: adminpages/orders.php:471 +#: adminpages/orders.php:504 +#: adminpages/orders.php:535 +#: adminpages/orders.php:546 +#: adminpages/orders.php:602 +#: adminpages/orders.php:905 +#: adminpages/orders.php:915 +#: adminpages/orders.php:942 +#: adminpages/orders.php:971 +#: adminpages/orders.php:1108 +#: adminpages/orders.php:1139 +#: adminpages/orders.php:1145 +#: pages/invoice.php:82 +#: pages/invoice.php:84 +#: adminpages/dashboard.php:289 +#: adminpages/orders.php:644 +#: adminpages/orders.php:1338 +#: includes/functions.php:2878 +#: adminpages/dashboard.php:293 +#: adminpages/orders.php:650 +#: adminpages/orders.php:1344 +#: adminpages/dashboard.php:295 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 +msgid "Total" +msgstr "Gesamt" + +#: adminpages/orders.php:593 +#: adminpages/orders.php:325 +#: adminpages/orders.php:375 +#: adminpages/orders.php:447 +#: adminpages/orders.php:476 +#: adminpages/orders.php:513 +#: adminpages/orders.php:544 +#: adminpages/orders.php:555 +msgid "Should be subtotal + tax - couponamount." +msgstr "Sollte Zwischensumme + Steuern - Gutscheinwert entsprechen." + +#: adminpages/orders.php:598 +#: includes/privacy.php:289 +#: adminpages/orders.php:330 +#: adminpages/orders.php:380 +#: adminpages/orders.php:452 +#: adminpages/orders.php:481 +#: adminpages/orders.php:518 +#: adminpages/orders.php:549 +#: adminpages/orders.php:560 +#: adminpages/orders.php:658 +#: adminpages/orders.php:664 +#: adminpages/orders.php:781 +msgid "Payment Type" +msgstr "Zahlungsart" + +#: adminpages/orders.php:610 +#: adminpages/orders.php:335 +#: adminpages/orders.php:385 +#: adminpages/orders.php:457 +#: adminpages/orders.php:486 +#: adminpages/orders.php:528 +#: adminpages/orders.php:559 +#: adminpages/orders.php:570 +#: adminpages/orders.php:669 +#: adminpages/orders.php:675 +#: adminpages/orders.php:792 +msgid "e.g. PayPal Express, PayPal Standard, Credit Card." +msgstr "z.B. PayPal Express, PayPal Standard, Kreditkarte." + +#: adminpages/orders.php:614 +#: classes/gateways/class.pmprogateway_braintree.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:581 +#: includes/privacy.php:293 +#: pages/billing.php:271 +#: pages/checkout.php:423 +#: adminpages/orders.php:339 +#: adminpages/orders.php:389 +#: adminpages/orders.php:461 +#: adminpages/orders.php:490 +#: adminpages/orders.php:532 +#: adminpages/orders.php:563 +#: adminpages/orders.php:574 +#: classes/gateways/class.pmprogateway_braintree.php:291 +#: classes/gateways/class.pmprogateway_braintree.php:304 +#: classes/gateways/class.pmprogateway_braintree.php:306 +#: classes/gateways/class.pmprogateway_braintree.php:309 +#: classes/gateways/class.pmprogateway_braintree.php:310 +#: classes/gateways/class.pmprogateway_braintree.php:342 +#: classes/gateways/class.pmprogateway_braintree.php:344 +#: classes/gateways/class.pmprogateway_braintree.php:406 +#: classes/gateways/class.pmprogateway_braintree.php:441 +#: classes/gateways/class.pmprogateway_stripe.php:408 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:419 +#: classes/gateways/class.pmprogateway_stripe.php:423 +#: classes/gateways/class.pmprogateway_stripe.php:447 +#: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:452 +#: classes/gateways/class.pmprogateway_stripe.php:455 +#: classes/gateways/class.pmprogateway_stripe.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:484 +#: classes/gateways/class.pmprogateway_stripe.php:522 +#: classes/gateways/class.pmprogateway_stripe.php:549 +#: classes/gateways/class.pmprogateway_stripe.php:573 +#: classes/gateways/class.pmprogateway_stripe.php:589 +#: classes/gateways/class.pmprogateway_stripe.php:590 +#: pages/billing.php:234 +#: pages/billing.php:238 +#: pages/billing.php:247 +#: pages/billing.php:250 +#: pages/billing.php:253 +#: pages/billing.php:262 +#: pages/billing.php:268 +#: pages/billing.php:274 +#: pages/billing.php:275 +#: pages/billing.php:294 +#: pages/checkout.php:493 +#: pages/checkout.php:507 +#: pages/checkout.php:510 +#: pages/checkout.php:516 +#: pages/checkout.php:517 +#: pages/checkout.php:525 +#: pages/checkout.php:527 +#: pages/checkout.php:534 +#: pages/checkout.php:537 +#: adminpages/orders.php:673 +#: classes/gateways/class.pmprogateway_braintree.php:466 +#: classes/gateways/class.pmprogateway_stripe.php:1272 +#: pages/billing.php:333 +#: pages/checkout.php:378 +#: adminpages/orders.php:679 +#: classes/gateways/class.pmprogateway_stripe.php:1284 +#: classes/gateways/class.pmprogateway_stripe.php:1303 +#: classes/gateways/class.pmprogateway_stripe.php:1309 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 +#: pages/billing.php:338 +msgid "Card Type" +msgstr "Kreditkarte" + +#: adminpages/orders.php:624 +#: adminpages/orders.php:344 +#: adminpages/orders.php:394 +#: adminpages/orders.php:466 +#: adminpages/orders.php:495 +#: adminpages/orders.php:540 +#: adminpages/orders.php:571 +#: adminpages/orders.php:582 +#: adminpages/orders.php:683 +#: adminpages/orders.php:689 +#: adminpages/orders.php:806 +msgid "e.g. Visa, MasterCard, AMEX, etc" +msgstr "z.B. Visa, MasterCard, AMEX, etc" + +#: adminpages/orders.php:628 +#: classes/gateways/class.pmprogateway_twocheckout.php:137 +#: includes/privacy.php:297 +#: adminpages/orders.php:348 +#: adminpages/orders.php:398 +#: adminpages/orders.php:470 +#: adminpages/orders.php:499 +#: adminpages/orders.php:544 +#: adminpages/orders.php:575 +#: adminpages/orders.php:586 +#: adminpages/paymentsettings.php:347 +#: adminpages/paymentsettings.php:352 +#: classes/gateways/class.pmprogateway_twocheckout.php:129 +#: classes/gateways/class.pmprogateway_twocheckout.php:148 +#: adminpages/orders.php:687 +#: classes/gateways/class.pmprogateway_twocheckout.php:138 +#: adminpages/orders.php:693 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 +msgid "Account Number" +msgstr "Konto Nummer" + +#: adminpages/orders.php:639 +#: adminpages/orders.php:353 +#: adminpages/orders.php:403 +#: adminpages/orders.php:475 +#: adminpages/orders.php:504 +#: adminpages/orders.php:553 +#: adminpages/orders.php:584 +#: adminpages/orders.php:595 +#: adminpages/orders.php:698 +#: adminpages/orders.php:704 +#: adminpages/orders.php:820 +msgid "Obscure all but last 4 digits." +msgstr "Alle Stellen verbergen, außer die letzten 4." + +#: adminpages/orders.php:649 +#: includes/privacy.php:301 +#: adminpages/orders.php:358 +#: adminpages/orders.php:408 +#: adminpages/orders.php:480 +#: adminpages/orders.php:509 +#: adminpages/orders.php:561 +#: adminpages/orders.php:592 +#: adminpages/orders.php:603 +#: adminpages/orders.php:707 +#: adminpages/orders.php:718 +#: adminpages/orders.php:713 +#: adminpages/orders.php:724 +#: adminpages/orders.php:829 +msgid "Expiration Month" +msgstr "Ablaufdatum Monat" + +#: adminpages/orders.php:657 +#: includes/privacy.php:305 +#: adminpages/orders.php:365 +#: adminpages/orders.php:415 +#: adminpages/orders.php:487 +#: adminpages/orders.php:516 +#: adminpages/orders.php:569 +#: adminpages/orders.php:600 +#: adminpages/orders.php:611 +#: adminpages/orders.php:726 +#: adminpages/orders.php:732 +msgid "Expiration Year" +msgstr "Ablaufdatum Jahr" + +#: adminpages/orders.php:667 +#: adminpages/orders.php:1240 +#: includes/privacy.php:202 +#: includes/privacy.php:309 +#: adminpages/orders.php:373 +#: adminpages/orders.php:423 +#: adminpages/orders.php:495 +#: adminpages/orders.php:524 +#: adminpages/orders.php:579 +#: adminpages/orders.php:606 +#: adminpages/orders.php:610 +#: adminpages/orders.php:621 +#: adminpages/orders.php:909 +#: adminpages/orders.php:919 +#: adminpages/orders.php:946 +#: adminpages/orders.php:975 +#: adminpages/orders.php:1112 +#: adminpages/orders.php:1143 +#: adminpages/orders.php:1149 +#: adminpages/dashboard.php:290 +#: adminpages/orders.php:736 +#: adminpages/orders.php:1342 +#: includes/profile.php:428 +#: includes/profile.php:499 +#: pages/invoice.php:40 +#: shortcodes/pmpro_account.php:226 +#: adminpages/dashboard.php:294 +#: adminpages/orders.php:742 +#: adminpages/orders.php:1348 +#: includes/profile.php:505 +#: adminpages/dashboard.php:296 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 +msgid "Status" +msgstr "Status" + +#: adminpages/orders.php:689 +#: adminpages/orders.php:1238 +#: classes/class.memberorder.php:764 +#: includes/privacy.php:313 +#: adminpages/orders.php:394 +#: adminpages/orders.php:444 +#: adminpages/orders.php:516 +#: adminpages/orders.php:545 +#: adminpages/orders.php:604 +#: adminpages/orders.php:612 +#: adminpages/orders.php:643 +#: adminpages/orders.php:654 +#: adminpages/orders.php:907 +#: adminpages/orders.php:917 +#: adminpages/orders.php:944 +#: adminpages/orders.php:973 +#: adminpages/orders.php:1110 +#: adminpages/orders.php:1141 +#: adminpages/orders.php:1147 +#: classes/class.memberorder.php:744 +#: classes/class.memberorder.php:747 +#: adminpages/orders.php:758 +#: adminpages/orders.php:1340 +#: classes/class.memberorder.php:964 +#: adminpages/orders.php:764 +#: adminpages/orders.php:1346 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 +msgid "Gateway" +msgstr "Zahlungsdienstleister" + +#: adminpages/orders.php:712 +#: adminpages/paymentsettings.php:141 +#: includes/privacy.php:317 +#: adminpages/orders.php:411 +#: adminpages/orders.php:461 +#: adminpages/orders.php:462 +#: adminpages/orders.php:534 +#: adminpages/orders.php:563 +#: adminpages/orders.php:633 +#: adminpages/orders.php:664 +#: adminpages/orders.php:675 +#: adminpages/paymentsettings.php:124 +#: adminpages/paymentsettings.php:175 +#: adminpages/paymentsettings.php:179 +#: adminpages/paymentsettings.php:184 +#: adminpages/orders.php:781 +#: adminpages/paymentsettings.php:148 +#: adminpages/orders.php:787 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 +msgid "Gateway Environment" +msgstr "Zahlungsfunktion" + +#: adminpages/orders.php:724 +#: adminpages/paymentsettings.php:145 +#: adminpages/orders.php:415 +#: adminpages/orders.php:465 +#: adminpages/orders.php:466 +#: adminpages/orders.php:538 +#: adminpages/orders.php:567 +#: adminpages/orders.php:640 +#: adminpages/orders.php:671 +#: adminpages/orders.php:682 +#: adminpages/paymentsettings.php:128 +#: adminpages/paymentsettings.php:179 +#: adminpages/paymentsettings.php:183 +#: adminpages/paymentsettings.php:188 +#: adminpages/orders.php:789 +#: adminpages/paymentsettings.php:152 +#: adminpages/orders.php:795 +#: classes/class-pmpro-site-health.php:195 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 +msgid "Sandbox/Testing" +msgstr "Sandbox/Testing" + +#: adminpages/orders.php:729 +#: adminpages/paymentsettings.php:146 +#: adminpages/orders.php:416 +#: adminpages/orders.php:466 +#: adminpages/orders.php:467 +#: adminpages/orders.php:539 +#: adminpages/orders.php:568 +#: adminpages/orders.php:642 +#: adminpages/orders.php:673 +#: adminpages/orders.php:684 +#: adminpages/paymentsettings.php:129 +#: adminpages/paymentsettings.php:180 +#: adminpages/paymentsettings.php:184 +#: adminpages/paymentsettings.php:189 +#: adminpages/orders.php:790 +#: adminpages/paymentsettings.php:153 +#: adminpages/orders.php:796 +#: classes/class-pmpro-site-health.php:196 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 +msgid "Live/Production" +msgstr "Live/Production" + +#: adminpages/orders.php:737 +#: includes/privacy.php:321 +#: adminpages/orders.php:423 +#: adminpages/orders.php:473 +#: adminpages/orders.php:474 +#: adminpages/orders.php:546 +#: adminpages/orders.php:575 +#: adminpages/orders.php:650 +#: adminpages/orders.php:681 +#: adminpages/orders.php:692 +#: adminpages/orders.php:798 +#: adminpages/orders.php:804 +#: adminpages/orders.php:916 +msgid "Payment Transaction ID" +msgstr "ID der Zahlungstransaktion" + +#: adminpages/orders.php:748 +#: adminpages/orders.php:428 +#: adminpages/orders.php:478 +#: adminpages/orders.php:479 +#: adminpages/orders.php:551 +#: adminpages/orders.php:580 +#: adminpages/orders.php:659 +#: adminpages/orders.php:690 +#: adminpages/orders.php:701 +#: adminpages/orders.php:808 +#: adminpages/orders.php:814 +#: adminpages/orders.php:926 +msgid "Generated by the gateway. Useful to cross reference orders." +msgstr "Vom Zahlungsdienstleister generiert. Hilfreich um Bestellungen zuzuordnen." + +#: adminpages/orders.php:753 +#: classes/class.memberorder.php:765 +#: includes/privacy.php:325 +#: adminpages/orders.php:432 +#: adminpages/orders.php:482 +#: adminpages/orders.php:483 +#: adminpages/orders.php:555 +#: adminpages/orders.php:584 +#: adminpages/orders.php:664 +#: adminpages/orders.php:695 +#: adminpages/orders.php:706 +#: classes/class.memberorder.php:745 +#: classes/class.memberorder.php:748 +#: adminpages/orders.php:813 +#: classes/class.memberorder.php:965 +#: adminpages/orders.php:819 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 +msgid "Subscription Transaction ID" +msgstr "Mitglieds-Transaktions-ID" + +#: adminpages/orders.php:765 +#: adminpages/orders.php:437 +#: adminpages/orders.php:487 +#: adminpages/orders.php:488 +#: adminpages/orders.php:560 +#: adminpages/orders.php:589 +#: adminpages/orders.php:674 +#: adminpages/orders.php:705 +#: adminpages/orders.php:716 +#: adminpages/orders.php:824 +#: adminpages/orders.php:830 +#: adminpages/orders.php:942 +msgid "Generated by the gateway. Useful to cross reference subscriptions." +msgstr "Vom Zahlungsdienstleister generiert. Hilfreich um Zahlungen zuzuordnen." + +#: adminpages/orders.php:770 +#: adminpages/orders.php:1241 +#: pages/invoice.php:100 +#: shortcodes/pmpro_account.php:127 +#: adminpages/orders.php:442 +#: adminpages/orders.php:492 +#: adminpages/orders.php:493 +#: adminpages/orders.php:565 +#: adminpages/orders.php:594 +#: adminpages/orders.php:607 +#: adminpages/orders.php:679 +#: adminpages/orders.php:710 +#: adminpages/orders.php:721 +#: adminpages/orders.php:910 +#: adminpages/orders.php:920 +#: adminpages/orders.php:947 +#: adminpages/orders.php:976 +#: adminpages/orders.php:1113 +#: adminpages/orders.php:1144 +#: adminpages/orders.php:1150 +#: pages/account.php:91 +#: pages/invoice.php:87 +#: pages/invoice.php:105 +#: pages/invoice.php:107 +#: shortcodes/pmpro_account.php:122 +#: shortcodes/pmpro_account.php:124 +#: shortcodes/pmpro_account.php:125 +#: adminpages/dashboard.php:291 +#: adminpages/orders.php:829 +#: adminpages/orders.php:1343 +#: includes/profile.php:422 +#: pages/invoice.php:122 +#: shortcodes/pmpro_account.php:223 +#: adminpages/dashboard.php:295 +#: adminpages/orders.php:835 +#: adminpages/orders.php:1349 +#: adminpages/dashboard.php:297 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 +msgid "Date" +msgstr "Datum" + +#: adminpages/orders.php:812 +#: adminpages/orders.php:477 +#: adminpages/orders.php:527 +#: adminpages/orders.php:599 +#: adminpages/orders.php:628 +#: adminpages/orders.php:716 +#: adminpages/orders.php:747 +#: adminpages/orders.php:758 +#: adminpages/orders.php:874 +#: adminpages/orders.php:880 +#: adminpages/orders.php:956 +msgid "Affiliate ID" +msgstr "Partner-ID" + +#: adminpages/orders.php:826 +#: adminpages/orders.php:485 +#: adminpages/orders.php:535 +#: adminpages/orders.php:607 +#: adminpages/orders.php:636 +#: adminpages/orders.php:728 +#: adminpages/orders.php:759 +#: adminpages/orders.php:770 +#: adminpages/orders.php:887 +#: adminpages/orders.php:893 +#: adminpages/orders.php:969 +msgid "Affiliate SubID" +msgstr "Partner SubID" + +#: adminpages/orders.php:848 +#: adminpages/orders.php:908 +#: adminpages/orders.php:914 +#: adminpages/orders.php:990 +msgid "TOS Consent" +msgstr "AGB Zustimmung" + +#: adminpages/orders.php:865 +#: adminpages/orders.php:495 +#: adminpages/orders.php:545 +#: adminpages/orders.php:617 +#: adminpages/orders.php:646 +#: adminpages/orders.php:742 +#: adminpages/orders.php:773 +#: adminpages/orders.php:784 +#: adminpages/orders.php:923 +#: adminpages/orders.php:929 +#: adminpages/orders.php:1005 +msgid "Notes" +msgstr "Anmerkungen" + +#: adminpages/orders.php:893 +#: adminpages/orders.php:510 +#: adminpages/orders.php:560 +#: adminpages/orders.php:632 +#: adminpages/orders.php:661 +#: adminpages/orders.php:764 +#: adminpages/orders.php:795 +#: adminpages/orders.php:806 +#: adminpages/orders.php:961 +#: adminpages/orders.php:967 +#: adminpages/orders.php:1043 +msgid "Save Order" +msgstr "Auftrag speichern" + +#: adminpages/orders.php:929 +#: adminpages/orders.php:667 +#: adminpages/orders.php:696 +#: adminpages/orders.php:800 +#: adminpages/orders.php:831 +#: adminpages/orders.php:842 +#: adminpages/functions.php:425 +msgid "Email Invoice" +msgstr "E-Mail-Rechnung" + +#: adminpages/orders.php:932 +#: adminpages/orders.php:670 +#: adminpages/orders.php:699 +#: adminpages/orders.php:803 +#: adminpages/orders.php:834 +#: adminpages/orders.php:845 +#: adminpages/functions.php:428 +msgid "Send an invoice for this order to: " +msgstr "Sende eine Rechnung für diese Bestellung an:" + +#: adminpages/orders.php:934 +#: adminpages/orders.php:672 +#: adminpages/orders.php:701 +#: adminpages/orders.php:805 +#: adminpages/orders.php:836 +#: adminpages/orders.php:847 +#: adminpages/functions.php:430 +msgid "Send Email" +msgstr "E-Mail senden" + +#: adminpages/orders.php:939 +#: includes/adminpages.php:56 +#: includes/adminpages.php:172 +#: adminpages/orders.php:520 +#: adminpages/orders.php:570 +#: adminpages/orders.php:677 +#: adminpages/orders.php:706 +#: adminpages/orders.php:810 +#: adminpages/orders.php:841 +#: adminpages/orders.php:852 +#: includes/adminpages.php:17 +#: includes/adminpages.php:55 +#: includes/adminpages.php:84 +#: includes/adminpages.php:156 +#: includes/adminpages.php:163 +#: includes/adminpages.php:167 +#: adminpages/admin_header.php:230 +#: adminpages/discountcodes.php:820 +#: adminpages/orders.php:972 +#: classes/class-pmpro-admin-activity-email.php:221 +#: includes/adminpages.php:53 +#: includes/adminpages.php:170 +#: adminpages/discountcodes.php:882 +#: adminpages/orders.php:978 +#: adminpages/discountcodes.php:884 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 +#: classes/class-pmpro-site-health.php:77 +msgid "Orders" +msgstr "Bestellungen" + +#: adminpages/orders.php:941 +#: adminpages/orders.php:521 +#: adminpages/orders.php:571 +#: adminpages/orders.php:678 +#: adminpages/orders.php:707 +#: adminpages/orders.php:812 +#: adminpages/orders.php:843 +#: adminpages/orders.php:854 +#: adminpages/orders.php:973 +#: adminpages/orders.php:979 +#: adminpages/orders.php:1055 +msgid "Add New Order" +msgstr "Neuen Auftrag hinzufügen" + +#: adminpages/orders.php:985 +#: adminpages/orders.php:606 +#: adminpages/orders.php:713 +#: adminpages/orders.php:742 +#: adminpages/orders.php:852 +#: adminpages/orders.php:883 +#: adminpages/orders.php:894 +#: adminpages/orders.php:1018 +#: adminpages/orders.php:1024 +#: adminpages/orders.php:1105 +msgid "Within a Date Range" +msgstr "Innerhalb eines Zeitraums" + +#: adminpages/orders.php:987 +#: adminpages/orders.php:607 +#: adminpages/orders.php:714 +#: adminpages/orders.php:743 +#: adminpages/orders.php:854 +#: adminpages/orders.php:885 +#: adminpages/orders.php:896 +#: adminpages/orders.php:1020 +#: adminpages/orders.php:1026 +#: adminpages/orders.php:1107 +msgid "Predefined Date Range" +msgstr "Vorgegebener Zeitraum" + +#: adminpages/orders.php:989 +#: adminpages/orders.php:608 +#: adminpages/orders.php:715 +#: adminpages/orders.php:744 +#: adminpages/orders.php:856 +#: adminpages/orders.php:887 +#: adminpages/orders.php:898 +#: adminpages/orders.php:1022 +#: adminpages/orders.php:1028 +#: adminpages/orders.php:1109 +msgid "Within a Level" +msgstr "Innerhalb eines Pakets" + +#: adminpages/orders.php:991 +#: adminpages/orders.php:609 +#: adminpages/orders.php:716 +#: adminpages/orders.php:745 +#: adminpages/orders.php:858 +#: adminpages/orders.php:889 +#: adminpages/orders.php:900 +#: adminpages/orders.php:1026 +#: adminpages/orders.php:1032 +#: adminpages/orders.php:1113 +msgid "Within a Status" +msgstr "Innerhalb eines Status" + +#: adminpages/orders.php:994 +#: adminpages/orders.php:612 +#: adminpages/orders.php:719 +#: adminpages/orders.php:748 +#: adminpages/orders.php:861 +#: adminpages/orders.php:892 +#: adminpages/orders.php:903 +#: adminpages/orders.php:1038 +#: adminpages/orders.php:1044 +#: adminpages/orders.php:1125 +msgid "From" +msgstr "Von" + +#: adminpages/orders.php:1009 +#: adminpages/orders.php:624 +#: adminpages/orders.php:731 +#: adminpages/orders.php:760 +#: adminpages/orders.php:876 +#: adminpages/orders.php:907 +#: adminpages/orders.php:918 +#: adminpages/orders.php:1053 +#: adminpages/orders.php:1059 +#: adminpages/orders.php:1140 +msgid "To" +msgstr "An" + +#: adminpages/orders.php:1022 +#: adminpages/orders.php:636 +#: adminpages/orders.php:743 +#: adminpages/orders.php:772 +#: adminpages/orders.php:889 +#: adminpages/orders.php:920 +#: adminpages/orders.php:931 +#: adminpages/orders.php:1066 +#: adminpages/orders.php:1072 +#: adminpages/orders.php:1153 +msgid "filter by " +msgstr "filtern nach " + +#: adminpages/orders.php:1060 +#: adminpages/orders.php:674 +#: adminpages/orders.php:780 +#: adminpages/orders.php:809 +#: adminpages/orders.php:932 +#: adminpages/orders.php:963 +#: adminpages/orders.php:969 +#: adminpages/orders.php:1116 +#: adminpages/orders.php:1122 +#: adminpages/orders.php:1203 +msgid "Filter" +msgstr "Filter" + +#: adminpages/orders.php:1157 +#: adminpages/orders.php:1160 +#: adminpages/orders.php:535 +#: adminpages/orders.php:538 +#: adminpages/orders.php:777 +#: adminpages/orders.php:780 +#: adminpages/orders.php:883 +#: adminpages/orders.php:886 +#: adminpages/orders.php:912 +#: adminpages/orders.php:915 +#: adminpages/orders.php:1029 +#: adminpages/orders.php:1032 +#: adminpages/orders.php:1060 +#: adminpages/orders.php:1063 +#: adminpages/orders.php:1066 +#: adminpages/orders.php:1069 +#: adminpages/orders.php:1250 +#: adminpages/orders.php:1253 +#: adminpages/orders.php:1256 +#: adminpages/orders.php:1259 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 +msgid "Search Orders" +msgstr "Bestellungen suchen" + +#: adminpages/orders.php:1224 +#: adminpages/orders.php:590 +#: adminpages/orders.php:893 +#: adminpages/orders.php:903 +#: adminpages/orders.php:930 +#: adminpages/orders.php:959 +#: adminpages/orders.php:1096 +#: adminpages/orders.php:1127 +#: adminpages/orders.php:1133 +#: adminpages/orders.php:1326 +#: adminpages/orders.php:1332 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 +#, php-format +msgid "%d orders found." +msgstr "%d Bestellungen gefunden." + +#: adminpages/orders.php:1233 +#: adminpages/reports/login.php:163 +#: classes/gateways/class.pmprogateway_payflowpro.php:116 +#: adminpages/orders.php:599 +#: adminpages/orders.php:902 +#: adminpages/orders.php:912 +#: adminpages/orders.php:939 +#: adminpages/orders.php:968 +#: adminpages/orders.php:1105 +#: adminpages/orders.php:1136 +#: adminpages/orders.php:1142 +#: adminpages/paymentsettings.php:211 +#: adminpages/paymentsettings.php:215 +#: adminpages/paymentsettings.php:220 +#: adminpages/reports/login.php:141 +#: adminpages/reports/login.php:143 +#: adminpages/reports/login.php:159 +#: adminpages/dashboard.php:287 +#: adminpages/orders.php:1335 +#: classes/gateways/class.pmprogateway_payflowpro.php:117 +#: adminpages/dashboard.php:291 +#: adminpages/orders.php:1341 +#: adminpages/dashboard.php:293 +#: adminpages/orders.php:1427 +msgid "User" +msgstr "Benutzer" + +#: adminpages/orders.php:1235 +#: includes/init.php:244 +#: includes/profile.php:36 +#: pages/checkout.php:34 +#: pages/confirmation.php:53 +#: pages/confirmation.php:124 +#: pages/invoice.php:28 +#: adminpages/orders.php:601 +#: adminpages/orders.php:904 +#: adminpages/orders.php:914 +#: adminpages/orders.php:941 +#: adminpages/orders.php:970 +#: adminpages/orders.php:1107 +#: adminpages/orders.php:1138 +#: adminpages/orders.php:1144 +#: includes/init.php:214 +#: includes/init.php:217 +#: includes/init.php:218 +#: includes/init.php:220 +#: includes/init.php:222 +#: includes/init.php:230 +#: includes/init.php:238 +#: includes/init.php:243 +#: includes/profile.php:25 +#: includes/profile.php:27 +#: includes/profile.php:30 +#: pages/checkout.php:33 +#: pages/checkout.php:35 +#: pages/checkout.php:42 +#: pages/checkout.php:45 +#: pages/confirmation.php:46 +#: pages/confirmation.php:47 +#: pages/confirmation.php:62 +#: pages/confirmation.php:64 +#: pages/confirmation.php:70 +#: pages/confirmation.php:91 +#: pages/confirmation.php:103 +#: pages/confirmation.php:105 +#: pages/confirmation.php:113 +#: pages/confirmation.php:116 +#: pages/invoice.php:27 +#: pages/invoice.php:49 +#: pages/invoice.php:51 +#: pages/invoice.php:70 +#: includes/init.php:177 +#: includes/profile.php:22 +#: pages/checkout.php:63 +#: pages/confirmation.php:65 +#: pages/confirmation.php:138 +#: pages/invoice.php:38 +#: blocks/checkout-button/block.js:73 +#: blocks/checkout-page/block.js:55 +#: blocks/checkout-page/inspector.js:31 +#: js/blocks.build.js:798 +#: js/blocks.build.js:1004 +#: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 +msgid "Membership Level" +msgstr "Paket" + +#: adminpages/orders.php:1237 +#: adminpages/orders.php:1335 +#: adminpages/orders.php:603 +#: adminpages/orders.php:651 +#: adminpages/orders.php:906 +#: adminpages/orders.php:916 +#: adminpages/orders.php:943 +#: adminpages/orders.php:954 +#: adminpages/orders.php:972 +#: adminpages/orders.php:982 +#: adminpages/orders.php:1011 +#: adminpages/orders.php:1040 +#: adminpages/orders.php:1109 +#: adminpages/orders.php:1140 +#: adminpages/orders.php:1146 +#: adminpages/orders.php:1186 +#: adminpages/orders.php:1220 +#: adminpages/orders.php:1226 +#: adminpages/orders.php:1339 +#: adminpages/orders.php:1462 +#: adminpages/orders.php:1345 +#: adminpages/orders.php:1539 +#: adminpages/orders.php:1684 +msgid "Payment" +msgstr "Zahlung" + +#: adminpages/orders.php:1239 +#: adminpages/orders.php:605 +#: adminpages/orders.php:908 +#: adminpages/orders.php:918 +#: adminpages/orders.php:945 +#: adminpages/orders.php:974 +#: adminpages/orders.php:1111 +#: adminpages/orders.php:1142 +#: adminpages/orders.php:1148 +#: adminpages/orders.php:1341 +#: adminpages/orders.php:1347 +#: adminpages/orders.php:1433 +msgid "Transaction IDs" +msgstr "Transaktions-IDs" + +#: adminpages/orders.php:1273 +#: adminpages/orders.php:630 +#: adminpages/orders.php:933 +#: adminpages/orders.php:943 +#: adminpages/orders.php:972 +#: adminpages/orders.php:1001 +#: adminpages/orders.php:1141 +#: adminpages/orders.php:1172 +#: adminpages/orders.php:1178 +#: adminpages/dashboard.php:315 +#: adminpages/dashboard.php:330 +#: adminpages/orders.php:1406 +#: adminpages/orders.php:1418 +#: adminpages/reports/history.php:49 +#: adminpages/dashboard.php:319 +#: adminpages/dashboard.php:334 +#: adminpages/orders.php:1483 +#: adminpages/orders.php:1495 +#: adminpages/dashboard.php:321 +#: adminpages/dashboard.php:336 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 +msgid "deleted" +msgstr "gelöscht" + +#: adminpages/orders.php:1275 +#: adminpages/dashboard.php:317 +#: adminpages/dashboard.php:332 +#: adminpages/orders.php:1408 +#: adminpages/orders.php:1420 +#: adminpages/reports/history.php:51 +#: adminpages/dashboard.php:321 +#: adminpages/dashboard.php:336 +#: adminpages/orders.php:1485 +#: adminpages/orders.php:1497 +#: adminpages/dashboard.php:323 +#: adminpages/dashboard.php:338 +#: adminpages/orders.php:1602 +msgid "none" +msgstr "keine" + +#: adminpages/orders.php:1344 +#: adminpages/orders.php:653 +#: adminpages/orders.php:956 +#: adminpages/orders.php:974 +#: adminpages/orders.php:984 +#: adminpages/orders.php:1013 +#: adminpages/orders.php:1042 +#: adminpages/orders.php:1192 +#: adminpages/orders.php:1226 +#: adminpages/orders.php:1232 +#: adminpages/orders.php:1471 +#: adminpages/orders.php:1548 +#: adminpages/orders.php:1693 +msgid "Subscription" +msgstr "Abonnement" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:1366 +#: adminpages/orders.php:664 +#: adminpages/orders.php:967 +#: adminpages/orders.php:985 +#: adminpages/orders.php:995 +#: adminpages/orders.php:998 +#: adminpages/orders.php:1027 +#: adminpages/orders.php:1056 +#: adminpages/orders.php:1211 +#: adminpages/orders.php:1245 +#: adminpages/orders.php:1251 +#: adminpages/orders.php:1372 +#: adminpages/orders.php:1375 +#: adminpages/orders.php:1457 +#, php-format +msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" +msgstr "Das Löschen von Bestellungen ist dauerhaft und kann aktive Benutzer betreffen. Sind Sie sicher, dass Sie die Bestellung %s löschen wollen?" + +#: adminpages/orders.php:1370 +#: adminpages/orders.php:1030 +#: adminpages/orders.php:1059 +#: adminpages/orders.php:1215 +#: adminpages/orders.php:1249 +#: adminpages/orders.php:1255 +msgid "print" +msgstr "Drucken" + +#: adminpages/orders.php:1374 +#: adminpages/orders.php:1033 +#: adminpages/orders.php:1062 +#: adminpages/orders.php:1219 +#: adminpages/orders.php:1253 +#: adminpages/orders.php:1259 +msgid "email" +msgstr "E-Mail" + +#: adminpages/orders.php:1383 +#: adminpages/orders.php:674 +#: adminpages/orders.php:977 +#: adminpages/orders.php:995 +#: adminpages/orders.php:1005 +#: adminpages/orders.php:1008 +#: adminpages/orders.php:1043 +#: adminpages/orders.php:1072 +#: adminpages/orders.php:1228 +#: adminpages/orders.php:1262 +#: adminpages/orders.php:1268 +#: adminpages/dashboard.php:298 +#: adminpages/orders.php:1500 +#: adminpages/dashboard.php:302 +#: adminpages/orders.php:1577 +#: adminpages/orders.php:1576 +#: adminpages/dashboard.php:304 +#: adminpages/orders.php:1741 +msgid "No orders found." +msgstr "Keine Bestellungen gefunden." + +#: adminpages/pagesettings.php:62 +#: adminpages/pagesettings.php:54 +#: adminpages/pagesettings.php:55 +#: adminpages/pagesettings.php:66 +#: adminpages/pagesettings.php:85 +msgid "Your page settings have been updated." +msgstr "Ihre Seiteneinstellungen wurden aktualisiert." + +#: adminpages/pagesettings.php:79 +#: adminpages/pagesettings.php:51 +#: adminpages/pagesettings.php:64 +#: adminpages/pagesettings.php:65 +#: adminpages/pagesettings.php:92 +#: adminpages/pagesettings.php:111 +msgid "Membership Account" +msgstr "Mitgliedskonto" + +#: adminpages/pagesettings.php:80 +#: adminpages/pagesettings.php:54 +#: adminpages/pagesettings.php:65 +#: adminpages/pagesettings.php:66 +#: adminpages/pagesettings.php:93 +#: adminpages/pagesettings.php:112 +msgid "Membership Billing" +msgstr "Zahlungsinformationen" + +#: adminpages/pagesettings.php:81 +#: adminpages/pagesettings.php:57 +#: adminpages/pagesettings.php:66 +#: adminpages/pagesettings.php:67 +#: adminpages/pagesettings.php:94 +#: adminpages/pagesettings.php:113 +msgid "Membership Cancel" +msgstr "Konto löschen" + +#: adminpages/pagesettings.php:82 +#: adminpages/pagesettings.php:60 +#: adminpages/pagesettings.php:67 +#: adminpages/pagesettings.php:68 +#: adminpages/pagesettings.php:95 +#: adminpages/pagesettings.php:114 +msgid "Membership Checkout" +msgstr "Checkout" + +#: adminpages/pagesettings.php:83 +#: adminpages/pagesettings.php:63 +#: adminpages/pagesettings.php:68 +#: adminpages/pagesettings.php:69 +#: adminpages/pagesettings.php:96 +#: adminpages/pagesettings.php:115 +msgid "Membership Confirmation" +msgstr "Bestätigung" + +#: adminpages/pagesettings.php:84 +#: adminpages/pagesettings.php:66 +#: adminpages/pagesettings.php:69 +#: adminpages/pagesettings.php:70 +#: adminpages/pagesettings.php:97 +#: adminpages/pagesettings.php:116 +msgid "Membership Invoice" +msgstr "Rechnung" + +#: adminpages/pagesettings.php:98 +#: adminpages/pagesettings.php:83 +#: adminpages/pagesettings.php:84 +#: adminpages/pagesettings.php:111 +#: adminpages/pagesettings.php:138 +#: adminpages/pagesettings.php:157 +msgid "The following pages have been created for you" +msgstr "Folgende Seiten wurden für Sie erstellt" + +#: adminpages/pagesettings.php:113 +#: adminpages/pagesettings.php:97 +#: adminpages/pagesettings.php:98 +#: adminpages/pagesettings.php:126 +#: adminpages/pagesettings.php:167 +#: adminpages/pagesettings.php:185 +msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." +msgstr "Bearbeiten der WordPress Seiten, die den erforderlichen Paid Memberships Pro Seiten zugeordnet sind." + +#: adminpages/pagesettings.php:117 +#: adminpages/pagesettings.php:101 +#: adminpages/pagesettings.php:102 +#: adminpages/pagesettings.php:104 +#: adminpages/pagesettings.php:132 +#: adminpages/pagesettings.php:169 +#: adminpages/pagesettings.php:187 +msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" +msgstr "Ordnen Sie Ihre WordPress Seiten allen erforderlichen Paid Memberships Pro Seiten zu oder " + +#: adminpages/pagesettings.php:118 +#: adminpages/pagesettings.php:102 +#: adminpages/pagesettings.php:103 +#: adminpages/pagesettings.php:104 +#: adminpages/pagesettings.php:132 +#: adminpages/pagesettings.php:170 +#: adminpages/pagesettings.php:188 +msgid "click here to let us generate them for you" +msgstr "klicken Sie hier, um sie automatisch zu erzeugen" + +#: adminpages/pagesettings.php:127 +#: adminpages/pagesettings.php:111 +#: adminpages/pagesettings.php:112 +#: adminpages/pagesettings.php:140 +#: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:204 +msgid "Account Page" +msgstr "Konto Seite" + +#: adminpages/pagesettings.php:131 +#: adminpages/pagesettings.php:149 +#: adminpages/pagesettings.php:167 +#: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:244 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:115 +#: adminpages/pagesettings.php:116 +#: adminpages/pagesettings.php:133 +#: adminpages/pagesettings.php:134 +#: adminpages/pagesettings.php:144 +#: adminpages/pagesettings.php:147 +#: adminpages/pagesettings.php:151 +#: adminpages/pagesettings.php:152 +#: adminpages/pagesettings.php:159 +#: adminpages/pagesettings.php:162 +#: adminpages/pagesettings.php:170 +#: adminpages/pagesettings.php:171 +#: adminpages/pagesettings.php:174 +#: adminpages/pagesettings.php:177 +#: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:190 +#: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:206 +#: adminpages/pagesettings.php:209 +#: adminpages/pagesettings.php:210 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:228 +#: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:238 +#: adminpages/pagesettings.php:241 +#: adminpages/pagesettings.php:268 +#: adminpages/pagesettings.php:269 +#: adminpages/pagesettings.php:207 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:242 +#: adminpages/pagesettings.php:260 +#: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:296 +#: adminpages/pagesettings.php:414 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 +msgid "Choose One" +msgstr "Bitte wählen" + +#: adminpages/pagesettings.php:135 +#: adminpages/pagesettings.php:153 +#: adminpages/pagesettings.php:171 +#: adminpages/pagesettings.php:190 +#: adminpages/pagesettings.php:209 +#: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:248 +#: adminpages/pagesettings.php:290 +#: adminpages/pagesettings.php:119 +#: adminpages/pagesettings.php:120 +#: adminpages/pagesettings.php:132 +#: adminpages/pagesettings.php:134 +#: adminpages/pagesettings.php:137 +#: adminpages/pagesettings.php:138 +#: adminpages/pagesettings.php:145 +#: adminpages/pagesettings.php:147 +#: adminpages/pagesettings.php:149 +#: adminpages/pagesettings.php:150 +#: adminpages/pagesettings.php:155 +#: adminpages/pagesettings.php:156 +#: adminpages/pagesettings.php:159 +#: adminpages/pagesettings.php:162 +#: adminpages/pagesettings.php:165 +#: adminpages/pagesettings.php:173 +#: adminpages/pagesettings.php:174 +#: adminpages/pagesettings.php:175 +#: adminpages/pagesettings.php:177 +#: adminpages/pagesettings.php:180 +#: adminpages/pagesettings.php:181 +#: adminpages/pagesettings.php:187 +#: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:197 +#: adminpages/pagesettings.php:201 +#: adminpages/pagesettings.php:212 +#: adminpages/pagesettings.php:213 +#: adminpages/pagesettings.php:214 +#: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:228 +#: adminpages/pagesettings.php:232 +#: adminpages/pagesettings.php:233 +#: adminpages/pagesettings.php:241 +#: adminpages/pagesettings.php:244 +#: adminpages/pagesettings.php:274 +#: adminpages/pagesettings.php:275 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:246 +#: adminpages/pagesettings.php:264 +#: adminpages/pagesettings.php:282 +#: adminpages/pagesettings.php:300 +#: adminpages/pagesettings.php:336 +#: adminpages/pagesettings.php:364 +#: adminpages/pagesettings.php:420 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 +msgid "edit page" +msgstr "Seite bearbeiten" + +#: adminpages/pagesettings.php:138 +#: adminpages/pagesettings.php:156 +#: adminpages/pagesettings.php:174 +#: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:212 +#: adminpages/pagesettings.php:232 +#: adminpages/pagesettings.php:251 +#: adminpages/pagesettings.php:293 +#: adminpages/pagesettings.php:121 +#: adminpages/pagesettings.php:122 +#: adminpages/pagesettings.php:123 +#: adminpages/pagesettings.php:136 +#: adminpages/pagesettings.php:140 +#: adminpages/pagesettings.php:141 +#: adminpages/pagesettings.php:149 +#: adminpages/pagesettings.php:151 +#: adminpages/pagesettings.php:152 +#: adminpages/pagesettings.php:158 +#: adminpages/pagesettings.php:159 +#: adminpages/pagesettings.php:164 +#: adminpages/pagesettings.php:167 +#: adminpages/pagesettings.php:177 +#: adminpages/pagesettings.php:178 +#: adminpages/pagesettings.php:179 +#: adminpages/pagesettings.php:182 +#: adminpages/pagesettings.php:183 +#: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:197 +#: adminpages/pagesettings.php:198 +#: adminpages/pagesettings.php:199 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:214 +#: adminpages/pagesettings.php:215 +#: adminpages/pagesettings.php:216 +#: adminpages/pagesettings.php:217 +#: adminpages/pagesettings.php:227 +#: adminpages/pagesettings.php:230 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:236 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:246 +#: adminpages/pagesettings.php:277 +#: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:231 +#: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:285 +#: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:339 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:423 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 +msgid "view page" +msgstr "Seite ansehen" + +#: adminpages/pagesettings.php:141 +#: adminpages/pagesettings.php:159 +#: adminpages/pagesettings.php:177 +#: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:215 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:254 +#: adminpages/pagesettings.php:121 +#: adminpages/pagesettings.php:123 +#: adminpages/pagesettings.php:125 +#: adminpages/pagesettings.php:126 +#: adminpages/pagesettings.php:134 +#: adminpages/pagesettings.php:138 +#: adminpages/pagesettings.php:143 +#: adminpages/pagesettings.php:144 +#: adminpages/pagesettings.php:147 +#: adminpages/pagesettings.php:151 +#: adminpages/pagesettings.php:153 +#: adminpages/pagesettings.php:154 +#: adminpages/pagesettings.php:161 +#: adminpages/pagesettings.php:162 +#: adminpages/pagesettings.php:166 +#: adminpages/pagesettings.php:169 +#: adminpages/pagesettings.php:175 +#: adminpages/pagesettings.php:180 +#: adminpages/pagesettings.php:181 +#: adminpages/pagesettings.php:184 +#: adminpages/pagesettings.php:185 +#: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:197 +#: adminpages/pagesettings.php:199 +#: adminpages/pagesettings.php:200 +#: adminpages/pagesettings.php:201 +#: adminpages/pagesettings.php:203 +#: adminpages/pagesettings.php:213 +#: adminpages/pagesettings.php:216 +#: adminpages/pagesettings.php:217 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:220 +#: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:232 +#: adminpages/pagesettings.php:238 +#: adminpages/pagesettings.php:239 +#: adminpages/pagesettings.php:245 +#: adminpages/pagesettings.php:248 +#: adminpages/pagesettings.php:233 +#: adminpages/pagesettings.php:251 +#: adminpages/pagesettings.php:269 +#: adminpages/pagesettings.php:287 +#: adminpages/pagesettings.php:305 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 +msgid "Include the shortcode" +msgstr "Shortcode einfügen" + +#: adminpages/pagesettings.php:145 +#: adminpages/pagesettings.php:125 +#: adminpages/pagesettings.php:127 +#: adminpages/pagesettings.php:129 +#: adminpages/pagesettings.php:130 +#: adminpages/pagesettings.php:155 +#: adminpages/pagesettings.php:158 +#: adminpages/pagesettings.php:203 +#: adminpages/pagesettings.php:228 +msgid "Billing Information Page" +msgstr "Seite mit Informationen zur Rechnungsstellung" + +#: adminpages/pagesettings.php:163 +#: adminpages/pagesettings.php:138 +#: adminpages/pagesettings.php:142 +#: adminpages/pagesettings.php:147 +#: adminpages/pagesettings.php:148 +#: adminpages/pagesettings.php:170 +#: adminpages/pagesettings.php:173 +#: adminpages/pagesettings.php:220 +#: adminpages/pagesettings.php:252 +msgid "Cancel Page" +msgstr "Storno-Seite" + +#: adminpages/pagesettings.php:182 +#: adminpages/pagesettings.php:152 +#: adminpages/pagesettings.php:158 +#: adminpages/pagesettings.php:166 +#: adminpages/pagesettings.php:167 +#: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:238 +#: adminpages/pagesettings.php:277 +msgid "Checkout Page" +msgstr "Checkout-Seite" + +#: adminpages/pagesettings.php:201 +#: adminpages/pagesettings.php:166 +#: adminpages/pagesettings.php:174 +#: adminpages/pagesettings.php:185 +#: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:202 +#: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:256 +#: adminpages/pagesettings.php:302 +msgid "Confirmation Page" +msgstr "Bestätigungs-Seite" + +#: adminpages/pagesettings.php:221 +#: adminpages/pagesettings.php:180 +#: adminpages/pagesettings.php:190 +#: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:206 +#: adminpages/pagesettings.php:218 +#: adminpages/pagesettings.php:274 +#: adminpages/pagesettings.php:327 +msgid "Invoice Page" +msgstr "Rechnungs-Seite" + +#: adminpages/pagesettings.php:240 +#: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:206 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:234 +#: adminpages/pagesettings.php:237 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:352 +msgid "Levels Page" +msgstr "Paket-Seite" + +#: adminpages/pagesettings.php:261 +#: adminpages/pagesettings.php:245 +#: adminpages/pagesettings.php:246 +#: adminpages/pagesettings.php:391 +#: adminpages/pagesettings.php:460 +msgid "Additional Page Settings" +msgstr "Zusätzliche Seiteneinstellungen" + +#: adminpages/pagesettings.php:296 +#: adminpages/pagesettings.php:280 +#: adminpages/pagesettings.php:281 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:426 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 +msgid "Generate Page" +msgstr "Seite erstellen" + +#: adminpages/paymentsettings.php:64 +#: adminpages/paymentsettings.php:49 +#: adminpages/paymentsettings.php:77 +#: adminpages/paymentsettings.php:82 +#: adminpages/paymentsettings.php:66 +msgid "Your payment settings have been updated." +msgstr "Ihre Zahlungs-Einstellungen wurden gespeichert." + +#: adminpages/paymentsettings.php:110 +#: adminpages/paymentsettings.php:123 +#: adminpages/paymentsettings.php:93 +#: adminpages/paymentsettings.php:106 +#: adminpages/paymentsettings.php:144 +#: adminpages/paymentsettings.php:146 +#: adminpages/paymentsettings.php:152 +#: adminpages/paymentsettings.php:154 +#: adminpages/paymentsettings.php:112 +#: adminpages/paymentsettings.php:127 +#: adminpages/paymentsettings.php:130 +#: classes/class-pmpro-site-health.php:69 +msgid "Payment Gateway" +msgstr "Zahlungsdienstleister" + +#: adminpages/paymentsettings.php:110 +#: adminpages/paymentsettings.php:218 +#: adminpages/paymentsettings.php:93 +#: adminpages/paymentsettings.php:144 +#: adminpages/paymentsettings.php:146 +#: adminpages/paymentsettings.php:201 +#: adminpages/paymentsettings.php:112 +#: adminpages/paymentsettings.php:248 +#: adminpages/paymentsettings.php:259 +msgid "SSL Settings" +msgstr "SSL Einstellungen" + +#: adminpages/paymentsettings.php:112 +#: adminpages/paymentsettings.php:95 +#: adminpages/paymentsettings.php:148 +msgid "Learn more about SSL or Payment Gateway Settings." +msgstr "Erfahren Sie mehr über SSL oder Zahlungsdienstleister Einstellungen." + +#: adminpages/paymentsettings.php:118 +#: adminpages/paymentsettings.php:101 +#: adminpages/paymentsettings.php:122 +#: adminpages/paymentsettings.php:125 +msgid "Choose a Gateway" +msgstr "Gateway wählen" + +#: adminpages/paymentsettings.php:165 +#: adminpages/paymentsettings.php:148 +#: adminpages/paymentsettings.php:194 +#: adminpages/paymentsettings.php:199 +msgid "Currency and Tax Settings" +msgstr "Währungs- und Steuereinstellungen" + +#: adminpages/paymentsettings.php:170 +#: adminpages/paymentsettings.php:153 +#: adminpages/paymentsettings.php:327 +#: adminpages/paymentsettings.php:337 +#: adminpages/paymentsettings.php:356 +#: adminpages/paymentsettings.php:381 +#: adminpages/paymentsettings.php:386 +#: adminpages/paymentsettings.php:199 +#: adminpages/paymentsettings.php:204 +msgid "Currency" +msgstr "Währung" + +#: adminpages/paymentsettings.php:186 +#: adminpages/paymentsettings.php:169 +#: adminpages/paymentsettings.php:400 +#: adminpages/paymentsettings.php:402 +#: adminpages/paymentsettings.php:215 +#: adminpages/paymentsettings.php:220 +msgid "Not all currencies will be supported by every gateway. Please check with your gateway." +msgstr "Nicht alle Währungen werden von allen Zahlungsdienstleistern unterstützt. Bitte überprüfen Sie dies bei Ihrem Zahlungsdienstleister." + +#: adminpages/paymentsettings.php:191 +#: adminpages/paymentsettings.php:174 +#: adminpages/paymentsettings.php:375 +#: adminpages/paymentsettings.php:401 +#: adminpages/paymentsettings.php:406 +#: adminpages/paymentsettings.php:408 +#: adminpages/paymentsettings.php:220 +#: adminpages/paymentsettings.php:225 +msgid "Accepted Credit Card Types" +msgstr "Akzeptierete Kreditkarten" + +#: adminpages/paymentsettings.php:205 +#: adminpages/paymentsettings.php:188 +#: adminpages/paymentsettings.php:398 +#: adminpages/paymentsettings.php:438 +#: adminpages/paymentsettings.php:443 +#: adminpages/paymentsettings.php:445 +#: adminpages/paymentsettings.php:234 +#: adminpages/paymentsettings.php:239 +msgid "Sales Tax" +msgstr "Mehrwertsteuer" + +#: adminpages/paymentsettings.php:205 +#: pages/billing.php:117 +#: adminpages/paymentsettings.php:188 +#: adminpages/paymentsettings.php:398 +#: adminpages/paymentsettings.php:438 +#: adminpages/paymentsettings.php:443 +#: adminpages/paymentsettings.php:445 +#: pages/billing.php:78 +#: pages/billing.php:82 +#: pages/billing.php:91 +#: pages/billing.php:94 +#: pages/billing.php:96 +#: pages/billing.php:97 +#: pages/billing.php:100 +#: pages/billing.php:120 +#: pages/billing.php:121 +#: pages/billing.php:123 +#: adminpages/paymentsettings.php:234 +#: pages/billing.php:179 +#: adminpages/paymentsettings.php:239 +#: pages/billing.php:181 +msgid "optional" +msgstr "optional" + +#: adminpages/paymentsettings.php:208 +#: adminpages/paymentsettings.php:191 +#: adminpages/paymentsettings.php:401 +#: adminpages/paymentsettings.php:441 +#: adminpages/paymentsettings.php:446 +#: adminpages/paymentsettings.php:448 +#: adminpages/paymentsettings.php:237 +#: adminpages/paymentsettings.php:242 +msgid "Tax State" +msgstr "Steuerstaat" + +#: adminpages/paymentsettings.php:209 +#: adminpages/paymentsettings.php:192 +#: adminpages/paymentsettings.php:402 +#: adminpages/paymentsettings.php:442 +#: adminpages/paymentsettings.php:447 +#: adminpages/paymentsettings.php:449 +#: adminpages/paymentsettings.php:238 +#: adminpages/paymentsettings.php:243 +msgid "abbreviation, e.g. \"PA\"" +msgstr "Abkürzung, z.B. \"PA\"" + +#: adminpages/paymentsettings.php:210 +#: adminpages/paymentsettings.php:193 +#: adminpages/paymentsettings.php:239 +#: adminpages/paymentsettings.php:244 +msgid "Tax Rate" +msgstr "Steuersatz" + +#: adminpages/paymentsettings.php:211 +#: adminpages/paymentsettings.php:194 +#: adminpages/paymentsettings.php:404 +#: adminpages/paymentsettings.php:444 +#: adminpages/paymentsettings.php:449 +#: adminpages/paymentsettings.php:451 +#: adminpages/paymentsettings.php:240 +#: adminpages/paymentsettings.php:245 +msgid "decimal, e.g. \"0.06\"" +msgstr "dezimal, z.B. \"0.06\"" + +#: adminpages/paymentsettings.php:212 +msgid "US only. If values are given, tax will be applied for any members ordering from the selected state.
For non-US or more complex tax rules, use the pmpro_tax filter." +msgstr "Nur für USA. Wenn Werte angegeben werden, werden die Steuern für Kunden aus dem jeweiligen Staat berechnet.
Für Nicht-US- oder komplexere Steuersätze, verwenden Sie die pmpro_tax-Filter." + +#: adminpages/paymentsettings.php:223 +#: adminpages/paymentsettings.php:206 +#: adminpages/paymentsettings.php:450 +#: adminpages/paymentsettings.php:455 +#: adminpages/paymentsettings.php:457 +#: adminpages/paymentsettings.php:253 +#: adminpages/paymentsettings.php:264 +msgid "Force SSL" +msgstr "Erzwinge SSL" + +#: adminpages/paymentsettings.php:230 +#: adminpages/paymentsettings.php:213 +#: adminpages/paymentsettings.php:260 +#: adminpages/paymentsettings.php:271 +msgid "Your Site URL starts with https:// and so PMPro will allow your entire site to be served over HTTPS." +msgstr "Ihre Seite URL beginnt mit https:// daher wird PMPro zulassen dass Ihre gesamte Seite über HTTPS bedient wird." + +#: adminpages/paymentsettings.php:238 +#: adminpages/paymentsettings.php:212 +#: adminpages/paymentsettings.php:221 +#: adminpages/paymentsettings.php:456 +#: adminpages/paymentsettings.php:461 +#: adminpages/paymentsettings.php:463 +#: adminpages/paymentsettings.php:268 +#: adminpages/paymentsettings.php:279 +msgid "Yes (with JavaScript redirects)" +msgstr "Ja (mit JavaScript Weiterleitungen)" + +#: adminpages/paymentsettings.php:240 +#: adminpages/paymentsettings.php:214 +#: adminpages/paymentsettings.php:223 +#: adminpages/paymentsettings.php:270 +#: adminpages/paymentsettings.php:281 +msgid "Recommended: Yes. Try the JavaScript redirects setting if you are having issues with infinite redirect loops." +msgstr "Empfehlung: Ja. Versuchen Sie die JavaScript Weiterleitungseinstellungen wenn Sie probleme mit unendlichen Umleitungsschleifen haben." + +#: adminpages/paymentsettings.php:248 +#: adminpages/paymentsettings.php:219 +#: adminpages/paymentsettings.php:231 +#: adminpages/paymentsettings.php:430 +#: adminpages/paymentsettings.php:463 +#: adminpages/paymentsettings.php:468 +#: adminpages/paymentsettings.php:470 +#: adminpages/paymentsettings.php:278 +#: adminpages/paymentsettings.php:289 +msgid "SSL Seal Code" +msgstr "SSL Seal Code" + +#: adminpages/paymentsettings.php:252 +msgid "Your SSL Certificate must be installed by your web host. Your SSL Seal will be a short HTML or JavaScript snippet that can be pasted here." +msgstr "Ihr SSL Zertifikat muss von Ihrem Webhost installiert werden. Ihr SSL Siegel ist ein kurzer HTML- oder JavaScript-Text, der hier eingefügt werden kann." + +#: adminpages/paymentsettings.php:257 +#: adminpages/paymentsettings.php:228 +#: adminpages/paymentsettings.php:240 +#: adminpages/paymentsettings.php:287 +#: adminpages/paymentsettings.php:304 +msgid "Extra HTTPS URL Filter" +msgstr "Extra HTTPS URL Filter" + +#: adminpages/paymentsettings.php:260 +#: adminpages/paymentsettings.php:231 +#: adminpages/paymentsettings.php:243 +#: adminpages/paymentsettings.php:290 +#: adminpages/paymentsettings.php:307 +msgid "Pass all generated HTML through a URL filter to add HTTPS to URLs used on secure pages. Check this if you are using SSL and have warnings on your checkout pages." +msgstr "Alles erzeugte HTML durch einen URL-Filter führen, um HTTPS an URLs von sicheren Seiten hinzuzufügen. Aktivieren Sie das wenn Sie SSL verwenden und Warnungen auf Ihrer Checkout-Seite sehen." + +#: adminpages/reports.php:41 +#: adminpages/reports.php:26 +#: adminpages/reports.php:37 +#: adminpages/reports.php:40 +#: adminpages/reports/history.php:70 +#: adminpages/reports/login.php:71 +#: adminpages/reports/memberships.php:96 +#: adminpages/reports/sales.php:99 +#: adminpages/reports/sales.php:98 +msgid "Details" +msgstr "Details" + +#: adminpages/reports.php:63 +#: adminpages/reports.php:61 +#: adminpages/reports.php:19 +#: adminpages/reports.php:21 +msgid "Back to Reports Dashboard" +msgstr "Zurück zum Berichte-Dashboard" + +#: adminpages/reports/login.php:16 +#: adminpages/dashboard.php:33 +msgid "Visits, Views, and Logins" +msgstr "Besucher, Ansichten und Logins" + +#: adminpages/reports/login.php:31 +msgid "Visits" +msgstr "Besuche" + +#: adminpages/reports/login.php:32 +msgid "Views" +msgstr "Ansichten" + +#: adminpages/reports/login.php:33 +msgid "Logins" +msgstr "Anmeldungen" + +#: adminpages/reports/login.php:38 +#: adminpages/reports/memberships.php:68 +#: adminpages/reports/sales.php:52 +#: adminpages/reports/memberships.php:43 +#: adminpages/reports/memberships.php:46 +#: adminpages/reports/memberships.php:62 +#: adminpages/reports/memberships.php:81 +#: adminpages/reports/sales.php:51 +#: adminpages/reports/memberships.php:49 +#: adminpages/reports/sales.php:50 +msgid "Today" +msgstr "Heute" + +#: adminpages/reports/login.php:44 +#: adminpages/reports/memberships.php:69 +#: adminpages/reports/sales.php:57 +#: adminpages/reports/memberships.php:47 +#: adminpages/reports/memberships.php:48 +#: adminpages/reports/memberships.php:58 +#: adminpages/reports/memberships.php:77 +#: adminpages/reports/sales.php:56 +#: adminpages/orders.php:1071 +#: adminpages/reports/login.php:50 +#: adminpages/reports/memberships.php:50 +#: adminpages/reports/sales.php:51 +#: adminpages/orders.php:1077 +#: adminpages/orders.php:1158 +msgid "This Month" +msgstr "Dieser Monat" + +#: adminpages/reports/login.php:50 +#: adminpages/reports/memberships.php:71 +#: adminpages/reports/sales.php:67 +#: adminpages/reports/memberships.php:49 +#: adminpages/reports/memberships.php:50 +#: adminpages/reports/memberships.php:58 +#: adminpages/reports/memberships.php:69 +#: adminpages/reports/sales.php:66 +#: adminpages/reports/login.php:62 +#: adminpages/reports/memberships.php:52 +#: adminpages/reports/sales.php:53 +#: adminpages/reports/sales.php:543 +msgid "All Time" +msgstr "Gesamte Zeit" + +#: adminpages/reports/login.php:83 +#: adminpages/reports/login.php:61 +#: adminpages/reports/login.php:63 +#: adminpages/reports/login.php:79 +#: adminpages/reports/login.php:99 +msgid "Visits, Views, and Logins Report" +msgstr "Besucher, Ansichten und Login Berichte" + +#: adminpages/reports/login.php:88 +#: adminpages/reports/login.php:66 +#: adminpages/reports/login.php:68 +#: adminpages/reports/login.php:84 +#: adminpages/reports/login.php:104 +#: classes/class-pmpro-members-list-table.php:234 +#: classes/class-pmpro-members-list-table.php:233 +#: adminpages/reports/login.php:111 +msgid "All Users" +msgstr "Alle Benutzer" + +#: adminpages/reports/login.php:168 +#: adminpages/reports/login.php:146 +#: adminpages/reports/login.php:148 +#: adminpages/reports/login.php:164 +#: adminpages/reports/login.php:185 +#: adminpages/reports/login.php:188 +msgid "Last Visit" +msgstr "Letzter Besuch" + +#: adminpages/reports/login.php:169 +#: adminpages/reports/login.php:27 +#: adminpages/reports/login.php:28 +#: adminpages/reports/login.php:147 +#: adminpages/reports/login.php:149 +#: adminpages/reports/login.php:165 +#: adminpages/reports/login.php:187 +#: adminpages/reports/login.php:190 +msgid "Visits This Month" +msgstr "Besuche diesen Monat" + +#: adminpages/reports/login.php:170 +#: adminpages/reports/login.php:148 +#: adminpages/reports/login.php:150 +#: adminpages/reports/login.php:166 +msgid "Total Visits" +msgstr "Besucher Gesamt" + +#: adminpages/reports/login.php:171 +#: adminpages/reports/login.php:32 +#: adminpages/reports/login.php:33 +#: adminpages/reports/login.php:149 +#: adminpages/reports/login.php:151 +#: adminpages/reports/login.php:167 +#: adminpages/reports/login.php:191 +#: adminpages/reports/login.php:194 +msgid "Views This Month" +msgstr "Ansichten in diesem Monat" + +#: adminpages/reports/login.php:172 +#: adminpages/reports/login.php:150 +#: adminpages/reports/login.php:152 +#: adminpages/reports/login.php:168 +msgid "Total Views" +msgstr "Ansichten insgesamt" + +#: adminpages/reports/login.php:173 +#: adminpages/reports/login.php:151 +#: adminpages/reports/login.php:153 +#: adminpages/reports/login.php:169 +#: adminpages/reports/login.php:194 +#: adminpages/reports/login.php:197 +msgid "Last Login" +msgstr "Letzter Login" + +#: adminpages/reports/login.php:174 +#: adminpages/reports/login.php:37 +#: adminpages/reports/login.php:38 +#: adminpages/reports/login.php:152 +#: adminpages/reports/login.php:154 +#: adminpages/reports/login.php:170 +#: adminpages/reports/login.php:196 +#: adminpages/reports/login.php:199 +msgid "Logins This Month" +msgstr "Logins diesen Monat" + +#: adminpages/reports/login.php:175 +#: adminpages/reports/login.php:153 +#: adminpages/reports/login.php:155 +#: adminpages/reports/login.php:171 +msgid "Total Logins" +msgstr "Logins Gesamt" + +#: adminpages/reports/memberships.php:18 +#: adminpages/reports/memberships.php:324 +#: adminpages/reports/memberships.php:252 +#: adminpages/reports/memberships.php:259 +#: adminpages/reports/memberships.php:272 +#: adminpages/reports/memberships.php:288 +#: adminpages/reports/memberships.php:300 +#: adminpages/dashboard.php:26 +#: adminpages/reports/memberships.php:327 +msgid "Membership Stats" +msgstr "Mitglieder-Statistiken" + +#: adminpages/reports/memberships.php:62 +#: adminpages/reports/memberships.php:37 +#: adminpages/reports/memberships.php:40 +#: adminpages/reports/memberships.php:48 +#: adminpages/reports/memberships.php:43 +msgid "Signups" +msgstr "Registrierungen" + +#: adminpages/reports/memberships.php:63 +#: adminpages/reports/memberships.php:38 +#: adminpages/reports/memberships.php:41 +#: adminpages/reports/memberships.php:44 +msgid "All Cancellations" +msgstr "Alle Stornierungen" + +#: adminpages/reports/memberships.php:70 +#: adminpages/reports/sales.php:62 +#: adminpages/reports/memberships.php:48 +#: adminpages/reports/memberships.php:53 +#: adminpages/reports/memberships.php:54 +#: adminpages/reports/memberships.php:73 +#: adminpages/reports/sales.php:61 +#: adminpages/orders.php:1075 +#: adminpages/reports/memberships.php:51 +#: adminpages/reports/sales.php:52 +#: adminpages/orders.php:1081 +#: adminpages/orders.php:1162 +msgid "This Year" +msgstr "Dieses Jahr" + +#: adminpages/reports/memberships.php:330 +#: adminpages/reports/sales.php:205 +#: adminpages/reports/memberships.php:258 +#: adminpages/reports/memberships.php:265 +#: adminpages/reports/memberships.php:278 +#: adminpages/reports/memberships.php:294 +#: adminpages/reports/memberships.php:306 +#: adminpages/reports/sales.php:187 +#: adminpages/reports/sales.php:195 +#: adminpages/reports/sales.php:196 +#: adminpages/reports/sales.php:204 +#: adminpages/advancedsettings.php:307 +#: adminpages/reports/memberships.php:333 +#: adminpages/reports/sales.php:295 +#: adminpages/advancedsettings.php:329 +#: adminpages/reports/memberships.php:332 +#: adminpages/reports/sales.php:313 +msgid "Daily" +msgstr "täglich" + +#: adminpages/reports/memberships.php:331 +#: adminpages/reports/sales.php:206 +#: adminpages/reports/memberships.php:259 +#: adminpages/reports/memberships.php:266 +#: adminpages/reports/memberships.php:279 +#: adminpages/reports/memberships.php:295 +#: adminpages/reports/memberships.php:307 +#: adminpages/reports/sales.php:188 +#: adminpages/reports/sales.php:196 +#: adminpages/reports/sales.php:197 +#: adminpages/reports/sales.php:205 +#: adminpages/advancedsettings.php:313 +#: adminpages/reports/memberships.php:334 +#: adminpages/reports/sales.php:296 +#: adminpages/advancedsettings.php:335 +#: adminpages/reports/memberships.php:333 +#: adminpages/reports/sales.php:314 +msgid "Monthly" +msgstr "monatlich" + +#: adminpages/reports/memberships.php:332 +#: adminpages/reports/sales.php:207 +#: adminpages/reports/memberships.php:260 +#: adminpages/reports/memberships.php:267 +#: adminpages/reports/memberships.php:280 +#: adminpages/reports/memberships.php:296 +#: adminpages/reports/memberships.php:308 +#: adminpages/reports/sales.php:189 +#: adminpages/reports/sales.php:197 +#: adminpages/reports/sales.php:198 +#: adminpages/reports/sales.php:206 +#: adminpages/reports/memberships.php:335 +#: adminpages/reports/sales.php:297 +#: adminpages/reports/memberships.php:334 +#: adminpages/reports/sales.php:315 +msgid "Annual" +msgstr "jährlich" + +#: adminpages/reports/memberships.php:335 +#: adminpages/reports/memberships.php:270 +#: adminpages/reports/memberships.php:283 +#: adminpages/reports/memberships.php:311 +#: adminpages/reports/memberships.php:338 +#: adminpages/reports/memberships.php:337 +msgid "Signups vs. All Cancellations" +msgstr "Anmeldungen vs. Alle Stornierungen" + +#: adminpages/reports/memberships.php:336 +#: adminpages/reports/memberships.php:263 +#: adminpages/reports/memberships.php:271 +#: adminpages/reports/memberships.php:284 +#: adminpages/reports/memberships.php:299 +#: adminpages/reports/memberships.php:312 +#: adminpages/reports/memberships.php:339 +#: adminpages/reports/memberships.php:338 +msgid "Signups vs. Cancellations" +msgstr "Anmeldungen vs. Abmeldungen" + +#: adminpages/reports/memberships.php:337 +#: adminpages/reports/memberships.php:272 +#: adminpages/reports/memberships.php:285 +#: adminpages/reports/memberships.php:313 +#: adminpages/reports/memberships.php:340 +#: adminpages/reports/memberships.php:339 +msgid "Signups vs. Expirations" +msgstr "Anmeldungen vs. Ausgelaufene" + +#: adminpages/reports/memberships.php:342 +#: adminpages/reports/memberships.php:353 +#: adminpages/reports/sales.php:213 +#: adminpages/reports/sales.php:224 +#: adminpages/membershiplevels.php:545 +#: adminpages/membershiplevels.php:551 +#: adminpages/membershiplevels.php:553 +#: adminpages/membershiplevels.php:559 +#: adminpages/membershiplevels.php:561 +#: adminpages/membershiplevels.php:580 +#: adminpages/membershiplevels.php:588 +#: adminpages/reports/memberships.php:268 +#: adminpages/reports/memberships.php:277 +#: adminpages/reports/memberships.php:279 +#: adminpages/reports/memberships.php:288 +#: adminpages/reports/memberships.php:290 +#: adminpages/reports/memberships.php:301 +#: adminpages/reports/memberships.php:304 +#: adminpages/reports/memberships.php:315 +#: adminpages/reports/memberships.php:318 +#: adminpages/reports/memberships.php:329 +#: adminpages/reports/sales.php:195 +#: adminpages/reports/sales.php:203 +#: adminpages/reports/sales.php:204 +#: adminpages/reports/sales.php:206 +#: adminpages/reports/sales.php:212 +#: adminpages/reports/sales.php:214 +#: adminpages/reports/sales.php:215 +#: adminpages/reports/sales.php:223 +#: adminpages/reports/sales.php:303 +#: adminpages/reports/sales.php:314 +#: adminpages/reports/memberships.php:341 +#: adminpages/reports/memberships.php:352 +#: adminpages/reports/sales.php:321 +#: adminpages/reports/sales.php:332 +msgid "for" +msgstr "für" + +#: adminpages/reports/memberships.php:369 +#: adminpages/reports/sales.php:240 +#: adminpages/reports/memberships.php:295 +#: adminpages/reports/memberships.php:304 +#: adminpages/reports/memberships.php:317 +#: adminpages/reports/memberships.php:331 +#: adminpages/reports/memberships.php:345 +#: adminpages/reports/sales.php:222 +#: adminpages/reports/sales.php:230 +#: adminpages/reports/sales.php:231 +#: adminpages/reports/sales.php:239 +#: adminpages/reports/memberships.php:385 +#: adminpages/reports/sales.php:342 +#: adminpages/reports/memberships.php:384 +#: adminpages/reports/sales.php:360 +msgid "Generate Report" +msgstr "Bericht erstellen" + +#: adminpages/reports/sales.php:18 +msgid "Sales and Revenue (Testing/Sandbox)" +msgstr "Verkäufe und Umsatz (Test/Sandbox)" + +#: adminpages/reports/sales.php:20 +#: adminpages/reports/sales.php:199 +#: adminpages/reports/sales.php:180 +#: adminpages/reports/sales.php:189 +#: adminpages/reports/sales.php:198 +#: adminpages/dashboard.php:19 +#: adminpages/reports/sales.php:289 +#: classes/class-pmpro-admin-activity-email.php:103 +#: adminpages/reports/sales.php:307 +msgid "Sales and Revenue" +msgstr "Verkäufe und Umsatz" + +#: adminpages/reports/sales.php:46 +#: adminpages/reports/sales.php:211 +#: adminpages/reports/sales.php:45 +#: adminpages/reports/sales.php:193 +#: adminpages/reports/sales.php:201 +#: adminpages/reports/sales.php:202 +#: adminpages/reports/sales.php:210 +#: adminpages/reports/sales.php:44 +#: adminpages/reports/sales.php:301 +#: adminpages/reports/sales.php:319 +msgid "Sales" +msgstr "Verkäufe" + +#: adminpages/reports/sales.php:47 +#: adminpages/reports/sales.php:210 +#: adminpages/reports/sales.php:46 +#: adminpages/reports/sales.php:192 +#: adminpages/reports/sales.php:200 +#: adminpages/reports/sales.php:201 +#: adminpages/reports/sales.php:209 +#: adminpages/reports/sales.php:45 +#: adminpages/reports/sales.php:300 +#: adminpages/reports/sales.php:318 +msgid "Revenue" +msgstr "Umsatz" + +#: adminpages/templates/orders-email.php:14 +#: adminpages/templates/orders-print.php:50 +#: adminpages/templates/orders-email.php:17 +#: adminpages/templates/orders-print.php:53 +msgid "Invoice #: " +msgstr "Rechnungs-Nummer:" + +#: adminpages/templates/orders-email.php:18 +#: adminpages/templates/orders-print.php:54 +#: adminpages/templates/orders-email.php:21 +#: adminpages/templates/orders-print.php:57 +msgid "Date:" +msgstr "Datum:" + +#: adminpages/templates/orders-email.php:24 +#: adminpages/templates/orders-email.php:27 +msgid "Bill to:" +msgstr "Rechnung an:" + +#: adminpages/templates/orders-email.php:47 +#: adminpages/templates/orders-print.php:76 +#: adminpages/templates/orders-email.php:50 +#: adminpages/templates/orders-print.php:79 +msgid "Item" +msgstr "Artikel" + +#: adminpages/templates/orders-email.php:48 +#: adminpages/templates/orders-print.php:77 +#: pages/levels.php:36 +#: pages/levels.php:14 +#: pages/levels.php:28 +#: adminpages/templates/orders-email.php:51 +#: adminpages/templates/orders-print.php:80 +msgid "Price" +msgstr "Preis" + +#: adminpages/templates/orders-email.php:56 +#: adminpages/templates/orders-print.php:85 +#: pages/confirmation.php:91 +#: pages/invoice.php:73 +#: pages/invoice.php:77 +#: pages/invoice.php:79 +#: includes/functions.php:2842 +#: includes/functions.php:2897 +msgid "Subtotal" +msgstr "Zwischensumme" + +#: adminpages/updates.php:14 +#: adminpages/updates.php:11 +msgid "Updating Paid Memberships Pro" +msgstr "Paid Memberships Pro wird aktualisiert" + +#: adminpages/updates.php:21 +#: adminpages/updates.php:18 +msgid "Updates are processing. This may take a few minutes to complete." +msgstr "Updates werden verarbeitet. Das kann ein paar Minuten bis zur Fertigstellung dauern." + +#: adminpages/updates.php:27 +#: adminpages/updates.php:23 +#: adminpages/updates.php:28 +msgid "Update complete." +msgstr "Update vollständig durchgeführt." + +#: classes/class-deny-network-activation.php:41 +#: classes/class-deny-network-activation.php:45 +#: classes/class-deny-network-activation.php:53 +#, php-format +msgid "The %s plugin should not be network activated. Activate on each individual site's plugin page." +msgstr "Das %s Plugin sollte nicht im gesamten Netzwerk aktiviert werden. Aktivieren Sie es auf der Plugin-Seite jeder einzelnen Site." + +#: classes/class.memberorder.php:760 +#: classes/class.memberorder.php:553 +#: classes/class.memberorder.php:561 +#: classes/class.memberorder.php:564 +#: classes/class.memberorder.php:573 +#: classes/class.memberorder.php:644 +#: classes/class.memberorder.php:697 +#: classes/class.memberorder.php:699 +#: classes/class.memberorder.php:706 +#: classes/class.memberorder.php:716 +#: classes/class.memberorder.php:719 +#: classes/class.memberorder.php:720 +#: classes/class.memberorder.php:729 +#: classes/class.memberorder.php:740 +#: classes/class.memberorder.php:743 +#: includes/cleanup.php:24 +#: classes/class.memberorder.php:959 +#: classes/class.memberorder.php:1010 +#, php-format +msgid "There was an error canceling the subscription for user with ID=%s. You will want to check your payment gateway to see if their subscription is still active." +msgstr "Bei der Stornierung des Abonnements für den Benutzer mit der ID=%s ist ein Fehler aufgetreten. Bitte überprüfen Sie bei Ihrem Zahlungsdienstleister, ob das Abonnement noch aktiv ist." + +#: classes/class.memberorder.php:761 +#: classes/class.memberorder.php:741 +#: classes/class.memberorder.php:744 +#: adminpages/emailtemplates.php:137 +#: classes/class.memberorder.php:960 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 +msgid "User Email" +msgstr "Benutzer E-Mail" + +#: classes/class.memberorder.php:762 +#: classes/class.memberorder.php:742 +#: classes/class.memberorder.php:745 +#: classes/class.memberorder.php:962 +#: classes/class.memberorder.php:1013 +msgid "User Display Name" +msgstr "Benutzer Anzeige-Name" + +#: classes/class.pmproemail.php:37 +#: classes/class.pmproemail.php:52 +#, php-format +msgid "An Email From %s" +msgstr "Eine E-Mail von %s" + +#: classes/class.pmproemail.php:143 +#: classes/class.pmproemail.php:120 +#: classes/class.pmproemail.php:122 +#: classes/class.pmproemail.php:125 +#: classes/class.pmproemail.php:134 +#: classes/class.pmproemail.php:136 +#: classes/class.pmproemail.php:191 +#: classes/class.pmproemail.php:184 +#, php-format +msgid "Your membership at %s has been CANCELLED" +msgstr "Ihre Mitgliedschaft bei %s wurde STORNIERT" + +#: classes/class.pmproemail.php:176 +#: classes/class.pmproemail.php:142 +#: classes/class.pmproemail.php:144 +#: classes/class.pmproemail.php:147 +#: classes/class.pmproemail.php:156 +#: classes/class.pmproemail.php:166 +#: classes/class.pmproemail.php:169 +#: classes/class.pmproemail.php:219 +#: classes/class.pmproemail.php:212 +#, php-format +msgid "Membership for %s at %s has been CANCELLED" +msgstr "Die Mitgliedschaft für %s bei %s wurde STORNIERT" + +#: classes/class.pmproemail.php:219 +#: classes/class.pmproemail.php:172 +#: classes/class.pmproemail.php:173 +#: classes/class.pmproemail.php:175 +#: classes/class.pmproemail.php:178 +#: classes/class.pmproemail.php:187 +#: classes/class.pmproemail.php:207 +#: classes/class.pmproemail.php:212 +#: classes/class.pmproemail.php:269 +#: classes/class.pmproemail.php:395 +#, php-format +msgid "Your membership confirmation for %s" +msgstr "Ihre Mitgliedschaftsbestätigung für %s" + +#: classes/class.pmproemail.php:276 +#: classes/class.pmproemail.php:285 +#: classes/class.pmproemail.php:294 +#: classes/class.pmproemail.php:376 +#: classes/class.pmproemail.php:385 +#: classes/class.pmproemail.php:703 +#: classes/class.pmproemail.php:705 +#: classes/gateways/class.pmprogateway_braintree.php:489 +#: classes/gateways/class.pmprogateway_stripe.php:652 +#: pages/checkout.php:70 +#: pages/checkout.php:76 +#: pages/checkout.php:498 +#: pages/confirmation.php:58 +#: pages/invoice.php:33 +#: classes/class.pmproemail.php:216 +#: classes/class.pmproemail.php:218 +#: classes/class.pmproemail.php:225 +#: classes/class.pmproemail.php:227 +#: classes/class.pmproemail.php:228 +#: classes/class.pmproemail.php:231 +#: classes/class.pmproemail.php:234 +#: classes/class.pmproemail.php:236 +#: classes/class.pmproemail.php:237 +#: classes/class.pmproemail.php:240 +#: classes/class.pmproemail.php:246 +#: classes/class.pmproemail.php:249 +#: classes/class.pmproemail.php:258 +#: classes/class.pmproemail.php:260 +#: classes/class.pmproemail.php:269 +#: classes/class.pmproemail.php:278 +#: classes/class.pmproemail.php:287 +#: classes/class.pmproemail.php:304 +#: classes/class.pmproemail.php:307 +#: classes/class.pmproemail.php:313 +#: classes/class.pmproemail.php:316 +#: classes/class.pmproemail.php:325 +#: classes/class.pmproemail.php:328 +#: classes/class.pmproemail.php:334 +#: classes/class.pmproemail.php:337 +#: classes/class.pmproemail.php:346 +#: classes/class.pmproemail.php:357 +#: classes/class.pmproemail.php:366 +#: classes/class.pmproemail.php:369 +#: classes/class.pmproemail.php:378 +#: classes/class.pmproemail.php:532 +#: classes/class.pmproemail.php:580 +#: classes/class.pmproemail.php:645 +#: classes/class.pmproemail.php:648 +#: classes/class.pmproemail.php:657 +#: classes/class.pmproemail.php:659 +#: classes/class.pmproemail.php:679 +#: classes/class.pmproemail.php:696 +#: classes/class.pmproemail.php:698 +#: classes/gateways/class.pmprogateway_braintree.php:349 +#: classes/gateways/class.pmprogateway_braintree.php:362 +#: classes/gateways/class.pmprogateway_braintree.php:364 +#: classes/gateways/class.pmprogateway_braintree.php:367 +#: classes/gateways/class.pmprogateway_braintree.php:368 +#: classes/gateways/class.pmprogateway_braintree.php:400 +#: classes/gateways/class.pmprogateway_braintree.php:402 +#: classes/gateways/class.pmprogateway_braintree.php:448 +#: classes/gateways/class.pmprogateway_braintree.php:464 +#: classes/gateways/class.pmprogateway_stripe.php:495 +#: classes/gateways/class.pmprogateway_stripe.php:496 +#: classes/gateways/class.pmprogateway_stripe.php:506 +#: classes/gateways/class.pmprogateway_stripe.php:510 +#: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:540 +#: classes/gateways/class.pmprogateway_stripe.php:541 +#: classes/gateways/class.pmprogateway_stripe.php:544 +#: classes/gateways/class.pmprogateway_stripe.php:562 +#: classes/gateways/class.pmprogateway_stripe.php:573 +#: classes/gateways/class.pmprogateway_stripe.php:611 +#: classes/gateways/class.pmprogateway_stripe.php:638 +#: classes/gateways/class.pmprogateway_stripe.php:644 +#: classes/gateways/class.pmprogateway_stripe.php:660 +#: classes/gateways/class.pmprogateway_stripe.php:661 +#: pages/checkout.php:66 +#: pages/checkout.php:67 +#: pages/checkout.php:68 +#: pages/checkout.php:75 +#: pages/checkout.php:77 +#: pages/checkout.php:78 +#: pages/checkout.php:83 +#: pages/checkout.php:85 +#: pages/checkout.php:86 +#: pages/checkout.php:93 +#: pages/checkout.php:96 +#: pages/checkout.php:549 +#: pages/checkout.php:565 +#: pages/checkout.php:566 +#: pages/checkout.php:573 +#: pages/checkout.php:594 +#: pages/checkout.php:603 +#: pages/checkout.php:612 +#: pages/checkout.php:616 +#: pages/checkout.php:617 +#: pages/checkout.php:619 +#: pages/checkout.php:622 +#: pages/confirmation.php:51 +#: pages/confirmation.php:52 +#: pages/invoice.php:32 +#: adminpages/orders.php:574 +#: adminpages/orders.php:1344 +#: classes/class.pmproemail.php:329 +#: classes/class.pmproemail.php:338 +#: classes/class.pmproemail.php:347 +#: classes/class.pmproemail.php:425 +#: classes/class.pmproemail.php:434 +#: classes/class.pmproemail.php:757 +#: classes/class.pmproemail.php:759 +#: classes/gateways/class.pmprogateway_braintree.php:509 +#: classes/gateways/class.pmprogateway_stripe.php:1302 +#: includes/profile.php:427 +#: pages/checkout.php:99 +#: pages/checkout.php:105 +#: pages/checkout.php:430 +#: pages/confirmation.php:70 +#: pages/invoice.php:52 +#: adminpages/orders.php:580 +#: adminpages/orders.php:1350 +#: classes/gateways/class.pmprogateway_stripe.php:1314 +#: classes/class.pmproemail.php:339 +#: classes/class.pmproemail.php:345 +#: classes/class.pmproemail.php:351 +#: classes/class.pmproemail.php:441 +#: classes/class.pmproemail.php:447 +#: classes/class.pmproemail.php:769 +#: classes/class.pmproemail.php:771 +#: classes/gateways/class.pmprogateway_stripe.php:1333 +#: classes/gateways/class.pmprogateway_stripe.php:1339 +#: adminpages/orders.php:697 +#: adminpages/orders.php:1437 +#: classes/class.pmproemail.php:465 +#: classes/class.pmproemail.php:471 +#: classes/class.pmproemail.php:477 +#: classes/class.pmproemail.php:567 +#: classes/class.pmproemail.php:573 +#: classes/class.pmproemail.php:895 +#: classes/class.pmproemail.php:897 +#: classes/gateways/class.pmprogateway_braintree.php:516 +#: classes/gateways/class.pmprogateway_stripe.php:906 +#: includes/profile.php:454 +msgid "Discount Code" +msgstr "Rabattcode" + +#: classes/class.pmproemail.php:301 +#: classes/class.pmproemail.php:397 +#: classes/class.pmproemail.php:712 +#: classes/class.pmproemail.php:241 +#: classes/class.pmproemail.php:243 +#: classes/class.pmproemail.php:253 +#: classes/class.pmproemail.php:256 +#: classes/class.pmproemail.php:265 +#: classes/class.pmproemail.php:285 +#: classes/class.pmproemail.php:294 +#: classes/class.pmproemail.php:325 +#: classes/class.pmproemail.php:328 +#: classes/class.pmproemail.php:346 +#: classes/class.pmproemail.php:349 +#: classes/class.pmproemail.php:358 +#: classes/class.pmproemail.php:378 +#: classes/class.pmproemail.php:390 +#: classes/class.pmproemail.php:538 +#: classes/class.pmproemail.php:586 +#: classes/class.pmproemail.php:651 +#: classes/class.pmproemail.php:654 +#: classes/class.pmproemail.php:663 +#: classes/class.pmproemail.php:665 +#: classes/class.pmproemail.php:685 +#: classes/class.pmproemail.php:705 +#: classes/class.pmproemail.php:354 +#: classes/class.pmproemail.php:446 +#: classes/class.pmproemail.php:766 +#: classes/class.pmproemail.php:900 +#: classes/class.pmproemail.php:945 +#: includes/email.php:440 +#: includes/email.php:441 +#: includes/email.php:465 +#: includes/email.php:466 +#: classes/class.pmproemail.php:359 +#: classes/class.pmproemail.php:457 +#: classes/class.pmproemail.php:778 +#: classes/class.pmproemail.php:912 +#: classes/class.pmproemail.php:957 +#: includes/email.php:472 +#: includes/email.php:473 +#: classes/class.pmproemail.php:485 +#: classes/class.pmproemail.php:583 +#: classes/class.pmproemail.php:904 +#: classes/class.pmproemail.php:1038 +#: classes/class.pmproemail.php:1083 +#, php-format +msgid "This membership will expire on %s." +msgstr "Diese Mitgliedschaft läuft am %s ab." + +#: classes/class.pmproemail.php:323 +#: classes/class.pmproemail.php:263 +#: classes/class.pmproemail.php:265 +#: classes/class.pmproemail.php:275 +#: classes/class.pmproemail.php:278 +#: classes/class.pmproemail.php:287 +#: classes/class.pmproemail.php:307 +#: classes/class.pmproemail.php:316 +#, php-format +msgid "Member Checkout for %s at %s" +msgstr "Registrierung für %s bei %s" + +#: classes/class.pmproemail.php:414 +#: classes/class.pmproemail.php:375 +#: classes/class.pmproemail.php:395 +#: classes/class.pmproemail.php:407 +#: classes/class.pmproemail.php:463 +#: classes/class.pmproemail.php:475 +#: classes/class.pmproemail.php:601 +#, php-format +msgid "Your billing information has been updated at %s" +msgstr "Ihre Zahlungsinformationen wurden aktualisiert um %s" + +#: classes/class.pmproemail.php:468 +#: classes/class.pmproemail.php:428 +#: classes/class.pmproemail.php:448 +#: classes/class.pmproemail.php:461 +#: classes/class.pmproemail.php:513 +#: classes/class.pmproemail.php:525 +#: classes/class.pmproemail.php:651 +#, php-format +msgid "Billing information has been updated for %s at %s" +msgstr "Zahlungsinformationen wurden aktualisiert für %s um %s" + +#: classes/class.pmproemail.php:517 +#: classes/class.pmproemail.php:425 +#: classes/class.pmproemail.php:430 +#: classes/class.pmproemail.php:464 +#: classes/class.pmproemail.php:467 +#: classes/class.pmproemail.php:476 +#: classes/class.pmproemail.php:496 +#: classes/class.pmproemail.php:510 +#, php-format +msgid "Membership Payment Failed at %s" +msgstr "Mitgliedschafts-Zahlung bei %s fehlgeschlagen" + +#: classes/class.pmproemail.php:564 +#: classes/class.pmproemail.php:462 +#: classes/class.pmproemail.php:468 +#: classes/class.pmproemail.php:510 +#: classes/class.pmproemail.php:513 +#: classes/class.pmproemail.php:522 +#: classes/class.pmproemail.php:542 +#: classes/class.pmproemail.php:557 +#, php-format +msgid "Membership Payment Failed For %s at %s" +msgstr "Mitgliedschafts-Zahlung für %s bei %s fehlgeschlagen" + +#: classes/class.pmproemail.php:612 +#: classes/class.pmproemail.php:508 +#: classes/class.pmproemail.php:557 +#: classes/class.pmproemail.php:560 +#: classes/class.pmproemail.php:569 +#: classes/class.pmproemail.php:589 +#: classes/class.pmproemail.php:605 +#, php-format +msgid "Credit Card on File Expiring Soon at %s" +msgstr "Kreditkarte läuft am %s ab." + +#: classes/class.pmproemail.php:663 +#: classes/class.pmproemail.php:501 +#: classes/class.pmproemail.php:548 +#: classes/class.pmproemail.php:605 +#: classes/class.pmproemail.php:608 +#: classes/class.pmproemail.php:617 +#: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:639 +#: classes/class.pmproemail.php:656 +#, php-format +msgid "INVOICE for %s membership" +msgstr "ZAHLUNGSBESTÄTIGUNG für %s Mitgliedschaft" + +#: classes/class.pmproemail.php:740 +#: classes/class.pmproemail.php:563 +#: classes/class.pmproemail.php:611 +#: classes/class.pmproemail.php:676 +#: classes/class.pmproemail.php:679 +#: classes/class.pmproemail.php:688 +#: classes/class.pmproemail.php:690 +#: classes/class.pmproemail.php:710 +#: classes/class.pmproemail.php:733 +#: classes/class.pmproemail.php:794 +#: classes/class.pmproemail.php:806 +#: classes/class.pmproemail.php:932 +#, php-format +msgid "Your trial at %s is ending soon" +msgstr "Ihre Testphase bei %s endet bald" + +#: classes/class.pmproemail.php:776 +#: classes/class.pmproemail.php:596 +#: classes/class.pmproemail.php:645 +#: classes/class.pmproemail.php:710 +#: classes/class.pmproemail.php:713 +#: classes/class.pmproemail.php:722 +#: classes/class.pmproemail.php:724 +#: classes/class.pmproemail.php:744 +#: classes/class.pmproemail.php:769 +#: classes/class.pmproemail.php:831 +#: classes/class.pmproemail.php:843 +#: classes/class.pmproemail.php:969 +#, php-format +msgid "Your membership at %s has ended" +msgstr "Ihre Mitgliedschaft bei %s wurde beendet" + +#: classes/class.pmproemail.php:803 +#: classes/class.pmproemail.php:621 +#: classes/class.pmproemail.php:670 +#: classes/class.pmproemail.php:735 +#: classes/class.pmproemail.php:738 +#: classes/class.pmproemail.php:747 +#: classes/class.pmproemail.php:749 +#: classes/class.pmproemail.php:769 +#: classes/class.pmproemail.php:796 +#: classes/class.pmproemail.php:858 +#: classes/class.pmproemail.php:870 +#: classes/class.pmproemail.php:996 +#, php-format +msgid "Your membership at %s will end soon" +msgstr "Ihre Mitgliedschaft bei %s endet bald" + +#: classes/class.pmproemail.php:825 +#: classes/class.pmproemail.php:641 +#: classes/class.pmproemail.php:690 +#: classes/class.pmproemail.php:755 +#: classes/class.pmproemail.php:758 +#: classes/class.pmproemail.php:767 +#: classes/class.pmproemail.php:769 +#: classes/class.pmproemail.php:789 +#: classes/class.pmproemail.php:818 +#: classes/class.pmproemail.php:888 +#: classes/class.pmproemail.php:900 +#: classes/class.pmproemail.php:1026 +#, php-format +msgid "Your membership at %s has been changed" +msgstr "Ihre Mitgliedschaft bei %s wurde geändert" + +#: classes/class.pmproemail.php:950 +#: classes/class.pmproemail.php:905 +#, php-format +msgid "The new level is %s" +msgstr "Das neue Paket ist %s" + +#: classes/class.pmproemail.php:832 +#: classes/class.pmproemail.php:647 +#: classes/class.pmproemail.php:696 +#: classes/class.pmproemail.php:761 +#: classes/class.pmproemail.php:764 +#: classes/class.pmproemail.php:773 +#: classes/class.pmproemail.php:775 +#: classes/class.pmproemail.php:795 +#: classes/class.pmproemail.php:825 +msgid "Your membership has been cancelled" +msgstr "Ihre Mitgliedschaft wurde gekündigt" + +#: classes/class.pmproemail.php:836 +#: classes/class.pmproemail.php:884 +#: classes/class.pmproemail.php:651 +#: classes/class.pmproemail.php:689 +#: classes/class.pmproemail.php:700 +#: classes/class.pmproemail.php:738 +#: classes/class.pmproemail.php:765 +#: classes/class.pmproemail.php:768 +#: classes/class.pmproemail.php:777 +#: classes/class.pmproemail.php:778 +#: classes/class.pmproemail.php:779 +#: classes/class.pmproemail.php:798 +#: classes/class.pmproemail.php:803 +#: classes/class.pmproemail.php:806 +#: classes/class.pmproemail.php:815 +#: classes/class.pmproemail.php:816 +#: classes/class.pmproemail.php:817 +#: classes/class.pmproemail.php:829 +#: classes/class.pmproemail.php:869 +#: classes/class.pmproemail.php:876 +#, php-format +msgid "This membership will expire on %s" +msgstr "Diese Mitgliedschaft endet am %s" + +#: classes/class.pmproemail.php:840 +#: classes/class.pmproemail.php:888 +#: classes/class.pmproemail.php:655 +#: classes/class.pmproemail.php:693 +#: classes/class.pmproemail.php:704 +#: classes/class.pmproemail.php:742 +#: classes/class.pmproemail.php:769 +#: classes/class.pmproemail.php:772 +#: classes/class.pmproemail.php:781 +#: classes/class.pmproemail.php:782 +#: classes/class.pmproemail.php:783 +#: classes/class.pmproemail.php:802 +#: classes/class.pmproemail.php:807 +#: classes/class.pmproemail.php:810 +#: classes/class.pmproemail.php:819 +#: classes/class.pmproemail.php:820 +#: classes/class.pmproemail.php:821 +#: classes/class.pmproemail.php:833 +#: classes/class.pmproemail.php:873 +#: classes/class.pmproemail.php:880 +msgid "This membership does not expire" +msgstr "Diese Mitgliedschaft läuft nicht ab" + +#: classes/class.pmproemail.php:868 +#: includes/init.php:265 +#: includes/profile.php:48 +#: includes/init.php:229 +#: includes/init.php:232 +#: includes/init.php:233 +#: includes/init.php:235 +#: includes/init.php:237 +#: includes/init.php:245 +#: includes/init.php:253 +#: includes/init.php:258 +#: includes/init.php:259 +#: includes/profile.php:37 +#: includes/profile.php:39 +#: includes/profile.php:42 +#: adminpages/orders.php:585 +#: classes/class.pmproemail.php:883 +#: classes/class.pmproemail.php:928 +#: includes/init.php:198 +#: includes/profile.php:34 +#: adminpages/orders.php:591 +#: classes/class.pmproemail.php:895 +#: classes/class.pmproemail.php:940 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 +#: includes/metaboxes.php:19 +msgid "None" +msgstr "Kein" + +#: classes/class.pmproemail.php:872 +#: classes/class.pmproemail.php:679 +#: classes/class.pmproemail.php:728 +#: classes/class.pmproemail.php:793 +#: classes/class.pmproemail.php:796 +#: classes/class.pmproemail.php:805 +#: classes/class.pmproemail.php:806 +#: classes/class.pmproemail.php:807 +#: classes/class.pmproemail.php:826 +#: classes/class.pmproemail.php:859 +#: classes/class.pmproemail.php:866 +#: classes/class.pmproemail.php:933 +#: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1071 +#, php-format +msgid "Membership for %s at %s has been changed" +msgstr "Mitgliedschaft für %s bei %s wurde geändert " + +#: classes/class.pmproemail.php:879 +#: classes/class.pmproemail.php:799 +#: classes/class.pmproemail.php:802 +#: classes/class.pmproemail.php:811 +#: classes/class.pmproemail.php:812 +#: classes/class.pmproemail.php:813 +#: classes/class.pmproemail.php:832 +#: classes/class.pmproemail.php:865 +#: classes/class.pmproemail.php:872 +msgid "Membership has been cancelled" +msgstr "Mitgliedschaft wurde storniert." + +#: classes/class.pmproemail.php:919 +#: classes/class.pmproemail.php:848 +#: classes/class.pmproemail.php:849 +#: classes/class.pmproemail.php:850 +#: classes/class.pmproemail.php:869 +#: classes/class.pmproemail.php:904 +#: classes/class.pmproemail.php:911 +msgid "Invoice for Order #: " +msgstr "Rechnung für Bestellung Nummer:" + +#: classes/class.pmproemail.php:963 +#: classes/class.pmproemail.php:948 +#: classes/class.pmproemail.php:955 +msgid "" +"

An administrator at !!sitename!! has changed your membership level.

\n" +"\n" +"

!!membership_change!!.

\n" +"\n" +"

If you did not request this membership change and would like more information please contact us at !!siteemail!!

\n" +"\n" +"

Log in to your membership account here: !!login_link!!

" +msgstr "" +"

Ein Administrator bei !!sitename!! hat Ihr Mitgliedschafts-Paket geändert.

\n" +"\n" +"

!!membership_change!!.

\n" +"\n" +"

Wenn Sie das nicht verlangt haben und weitere Informationen möchten, kontaktieren Sie uns bitte als !!siteemail!!

\n" +"\n" +"

Loggen Sie sich hier in Ihren Mitgliedschafts-Konto ein: !!login_link!!

" + +#: classes/gateways/class.pmprogateway.php:55 +#: classes/gateways/class.pmprogateway_authorizenet.php:171 +#: classes/gateways/class.pmprogateway_check.php:210 +#: classes/gateways/class.pmprogateway_cybersource.php:171 +#: classes/gateways/class.pmprogateway_payflowpro.php:164 +#: classes/gateways/class.pmprogateway_paypal.php:272 +#: classes/gateways/class.pmprogateway_authorizenet.php:55 +#: classes/gateways/class.pmprogateway_check.php:60 +#: classes/gateways/class.pmprogateway_check.php:193 +#: classes/gateways/class.pmprogateway_cybersource.php:57 +#: classes/gateways/class.pmprogateway_payflowpro.php:27 +#: classes/gateways/class.pmprogateway_paypal.php:27 +#: classes/gateways/class.pmprogateway_paypal.php:247 +#: classes/gateways/class.pmprogateway_paypal.php:249 +#: classes/gateways/class.pmprogateway_authorizenet.php:189 +#: classes/gateways/class.pmprogateway_check.php:211 +#: classes/gateways/class.pmprogateway_cybersource.php:155 +#: classes/gateways/class.pmprogateway_payflowpro.php:173 +#: classes/gateways/class.pmprogateway_paypal.php:315 +msgid "Unknown error: Authorization failed." +msgstr "Unbekannter Fehler: Autorisierung fehlgeschlagen." + +#: classes/gateways/class.pmprogateway.php:106 +#: classes/gateways/class.pmprogateway.php:111 +#: classes/gateways/class.pmprogateway.php:129 +#: classes/gateways/class.pmprogateway_authorizenet.php:222 +#: classes/gateways/class.pmprogateway_authorizenet.php:227 +#: classes/gateways/class.pmprogateway_authorizenet.php:244 +#: classes/gateways/class.pmprogateway_check.php:262 +#: classes/gateways/class.pmprogateway_check.php:267 +#: classes/gateways/class.pmprogateway_check.php:285 +#: classes/gateways/class.pmprogateway_cybersource.php:222 +#: classes/gateways/class.pmprogateway_cybersource.php:227 +#: classes/gateways/class.pmprogateway_cybersource.php:245 +#: classes/gateways/class.pmprogateway_payflowpro.php:187 +#: classes/gateways/class.pmprogateway_payflowpro.php:192 +#: classes/gateways/class.pmprogateway_paypal.php:295 +#: classes/gateways/class.pmprogateway_authorizenet.php:106 +#: classes/gateways/class.pmprogateway_authorizenet.php:111 +#: classes/gateways/class.pmprogateway_authorizenet.php:128 +#: classes/gateways/class.pmprogateway_check.php:111 +#: classes/gateways/class.pmprogateway_check.php:116 +#: classes/gateways/class.pmprogateway_check.php:134 +#: classes/gateways/class.pmprogateway_check.php:244 +#: classes/gateways/class.pmprogateway_check.php:245 +#: classes/gateways/class.pmprogateway_check.php:249 +#: classes/gateways/class.pmprogateway_check.php:250 +#: classes/gateways/class.pmprogateway_check.php:268 +#: classes/gateways/class.pmprogateway_cybersource.php:108 +#: classes/gateways/class.pmprogateway_cybersource.php:113 +#: classes/gateways/class.pmprogateway_cybersource.php:131 +#: classes/gateways/class.pmprogateway_payflowpro.php:50 +#: classes/gateways/class.pmprogateway_payflowpro.php:55 +#: classes/gateways/class.pmprogateway_paypal.php:50 +#: classes/gateways/class.pmprogateway_paypal.php:270 +#: classes/gateways/class.pmprogateway_paypal.php:272 +#: classes/gateways/class.pmprogateway_authorizenet.php:240 +#: classes/gateways/class.pmprogateway_authorizenet.php:245 +#: classes/gateways/class.pmprogateway_authorizenet.php:262 +#: classes/gateways/class.pmprogateway_check.php:263 +#: classes/gateways/class.pmprogateway_check.php:286 +#: classes/gateways/class.pmprogateway_cybersource.php:203 +#: classes/gateways/class.pmprogateway_cybersource.php:208 +#: classes/gateways/class.pmprogateway_cybersource.php:224 +#: classes/gateways/class.pmprogateway_payflowpro.php:196 +#: classes/gateways/class.pmprogateway_payflowpro.php:201 +#: classes/gateways/class.pmprogateway_paypal.php:338 +msgid "Unknown error: Payment failed." +msgstr "Unbekannter Fehler: Zahlung fehlgeschlagen." + +#: classes/gateways/class.pmprogateway.php:113 +#: classes/gateways/class.pmprogateway_authorizenet.php:228 +#: classes/gateways/class.pmprogateway_check.php:269 +#: classes/gateways/class.pmprogateway_cybersource.php:229 +#: classes/gateways/class.pmprogateway_authorizenet.php:112 +#: classes/gateways/class.pmprogateway_check.php:118 +#: classes/gateways/class.pmprogateway_check.php:251 +#: classes/gateways/class.pmprogateway_check.php:252 +#: classes/gateways/class.pmprogateway_cybersource.php:115 +#: classes/gateways/class.pmprogateway_authorizenet.php:246 +#: classes/gateways/class.pmprogateway_check.php:270 +#: classes/gateways/class.pmprogateway_cybersource.php:209 +msgid "A partial payment was made that we could not void. Please contact the site owner immediately to correct this." +msgstr "Es wurde eine Teilzahlung getätigt, die wir nicht stornieren können. Bitte kontaktieren Sie den Betreiber der Seite um das Problem zu klären." + +#: classes/gateways/class.pmprogateway_authorizenet.php:39 +#: paid-memberships-pro.php:136 +#: paid-memberships-pro.php:122 +#: paid-memberships-pro.php:123 +#: paid-memberships-pro.php:130 +#: paid-memberships-pro.php:131 +#: paid-memberships-pro.php:132 +#: paid-memberships-pro.php:133 +#: paid-memberships-pro.php:134 +#: paid-memberships-pro.php:135 +#: paid-memberships-pro.php:142 +#: classes/gateways/class.pmprogateway_authorizenet.php:55 +#: paid-memberships-pro.php:164 +#: paid-memberships-pro.php:166 +#: paid-memberships-pro.php:173 +msgid "Authorize.net" +msgstr "Authorize.net" + +#: classes/gateways/class.pmprogateway_authorizenet.php:93 +#: classes/gateways/class.pmprogateway_authorizenet.php:110 +msgid "Authorize.net Settings" +msgstr "Authorize.net Einstellungen" + +#: classes/gateways/class.pmprogateway_authorizenet.php:98 +#: adminpages/paymentsettings.php:260 +#: adminpages/paymentsettings.php:264 +#: adminpages/paymentsettings.php:269 +#: classes/gateways/class.pmprogateway_authorizenet.php:115 +msgid "Login Name" +msgstr "Login Name" + +#: classes/gateways/class.pmprogateway_authorizenet.php:106 +#: adminpages/paymentsettings.php:268 +#: adminpages/paymentsettings.php:272 +#: adminpages/paymentsettings.php:277 +#: classes/gateways/class.pmprogateway_authorizenet.php:123 +msgid "Transaction Key" +msgstr "Transaktionsschlüssel" + +#: classes/gateways/class.pmprogateway_authorizenet.php:114 +#: adminpages/paymentsettings.php:454 +#: adminpages/paymentsettings.php:495 +#: adminpages/paymentsettings.php:501 +#: adminpages/paymentsettings.php:503 +#: classes/gateways/class.pmprogateway_authorizenet.php:131 +msgid "Silent Post URL" +msgstr "Stille-Post-URL" + +#: classes/gateways/class.pmprogateway_authorizenet.php:117 +#: adminpages/paymentsettings.php:457 +#: adminpages/paymentsettings.php:498 +#: adminpages/paymentsettings.php:504 +#: adminpages/paymentsettings.php:506 +#: classes/gateways/class.pmprogateway_authorizenet.php:134 +msgid "To fully integrate with Authorize.net, be sure to set your Silent Post URL to" +msgstr "Um Authorize.net vollständig zu integrieren, stellen Sie Ihre Silent Post URL auf " + +#: classes/gateways/class.pmprogateway_authorizenet.php:909 +#: classes/gateways/class.pmprogateway_authorizenet.php:910 +#: classes/gateways/class.pmprogateway_authorizenet.php:787 +#: classes/gateways/class.pmprogateway_authorizenet.php:788 +#: classes/gateways/class.pmprogateway_authorizenet.php:789 +#: classes/gateways/class.pmprogateway_authorizenet.php:792 +#: classes/gateways/class.pmprogateway_authorizenet.php:793 +#: classes/gateways/class.pmprogateway_authorizenet.php:908 +#: classes/gateways/class.pmprogateway_authorizenet.php:914 +#: classes/gateways/class.pmprogateway_authorizenet.php:915 +msgid "Could not connect to Authorize.net" +msgstr "Verbindung mit Authorize.net fehlgeschlagen" + +#: classes/gateways/class.pmprogateway_braintree.php:48 +#: classes/gateways/class.pmprogateway_braintree.php:51 +#, php-format +msgid "Attempting to load Braintree gateway: %s" +msgstr "Versuche, das Braintree-Gateway zu laden: %s" + +#: classes/gateways/class.pmprogateway_braintree.php:84 +#: classes/gateways/class.pmprogateway_stripe.php:81 +#: classes/gateways/class.pmprogateway_braintree.php:49 +#: classes/gateways/class.pmprogateway_braintree.php:62 +#: classes/gateways/class.pmprogateway_stripe.php:58 +#: classes/gateways/class.pmprogateway_braintree.php:87 +#: classes/gateways/class.pmprogateway_stripe.php:91 +#: classes/gateways/class.pmprogateway_stripe.php:97 +#: classes/gateways/class.pmprogateway_stripe.php:1478 +#, php-format +msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." +msgstr "Das %s Gateway benötigt die %s PHP-Erweiterung. Bitte aktivieren Sie sie oder bitten Sie Ihren Hostinganbieter es zu aktivieren." + +#: classes/gateways/class.pmprogateway_braintree.php:141 +#: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 +#, php-format +msgid "Problem loading plans: %s" +msgstr "Problem, die Tarife zu laden: %s" + +#: classes/gateways/class.pmprogateway_braintree.php:143 +#: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 +msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." +msgstr "Problem beim Zugriff auf das Braintree Gateway. Bitte verifizieren Sie Ihre PMPro Zahlungseinstellungen (Schlüssel usw.)." + +#: classes/gateways/class.pmprogateway_braintree.php:220 +#: paid-memberships-pro.php:137 +#: classes/gateways/class.pmprogateway_braintree.php:63 +#: classes/gateways/class.pmprogateway_braintree.php:76 +#: classes/gateways/class.pmprogateway_braintree.php:77 +#: classes/gateways/class.pmprogateway_braintree.php:109 +#: classes/gateways/class.pmprogateway_braintree.php:111 +#: classes/gateways/class.pmprogateway_braintree.php:172 +#: paid-memberships-pro.php:123 +#: paid-memberships-pro.php:124 +#: paid-memberships-pro.php:131 +#: paid-memberships-pro.php:132 +#: paid-memberships-pro.php:133 +#: paid-memberships-pro.php:134 +#: paid-memberships-pro.php:135 +#: paid-memberships-pro.php:136 +#: paid-memberships-pro.php:143 +#: classes/gateways/class.pmprogateway_braintree.php:251 +#: paid-memberships-pro.php:165 +#: paid-memberships-pro.php:167 +#: classes/gateways/class.pmprogateway_braintree.php:258 +#: paid-memberships-pro.php:174 +msgid "Braintree Payments" +msgstr "Braintree Zahlungen" + +#: classes/gateways/class.pmprogateway_braintree.php:276 +#: classes/gateways/class.pmprogateway_braintree.php:119 +#: classes/gateways/class.pmprogateway_braintree.php:132 +#: classes/gateways/class.pmprogateway_braintree.php:133 +#: classes/gateways/class.pmprogateway_braintree.php:165 +#: classes/gateways/class.pmprogateway_braintree.php:167 +#: classes/gateways/class.pmprogateway_braintree.php:228 +#: classes/gateways/class.pmprogateway_braintree.php:308 +#: classes/gateways/class.pmprogateway_braintree.php:315 +msgid "Braintree Settings" +msgstr "Braintree Einstellungen" + +#: classes/gateways/class.pmprogateway_braintree.php:281 +#: classes/gateways/class.pmprogateway_cybersource.php:106 +#: adminpages/paymentsettings.php:294 +#: adminpages/paymentsettings.php:298 +#: adminpages/paymentsettings.php:303 +#: adminpages/paymentsettings.php:364 +#: adminpages/paymentsettings.php:369 +#: classes/gateways/class.pmprogateway_braintree.php:124 +#: classes/gateways/class.pmprogateway_braintree.php:137 +#: classes/gateways/class.pmprogateway_braintree.php:138 +#: classes/gateways/class.pmprogateway_braintree.php:170 +#: classes/gateways/class.pmprogateway_braintree.php:172 +#: classes/gateways/class.pmprogateway_braintree.php:233 +#: classes/gateways/class.pmprogateway_braintree.php:313 +#: classes/gateways/class.pmprogateway_cybersource.php:94 +#: classes/gateways/class.pmprogateway_braintree.php:320 +msgid "Merchant ID" +msgstr "Händler ID" + +#: classes/gateways/class.pmprogateway_braintree.php:289 +#: adminpages/paymentsettings.php:302 +#: adminpages/paymentsettings.php:306 +#: adminpages/paymentsettings.php:311 +#: classes/gateways/class.pmprogateway_braintree.php:132 +#: classes/gateways/class.pmprogateway_braintree.php:145 +#: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:178 +#: classes/gateways/class.pmprogateway_braintree.php:180 +#: classes/gateways/class.pmprogateway_braintree.php:241 +#: classes/gateways/class.pmprogateway_braintree.php:321 +#: classes/gateways/class.pmprogateway_braintree.php:328 +msgid "Public Key" +msgstr "Öffentlicher Schlüssel" + +#: classes/gateways/class.pmprogateway_braintree.php:297 +#: adminpages/paymentsettings.php:310 +#: adminpages/paymentsettings.php:314 +#: adminpages/paymentsettings.php:319 +#: classes/gateways/class.pmprogateway_braintree.php:140 +#: classes/gateways/class.pmprogateway_braintree.php:153 +#: classes/gateways/class.pmprogateway_braintree.php:154 +#: classes/gateways/class.pmprogateway_braintree.php:186 +#: classes/gateways/class.pmprogateway_braintree.php:188 +#: classes/gateways/class.pmprogateway_braintree.php:249 +#: classes/gateways/class.pmprogateway_braintree.php:329 +#: classes/gateways/class.pmprogateway_braintree.php:336 +msgid "Private Key" +msgstr "Privater Schlüssel" + +#: classes/gateways/class.pmprogateway_braintree.php:305 +#: adminpages/paymentsettings.php:318 +#: adminpages/paymentsettings.php:322 +#: adminpages/paymentsettings.php:327 +#: classes/gateways/class.pmprogateway_braintree.php:148 +#: classes/gateways/class.pmprogateway_braintree.php:161 +#: classes/gateways/class.pmprogateway_braintree.php:162 +#: classes/gateways/class.pmprogateway_braintree.php:194 +#: classes/gateways/class.pmprogateway_braintree.php:196 +#: classes/gateways/class.pmprogateway_braintree.php:257 +#: classes/gateways/class.pmprogateway_braintree.php:337 +#: classes/gateways/class.pmprogateway_braintree.php:344 +msgid "Client-Side Encryption Key" +msgstr "Client-seitiger Verschlüsselungs-Schlüssel" + +#: classes/gateways/class.pmprogateway_braintree.php:313 +#: classes/gateways/class.pmprogateway_stripe.php:297 +#: adminpages/paymentsettings.php:462 +#: adminpages/paymentsettings.php:470 +#: adminpages/paymentsettings.php:503 +#: adminpages/paymentsettings.php:509 +#: adminpages/paymentsettings.php:511 +#: adminpages/paymentsettings.php:517 +#: adminpages/paymentsettings.php:519 +#: classes/gateways/class.pmprogateway_braintree.php:156 +#: classes/gateways/class.pmprogateway_braintree.php:169 +#: classes/gateways/class.pmprogateway_braintree.php:170 +#: classes/gateways/class.pmprogateway_braintree.php:202 +#: classes/gateways/class.pmprogateway_braintree.php:204 +#: classes/gateways/class.pmprogateway_braintree.php:265 +#: classes/gateways/class.pmprogateway_stripe.php:181 +#: classes/gateways/class.pmprogateway_stripe.php:182 +#: classes/gateways/class.pmprogateway_stripe.php:192 +#: classes/gateways/class.pmprogateway_stripe.php:214 +#: classes/gateways/class.pmprogateway_stripe.php:216 +#: classes/gateways/class.pmprogateway_stripe.php:217 +#: classes/gateways/class.pmprogateway_stripe.php:228 +#: classes/gateways/class.pmprogateway_stripe.php:230 +#: classes/gateways/class.pmprogateway_stripe.php:257 +#: classes/gateways/class.pmprogateway_stripe.php:289 +#: classes/gateways/class.pmprogateway_stripe.php:305 +#: classes/gateways/class.pmprogateway_stripe.php:306 +#: classes/gateways/class.pmprogateway_braintree.php:345 +#: classes/gateways/class.pmprogateway_braintree.php:352 +msgid "Web Hook URL" +msgstr "Web Hook URL" + +#: classes/gateways/class.pmprogateway_braintree.php:317 +#: adminpages/paymentsettings.php:474 +#: adminpages/paymentsettings.php:515 +#: adminpages/paymentsettings.php:521 +#: adminpages/paymentsettings.php:523 +#: classes/gateways/class.pmprogateway_braintree.php:160 +#: classes/gateways/class.pmprogateway_braintree.php:173 +#: classes/gateways/class.pmprogateway_braintree.php:174 +#: classes/gateways/class.pmprogateway_braintree.php:206 +#: classes/gateways/class.pmprogateway_braintree.php:208 +#: classes/gateways/class.pmprogateway_braintree.php:269 +#: classes/gateways/class.pmprogateway_braintree.php:348 +#: classes/gateways/class.pmprogateway_braintree.php:355 +msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to" +msgstr "Um Braintree vollständig zu integrieren, stellen Sie Ihre Web Hook URL auf " + +#: classes/gateways/class.pmprogateway_braintree.php:434 +#: classes/gateways/class.pmprogateway_stripe.php:569 +#: pages/checkout.php:411 +#: classes/gateways/class.pmprogateway_braintree.php:270 +#: classes/gateways/class.pmprogateway_braintree.php:283 +#: classes/gateways/class.pmprogateway_braintree.php:285 +#: classes/gateways/class.pmprogateway_braintree.php:286 +#: classes/gateways/class.pmprogateway_braintree.php:287 +#: classes/gateways/class.pmprogateway_braintree.php:319 +#: classes/gateways/class.pmprogateway_braintree.php:321 +#: classes/gateways/class.pmprogateway_braintree.php:383 +#: classes/gateways/class.pmprogateway_braintree.php:429 +#: classes/gateways/class.pmprogateway_stripe.php:387 +#: classes/gateways/class.pmprogateway_stripe.php:388 +#: classes/gateways/class.pmprogateway_stripe.php:398 +#: classes/gateways/class.pmprogateway_stripe.php:402 +#: classes/gateways/class.pmprogateway_stripe.php:426 +#: classes/gateways/class.pmprogateway_stripe.php:427 +#: classes/gateways/class.pmprogateway_stripe.php:429 +#: classes/gateways/class.pmprogateway_stripe.php:432 +#: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:461 +#: classes/gateways/class.pmprogateway_stripe.php:499 +#: classes/gateways/class.pmprogateway_stripe.php:526 +#: classes/gateways/class.pmprogateway_stripe.php:561 +#: classes/gateways/class.pmprogateway_stripe.php:577 +#: classes/gateways/class.pmprogateway_stripe.php:578 +#: pages/checkout.php:476 +#: pages/checkout.php:478 +#: pages/checkout.php:485 +#: pages/checkout.php:493 +#: pages/checkout.php:494 +#: pages/checkout.php:500 +#: pages/checkout.php:501 +#: pages/checkout.php:503 +#: pages/checkout.php:510 +#: pages/checkout.php:513 +#: classes/gateways/class.pmprogateway_braintree.php:454 +#: classes/gateways/class.pmprogateway_stripe.php:1251 +#: pages/checkout.php:366 +#: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1282 +#: classes/gateways/class.pmprogateway_stripe.php:1288 +#: adminpages/orders.php:676 +#: classes/gateways/class.pmprogateway_braintree.php:461 +#: classes/gateways/class.pmprogateway_stripe.php:855 +msgid "Payment Information" +msgstr "Zahlungsinformationen" + +#: classes/gateways/class.pmprogateway_braintree.php:435 +#: classes/gateways/class.pmprogateway_stripe.php:570 +#: pages/checkout.php:412 +#: classes/gateways/class.pmprogateway_braintree.php:270 +#: classes/gateways/class.pmprogateway_braintree.php:283 +#: classes/gateways/class.pmprogateway_braintree.php:285 +#: classes/gateways/class.pmprogateway_braintree.php:287 +#: classes/gateways/class.pmprogateway_braintree.php:288 +#: classes/gateways/class.pmprogateway_braintree.php:320 +#: classes/gateways/class.pmprogateway_braintree.php:322 +#: classes/gateways/class.pmprogateway_braintree.php:384 +#: classes/gateways/class.pmprogateway_braintree.php:430 +#: classes/gateways/class.pmprogateway_stripe.php:387 +#: classes/gateways/class.pmprogateway_stripe.php:388 +#: classes/gateways/class.pmprogateway_stripe.php:398 +#: classes/gateways/class.pmprogateway_stripe.php:402 +#: classes/gateways/class.pmprogateway_stripe.php:426 +#: classes/gateways/class.pmprogateway_stripe.php:428 +#: classes/gateways/class.pmprogateway_stripe.php:430 +#: classes/gateways/class.pmprogateway_stripe.php:433 +#: classes/gateways/class.pmprogateway_stripe.php:451 +#: classes/gateways/class.pmprogateway_stripe.php:462 +#: classes/gateways/class.pmprogateway_stripe.php:500 +#: classes/gateways/class.pmprogateway_stripe.php:527 +#: classes/gateways/class.pmprogateway_stripe.php:562 +#: classes/gateways/class.pmprogateway_stripe.php:578 +#: classes/gateways/class.pmprogateway_stripe.php:579 +#: pages/checkout.php:476 +#: pages/checkout.php:478 +#: pages/checkout.php:485 +#: pages/checkout.php:493 +#: pages/checkout.php:494 +#: pages/checkout.php:500 +#: pages/checkout.php:502 +#: pages/checkout.php:504 +#: pages/checkout.php:511 +#: pages/checkout.php:514 +#: classes/gateways/class.pmprogateway_braintree.php:455 +#: classes/gateways/class.pmprogateway_stripe.php:1252 +#: pages/checkout.php:367 +#: classes/gateways/class.pmprogateway_stripe.php:1264 +#: classes/gateways/class.pmprogateway_stripe.php:1283 +#: classes/gateways/class.pmprogateway_stripe.php:1289 +#: classes/gateways/class.pmprogateway_braintree.php:462 +#: classes/gateways/class.pmprogateway_stripe.php:856 +#, php-format +msgid "We Accept %s" +msgstr "Wir aktzeptieren %s" + +#: classes/gateways/class.pmprogateway_braintree.php:455 +#: classes/gateways/class.pmprogateway_stripe.php:617 +#: pages/billing.php:309 +#: pages/checkout.php:459 +#: classes/gateways/class.pmprogateway_braintree.php:303 +#: classes/gateways/class.pmprogateway_braintree.php:316 +#: classes/gateways/class.pmprogateway_braintree.php:318 +#: classes/gateways/class.pmprogateway_braintree.php:321 +#: classes/gateways/class.pmprogateway_braintree.php:322 +#: classes/gateways/class.pmprogateway_braintree.php:354 +#: classes/gateways/class.pmprogateway_braintree.php:356 +#: classes/gateways/class.pmprogateway_braintree.php:418 +#: classes/gateways/class.pmprogateway_stripe.php:449 +#: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:460 +#: classes/gateways/class.pmprogateway_stripe.php:464 +#: classes/gateways/class.pmprogateway_stripe.php:490 +#: classes/gateways/class.pmprogateway_stripe.php:493 +#: classes/gateways/class.pmprogateway_stripe.php:495 +#: classes/gateways/class.pmprogateway_stripe.php:498 +#: classes/gateways/class.pmprogateway_stripe.php:516 +#: classes/gateways/class.pmprogateway_stripe.php:527 +#: classes/gateways/class.pmprogateway_stripe.php:565 +#: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:609 +#: classes/gateways/class.pmprogateway_stripe.php:625 +#: classes/gateways/class.pmprogateway_stripe.php:626 +#: pages/billing.php:244 +#: pages/billing.php:248 +#: pages/billing.php:257 +#: pages/billing.php:260 +#: pages/billing.php:263 +#: pages/billing.php:305 +#: pages/billing.php:311 +#: pages/billing.php:312 +#: pages/billing.php:313 +#: pages/billing.php:314 +#: pages/billing.php:337 +#: pages/checkout.php:503 +#: pages/checkout.php:519 +#: pages/checkout.php:520 +#: pages/checkout.php:527 +#: pages/checkout.php:548 +#: pages/checkout.php:557 +#: pages/checkout.php:566 +#: pages/checkout.php:570 +#: pages/checkout.php:577 +#: pages/checkout.php:580 +#: classes/gateways/class.pmprogateway_braintree.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:1285 +#: pages/billing.php:371 +#: pages/checkout.php:389 +#: classes/gateways/class.pmprogateway_stripe.php:1297 +#: classes/gateways/class.pmprogateway_stripe.php:1316 +#: classes/gateways/class.pmprogateway_stripe.php:1322 +#: classes/gateways/class.pmprogateway_braintree.php:482 +#: classes/gateways/class.pmprogateway_stripe.php:889 +#: pages/billing.php:377 +msgid "Card Number" +msgstr "Kartennummer" + +#: classes/gateways/class.pmprogateway_braintree.php:483 +#: pages/billing.php:348 +#: classes/gateways/class.pmprogateway_braintree.php:340 +#: classes/gateways/class.pmprogateway_braintree.php:353 +#: classes/gateways/class.pmprogateway_braintree.php:355 +#: classes/gateways/class.pmprogateway_braintree.php:358 +#: classes/gateways/class.pmprogateway_braintree.php:359 +#: classes/gateways/class.pmprogateway_braintree.php:391 +#: classes/gateways/class.pmprogateway_braintree.php:393 +#: classes/gateways/class.pmprogateway_braintree.php:455 +#: classes/gateways/class.pmprogateway_stripe.php:486 +#: classes/gateways/class.pmprogateway_stripe.php:487 +#: classes/gateways/class.pmprogateway_stripe.php:497 +#: classes/gateways/class.pmprogateway_stripe.php:501 +#: classes/gateways/class.pmprogateway_stripe.php:527 +#: classes/gateways/class.pmprogateway_stripe.php:531 +#: classes/gateways/class.pmprogateway_stripe.php:532 +#: classes/gateways/class.pmprogateway_stripe.php:535 +#: classes/gateways/class.pmprogateway_stripe.php:553 +#: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:602 +#: classes/gateways/class.pmprogateway_stripe.php:629 +#: pages/billing.php:281 +#: pages/billing.php:285 +#: pages/billing.php:294 +#: pages/billing.php:297 +#: pages/billing.php:301 +#: pages/billing.php:343 +#: pages/billing.php:351 +#: pages/billing.php:352 +#: pages/billing.php:354 +#: pages/billing.php:357 +#: pages/billing.php:380 +#: pages/checkout.php:540 +#: pages/checkout.php:556 +#: pages/checkout.php:557 +#: pages/checkout.php:564 +#: pages/checkout.php:585 +#: pages/checkout.php:594 +#: pages/checkout.php:603 +#: pages/checkout.php:605 +#: pages/checkout.php:607 +#: pages/checkout.php:608 +#: pages/checkout.php:612 +#: pages/checkout.php:615 +#: classes/gateways/class.pmprogateway_braintree.php:503 +#: pages/billing.php:410 +#: classes/gateways/class.pmprogateway_braintree.php:510 +#: pages/billing.php:417 +msgid "CVV" +msgstr "Kartenprüfwert" + +#: classes/gateways/class.pmprogateway_braintree.php:484 +#: classes/gateways/class.pmprogateway_stripe.php:647 +#: pages/billing.php:349 +#: pages/checkout.php:493 +#: classes/gateways/class.pmprogateway_braintree.php:341 +#: classes/gateways/class.pmprogateway_braintree.php:354 +#: classes/gateways/class.pmprogateway_braintree.php:356 +#: classes/gateways/class.pmprogateway_braintree.php:359 +#: classes/gateways/class.pmprogateway_braintree.php:360 +#: classes/gateways/class.pmprogateway_braintree.php:392 +#: classes/gateways/class.pmprogateway_braintree.php:394 +#: classes/gateways/class.pmprogateway_braintree.php:456 +#: classes/gateways/class.pmprogateway_stripe.php:487 +#: classes/gateways/class.pmprogateway_stripe.php:488 +#: classes/gateways/class.pmprogateway_stripe.php:498 +#: classes/gateways/class.pmprogateway_stripe.php:502 +#: classes/gateways/class.pmprogateway_stripe.php:528 +#: classes/gateways/class.pmprogateway_stripe.php:532 +#: classes/gateways/class.pmprogateway_stripe.php:533 +#: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:554 +#: classes/gateways/class.pmprogateway_stripe.php:565 +#: classes/gateways/class.pmprogateway_stripe.php:603 +#: classes/gateways/class.pmprogateway_stripe.php:630 +#: classes/gateways/class.pmprogateway_stripe.php:639 +#: classes/gateways/class.pmprogateway_stripe.php:655 +#: classes/gateways/class.pmprogateway_stripe.php:656 +#: pages/billing.php:282 +#: pages/billing.php:286 +#: pages/billing.php:295 +#: pages/billing.php:298 +#: pages/billing.php:302 +#: pages/billing.php:344 +#: pages/billing.php:352 +#: pages/billing.php:353 +#: pages/billing.php:355 +#: pages/billing.php:358 +#: pages/billing.php:381 +#: pages/checkout.php:541 +#: pages/checkout.php:557 +#: pages/checkout.php:558 +#: pages/checkout.php:565 +#: pages/checkout.php:586 +#: pages/checkout.php:595 +#: pages/checkout.php:604 +#: pages/checkout.php:606 +#: pages/checkout.php:608 +#: pages/checkout.php:609 +#: pages/checkout.php:613 +#: pages/checkout.php:616 +#: classes/gateways/class.pmprogateway_braintree.php:504 +#: pages/billing.php:411 +#: pages/checkout.php:425 +#: classes/gateways/class.pmprogateway_braintree.php:511 +#: pages/billing.php:418 +msgid "what's this?" +msgstr "Was ist das?" + +#: classes/gateways/class.pmprogateway_braintree.php:491 +#: classes/gateways/class.pmprogateway_stripe.php:654 +#: pages/checkout.php:78 +#: pages/checkout.php:500 +#: classes/gateways/class.pmprogateway_braintree.php:351 +#: classes/gateways/class.pmprogateway_braintree.php:364 +#: classes/gateways/class.pmprogateway_braintree.php:366 +#: classes/gateways/class.pmprogateway_braintree.php:369 +#: classes/gateways/class.pmprogateway_braintree.php:370 +#: classes/gateways/class.pmprogateway_braintree.php:402 +#: classes/gateways/class.pmprogateway_braintree.php:404 +#: classes/gateways/class.pmprogateway_braintree.php:450 +#: classes/gateways/class.pmprogateway_braintree.php:466 +#: classes/gateways/class.pmprogateway_stripe.php:497 +#: classes/gateways/class.pmprogateway_stripe.php:498 +#: classes/gateways/class.pmprogateway_stripe.php:508 +#: classes/gateways/class.pmprogateway_stripe.php:512 +#: classes/gateways/class.pmprogateway_stripe.php:538 +#: classes/gateways/class.pmprogateway_stripe.php:542 +#: classes/gateways/class.pmprogateway_stripe.php:543 +#: classes/gateways/class.pmprogateway_stripe.php:546 +#: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:575 +#: classes/gateways/class.pmprogateway_stripe.php:613 +#: classes/gateways/class.pmprogateway_stripe.php:640 +#: classes/gateways/class.pmprogateway_stripe.php:646 +#: classes/gateways/class.pmprogateway_stripe.php:662 +#: classes/gateways/class.pmprogateway_stripe.php:663 +#: pages/checkout.php:79 +#: pages/checkout.php:80 +#: pages/checkout.php:87 +#: pages/checkout.php:88 +#: pages/checkout.php:95 +#: pages/checkout.php:98 +#: pages/checkout.php:551 +#: pages/checkout.php:567 +#: pages/checkout.php:568 +#: pages/checkout.php:575 +#: pages/checkout.php:596 +#: pages/checkout.php:605 +#: pages/checkout.php:614 +#: pages/checkout.php:618 +#: pages/checkout.php:619 +#: pages/checkout.php:621 +#: pages/checkout.php:624 +#: classes/gateways/class.pmprogateway_braintree.php:511 +#: classes/gateways/class.pmprogateway_stripe.php:1307 +#: pages/checkout.php:107 +#: pages/checkout.php:432 +#: classes/gateways/class.pmprogateway_stripe.php:1319 +#: classes/gateways/class.pmprogateway_stripe.php:1338 +#: classes/gateways/class.pmprogateway_stripe.php:1344 +#: classes/gateways/class.pmprogateway_braintree.php:518 +#: classes/gateways/class.pmprogateway_stripe.php:911 +msgid "Apply" +msgstr "Übernehmen" + +#: classes/gateways/class.pmprogateway_braintree.php:550 +#: classes/gateways/class.pmprogateway_braintree.php:567 +#: classes/gateways/class.pmprogateway_braintree.php:657 +#: classes/gateways/class.pmprogateway_braintree.php:822 +#: classes/gateways/class.pmprogateway_braintree.php:927 +#: classes/gateways/class.pmprogateway_braintree.php:947 +#: classes/gateways/class.pmprogateway_braintree.php:509 +#: classes/gateways/class.pmprogateway_braintree.php:524 +#: classes/gateways/class.pmprogateway_braintree.php:526 +#: classes/gateways/class.pmprogateway_braintree.php:541 +#: classes/gateways/class.pmprogateway_braintree.php:616 +#: classes/gateways/class.pmprogateway_braintree.php:623 +#: classes/gateways/class.pmprogateway_braintree.php:781 +#: classes/gateways/class.pmprogateway_braintree.php:782 +#: classes/gateways/class.pmprogateway_braintree.php:886 +#: classes/gateways/class.pmprogateway_braintree.php:887 +#: classes/gateways/class.pmprogateway_braintree.php:906 +#: classes/gateways/class.pmprogateway_braintree.php:907 +#: classes/gateways/class.pmprogateway_braintree.php:570 +#: classes/gateways/class.pmprogateway_braintree.php:587 +#: classes/gateways/class.pmprogateway_braintree.php:677 +#: classes/gateways/class.pmprogateway_braintree.php:848 +#: classes/gateways/class.pmprogateway_braintree.php:957 +#: classes/gateways/class.pmprogateway_braintree.php:984 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 +msgid "Payment error: Please contact the webmaster (braintree-load-error)" +msgstr "Fehler bei der Zahlung: Bitte kontaktieren Sie Ihren Webmaster (braintree-load-error)" + +#: classes/gateways/class.pmprogateway_braintree.php:554 +#: classes/gateways/class.pmprogateway_stripe.php:1131 +#: classes/gateways/class.pmprogateway_braintree.php:61 +#: classes/gateways/class.pmprogateway_braintree.php:406 +#: classes/gateways/class.pmprogateway_braintree.php:419 +#: classes/gateways/class.pmprogateway_braintree.php:421 +#: classes/gateways/class.pmprogateway_braintree.php:424 +#: classes/gateways/class.pmprogateway_braintree.php:425 +#: classes/gateways/class.pmprogateway_braintree.php:457 +#: classes/gateways/class.pmprogateway_braintree.php:459 +#: classes/gateways/class.pmprogateway_braintree.php:513 +#: classes/gateways/class.pmprogateway_braintree.php:528 +#: classes/gateways/class.pmprogateway_stripe.php:53 +#: classes/gateways/class.pmprogateway_stripe.php:1011 +#: classes/gateways/class.pmprogateway_stripe.php:1025 +#: classes/gateways/class.pmprogateway_stripe.php:1026 +#: classes/gateways/class.pmprogateway_stripe.php:1036 +#: classes/gateways/class.pmprogateway_stripe.php:1040 +#: classes/gateways/class.pmprogateway_stripe.php:1068 +#: classes/gateways/class.pmprogateway_stripe.php:1072 +#: classes/gateways/class.pmprogateway_stripe.php:1073 +#: classes/gateways/class.pmprogateway_stripe.php:1076 +#: classes/gateways/class.pmprogateway_stripe.php:1094 +#: classes/gateways/class.pmprogateway_stripe.php:1105 +#: classes/gateways/class.pmprogateway_stripe.php:1123 +#: classes/gateways/class.pmprogateway_stripe.php:1139 +#: classes/gateways/class.pmprogateway_stripe.php:1140 +#: classes/gateways/class.pmprogateway_stripe.php:1143 +#: classes/gateways/class.pmprogateway_stripe.php:1176 +#: classes/gateways/class.pmprogateway_braintree.php:574 +#: classes/gateways/class.pmprogateway_braintree.php:581 +msgid "Unknown error: Initial payment failed." +msgstr "Unbekannter Fehler: Einmal-Zahlung fehlgeschlagen." + +#: classes/gateways/class.pmprogateway_braintree.php:630 +#: classes/gateways/class.pmprogateway_braintree.php:120 +#: classes/gateways/class.pmprogateway_braintree.php:465 +#: classes/gateways/class.pmprogateway_braintree.php:478 +#: classes/gateways/class.pmprogateway_braintree.php:480 +#: classes/gateways/class.pmprogateway_braintree.php:483 +#: classes/gateways/class.pmprogateway_braintree.php:484 +#: classes/gateways/class.pmprogateway_braintree.php:516 +#: classes/gateways/class.pmprogateway_braintree.php:518 +#: classes/gateways/class.pmprogateway_braintree.php:589 +#: classes/gateways/class.pmprogateway_braintree.php:596 +#: classes/gateways/class.pmprogateway_braintree.php:650 +#: classes/gateways/class.pmprogateway_braintree.php:660 +msgid "Error during settlement:" +msgstr "Fehler während der Abrechnung:" + +#: classes/gateways/class.pmprogateway_braintree.php:639 +#: classes/gateways/class.pmprogateway_braintree.php:129 +#: classes/gateways/class.pmprogateway_braintree.php:474 +#: classes/gateways/class.pmprogateway_braintree.php:487 +#: classes/gateways/class.pmprogateway_braintree.php:489 +#: classes/gateways/class.pmprogateway_braintree.php:492 +#: classes/gateways/class.pmprogateway_braintree.php:493 +#: classes/gateways/class.pmprogateway_braintree.php:525 +#: classes/gateways/class.pmprogateway_braintree.php:527 +#: classes/gateways/class.pmprogateway_braintree.php:598 +#: classes/gateways/class.pmprogateway_braintree.php:605 +#: classes/gateways/class.pmprogateway_braintree.php:659 +#: classes/gateways/class.pmprogateway_braintree.php:669 +msgid "Error during charge:" +msgstr "Fehler während der Abbuchung:" + +#: classes/gateways/class.pmprogateway_braintree.php:731 +#: classes/gateways/class.pmprogateway_braintree.php:690 +#: classes/gateways/class.pmprogateway_braintree.php:750 +#: classes/gateways/class.pmprogateway_braintree.php:760 +#, php-format +msgid "Failed to update customer: %s" +msgstr "Kunde konnte nicht aktualisiert werden: %s" + +#: classes/gateways/class.pmprogateway_braintree.php:743 +#: classes/gateways/class.pmprogateway_braintree.php:198 +#: classes/gateways/class.pmprogateway_braintree.php:221 +#: classes/gateways/class.pmprogateway_braintree.php:566 +#: classes/gateways/class.pmprogateway_braintree.php:579 +#: classes/gateways/class.pmprogateway_braintree.php:581 +#: classes/gateways/class.pmprogateway_braintree.php:584 +#: classes/gateways/class.pmprogateway_braintree.php:585 +#: classes/gateways/class.pmprogateway_braintree.php:617 +#: classes/gateways/class.pmprogateway_braintree.php:619 +#: classes/gateways/class.pmprogateway_braintree.php:702 +#: classes/gateways/class.pmprogateway_braintree.php:703 +#: classes/gateways/class.pmprogateway_braintree.php:762 +#: classes/gateways/class.pmprogateway_braintree.php:772 +msgid "Failed to update customer." +msgstr "Kunde konnte nicht aktualisiert werden." + +#: classes/gateways/class.pmprogateway_braintree.php:791 +#: classes/gateways/class.pmprogateway_braintree.php:246 +#: classes/gateways/class.pmprogateway_braintree.php:269 +#: classes/gateways/class.pmprogateway_braintree.php:614 +#: classes/gateways/class.pmprogateway_braintree.php:627 +#: classes/gateways/class.pmprogateway_braintree.php:629 +#: classes/gateways/class.pmprogateway_braintree.php:632 +#: classes/gateways/class.pmprogateway_braintree.php:633 +#: classes/gateways/class.pmprogateway_braintree.php:665 +#: classes/gateways/class.pmprogateway_braintree.php:667 +#: classes/gateways/class.pmprogateway_braintree.php:750 +#: classes/gateways/class.pmprogateway_braintree.php:751 +#: classes/gateways/class.pmprogateway_braintree.php:810 +#: classes/gateways/class.pmprogateway_braintree.php:820 +msgid "Failed to create customer." +msgstr "Kunde konnte nicht angelegt werden." + +#: classes/gateways/class.pmprogateway_braintree.php:798 +#: classes/gateways/class.pmprogateway_braintree.php:253 +#: classes/gateways/class.pmprogateway_braintree.php:276 +#: classes/gateways/class.pmprogateway_braintree.php:621 +#: classes/gateways/class.pmprogateway_braintree.php:634 +#: classes/gateways/class.pmprogateway_braintree.php:636 +#: classes/gateways/class.pmprogateway_braintree.php:639 +#: classes/gateways/class.pmprogateway_braintree.php:640 +#: classes/gateways/class.pmprogateway_braintree.php:672 +#: classes/gateways/class.pmprogateway_braintree.php:674 +#: classes/gateways/class.pmprogateway_braintree.php:757 +#: classes/gateways/class.pmprogateway_braintree.php:758 +#: classes/gateways/class.pmprogateway_braintree.php:817 +#: classes/gateways/class.pmprogateway_braintree.php:827 +msgid "Error creating customer record with Braintree:" +msgstr "Braintree meldet einen Fehler bei der Erstellung des Kunden Protokolls:" + +#: classes/gateways/class.pmprogateway_braintree.php:903 +#: classes/gateways/class.pmprogateway_braintree.php:344 +#: classes/gateways/class.pmprogateway_braintree.php:345 +#: classes/gateways/class.pmprogateway_braintree.php:376 +#: classes/gateways/class.pmprogateway_braintree.php:721 +#: classes/gateways/class.pmprogateway_braintree.php:734 +#: classes/gateways/class.pmprogateway_braintree.php:736 +#: classes/gateways/class.pmprogateway_braintree.php:739 +#: classes/gateways/class.pmprogateway_braintree.php:740 +#: classes/gateways/class.pmprogateway_braintree.php:772 +#: classes/gateways/class.pmprogateway_braintree.php:774 +#: classes/gateways/class.pmprogateway_braintree.php:862 +#: classes/gateways/class.pmprogateway_braintree.php:863 +msgid "Error subscribing customer to plan with Braintree:" +msgstr "Braintree meldet einen Fehler beim Einrichten des Abos für den Kunden:" + +#: classes/gateways/class.pmprogateway_braintree.php:918 +#: classes/gateways/class.pmprogateway_braintree.php:359 +#: classes/gateways/class.pmprogateway_braintree.php:360 +#: classes/gateways/class.pmprogateway_braintree.php:391 +#: classes/gateways/class.pmprogateway_braintree.php:736 +#: classes/gateways/class.pmprogateway_braintree.php:749 +#: classes/gateways/class.pmprogateway_braintree.php:751 +#: classes/gateways/class.pmprogateway_braintree.php:754 +#: classes/gateways/class.pmprogateway_braintree.php:755 +#: classes/gateways/class.pmprogateway_braintree.php:787 +#: classes/gateways/class.pmprogateway_braintree.php:789 +#: classes/gateways/class.pmprogateway_braintree.php:877 +#: classes/gateways/class.pmprogateway_braintree.php:878 +msgid "Failed to subscribe with Braintree:" +msgstr "Braintree meldet einen Fehler beim Einrichten des Abos für den Kunden:" + +#: classes/gateways/class.pmprogateway_braintree.php:966 +#: classes/gateways/class.pmprogateway_braintree.php:979 +#: classes/gateways/class.pmprogateway_braintree.php:986 +#: classes/gateways/class.pmprogateway_braintree.php:397 +#: classes/gateways/class.pmprogateway_braintree.php:398 +#: classes/gateways/class.pmprogateway_braintree.php:410 +#: classes/gateways/class.pmprogateway_braintree.php:411 +#: classes/gateways/class.pmprogateway_braintree.php:417 +#: classes/gateways/class.pmprogateway_braintree.php:418 +#: classes/gateways/class.pmprogateway_braintree.php:429 +#: classes/gateways/class.pmprogateway_braintree.php:442 +#: classes/gateways/class.pmprogateway_braintree.php:449 +#: classes/gateways/class.pmprogateway_braintree.php:774 +#: classes/gateways/class.pmprogateway_braintree.php:787 +#: classes/gateways/class.pmprogateway_braintree.php:789 +#: classes/gateways/class.pmprogateway_braintree.php:792 +#: classes/gateways/class.pmprogateway_braintree.php:793 +#: classes/gateways/class.pmprogateway_braintree.php:794 +#: classes/gateways/class.pmprogateway_braintree.php:800 +#: classes/gateways/class.pmprogateway_braintree.php:802 +#: classes/gateways/class.pmprogateway_braintree.php:805 +#: classes/gateways/class.pmprogateway_braintree.php:806 +#: classes/gateways/class.pmprogateway_braintree.php:807 +#: classes/gateways/class.pmprogateway_braintree.php:809 +#: classes/gateways/class.pmprogateway_braintree.php:812 +#: classes/gateways/class.pmprogateway_braintree.php:813 +#: classes/gateways/class.pmprogateway_braintree.php:825 +#: classes/gateways/class.pmprogateway_braintree.php:827 +#: classes/gateways/class.pmprogateway_braintree.php:838 +#: classes/gateways/class.pmprogateway_braintree.php:840 +#: classes/gateways/class.pmprogateway_braintree.php:845 +#: classes/gateways/class.pmprogateway_braintree.php:847 +#: classes/gateways/class.pmprogateway_braintree.php:925 +#: classes/gateways/class.pmprogateway_braintree.php:926 +#: classes/gateways/class.pmprogateway_braintree.php:938 +#: classes/gateways/class.pmprogateway_braintree.php:939 +#: classes/gateways/class.pmprogateway_braintree.php:945 +#: classes/gateways/class.pmprogateway_braintree.php:946 +#: classes/gateways/class.pmprogateway_stripe.php:343 +#: classes/gateways/class.pmprogateway_stripe.php:344 +#: classes/gateways/class.pmprogateway_stripe.php:351 +#: classes/gateways/class.pmprogateway_stripe.php:353 +#: classes/gateways/class.pmprogateway_stripe.php:354 +#: classes/gateways/class.pmprogateway_stripe.php:361 +#: classes/gateways/class.pmprogateway_stripe.php:396 +#: classes/gateways/class.pmprogateway_stripe.php:402 +#: classes/gateways/class.pmprogateway_stripe.php:423 +#: classes/gateways/class.pmprogateway_braintree.php:1036 +#: classes/gateways/class.pmprogateway_braintree.php:1046 +msgid "Could not find the subscription." +msgstr "Abonnement konnte nicht gefunden werden." + +#: classes/gateways/class.pmprogateway_check.php:49 +#: paid-memberships-pro.php:130 +#: adminpages/orders.php:399 +#: adminpages/orders.php:449 +#: adminpages/paymentsettings.php:157 +#: adminpages/paymentsettings.php:159 +#: classes/gateways/class.pmprogateway_check.php:48 +#: paid-memberships-pro.php:116 +#: paid-memberships-pro.php:117 +#: paid-memberships-pro.php:124 +#: paid-memberships-pro.php:125 +#: paid-memberships-pro.php:126 +#: paid-memberships-pro.php:127 +#: paid-memberships-pro.php:128 +#: paid-memberships-pro.php:129 +#: paid-memberships-pro.php:136 +#: paid-memberships-pro.php:158 +#: paid-memberships-pro.php:160 +#: paid-memberships-pro.php:167 +msgid "Pay by Check" +msgstr "Zahlen auf Rechnung" + +#: classes/gateways/class.pmprogateway_check.php:101 +#: classes/gateways/class.pmprogateway_check.php:100 +#: classes/gateways/class.pmprogateway_check.php:102 +msgid "Pay by Check Settings" +msgstr "Zahlen auf Rechnung Einstellungen" + +#: classes/gateways/class.pmprogateway_check.php:106 +#: adminpages/paymentsettings.php:389 +#: adminpages/paymentsettings.php:415 +#: adminpages/paymentsettings.php:420 +#: adminpages/paymentsettings.php:422 +#: classes/gateways/class.pmprogateway_check.php:105 +#: classes/gateways/class.pmprogateway_check.php:107 +msgid "Instructions" +msgstr "Anleitung" + +#: classes/gateways/class.pmprogateway_check.php:110 +#: adminpages/paymentsettings.php:393 +#: adminpages/paymentsettings.php:419 +#: adminpages/paymentsettings.php:424 +#: adminpages/paymentsettings.php:426 +#: classes/gateways/class.pmprogateway_check.php:109 +#: classes/gateways/class.pmprogateway_check.php:111 +msgid "Who to write the check out to. Where to mail it. Shown on checkout, confirmation, and invoice pages." +msgstr "An wen soll der Scheck ausgestellt werden? Wohin soll er geschickt werden? Wird beim Checkout, der Bestätigung und auf Rechnungs-Seiten angezeigt." + +#: classes/gateways/class.pmprogateway_cybersource.php:42 +#: classes/gateways/class.pmprogateway_cybersource.php:36 +msgid "CyberSource" +msgstr "CyberSource" + +#: classes/gateways/class.pmprogateway_cybersource.php:96 +#: classes/gateways/class.pmprogateway_cybersource.php:84 +msgid "CyberSource Settings" +msgstr "CyberSource Einstellungen" + +#: classes/gateways/class.pmprogateway_cybersource.php:101 +#: adminpages/paymentsettings.php:174 +#: classes/gateways/class.pmprogateway_cybersource.php:89 +msgid "This gateway option is in beta. Some functionality may not be available. Please contact Paid Memberships Pro with any issues you run into. Please be sure to upgrade Paid Memberships Pro to the latest versions when available." +msgstr "Diese Option ist im Beta-Statdium. Manche Funktionen sind möglicherweise nicht verfügbar. Kontaktieren Sie bitte Paid Memberships Pro wenn irgendwelche Probleme auftreten. Bitte aktualisieren Sie Paid Memberships Pro falls eine neuere Version verfügbar ist." + +#: classes/gateways/class.pmprogateway_cybersource.php:114 +#: adminpages/paymentsettings.php:372 +#: adminpages/paymentsettings.php:377 +#: classes/gateways/class.pmprogateway_cybersource.php:102 +msgid "Transaction Security Key" +msgstr "Transaktionssicherheitsschlüssel" + +#: classes/gateways/class.pmprogateway_payflowpro.php:39 +msgid "Payflow Pro/PayPal Pro" +msgstr "Payflow Pro/PayPal Pro" + +#: classes/gateways/class.pmprogateway_payflowpro.php:95 +#: classes/gateways/class.pmprogateway_payflowpro.php:96 +msgid "Payflow Pro Settings" +msgstr "Payflow Pro Einstellungen" + +#: classes/gateways/class.pmprogateway_payflowpro.php:100 +#: adminpages/paymentsettings.php:195 +#: adminpages/paymentsettings.php:199 +#: adminpages/paymentsettings.php:204 +#: classes/gateways/class.pmprogateway_payflowpro.php:101 +msgid "Partner" +msgstr "Partner" + +#: classes/gateways/class.pmprogateway_payflowpro.php:108 +#: adminpages/paymentsettings.php:203 +#: adminpages/paymentsettings.php:207 +#: adminpages/paymentsettings.php:212 +#: classes/gateways/class.pmprogateway_payflowpro.php:109 +msgid "Vendor" +msgstr "Anbieter" + +#: classes/gateways/class.pmprogateway_payflowpro.php:124 +#: pages/checkout.php:176 +#: adminpages/paymentsettings.php:219 +#: adminpages/paymentsettings.php:223 +#: adminpages/paymentsettings.php:228 +#: pages/checkout.php:177 +#: pages/checkout.php:180 +#: pages/checkout.php:182 +#: pages/checkout.php:189 +#: pages/checkout.php:191 +#: pages/checkout.php:193 +#: pages/checkout.php:200 +#: pages/checkout.php:203 +#: classes/gateways/class.pmprogateway_payflowpro.php:125 +#: pages/checkout.php:143 +msgid "Password" +msgstr "Passwort" + +#: classes/gateways/class.pmprogateway_payflowpro.php:132 +#: classes/gateways/class.pmprogateway_payflowpro.php:133 +msgid "IPN Handler" +msgstr "IPN Handler" + +#: classes/gateways/class.pmprogateway_payflowpro.php:137 +#, php-format +msgid "Payflow does not use IPN. To sync recurring subscriptions, please see this addon." +msgstr "Payflow verwendet kein IPN. Um Abo-Mitgliedschaften zu synchronisieren, siehe dieses Add-On." + +#: classes/gateways/class.pmprogateway_payflowpro.php:194 +#: classes/gateways/class.pmprogateway_paypal.php:302 +#: classes/gateways/class.pmprogateway_payflowpro.php:57 +#: classes/gateways/class.pmprogateway_paypal.php:57 +#: classes/gateways/class.pmprogateway_paypal.php:277 +#: classes/gateways/class.pmprogateway_paypal.php:279 +#: classes/gateways/class.pmprogateway_payflowpro.php:203 +#: classes/gateways/class.pmprogateway_paypal.php:345 +msgid "A partial payment was made that we could not refund. Please contact the site owner immediately to correct this." +msgstr "Es wurde eine Teilzahlung veranlasst, die wir nicht rückerstatten können. Kontaktieren Sie bitte den Betreiber der Seite um das zu klären." + +#: classes/gateways/class.pmprogateway_paypal.php:68 +#: paid-memberships-pro.php:133 +#: classes/gateways/class.pmprogateway_paypal.php:57 +#: paid-memberships-pro.php:119 +#: paid-memberships-pro.php:120 +#: paid-memberships-pro.php:127 +#: paid-memberships-pro.php:128 +#: paid-memberships-pro.php:129 +#: paid-memberships-pro.php:130 +#: paid-memberships-pro.php:131 +#: paid-memberships-pro.php:132 +#: paid-memberships-pro.php:139 +#: paid-memberships-pro.php:161 +#: paid-memberships-pro.php:163 +#: paid-memberships-pro.php:170 +msgid "PayPal Website Payments Pro" +msgstr "PayPal Website Payments Pro" + +#: classes/gateways/class.pmprogateway_paypal.php:125 +#: classes/gateways/class.pmprogateway_paypalexpress.php:140 +#: classes/gateways/class.pmprogateway_paypalstandard.php:132 +#: classes/gateways/class.pmprogateway_paypal.php:113 +#: classes/gateways/class.pmprogateway_paypalexpress.php:118 +#: classes/gateways/class.pmprogateway_paypalexpress.php:128 +#: classes/gateways/class.pmprogateway_paypalstandard.php:112 +#: classes/gateways/class.pmprogateway_paypal.php:132 +#: classes/gateways/class.pmprogateway_paypalexpress.php:141 +#: classes/gateways/class.pmprogateway_paypalstandard.php:133 +#: classes/gateways/class.pmprogateway_paypalexpress.php:151 +#: classes/gateways/class.pmprogateway_paypalexpress.php:152 +msgid "PayPal Settings" +msgstr "PayPal Einstellungen" + +#: classes/gateways/class.pmprogateway_paypal.php:130 +#: classes/gateways/class.pmprogateway_paypalexpress.php:145 +#: classes/gateways/class.pmprogateway_paypalstandard.php:137 +#: adminpages/paymentsettings.php:179 +#: classes/gateways/class.pmprogateway_paypal.php:118 +#: classes/gateways/class.pmprogateway_paypalexpress.php:123 +#: classes/gateways/class.pmprogateway_paypalexpress.php:133 +#: classes/gateways/class.pmprogateway_paypalstandard.php:117 +msgid "We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." +msgstr "Wir empfehlen nicht die Verwendung von PayPal Standard. Wir empfehlen PayPal Express, Website Payments Pro (Legacy), oder PayPal Pro (Payflow Pro). Mehr Informationen über die Gründe finden Sie hier." + +#: classes/gateways/class.pmprogateway_paypal.php:135 +#: classes/gateways/class.pmprogateway_paypalexpress.php:150 +#: classes/gateways/class.pmprogateway_paypalstandard.php:142 +#: adminpages/paymentsettings.php:227 +#: adminpages/paymentsettings.php:231 +#: adminpages/paymentsettings.php:236 +#: classes/gateways/class.pmprogateway_paypal.php:123 +#: classes/gateways/class.pmprogateway_paypalexpress.php:128 +#: classes/gateways/class.pmprogateway_paypalexpress.php:138 +#: classes/gateways/class.pmprogateway_paypalstandard.php:122 +#: classes/gateways/class.pmprogateway_paypal.php:153 +#: classes/gateways/class.pmprogateway_paypalexpress.php:162 +#: classes/gateways/class.pmprogateway_paypalstandard.php:154 +#: classes/gateways/class.pmprogateway_paypalexpress.php:172 +#: classes/gateways/class.pmprogateway_paypalexpress.php:173 +msgid "Gateway Account Email" +msgstr "Zahlungsdienstleister Konto E-Mail" + +#: classes/gateways/class.pmprogateway_paypal.php:143 +#: classes/gateways/class.pmprogateway_paypalexpress.php:158 +#: classes/gateways/class.pmprogateway_paypalstandard.php:150 +#: classes/gateways/class.pmprogateway_twocheckout.php:119 +#: adminpages/paymentsettings.php:235 +#: adminpages/paymentsettings.php:239 +#: adminpages/paymentsettings.php:244 +#: adminpages/paymentsettings.php:331 +#: adminpages/paymentsettings.php:336 +#: classes/gateways/class.pmprogateway_paypal.php:131 +#: classes/gateways/class.pmprogateway_paypalexpress.php:136 +#: classes/gateways/class.pmprogateway_paypalexpress.php:146 +#: classes/gateways/class.pmprogateway_paypalstandard.php:130 +#: classes/gateways/class.pmprogateway_twocheckout.php:113 +#: classes/gateways/class.pmprogateway_twocheckout.php:121 +#: classes/gateways/class.pmprogateway_paypal.php:161 +#: classes/gateways/class.pmprogateway_paypalexpress.php:170 +#: classes/gateways/class.pmprogateway_paypalstandard.php:162 +#: classes/gateways/class.pmprogateway_twocheckout.php:120 +#: classes/gateways/class.pmprogateway_paypalexpress.php:180 +#: classes/gateways/class.pmprogateway_paypalexpress.php:181 +#: classes/gateways/class.pmprogateway_twocheckout.php:127 +msgid "API Username" +msgstr "API Benutzername" + +#: classes/gateways/class.pmprogateway_paypal.php:151 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 +#: classes/gateways/class.pmprogateway_paypalstandard.php:158 +#: classes/gateways/class.pmprogateway_twocheckout.php:128 +#: adminpages/paymentsettings.php:243 +#: adminpages/paymentsettings.php:247 +#: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:339 +#: adminpages/paymentsettings.php:344 +#: classes/gateways/class.pmprogateway_paypal.php:139 +#: classes/gateways/class.pmprogateway_paypalexpress.php:144 +#: classes/gateways/class.pmprogateway_paypalexpress.php:154 +#: classes/gateways/class.pmprogateway_paypalstandard.php:138 +#: classes/gateways/class.pmprogateway_twocheckout.php:121 +#: classes/gateways/class.pmprogateway_twocheckout.php:130 +#: classes/gateways/class.pmprogateway_paypal.php:169 +#: classes/gateways/class.pmprogateway_paypalexpress.php:178 +#: classes/gateways/class.pmprogateway_paypalstandard.php:170 +#: classes/gateways/class.pmprogateway_twocheckout.php:129 +#: classes/gateways/class.pmprogateway_paypalexpress.php:188 +#: classes/gateways/class.pmprogateway_paypalexpress.php:189 +#: classes/gateways/class.pmprogateway_twocheckout.php:136 +msgid "API Password" +msgstr "API Passwort" + +#: classes/gateways/class.pmprogateway_paypal.php:159 +#: classes/gateways/class.pmprogateway_paypalexpress.php:174 +#: classes/gateways/class.pmprogateway_paypalstandard.php:166 +#: adminpages/paymentsettings.php:251 +#: adminpages/paymentsettings.php:255 +#: adminpages/paymentsettings.php:260 +#: classes/gateways/class.pmprogateway_paypal.php:147 +#: classes/gateways/class.pmprogateway_paypalexpress.php:152 +#: classes/gateways/class.pmprogateway_paypalexpress.php:162 +#: classes/gateways/class.pmprogateway_paypalstandard.php:146 +#: classes/gateways/class.pmprogateway_paypal.php:177 +#: classes/gateways/class.pmprogateway_paypalexpress.php:186 +#: classes/gateways/class.pmprogateway_paypalstandard.php:178 +#: classes/gateways/class.pmprogateway_paypalexpress.php:196 +#: classes/gateways/class.pmprogateway_paypalexpress.php:197 +msgid "API Signature" +msgstr "API Signatur" + +#: classes/gateways/class.pmprogateway_paypal.php:167 +#: classes/gateways/class.pmprogateway_paypalexpress.php:182 +#: classes/gateways/class.pmprogateway_paypal.php:185 +#: classes/gateways/class.pmprogateway_paypalexpress.php:194 +#: classes/gateways/class.pmprogateway_paypalexpress.php:204 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 +msgid "Confirmation Step" +msgstr "Bestätigungsschritt" + +#: classes/gateways/class.pmprogateway_paypal.php:178 +#: classes/gateways/class.pmprogateway_paypalexpress.php:193 +#: classes/gateways/class.pmprogateway_paypalstandard.php:174 +#: adminpages/paymentsettings.php:446 +#: adminpages/paymentsettings.php:479 +#: adminpages/paymentsettings.php:485 +#: adminpages/paymentsettings.php:487 +#: classes/gateways/class.pmprogateway_paypal.php:155 +#: classes/gateways/class.pmprogateway_paypalexpress.php:160 +#: classes/gateways/class.pmprogateway_paypalexpress.php:170 +#: classes/gateways/class.pmprogateway_paypalstandard.php:154 +#: classes/gateways/class.pmprogateway_paypal.php:196 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 +#: classes/gateways/class.pmprogateway_paypalstandard.php:186 +#: classes/gateways/class.pmprogateway_paypalexpress.php:215 +#: classes/gateways/class.pmprogateway_paypalexpress.php:216 +msgid "IPN Handler URL" +msgstr "IPN Handler URL" + +#: classes/gateways/class.pmprogateway_paypal.php:181 +#: classes/gateways/class.pmprogateway_paypal.php:158 +msgid "This URL is passed to PayPal for all new charges and subscriptions. You SHOULD NOT set this in your PayPal account settings." +msgstr "Diese URL wird an PayPal für alle neuen Zahlungen und Anmeldungen weitergeleitet. Sie sollten dies NICHT ih Ihren PayPal Kontoeinstellungen einstellen." + +#: classes/gateways/class.pmprogateway_paypal.php:201 +#: classes/gateways/class.pmprogateway_paypalexpress.php:444 +#: classes/gateways/class.pmprogateway_paypalstandard.php:229 +#: pages/checkout.php:263 +#: classes/gateways/class.pmprogateway_paypal.php:178 +#: classes/gateways/class.pmprogateway_paypalexpress.php:402 +#: classes/gateways/class.pmprogateway_paypalexpress.php:412 +#: classes/gateways/class.pmprogateway_paypalexpress.php:438 +#: classes/gateways/class.pmprogateway_paypalstandard.php:201 +#: classes/gateways/class.pmprogateway_paypalstandard.php:202 +#: pages/checkout.php:286 +#: pages/checkout.php:288 +#: pages/checkout.php:295 +#: pages/checkout.php:300 +#: pages/checkout.php:302 +#: pages/checkout.php:309 +#: pages/checkout.php:312 +#: pages/checkout.php:675 +#: pages/checkout.php:682 +#: pages/checkout.php:685 +#: pages/checkout.php:701 +#: classes/gateways/class.pmprogateway_paypal.php:281 +#: classes/gateways/class.pmprogateway_paypalexpress.php:488 +#: classes/gateways/class.pmprogateway_paypalstandard.php:241 +#: pages/checkout.php:218 +#: classes/gateways/class.pmprogateway_paypalexpress.php:498 +#: classes/gateways/class.pmprogateway_paypalexpress.php:503 +msgid "Check Out with PayPal" +msgstr "Zahlung mit PayPal abschließen" + +#: classes/gateways/class.pmprogateway_paypal.php:207 +#: classes/gateways/class.pmprogateway_paypalexpress.php:449 +#: classes/gateways/class.pmprogateway_paypalstandard.php:234 +#: pages/checkout.php:598 +#: classes/gateways/class.pmprogateway_paypal.php:184 +#: classes/gateways/class.pmprogateway_paypalexpress.php:408 +#: classes/gateways/class.pmprogateway_paypalexpress.php:418 +#: classes/gateways/class.pmprogateway_paypalexpress.php:443 +#: classes/gateways/class.pmprogateway_paypalstandard.php:206 +#: classes/gateways/class.pmprogateway_paypalstandard.php:208 +#: pages/checkout.php:681 +#: pages/checkout.php:688 +#: pages/checkout.php:691 +#: pages/checkout.php:704 +#: pages/checkout.php:707 +#: pages/checkout.php:713 +#: pages/checkout.php:718 +#: pages/checkout.php:722 +#: pages/checkout.php:724 +#: pages/checkout.php:725 +#: pages/checkout.php:728 +#: pages/checkout.php:729 +#: classes/gateways/class.pmprogateway_paypal.php:287 +#: classes/gateways/class.pmprogateway_paypalexpress.php:493 +#: classes/gateways/class.pmprogateway_paypalstandard.php:246 +#: pages/checkout.php:526 +#: classes/gateways/class.pmprogateway_paypalexpress.php:503 +#: classes/gateways/class.pmprogateway_paypalexpress.php:508 +#: pages/checkout.php:538 +msgid "Submit and Check Out" +msgstr "Zahlung bestätigen" + +#: classes/gateways/class.pmprogateway_paypal.php:207 +#: classes/gateways/class.pmprogateway_paypalexpress.php:449 +#: classes/gateways/class.pmprogateway_paypalstandard.php:234 +#: classes/gateways/class.pmprogateway_twocheckout.php:203 +#: pages/checkout.php:598 +#: classes/gateways/class.pmprogateway_paypal.php:184 +#: classes/gateways/class.pmprogateway_paypalexpress.php:408 +#: classes/gateways/class.pmprogateway_paypalexpress.php:418 +#: classes/gateways/class.pmprogateway_paypalexpress.php:443 +#: classes/gateways/class.pmprogateway_paypalstandard.php:206 +#: classes/gateways/class.pmprogateway_paypalstandard.php:208 +#: classes/gateways/class.pmprogateway_twocheckout.php:192 +#: classes/gateways/class.pmprogateway_twocheckout.php:214 +#: pages/checkout.php:681 +#: pages/checkout.php:688 +#: pages/checkout.php:691 +#: pages/checkout.php:704 +#: pages/checkout.php:707 +#: pages/checkout.php:713 +#: pages/checkout.php:718 +#: pages/checkout.php:722 +#: pages/checkout.php:724 +#: pages/checkout.php:725 +#: pages/checkout.php:728 +#: pages/checkout.php:729 +#: classes/gateways/class.pmprogateway_paypal.php:287 +#: classes/gateways/class.pmprogateway_paypalexpress.php:493 +#: classes/gateways/class.pmprogateway_paypalstandard.php:246 +#: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: pages/checkout.php:526 +#: classes/gateways/class.pmprogateway_paypalexpress.php:503 +#: classes/gateways/class.pmprogateway_paypalexpress.php:508 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 +#: pages/checkout.php:538 +msgid "Submit and Confirm" +msgstr "Senden und Bestätigen" + +#: classes/gateways/class.pmprogateway_paypal.php:631 +#: classes/gateways/class.pmprogateway_paypalexpress.php:783 +#: classes/gateways/class.pmprogateway_paypalstandard.php:575 +#: classes/gateways/class.pmprogateway_paypal.php:385 +#: classes/gateways/class.pmprogateway_paypal.php:605 +#: classes/gateways/class.pmprogateway_paypal.php:607 +#: classes/gateways/class.pmprogateway_paypal.php:608 +#: classes/gateways/class.pmprogateway_paypalexpress.php:301 +#: classes/gateways/class.pmprogateway_paypalexpress.php:303 +#: classes/gateways/class.pmprogateway_paypalexpress.php:305 +#: classes/gateways/class.pmprogateway_paypalexpress.php:731 +#: classes/gateways/class.pmprogateway_paypalexpress.php:740 +#: classes/gateways/class.pmprogateway_paypalexpress.php:750 +#: classes/gateways/class.pmprogateway_paypalexpress.php:752 +#: classes/gateways/class.pmprogateway_paypalexpress.php:777 +#: classes/gateways/class.pmprogateway_paypalstandard.php:216 +#: classes/gateways/class.pmprogateway_paypalstandard.php:220 +#: classes/gateways/class.pmprogateway_paypalstandard.php:230 +#: classes/gateways/class.pmprogateway_paypalstandard.php:231 +#: classes/gateways/class.pmprogateway_paypalstandard.php:464 +#: classes/gateways/class.pmprogateway_paypalstandard.php:466 +#: classes/gateways/class.pmprogateway_paypal.php:716 +#: classes/gateways/class.pmprogateway_paypalexpress.php:831 +#: classes/gateways/class.pmprogateway_paypalstandard.php:588 +#: classes/gateways/class.pmprogateway_paypalexpress.php:841 +#: classes/gateways/class.pmprogateway_paypal.php:726 +#: classes/gateways/class.pmprogateway_paypalexpress.php:866 +msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward." +msgstr "Bitte kontaktieren Sie den Betreiber der Seite, wenn Sie Ihr Abonemment über PayPal stornieren, um sicherzugehen, dass Ihr PayPal Konto nicht weiterhin belastet wird." + +#: classes/gateways/class.pmprogateway_paypalexpress.php:84 +#: paid-memberships-pro.php:132 +#: classes/gateways/class.pmprogateway_paypalexpress.php:63 +#: classes/gateways/class.pmprogateway_paypalexpress.php:73 +#: paid-memberships-pro.php:118 +#: paid-memberships-pro.php:119 +#: paid-memberships-pro.php:126 +#: paid-memberships-pro.php:127 +#: paid-memberships-pro.php:128 +#: paid-memberships-pro.php:129 +#: paid-memberships-pro.php:130 +#: paid-memberships-pro.php:131 +#: paid-memberships-pro.php:138 +#: paid-memberships-pro.php:160 +#: paid-memberships-pro.php:162 +#: classes/gateways/class.pmprogateway_paypalexpress.php:94 +#: classes/gateways/class.pmprogateway_paypalexpress.php:95 +#: paid-memberships-pro.php:169 +msgid "PayPal Express" +msgstr "PayPal Express" + +#: classes/gateways/class.pmprogateway_paypalexpress.php:196 +#: adminpages/paymentsettings.php:449 +#: adminpages/paymentsettings.php:482 +#: adminpages/paymentsettings.php:488 +#: adminpages/paymentsettings.php:490 +#: classes/gateways/class.pmprogateway_paypalexpress.php:163 +#: classes/gateways/class.pmprogateway_paypalexpress.php:173 +#: classes/gateways/class.pmprogateway_paypal.php:199 +#: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:218 +#: classes/gateways/class.pmprogateway_paypalexpress.php:219 +msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to " +msgstr "Um eine vollständige Integration mit PayPal zu erreichen, müssen Sie die URL Ihres IPN-Handlers auf " + +#: classes/gateways/class.pmprogateway_paypalexpress.php:307 +#: classes/gateways/class.pmprogateway_paypalexpress.php:363 +#: classes/gateways/class.pmprogateway_paypalexpress.php:268 +#: classes/gateways/class.pmprogateway_paypalexpress.php:278 +#: classes/gateways/class.pmprogateway_paypalexpress.php:301 +#: classes/gateways/class.pmprogateway_paypalexpress.php:320 +#: classes/gateways/class.pmprogateway_paypalexpress.php:330 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 +#: preheaders/checkout.php:690 +#: preheaders/checkout.php:697 +#: preheaders/checkout.php:702 +#: preheaders/checkout.php:735 +#: preheaders/checkout.php:750 +#: preheaders/checkout.php:753 +#: preheaders/checkout.php:754 +#: preheaders/checkout.php:757 +#: preheaders/checkout.php:762 +#: preheaders/checkout.php:803 +#: preheaders/checkout.php:822 +#: preheaders/checkout.php:823 +#: classes/gateways/class.pmprogateway_paypalexpress.php:342 +#: classes/gateways/class.pmprogateway_paypalexpress.php:401 +#: classes/gateways/class.pmprogateway_paypalexpress.php:352 +#: classes/gateways/class.pmprogateway_paypalexpress.php:411 +#: classes/gateways/class.pmprogateway_paypalexpress.php:353 +#: classes/gateways/class.pmprogateway_paypalexpress.php:412 +msgid "The PayPal Token was lost." +msgstr "Der PayPal Token ging verloren." + +#: classes/gateways/class.pmprogateway_paypalstandard.php:71 +#: paid-memberships-pro.php:135 +#: classes/gateways/class.pmprogateway_paypalstandard.php:60 +#: paid-memberships-pro.php:121 +#: paid-memberships-pro.php:122 +#: paid-memberships-pro.php:129 +#: paid-memberships-pro.php:130 +#: paid-memberships-pro.php:131 +#: paid-memberships-pro.php:132 +#: paid-memberships-pro.php:133 +#: paid-memberships-pro.php:134 +#: paid-memberships-pro.php:141 +#: paid-memberships-pro.php:163 +#: paid-memberships-pro.php:165 +#: paid-memberships-pro.php:172 +msgid "PayPal Standard" +msgstr "PayPal Standard" + +#: classes/gateways/class.pmprogateway_paypalstandard.php:177 +#: classes/gateways/class.pmprogateway_paypalstandard.php:157 +#: classes/gateways/class.pmprogateway_paypalstandard.php:189 +msgid "Here is your IPN URL for reference. You SHOULD NOT set this in your PayPal settings." +msgstr "Hier ist Ihre IPN URL als Referenz. Sie sollten diese NICHT in Ihren PayPal-Einstellungen angeben." + +#: classes/gateways/class.pmprogateway_paypalstandard.php:559 +#: classes/gateways/class.pmprogateway_paypalstandard.php:572 +msgid "User requested cancellation" +msgstr "Benutzer verlangte Kündigung" + +#: classes/gateways/class.pmprogateway_stripe.php:201 +#: paid-memberships-pro.php:131 +#: classes/gateways/class.pmprogateway_stripe.php:93 +#: classes/gateways/class.pmprogateway_stripe.php:94 +#: classes/gateways/class.pmprogateway_stripe.php:104 +#: classes/gateways/class.pmprogateway_stripe.php:126 +#: classes/gateways/class.pmprogateway_stripe.php:128 +#: classes/gateways/class.pmprogateway_stripe.php:129 +#: classes/gateways/class.pmprogateway_stripe.php:140 +#: classes/gateways/class.pmprogateway_stripe.php:142 +#: classes/gateways/class.pmprogateway_stripe.php:169 +#: paid-memberships-pro.php:117 +#: paid-memberships-pro.php:118 +#: paid-memberships-pro.php:125 +#: paid-memberships-pro.php:126 +#: paid-memberships-pro.php:127 +#: paid-memberships-pro.php:128 +#: paid-memberships-pro.php:129 +#: paid-memberships-pro.php:130 +#: paid-memberships-pro.php:137 +#: classes/gateways/class.pmprogateway_stripe.php:252 +#: paid-memberships-pro.php:159 +#: paid-memberships-pro.php:161 +#: classes/gateways/class.pmprogateway_stripe.php:258 +#: classes/gateways/class.pmprogateway_stripe.php:234 +#: paid-memberships-pro.php:168 +msgid "Stripe" +msgstr "Stripe" + +#: classes/gateways/class.pmprogateway_stripe.php:256 +#: classes/gateways/class.pmprogateway_stripe.php:148 +#: classes/gateways/class.pmprogateway_stripe.php:149 +#: classes/gateways/class.pmprogateway_stripe.php:159 +#: classes/gateways/class.pmprogateway_stripe.php:181 +#: classes/gateways/class.pmprogateway_stripe.php:183 +#: classes/gateways/class.pmprogateway_stripe.php:184 +#: classes/gateways/class.pmprogateway_stripe.php:195 +#: classes/gateways/class.pmprogateway_stripe.php:197 +#: classes/gateways/class.pmprogateway_stripe.php:224 +msgid "Stripe Settings" +msgstr "Stripe Einstellungen" + +#: classes/gateways/class.pmprogateway_stripe.php:261 +#: adminpages/paymentsettings.php:285 +#: adminpages/paymentsettings.php:289 +#: adminpages/paymentsettings.php:294 +#: classes/gateways/class.pmprogateway_stripe.php:161 +#: classes/gateways/class.pmprogateway_stripe.php:162 +#: classes/gateways/class.pmprogateway_stripe.php:172 +#: classes/gateways/class.pmprogateway_stripe.php:194 +#: classes/gateways/class.pmprogateway_stripe.php:196 +#: classes/gateways/class.pmprogateway_stripe.php:197 +#: classes/gateways/class.pmprogateway_stripe.php:208 +#: classes/gateways/class.pmprogateway_stripe.php:210 +#: classes/gateways/class.pmprogateway_stripe.php:237 +#: classes/gateways/class.pmprogateway_stripe.php:269 +#: classes/gateways/class.pmprogateway_stripe.php:523 +#: classes/gateways/class.pmprogateway_stripe.php:535 +#: classes/gateways/class.pmprogateway_stripe.php:554 +#: classes/gateways/class.pmprogateway_stripe.php:560 +#: classes/gateways/class.pmprogateway_stripe.php:350 +msgid "Publishable Key" +msgstr "Publishable Key" + +#: classes/gateways/class.pmprogateway_stripe.php:269 +#: classes/gateways/class.pmprogateway_stripe.php:531 +#: classes/gateways/class.pmprogateway_stripe.php:543 +#: classes/gateways/class.pmprogateway_stripe.php:562 +#: classes/gateways/class.pmprogateway_stripe.php:568 +#: classes/gateways/class.pmprogateway_stripe.php:358 +msgid "Your Publishable Key appears incorrect." +msgstr "Ihr veröffentlichbarer Schlüssel scheint falsch zu sein." + +#: classes/gateways/class.pmprogateway_stripe.php:277 +#: adminpages/paymentsettings.php:277 +#: adminpages/paymentsettings.php:281 +#: adminpages/paymentsettings.php:286 +#: classes/gateways/class.pmprogateway_stripe.php:153 +#: classes/gateways/class.pmprogateway_stripe.php:154 +#: classes/gateways/class.pmprogateway_stripe.php:164 +#: classes/gateways/class.pmprogateway_stripe.php:186 +#: classes/gateways/class.pmprogateway_stripe.php:188 +#: classes/gateways/class.pmprogateway_stripe.php:189 +#: classes/gateways/class.pmprogateway_stripe.php:200 +#: classes/gateways/class.pmprogateway_stripe.php:202 +#: classes/gateways/class.pmprogateway_stripe.php:229 +#: classes/gateways/class.pmprogateway_stripe.php:261 +#: classes/gateways/class.pmprogateway_stripe.php:539 +#: classes/gateways/class.pmprogateway_stripe.php:551 +#: classes/gateways/class.pmprogateway_stripe.php:570 +#: classes/gateways/class.pmprogateway_stripe.php:576 +#: classes/gateways/class.pmprogateway_stripe.php:366 +msgid "Secret Key" +msgstr "Secret Key" + +#: classes/gateways/class.pmprogateway_stripe.php:285 +#: adminpages/paymentsettings.php:425 +#: adminpages/paymentsettings.php:430 +#: adminpages/paymentsettings.php:432 +#: classes/gateways/class.pmprogateway_stripe.php:169 +#: classes/gateways/class.pmprogateway_stripe.php:170 +#: classes/gateways/class.pmprogateway_stripe.php:180 +#: classes/gateways/class.pmprogateway_stripe.php:202 +#: classes/gateways/class.pmprogateway_stripe.php:204 +#: classes/gateways/class.pmprogateway_stripe.php:205 +#: classes/gateways/class.pmprogateway_stripe.php:216 +#: classes/gateways/class.pmprogateway_stripe.php:218 +#: classes/gateways/class.pmprogateway_stripe.php:245 +#: classes/gateways/class.pmprogateway_stripe.php:277 +#: classes/gateways/class.pmprogateway_stripe.php:293 +#: classes/gateways/class.pmprogateway_stripe.php:294 +#: classes/gateways/class.pmprogateway_stripe.php:598 +#: classes/gateways/class.pmprogateway_stripe.php:610 +#: classes/gateways/class.pmprogateway_stripe.php:629 +#: classes/gateways/class.pmprogateway_stripe.php:635 +#: adminpages/orders.php:570 +#: classes/gateways/class.pmprogateway_stripe.php:425 +msgid "Show Billing Address Fields" +msgstr "Felder für Rechnungsadresse anzeigen" + +#: classes/gateways/class.pmprogateway_stripe.php:292 +#: adminpages/paymentsettings.php:437 +#: adminpages/paymentsettings.php:439 +#: classes/gateways/class.pmprogateway_stripe.php:176 +#: classes/gateways/class.pmprogateway_stripe.php:177 +#: classes/gateways/class.pmprogateway_stripe.php:187 +#: classes/gateways/class.pmprogateway_stripe.php:209 +#: classes/gateways/class.pmprogateway_stripe.php:211 +#: classes/gateways/class.pmprogateway_stripe.php:212 +#: classes/gateways/class.pmprogateway_stripe.php:223 +#: classes/gateways/class.pmprogateway_stripe.php:225 +#: classes/gateways/class.pmprogateway_stripe.php:252 +#: classes/gateways/class.pmprogateway_stripe.php:284 +#: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:301 +#: classes/gateways/class.pmprogateway_stripe.php:607 +#: classes/gateways/class.pmprogateway_stripe.php:619 +#: classes/gateways/class.pmprogateway_stripe.php:638 +#: classes/gateways/class.pmprogateway_stripe.php:644 +#: classes/gateways/class.pmprogateway_stripe.php:434 +msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.
If No, make sure you disable address verification in the Stripe dashboard settings." +msgstr "Stripe erfordert keine Adressangaben. Wählen Sie 'Nein' um die entsprechenden Felder auf den Checkout-Seiten zu verbergen.
Wenn Sie Nein auswählen, stellen Sie sicher, dass Sie die Adresen-Verifizierung in den Stripe Dashboard Settings deaktivieren." + +#: classes/gateways/class.pmprogateway_stripe.php:300 +#: adminpages/paymentsettings.php:465 +#: adminpages/paymentsettings.php:506 +#: adminpages/paymentsettings.php:512 +#: adminpages/paymentsettings.php:514 +#: classes/gateways/class.pmprogateway_stripe.php:184 +#: classes/gateways/class.pmprogateway_stripe.php:185 +#: classes/gateways/class.pmprogateway_stripe.php:195 +#: classes/gateways/class.pmprogateway_stripe.php:217 +#: classes/gateways/class.pmprogateway_stripe.php:219 +#: classes/gateways/class.pmprogateway_stripe.php:220 +#: classes/gateways/class.pmprogateway_stripe.php:231 +#: classes/gateways/class.pmprogateway_stripe.php:233 +#: classes/gateways/class.pmprogateway_stripe.php:260 +#: classes/gateways/class.pmprogateway_stripe.php:292 +#: classes/gateways/class.pmprogateway_stripe.php:308 +#: classes/gateways/class.pmprogateway_stripe.php:309 +msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to" +msgstr "Um Stripe vollständig zu integrieren, stellen Sie Ihre Web Hook URL auf " + +#: classes/gateways/class.pmprogateway_stripe.php:646 +#: pages/checkout.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:638 +#: classes/gateways/class.pmprogateway_stripe.php:654 +#: classes/gateways/class.pmprogateway_stripe.php:655 +#: pages/checkout.php:424 +msgid "Security Code (CVC)" +msgstr "Kartenprüfnummer (CVC)" + +#: classes/gateways/class.pmprogateway_stripe.php:718 +#: classes/gateways/class.pmprogateway_stripe.php:703 +#: classes/gateways/class.pmprogateway_stripe.php:710 +#: classes/gateways/class.pmprogateway_stripe.php:726 +#: classes/gateways/class.pmprogateway_stripe.php:727 +#: classes/gateways/class.pmprogateway_stripe.php:1374 +#: classes/gateways/class.pmprogateway_stripe.php:1386 +#: classes/gateways/class.pmprogateway_stripe.php:1405 +#: classes/gateways/class.pmprogateway_stripe.php:1411 +#, php-format +msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted." +msgstr "%1$sHinweis:%2$s Abonnement %3$s%4$s%5$s konnte bei Stripe nicht gefunden werden. Es wurde möglicherweise gelöscht." + +#: classes/gateways/class.pmprogateway_stripe.php:725 +#: classes/gateways/class.pmprogateway_stripe.php:567 +#: classes/gateways/class.pmprogateway_stripe.php:568 +#: classes/gateways/class.pmprogateway_stripe.php:578 +#: classes/gateways/class.pmprogateway_stripe.php:582 +#: classes/gateways/class.pmprogateway_stripe.php:608 +#: classes/gateways/class.pmprogateway_stripe.php:612 +#: classes/gateways/class.pmprogateway_stripe.php:613 +#: classes/gateways/class.pmprogateway_stripe.php:616 +#: classes/gateways/class.pmprogateway_stripe.php:634 +#: classes/gateways/class.pmprogateway_stripe.php:645 +#: classes/gateways/class.pmprogateway_stripe.php:683 +#: classes/gateways/class.pmprogateway_stripe.php:710 +#: classes/gateways/class.pmprogateway_stripe.php:717 +#: classes/gateways/class.pmprogateway_stripe.php:733 +#: classes/gateways/class.pmprogateway_stripe.php:734 +#: classes/gateways/class.pmprogateway_stripe.php:1379 +#: classes/gateways/class.pmprogateway_stripe.php:1391 +#: classes/gateways/class.pmprogateway_stripe.php:1410 +#: classes/gateways/class.pmprogateway_stripe.php:1416 +#: classes/gateways/class.pmprogateway_stripe.php:3101 +msgid "Subscription Updates" +msgstr "Abonnement-Updates" + +#: classes/gateways/class.pmprogateway_stripe.php:729 +#: classes/gateways/class.pmprogateway_stripe.php:571 +#: classes/gateways/class.pmprogateway_stripe.php:572 +#: classes/gateways/class.pmprogateway_stripe.php:582 +#: classes/gateways/class.pmprogateway_stripe.php:586 +#: classes/gateways/class.pmprogateway_stripe.php:612 +#: classes/gateways/class.pmprogateway_stripe.php:616 +#: classes/gateways/class.pmprogateway_stripe.php:617 +#: classes/gateways/class.pmprogateway_stripe.php:620 +#: classes/gateways/class.pmprogateway_stripe.php:638 +#: classes/gateways/class.pmprogateway_stripe.php:649 +#: classes/gateways/class.pmprogateway_stripe.php:687 +#: classes/gateways/class.pmprogateway_stripe.php:714 +#: classes/gateways/class.pmprogateway_stripe.php:721 +#: classes/gateways/class.pmprogateway_stripe.php:737 +#: classes/gateways/class.pmprogateway_stripe.php:738 +#: classes/gateways/class.pmprogateway_stripe.php:1383 +#: classes/gateways/class.pmprogateway_stripe.php:1395 +#: classes/gateways/class.pmprogateway_stripe.php:1414 +#: classes/gateways/class.pmprogateway_stripe.php:1420 +msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes." +msgstr "Mit Abonnement-Updates können Sie die Abonnementwerte des Mitglieds zu vordefinierten Zeiten ändern. Achten Sie darauf, nach dem Vornehmen von Änderungen auf Profil aktualisieren zu klicken." + +#: classes/gateways/class.pmprogateway_stripe.php:731 +#: classes/gateways/class.pmprogateway_stripe.php:573 +#: classes/gateways/class.pmprogateway_stripe.php:574 +#: classes/gateways/class.pmprogateway_stripe.php:584 +#: classes/gateways/class.pmprogateway_stripe.php:588 +#: classes/gateways/class.pmprogateway_stripe.php:614 +#: classes/gateways/class.pmprogateway_stripe.php:618 +#: classes/gateways/class.pmprogateway_stripe.php:619 +#: classes/gateways/class.pmprogateway_stripe.php:622 +#: classes/gateways/class.pmprogateway_stripe.php:640 +#: classes/gateways/class.pmprogateway_stripe.php:651 +#: classes/gateways/class.pmprogateway_stripe.php:689 +#: classes/gateways/class.pmprogateway_stripe.php:716 +#: classes/gateways/class.pmprogateway_stripe.php:723 +#: classes/gateways/class.pmprogateway_stripe.php:739 +#: classes/gateways/class.pmprogateway_stripe.php:740 +#: classes/gateways/class.pmprogateway_stripe.php:1385 +#: classes/gateways/class.pmprogateway_stripe.php:1397 +#: classes/gateways/class.pmprogateway_stripe.php:1416 +#: classes/gateways/class.pmprogateway_stripe.php:1422 +msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes." +msgstr "Mit Abonnement-Updates können Sie die Abonnementwerte des Mitglieds zu vordefinierten Zeiten ändern. Vergewissern Sie sich, dass Sie nach der Durchführung von Änderungen auf Benutzer aktualisieren klicken." + +#: classes/gateways/class.pmprogateway_stripe.php:736 +#: pages/billing.php:362 +#: classes/gateways/class.pmprogateway_stripe.php:578 +#: classes/gateways/class.pmprogateway_stripe.php:579 +#: classes/gateways/class.pmprogateway_stripe.php:589 +#: classes/gateways/class.pmprogateway_stripe.php:593 +#: classes/gateways/class.pmprogateway_stripe.php:619 +#: classes/gateways/class.pmprogateway_stripe.php:623 +#: classes/gateways/class.pmprogateway_stripe.php:624 +#: classes/gateways/class.pmprogateway_stripe.php:627 +#: classes/gateways/class.pmprogateway_stripe.php:645 +#: classes/gateways/class.pmprogateway_stripe.php:656 +#: classes/gateways/class.pmprogateway_stripe.php:694 +#: classes/gateways/class.pmprogateway_stripe.php:721 +#: classes/gateways/class.pmprogateway_stripe.php:728 +#: classes/gateways/class.pmprogateway_stripe.php:744 +#: classes/gateways/class.pmprogateway_stripe.php:745 +#: pages/billing.php:294 +#: pages/billing.php:298 +#: pages/billing.php:329 +#: pages/billing.php:338 +#: pages/billing.php:341 +#: pages/billing.php:343 +#: pages/billing.php:347 +#: pages/billing.php:363 +#: pages/billing.php:364 +#: pages/billing.php:370 +#: pages/billing.php:391 +#: pages/billing.php:396 +#: pages/billing.php:400 +#: pages/billing.php:405 +#: classes/gateways/class.pmprogateway_stripe.php:1391 +#: pages/billing.php:425 +#: classes/gateways/class.pmprogateway_stripe.php:1403 +#: classes/gateways/class.pmprogateway_stripe.php:1422 +#: classes/gateways/class.pmprogateway_stripe.php:1428 +#: classes/gateways/class.pmprogateway_stripe.php:3106 +#: pages/billing.php:441 +msgid "Update" +msgstr "Aktualisieren" + +#: classes/gateways/class.pmprogateway_stripe.php:1127 +#: classes/gateways/class.pmprogateway_stripe.php:1119 +#: classes/gateways/class.pmprogateway_stripe.php:1135 +#: classes/gateways/class.pmprogateway_stripe.php:1136 +#: classes/gateways/class.pmprogateway_stripe.php:1172 +msgid "Payment error: Please contact the webmaster (stripe-load-error)" +msgstr "Zahlungsfehler: Bitte kontaktieren Sie den Webmaster (stripe-load-error)" + +#: classes/gateways/class.pmprogateway_stripe.php:1365 +#: classes/gateways/class.pmprogateway_stripe.php:190 +#: classes/gateways/class.pmprogateway_stripe.php:192 +#: classes/gateways/class.pmprogateway_stripe.php:199 +#: classes/gateways/class.pmprogateway_stripe.php:201 +#: classes/gateways/class.pmprogateway_stripe.php:1187 +#: classes/gateways/class.pmprogateway_stripe.php:1188 +#: classes/gateways/class.pmprogateway_stripe.php:1202 +#: classes/gateways/class.pmprogateway_stripe.php:1203 +#: classes/gateways/class.pmprogateway_stripe.php:1204 +#: classes/gateways/class.pmprogateway_stripe.php:1214 +#: classes/gateways/class.pmprogateway_stripe.php:1218 +#: classes/gateways/class.pmprogateway_stripe.php:1246 +#: classes/gateways/class.pmprogateway_stripe.php:1256 +#: classes/gateways/class.pmprogateway_stripe.php:1260 +#: classes/gateways/class.pmprogateway_stripe.php:1300 +#: classes/gateways/class.pmprogateway_stripe.php:1303 +#: classes/gateways/class.pmprogateway_stripe.php:1325 +#: classes/gateways/class.pmprogateway_stripe.php:1326 +#: classes/gateways/class.pmprogateway_stripe.php:1336 +#: classes/gateways/class.pmprogateway_stripe.php:1357 +#: classes/gateways/class.pmprogateway_stripe.php:1373 +#: classes/gateways/class.pmprogateway_stripe.php:1374 +#: classes/gateways/class.pmprogateway_stripe.php:1410 +#: classes/gateways/class.pmprogateway_stripe.php:2096 +#: classes/gateways/class.pmprogateway_stripe.php:2101 +#: classes/gateways/class.pmprogateway_stripe.php:2106 +#: classes/gateways/class.pmprogateway_stripe.php:2108 +#: classes/gateways/class.pmprogateway_stripe.php:2113 +#: classes/gateways/class.pmprogateway_stripe.php:2118 +#: classes/gateways/class.pmprogateway_stripe.php:2127 +#: classes/gateways/class.pmprogateway_stripe.php:2132 +#: classes/gateways/class.pmprogateway_stripe.php:2137 +#: classes/gateways/class.pmprogateway_stripe.php:2133 +#: classes/gateways/class.pmprogateway_stripe.php:2138 +#: classes/gateways/class.pmprogateway_stripe.php:2143 +msgid "Error creating customer record with Stripe:" +msgstr "Stripe meldet einen Fehler bei der Erstellung des Kunden-Satzes:" + +#: classes/gateways/class.pmprogateway_stripe.php:1424 +#: classes/gateways/class.pmprogateway_stripe.php:1275 +#: classes/gateways/class.pmprogateway_stripe.php:1303 +#: classes/gateways/class.pmprogateway_stripe.php:1313 +#: classes/gateways/class.pmprogateway_stripe.php:1317 +#: classes/gateways/class.pmprogateway_stripe.php:1357 +#: classes/gateways/class.pmprogateway_stripe.php:1360 +#: classes/gateways/class.pmprogateway_stripe.php:1384 +#: classes/gateways/class.pmprogateway_stripe.php:1385 +#: classes/gateways/class.pmprogateway_stripe.php:1395 +#: classes/gateways/class.pmprogateway_stripe.php:1416 +#: classes/gateways/class.pmprogateway_stripe.php:1432 +#: classes/gateways/class.pmprogateway_stripe.php:1433 +#: classes/gateways/class.pmprogateway_stripe.php:1469 +#: classes/gateways/class.pmprogateway_stripe.php:2165 +#: classes/gateways/class.pmprogateway_stripe.php:2170 +#: classes/gateways/class.pmprogateway_stripe.php:2177 +#: classes/gateways/class.pmprogateway_stripe.php:2182 +#: classes/gateways/class.pmprogateway_stripe.php:2196 +#: classes/gateways/class.pmprogateway_stripe.php:2201 +#: classes/gateways/class.pmprogateway_stripe.php:2202 +#: classes/gateways/class.pmprogateway_stripe.php:2207 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 +msgid "Error getting subscription with Stripe:" +msgstr "Fehler beim Anlegen des Abonnements in Stripe:" + +#: classes/gateways/class.pmprogateway_stripe.php:1580 +#: classes/gateways/class.pmprogateway_stripe.php:278 +#: classes/gateways/class.pmprogateway_stripe.php:279 +#: classes/gateways/class.pmprogateway_stripe.php:286 +#: classes/gateways/class.pmprogateway_stripe.php:302 +#: classes/gateways/class.pmprogateway_stripe.php:308 +#: classes/gateways/class.pmprogateway_stripe.php:311 +#: classes/gateways/class.pmprogateway_stripe.php:1244 +#: classes/gateways/class.pmprogateway_stripe.php:1245 +#: classes/gateways/class.pmprogateway_stripe.php:1259 +#: classes/gateways/class.pmprogateway_stripe.php:1260 +#: classes/gateways/class.pmprogateway_stripe.php:1261 +#: classes/gateways/class.pmprogateway_stripe.php:1271 +#: classes/gateways/class.pmprogateway_stripe.php:1390 +#: classes/gateways/class.pmprogateway_stripe.php:1391 +#: classes/gateways/class.pmprogateway_stripe.php:1409 +#: classes/gateways/class.pmprogateway_stripe.php:1410 +#: classes/gateways/class.pmprogateway_stripe.php:1411 +#: classes/gateways/class.pmprogateway_stripe.php:1421 +#: classes/gateways/class.pmprogateway_stripe.php:1425 +#: classes/gateways/class.pmprogateway_stripe.php:1453 +#: classes/gateways/class.pmprogateway_stripe.php:1463 +#: classes/gateways/class.pmprogateway_stripe.php:1467 +#: classes/gateways/class.pmprogateway_stripe.php:1507 +#: classes/gateways/class.pmprogateway_stripe.php:1510 +#: classes/gateways/class.pmprogateway_stripe.php:1540 +#: classes/gateways/class.pmprogateway_stripe.php:1541 +#: classes/gateways/class.pmprogateway_stripe.php:1551 +#: classes/gateways/class.pmprogateway_stripe.php:1572 +#: classes/gateways/class.pmprogateway_stripe.php:1588 +#: classes/gateways/class.pmprogateway_stripe.php:1589 +#: classes/gateways/class.pmprogateway_stripe.php:1625 +#: classes/gateways/class.pmprogateway_stripe.php:2339 +#: classes/gateways/class.pmprogateway_stripe.php:2344 +#: classes/gateways/class.pmprogateway_stripe.php:2351 +#: classes/gateways/class.pmprogateway_stripe.php:2356 +#: classes/gateways/class.pmprogateway_stripe.php:2373 +#: classes/gateways/class.pmprogateway_stripe.php:2378 +#: classes/gateways/class.pmprogateway_stripe.php:2379 +#: classes/gateways/class.pmprogateway_stripe.php:2384 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 +msgid "Error creating plan with Stripe:" +msgstr "Fehler beim Erstellen eines Tarifs mit Stripe:" + +#: classes/gateways/class.pmprogateway_stripe.php:1611 +#: classes/gateways/class.pmprogateway_stripe.php:294 +#: classes/gateways/class.pmprogateway_stripe.php:295 +#: classes/gateways/class.pmprogateway_stripe.php:302 +#: classes/gateways/class.pmprogateway_stripe.php:318 +#: classes/gateways/class.pmprogateway_stripe.php:324 +#: classes/gateways/class.pmprogateway_stripe.php:330 +#: classes/gateways/class.pmprogateway_stripe.php:1420 +#: classes/gateways/class.pmprogateway_stripe.php:1421 +#: classes/gateways/class.pmprogateway_stripe.php:1422 +#: classes/gateways/class.pmprogateway_stripe.php:1440 +#: classes/gateways/class.pmprogateway_stripe.php:1441 +#: classes/gateways/class.pmprogateway_stripe.php:1442 +#: classes/gateways/class.pmprogateway_stripe.php:1452 +#: classes/gateways/class.pmprogateway_stripe.php:1456 +#: classes/gateways/class.pmprogateway_stripe.php:1484 +#: classes/gateways/class.pmprogateway_stripe.php:1494 +#: classes/gateways/class.pmprogateway_stripe.php:1498 +#: classes/gateways/class.pmprogateway_stripe.php:1538 +#: classes/gateways/class.pmprogateway_stripe.php:1541 +#: classes/gateways/class.pmprogateway_stripe.php:1571 +#: classes/gateways/class.pmprogateway_stripe.php:1572 +#: classes/gateways/class.pmprogateway_stripe.php:1582 +#: classes/gateways/class.pmprogateway_stripe.php:1603 +#: classes/gateways/class.pmprogateway_stripe.php:1619 +#: classes/gateways/class.pmprogateway_stripe.php:1620 +#: classes/gateways/class.pmprogateway_stripe.php:1656 +#: classes/gateways/class.pmprogateway_stripe.php:2375 +#: classes/gateways/class.pmprogateway_stripe.php:2389 +#: classes/gateways/class.pmprogateway_stripe.php:2387 +#: classes/gateways/class.pmprogateway_stripe.php:2401 +#: classes/gateways/class.pmprogateway_stripe.php:2409 +#: classes/gateways/class.pmprogateway_stripe.php:2423 +#: classes/gateways/class.pmprogateway_stripe.php:2415 +#: classes/gateways/class.pmprogateway_stripe.php:2429 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 +msgid "Error subscribing customer to plan with Stripe:" +msgstr "Stripe meldet einen Fehler beim Einrichten des Abos für den Kunden:" + +#: classes/gateways/class.pmprogateway_stripe.php:1706 +#: classes/gateways/class.pmprogateway_stripe.php:769 +#: classes/gateways/class.pmprogateway_stripe.php:770 +#: classes/gateways/class.pmprogateway_stripe.php:780 +#: classes/gateways/class.pmprogateway_stripe.php:784 +#: classes/gateways/class.pmprogateway_stripe.php:812 +#: classes/gateways/class.pmprogateway_stripe.php:816 +#: classes/gateways/class.pmprogateway_stripe.php:817 +#: classes/gateways/class.pmprogateway_stripe.php:820 +#: classes/gateways/class.pmprogateway_stripe.php:838 +#: classes/gateways/class.pmprogateway_stripe.php:849 +#: classes/gateways/class.pmprogateway_stripe.php:887 +#: classes/gateways/class.pmprogateway_stripe.php:914 +#: classes/gateways/class.pmprogateway_stripe.php:1698 +#: classes/gateways/class.pmprogateway_stripe.php:1714 +#: classes/gateways/class.pmprogateway_stripe.php:1715 +#: classes/gateways/class.pmprogateway_stripe.php:2480 +#: classes/gateways/class.pmprogateway_stripe.php:2492 +#: classes/gateways/class.pmprogateway_stripe.php:2514 +#: classes/gateways/class.pmprogateway_stripe.php:2520 +#: classes/gateways/class.pmprogateway_stripe.php:3504 +msgid "Could not cancel the old subscription. Updates have not been processed." +msgstr "Die alte Mitgliedschaft konnte nicht gekündigt werden. Aktualisierungen wurden nicht durchgeführt." + +#: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:383 +#: classes/gateways/class.pmprogateway_stripe.php:389 +#: classes/gateways/class.pmprogateway_stripe.php:410 +#: classes/gateways/class.pmprogateway_stripe.php:1516 +#: classes/gateways/class.pmprogateway_stripe.php:1517 +#: classes/gateways/class.pmprogateway_stripe.php:1518 +#: classes/gateways/class.pmprogateway_stripe.php:1536 +#: classes/gateways/class.pmprogateway_stripe.php:1537 +#: classes/gateways/class.pmprogateway_stripe.php:1538 +#: classes/gateways/class.pmprogateway_stripe.php:1548 +#: classes/gateways/class.pmprogateway_stripe.php:1552 +#: classes/gateways/class.pmprogateway_stripe.php:1580 +#: classes/gateways/class.pmprogateway_stripe.php:1590 +#: classes/gateways/class.pmprogateway_stripe.php:1594 +#: classes/gateways/class.pmprogateway_stripe.php:1634 +#: classes/gateways/class.pmprogateway_stripe.php:1637 +#: classes/gateways/class.pmprogateway_stripe.php:1667 +#: classes/gateways/class.pmprogateway_stripe.php:1668 +#: classes/gateways/class.pmprogateway_stripe.php:1678 +#: classes/gateways/class.pmprogateway_stripe.php:1716 +#: classes/gateways/class.pmprogateway_stripe.php:1752 +#: classes/gateways/class.pmprogateway_stripe.php:1801 +#: classes/gateways/class.pmprogateway_stripe.php:1817 +#: classes/gateways/class.pmprogateway_stripe.php:1818 +#: classes/gateways/class.pmprogateway_stripe.php:2632 +#: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:2666 +#: classes/gateways/class.pmprogateway_stripe.php:2672 +#: classes/gateways/class.pmprogateway_stripe.php:2148 +msgid "Could not cancel old subscription." +msgstr "Das alte Abonnement konnte nicht storniert werden." + +#: classes/gateways/class.pmprogateway_stripe.php:1826 +#: classes/gateways/class.pmprogateway_stripe.php:1533 +#: classes/gateways/class.pmprogateway_stripe.php:1534 +#: classes/gateways/class.pmprogateway_stripe.php:1535 +#: classes/gateways/class.pmprogateway_stripe.php:1553 +#: classes/gateways/class.pmprogateway_stripe.php:1554 +#: classes/gateways/class.pmprogateway_stripe.php:1555 +#: classes/gateways/class.pmprogateway_stripe.php:1565 +#: classes/gateways/class.pmprogateway_stripe.php:1569 +#: classes/gateways/class.pmprogateway_stripe.php:1597 +#: classes/gateways/class.pmprogateway_stripe.php:1607 +#: classes/gateways/class.pmprogateway_stripe.php:1611 +#: classes/gateways/class.pmprogateway_stripe.php:1651 +#: classes/gateways/class.pmprogateway_stripe.php:1654 +#: classes/gateways/class.pmprogateway_stripe.php:1684 +#: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1695 +#: classes/gateways/class.pmprogateway_stripe.php:1733 +#: classes/gateways/class.pmprogateway_stripe.php:1769 +#: classes/gateways/class.pmprogateway_stripe.php:1818 +#: classes/gateways/class.pmprogateway_stripe.php:1834 +#: classes/gateways/class.pmprogateway_stripe.php:1835 +#: classes/gateways/class.pmprogateway_stripe.php:2648 +#: classes/gateways/class.pmprogateway_stripe.php:2660 +#: classes/gateways/class.pmprogateway_stripe.php:2682 +#: classes/gateways/class.pmprogateway_stripe.php:2688 +#: classes/gateways/class.pmprogateway_stripe.php:2164 +msgid "Could not find the customer." +msgstr "Konnte den Kunden nicht finden." + +#: classes/gateways/class.pmprogateway_stripe.php:1986 +#: classes/gateways/class.pmprogateway_stripe.php:1836 +#: classes/gateways/class.pmprogateway_stripe.php:1837 +#: classes/gateways/class.pmprogateway_stripe.php:1847 +#: classes/gateways/class.pmprogateway_stripe.php:1885 +#: classes/gateways/class.pmprogateway_stripe.php:1921 +#: classes/gateways/class.pmprogateway_stripe.php:1978 +#: classes/gateways/class.pmprogateway_stripe.php:1994 +#: classes/gateways/class.pmprogateway_stripe.php:1995 +#: classes/gateways/class.pmprogateway_stripe.php:2816 +#: classes/gateways/class.pmprogateway_stripe.php:2822 +#: classes/gateways/class.pmprogateway_stripe.php:2828 +#: classes/gateways/class.pmprogateway_stripe.php:2834 +#: classes/gateways/class.pmprogateway_stripe.php:2850 +#: classes/gateways/class.pmprogateway_stripe.php:2856 +#: classes/gateways/class.pmprogateway_stripe.php:2862 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 +msgid "Error: " +msgstr "Fehler:" + +#: classes/gateways/class.pmprogateway_stripe.php:1999 +#: classes/gateways/class.pmprogateway_stripe.php:1849 +#: classes/gateways/class.pmprogateway_stripe.php:1850 +#: classes/gateways/class.pmprogateway_stripe.php:1860 +#: classes/gateways/class.pmprogateway_stripe.php:1898 +#: classes/gateways/class.pmprogateway_stripe.php:1934 +#: classes/gateways/class.pmprogateway_stripe.php:1991 +#: classes/gateways/class.pmprogateway_stripe.php:2007 +#: classes/gateways/class.pmprogateway_stripe.php:2008 +#: classes/gateways/class.pmprogateway_stripe.php:2836 +#: classes/gateways/class.pmprogateway_stripe.php:2848 +#: classes/gateways/class.pmprogateway_stripe.php:2870 +#: classes/gateways/class.pmprogateway_stripe.php:2876 +#: classes/gateways/class.pmprogateway_stripe.php:4892 +#, php-format +msgid "Error: Unkown error while refunding charge #%s" +msgstr "Fehler: Unbekannter Fehler bei der Erstattung der Zahlung Nummer%s" + +#: classes/gateways/class.pmprogateway_twocheckout.php:59 +#: paid-memberships-pro.php:138 +#: classes/gateways/class.pmprogateway_twocheckout.php:53 +#: classes/gateways/class.pmprogateway_twocheckout.php:60 +#: paid-memberships-pro.php:124 +#: paid-memberships-pro.php:125 +#: paid-memberships-pro.php:132 +#: paid-memberships-pro.php:133 +#: paid-memberships-pro.php:134 +#: paid-memberships-pro.php:135 +#: paid-memberships-pro.php:136 +#: paid-memberships-pro.php:137 +#: paid-memberships-pro.php:144 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 +msgid "2Checkout" +msgstr "2Checkout" + +#: classes/gateways/class.pmprogateway_twocheckout.php:114 +#: classes/gateways/class.pmprogateway_twocheckout.php:108 +#: classes/gateways/class.pmprogateway_twocheckout.php:116 +#: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 +msgid "2Checkout Settings" +msgstr "2Checkout Einstellungen" + +#: classes/gateways/class.pmprogateway_twocheckout.php:123 +#: classes/gateways/class.pmprogateway_twocheckout.php:125 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 +msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." +msgstr "Gehen Sie zu Konto » Benutzerverwaltung in 2Checkout und erstellen Sie einen Benutzer mit API-Zugang und API-Aktualisierung." + +#: classes/gateways/class.pmprogateway_twocheckout.php:132 +#: classes/gateways/class.pmprogateway_twocheckout.php:134 +#: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 +msgid "Password for the API user created." +msgstr "Passwort für den erstellten API-Benutzer." + +#: classes/gateways/class.pmprogateway_twocheckout.php:141 +#: classes/gateways/class.pmprogateway_twocheckout.php:152 +#: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 +msgid "Click on the profile icon in 2Checkout to find your Account Number." +msgstr "Klicken Sie auf das Profilsymbol in 2Checkout, um Ihre Kontonummer zu finden." + +#: classes/gateways/class.pmprogateway_twocheckout.php:146 +#: adminpages/paymentsettings.php:355 +#: adminpages/paymentsettings.php:360 +#: classes/gateways/class.pmprogateway_twocheckout.php:137 +#: classes/gateways/class.pmprogateway_twocheckout.php:157 +#: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 +msgid "Secret Word" +msgstr "Geheimwort" + +#: classes/gateways/class.pmprogateway_twocheckout.php:150 +#: classes/gateways/class.pmprogateway_twocheckout.php:161 +#: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 +msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." +msgstr "Gehen Sie zu Konto » Site Management. Suchen Sie unter Checkout-Optionen nach dem Geheimwort." + +#: classes/gateways/class.pmprogateway_twocheckout.php:155 +#: adminpages/paymentsettings.php:487 +#: adminpages/paymentsettings.php:493 +#: adminpages/paymentsettings.php:495 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 +#: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 +msgid "TwoCheckout INS URL" +msgstr "TwoCheckout INS URL" + +#: classes/gateways/class.pmprogateway_twocheckout.php:158 +#: classes/gateways/class.pmprogateway_twocheckout.php:169 +#: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 +msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" +msgstr "Um eine vollständige Integration mit 2Checkout zu erreichen, müssen Sie für Ihre INS-URL und Ihre genehmigte URL Folgendes verwenden" + +#: classes/gateways/class.pmprogateway_twocheckout.php:203 +#: classes/gateways/class.pmprogateway_twocheckout.php:192 +#: classes/gateways/class.pmprogateway_twocheckout.php:214 +#: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 +msgid "Check Out with 2Checkout" +msgstr "Mit 2Checkout bezahlen" + +#: includes/addons.php:225 +#: includes/addons.php:222 +#: includes/addons.php:241 +msgid "Important: This plugin requires a valid PMPro Plus license key to update." +msgstr "Wichtig: Für die Aktualisierung dieses Plugins ist ein gültiger PMPro Plus-Lizenzschlüssel erforderlich." + +#: includes/addons.php:278 +#: includes/addons.php:274 +#: includes/addons.php:294 +msgid "You must have a valid PMPro Plus License Key to update PMPro Plus add ons. The following plugins will not be updated:" +msgstr "Sie müssen einen gültigen PMPro Plus-Lizenzschlüssel haben, um PMPro Plus-Add-Ons zu aktualisieren. Die folgenden Plugins werden nicht aktualisiert:" + +#: includes/addons.php:296 +#: includes/addons.php:292 +msgid "Update Plugin" +msgstr "Plugin aktualisieren" + +#: includes/addons.php:298 +#: includes/addons.php:294 +#: includes/addons.php:314 +msgid "You must have a valid PMPro Plus License Key to update PMPro Plus add ons." +msgstr "Sie müssen einen gültigen PMPro Plus-Lizenzschlüssel haben, um PMPro Plus-Add-Ons zu aktualisieren." + +#: includes/addons.php:301 +#: includes/addons.php:297 +#: includes/addons.php:317 +#: includes/addons.php:332 +msgid "Return to the PMPro Add Ons page" +msgstr "Zurück zur PMPro Add Ons Seite" + +#: includes/addons.php:320 +#: includes/addons.php:316 +#: includes/addons.php:336 +msgid "You must enter a valid PMPro Plus License Key under Settings > PMPro License to update this add on." +msgstr "Sie müssen einen gültigen PMPro Plus-Lizenzschlüssel unter Einstellungen > PMPro-Lizenz eingeben, um dieses Add-on zu aktualisieren." + +#: includes/adminpages.php:48 +#: includes/adminpages.php:9 +#: includes/adminpages.php:39 +#: includes/adminpages.php:47 +#: includes/adminpages.php:93 +#: includes/adminpages.php:100 +msgid "Memberships" +msgstr "Mitgliedschaften" + +#: includes/adminpages.php:49 +#: includes/adminpages.php:123 +#: includes/adminpages.php:10 +#: includes/adminpages.php:48 +#: includes/adminpages.php:107 +#: includes/adminpages.php:114 +#: includes/adminpages.php:118 +#: adminpages/admin_header.php:261 +#: adminpages/pagesettings.php:149 +#: includes/adminpages.php:69 +#: adminpages/pagesettings.php:168 +msgid "Page Settings" +msgstr "Seiten Einstellungen" + +#: includes/adminpages.php:50 +#: includes/adminpages.php:130 +#: includes/adminpages.php:11 +#: includes/adminpages.php:49 +#: includes/adminpages.php:54 +#: includes/adminpages.php:114 +#: includes/adminpages.php:121 +#: includes/adminpages.php:125 +#: includes/adminpages.php:70 +msgid "Payment Settings" +msgstr "Zahlungs-Einstellungen" + +#: includes/adminpages.php:55 +#: includes/adminpages.php:165 +#: includes/adminpages.php:16 +#: includes/adminpages.php:54 +#: includes/adminpages.php:79 +#: includes/adminpages.php:149 +#: includes/adminpages.php:156 +#: includes/adminpages.php:160 +#: adminpages/admin_header.php:234 +#: includes/adminpages.php:182 +msgid "Reports" +msgstr "Berichte" + +#: includes/adminpages.php:57 +#: includes/adminpages.php:179 +#: includes/adminpages.php:18 +#: includes/adminpages.php:56 +#: includes/adminpages.php:89 +#: includes/adminpages.php:163 +#: includes/adminpages.php:170 +#: includes/adminpages.php:174 +#: adminpages/admin_header.php:257 +#: includes/adminpages.php:68 +#: classes/class-pmpro-site-health.php:81 +msgid "Discount Codes" +msgstr "Gutscheincodes" + +#: includes/adminpages.php:61 +#: includes/adminpages.php:79 +msgid "Updates Required" +msgstr "Aktualisierung benötigt" + +#: includes/adminpages.php:109 +#: includes/adminpages.php:100 +#: includes/adminpages.php:104 +#: includes/adminpages.php:135 +msgid "Memberships" +msgstr "Mitgliedschaften" + +#: includes/adminpages.php:274 +#: includes/adminpages.php:261 +#: includes/adminpages.php:265 +#: includes/adminpages.php:414 +msgid "Docs" +msgstr "Dokumentationen" + +#: includes/adminpages.php:274 +#: includes/adminpages.php:261 +#: includes/adminpages.php:265 +#: includes/adminpages.php:414 +msgid "View PMPro Documentation" +msgstr "PMPro-Dokumentation anzeigen" + +#: includes/adminpages.php:275 +#: includes/adminpages.php:262 +#: includes/adminpages.php:266 +#: includes/adminpages.php:415 +msgid "Support" +msgstr "Support" + +#: includes/adminpages.php:275 +#: includes/adminpages.php:262 +#: includes/adminpages.php:266 +#: includes/adminpages.php:415 +msgid "Visit Customer Support Forum" +msgstr "Support Forum besuchen" + +#: includes/countries.php:7 +msgid "Andorra" +msgstr "Andorra" + +#: includes/countries.php:8 +msgid "United Arab Emirates" +msgstr "Vereinigte Arabische Emirate" + +#: includes/countries.php:9 +msgid "Afghanistan" +msgstr "Afghanistan" + +#: includes/countries.php:10 +msgid "Antigua and Barbuda" +msgstr "Antigua und Barbuda" + +#: includes/countries.php:11 +msgid "Anguilla" +msgstr "Anguilla" + +#: includes/countries.php:12 +msgid "Albania" +msgstr "Albanien" + +#: includes/countries.php:13 +msgid "Armenia" +msgstr "Armenien" + +#: includes/countries.php:14 +msgid "Netherlands Antilles" +msgstr "Niederländische Antillen" + +#: includes/countries.php:15 +msgid "Angola" +msgstr "Angola" + +#: includes/countries.php:16 +msgid "Antarctica" +msgstr "Antarktis" + +#: includes/countries.php:17 +msgid "Argentina" +msgstr "Argentinien" + +#: includes/countries.php:18 +msgid "American Samoa" +msgstr "Amerikanisch Samoa" + +#: includes/countries.php:19 +msgid "Austria" +msgstr "Österreich" + +#: includes/countries.php:20 +msgid "Australia" +msgstr "Australien" + +#: includes/countries.php:21 +msgid "Aruba" +msgstr "Aruba" + +#: includes/countries.php:22 +msgid "Aland Islands" +msgstr "Åland Inseln" + +#: includes/countries.php:23 +msgid "Azerbaijan" +msgstr "Aserbaidschan" + +#: includes/countries.php:24 +msgid "Bosnia and Herzegovina" +msgstr "Bosnien und Herzegowina" + +#: includes/countries.php:25 +msgid "Barbados" +msgstr "Barbados" + +#: includes/countries.php:26 +msgid "Bangladesh" +msgstr "Bangladesch" + +#: includes/countries.php:27 +msgid "Belgium" +msgstr "Belgien" + +#: includes/countries.php:28 +msgid "Burkina Faso" +msgstr "Burkina Faso" + +#: includes/countries.php:29 +msgid "Bulgaria" +msgstr "Bulgarien" + +#: includes/countries.php:30 +msgid "Bahrain" +msgstr "Bahrain" + +#: includes/countries.php:31 +msgid "Burundi" +msgstr "Burundi" + +#: includes/countries.php:32 +msgid "Benin" +msgstr "Benin" + +#: includes/countries.php:33 +msgid "Saint Barthelemy" +msgstr "Saint-Barthélemy" + +#: includes/countries.php:34 +msgid "Bermuda" +msgstr "Bermuda" + +#: includes/countries.php:35 +msgid "Brunei" +msgstr "Brunei" + +#: includes/countries.php:36 +msgid "Bolivia" +msgstr "Bolivien" + +#: includes/countries.php:37 +msgid "Brazil" +msgstr "Brasilien" + +#: includes/countries.php:38 +msgid "Bahamas" +msgstr "Bahamas" + +#: includes/countries.php:39 +msgid "Bhutan" +msgstr "Bhutan" + +#: includes/countries.php:40 +msgid "Bouvet Island" +msgstr "Bouvetinsel" + +#: includes/countries.php:41 +msgid "Botswana" +msgstr "Botswana" + +#: includes/countries.php:42 +msgid "Belarus" +msgstr "Belarus" + +#: includes/countries.php:43 +msgid "Belize" +msgstr "Belize" + +#: includes/countries.php:44 +msgid "Canada" +msgstr "Kanada" + +#: includes/countries.php:45 +msgid "Cocos (Keeling) Islands" +msgstr "Kokosinseln" + +#: includes/countries.php:46 +msgid "Congo (Kinshasa)" +msgstr "Kongo (Kinshasa)" + +#: includes/countries.php:47 +msgid "Central African Republic" +msgstr "Zentralafrikanische Republik" + +#: includes/countries.php:48 +msgid "Congo (Brazzaville)" +msgstr "Kongo (Brazzaville)" + +#: includes/countries.php:49 +msgid "Switzerland" +msgstr "Schweiz" + +#: includes/countries.php:50 +msgid "Ivory Coast" +msgstr "Elfenbeinküste" + +#: includes/countries.php:51 +msgid "Cook Islands" +msgstr "Cook-Inseln" + +#: includes/countries.php:52 +msgid "Chile" +msgstr "Chile" + +#: includes/countries.php:53 +msgid "Cameroon" +msgstr "Kamerun" + +#: includes/countries.php:54 +msgid "China" +msgstr "China" + +#: includes/countries.php:55 +msgid "Colombia" +msgstr "Kolumbien" + +#: includes/countries.php:56 +msgid "Costa Rica" +msgstr "Costa Rica" + +#: includes/countries.php:57 +msgid "Cuba" +msgstr "Kuba" + +#: includes/countries.php:58 +msgid "Cape Verde" +msgstr "Kapverdische Inseln" + +#: includes/countries.php:59 +msgid "Christmas Island" +msgstr "Weihnachtsinsel" + +#: includes/countries.php:60 +msgid "Cyprus" +msgstr "Zypern" + +#: includes/countries.php:61 +msgid "Czech Republic" +msgstr "Tschechische Republik" + +#: includes/countries.php:62 +msgid "Germany" +msgstr "Deutschland" + +#: includes/countries.php:63 +msgid "Djibouti" +msgstr "Dschibuti" + +#: includes/countries.php:64 +msgid "Denmark" +msgstr "Dänemark" + +#: includes/countries.php:65 +msgid "Dominica" +msgstr "Dominica" + +#: includes/countries.php:66 +msgid "Dominican Republic" +msgstr "Dominikanische Republik" + +#: includes/countries.php:67 +msgid "Algeria" +msgstr "Algerien" + +#: includes/countries.php:68 +msgid "Ecuador" +msgstr "Ecuador" + +#: includes/countries.php:69 +msgid "Estonia" +msgstr "Estland" + +#: includes/countries.php:70 +msgid "Egypt" +msgstr "Ägypten" + +#: includes/countries.php:71 +msgid "Western Sahara" +msgstr "Westliche Sahara" + +#: includes/countries.php:72 +msgid "Eritrea" +msgstr "Eritrea" + +#: includes/countries.php:73 +msgid "Spain" +msgstr "Spanien" + +#: includes/countries.php:74 +msgid "Ethiopia" +msgstr "Äthiopien" + +#: includes/countries.php:75 +msgid "Finland" +msgstr "Finnland" + +#: includes/countries.php:76 +msgid "Fiji" +msgstr "Fidschi" + +#: includes/countries.php:77 +msgid "Falkland Islands" +msgstr "Falkland-Inseln" + +#: includes/countries.php:78 +msgid "Micronesia" +msgstr "Mikronesien" + +#: includes/countries.php:79 +msgid "Faroe Islands" +msgstr "Färöer-Inseln" + +#: includes/countries.php:80 +msgid "France" +msgstr "Frankreich" + +#: includes/countries.php:81 +msgid "Gabon" +msgstr "Gabun" + +#: includes/countries.php:82 +msgid "United Kingdom" +msgstr "Vereinigtes Königreich" + +#: includes/countries.php:83 +msgid "Grenada" +msgstr "Grenada" + +#: includes/countries.php:84 +msgid "Georgia" +msgstr "Georgien" + +#: includes/countries.php:85 +msgid "French Guiana" +msgstr "Französisch-Guayana" + +#: includes/countries.php:86 +msgid "Guernsey" +msgstr "Guernsey" + +#: includes/countries.php:87 +msgid "Ghana" +msgstr "Ghana" + +#: includes/countries.php:88 +msgid "Gibraltar" +msgstr "Gibraltar" + +#: includes/countries.php:89 +msgid "Greenland" +msgstr "Grönland" + +#: includes/countries.php:90 +msgid "Gambia" +msgstr "Gambia" + +#: includes/countries.php:91 +msgid "Guinea" +msgstr "Guinea" + +#: includes/countries.php:92 +msgid "Guadeloupe" +msgstr "Guadeloupe" + +#: includes/countries.php:93 +msgid "Equatorial Guinea" +msgstr "Äquatorial-Guinea" + +#: includes/countries.php:94 +msgid "Greece" +msgstr "Griechenland" + +#: includes/countries.php:95 +msgid "South Georgia and the South Sandwich Islands" +msgstr "Südgeorgien und die Südlichen Sandwichinseln" + +#: includes/countries.php:96 +msgid "Guatemala" +msgstr "Guatemala" + +#: includes/countries.php:97 +msgid "Guam" +msgstr "Guam" + +#: includes/countries.php:98 +msgid "Guinea-Bissau" +msgstr "Guinea-Bissau" + +#: includes/countries.php:99 +msgid "Guyana" +msgstr "Guyana" + +#: includes/countries.php:100 +msgid "Hong Kong S.A.R., China" +msgstr "Hong Kong S.A.R., China" + +#: includes/countries.php:101 +msgid "Heard Island and McDonald Islands" +msgstr "Heard und McDonaldinseln" + +#: includes/countries.php:102 +msgid "Honduras" +msgstr "Honduras" + +#: includes/countries.php:103 +msgid "Croatia" +msgstr "Kroatien" + +#: includes/countries.php:104 +msgid "Haiti" +msgstr "Haiti" + +#: includes/countries.php:105 +msgid "Hungary" +msgstr "Ungarn" + +#: includes/countries.php:106 +msgid "Indonesia" +msgstr "Indonesien" + +#: includes/countries.php:107 +msgid "Ireland" +msgstr "Irland" + +#: includes/countries.php:108 +msgid "Israel" +msgstr "Israel" + +#: includes/countries.php:109 +msgid "Isle of Man" +msgstr "Isle of Man" + +#: includes/countries.php:110 +msgid "India" +msgstr "Indien" + +#: includes/countries.php:111 +msgid "British Indian Ocean Territory" +msgstr "Britisches Territorium im Indischen Ozean" + +#: includes/countries.php:112 +msgid "Iraq" +msgstr "Irak" + +#: includes/countries.php:113 +msgid "Iran" +msgstr "Iran" + +#: includes/countries.php:114 +msgid "Iceland" +msgstr "Island" + +#: includes/countries.php:115 +msgid "Italy" +msgstr "Italien" + +#: includes/countries.php:116 +msgid "Jersey" +msgstr "Jersey" + +#: includes/countries.php:117 +msgid "Jamaica" +msgstr "Jamaika" + +#: includes/countries.php:118 +msgid "Jordan" +msgstr "Jordanien" + +#: includes/countries.php:119 +msgid "Japan" +msgstr "Japan" + +#: includes/countries.php:120 +msgid "Kenya" +msgstr "Kenia" + +#: includes/countries.php:121 +msgid "Kyrgyzstan" +msgstr "Kirgisistan" + +#: includes/countries.php:122 +msgid "Cambodia" +msgstr "Kambodscha" + +#: includes/countries.php:123 +msgid "Kiribati" +msgstr "Kiribati" + +#: includes/countries.php:124 +msgid "Comoros" +msgstr "Komoren" + +#: includes/countries.php:125 +msgid "Saint Kitts and Nevis" +msgstr "Saint Kitts und Nevis" + +#: includes/countries.php:126 +msgid "North Korea" +msgstr "Nordkorea" + +#: includes/countries.php:127 +msgid "South Korea" +msgstr "Südkorea" + +#: includes/countries.php:128 +msgid "Kuwait" +msgstr "Kuwait" + +#: includes/countries.php:129 +msgid "Cayman Islands" +msgstr "Kaiman-Inseln" + +#: includes/countries.php:130 +msgid "Kazakhstan" +msgstr "Kasachstan" + +#: includes/countries.php:131 +msgid "Laos" +msgstr "Laos" + +#: includes/countries.php:132 +msgid "Lebanon" +msgstr "Libanon" + +#: includes/countries.php:133 +msgid "Saint Lucia" +msgstr "St. Lucia" + +#: includes/countries.php:134 +msgid "Liechtenstein" +msgstr "Liechtenstein" + +#: includes/countries.php:135 +msgid "Sri Lanka" +msgstr "Sri Lanka" + +#: includes/countries.php:136 +msgid "Liberia" +msgstr "Liberia" + +#: includes/countries.php:137 +msgid "Lesotho" +msgstr "Lesotho" + +#: includes/countries.php:138 +msgid "Lithuania" +msgstr "Litauen" + +#: includes/countries.php:139 +msgid "Luxembourg" +msgstr "Luxemburg" + +#: includes/countries.php:140 +msgid "Latvia" +msgstr "Lettland" + +#: includes/countries.php:141 +msgid "Libya" +msgstr "Libyen" + +#: includes/countries.php:142 +msgid "Morocco" +msgstr "Marokko" + +#: includes/countries.php:143 +msgid "Monaco" +msgstr "Monaco" + +#: includes/countries.php:144 +msgid "Moldova" +msgstr "Moldawien" + +#: includes/countries.php:145 +msgid "Montenegro" +msgstr "Montenegro" + +#: includes/countries.php:146 +msgid "Saint Martin (French part)" +msgstr "Saint Martin (französischer Teil)" + +#: includes/countries.php:147 +msgid "Madagascar" +msgstr "Madagaskar" + +#: includes/countries.php:148 +msgid "Marshall Islands" +msgstr "Marshall-Inseln" + +#: includes/countries.php:149 +msgid "Macedonia" +msgstr "Mazedonien" + +#: includes/countries.php:150 +msgid "Mali" +msgstr "Mali" + +#: includes/countries.php:151 +msgid "Myanmar" +msgstr "Myanmar" + +#: includes/countries.php:152 +msgid "Mongolia" +msgstr "Mongolei" + +#: includes/countries.php:153 +msgid "Macao S.A.R., China" +msgstr "Macao, China" + +#: includes/countries.php:154 +msgid "Northern Mariana Islands" +msgstr "Nördliche Marianen" + +#: includes/countries.php:155 +msgid "Martinique" +msgstr "Martinique" + +#: includes/countries.php:156 +msgid "Mauritania" +msgstr "Mauretanien" + +#: includes/countries.php:157 +msgid "Montserrat" +msgstr "Montserrat" + +#: includes/countries.php:158 +msgid "Malta" +msgstr "Malta" + +#: includes/countries.php:159 +msgid "Mauritius" +msgstr "Mauritius" + +#: includes/countries.php:160 +msgid "Maldives" +msgstr "Malediven" + +#: includes/countries.php:161 +msgid "Malawi" +msgstr "Malawi" + +#: includes/countries.php:162 +msgid "Mexico" +msgstr "Mexiko" + +#: includes/countries.php:163 +msgid "Malaysia" +msgstr "Malaysia" + +#: includes/countries.php:164 +msgid "Mozambique" +msgstr "Mosambik" + +#: includes/countries.php:165 +msgid "Namibia" +msgstr "Namibia" + +#: includes/countries.php:166 +msgid "New Caledonia" +msgstr "Neu-Kaledonien" + +#: includes/countries.php:167 +msgid "Niger" +msgstr "Niger" + +#: includes/countries.php:168 +msgid "Norfolk Island" +msgstr "Norfolk Inseln" + +#: includes/countries.php:169 +msgid "Nigeria" +msgstr "Nigeria" + +#: includes/countries.php:170 +msgid "Nicaragua" +msgstr "Nicaragua" + +#: includes/countries.php:171 +msgid "Netherlands" +msgstr "Niederlande" + +#: includes/countries.php:172 +msgid "Norway" +msgstr "Norwegen" + +#: includes/countries.php:173 +msgid "Nepal" +msgstr "Nepal" + +#: includes/countries.php:174 +msgid "Nauru" +msgstr "Nauru" + +#: includes/countries.php:175 +msgid "Niue" +msgstr "Niue" + +#: includes/countries.php:176 +msgid "New Zealand" +msgstr "Neuseeland" + +#: includes/countries.php:177 +msgid "Oman" +msgstr "Oman" + +#: includes/countries.php:178 +msgid "Panama" +msgstr "Panama" + +#: includes/countries.php:179 +msgid "Peru" +msgstr "Peru" + +#: includes/countries.php:180 +msgid "French Polynesia" +msgstr "Französisch-Polynesien" + +#: includes/countries.php:181 +msgid "Papua New Guinea" +msgstr "Papua-Neu-Guinea" + +#: includes/countries.php:182 +msgid "Philippines" +msgstr "Philippinen" + +#: includes/countries.php:183 +msgid "Pakistan" +msgstr "Pakistan" + +#: includes/countries.php:184 +msgid "Poland" +msgstr "Polen" + +#: includes/countries.php:185 +msgid "Saint Pierre and Miquelon" +msgstr "Saint-Pierre und Miquelon" + +#: includes/countries.php:186 +msgid "Pitcairn" +msgstr "Pitcairn" + +#: includes/countries.php:187 +msgid "Puerto Rico" +msgstr "Puerto Rico" + +#: includes/countries.php:188 +msgid "Palestinian Territory" +msgstr "Palästinische Gebiete" + +#: includes/countries.php:189 +msgid "Portugal" +msgstr "Portugal" + +#: includes/countries.php:190 +msgid "Palau" +msgstr "Palau" + +#: includes/countries.php:191 +msgid "Paraguay" +msgstr "Paraguay" + +#: includes/countries.php:192 +msgid "Qatar" +msgstr "Katar" + +#: includes/countries.php:193 +msgid "Reunion" +msgstr "Réunion" + +#: includes/countries.php:194 +msgid "Romania" +msgstr "Rumänien" + +#: includes/countries.php:195 +msgid "Serbia" +msgstr "Serbien" + +#: includes/countries.php:196 +msgid "Russia" +msgstr "Russland" + +#: includes/countries.php:197 +msgid "Rwanda" +msgstr "Ruanda" + +#: includes/countries.php:198 +msgid "Saudi Arabia" +msgstr "Saudi-Arabien" + +#: includes/countries.php:199 +msgid "Solomon Islands" +msgstr "Solomon-Inseln" + +#: includes/countries.php:200 +msgid "Seychelles" +msgstr "Seychellen" + +#: includes/countries.php:201 +msgid "Sudan" +msgstr "Sudan" + +#: includes/countries.php:202 +msgid "Sweden" +msgstr "Schweden" + +#: includes/countries.php:203 +msgid "Singapore" +msgstr "Singapur" + +#: includes/countries.php:204 +msgid "Saint Helena" +msgstr "Sankt-Helena" + +#: includes/countries.php:205 +msgid "Slovenia" +msgstr "Slowenien" + +#: includes/countries.php:206 +msgid "Svalbard and Jan Mayen" +msgstr "Spitzbergen und Jan Mayen" + +#: includes/countries.php:207 +msgid "Slovakia" +msgstr "Slowakei" + +#: includes/countries.php:208 +msgid "Sierra Leone" +msgstr "Sierra Leone" + +#: includes/countries.php:209 +msgid "San Marino" +msgstr "San Marino" + +#: includes/countries.php:210 +msgid "Senegal" +msgstr "Senegal" + +#: includes/countries.php:211 +msgid "Somalia" +msgstr "Somalia" + +#: includes/countries.php:212 +msgid "Suriname" +msgstr "Surinam" + +#: includes/countries.php:213 +msgid "Sao Tome and Principe" +msgstr "Sao Tome und Principe" + +#: includes/countries.php:214 +msgid "El Salvador" +msgstr "El Salvador" + +#: includes/countries.php:215 +msgid "Syria" +msgstr "Syrien" + +#: includes/countries.php:216 +msgid "Swaziland" +msgstr "Swasiland" + +#: includes/countries.php:217 +msgid "Turks and Caicos Islands" +msgstr "Turks- und Caicosinseln" + +#: includes/countries.php:218 +msgid "Chad" +msgstr "Tschad" + +#: includes/countries.php:219 +msgid "French Southern Territories" +msgstr "Französische Süd- und Antarktisgebiete" + +#: includes/countries.php:220 +msgid "Togo" +msgstr "Togo" + +#: includes/countries.php:221 +msgid "Thailand" +msgstr "Thailand" + +#: includes/countries.php:222 +msgid "Tajikistan" +msgstr "Tadschikistan" + +#: includes/countries.php:223 +msgid "Tokelau" +msgstr "Tokelau" + +#: includes/countries.php:224 +msgid "Timor-Leste" +msgstr "Timor-Leste" + +#: includes/countries.php:225 +msgid "Turkmenistan" +msgstr "Turkmenistan" + +#: includes/countries.php:226 +msgid "Tunisia" +msgstr "Tunesien" + +#: includes/countries.php:227 +msgid "Tonga" +msgstr "Tonga" + +#: includes/countries.php:228 +msgid "Turkey" +msgstr "Türkei" + +#: includes/countries.php:229 +msgid "Trinidad and Tobago" +msgstr "Trinidad und Tobago" + +#: includes/countries.php:230 +msgid "Tuvalu" +msgstr "Tuvalu" + +#: includes/countries.php:231 +msgid "Taiwan" +msgstr "Taiwan" + +#: includes/countries.php:232 +msgid "Tanzania" +msgstr "Tansania" + +#: includes/countries.php:233 +msgid "Ukraine" +msgstr "Ukraine" + +#: includes/countries.php:234 +msgid "Uganda" +msgstr "Uganda" + +#: includes/countries.php:235 +msgid "United States Minor Outlying Islands" +msgstr "United States Minor Outlying Islands" + +#: includes/countries.php:236 +msgid "United States" +msgstr "Vereinigte Staaten von Amerika" + +#: includes/countries.php:237 +msgid "Uruguay" +msgstr "Uruguay" + +#: includes/countries.php:238 +msgid "Uzbekistan" +msgstr "Usbekistan" + +#: includes/countries.php:239 +msgid "Vatican" +msgstr "Vatikan" + +#: includes/countries.php:240 +msgid "Saint Vincent and the Grenadines" +msgstr "Saint-Vincent und die Grenadinen" + +#: includes/countries.php:241 +#: includes/countries.php:254 +msgid "Venezuela" +msgstr "Venezuela" + +#: includes/countries.php:242 +msgid "British Virgin Islands" +msgstr "Britische Jungfraueninseln" + +#: includes/countries.php:243 +msgid "U.S. Virgin Islands" +msgstr "Amerikanische Jungfraueninseln" + +#: includes/countries.php:244 +msgid "Vietnam" +msgstr "Vietnam" + +#: includes/countries.php:245 +msgid "Vanuatu" +msgstr "Vanuatu" + +#: includes/countries.php:246 +msgid "Wallis and Futuna" +msgstr "Wallis und Futuna" + +#: includes/countries.php:247 +msgid "Samoa" +msgstr "Samoa" + +#: includes/countries.php:248 +msgid "Yemen" +msgstr "Jemen" + +#: includes/countries.php:249 +msgid "Mayotte" +msgstr "Mayotte" + +#: includes/countries.php:250 +msgid "South Africa" +msgstr "Südafrika" + +#: includes/countries.php:251 +msgid "Zambia" +msgstr "Sambia" + +#: includes/countries.php:252 +msgid "Zimbabwe" +msgstr "Simbabwe" + +#: includes/countries.php:253 +msgid "US Armed Forces" +msgstr "US-Streitkräfte" + +#: includes/currencies.php:17 +#: includes/currencies.php:99 +#: includes/currencies.php:7 +#: includes/currencies.php:37 +#: includes/currencies.php:44 +#: includes/currencies.php:64 +#: includes/currencies.php:68 +#: includes/currencies.php:75 +#: includes/currencies.php:85 +#: includes/currencies.php:87 +#: includes/currencies.php:94 +#: includes/currencies.php:121 +#: includes/currencies.php:148 +msgid "US Dollars ($)" +msgstr "US Dollar (&Nummer36;)" + +#: includes/currencies.php:19 +#: includes/currencies.php:102 +#: includes/currencies.php:8 +#: includes/currencies.php:9 +#: includes/currencies.php:40 +#: includes/currencies.php:47 +#: includes/currencies.php:67 +#: includes/currencies.php:71 +#: includes/currencies.php:78 +#: includes/currencies.php:88 +#: includes/currencies.php:90 +#: includes/currencies.php:97 +#: includes/currencies.php:124 +msgid "Euros (€)" +msgstr "Euro (€)" + +#: includes/currencies.php:24 +#: includes/currencies.php:101 +#: includes/currencies.php:9 +#: includes/currencies.php:14 +#: includes/currencies.php:39 +#: includes/currencies.php:46 +#: includes/currencies.php:66 +#: includes/currencies.php:70 +#: includes/currencies.php:77 +#: includes/currencies.php:87 +#: includes/currencies.php:89 +#: includes/currencies.php:96 +#: includes/currencies.php:123 +msgid "Pounds Sterling (£)" +msgstr "Britische Pfund (£)" + +#: includes/currencies.php:28 +#: includes/currencies.php:18 +msgid "Argentine Peso ($)" +msgstr "Argentinischer Peso ($)" + +#: includes/currencies.php:29 +#: includes/currencies.php:10 +#: includes/currencies.php:18 +#: includes/currencies.php:28 +#: includes/currencies.php:19 +msgid "Australian Dollars ($)" +msgstr "Australische Dollar ($)" + +#: includes/currencies.php:31 +#: includes/currencies.php:20 +#: includes/currencies.php:30 +#: includes/currencies.php:21 +msgid "Brazilian Real (R$)" +msgstr "Brasilianischer Real (R$)" + +#: includes/currencies.php:35 +#: includes/currencies.php:100 +#: includes/currencies.php:12 +#: includes/currencies.php:24 +#: includes/currencies.php:34 +#: includes/currencies.php:38 +#: includes/currencies.php:45 +#: includes/currencies.php:65 +#: includes/currencies.php:69 +#: includes/currencies.php:76 +#: includes/currencies.php:86 +#: includes/currencies.php:88 +#: includes/currencies.php:95 +#: includes/currencies.php:25 +#: includes/currencies.php:122 +msgid "Canadian Dollars ($)" +msgstr "Kanadische Dollar ($)" + +#: includes/currencies.php:36 +#: includes/currencies.php:13 +#: includes/currencies.php:25 +#: includes/currencies.php:35 +#: includes/currencies.php:26 +msgid "Chinese Yuan" +msgstr "Chinesische Yuan" + +#: includes/currencies.php:38 +#: includes/currencies.php:13 +#: includes/currencies.php:14 +#: includes/currencies.php:26 +#: includes/currencies.php:27 +#: includes/currencies.php:37 +#: includes/currencies.php:28 +msgid "Czech Koruna" +msgstr "Tschechische Krone" + +#: includes/currencies.php:45 +#: includes/currencies.php:14 +#: includes/currencies.php:15 +#: includes/currencies.php:27 +#: includes/currencies.php:34 +#: includes/currencies.php:44 +#: includes/currencies.php:36 +msgid "Danish Krone" +msgstr "Dänsiche Krone" + +#: includes/currencies.php:46 +#: includes/currencies.php:15 +#: includes/currencies.php:16 +#: includes/currencies.php:28 +#: includes/currencies.php:35 +#: includes/currencies.php:45 +#: includes/currencies.php:48 +msgid "Hong Kong Dollar ($)" +msgstr "Hong Kong Dollar ($)" + +#: includes/currencies.php:47 +#: includes/currencies.php:16 +#: includes/currencies.php:17 +#: includes/currencies.php:29 +#: includes/currencies.php:36 +#: includes/currencies.php:46 +#: includes/currencies.php:49 +msgid "Hungarian Forint" +msgstr "Ungarische Forint" + +#: includes/currencies.php:48 +#: includes/currencies.php:18 +#: includes/currencies.php:30 +#: includes/currencies.php:37 +#: includes/currencies.php:47 +#: includes/currencies.php:50 +msgid "Indian Rupee" +msgstr "Indische Rupie" + +#: includes/currencies.php:49 +#: includes/currencies.php:19 +#: includes/currencies.php:31 +#: includes/currencies.php:38 +#: includes/currencies.php:48 +#: includes/currencies.php:51 +msgid "Indonesia Rupiah" +msgstr "Indonesischer Rupiah" + +#: includes/currencies.php:50 +#: includes/currencies.php:17 +#: includes/currencies.php:20 +#: includes/currencies.php:32 +#: includes/currencies.php:39 +#: includes/currencies.php:49 +#: includes/currencies.php:52 +msgid "Israeli Shekel" +msgstr "Israelische Shekel" + +#: includes/currencies.php:52 +#: includes/currencies.php:18 +#: includes/currencies.php:21 +#: includes/currencies.php:34 +#: includes/currencies.php:41 +#: includes/currencies.php:51 +#: includes/currencies.php:54 +msgid "Japanese Yen (¥)" +msgstr "Japanische Yen (¥)" + +#: includes/currencies.php:57 +#: includes/currencies.php:19 +#: includes/currencies.php:22 +#: includes/currencies.php:38 +#: includes/currencies.php:45 +#: includes/currencies.php:55 +#: includes/currencies.php:56 +#: includes/currencies.php:60 +msgid "Malaysian Ringgits" +msgstr "Malayische Ringgit" + +#: includes/currencies.php:58 +#: includes/currencies.php:20 +#: includes/currencies.php:23 +#: includes/currencies.php:39 +#: includes/currencies.php:46 +#: includes/currencies.php:56 +#: includes/currencies.php:57 +#: includes/currencies.php:61 +msgid "Mexican Peso ($)" +msgstr "Mexikanische Peso ($)" + +#: includes/currencies.php:59 +#: includes/currencies.php:58 +#: includes/currencies.php:62 +msgid "Nigerian Naira (₦)" +msgstr "Nigerianische Naira (₦)" + +#: includes/currencies.php:60 +#: includes/currencies.php:21 +#: includes/currencies.php:24 +#: includes/currencies.php:40 +#: includes/currencies.php:47 +#: includes/currencies.php:57 +#: includes/currencies.php:59 +#: includes/currencies.php:63 +msgid "New Zealand Dollar ($)" +msgstr "Neuseeland Dollar ($)" + +#: includes/currencies.php:61 +#: includes/currencies.php:22 +#: includes/currencies.php:25 +#: includes/currencies.php:41 +#: includes/currencies.php:48 +#: includes/currencies.php:58 +#: includes/currencies.php:60 +#: includes/currencies.php:64 +msgid "Norwegian Krone" +msgstr "Norwegische Krone" + +#: includes/currencies.php:62 +#: includes/currencies.php:23 +#: includes/currencies.php:26 +#: includes/currencies.php:42 +#: includes/currencies.php:49 +#: includes/currencies.php:59 +#: includes/currencies.php:61 +#: includes/currencies.php:65 +msgid "Philippine Pesos" +msgstr "Philippinische Pesos" + +#: includes/currencies.php:63 +#: includes/currencies.php:24 +#: includes/currencies.php:27 +#: includes/currencies.php:43 +#: includes/currencies.php:50 +#: includes/currencies.php:60 +#: includes/currencies.php:62 +#: includes/currencies.php:66 +msgid "Polish Zloty" +msgstr "Polnische Zloty" + +#: includes/currencies.php:65 +#: includes/currencies.php:76 +msgid "Russian Ruble (₽)" +msgstr "Russischer Rubel (₽)" + +#: includes/currencies.php:70 +#: includes/currencies.php:25 +#: includes/currencies.php:28 +#: includes/currencies.php:45 +#: includes/currencies.php:52 +#: includes/currencies.php:62 +#: includes/currencies.php:64 +#: includes/currencies.php:65 +#: includes/currencies.php:84 +msgid "Singapore Dollar ($)" +msgstr "Singapur Dollar ($)" + +#: includes/currencies.php:75 +#: includes/currencies.php:50 +#: includes/currencies.php:57 +#: includes/currencies.php:67 +#: includes/currencies.php:69 +#: includes/currencies.php:70 +#: includes/currencies.php:89 +msgid "South African Rand (R)" +msgstr "Südafrikanischer Rand (R)" + +#: includes/currencies.php:80 +#: includes/currencies.php:30 +#: includes/currencies.php:50 +#: includes/currencies.php:54 +#: includes/currencies.php:61 +#: includes/currencies.php:71 +#: includes/currencies.php:73 +#: includes/currencies.php:75 +#: includes/currencies.php:94 +msgid "South Korean Won" +msgstr "Südkoreanische Won" + +#: includes/currencies.php:83 +#: includes/currencies.php:26 +#: includes/currencies.php:31 +#: includes/currencies.php:51 +#: includes/currencies.php:55 +#: includes/currencies.php:62 +#: includes/currencies.php:72 +#: includes/currencies.php:74 +#: includes/currencies.php:78 +#: includes/currencies.php:97 +msgid "Swedish Krona" +msgstr "Schwedische Krone" + +#: includes/currencies.php:84 +#: includes/currencies.php:27 +#: includes/currencies.php:32 +#: includes/currencies.php:52 +#: includes/currencies.php:56 +#: includes/currencies.php:63 +#: includes/currencies.php:73 +#: includes/currencies.php:75 +#: includes/currencies.php:79 +#: includes/currencies.php:98 +msgid "Swiss Franc" +msgstr "Schweizer Franken" + +#: includes/currencies.php:85 +#: includes/currencies.php:28 +#: includes/currencies.php:33 +#: includes/currencies.php:53 +#: includes/currencies.php:57 +#: includes/currencies.php:64 +#: includes/currencies.php:74 +#: includes/currencies.php:76 +#: includes/currencies.php:80 +#: includes/currencies.php:99 +msgid "Taiwan New Dollars" +msgstr "Taiwanesischer Neuer Dollar" + +#: includes/currencies.php:86 +#: includes/currencies.php:29 +#: includes/currencies.php:34 +#: includes/currencies.php:54 +#: includes/currencies.php:58 +#: includes/currencies.php:65 +#: includes/currencies.php:75 +#: includes/currencies.php:77 +#: includes/currencies.php:81 +#: includes/currencies.php:100 +msgid "Thai Baht" +msgstr "Thailändische Baht" + +#: includes/currencies.php:87 +#: includes/currencies.php:35 +#: includes/currencies.php:55 +#: includes/currencies.php:59 +#: includes/currencies.php:66 +#: includes/currencies.php:76 +#: includes/currencies.php:78 +#: includes/currencies.php:82 +#: includes/currencies.php:101 +msgid "Turkish Lira" +msgstr "Türkische Lira" + +#: includes/currencies.php:89 +#: includes/currencies.php:36 +#: includes/currencies.php:56 +#: includes/currencies.php:60 +#: includes/currencies.php:67 +#: includes/currencies.php:77 +#: includes/currencies.php:79 +#: includes/currencies.php:84 +#: includes/currencies.php:111 +msgid "Vietnamese Dong" +msgstr "Vietnamesische Dong" + +#: includes/filters.php:224 +#: includes/filters.php:217 +msgid "There was a potential issue while setting the 'Profile Start Date' for a user's subscription at checkout. PayPal does not allow one to set a Profile Start Date further than 1 year out. Typically, this is not an issue, but sometimes a combination of custom code or add ons for PMPro (e.g. the Prorating or Auto-renewal Checkbox add ons) will try to set a Profile Start Date out past 1 year in order to respect an existing user's original expiration date before they checked out. The user's information is below. PMPro has allowed the checkout and simply restricted the Profile Start Date to 1 year out with a possible additional free Trial of up to 1 year. You should double check this information to determine if maybe the user has overpaid or otherwise needs to be addressed. If you get many of these emails, you should consider adjusting your custom code to avoid these situations." +msgstr "Es gab ein mögliches Problem bei der Einstellung des „Profil-Startdatums“ für das Abonnement eines Benutzers an der Kasse. PayPal erlaubt es nicht, ein Profil-Startdatum weiter als 1 Jahr im Voraus festzulegen. Normalerweise ist dies kein Problem, aber manchmal versucht eine Kombination aus benutzerdefiniertem Code oder Add-Ons für PMPro (z. B. die Add-Ons „Prorating“ oder „Auto-renewal Checkbox“), ein Profil-Startdatum über 1 Jahr hinaus festzulegen, um das ursprüngliche Ablaufdatum eines bestehenden Benutzers zu respektieren, bevor dieser ausgecheckt hat. Die Informationen des Benutzers sind unten aufgeführt. PMPro hat die Abmeldung zugelassen und lediglich das Profil-Startdatum auf 1 Jahr mit einer möglichen zusätzlichen kostenlosen Testphase von bis zu 1 Jahr beschränkt. Sie sollten diese Informationen noch einmal überprüfen, um festzustellen, ob der Benutzer vielleicht zu viel bezahlt hat oder anderweitig angesprochen werden muss. Wenn Sie viele dieser E-Mails erhalten, sollten Sie erwägen, Ihren benutzerdefinierten Code anzupassen, um solche Situationen zu vermeiden." + +#: includes/filters.php:225 +#, php-format +msgid "User: %1$s
Email: %2$s
Membership Level: %3$s
Order #: %4$s
Original Profile Start Date: %5$s
Adjusted Profile Start Date: %6$s
Trial Period: %7$s
Trial Frequency: %8$s
" +msgstr "Benutzer: %1$s
E-Mail: %2$s
Mitgliedschafts-Paket: %3$s
Auftragsnummer: %4$s
Ursprüngliches Profil-Startdatum: %5$s
Angepasstes Profil-Startdatum: %6$s
Testzeitraum: %7$s
Testfrequenz: %8$s
" + +#: includes/filters.php:227 +#: includes/filters.php:220 +#, php-format +msgid "Profile Start Date Issue Detected and Fixed at %s" +msgstr "Profil-Startdatum-Problem erkannt und behoben bei %s" + +#: includes/functions.php:321 +#: includes/functions.php:433 +#: includes/functions.php:160 +#: includes/functions.php:196 +#: includes/functions.php:200 +#: includes/functions.php:202 +#: includes/functions.php:203 +#: includes/functions.php:204 +#: includes/functions.php:207 +#: includes/functions.php:243 +#: includes/functions.php:309 +#: includes/functions.php:315 +#: includes/functions.php:320 +#: includes/functions.php:329 +#: includes/functions.php:455 +#: includes/functions.php:464 +#: includes/functions.php:393 +#: includes/functions.php:509 +#: includes/functions.php:397 +#: includes/functions.php:515 +#, php-format +msgid "The price for membership is %s now" +msgstr "Der Preis für den Zugang beträgt %s" + +#: includes/functions.php:323 +#: includes/functions.php:435 +#: includes/functions.php:202 +#: includes/functions.php:204 +#: includes/functions.php:205 +#: includes/functions.php:206 +#: includes/functions.php:209 +#: includes/functions.php:245 +#: includes/functions.php:311 +#: includes/functions.php:317 +#: includes/functions.php:322 +#: includes/functions.php:331 +#: includes/functions.php:457 +#: includes/functions.php:466 +#: includes/functions.php:398 +#: includes/functions.php:511 +#: includes/functions.php:402 +#: includes/functions.php:517 +#, php-format +msgid "%s now" +msgstr "%s jetzt" + +#: includes/functions.php:330 +#: includes/functions.php:406 +#: includes/functions.php:410 +#, php-format +msgid " and then %1$s per %2$s for %3$d more %4$s." +msgstr " und dann %1$s pro %2$s für %3$d weitere %4$s." + +#: includes/functions.php:332 +#: includes/functions.php:408 +#: includes/functions.php:412 +#, php-format +msgid " and then %1$s every %2$d %3$s for %4$d more payments." +msgstr " und dann %1$s jede(n) %2$d %3$s für %4$d weitere Zahlungen." + +#: includes/functions.php:335 +#: includes/functions.php:411 +#: includes/functions.php:415 +#, php-format +msgid " and then %1$s after %2$d %3$s." +msgstr " und dann %1$s nach %2$d %3$s." + +#: includes/functions.php:340 +#: includes/functions.php:416 +#: includes/functions.php:420 +#, php-format +msgid "The price for membership is %1$s per %2$s." +msgstr "Der Preis für den Zugang beträgt %1$s pro %2$s." + +#: includes/functions.php:342 +#: includes/functions.php:418 +#: includes/functions.php:422 +#, php-format +msgid "%1$s per %2$s." +msgstr "%1$s pro %2$s." + +#: includes/functions.php:346 +#: includes/functions.php:422 +#: includes/functions.php:426 +#, php-format +msgid "The price for membership is %1$s every %2$d %3$s." +msgstr "Der Preis für den Zugang beträgt %1$s jede(n) %2$d %3$s." + +#: includes/functions.php:348 +#: includes/functions.php:424 +#: includes/functions.php:428 +#, php-format +msgid "%1$s every %2$d %3$s." +msgstr "%1$s jede(n) %2$d %3$s." + +#: includes/functions.php:353 +#: includes/functions.php:429 +#: includes/functions.php:433 +#, php-format +msgid " and then %1$s per %2$s." +msgstr " und dann %1$s pro %2$s." + +#: includes/functions.php:355 +#: includes/functions.php:431 +#: includes/functions.php:435 +#, php-format +msgid " and then %1$s every %2$d %3$s." +msgstr " und dann %1$s jede(n) %2$d %3$s." + +#: includes/functions.php:370 +#: includes/functions.php:202 +#: includes/functions.php:238 +#: includes/functions.php:249 +#: includes/functions.php:260 +#: includes/functions.php:261 +#: includes/functions.php:262 +#: includes/functions.php:264 +#: includes/functions.php:267 +#: includes/functions.php:271 +#: includes/functions.php:307 +#: includes/functions.php:373 +#: includes/functions.php:379 +#: includes/functions.php:384 +#: includes/functions.php:393 +#: pages/levels.php:82 +#: includes/functions.php:446 +#: includes/functions.php:450 +msgid "After your initial payment, your first payment is Free." +msgstr "Nach Ihrer Erst-Zahlung ist die nächste Zahlung kostenlos." + +#: includes/functions.php:372 +#: includes/functions.php:206 +#: includes/functions.php:242 +#: includes/functions.php:253 +#: includes/functions.php:264 +#: includes/functions.php:265 +#: includes/functions.php:266 +#: includes/functions.php:268 +#: includes/functions.php:271 +#: includes/functions.php:275 +#: includes/functions.php:311 +#: includes/functions.php:377 +#: includes/functions.php:383 +#: includes/functions.php:388 +#: includes/functions.php:397 +#: pages/levels.php:86 +#: includes/functions.php:448 +#: includes/functions.php:452 +#, php-format +msgid "After your initial payment, your first %d payments are Free." +msgstr "Nach Ihrer Erst-Zahlung ist die nächste %d Zahlung kostenlos." + +#: includes/functions.php:376 +#: includes/functions.php:213 +#: includes/functions.php:249 +#: includes/functions.php:260 +#: includes/functions.php:271 +#: includes/functions.php:272 +#: includes/functions.php:273 +#: includes/functions.php:275 +#: includes/functions.php:278 +#: includes/functions.php:282 +#: includes/functions.php:318 +#: includes/functions.php:384 +#: includes/functions.php:390 +#: includes/functions.php:395 +#: includes/functions.php:404 +#: pages/levels.php:93 +#: includes/functions.php:452 +#: includes/functions.php:456 +#, php-format +msgid "After your initial payment, your first payment will cost %s." +msgstr "Nach Ihrer Erst-Zahlung wird die nächste Zahlung %s betragen." + +#: includes/functions.php:378 +#: includes/functions.php:454 +#: includes/functions.php:458 +#, php-format +msgid "After your initial payment, your first %1$d payments will cost %2$s." +msgstr "Nach Ihrer Erst-Zahlung werden die ersten %1$d Zahlungen %2$s betragen." + +#: includes/functions.php:388 +#: includes/functions.php:489 +#: includes/functions.php:464 +#: includes/functions.php:565 +#: includes/functions.php:468 +#: includes/functions.php:571 +#, php-format +msgid "Customers in %1$s will be charged %2$s%% tax." +msgstr "Kunden aus %1$s werden zusätzlich %2$s%% Steuern berechnet." + +#: includes/functions.php:446 +#: includes/functions.php:522 +#: includes/functions.php:528 +#, php-format +msgid "%1$s per %2$s for %3$d more %4$s" +msgstr "%1$s pro %2$s für %3$d weitere %4$s" + +#: includes/functions.php:448 +#: includes/functions.php:524 +#: includes/functions.php:530 +#, php-format +msgid "%1$s every %2$d %3$s for %4$d more payments" +msgstr "%1$s jede(n) %2$d %3$s für %4$d weitere Zahlungen" + +#: includes/functions.php:451 +#: includes/functions.php:527 +#: includes/functions.php:533 +#, php-format +msgid "%1$s after %2$d %3$s" +msgstr "%1$s nach %2$d %3$s" + +#: includes/functions.php:454 +#: includes/functions.php:530 +#: includes/functions.php:536 +#, php-format +msgid "%1$s every %2$s" +msgstr "%1$s jede(n) %2$s" + +#: includes/functions.php:456 +#: includes/functions.php:532 +#: includes/functions.php:538 +#, php-format +msgid "%1$s every %2$d %3$s" +msgstr "%1$s jede(n) %2$d %3$s" + +#: includes/functions.php:478 +#: includes/functions.php:511 +#: includes/functions.php:520 +msgid "Trial pricing has been applied to the first payment." +msgstr "Für die erste Zahlung wurde ein Testpreis festgelegt." + +#: includes/functions.php:480 +#: includes/functions.php:513 +#: includes/functions.php:522 +#, php-format +msgid "Trial pricing has been applied to the first %d payments." +msgstr "Für die ersten %d-Zahlungen wurde ein Testpreis festgelegt." + +#: includes/functions.php:505 +#: includes/functions.php:582 +#: includes/functions.php:588 +#, php-format +msgid "Membership expires after %1$d %2$s." +msgstr "Zugang endet nach %1$d %2$s." + +#: includes/functions.php:524 +#: includes/functions.php:601 +#: includes/functions.php:607 +#, php-format +msgid "%1$s membership expires after %2$d %3$s" +msgstr "%1$s Mitgliedschaft läuft nach %2$d %3$s aus" + +#: includes/functions.php:877 +#: includes/functions.php:491 +#: includes/functions.php:514 +#: includes/functions.php:525 +#: includes/functions.php:536 +#: includes/functions.php:537 +#: includes/functions.php:538 +#: includes/functions.php:545 +#: includes/functions.php:569 +#: includes/functions.php:570 +#: includes/functions.php:576 +#: includes/functions.php:592 +#: includes/functions.php:615 +#: includes/functions.php:694 +#: includes/functions.php:760 +#: includes/functions.php:766 +#: includes/functions.php:945 +#: includes/functions.php:947 +#: includes/functions.php:956 +#: includes/functions.php:979 +#: includes/functions.php:986 +msgid "User ID not found." +msgstr "Benutzer ID nicht gefunden." + +#: includes/functions.php:889 +#: includes/functions.php:997 +#: includes/functions.php:1004 +msgid "No membership_id specified in pmpro_changeMembershipLevel." +msgstr "Keine membership_id in pmpro_changeMembershipLevel angegeben." + +#: includes/functions.php:895 +#: includes/functions.php:903 +#: includes/functions.php:508 +#: includes/functions.php:531 +#: includes/functions.php:542 +#: includes/functions.php:553 +#: includes/functions.php:554 +#: includes/functions.php:555 +#: includes/functions.php:562 +#: includes/functions.php:586 +#: includes/functions.php:587 +#: includes/functions.php:589 +#: includes/functions.php:596 +#: includes/functions.php:612 +#: includes/functions.php:635 +#: includes/functions.php:714 +#: includes/functions.php:780 +#: includes/functions.php:786 +#: includes/functions.php:965 +#: includes/functions.php:967 +#: includes/functions.php:976 +#: includes/functions.php:1003 +#: includes/functions.php:1011 +#: includes/functions.php:1010 +#: includes/functions.php:1018 +msgid "Invalid level." +msgstr "Ungültiges Paket." + +#: includes/functions.php:914 +#: includes/functions.php:520 +#: includes/functions.php:542 +#: includes/functions.php:553 +#: includes/functions.php:564 +#: includes/functions.php:565 +#: includes/functions.php:566 +#: includes/functions.php:573 +#: includes/functions.php:597 +#: includes/functions.php:598 +#: includes/functions.php:600 +#: includes/functions.php:607 +#: includes/functions.php:623 +#: includes/functions.php:646 +#: includes/functions.php:725 +#: includes/functions.php:791 +#: includes/functions.php:797 +#: includes/functions.php:976 +#: includes/functions.php:978 +#: includes/functions.php:987 +msgid "not changing?" +msgstr "nicht ändern?" + +#: includes/functions.php:970 +#: includes/functions.php:537 +#: includes/functions.php:559 +#: includes/functions.php:570 +#: includes/functions.php:581 +#: includes/functions.php:582 +#: includes/functions.php:583 +#: includes/functions.php:590 +#: includes/functions.php:592 +#: includes/functions.php:605 +#: includes/functions.php:614 +#: includes/functions.php:615 +#: includes/functions.php:617 +#: includes/functions.php:624 +#: includes/functions.php:626 +#: includes/functions.php:628 +#: includes/functions.php:631 +#: includes/functions.php:632 +#: includes/functions.php:633 +#: includes/functions.php:637 +#: includes/functions.php:640 +#: includes/functions.php:649 +#: includes/functions.php:656 +#: includes/functions.php:657 +#: includes/functions.php:663 +#: includes/functions.php:673 +#: includes/functions.php:674 +#: includes/functions.php:676 +#: includes/functions.php:683 +#: includes/functions.php:697 +#: includes/functions.php:698 +#: includes/functions.php:699 +#: includes/functions.php:700 +#: includes/functions.php:707 +#: includes/functions.php:722 +#: includes/functions.php:723 +#: includes/functions.php:742 +#: includes/functions.php:746 +#: includes/functions.php:808 +#: includes/functions.php:814 +#: includes/functions.php:815 +#: includes/functions.php:839 +#: includes/functions.php:881 +#: includes/functions.php:887 +#: includes/functions.php:905 +#: includes/functions.php:911 +#: includes/functions.php:1017 +#: includes/functions.php:1037 +#: includes/functions.php:1046 +#: includes/functions.php:1085 +#: includes/functions.php:1092 +msgid "Error interacting with database" +msgstr "Fehler bei der Datenbank-Abfrage." + +#: includes/functions.php:1067 +#: includes/functions.php:907 +#: includes/functions.php:1123 +#: includes/functions.php:1127 +#: includes/functions.php:1129 +#: includes/functions.php:1138 +#: includes/functions.php:1191 +#: includes/functions.php:1198 +#, php-format +msgid "Error interacting with database: %s" +msgstr "Fehler bei Datenbankverbindung: %s" + +#: includes/functions.php:1141 +#: includes/functions.php:1179 +#: includes/functions.php:629 +#: includes/functions.php:651 +#: includes/functions.php:667 +#: includes/functions.php:668 +#: includes/functions.php:678 +#: includes/functions.php:681 +#: includes/functions.php:690 +#: includes/functions.php:697 +#: includes/functions.php:698 +#: includes/functions.php:706 +#: includes/functions.php:714 +#: includes/functions.php:717 +#: includes/functions.php:720 +#: includes/functions.php:736 +#: includes/functions.php:737 +#: includes/functions.php:738 +#: includes/functions.php:739 +#: includes/functions.php:741 +#: includes/functions.php:748 +#: includes/functions.php:753 +#: includes/functions.php:764 +#: includes/functions.php:777 +#: includes/functions.php:778 +#: includes/functions.php:780 +#: includes/functions.php:787 +#: includes/functions.php:803 +#: includes/functions.php:826 +#: includes/functions.php:881 +#: includes/functions.php:920 +#: includes/functions.php:947 +#: includes/functions.php:948 +#: includes/functions.php:953 +#: includes/functions.php:986 +#: includes/functions.php:987 +#: includes/functions.php:992 +#: includes/functions.php:1198 +#: includes/functions.php:1202 +#: includes/functions.php:1204 +#: includes/functions.php:1213 +#: includes/functions.php:1237 +#: includes/functions.php:1241 +#: includes/functions.php:1243 +#: includes/functions.php:1252 +#: includes/functions.php:1304 +#: includes/functions.php:1342 +#: includes/functions.php:1343 +#: includes/functions.php:1382 +msgid "Membership level not found." +msgstr "Paket nicht gefunden." + +#: includes/functions.php:1533 +#: includes/functions.php:1100 +#: includes/functions.php:1101 +#: includes/functions.php:1118 +#: includes/functions.php:1142 +#: includes/functions.php:1143 +#: includes/functions.php:1150 +#: includes/functions.php:1157 +#: includes/functions.php:1173 +#: includes/functions.php:1196 +#: includes/functions.php:1290 +#: includes/functions.php:1356 +#: includes/functions.php:1357 +#: includes/functions.php:1362 +#: includes/functions.php:1605 +#: includes/functions.php:1609 +#: includes/functions.php:1611 +#: includes/functions.php:1620 +#: includes/functions.php:1722 +#: includes/functions.php:1767 +msgid "No code was given to check." +msgstr "Kein Code zur Überprüfung eingegeben." + +#: includes/functions.php:1542 +#: includes/functions.php:1050 +#: includes/functions.php:1072 +#: includes/functions.php:1088 +#: includes/functions.php:1099 +#: includes/functions.php:1102 +#: includes/functions.php:1109 +#: includes/functions.php:1110 +#: includes/functions.php:1112 +#: includes/functions.php:1113 +#: includes/functions.php:1127 +#: includes/functions.php:1151 +#: includes/functions.php:1152 +#: includes/functions.php:1159 +#: includes/functions.php:1166 +#: includes/functions.php:1182 +#: includes/functions.php:1205 +#: includes/functions.php:1299 +#: includes/functions.php:1365 +#: includes/functions.php:1366 +#: includes/functions.php:1371 +#: includes/functions.php:1614 +#: includes/functions.php:1618 +#: includes/functions.php:1620 +#: includes/functions.php:1629 +#: includes/functions.php:1731 +#: includes/functions.php:1776 +msgid "The discount code could not be found." +msgstr "Der Gutscheincode konnte nicht gefunden werden." + +#: includes/functions.php:1557 +#: includes/functions.php:1066 +#: includes/functions.php:1088 +#: includes/functions.php:1104 +#: includes/functions.php:1115 +#: includes/functions.php:1118 +#: includes/functions.php:1124 +#: includes/functions.php:1125 +#: includes/functions.php:1128 +#: includes/functions.php:1129 +#: includes/functions.php:1142 +#: includes/functions.php:1166 +#: includes/functions.php:1167 +#: includes/functions.php:1174 +#: includes/functions.php:1181 +#: includes/functions.php:1197 +#: includes/functions.php:1220 +#: includes/functions.php:1314 +#: includes/functions.php:1380 +#: includes/functions.php:1381 +#: includes/functions.php:1386 +#: includes/functions.php:1629 +#: includes/functions.php:1633 +#: includes/functions.php:1635 +#: includes/functions.php:1644 +#: includes/functions.php:1746 +#: includes/functions.php:1791 +#, php-format +msgid "This discount code goes into effect on %s." +msgstr "Dieser Gutscheincode gilt ab %s." + +#: includes/functions.php:1564 +#: includes/functions.php:1075 +#: includes/functions.php:1097 +#: includes/functions.php:1113 +#: includes/functions.php:1124 +#: includes/functions.php:1127 +#: includes/functions.php:1131 +#: includes/functions.php:1132 +#: includes/functions.php:1137 +#: includes/functions.php:1138 +#: includes/functions.php:1149 +#: includes/functions.php:1173 +#: includes/functions.php:1174 +#: includes/functions.php:1181 +#: includes/functions.php:1188 +#: includes/functions.php:1204 +#: includes/functions.php:1227 +#: includes/functions.php:1321 +#: includes/functions.php:1387 +#: includes/functions.php:1388 +#: includes/functions.php:1393 +#: includes/functions.php:1636 +#: includes/functions.php:1640 +#: includes/functions.php:1642 +#: includes/functions.php:1651 +#: includes/functions.php:1753 +#: includes/functions.php:1798 +#, php-format +msgid "This discount code expired on %s." +msgstr "Dieser Gutscheincode läuft am %s ab." + +#: includes/functions.php:1573 +#: includes/functions.php:1087 +#: includes/functions.php:1109 +#: includes/functions.php:1125 +#: includes/functions.php:1136 +#: includes/functions.php:1139 +#: includes/functions.php:1141 +#: includes/functions.php:1142 +#: includes/functions.php:1149 +#: includes/functions.php:1150 +#: includes/functions.php:1159 +#: includes/functions.php:1183 +#: includes/functions.php:1184 +#: includes/functions.php:1191 +#: includes/functions.php:1198 +#: includes/functions.php:1214 +#: includes/functions.php:1237 +#: includes/functions.php:1331 +#: includes/functions.php:1397 +#: includes/functions.php:1398 +#: includes/functions.php:1403 +#: includes/functions.php:1646 +#: includes/functions.php:1650 +#: includes/functions.php:1652 +#: includes/functions.php:1661 +#: includes/functions.php:1762 +#: includes/functions.php:1807 +msgid "This discount code is no longer valid." +msgstr "Dieser Gutscheincode ist nicht mehr gültig." + +#: includes/functions.php:1592 +#: includes/functions.php:1102 +#: includes/functions.php:1124 +#: includes/functions.php:1140 +#: includes/functions.php:1151 +#: includes/functions.php:1154 +#: includes/functions.php:1155 +#: includes/functions.php:1164 +#: includes/functions.php:1165 +#: includes/functions.php:1172 +#: includes/functions.php:1196 +#: includes/functions.php:1197 +#: includes/functions.php:1204 +#: includes/functions.php:1211 +#: includes/functions.php:1227 +#: includes/functions.php:1250 +#: includes/functions.php:1344 +#: includes/functions.php:1410 +#: includes/functions.php:1411 +#: includes/functions.php:1416 +#: includes/functions.php:1666 +#: includes/functions.php:1670 +#: includes/functions.php:1672 +#: includes/functions.php:1681 +#: includes/functions.php:1781 +#: includes/functions.php:1826 +msgid "This discount code does not apply to this membership level." +msgstr "Dieser Gutscheincode kann für dieses Mitgliedschafts-Paket nicht angewendet werden." + +#: includes/functions.php:1630 +#: includes/functions.php:1110 +#: includes/functions.php:1132 +#: includes/functions.php:1148 +#: includes/functions.php:1159 +#: includes/functions.php:1162 +#: includes/functions.php:1172 +#: includes/functions.php:1180 +#: includes/functions.php:1181 +#: includes/functions.php:1182 +#: includes/functions.php:1198 +#: includes/functions.php:1222 +#: includes/functions.php:1223 +#: includes/functions.php:1230 +#: includes/functions.php:1237 +#: includes/functions.php:1253 +#: includes/functions.php:1276 +#: includes/functions.php:1370 +#: includes/functions.php:1436 +#: includes/functions.php:1442 +#: includes/functions.php:1448 +#: includes/functions.php:1703 +#: includes/functions.php:1707 +#: includes/functions.php:1709 +#: includes/functions.php:1718 +#: includes/functions.php:1819 +#: includes/functions.php:1864 +msgid "This discount code is okay." +msgstr "Dieser Gutscheincode ist in Ordnung." + +#: includes/functions.php:1658 +#: includes/functions.php:1134 +#: includes/functions.php:1156 +#: includes/functions.php:1172 +#: includes/functions.php:1183 +#: includes/functions.php:1186 +#: includes/functions.php:1196 +#: includes/functions.php:1205 +#: includes/functions.php:1206 +#: includes/functions.php:1223 +#: includes/functions.php:1247 +#: includes/functions.php:1248 +#: includes/functions.php:1255 +#: includes/functions.php:1262 +#: includes/functions.php:1278 +#: includes/functions.php:1301 +#: includes/functions.php:1395 +#: includes/functions.php:1397 +#: includes/functions.php:1463 +#: includes/functions.php:1469 +#: includes/functions.php:1475 +#: includes/functions.php:1730 +#: includes/functions.php:1734 +#: includes/functions.php:1736 +#: includes/functions.php:1745 +#: includes/functions.php:1847 +#: includes/functions.php:1894 +msgid "and" +msgstr "und" + +#: includes/functions.php:1977 +#: includes/functions.php:1319 +#: includes/functions.php:1341 +#: includes/functions.php:1361 +#: includes/functions.php:1372 +#: includes/functions.php:1375 +#: includes/functions.php:1385 +#: includes/functions.php:1394 +#: includes/functions.php:1395 +#: includes/functions.php:1412 +#: includes/functions.php:1436 +#: includes/functions.php:1437 +#: includes/functions.php:1450 +#: includes/functions.php:1457 +#: includes/functions.php:1473 +#: includes/functions.php:1496 +#: includes/functions.php:1501 +#: includes/functions.php:1620 +#: includes/functions.php:1624 +#: includes/functions.php:1691 +#: includes/functions.php:1697 +#: includes/functions.php:1703 +#: includes/functions.php:2015 +#: includes/functions.php:2019 +#: includes/functions.php:2022 +#: includes/functions.php:2024 +#: includes/functions.php:2033 +#: includes/functions.php:2034 +#: includes/functions.php:2409 +#: includes/functions.php:2462 +msgid "Sign Up for !!name!! Now" +msgstr "Jetzt für !!name!! registrieren" + +#: includes/functions.php:1985 +#: includes/functions.php:1325 +#: includes/functions.php:1347 +#: includes/functions.php:1367 +#: includes/functions.php:1378 +#: includes/functions.php:1381 +#: includes/functions.php:1391 +#: includes/functions.php:1400 +#: includes/functions.php:1401 +#: includes/functions.php:1418 +#: includes/functions.php:1442 +#: includes/functions.php:1443 +#: includes/functions.php:1456 +#: includes/functions.php:1463 +#: includes/functions.php:1479 +#: includes/functions.php:1502 +#: includes/functions.php:1507 +#: includes/functions.php:1626 +#: includes/functions.php:1630 +#: includes/functions.php:1697 +#: includes/functions.php:1703 +#: includes/functions.php:1709 +#: includes/functions.php:2021 +#: includes/functions.php:2025 +#: includes/functions.php:2028 +#: includes/functions.php:2030 +#: includes/functions.php:2039 +#: includes/functions.php:2040 +msgid "Please specify a level id." +msgstr "BItte geben Sie eine Paket ID an." + +#: includes/functions.php:1991 +#: includes/functions.php:2046 +#: includes/functions.php:2047 +#, php-format +msgid "Level #%s not found." +msgstr "Paket Nummer%s nicht gefunden" + +#: includes/license.php:54 +#: includes/license.php:51 +#: adminpages/license.php:19 +msgid "Your license key has been validated." +msgstr "Ihr Lizenzschlüssel wurde bestätigt." + +#: includes/license.php:84 +#: includes/license.php:81 +#: adminpages/license.php:43 +#: adminpages/license.php:33 +#: adminpages/license.php:45 +msgid "Paid Memberships Pro Support License" +msgstr "Paid Memberships Pro Support Lizenz" + +#: includes/license.php:89 +#: includes/license.php:86 +msgid "License Key" +msgstr "Lizenzschlüssel" + +#: includes/license.php:92 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "Geben Sie Ihren Support-Lizenzschlüssel ein. Sie finden Ihren Lizenzschlüssel in Ihrer E-Mail-Bestätigung für die Mitgliedschaft oder in Ihrem Mitgliedskonto." + +#: includes/license.php:94 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "Besuchen Sie die PMPro Mitgliedskonto Seite, um zu bestätigen, dass Ihr Konto aktiv ist und um Ihren Lizenzschlüssel zu finden." + +#: includes/license.php:94 +#: includes/license.php:91 +#: adminpages/dashboard.php:174 +#: adminpages/license.php:49 +#: adminpages/dashboard.php:178 +#: adminpages/license.php:41 +#: adminpages/license.php:53 +msgid "Your license is invalid or expired." +msgstr "Ihre Lizenz ist ungültig oder abgelaufen." + +#: includes/license.php:96 +#: includes/license.php:93 +#, php-format +msgid "

Thank you! A valid %s license key has been used to activate your support license on this site.

" +msgstr "

Danke! Ein gültiger %s Lizenzschlüssel wurde verwenet um Ihre Supportlizenz auf dieser Seite zu aktivieren.

" + +#: includes/license.php:103 +#: includes/license.php:100 +#: adminpages/license.php:59 +#: adminpages/license.php:51 +#: adminpages/license.php:65 +msgid "Enter license key here..." +msgstr "Lizenzschlüssel hier eingeben..." + +#: includes/license.php:105 +#: includes/license.php:102 +msgid "Verify Key" +msgstr "Schlüssel bestätigen" + +#: includes/license.php:298 +#: includes/license.php:273 +#: includes/license.php:278 +#: includes/license.php:288 +#: includes/license.php:291 +msgid "Invalid PMPro License Key." +msgstr "Ungültiger PMPro Lizenzschlüssel." + +#: includes/license.php:301 +#: includes/license.php:273 +#: includes/license.php:278 +#: includes/license.php:288 +#: includes/license.php:291 +msgid "If you're running Paid Memberships Pro on a production website, we recommend an annual support license." +msgstr "Wenn Sie Paid Memberships Pro auf einer öffentlichen Webseite verwenden, empfehlen wir eine jährliche Supportlizenz." + +#: includes/license.php:302 +#: includes/updates/upgrade_1_9_4.php:27 +#: includes/license.php:274 +#: includes/license.php:279 +#: includes/license.php:289 +#: includes/license.php:292 +msgid "Dismiss" +msgstr "Ablehnen" + +#: includes/license.php:302 +#: includes/license.php:274 +#: includes/license.php:279 +#: includes/license.php:289 +#: includes/license.php:292 +msgid "More Info" +msgstr "Weitere Informationen" + +#: includes/localization.php:33 +#: includes/localization.php:23 +#: includes/localization.php:26 +#: includes/localization.php:36 +msgid "Day" +msgstr "Tag" + +#: includes/localization.php:35 +#: includes/localization.php:25 +#: includes/localization.php:28 +#: includes/localization.php:38 +msgid "Week" +msgstr "Woche" + +#: includes/localization.php:37 +#: includes/localization.php:27 +#: includes/localization.php:30 +#: includes/localization.php:40 +msgid "Month" +msgstr "Monat" + +#: includes/localization.php:39 +#: includes/localization.php:29 +#: includes/localization.php:32 +#: includes/localization.php:42 +msgid "Year" +msgstr "Jahr" + +#: includes/localization.php:44 +#: includes/localization.php:37 +#: includes/localization.php:49 +msgid "Days" +msgstr "Tage" + +#: includes/localization.php:46 +#: includes/localization.php:39 +#: includes/localization.php:51 +msgid "Weeks" +msgstr "Wochen" + +#: includes/localization.php:48 +#: includes/localization.php:41 +#: includes/localization.php:53 +msgid "Months" +msgstr "Monate" + +#: includes/localization.php:50 +#: includes/localization.php:43 +#: includes/localization.php:55 +msgid "Years" +msgstr "Jahre" + +#: includes/metaboxes.php:40 +#: includes/metaboxes.php:38 +#: includes/metaboxes.php:39 +#: includes/metaboxes.php:56 +msgid "This post is already protected for this level because it is within a category that requires membership." +msgstr "Dieser Artikel ist für dieses Paket bereits geschützt, weil er in einer Kategorie liegt, die Mitgliedschaft erfordert." + +#: includes/metaboxes.php:105 +#: includes/metaboxes.php:106 +#: includes/metaboxes.php:99 +#: includes/metaboxes.php:100 +#: includes/metaboxes.php:104 +#: includes/metaboxes.php:107 +#: includes/metaboxes.php:108 +#: blocks/membership/block.js:89 +#: blocks/membership/block.js:101 +#: js/blocks.build.js:1625 +#: js/blocks.build.js:1634 +#: includes/metaboxes.php:126 +#: includes/metaboxes.php:127 +msgid "Require Membership" +msgstr "Mitgliedschaft erforderlich" + +#: includes/metaboxes.php:136 +#: includes/metaboxes.php:130 +#: includes/metaboxes.php:135 +#: includes/metaboxes.php:155 +msgid "Only members of these levels will be able to view posts in this category." +msgstr "Nur Mitglieder dieses Pakets werden in der Lage sein, diese Posts in dieser Kategorie zu sehen." + +#: includes/privacy.php:19 +msgid "Data Collected to Manage Your Membership" +msgstr "Erfasste Daten zur Verwaltung Ihrer Mitgliedschaft" + +#: includes/privacy.php:20 +msgid "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." +msgstr "An der Kasse erfassen wir Ihren Namen, Ihre E-Mail-Adresse, Ihren Benutzernamen und Ihr Passwort. Diese Informationen werden verwendet, um Ihr Konto für unsere Website einzurichten. Wenn Sie zum Abschluss Ihrer Zahlung an ein externes Zahlungsgateway weitergeleitet werden, können wir diese Informationen in einer temporären Sitzungsvariablen speichern, um Ihr Konto einzurichten, wenn Sie zu unserer Website zurückkehren." + +#: includes/privacy.php:21 +msgid "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." +msgstr "An der Kasse können wir auch Ihre Rechnungsadresse und Telefonnummer erfragen. Diese Informationen werden verwendet, um Ihre Kreditkarte zu bestätigen. Die Rechnungsadresse und die Telefonnummer werden auf unserer Website gespeichert, um das Kassenformular für zukünftige Einkäufe auszufüllen und damit wir uns bei Bedarf mit Ihnen in Verbindung setzen können, um Ihre Bestellung zu besprechen." + +#: includes/privacy.php:22 +msgid "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." +msgstr "An der Kasse können wir auch Ihre Kreditkartennummer, das Ablaufdatum und den Sicherheitscode erfassen. Diese Informationen werden an unser Zahlungs-Gateway weitergeleitet, um Ihren Einkauf zu bearbeiten. Die letzten 4 Ziffern Ihrer Kreditkartennummer und das Ablaufdatum werden von unserer Website gespeichert, um sie als Referenz zu verwenden und Ihnen eine E-Mail zu senden, wenn Ihre Kreditkarte vor der nächsten wiederkehrenden Zahlung abläuft." + +#: includes/privacy.php:23 +msgid "When logged in, we use cookies to track some of your activity on our site including logins, visits, and page views." +msgstr "Wenn Sie eingeloggt sind, verwenden wir Cookies, um einige Ihrer Aktivitäten auf unserer Website zu verfolgen, einschließlich Logins, Besuche und Seitenaufrufe." + +#: includes/privacy.php:35 +#: includes/privacy.php:109 +msgid "Paid Memberships Pro Data" +msgstr "Paid Memberships Pro Daten" + +#: includes/privacy.php:81 +msgid "1 PMPro order was retained for business records." +msgstr "1 PMPro-Auftrag wurde für die Geschäftsunterlagen aufbewahrt." + +#: includes/privacy.php:83 +#, php-format +msgid "%d PMPro orders were retained for business records." +msgstr "%d PMPro-Aufträge wurden für Geschäftsunterlagen aufbewahrt." + +#: includes/privacy.php:88 +msgid "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." +msgstr "Bitte beachten Sie, dass durch das Löschen von Daten weder die Mitgliedschaft eines Benutzers noch aktive Abonnements gelöscht werden. Bitte bearbeiten oder löschen Sie den Benutzer über das WordPress-Dashboard." + +#: includes/privacy.php:160 +msgid "Paid Memberships Pro User Data" +msgstr "Paid Memberships Pro Benutzerdaten" + +#: includes/privacy.php:175 +#: adminpages/memberslist.php:184 +#: adminpages/memberslist.php:212 +#: adminpages/advancedsettings.php:316 +#: includes/profile.php:509 +#: includes/profile.php:515 +#: adminpages/advancedsettings.php:338 +#: includes/profile.php:551 +msgid "Never" +msgstr "Nie" + +#: includes/privacy.php:182 +#: includes/profile.php:425 +#: includes/profile.php:493 +#: includes/profile.php:499 +#: includes/profile.php:452 +#: includes/profile.php:535 +msgid "Level ID" +msgstr "Paket-ID" + +#: includes/privacy.php:190 +#: includes/profile.php:496 +#: includes/profile.php:502 +#: includes/profile.php:538 +msgid "Date Modified" +msgstr "Änderungsdatum" + +#: includes/privacy.php:194 +#: includes/profile.php:497 +#: includes/profile.php:503 +#: includes/profile.php:539 +msgid "End Date" +msgstr "End-Datum" + +#: includes/privacy.php:198 +#: includes/profile.php:498 +#: includes/profile.php:504 +#: includes/profile.php:540 +msgid "Level Cost" +msgstr "Paket-Preis" + +#: includes/privacy.php:209 +msgid "Paid Memberships Pro Membership History" +msgstr "Paid Memberships Pro Mitgliedschafts-Historie" + +#: includes/privacy.php:229 +msgid "Order ID" +msgstr "Bestell-ID" + +#: includes/privacy.php:233 +msgid "Order Code" +msgstr "Bestell-Code" + +#: includes/privacy.php:237 +msgid "Order Date" +msgstr "Bestelldatum" + +#: includes/privacy.php:241 +#: pages/billing.php:41 +#: pages/cancel.php:61 +#: pages/invoice.php:102 +#: pages/levels.php:35 +#: shortcodes/pmpro_account.php:44 +#: shortcodes/pmpro_account.php:128 +#: pages/account.php:12 +#: pages/account.php:18 +#: pages/account.php:92 +#: pages/billing.php:16 +#: pages/billing.php:25 +#: pages/billing.php:27 +#: pages/billing.php:28 +#: pages/billing.php:30 +#: pages/billing.php:44 +#: pages/billing.php:45 +#: pages/cancel.php:52 +#: pages/cancel.php:60 +#: pages/invoice.php:89 +#: pages/invoice.php:109 +#: pages/levels.php:13 +#: shortcodes/pmpro_account.php:43 +#: shortcodes/pmpro_account.php:123 +#: shortcodes/pmpro_account.php:125 +#: shortcodes/pmpro_account.php:126 +#: adminpages/dashboard.php:220 +#: adminpages/dashboard.php:288 +#: adminpages/orders.php:1337 +#: adminpages/reports/login.php:182 +#: includes/profile.php:424 +#: includes/profile.php:494 +#: pages/billing.php:70 +#: pages/cancel.php:70 +#: pages/invoice.php:124 +#: pages/levels.php:27 +#: shortcodes/pmpro_account.php:42 +#: shortcodes/pmpro_account.php:224 +#: blocks/checkout-button/inspector.js:39 +#: js/blocks.build.js:900 +#: adminpages/dashboard.php:224 +#: adminpages/dashboard.php:292 +#: adminpages/orders.php:1343 +#: includes/profile.php:500 +#: adminpages/dashboard.php:226 +#: adminpages/dashboard.php:294 +#: adminpages/orders.php:1429 +#: adminpages/reports/login.php:185 +#: includes/profile.php:451 +#: includes/profile.php:536 +msgid "Level" +msgstr "Paket" + +#: includes/privacy.php:333 +msgid "Paid Memberships Pro Order History" +msgstr "Paid Memberships Pro Bestellverlauf" + +#: includes/privacy.php:354 +msgid "Billing First Name" +msgstr "Vorname" + +#: includes/privacy.php:355 +msgid "Billing Last Name" +msgstr "Name" + +#: includes/privacy.php:356 +msgid "Billing Address 1" +msgstr "Adresse 1" + +#: includes/privacy.php:357 +msgid "Billing Address 2" +msgstr "Adresse 2" + +#: includes/privacy.php:359 +msgid "Billing State/Province" +msgstr "Bundesland" + +#: includes/privacy.php:361 +msgid "Billing Phone Number" +msgstr "Telefon" + +#: includes/privacy.php:363 +#: adminpages/emailtemplates.php:170 +#: adminpages/emailtemplates.php:162 +msgid "Credit Card Type" +msgstr "Kartentyp" + +#: includes/privacy.php:364 +msgid "Credit Card Account Number" +msgstr "Kreditkartennummer" + +#: includes/privacy.php:365 +msgid "Credit Card Expiration Month" +msgstr "Ablaufdatum Monat" + +#: includes/privacy.php:366 +msgid "Credit Card Expiration Year" +msgstr "Ablaufdatum Jahr" + +#: includes/privacy.php:367 +msgid "Login Data" +msgstr "Login-Daten" + +#: includes/privacy.php:368 +msgid "Visits Data" +msgstr "Besuche" + +#: includes/privacy.php:369 +msgid "Views Data" +msgstr "Ansichten" + +#: includes/privacy.php:507 +#: includes/privacy.php:513 +#, php-format +msgid "%s agreed to %s (ID #%d, last modified %s) on %s." +msgstr "%s hat %s (ID Nummer%d, zuletzt modifiziert %s) am %s zugestimmt." + +#: includes/privacy.php:515 +#: includes/privacy.php:520 +#: includes/privacy.php:521 +msgid "That post has since been updated." +msgstr "Dieser Eintrag wurde seither geändert." + +#: includes/profile.php:45 +#: includes/profile.php:34 +#: includes/profile.php:36 +#: includes/profile.php:39 +#: includes/profile.php:31 +msgid "Current Level" +msgstr "Aktuelles Paket" + +#: includes/profile.php:74 +#: includes/profile.php:221 +#: includes/profile.php:268 +#: includes/profile.php:54 +#: includes/profile.php:60 +#: includes/profile.php:65 +#: includes/profile.php:68 +#: includes/profile.php:195 +#: includes/profile.php:242 +#: includes/profile.php:208 +#: includes/profile.php:255 +#: includes/profile.php:202 +#: includes/profile.php:249 +msgid "Not paying." +msgstr "Nicht bezahlen." + +#: includes/profile.php:82 +#: includes/profile.php:64 +#: includes/profile.php:68 +#: includes/profile.php:73 +#: includes/profile.php:76 +#: includes/profile.php:44 +msgid "This will not change the subscription at the gateway unless the 'Cancel' checkbox is selected below." +msgstr "Dadurch wird das Abonnement am Gateway nicht geändert, es sei denn, das Kontrollkästchen „Abbrechen“ wird unten aktiviert." + +#: includes/profile.php:156 +#: includes/profile.php:138 +#: includes/profile.php:124 +msgid "Send the user an email about this change." +msgstr "Senden Sie dem Benutzer eine E-Mail über diese Änderung." + +#: includes/profile.php:162 +#: includes/profile.php:144 +#: includes/profile.php:130 +msgid "Cancel this user's subscription at the gateway." +msgstr "Das Abonnement dieses Benutzers am Gateway kündigen." + +#: includes/profile.php:176 +#: includes/profile.php:158 +#: includes/profile.php:150 +msgid "TOS Consent History" +msgstr "Verlauf der Kartenprüfnummern-Zustimmung" + +#: includes/updates.php:110 +#: includes/updates.php:97 +#: includes/updates.php:109 +msgid "Paid Memberships Pro Data Update Required" +msgstr "Paid Memberships Pro Daten-Update benötigt" + +#: includes/updates.php:111 +#: includes/updates.php:110 +#, php-format +msgid "(1) Backup your WordPress database and then (2) click here to start the update." +msgstr "(1) Sichern Sie Ihre WordPress Datenbank und dann (2) klicken Sie hier um die Aktualisierung zu starten." + +#: includes/updates.php:132 +#: includes/updates.php:123 +#: includes/updates.php:136 +#: includes/updates.php:130 +msgid "All Paid Memberships Pro updates have finished." +msgstr "Alle Paid Memberships Pro Aktualisierungen wurden abgeschlossen." + +#: includes/updates/upgrade_1.php:7 +#: includes/upgradecheck.php:401 +#: includes/upgradecheck.php:410 +#: includes/upgradecheck.php:422 +#: includes/upgradecheck.php:442 +#: includes/upgradecheck.php:542 +#: includes/upgradecheck.php:561 +#: includes/upgradecheck.php:563 +#, php-format +msgid "This content is for !!levels!! members only.
Register" +msgstr "Dieser Inhalt ist nur für !!levels!! Mitglieder.
Hier registrieren" + +#: includes/updates/upgrade_1.php:10 +#: includes/upgradecheck.php:404 +#: includes/upgradecheck.php:413 +#: includes/upgradecheck.php:425 +#: includes/upgradecheck.php:445 +#: includes/upgradecheck.php:545 +#: includes/upgradecheck.php:564 +#: includes/upgradecheck.php:566 +#, php-format +msgid "This content is for !!levels!! members only.
Log In Register" +msgstr "Dieser Inhalt ist nur für !!levels!! Mitglieder abrufbar.
Einloggen Registrieren" + +#: includes/updates/upgrade_1.php:14 +#: includes/upgradecheck.php:408 +#: includes/upgradecheck.php:417 +#: includes/upgradecheck.php:429 +#: includes/upgradecheck.php:449 +#: includes/upgradecheck.php:549 +#: includes/upgradecheck.php:568 +#: includes/upgradecheck.php:570 +msgid "This content is for !!levels!! members only. Visit the site and log in/register to read." +msgstr "Diese Inhalte sind nur für !!levels!! Mitglieder sichtbar. Bitte melden Sie sich an oder registrieren Sie sich, um die Inhalte zu sehen." + +#: includes/updates/upgrade_1_9_4.php:26 +msgid "We have detected that you are using a custom checkout page template for Paid Memberships Pro. This was recently changed and may need to be updated in order to display correctly." +msgstr "Wir haben festgestellt, dass Sie eine benutzerdefinierte Kassenseitenvorlage für Paid Memberships Pro verwenden. Diese wurde vor kurzem geändert und muss möglicherweise aktualisiert werden, um korrekt angezeigt zu werden." + +#: includes/updates/upgrade_1_9_4.php:27 +msgid "If you notice UI issues after upgrading, see this free add on to temporarily roll back to the table-based layout while you resolve the issues." +msgstr "Wenn Sie nach dem Upgrade Probleme mit der Benutzeroberfläche feststellen, sehen Sie sich dieses kostenlose Add-on an, um vorübergehend zum tabellenbasierten Layout zurückzukehren, während Sie die Probleme beheben." + +#: pages/billing.php:23 +#: pages/billing.php:14 +#: pages/billing.php:25 +#: pages/billing.php:26 +#: pages/billing.php:27 +#: pages/billing.php:28 +#: pages/billing.php:46 +#, php-format +msgid "Logged in as %s." +msgstr "Eingeloggt als %s." + +#: pages/billing.php:23 +#: pages/billing.php:14 +#: pages/billing.php:25 +#: pages/billing.php:26 +#: pages/billing.php:27 +#: pages/billing.php:28 +#: pages/billing.php:46 +msgid "logout" +msgstr "Ausloggen" + +#: pages/billing.php:43 +#: pages/account.php:14 +#: pages/billing.php:18 +#: pages/billing.php:27 +#: pages/billing.php:29 +#: pages/billing.php:30 +#: pages/billing.php:32 +#: pages/billing.php:46 +#: pages/billing.php:47 +#: pages/billing.php:72 +#: pages/billing.php:73 +msgid "Membership Fee" +msgstr "Gebühr" + +#: pages/billing.php:47 +#: pages/account.php:18 +#: pages/billing.php:22 +#: pages/billing.php:31 +#: pages/billing.php:33 +#: pages/billing.php:34 +#: pages/billing.php:36 +#: pages/billing.php:50 +#: pages/billing.php:51 +#: pages/levels.php:70 +#: pages/billing.php:76 +#: pages/billing.php:77 +#, php-format +msgid "%s every %d %s." +msgstr "%s jede(n) %d %s." + +#: pages/billing.php:49 +#: pages/account.php:20 +#: pages/billing.php:24 +#: pages/billing.php:33 +#: pages/billing.php:35 +#: pages/billing.php:36 +#: pages/billing.php:38 +#: pages/billing.php:52 +#: pages/billing.php:53 +#: pages/levels.php:66 +#: pages/billing.php:78 +#: pages/billing.php:79 +#, php-format +msgid "%s per %s." +msgstr "%s pro %s." + +#: pages/billing.php:59 +#: pages/account.php:25 +#: pages/account.php:29 +#: pages/billing.php:29 +#: pages/billing.php:33 +#: pages/billing.php:42 +#: pages/billing.php:44 +#: pages/billing.php:45 +#: pages/billing.php:47 +#: pages/billing.php:62 +#: pages/billing.php:63 +#: pages/billing.php:89 +#: pages/billing.php:90 +msgid "Duration" +msgstr "Zeitraum" + +#: pages/billing.php:77 +#: pages/billing.php:39 +#: pages/billing.php:43 +#: pages/billing.php:52 +#: pages/billing.php:54 +#: pages/billing.php:55 +#: pages/billing.php:57 +#: pages/billing.php:80 +#: pages/billing.php:81 +#: pages/billing.php:128 +#: pages/billing.php:130 +msgid "Your payment subscription is managed by PayPal. Please login to PayPal here to update your billing information." +msgstr "Ihre Zahlungen werden von PayPal abgewickelt. Sie können sich hier bei PayPal einloggen um Ihre Zahlungsinformationen zu aktualisieren." + +#: pages/billing.php:104 +#: pages/checkout.php:279 +#: pages/billing.php:65 +#: pages/billing.php:69 +#: pages/billing.php:78 +#: pages/billing.php:81 +#: pages/billing.php:83 +#: pages/billing.php:84 +#: pages/billing.php:87 +#: pages/billing.php:107 +#: pages/billing.php:108 +#: pages/billing.php:110 +#: pages/checkout.php:305 +#: pages/checkout.php:307 +#: pages/checkout.php:309 +#: pages/checkout.php:318 +#: pages/checkout.php:321 +#: pages/checkout.php:324 +#: pages/checkout.php:326 +#: pages/checkout.php:328 +#: pages/checkout.php:333 +#: pages/checkout.php:336 +#: includes/profile.php:747 +#: pages/billing.php:164 +#: pages/checkout.php:234 +#: includes/profile.php:759 +#: includes/profile.php:795 +#: pages/billing.php:166 +msgid "First Name" +msgstr "Vorname" + +#: pages/billing.php:108 +#: pages/checkout.php:283 +#: pages/billing.php:69 +#: pages/billing.php:73 +#: pages/billing.php:82 +#: pages/billing.php:85 +#: pages/billing.php:87 +#: pages/billing.php:88 +#: pages/billing.php:91 +#: pages/billing.php:111 +#: pages/billing.php:112 +#: pages/billing.php:114 +#: pages/checkout.php:309 +#: pages/checkout.php:311 +#: pages/checkout.php:313 +#: pages/checkout.php:322 +#: pages/checkout.php:325 +#: pages/checkout.php:328 +#: pages/checkout.php:330 +#: pages/checkout.php:332 +#: pages/checkout.php:337 +#: pages/checkout.php:340 +#: includes/profile.php:748 +#: pages/billing.php:168 +#: pages/checkout.php:238 +#: includes/profile.php:760 +#: includes/profile.php:796 +#: pages/billing.php:170 +msgid "Last Name" +msgstr "Nachname" + +#: pages/billing.php:112 +#: pages/checkout.php:287 +#: pages/billing.php:73 +#: pages/billing.php:77 +#: pages/billing.php:86 +#: pages/billing.php:89 +#: pages/billing.php:91 +#: pages/billing.php:92 +#: pages/billing.php:95 +#: pages/billing.php:115 +#: pages/billing.php:116 +#: pages/billing.php:118 +#: pages/checkout.php:313 +#: pages/checkout.php:315 +#: pages/checkout.php:317 +#: pages/checkout.php:326 +#: pages/checkout.php:329 +#: pages/checkout.php:332 +#: pages/checkout.php:334 +#: pages/checkout.php:336 +#: pages/checkout.php:341 +#: pages/checkout.php:344 +#: pages/billing.php:174 +#: pages/checkout.php:242 +#: pages/billing.php:176 +msgid "Address 1" +msgstr "Adresse 1" + +#: pages/billing.php:116 +#: pages/checkout.php:291 +#: pages/billing.php:77 +#: pages/billing.php:81 +#: pages/billing.php:90 +#: pages/billing.php:93 +#: pages/billing.php:95 +#: pages/billing.php:96 +#: pages/billing.php:99 +#: pages/billing.php:119 +#: pages/billing.php:120 +#: pages/billing.php:122 +#: pages/checkout.php:317 +#: pages/checkout.php:319 +#: pages/checkout.php:321 +#: pages/checkout.php:330 +#: pages/checkout.php:333 +#: pages/checkout.php:336 +#: pages/checkout.php:338 +#: pages/checkout.php:340 +#: pages/checkout.php:345 +#: pages/checkout.php:348 +#: pages/billing.php:178 +#: pages/checkout.php:246 +#: pages/billing.php:180 +msgid "Address 2" +msgstr "Adresse 2" + +#: pages/billing.php:126 +#: pages/checkout.php:298 +#: pages/billing.php:87 +#: pages/billing.php:91 +#: pages/billing.php:100 +#: pages/billing.php:103 +#: pages/billing.php:105 +#: pages/billing.php:106 +#: pages/billing.php:109 +#: pages/billing.php:129 +#: pages/billing.php:130 +#: pages/billing.php:132 +#: pages/checkout.php:327 +#: pages/checkout.php:329 +#: pages/checkout.php:331 +#: pages/checkout.php:340 +#: pages/checkout.php:343 +#: pages/checkout.php:346 +#: pages/checkout.php:348 +#: pages/checkout.php:350 +#: pages/checkout.php:355 +#: pages/checkout.php:358 +#: pages/billing.php:188 +#: pages/checkout.php:253 +#: pages/billing.php:191 +msgid "City" +msgstr "Ort" + +#: pages/billing.php:130 +#: pages/checkout.php:302 +#: pages/billing.php:91 +#: pages/billing.php:95 +#: pages/billing.php:104 +#: pages/billing.php:107 +#: pages/billing.php:109 +#: pages/billing.php:110 +#: pages/billing.php:113 +#: pages/billing.php:133 +#: pages/billing.php:134 +#: pages/billing.php:136 +#: pages/checkout.php:331 +#: pages/checkout.php:333 +#: pages/checkout.php:335 +#: pages/checkout.php:344 +#: pages/checkout.php:347 +#: pages/checkout.php:350 +#: pages/checkout.php:352 +#: pages/checkout.php:354 +#: pages/checkout.php:359 +#: pages/checkout.php:362 +#: pages/billing.php:192 +#: pages/checkout.php:257 +#: pages/billing.php:195 +msgid "State" +msgstr "Bundesland" + +#: pages/billing.php:134 +#: pages/checkout.php:306 +#: pages/billing.php:95 +#: pages/billing.php:99 +#: pages/billing.php:108 +#: pages/billing.php:111 +#: pages/billing.php:113 +#: pages/billing.php:114 +#: pages/billing.php:117 +#: pages/billing.php:137 +#: pages/billing.php:138 +#: pages/billing.php:140 +#: pages/checkout.php:335 +#: pages/checkout.php:337 +#: pages/checkout.php:339 +#: pages/checkout.php:348 +#: pages/checkout.php:351 +#: pages/checkout.php:354 +#: pages/checkout.php:356 +#: pages/checkout.php:358 +#: pages/checkout.php:363 +#: pages/checkout.php:366 +#: pages/billing.php:196 +#: pages/checkout.php:261 +#: pages/billing.php:199 +msgid "Postal Code" +msgstr "Postleitzahl" + +#: pages/billing.php:143 +#: pages/checkout.php:311 +#: pages/billing.php:104 +#: pages/billing.php:108 +#: pages/billing.php:117 +#: pages/billing.php:120 +#: pages/billing.php:122 +#: pages/billing.php:123 +#: pages/billing.php:126 +#: pages/billing.php:146 +#: pages/billing.php:147 +#: pages/billing.php:149 +#: pages/checkout.php:344 +#: pages/checkout.php:346 +#: pages/checkout.php:348 +#: pages/checkout.php:357 +#: pages/checkout.php:360 +#: pages/checkout.php:363 +#: pages/checkout.php:365 +#: pages/checkout.php:367 +#: pages/checkout.php:372 +#: pages/checkout.php:375 +#: pages/billing.php:205 +#: pages/checkout.php:266 +#: pages/billing.php:208 +msgid "City, State Zip" +msgstr "Ort, Bundesland" + +#: pages/billing.php:196 +#: pages/checkout.php:348 +#: pages/billing.php:157 +#: pages/billing.php:161 +#: pages/billing.php:170 +#: pages/billing.php:173 +#: pages/billing.php:175 +#: pages/billing.php:176 +#: pages/billing.php:179 +#: pages/billing.php:199 +#: pages/billing.php:200 +#: pages/billing.php:202 +#: pages/checkout.php:397 +#: pages/checkout.php:399 +#: pages/checkout.php:401 +#: pages/checkout.php:410 +#: pages/checkout.php:413 +#: pages/checkout.php:416 +#: pages/checkout.php:418 +#: pages/checkout.php:420 +#: pages/checkout.php:425 +#: pages/checkout.php:428 +#: pages/billing.php:258 +#: pages/checkout.php:303 +#: pages/billing.php:261 +msgid "Country" +msgstr "Land" + +#: pages/billing.php:221 +#: pages/checkout.php:364 +#: pages/billing.php:182 +#: pages/billing.php:186 +#: pages/billing.php:195 +#: pages/billing.php:198 +#: pages/billing.php:200 +#: pages/billing.php:201 +#: pages/billing.php:204 +#: pages/billing.php:224 +#: pages/billing.php:225 +#: pages/billing.php:227 +#: pages/checkout.php:422 +#: pages/checkout.php:424 +#: pages/checkout.php:426 +#: pages/checkout.php:435 +#: pages/checkout.php:438 +#: pages/checkout.php:441 +#: pages/checkout.php:443 +#: pages/checkout.php:445 +#: pages/checkout.php:450 +#: pages/checkout.php:453 +#: pages/billing.php:283 +#: pages/checkout.php:319 +#: pages/billing.php:287 +msgid "Phone" +msgstr "Telefon" + +#: pages/billing.php:232 +#: pages/checkout.php:197 +#: pages/checkout.php:379 +#: pages/billing.php:193 +#: pages/billing.php:197 +#: pages/billing.php:206 +#: pages/billing.php:209 +#: pages/billing.php:211 +#: pages/billing.php:212 +#: pages/billing.php:215 +#: pages/billing.php:235 +#: pages/billing.php:236 +#: pages/billing.php:238 +#: pages/checkout.php:204 +#: pages/checkout.php:207 +#: pages/checkout.php:209 +#: pages/checkout.php:216 +#: pages/checkout.php:218 +#: pages/checkout.php:220 +#: pages/checkout.php:227 +#: pages/checkout.php:230 +#: pages/checkout.php:436 +#: pages/checkout.php:438 +#: pages/checkout.php:440 +#: pages/checkout.php:449 +#: pages/checkout.php:453 +#: pages/checkout.php:455 +#: pages/checkout.php:457 +#: pages/checkout.php:460 +#: pages/checkout.php:464 +#: pages/checkout.php:467 +#: pages/billing.php:294 +#: pages/checkout.php:164 +#: pages/checkout.php:334 +#: pages/billing.php:298 +msgid "Email Address" +msgstr "E-Mail Adresse" + +#: pages/billing.php:236 +#: pages/checkout.php:386 +#: pages/billing.php:197 +#: pages/billing.php:201 +#: pages/billing.php:210 +#: pages/billing.php:213 +#: pages/billing.php:215 +#: pages/billing.php:216 +#: pages/billing.php:219 +#: pages/billing.php:239 +#: pages/billing.php:240 +#: pages/billing.php:242 +#: pages/checkout.php:445 +#: pages/checkout.php:447 +#: pages/checkout.php:449 +#: pages/checkout.php:458 +#: pages/checkout.php:462 +#: pages/checkout.php:464 +#: pages/checkout.php:466 +#: pages/checkout.php:469 +#: pages/checkout.php:473 +#: pages/checkout.php:476 +#: pages/billing.php:298 +#: pages/checkout.php:341 +#: pages/billing.php:302 +msgid "Confirm Email" +msgstr "E-Mail bestätigen" + +#: pages/billing.php:259 +#: pages/billing.php:217 +#: pages/billing.php:221 +#: pages/billing.php:230 +#: pages/billing.php:231 +#: pages/billing.php:234 +#: pages/billing.php:238 +#: pages/billing.php:244 +#: pages/billing.php:247 +#: pages/billing.php:262 +#: pages/billing.php:263 +#: pages/billing.php:270 +#: pages/billing.php:321 +#: pages/billing.php:325 +msgid "Credit Card Information" +msgstr "Kreditkarten Informationen" + +#: pages/billing.php:260 +#: pages/billing.php:217 +#: pages/billing.php:221 +#: pages/billing.php:230 +#: pages/billing.php:232 +#: pages/billing.php:235 +#: pages/billing.php:239 +#: pages/billing.php:245 +#: pages/billing.php:248 +#: pages/billing.php:263 +#: pages/billing.php:264 +#: pages/billing.php:271 +#: pages/billing.php:322 +#: pages/billing.php:326 +#, php-format +msgid "We accept %s" +msgstr "Wir aktzeptieren %s" + +#: pages/billing.php:378 +#: pages/billing.php:309 +#: pages/billing.php:313 +#: pages/billing.php:344 +#: pages/billing.php:353 +#: pages/billing.php:356 +#: pages/billing.php:360 +#: pages/billing.php:364 +#: pages/billing.php:380 +#: pages/billing.php:381 +#: pages/billing.php:385 +#: pages/billing.php:387 +#: pages/billing.php:408 +#: pages/billing.php:413 +#: pages/billing.php:417 +#: pages/billing.php:422 +#: pages/billing.php:467 +#: pages/billing.php:484 +msgid "This subscription is not recurring. So you don't need to update your billing information." +msgstr "Keine weiteren Zahlungen erforderlich. Ihre Zahlungsinformationen müssen daher nicht aktualisiert werden." + +#: pages/cancel.php:34 +#: pages/cancel.php:14 +#: pages/cancel.php:26 +#: pages/cancel.php:33 +#: pages/cancel.php:44 +msgid "Are you sure you want to cancel your membership?" +msgstr "Sind Sie sicher, dass Sie Ihren Konto löschen wollen?" + +#: pages/cancel.php:41 +#: pages/cancel.php:32 +#: pages/cancel.php:40 +#: pages/cancel.php:51 +#, php-format +msgid "Are you sure you want to cancel your %s membership?" +msgid_plural "Are you sure you want to cancel your %s memberships?" +msgstr[0] "" +msgstr[1] "" + +#: pages/cancel.php:46 +#: pages/cancel.php:45 +#: pages/cancel.php:56 +msgid "Yes, cancel this membership" +msgstr "Ja, Mitgliedschaft kündigen" + +#: pages/cancel.php:47 +#: pages/cancel.php:46 +#: pages/cancel.php:57 +msgid "No, keep this membership" +msgstr "Nein, diese Mitgliedschaft behalten." + +#: pages/cancel.php:57 +#: shortcodes/pmpro_account.php:40 +#: pages/account.php:14 +#: pages/cancel.php:48 +#: pages/cancel.php:56 +#: shortcodes/pmpro_account.php:39 +#: pages/cancel.php:66 +#: shortcodes/pmpro_account.php:38 +msgid "My Memberships" +msgstr "Meine Mitgliedschaften" + +#: pages/cancel.php:93 +#: pages/cancel.php:77 +#: pages/cancel.php:92 +#: pages/cancel.php:105 +msgid "Cancel All Memberships" +msgstr "Alle Mitgliedschaften kündigen" + +#: pages/cancel.php:102 +#: pages/cancel.php:22 +#: pages/cancel.php:86 +#: pages/cancel.php:101 +#: pages/cancel.php:114 +msgid "Click here to go to the home page." +msgstr "Klicken Sie hier, um zur Startseite zu gelangen." + +#: pages/checkout.php:30 +#: pages/checkout.php:26 +#: pages/checkout.php:27 +#: pages/checkout.php:28 +#: pages/checkout.php:35 +#: pages/checkout.php:38 +#: pages/checkout.php:54 +msgid "Almost done. Review the membership information and pricing below then click the \"Complete Payment\" button to finish your order." +msgstr "Fast fertig. Kontrollieren Sie bitte die untenstehenden Informationen und klicken Sie auf \"Zahlung abschließen\" um Ihre Bestellung abzuschließen." + +#: pages/checkout.php:35 +#: pages/checkout.php:33 +#: pages/checkout.php:34 +#: pages/checkout.php:42 +#: pages/checkout.php:43 +#: pages/checkout.php:46 +#: pages/checkout.php:64 +msgid "change" +msgstr "ändern" + +#: pages/checkout.php:39 +#: pages/checkout.php:41 +#: pages/checkout.php:42 +#: pages/checkout.php:43 +#: pages/checkout.php:50 +#: pages/checkout.php:51 +#: pages/checkout.php:54 +#: pages/checkout.php:68 +#, php-format +msgid "You have selected the %s membership level." +msgstr "Sie haben das Paket %s gewählt." + +#: pages/checkout.php:56 +#: pages/checkout.php:51 +#: pages/checkout.php:53 +#: pages/checkout.php:60 +#: pages/checkout.php:61 +#: pages/checkout.php:68 +#: pages/checkout.php:71 +#, php-format +msgid "

The %s code has been applied to your order.

" +msgstr "

Der %s Code wurde für Ihre Bestellung übernommen.

" + +#: pages/checkout.php:66 +#: services/applydiscountcode.php:92 +#: pages/checkout.php:62 +#: pages/checkout.php:63 +#: pages/checkout.php:64 +#: pages/checkout.php:71 +#: pages/checkout.php:72 +#: pages/checkout.php:79 +#: pages/checkout.php:82 +#: services/applydiscountcode.php:74 +#: services/applydiscountcode.php:75 +#: services/applydiscountcode.php:78 +#: services/applydiscountcode.php:89 +#: services/applydiscountcode.php:127 +msgid "Click here to change your discount code" +msgstr "Klicken Sie hier, um Ihren Gutscheincode ändern" + +#: pages/checkout.php:68 +#: pages/checkout.php:64 +#: pages/checkout.php:65 +#: pages/checkout.php:66 +#: pages/checkout.php:73 +#: pages/checkout.php:74 +#: pages/checkout.php:81 +#: pages/checkout.php:84 +#: pages/checkout.php:97 +msgid "Click here to enter your discount code" +msgstr "Klicken Sie hier, um Ihren Gutscheincode einzugeben" + +#: pages/checkout.php:68 +#: pages/checkout.php:64 +#: pages/checkout.php:65 +#: pages/checkout.php:66 +#: pages/checkout.php:73 +#: pages/checkout.php:74 +#: pages/checkout.php:81 +#: pages/checkout.php:84 +#: pages/checkout.php:97 +msgid "Do you have a discount code?" +msgstr "Haben Sie einen Gutscheincode?" + +#: pages/checkout.php:162 +#: pages/checkout.php:160 +#: pages/checkout.php:163 +#: pages/checkout.php:165 +#: pages/checkout.php:172 +#: pages/checkout.php:173 +#: pages/checkout.php:175 +#: pages/checkout.php:182 +#: pages/checkout.php:185 +#: pages/checkout.php:129 +msgid "Account Information" +msgstr "Konto Informationen" + +#: pages/checkout.php:163 +#: pages/checkout.php:160 +#: pages/checkout.php:165 +#: pages/checkout.php:172 +#: pages/checkout.php:174 +#: pages/checkout.php:176 +#: pages/checkout.php:183 +#: pages/checkout.php:186 +#: pages/checkout.php:130 +msgid "Already have an account?" +msgstr "Sie haben schon einen Konto?" + +#: pages/checkout.php:163 +#: pages/checkout.php:160 +#: pages/checkout.php:165 +#: pages/checkout.php:172 +#: pages/checkout.php:174 +#: pages/checkout.php:176 +#: pages/checkout.php:183 +#: pages/checkout.php:186 +#: pages/checkout.php:130 +msgid "Log in here" +msgstr "Hier einloggen" + +#: pages/checkout.php:184 +#: pages/checkout.php:186 +#: pages/checkout.php:189 +#: pages/checkout.php:191 +#: pages/checkout.php:198 +#: pages/checkout.php:200 +#: pages/checkout.php:202 +#: pages/checkout.php:209 +#: pages/checkout.php:212 +#: pages/checkout.php:151 +msgid "Confirm Password" +msgstr "Passwort bestätigen" + +#: pages/checkout.php:205 +#: pages/checkout.php:213 +#: pages/checkout.php:216 +#: pages/checkout.php:218 +#: pages/checkout.php:225 +#: pages/checkout.php:227 +#: pages/checkout.php:229 +#: pages/checkout.php:236 +#: pages/checkout.php:239 +#: pages/checkout.php:172 +msgid "Confirm Email Address" +msgstr "E-Mail Adresse bestätigen" + +#: pages/checkout.php:218 +#: pages/checkout.php:232 +#: pages/checkout.php:235 +#: pages/checkout.php:237 +#: pages/checkout.php:244 +#: pages/checkout.php:246 +#: pages/checkout.php:248 +#: pages/checkout.php:255 +#: pages/checkout.php:258 +#: pages/checkout.php:185 +msgid "Full Name" +msgstr "Vollständiger Name" + +#: pages/checkout.php:219 +#: pages/checkout.php:233 +#: pages/checkout.php:236 +#: pages/checkout.php:238 +#: pages/checkout.php:245 +#: pages/checkout.php:247 +#: pages/checkout.php:249 +#: pages/checkout.php:256 +#: pages/checkout.php:259 +#: pages/checkout.php:186 +msgid "LEAVE THIS BLANK" +msgstr "DIESES FELD LEER LASSEN" + +#: pages/checkout.php:238 +#: pages/checkout.php:257 +#: pages/checkout.php:260 +#: pages/checkout.php:262 +#: pages/checkout.php:269 +#: pages/checkout.php:271 +#: pages/checkout.php:273 +#: pages/checkout.php:280 +#: pages/checkout.php:283 +#: pages/checkout.php:193 +#, php-format +msgid "You are logged in as %s. If you would like to use a different account for this membership, log out now." +msgstr "Sie sind eingeloggt als %s. Wenn Sie für diese Mitgliedschaft einen anderen Konto verwenden wollen, ausloggen." + +#: pages/checkout.php:254 +#: pages/checkout.php:276 +#: pages/checkout.php:278 +#: pages/checkout.php:285 +#: pages/checkout.php:287 +#: pages/checkout.php:289 +#: pages/checkout.php:292 +#: pages/checkout.php:296 +#: pages/checkout.php:299 +#: pages/checkout.php:209 +msgid "Choose your Payment Method" +msgstr "Wählen Sie Ihre Zahlungsmethode" + +#: pages/checkout.php:259 +#: pages/checkout.php:284 +#: pages/checkout.php:286 +#: pages/checkout.php:293 +#: pages/checkout.php:296 +#: pages/checkout.php:298 +#: pages/checkout.php:300 +#: pages/checkout.php:305 +#: pages/checkout.php:307 +#: pages/checkout.php:308 +#: pages/checkout.php:214 +msgid "Check Out with a Credit Card Here" +msgstr "Mit Kreditkarte bezahlen" + +#: pages/checkout.php:567 +#: pages/checkout.php:277 +#: pages/checkout.php:284 +#: pages/checkout.php:657 +#: pages/checkout.php:672 +#: pages/checkout.php:673 +#: pages/checkout.php:681 +#: pages/checkout.php:686 +#: pages/checkout.php:690 +#: pages/checkout.php:692 +#: pages/checkout.php:693 +#: pages/checkout.php:696 +#: pages/checkout.php:697 +#: pages/checkout.php:476 +#: pages/checkout.php:478 +#, php-format +msgid "I agree to the %s" +msgstr "Ich stimme der %s zu" + +#: pages/checkout.php:586 +#: pages/checkout.php:667 +#: pages/checkout.php:674 +#: pages/checkout.php:677 +#: pages/checkout.php:692 +#: pages/checkout.php:693 +#: pages/checkout.php:701 +#: pages/checkout.php:706 +#: pages/checkout.php:710 +#: pages/checkout.php:712 +#: pages/checkout.php:713 +#: pages/checkout.php:716 +#: pages/checkout.php:717 +#: pages/checkout.php:514 +#: pages/checkout.php:526 +msgid "Complete Payment" +msgstr "Zahlung abschließen" + +#: pages/checkout.php:608 +#: pages/checkout.php:687 +#: pages/checkout.php:694 +#: pages/checkout.php:697 +#: pages/checkout.php:713 +#: pages/checkout.php:714 +#: pages/checkout.php:723 +#: pages/checkout.php:728 +#: pages/checkout.php:732 +#: pages/checkout.php:734 +#: pages/checkout.php:735 +#: pages/checkout.php:738 +#: pages/checkout.php:739 +#: pages/checkout.php:536 +#: pages/checkout.php:548 +msgid "Processing..." +msgstr "wird bearbeitet..." + +#: pages/confirmation.php:12 +#: pages/confirmation.php:25 +msgid "Your payment has been submitted. Your membership will be activated shortly." +msgstr "Ihre Zahlung wurde übermittelt. Ihre Mitgliedschaft wird in Kürze aktiviert." + +#: pages/confirmation.php:14 +#: pages/confirmation.php:27 +#, php-format +msgid "Thank you for your membership to %s. Your %s membership is now active." +msgstr "Vielen Dank für Ihre Anmeldung bei %s. Ihr Paket %s ist nun aktiv." + +#: pages/confirmation.php:28 +#: pages/confirmation.php:41 +#, php-format +msgid "Below are details about your membership account and a receipt for your initial membership invoice. A welcome email with a copy of your initial membership invoice has been sent to %s." +msgstr "Untenstehend finden Sie Informationen zu Ihrem Konto und eine Rechnung für Ihre Zahlung. Eine Willkommens-email wurde an %s gesendet." + +#: pages/confirmation.php:47 +#: pages/invoice.php:22 +#: pages/confirmation.php:41 +#: pages/confirmation.php:59 +#: pages/invoice.php:33 +#, php-format +msgid "Invoice #%s on %s" +msgstr "Rechnungs-Nr. %s vom %s" + +#: pages/confirmation.php:49 +#: pages/invoice.php:24 +#: pages/confirmation.php:43 +#: adminpages/orders.php:384 +#: adminpages/orders.php:1377 +#: includes/profile.php:446 +#: pages/confirmation.php:61 +#: pages/invoice.php:34 +#: adminpages/orders.php:390 +#: adminpages/orders.php:1431 +#: adminpages/orders.php:1441 +#: adminpages/orders.php:439 +#: adminpages/orders.php:1539 +#: adminpages/orders.php:1549 +#: includes/profile.php:473 +msgid "Print" +msgstr "Drucken" + +#: pages/confirmation.php:52 +#: pages/confirmation.php:123 +#: pages/invoice.php:27 +#: pages/confirmation.php:45 +#: pages/confirmation.php:46 +#: pages/confirmation.php:102 +#: pages/confirmation.php:104 +#: pages/confirmation.php:112 +#: pages/confirmation.php:115 +#: pages/invoice.php:26 +#: pages/confirmation.php:64 +#: pages/confirmation.php:137 +#: pages/invoice.php:37 +msgid "Account" +msgstr "Konto" + +#: pages/confirmation.php:55 +#: pages/invoice.php:30 +#: pages/account.php:29 +#: pages/account.php:33 +#: pages/confirmation.php:48 +#: pages/confirmation.php:49 +#: pages/invoice.php:29 +#: pages/confirmation.php:67 +msgid "Membership Expires" +msgstr "Zugang endet am" + +#: pages/confirmation.php:79 +#: pages/invoice.php:61 +#: pages/account.php:105 +#: pages/account.php:109 +#: pages/confirmation.php:61 +#: pages/confirmation.php:63 +#: pages/confirmation.php:69 +#: pages/confirmation.php:82 +#: pages/invoice.php:48 +#: pages/invoice.php:50 +#: pages/billing.php:96 +#: pages/confirmation.php:95 +#: pages/invoice.php:85 +#: pages/billing.php:98 +msgid "Payment Method" +msgstr "Zahlungsmethode" + +#: pages/confirmation.php:80 +#: pages/invoice.php:62 +#: pages/confirmation.php:82 +#: pages/confirmation.php:83 +#: pages/confirmation.php:88 +#: pages/invoice.php:67 +#: pages/invoice.php:69 +#: pages/billing.php:98 +#: pages/confirmation.php:97 +#: pages/invoice.php:87 +#: pages/billing.php:100 +msgid "ending in" +msgstr "endet: " + +#: pages/confirmation.php:88 +#: pages/invoice.php:70 +#: pages/invoice.php:103 +#: pages/confirmation.php:61 +#: pages/confirmation.php:63 +#: pages/confirmation.php:65 +#: pages/confirmation.php:71 +#: pages/invoice.php:50 +#: pages/invoice.php:52 +#: pages/invoice.php:90 +#: pages/invoice.php:107 +#: pages/invoice.php:109 +#: pages/invoice.php:110 +#: includes/profile.php:426 +#: pages/confirmation.php:107 +#: pages/invoice.php:97 +#: pages/invoice.php:125 +#: includes/profile.php:453 +msgid "Total Billed" +msgstr "Summe" + +#: pages/confirmation.php:94 +#: pages/invoice.php:76 +#: pages/invoice.php:80 +#: pages/invoice.php:82 +#: includes/functions.php:2857 +#: includes/functions.php:2912 +msgid "Coupon" +msgstr "Gutschein" + +#: pages/confirmation.php:111 +#: pages/confirmation.php:97 +#: pages/confirmation.php:100 +#: pages/confirmation.php:103 +#: pages/confirmation.php:125 +#, php-format +msgid "Below are details about your membership account. A welcome email has been sent to %s." +msgstr "Unten finden Sie Details zu Ihrem Mitgliedskonto. Eine Wilkommens-E-Mail wurde an %s gesendet." + +#: pages/confirmation.php:124 +#: pages/confirmation.php:103 +#: pages/confirmation.php:105 +#: pages/confirmation.php:113 +#: pages/confirmation.php:116 +#: pages/confirmation.php:138 +#: shortcodes/pmpro_account.php:247 +#: pages/confirmation.php:65 +msgid "Pending" +msgstr "Ausstehend" + +#: pages/confirmation.php:132 +#: pages/invoice.php:134 +#: pages/confirmation.php:111 +#: pages/confirmation.php:113 +#: pages/confirmation.php:121 +#: pages/confirmation.php:124 +#: pages/invoice.php:121 +#: pages/invoice.php:139 +#: pages/invoice.php:141 +#: pages/billing.php:125 +#: pages/billing.php:131 +#: pages/confirmation.php:149 +#: pages/invoice.php:155 +#: pages/billing.php:127 +#: pages/billing.php:133 +msgid "View Your Membership Account →" +msgstr "Ihr Mitgliedskonto anzeigen →" + +#: pages/confirmation.php:134 +#: pages/confirmation.php:113 +#: pages/confirmation.php:115 +#: pages/confirmation.php:123 +#: pages/confirmation.php:126 +#: pages/confirmation.php:151 +msgid "If your account is not activated within a few minutes, please contact the site owner." +msgstr "Wenn Ihr Konto nicht innerhalb der nächsten Minuten aktiviert wird, kontaktieren Sie bitte den Betreiber der Seite." + +#: pages/invoice.php:101 +#: pages/invoice.php:88 +#: pages/invoice.php:106 +#: pages/invoice.php:108 +#: pages/invoice.php:123 +msgid "Invoice #" +msgstr "Rechnungs-Nr." + +#: pages/invoice.php:127 +#: pages/invoice.php:114 +#: pages/invoice.php:132 +#: pages/invoice.php:134 +#: pages/invoice.php:149 +msgid "No invoices found." +msgstr "Keine Rechnungen gefunden." + +#: pages/invoice.php:138 +#: pages/invoice.php:125 +#: pages/invoice.php:143 +#: pages/invoice.php:145 +#: pages/invoice.php:157 +msgid "← View All Invoices" +msgstr "← alle Rechnungen anzeigen" + +#: pages/levels.php:55 +#: pages/levels.php:33 +#: pages/levels.php:43 +#: includes/functions.php:396 +#: includes/functions.php:400 +msgid "Free" +msgstr "Kostenlos" + +#: pages/levels.php:69 +#: pages/levels.php:71 +#: pages/levels.php:47 +#: pages/levels.php:49 +#: pages/levels.php:113 +#: pages/levels.php:115 +#: pages/levels.php:58 +msgid "Select" +msgstr "Auswählen" + +#: pages/levels.php:78 +#: shortcodes/pmpro_account.php:60 +#: pages/account.php:33 +#: pages/levels.php:57 +#: pages/levels.php:123 +#: shortcodes/pmpro_account.php:59 +#: shortcodes/pmpro_account.php:61 +#: pages/levels.php:64 +#: shortcodes/pmpro_account.php:94 +msgid "Renew" +msgstr "Erneuern" + +#: pages/levels.php:82 +#: pages/levels.php:63 +#: pages/levels.php:117 +#: pages/levels.php:129 +#: pages/levels.php:68 +msgid "Your Level" +msgstr "Ihr Paket" + +#: pages/levels.php:98 +#: pages/levels.php:79 +#: pages/levels.php:129 +#: pages/levels.php:145 +#: pages/levels.php:82 +msgid "← Return to Your Account" +msgstr "← zurück zu Ihrem Konto" + +#: pages/levels.php:100 +#: pages/levels.php:81 +#: pages/levels.php:131 +#: pages/levels.php:147 +#: pages/levels.php:84 +msgid "← Return to Home" +msgstr "← zurück zur Startseite" + +#: paid-memberships-pro.php:129 +#: adminpages/orders.php:398 +#: adminpages/orders.php:448 +#: paid-memberships-pro.php:115 +#: paid-memberships-pro.php:116 +#: paid-memberships-pro.php:123 +#: paid-memberships-pro.php:124 +#: paid-memberships-pro.php:125 +#: paid-memberships-pro.php:126 +#: paid-memberships-pro.php:127 +#: paid-memberships-pro.php:128 +#: paid-memberships-pro.php:135 +#: paid-memberships-pro.php:157 +#: paid-memberships-pro.php:159 +#: paid-memberships-pro.php:166 +msgid "Testing Only" +msgstr "Nur Test" + +#: paid-memberships-pro.php:134 +#: paid-memberships-pro.php:120 +#: paid-memberships-pro.php:121 +#: paid-memberships-pro.php:128 +#: paid-memberships-pro.php:129 +#: paid-memberships-pro.php:130 +#: paid-memberships-pro.php:131 +#: paid-memberships-pro.php:132 +#: paid-memberships-pro.php:133 +#: paid-memberships-pro.php:140 +#: paid-memberships-pro.php:162 +#: paid-memberships-pro.php:164 +#: paid-memberships-pro.php:171 +msgid "PayPal Payflow Pro/PayPal Pro" +msgstr "PayPal Payflow Pro/PayPal Pro" + +#: paid-memberships-pro.php:139 +#: paid-memberships-pro.php:125 +#: paid-memberships-pro.php:126 +#: paid-memberships-pro.php:133 +#: paid-memberships-pro.php:134 +#: paid-memberships-pro.php:135 +#: paid-memberships-pro.php:136 +#: paid-memberships-pro.php:137 +#: paid-memberships-pro.php:138 +#: paid-memberships-pro.php:145 +#: paid-memberships-pro.php:166 +#: paid-memberships-pro.php:168 +#: paid-memberships-pro.php:175 +msgid "Cybersource" +msgstr "Cybersource" + +#: paid-memberships-pro.php:160 +#: paid-memberships-pro.php:156 +#: paid-memberships-pro.php:157 +#: paid-memberships-pro.php:158 +#: paid-memberships-pro.php:159 +#: paid-memberships-pro.php:166 +#: paid-memberships-pro.php:194 +#: paid-memberships-pro.php:201 +msgid "Once a month" +msgstr "Einmal monatlich" + +#: preheaders/account.php:10 +#: preheaders/levels.php:22 +#: preheaders/account.php:7 +#: preheaders/account.php:9 +#: preheaders/levels.php:19 +#: preheaders/levels.php:21 +#: preheaders/account.php:21 +msgid "Your membership status has been updated - Thank you!" +msgstr "Ihr Mitglieds-Status wurde aktualisiert. Vielen Dank!" + +#: preheaders/account.php:12 +#: preheaders/levels.php:24 +#: preheaders/account.php:11 +#: preheaders/levels.php:23 +#: preheaders/account.php:23 +msgid "Sorry, your request could not be completed - please try again in a few moments." +msgstr "Leider konnte Ihre Anfrage nicht durchgeführt werden. Bitte versuchen Sie es in einigen Momenten erneut." + +#: preheaders/billing.php:151 +#: preheaders/checkout.php:322 +#: preheaders/billing.php:145 +#: preheaders/billing.php:147 +#: preheaders/billing.php:258 +#: preheaders/billing.php:265 +#: preheaders/billing.php:266 +#: preheaders/billing.php:270 +#: preheaders/billing.php:273 +#: preheaders/billing.php:279 +#: preheaders/checkout.php:332 +#: preheaders/checkout.php:336 +#: preheaders/checkout.php:364 +#: preheaders/checkout.php:458 +#: preheaders/checkout.php:464 +#: preheaders/checkout.php:465 +#: preheaders/checkout.php:470 +#: preheaders/checkout.php:481 +#: preheaders/checkout.php:482 +#: preheaders/billing.php:162 +#: preheaders/billing.php:195 +msgid "Please complete all required fields." +msgstr "Füllen Sie bitte alle erforderlichen Felder aus." + +#: preheaders/billing.php:154 +#: preheaders/checkout.php:330 +#: preheaders/billing.php:148 +#: preheaders/billing.php:150 +#: preheaders/billing.php:263 +#: preheaders/billing.php:268 +#: preheaders/billing.php:269 +#: preheaders/billing.php:273 +#: preheaders/billing.php:276 +#: preheaders/billing.php:284 +#: preheaders/checkout.php:340 +#: preheaders/checkout.php:344 +#: preheaders/checkout.php:372 +#: preheaders/checkout.php:466 +#: preheaders/checkout.php:473 +#: preheaders/checkout.php:474 +#: preheaders/checkout.php:478 +#: preheaders/checkout.php:491 +#: preheaders/checkout.php:492 +#: preheaders/billing.php:165 +#: preheaders/billing.php:198 +msgid "Your email addresses do not match. Please try again." +msgstr "Ihre E-Mail Adressen stimmen nicht überein. Bitte versuchen Sie es erneut." + +#: preheaders/billing.php:157 +#: preheaders/checkout.php:335 +#: preheaders/billing.php:151 +#: preheaders/billing.php:153 +#: preheaders/billing.php:268 +#: preheaders/billing.php:271 +#: preheaders/billing.php:272 +#: preheaders/billing.php:276 +#: preheaders/billing.php:279 +#: preheaders/billing.php:289 +#: preheaders/checkout.php:345 +#: preheaders/checkout.php:349 +#: preheaders/checkout.php:377 +#: preheaders/checkout.php:471 +#: preheaders/checkout.php:478 +#: preheaders/checkout.php:480 +#: preheaders/checkout.php:483 +#: preheaders/checkout.php:497 +#: preheaders/checkout.php:498 +#: preheaders/billing.php:168 +#: preheaders/billing.php:201 +msgid "The email address entered is in an invalid format. Please try again." +msgstr "Ihre eingegebene E-Mail Adresse ist ungültig. Bitte versuchen Sie es erneut." + +#: preheaders/billing.php:161 +#: preheaders/billing.php:155 +#: preheaders/billing.php:157 +#: preheaders/billing.php:274 +#: preheaders/billing.php:275 +#: preheaders/billing.php:276 +#: preheaders/billing.php:280 +#: preheaders/billing.php:283 +#: preheaders/billing.php:295 +#: preheaders/billing.php:172 +#: preheaders/billing.php:207 +msgid "All good!" +msgstr "Alles erledigt!" + +#: preheaders/billing.php:228 +#: preheaders/billing.php:222 +#: preheaders/billing.php:224 +#: preheaders/billing.php:340 +#: preheaders/billing.php:345 +#: preheaders/billing.php:346 +#: preheaders/billing.php:350 +#: preheaders/billing.php:353 +#: preheaders/billing.php:370 +#: preheaders/billing.php:239 +#: preheaders/billing.php:274 +#, php-format +msgid "Information updated. « back to my account" +msgstr "Informationen aktualisiert. « zurück zu meinem Konto" + +#: preheaders/billing.php:234 +#: preheaders/billing.php:228 +#: preheaders/billing.php:230 +#: preheaders/billing.php:347 +#: preheaders/billing.php:351 +#: preheaders/billing.php:352 +#: preheaders/billing.php:356 +#: preheaders/billing.php:359 +#: preheaders/billing.php:378 +#: preheaders/billing.php:380 +#: preheaders/billing.php:245 +#: preheaders/billing.php:291 +msgid "Error updating billing information." +msgstr "Fehler beim aktualisieren der Zahlungsinformationen." + +#: preheaders/cancel.php:60 +#: preheaders/cancel.php:24 +#: preheaders/cancel.php:25 +#: preheaders/cancel.php:28 +#: preheaders/cancel.php:59 +#: classes/class.pmproemail.php:895 +#: includes/email.php:427 +#: preheaders/cancel.php:77 +#: includes/email.php:452 +#: classes/class.pmproemail.php:907 +#: includes/email.php:459 +#: classes/class.pmproemail.php:1033 +msgid "Your membership has been cancelled." +msgstr "Ihre Mitgliedschaft wurde storniert." + +#: preheaders/checkout.php:34 +#: preheaders/checkout.php:344 +#: preheaders/checkout.php:28 +#: preheaders/checkout.php:30 +#: preheaders/checkout.php:31 +#: preheaders/checkout.php:32 +#: preheaders/checkout.php:354 +#: preheaders/checkout.php:358 +#: preheaders/checkout.php:386 +#: preheaders/checkout.php:480 +#: preheaders/checkout.php:487 +#: preheaders/checkout.php:491 +#: preheaders/checkout.php:492 +#: preheaders/checkout.php:508 +#: preheaders/checkout.php:509 +#: preheaders/checkout.php:37 +msgid "Invalid gateway." +msgstr "Ungültiger Zugang." + +#: preheaders/checkout.php:54 +#: preheaders/checkout.php:88 +#: preheaders/checkout.php:89 +#: preheaders/checkout.php:91 +#: preheaders/checkout.php:95 +#: preheaders/checkout.php:96 +#: preheaders/checkout.php:72 +msgid "Checkout: Payment Information" +msgstr "Checkout: Zahlungs-Informationen" + +#: preheaders/checkout.php:59 +#: preheaders/checkout.php:100 +#: preheaders/checkout.php:101 +#: preheaders/checkout.php:77 +msgid "Set Up Your Account" +msgstr "Konto einrichten" + +#: preheaders/checkout.php:289 +#: preheaders/checkout.php:300 +#: preheaders/checkout.php:304 +#: preheaders/checkout.php:331 +#: preheaders/checkout.php:416 +#: preheaders/checkout.php:421 +#: preheaders/checkout.php:301 +msgid "There are JavaScript errors on the page. Please contact the webmaster." +msgstr "Es gibt JavaScript-Fehler auf der Seite. Bitte kontaktieren Sie den Seiteninhaber." + +#: preheaders/checkout.php:325 +#: preheaders/checkout.php:335 +#: preheaders/checkout.php:339 +#: preheaders/checkout.php:367 +#: preheaders/checkout.php:461 +#: preheaders/checkout.php:468 +#: preheaders/checkout.php:473 +#: preheaders/checkout.php:485 +#: preheaders/checkout.php:486 +msgid "Your passwords do not match. Please try again." +msgstr "Die Passwörter stimmen nicht überein. Bitte versuchen Sie es erneut." + +#: preheaders/checkout.php:340 +#: preheaders/checkout.php:350 +#: preheaders/checkout.php:354 +#: preheaders/checkout.php:382 +#: preheaders/checkout.php:476 +#: preheaders/checkout.php:483 +#: preheaders/checkout.php:486 +#: preheaders/checkout.php:488 +#: preheaders/checkout.php:503 +#: preheaders/checkout.php:504 +#, php-format +msgid "Please check the box to agree to the %s." +msgstr "Bestätigen Sie bitte, dass Sie mit der %s einverstanden sind." + +#: preheaders/checkout.php:347 +#: preheaders/checkout.php:357 +#: preheaders/checkout.php:361 +#: preheaders/checkout.php:389 +#: preheaders/checkout.php:483 +#: preheaders/checkout.php:490 +#: preheaders/checkout.php:495 +#: preheaders/checkout.php:512 +#: preheaders/checkout.php:513 +msgid "Are you a spammer?" +msgstr "Sind Sie ein Spammer?" + +#: preheaders/checkout.php:368 +#: preheaders/checkout.php:377 +#: preheaders/checkout.php:381 +#: preheaders/checkout.php:410 +#: preheaders/checkout.php:503 +#: preheaders/checkout.php:510 +#: preheaders/checkout.php:515 +#: preheaders/checkout.php:518 +#: preheaders/checkout.php:535 +#: preheaders/checkout.php:536 +#: preheaders/checkout.php:382 +msgid "That username is already taken. Please try another." +msgstr "Dieser Benutzername wird bereits verwendet. Bitte versuchen Sie einen anderen." + +#: preheaders/checkout.php:373 +#: preheaders/checkout.php:387 +msgid "That email address is already in use. Please log in, or use a different email address." +msgstr "Diese E-Mail Adresse wird bereits verwendet. Bitte loggen Sie sich damit ein oder verrsuchen Sie es mit einer anderen." + +#: preheaders/checkout.php:404 +#: preheaders/checkout.php:397 +#: preheaders/checkout.php:399 +#: preheaders/checkout.php:416 +#: preheaders/checkout.php:420 +#: preheaders/checkout.php:446 +#: preheaders/checkout.php:525 +#: preheaders/checkout.php:532 +#: preheaders/checkout.php:537 +#: preheaders/checkout.php:544 +#: preheaders/checkout.php:561 +#: preheaders/checkout.php:562 +#: preheaders/checkout.php:419 +#: preheaders/billing.php:187 +#: preheaders/checkout.php:423 +#, php-format +msgid "reCAPTCHA failed. (%s) Please try again." +msgstr "reCAPTCHA fehlgeschlagen. (%s) Bitte versuchen Sie es erneut." + +#: preheaders/checkout.php:491 +#: preheaders/checkout.php:482 +#: preheaders/checkout.php:484 +#: preheaders/checkout.php:501 +#: preheaders/checkout.php:505 +#: preheaders/checkout.php:533 +#: preheaders/checkout.php:647 +#: preheaders/checkout.php:654 +#: preheaders/checkout.php:659 +#: preheaders/checkout.php:683 +#: preheaders/checkout.php:701 +#: preheaders/checkout.php:702 +#: preheaders/checkout.php:445 +#: preheaders/checkout.php:449 +msgid "Payment accepted." +msgstr "Zahlung erfolgreich." + +#: preheaders/checkout.php:497 +#: preheaders/checkout.php:490 +#: preheaders/checkout.php:492 +#: preheaders/checkout.php:509 +#: preheaders/checkout.php:513 +#: preheaders/checkout.php:539 +#: preheaders/checkout.php:653 +#: preheaders/checkout.php:660 +#: preheaders/checkout.php:665 +#: preheaders/checkout.php:691 +#: preheaders/checkout.php:709 +#: preheaders/checkout.php:710 +#: preheaders/checkout.php:451 +#: preheaders/checkout.php:464 +msgid "Unknown error generating account. Please contact us to set up your membership." +msgstr "Unbekannter Fehler beim Erstellen des Kontos. Bitte kontaktieren Sie uns um Ihren Konto einzurichten." + +#: preheaders/checkout.php:572 +#: preheaders/checkout.php:550 +#: preheaders/checkout.php:552 +#: preheaders/checkout.php:569 +#: preheaders/checkout.php:571 +#: preheaders/checkout.php:575 +#: preheaders/checkout.php:581 +#: preheaders/checkout.php:614 +#: preheaders/checkout.php:785 +#: preheaders/checkout.php:792 +#: preheaders/checkout.php:797 +#: preheaders/checkout.php:825 +#: preheaders/checkout.php:844 +#: preheaders/checkout.php:859 +#: preheaders/checkout.php:860 +#: preheaders/checkout.php:537 +#: preheaders/checkout.php:549 +msgid "Your payment was accepted, but there was an error setting up your account. Please contact us." +msgstr "Ihre Zahlung war erfolgreich, aber es gab leider einen Fehler beim Einrichten Ihres Kontos. Bitte kontaktieren Sie uns." + +#: preheaders/checkout.php:802 +#: preheaders/checkout.php:691 +#: preheaders/checkout.php:693 +#: preheaders/checkout.php:710 +#: preheaders/checkout.php:712 +#: preheaders/checkout.php:722 +#: preheaders/checkout.php:730 +#: preheaders/checkout.php:754 +#: preheaders/checkout.php:826 +#: preheaders/checkout.php:953 +#: preheaders/checkout.php:960 +#: preheaders/checkout.php:970 +#: preheaders/checkout.php:983 +#: preheaders/checkout.php:1030 +#: preheaders/checkout.php:1045 +#: preheaders/checkout.php:1046 +#: preheaders/checkout.php:792 +#: preheaders/checkout.php:811 +#: preheaders/checkout.php:823 +msgid "IMPORTANT: Something went wrong during membership creation. Your credit card authorized, but we cancelled the order immediately. You should not try to submit this form again. Please contact the site owner to fix this issue." +msgstr "WICHTIG: Bei der Anmeldung gab es leider einen Fehler. Ihre Kreditkarte wurde verifiziert, aber der Vorgang wurde von uns abgebrochen. Versuchen Sie bitte nicht erneut, das Formular abzusenden und kontaktieren Sie den Betreiber dieser Seite um den Fehler zu korrigieren." + +#: preheaders/checkout.php:805 +#: preheaders/checkout.php:694 +#: preheaders/checkout.php:696 +#: preheaders/checkout.php:713 +#: preheaders/checkout.php:715 +#: preheaders/checkout.php:725 +#: preheaders/checkout.php:733 +#: preheaders/checkout.php:757 +#: preheaders/checkout.php:829 +#: preheaders/checkout.php:956 +#: preheaders/checkout.php:963 +#: preheaders/checkout.php:973 +#: preheaders/checkout.php:988 +#: preheaders/checkout.php:1035 +#: preheaders/checkout.php:1050 +#: preheaders/checkout.php:1051 +#: preheaders/checkout.php:795 +#: preheaders/checkout.php:814 +#: preheaders/checkout.php:826 +msgid "IMPORTANT: Something went wrong during membership creation. Your credit card was charged, but we couldn't assign your membership. You should not submit this form again. Please contact the site owner to fix this issue." +msgstr "WICHTIG: Bei der Anmeldung gab es leider einen Fehler. Ihre Kreditkarte wurde belastet, aber wir konnten Ihre Mitgliedschaft nicht einrichten. Bitte senden Sie das Formular nicht erneut und kontaktieren Sie den Betreiber dieser Seite um dieses Problem zu lösen." + +#: preheaders/checkout.php:816 +#: preheaders/checkout.php:705 +#: preheaders/checkout.php:707 +#: preheaders/checkout.php:724 +#: preheaders/checkout.php:726 +#: preheaders/checkout.php:736 +#: preheaders/checkout.php:744 +#: preheaders/checkout.php:768 +#: preheaders/checkout.php:840 +#: preheaders/checkout.php:967 +#: preheaders/checkout.php:974 +#: preheaders/checkout.php:984 +#: preheaders/checkout.php:1001 +#: preheaders/checkout.php:1048 +#: preheaders/checkout.php:1063 +#: preheaders/checkout.php:1064 +#: preheaders/checkout.php:806 +#: preheaders/checkout.php:825 +#: preheaders/checkout.php:837 +#, php-format +msgid "You must set up a Payment Gateway before any payments will be processed." +msgstr "Sie müssen einen Zahlungsdienstleister auswählen damit Zahlungen durchgeführt werden können." + +#: preheaders/checkout.php:818 +#: preheaders/checkout.php:707 +#: preheaders/checkout.php:709 +#: preheaders/checkout.php:726 +#: preheaders/checkout.php:728 +#: preheaders/checkout.php:738 +#: preheaders/checkout.php:746 +#: preheaders/checkout.php:770 +#: preheaders/checkout.php:842 +#: preheaders/checkout.php:969 +#: preheaders/checkout.php:976 +#: preheaders/checkout.php:986 +#: preheaders/checkout.php:1003 +#: preheaders/checkout.php:1050 +#: preheaders/checkout.php:1065 +#: preheaders/checkout.php:1066 +#: preheaders/checkout.php:808 +#: preheaders/checkout.php:827 +#: preheaders/checkout.php:839 +msgid "A Payment Gateway must be set up before any payments will be processed." +msgstr "Ein Zahlungsdienstleister muss ausgewählt werden, bevor Zahlungen erfolgen können." + +#: scheduled/crons.php:39 +#: scheduled/crons.php:31 +#: scheduled/crons.php:34 +#: scheduled/crons.php:38 +#: scheduled/crons.php:61 +#: scheduled/crons.php:46 +#, php-format +msgid "Membership expired email sent to %s. " +msgstr "Mitgliedschaft ist abgelaufen. E-Mail wurde an %s gesendet." + +#: scheduled/crons.php:105 +#: scheduled/crons.php:27 +#: scheduled/crons.php:74 +#: scheduled/crons.php:80 +#: scheduled/crons.php:84 +#: scheduled/crons.php:88 +#: scheduled/crons.php:99 +#: scheduled/crons.php:100 +#: scheduled/crons.php:117 +#, php-format +msgid "Membership expiring email sent to %s. " +msgstr "Mitgliedschaft läuft ab. E-Mail wurde an %s gesendet." + +#: scheduled/crons.php:184 +#: scheduled/crons.php:143 +#: scheduled/crons.php:152 +#: scheduled/crons.php:157 +#: scheduled/crons.php:164 +#: scheduled/crons.php:175 +#: scheduled/crons.php:176 +#: scheduled/crons.php:206 +#, php-format +msgid "Credit card expiring email sent to %s. " +msgstr "Kreditkarte läuft ab. E-Mail wurde an %s gesendet." + +#: scheduled/crons.php:240 +#: scheduled/crons.php:104 +#: scheduled/crons.php:196 +#: scheduled/crons.php:208 +#: scheduled/crons.php:210 +#: scheduled/crons.php:220 +#: scheduled/crons.php:231 +#: scheduled/crons.php:232 +#: scheduled/crons.php:266 +#, php-format +msgid "Trial ending email sent to %s. " +msgstr "Testphase läuft ab. E-Mail wurde an %s gesendet." + +#: services/applydiscountcode.php:70 +#: services/applydiscountcode.php:64 +#: services/applydiscountcode.php:67 +#: services/applydiscountcode.php:93 +#, php-format +msgid "The %s code has been applied to your order. " +msgstr "Der %s Code wurde wie gewünscht verwendet." + +#: services/applydiscountcode.php:100 +#: services/applydiscountcode.php:82 +#: services/applydiscountcode.php:83 +#: services/applydiscountcode.php:86 +#: services/applydiscountcode.php:97 +#: services/applydiscountcode.php:138 +#, php-format +msgid "The %s code has been applied to your order." +msgstr "Der %s Code wurde wie gewünscht verwendet." + +#: services/authnet-silent-post.php:149 +#: services/authnet-silent-post.php:133 +#: services/authnet-silent-post.php:138 +#: services/authnet-silent-post.php:141 +#: services/authnet-silent-post.php:144 +#: services/authnet-silent-post.php:145 +#: services/authnet-silent-post.php:173 +#: services/authnet-silent-post.php:176 +#: services/authnet-silent-post.php:178 +msgid "

A payment is being held for review within Authorize.net.

Payment Information From Authorize.net" +msgstr "

Eine Zahlung wird von Authorize.net zur Überprüfung zurückgehalten.

Zahlungs-Information von Authorize.net" + +#: shortcodes/pmpro_account.php:45 +#: pages/account.php:19 +#: shortcodes/pmpro_account.php:44 +#: includes/email-templates.php:68 +#: shortcodes/pmpro_account.php:43 +#: adminpages/orders.php:1431 +msgid "Billing" +msgstr "Abrechnung" + +#: shortcodes/pmpro_account.php:64 +#: pages/account.php:36 +#: shortcodes/pmpro_account.php:62 +#: shortcodes/pmpro_account.php:65 +#: shortcodes/pmpro_account.php:98 +msgid "Update Billing Info" +msgstr "Zahlungsinformationen ändern" + +#: shortcodes/pmpro_account.php:70 +#: pages/account.php:42 +#: shortcodes/pmpro_account.php:68 +#: shortcodes/pmpro_account.php:71 +#: shortcodes/pmpro_account.php:103 +msgid "Change" +msgstr "Ändern" + +#: shortcodes/pmpro_account.php:95 +#: pages/account.php:64 +#: shortcodes/pmpro_account.php:90 +#: shortcodes/pmpro_account.php:92 +#: shortcodes/pmpro_account.php:93 +#: shortcodes/pmpro_account.php:158 +msgid "View all Membership Options" +msgstr "Alle Mitgliedschafts-Optionen zeigen" + +#: shortcodes/pmpro_account.php:104 +#: pages/account.php:46 +#: pages/account.php:50 +#: pages/account.php:71 +#: shortcodes/pmpro_account.php:99 +#: shortcodes/pmpro_account.php:101 +#: shortcodes/pmpro_account.php:102 +#: shortcodes/pmpro_account.php:167 +msgid "My Account" +msgstr "Mein Konto" + +#: shortcodes/pmpro_account.php:115 +#: pages/account.php:55 +#: pages/account.php:59 +#: pages/account.php:80 +#: shortcodes/pmpro_account.php:110 +#: shortcodes/pmpro_account.php:112 +#: shortcodes/pmpro_account.php:113 +#: shortcodes/pmpro_account.php:191 +msgid "Edit Profile" +msgstr "Profil editieren" + +#: shortcodes/pmpro_account.php:116 +#: pages/account.php:56 +#: pages/account.php:60 +#: pages/account.php:81 +#: shortcodes/pmpro_account.php:111 +#: shortcodes/pmpro_account.php:113 +#: shortcodes/pmpro_account.php:114 +#: includes/profile.php:872 +#: includes/profile.php:909 +#: shortcodes/pmpro_account.php:195 +#: includes/profile.php:884 +#: includes/profile.php:921 +#: includes/profile.php:920 +#: includes/profile.php:957 +msgid "Change Password" +msgstr "Passwort ändern" + +#: shortcodes/pmpro_account.php:123 +#: pages/account.php:87 +#: pages/account.php:125 +#: pages/account.php:129 +#: shortcodes/pmpro_account.php:118 +#: shortcodes/pmpro_account.php:120 +#: shortcodes/pmpro_account.php:121 +#: shortcodes/pmpro_account.php:219 +msgid "Past Invoices" +msgstr "Bisherige Rechnungen" + +#: shortcodes/pmpro_account.php:129 +#: pages/account.php:93 +#: shortcodes/pmpro_account.php:124 +#: shortcodes/pmpro_account.php:126 +#: shortcodes/pmpro_account.php:127 +#: shortcodes/pmpro_account.php:225 +msgid "Amount" +msgstr "Betrag" + +#: shortcodes/pmpro_account.php:157 +#: pages/account.php:121 +#: pages/account.php:140 +#: pages/account.php:144 +#: shortcodes/pmpro_account.php:152 +#: shortcodes/pmpro_account.php:154 +#: shortcodes/pmpro_account.php:155 +#: shortcodes/pmpro_account.php:264 +msgid "View All Invoices" +msgstr "Alle Rechnungen anzeigen" + +#: shortcodes/pmpro_account.php:164 +#: pages/account.php:128 +#: pages/account.php:146 +#: pages/account.php:150 +#: shortcodes/pmpro_account.php:159 +#: shortcodes/pmpro_account.php:161 +#: shortcodes/pmpro_account.php:162 +#: shortcodes/pmpro_account.php:271 +msgid "Member Links" +msgstr "Mitglieder Links" + +#: adminpages/addons.php:79 +msgid "Disabled" +msgstr "Deaktiviert" + +#: adminpages/addons.php:79 +msgid "Enabled" +msgstr "Aktiviert" + +#: adminpages/admin_header.php:106 +#: adminpages/admin_header.php:127 +#: adminpages/admin_header.php:136 +#: adminpages/admin_header.php:148 +msgid "Plugin Support" +msgstr "Plugin Support" + +#: adminpages/admin_header.php:106 +#: adminpages/admin_header.php:127 +#: adminpages/admin_header.php:136 +#: adminpages/admin_header.php:148 +msgid "User Forum" +msgstr "Benutzer Forum" + +#: adminpages/advancedsettings.php:209 +#: adminpages/advancedsettings.php:216 +#: adminpages/advancedsettings.php:229 +#: adminpages/advancedsettings.php:232 +#: adminpages/advancedsettings.php:248 +msgid "reCAPTCHA Public Key" +msgstr "reCAPTCHA Public Key" + +#: adminpages/advancedsettings.php:212 +#: adminpages/advancedsettings.php:219 +#: adminpages/advancedsettings.php:232 +#: adminpages/advancedsettings.php:235 +#: adminpages/advancedsettings.php:251 +msgid "reCAPTCHA Private Key" +msgstr "reCAPTCHA Private Key" + +#: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:285 +msgid "selected" +msgstr "ausgewählt" + +#: adminpages/discountcodes.php:437 +msgid "Billing Ammount" +msgstr "Rechnungsbetrag" + +#: adminpages/discountcodes.php:480 +msgid "Check this to set an expiration date for new sign ups." +msgstr "Auswählen, um ein Ablaufdatum für neue Registrierungen festzulegen." + +#: adminpages/discountcodes.php:497 +msgid "How long before the expiration expires. Note that any future payments will be cancelled when the membership expires." +msgstr "Wie lange vor Ende des Ablaufdatums. Beachten Sie, dass alle zukünftigen Zahlungen storniert werden, wenn die Mitgliedschaft ausläuft." + +#: adminpages/emailsettings.php:63 +#: adminpages/emailsettings.php:72 +msgid "To modify the appearance of system generated emails, add the files email_header.html and email_footer.html to your theme's directory. This will modify both the WordPress default messages as well as messages generated by Paid Memberships Pro. Click here to learn more about Paid Memberships Pro emails." +msgstr "Um das Design von System-generierten E-Mails anzupassen, fügen Sie die Dateien email_header.html und email_footer.html Ihrem Theme-Ordner hinzu. Damit werden sowohl die Wordpress-Standard-Nachrichten, als auch die von Paid Memberships Pro generiereten Nachrichten angepasst. Klicken Sie hier um mehr über Paid Memberships Pro emails zu erfahren." + +#: adminpages/emailsettings.php:98 +msgid "If unchecked, all emails from \"WordPress <" +msgstr "Wird diese Option nicht ausgewählt, werden obige Einstellungen für alle E-Mails von der angegebenen E-Mail Adresse verwendet." + +#: adminpages/membershiplevels.php:364 +msgid "Stripe integration currently only supports billing periods of \"Month\" or \"Year\"." +msgstr "Stripe unterstützt derzeit nur Monate oder Jahre als Zahlungszyklen." + +#: adminpages/membershiplevels.php:368 +#: adminpages/membershiplevels.php:370 +#: adminpages/membershiplevels.php:389 +#: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:392 +msgid "Payflow integration currently only supports billing frequencies of 1 and billing periods of \"Week\", \"Month\" or \"Year\"." +msgstr "Payflow unterstützt derzeit nur eine Zahlungsfrequenz von 1 und als Abrechnungszyklus \"Woche\", \"Monat\" oder \"Jahr\". " + +#: adminpages/membershiplevels.php:398 +msgid "2Checkout integration does not currently support custom trials. You can do one period trials by setting an initial payment different from the billing amount." +msgstr "2Checkout unterstützt derzeit keine Testphasen. Sie können eine Testphase einrichten, indem Sie eine Einmal-Zahlung einrichten, die sich vom Zahlungsbetrag unterscheidet." + +#: adminpages/membershiplevels.php:508 +#: adminpages/membershiplevels.php:514 +#: adminpages/membershiplevels.php:516 +#: adminpages/membershiplevels.php:543 +msgid "Billing Cycle" +msgstr "Zahlungszyklus" + +#: adminpages/membershiplevels.php:509 +#: adminpages/membershiplevels.php:515 +#: adminpages/membershiplevels.php:517 +#: adminpages/membershiplevels.php:544 +msgid "Trial Cycle" +msgstr "Testphase" + +#: adminpages/membershiplevels.php:543 +#: adminpages/membershiplevels.php:549 +#: adminpages/membershiplevels.php:551 +#: adminpages/membershiplevels.php:578 +msgid "every" +msgstr "jede(n)" + +#: adminpages/pagesettings.php:73 +#, php-format +msgid "Membership %s" +msgstr "Mitgliedschaft %s" + +#: adminpages/paymentsettings.php:170 +msgid "Payflow Pro currently only supports one-time payments. Users will not be able to checkout for levels with recurring payments." +msgstr "Payflow Pro unterstützt derzeit nur einmalige Zahlungen. Benutzer können Anmeldungen für Paket mit wiederkehrenden Zahlungen nicht abschließen." + +#: adminpages/paymentsettings.php:195 +#: adminpages/paymentsettings.php:450 +#: adminpages/paymentsettings.php:452 +msgid "US only. If values are given, tax will be applied for any members ordering from the selected state.
For non-US or more complex tax rules, use the pmpro_tax filter." +msgstr "Nur für USA. Wenn Werte vergeben werden, werden die Steuern für Kunden aus den jeweiligen Staaten verreichnet.
Für Nicht-US oder komplexere Steuersätze, verwenden Sie die pmpro_tax filter." + +#: adminpages/paymentsettings.php:223 +#: adminpages/paymentsettings.php:235 +msgid "Your SSL Certificate must be installed by your web host. Your SSL Seal will be a short HTML or JavaScript snippet that can be pasted here." +msgstr "Ihr SSL Zertifikat muss von Ihrem Webhost installiert werden. Ihr SSL Siegel ist ein kurzer HTML oder JavaScript Text, der hier eingefügt werden kann." + +#: adminpages/paymentsettings.php:405 +#: adminpages/paymentsettings.php:445 +msgid "If values are given, tax will be applied for any members ordering from the selected state. For more complex tax rules, use the \"pmpro_tax\" filter." +msgstr "Wenn Werte eingetragen sind, werden die Steuern bei jedem Benutzer aus dem jeweiligen Staat angerechnet. Für komplexere Steuer Regeln verwenden Sie bitte den \"pmpro_tax\" filter." + +#: adminpages/paymentsettings.php:410 +#: adminpages/paymentsettings.php:421 +msgid "Use SSL" +msgstr "SSL verwenden" + +#: adminpages/paymentsettings.php:425 +msgid "Required by this Gateway Option" +msgstr "Bei diesen Zahlungsdienstleister erforderlich" + +#: adminpages/paymentsettings.php:432 +msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page." +msgstr "Stripe erfodert keine Rechnungsadressen-Felder. Wählen Sie \"Nein\" im diese auf der Checkout-Seite auszublenden." + +#: adminpages/paymentsettings.php:438 +#: adminpages/paymentsettings.php:471 +#: adminpages/paymentsettings.php:477 +#: adminpages/paymentsettings.php:479 +msgid "HTTPS Nuclear Option" +msgstr "HTTPS Nuclear Option" + +#: adminpages/paymentsettings.php:441 +#: adminpages/paymentsettings.php:474 +#: adminpages/paymentsettings.php:480 +#: adminpages/paymentsettings.php:482 +msgid "Use the \"Nuclear Option\" to use secure (HTTPS) URLs on your secure pages. Check this if you are using SSL and have warnings on your checkout pages." +msgstr "Verwenden Sie die \"Nuclear Option\" zur Verwendung von secure (HTTPS) URLs auf Ihren SSL Seiten. Wählen Sie diese Option, wenn Sie SSL verwenden und Warnmeldungen auf Ihren SSL-Seiten bekommen." + +#: adminpages/paymentsettings.php:490 +#: adminpages/paymentsettings.php:496 +#: adminpages/paymentsettings.php:498 +#: classes/gateways/class.pmprogateway_twocheckout.php:148 +msgid "To fully integrate with 2Checkout, be sure to set your 2Checkout INS URL " +msgstr "Um 2Checkout vollständig zu integrieren, stellen Sie Ihre 2Checkout INS URL ein " + +#: adminpages/reports/login.php:26 +#: adminpages/reports/login.php:27 +msgid "Visits Today" +msgstr "Besuche Heute" + +#: adminpages/reports/login.php:28 +#: adminpages/reports/login.php:29 +#: adminpages/reports/login.php:189 +#: adminpages/reports/login.php:192 +msgid "Visits All Time" +msgstr "Besuche Gesamt" + +#: adminpages/reports/login.php:31 +#: adminpages/reports/login.php:32 +msgid "Views Today" +msgstr "Ansichten Heute" + +#: adminpages/reports/login.php:33 +#: adminpages/reports/login.php:34 +#: adminpages/reports/login.php:193 +#: adminpages/reports/login.php:196 +msgid "Views All Time" +msgstr "Ansichten Gesamt" + +#: adminpages/reports/login.php:36 +#: adminpages/reports/login.php:37 +msgid "Logins Today" +msgstr "Logins heute" + +#: adminpages/reports/login.php:38 +#: adminpages/reports/login.php:39 +#: adminpages/reports/login.php:198 +#: adminpages/reports/login.php:201 +msgid "Logins All Time" +msgstr "Logins Gesamt" + +#: adminpages/reports/memberships.php:38 +#: adminpages/reports/memberships.php:67 +msgid "Cancellations" +msgstr "Stornierungen" + +#: adminpages/reports/memberships.php:86 +msgid "Other Stats" +msgstr "Andere Statistiken" + +#: adminpages/reports/memberships.php:88 +msgid "Monthly Recurring Revenue (MRR)" +msgstr "Monatlich Wiederkehrende Zahlungen (MRR)" + +#: adminpages/reports/memberships.php:92 +msgid "Cancellation Rate" +msgstr "Stornoquote" + +#: adminpages/reports/memberships.php:96 +msgid "Lifetime Value (LTV)" +msgstr "Lifetime Value (LTV)" + +#: classes/class.pmproemail.php:342 +#: classes/class.pmproemail.php:345 +#: classes/class.pmproemail.php:363 +#: classes/class.pmproemail.php:366 +#: classes/class.pmproemail.php:375 +#, php-format +msgid "Your billing information has been udpated at %s" +msgstr "Ihre Zahlungsinformationen bei %s wurden aktualisiert" + +#: classes/class.pmproemail.php:386 +#: classes/class.pmproemail.php:390 +#: classes/class.pmproemail.php:416 +#: classes/class.pmproemail.php:419 +#: classes/class.pmproemail.php:428 +#, php-format +msgid "Billing information has been udpated for %s at %s" +msgstr "Zahlungsinformationen für %s bei %s wurden aktualisiert" + +#: classes/class.pmproemail.php:685 +#: classes/class.pmproemail.php:734 +#: classes/class.pmproemail.php:799 +msgid "membership has been cancelled" +msgstr "Mitgliedschaft wurde beendet." + +#: classes/gateways/class.pmprogateway_stripe.php:51 +#: classes/gateways/class.pmprogateway_stripe.php:55 +#, php-format +msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it" +msgstr "Das %s Gateway benötigt die %s PHP Erweiterung. Bitte aktivieren Sie sie oder bitten Sie ihren Hosting Provider, es zu aktivieren." + +#: classes/gateways/class.pmprogateway_stripe.php:285 +#: classes/gateways/class.pmprogateway_stripe.php:286 +msgid "Your Secret Key appears incorrect." +msgstr "Ihr geheimer Schlüssel scheint falsch zu sein." + +#: classes/gateways/class.pmprogateway_twocheckout.php:139 +msgid "API Private Key" +msgstr "Privater API-Schlüssel" + +#: classes/gateways/class.pmprogateway_twocheckout.php:143 +msgid "Go to API in 2Checkout and generate a new key pair. Paste the Private Key here." +msgstr "Gehen Sie zu API in 2Checkout und erzeugen Sie ein neues Schlüsselpaar. Fügen Sie den privaten Schlüssel hier ein." + +#: includes/currencies.php:11 +msgid "Brazilian Real ($)" +msgstr "Brasilianische Real (&Nummer36;)" + +#: includes/currencies.php:29 +#: includes/currencies.php:49 +msgid "South African Rand" +msgstr "Südafrikanische Rand" + +#: includes/filters.php:218 +#, php-format +msgid "User: %s
Email: %s
Membership Level: %s
Order #: %s
Original Profile Start Date: %s
Adjusted Profile Start Date: %s
Trial Period: %s
Trial Frequency: %s
" +msgstr "Benutzer: %s
E-Mail: %s
Mitgliedschafts-Paket: %s
Auftragsnummer: %s
Original-Startdatum des Profils: %s
Angepasstes Startdatum des Profils: %s
Testzeitraum: %s
Testfrequenz: %s
" + +#: includes/functions.php:169 +#: includes/functions.php:205 +#: includes/functions.php:211 +#: includes/functions.php:213 +#: includes/functions.php:214 +#: includes/functions.php:215 +#: includes/functions.php:218 +#: includes/functions.php:254 +#: includes/functions.php:320 +#: includes/functions.php:326 +#: includes/functions.php:331 +#: includes/functions.php:340 +#, php-format +msgid " and then %s per %s for %d more %s." +msgstr " und dann %s pro %s für %d weitere %s." + +#: includes/functions.php:173 +#: includes/functions.php:209 +#: includes/functions.php:215 +#: includes/functions.php:217 +#: includes/functions.php:218 +#: includes/functions.php:219 +#: includes/functions.php:222 +#, php-format +msgid " and then %s every %d %s for %d more %s." +msgstr " und dann %s jede(n) %d %s für %d weitere %s." + +#: includes/functions.php:178 +#: includes/functions.php:214 +#: includes/functions.php:220 +#: includes/functions.php:222 +#: includes/functions.php:223 +#: includes/functions.php:224 +#: includes/functions.php:227 +#: includes/functions.php:263 +#: includes/functions.php:329 +#: includes/functions.php:335 +#: includes/functions.php:340 +#: includes/functions.php:349 +#, php-format +msgid " and then %s after %d %s." +msgstr " und dann %s nach %d %s." + +#: includes/functions.php:184 +#: includes/functions.php:220 +#: includes/functions.php:228 +#: includes/functions.php:238 +#: includes/functions.php:239 +#: includes/functions.php:240 +#: includes/functions.php:242 +#: includes/functions.php:245 +#: includes/functions.php:249 +#: includes/functions.php:285 +#: includes/functions.php:351 +#: includes/functions.php:357 +#: includes/functions.php:362 +#: includes/functions.php:371 +#, php-format +msgid " and then %s per %s." +msgstr " und dann %s pro %s." + +#: includes/functions.php:188 +#: includes/functions.php:224 +#: includes/functions.php:232 +#: includes/functions.php:242 +#: includes/functions.php:243 +#: includes/functions.php:244 +#: includes/functions.php:246 +#: includes/functions.php:249 +#: includes/functions.php:253 +#: includes/functions.php:289 +#: includes/functions.php:355 +#: includes/functions.php:361 +#: includes/functions.php:366 +#: includes/functions.php:375 +#, php-format +msgid " and then %s every %d %s." +msgstr " und dann %s jede(n) %d %s." + +#: includes/functions.php:217 +#: includes/functions.php:253 +#: includes/functions.php:264 +#: includes/functions.php:275 +#: includes/functions.php:276 +#: includes/functions.php:277 +#: includes/functions.php:279 +#: includes/functions.php:282 +#: includes/functions.php:286 +#: includes/functions.php:322 +#: includes/functions.php:388 +#: includes/functions.php:394 +#: includes/functions.php:399 +#: includes/functions.php:408 +#: pages/levels.php:97 +#, php-format +msgid "After your initial payment, your first %d payments will cost %s." +msgstr "Nach Ihrer Erst-Zahlung wird die nächste %d Zahlung %s betragen." + +#: includes/functions.php:228 +#: includes/functions.php:264 +#: includes/functions.php:275 +#: includes/functions.php:286 +#: includes/functions.php:287 +#: includes/functions.php:288 +#: includes/functions.php:290 +#: includes/functions.php:293 +#: includes/functions.php:297 +#: includes/functions.php:333 +#: includes/functions.php:399 +#: includes/functions.php:405 +#: includes/functions.php:410 +#: includes/functions.php:419 +#: includes/functions.php:523 +#: includes/functions.php:532 +#, php-format +msgid "Customers in %s will be charged %s%% tax." +msgstr "Kunden aus %s werden zusätzlich %s%% Steuern verrechnet." + +#: includes/functions.php:228 +#: includes/functions.php:229 +#: includes/functions.php:230 +#: includes/functions.php:231 +#: includes/functions.php:235 +#: includes/functions.php:271 +#: includes/functions.php:337 +#: includes/functions.php:343 +#: includes/functions.php:348 +#: includes/functions.php:357 +#, php-format +msgid "The price for membership is %s per %s." +msgstr "Der Preis für den Zugang beträgt %s pro %s." + +#: includes/functions.php:230 +#: includes/functions.php:233 +#: includes/functions.php:237 +#: includes/functions.php:273 +#: includes/functions.php:339 +#: includes/functions.php:345 +#: includes/functions.php:350 +#: includes/functions.php:359 +#, php-format +msgid "%s per %s." +msgstr "%s pro %s." + +#: includes/functions.php:233 +#: includes/functions.php:234 +#: includes/functions.php:235 +#: includes/functions.php:238 +#: includes/functions.php:242 +#: includes/functions.php:278 +#: includes/functions.php:344 +#: includes/functions.php:350 +#: includes/functions.php:355 +#: includes/functions.php:364 +#, php-format +msgid "The price for membership is %s every %d %s." +msgstr "Der Preis für den Zugang beträgt %s jede(n) %d %s." + +#: includes/functions.php:237 +#: includes/functions.php:240 +#: includes/functions.php:244 +#: includes/functions.php:280 +#: includes/functions.php:346 +#: includes/functions.php:352 +#: includes/functions.php:357 +#: includes/functions.php:366 +#, php-format +msgid "%s every %d %s." +msgstr "%s jede(n) %d %s." + +#: includes/functions.php:242 +#: includes/functions.php:278 +#: includes/functions.php:289 +#: includes/functions.php:300 +#: includes/functions.php:301 +#: includes/functions.php:302 +#: includes/functions.php:304 +#: includes/functions.php:307 +#: includes/functions.php:311 +#: includes/functions.php:347 +#: includes/functions.php:413 +#: includes/functions.php:419 +#: includes/functions.php:540 +#: includes/functions.php:549 +#, php-format +msgid "Membership expires after %d %s." +msgstr "Zugang endet nach %d %s." + +#: includes/functions.php:258 +#: includes/functions.php:324 +#: includes/functions.php:330 +#: includes/functions.php:335 +#: includes/functions.php:344 +#, php-format +msgid " and then %s every %d %s for %d more payments." +msgstr " und dann %s jede(n) %d %s für %d weitere Zahlungen." + +#: includes/functions.php:469 +#: includes/functions.php:478 +#, php-format +msgid "%s per %s for %d more %s" +msgstr "%s pro %s für %d weitere %s" + +#: includes/functions.php:473 +#: includes/functions.php:482 +#, php-format +msgid "%s every %d %s for %d more payments" +msgstr "%s jede(n) %d %s für %d weitere Zahlungen" + +#: includes/functions.php:478 +#: includes/functions.php:487 +#, php-format +msgid "%s after %d %s" +msgstr "%s nach %d %s" + +#: includes/functions.php:484 +#: includes/functions.php:493 +#, php-format +msgid "%s every %s" +msgstr "%s jede(n) %s" + +#: includes/functions.php:488 +#: includes/functions.php:497 +#, php-format +msgid "%s every %d %s" +msgstr "%s jede(n) %d %s" + +#: includes/functions.php:556 +#: includes/functions.php:557 +#: includes/functions.php:566 +#, php-format +msgid "%s membership expires after %d %s" +msgstr "%s Mitgliedschaft läuft nach %d %s aus" + +#: includes/license.php:89 +#: includes/license.php:92 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "Geben Sie Ihren Support-Lizenzschlüssel ein. Sie finden Ihren Lizenzschlüssel in Ihrer E-Mail-Bestätigung für die Mitgliedschaft oder in Ihrem Mitgliedskonto." + +#: includes/license.php:91 +#: includes/license.php:94 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "Besuchen Sie die PMPro Mitgliedskonto Seite, um zu bestätigen, dass Ihr Konto aktiv ist und um Ihren Lizenzschlüssel zu finden." + +#: includes/profile.php:82 +#: includes/profile.php:84 +msgid "User is not paying." +msgstr "Benutzer bezahlt nicht." + +#: includes/updates.php:102 +#: includes/updates.php:115 +msgid "Start the Update" +msgstr "Update starten" + +#: pages/account.php:10 +msgid "Your membership is active." +msgstr "Ihr Zugang ist aktiv." + +#: pages/account.php:34 +#: pages/account.php:38 +#, php-format +msgid "Your first payment will cost %s." +msgstr "Ihre erste Zahlung wird %s betragen." + +#: pages/account.php:38 +#: pages/account.php:42 +#, php-format +msgid "Your first %d payments will cost %s." +msgstr "Ihre erste %d Zahlung wird %s betragen." + +#: pages/account.php:87 +#: pages/account.php:91 +#: adminpages/emailtemplates.php:156 +#: adminpages/emailtemplates.php:149 +msgid "Billing Information" +msgstr "Zahlungsinformationen" + +#: pages/account.php:114 +#: pages/account.php:118 +msgid "Edit Billing Information" +msgstr "Zahlungsdetails ändern" + +#: pages/account.php:152 +#: pages/account.php:156 +msgid "Update Billing Information" +msgstr "Zahlungsinformationen aktualisieren" + +#: pages/account.php:155 +#: pages/account.php:159 +msgid "Change Membership Level" +msgstr "Paket ändern" + +#: pages/account.php:157 +#: pages/account.php:161 +msgid "Cancel Membership" +msgstr "Mitgliedschaft stornieren" + +#: pages/cancel.php:17 +#: pages/cancel.php:37 +msgid "Yes, cancel my account" +msgstr "Ja, mein Konto löschen" + +#: pages/cancel.php:19 +#: pages/cancel.php:38 +msgid "No, keep my account" +msgstr "Nein, mein Konto behalten" + +#: pages/checkout.php:51 +#: pages/checkout.php:52 +#, php-format +msgid "

The %s code has been applied to your order.

" +msgstr "

Der %s Code wurde wie gewünscht verwendet.

" + +#: pages/checkout.php:688 +#: pages/checkout.php:691 +#: pages/checkout.php:707 +msgid "Submit and Pay with 2CheckOut" +msgstr "Senden und bezahlen mit 2CheckOut" + +#: pages/confirmation.php:12 +msgid "Your payment has been submitted to PayPal. Your membership will be activated shortly." +msgstr "Ihre Zahlung wurde an PayPal übermittelt. Ihre Mitgliedschaft wird in Kürze aktiviert." + +#: pages/confirmation.php:95 +#: pages/confirmation.php:97 +#, php-format +msgid "Below are details about your membership account. A welcome email with has been sent to %s." +msgstr "Untenstehend finden Sie Inforamtionen zu Ihrem Konto. Eine Willkommens-email wurde an %s gesendet." + +#: pages/invoice.php:120 +#: pages/invoice.php:122 +msgid "View Invoice" +msgstr "Rechnung anzeigen" + +#: pages/levels.php:15 +msgid "Subscription Information" +msgstr "Abonnement Informationen" + +#: pages/levels.php:33 +msgid "--" +msgstr "--" + +#: pages/levels.php:51 +#, php-format +msgid "%s per %s for %d more %s." +msgstr "%s pro %s für %d weitere %s." + +#: pages/levels.php:55 +#, php-format +msgid "%s every %d %s for %d more %s." +msgstr "%s jede(n) %d %s für %d weitere %s." + +#: pages/levels.php:60 +#, php-format +msgid "%s after %d %s." +msgstr "%s nach %d %s." + +#: preheaders/checkout.php:99 +#: preheaders/checkout.php:100 +#: preheaders/checkout.php:102 +#: preheaders/checkout.php:109 +msgid "Set up Your Account" +msgstr "Konto einrichten" + +#: preheaders/checkout.php:373 +#: preheaders/checkout.php:382 +#: preheaders/checkout.php:386 +#: preheaders/checkout.php:415 +#: preheaders/checkout.php:508 +#: preheaders/checkout.php:515 +#: preheaders/checkout.php:520 +#: preheaders/checkout.php:524 +#: preheaders/checkout.php:541 +#: preheaders/checkout.php:542 +msgid "That email address is already taken. Please try another." +msgstr "Diese E-Mail Adresse wird bereits verwendet. Bitte versuchen Sie es mit einer anderen." + +#: services/stripe-webhook.php:176 +#: services/stripe-webhook.php:194 +#: services/stripe-webhook.php:270 +#: services/stripe-webhook.php:271 +#: services/stripe-webhook.php:272 +#: services/stripe-webhook.php:283 +#: services/stripe-webhook.php:290 +#: services/stripe-webhook.php:304 +#: services/stripe-webhook.php:320 +#, php-format +msgid "%s has had their payment subscription cancelled by Stripe. Please check that this user's membership is cancelled on your site if it should be." +msgstr "Die Abo-Zahlung von %s wurde von Stripe storniert. Überprüfen Sie, ob die Mitgliedschaft dieses Benutzers deaktiviert ist, falls sie dies sein sollte." + +#: services/stripe-webhook.php:193 +#: services/stripe-webhook.php:203 +#, php-format +msgid "While processing an update to the subscription for %s, we failed to cancel their old subscription in Stripe. Please check that this user's original subscription (%s) is cancelled in the Stripe dashboard." +msgstr "Bei der Bearbeitung einer Aktualisierung des Abonnements für %s konnten wir das alte Abonnement in Stripe nicht stornieren. Bitte überprüfen Sie, ob das ursprüngliche Abonnement dieses Benutzers (%s) im Stripe-Dashboard gekündigt ist." + +#. Plugin Name of the plugin +#. Author of the plugin +#: blocks/blocks.php:41 +#: classes/class-pmpro-admin-activity-email.php:355 +#: includes/compatibility/divi.php:19 +#: includes/compatibility/divi.php:23 +#: includes/compatibility/elementor/class-pmpro-elementor.php:65 +#: includes/menus.php:34 +#: includes/menus.php:104 +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:38 +#: blocks/account-page/block.js:58 +#: blocks/account-profile-section/block.js:39 +#: blocks/billing-page/block.js:38 +#: blocks/cancel-page/block.js:38 +#: blocks/checkout-page/block.js:51 +#: blocks/confirmation-page/block.js:38 +#: blocks/invoice-page/block.js:38 +#: blocks/levels-page/block.js:38 +#: blocks/login/block.js:46 +#: blocks/member-profile-edit/block.js:33 +#: js/blocks.build.js:135 +#: js/blocks.build.js:192 +#: js/blocks.build.js:249 +#: js/blocks.build.js:340 +#: js/blocks.build.js:508 +#: js/blocks.build.js:565 +#: js/blocks.build.js:693 +#: js/blocks.build.js:1001 +#: js/blocks.build.js:1152 +#: js/blocks.build.js:1222 +#: js/blocks.build.js:1279 +#: js/blocks.build.js:1342 +#: js/blocks.build.js:1502 +#: classes/class-pmpro-admin-activity-email.php:349 +#: blocks/account-invoices-section/block.js:47 +#: blocks/account-links-section/block.js:47 +#: blocks/account-membership-section/block.js:45 +#: blocks/account-page/block.js:72 +#: blocks/account-profile-section/block.js:45 +#: blocks/billing-page/block.js:44 +#: blocks/cancel-page/block.js:44 +#: blocks/checkout-page/block.js:58 +#: blocks/confirmation-page/block.js:46 +#: blocks/invoice-page/block.js:45 +#: blocks/levels-page/block.js:44 +#: blocks/member-profile-edit/block.js:37 +msgid "Paid Memberships Pro" +msgstr "Paid Memberships Pro" + +#. Plugin URI of the plugin +#. Author URI of the plugin +msgid "https://www.paidmembershipspro.com" +msgstr "https://www.paidmembershipspro.com" + +#. Description of the plugin +msgid "The most complete member management and membership subscriptions plugin for WordPress." +msgstr "Das umfassendste Plugin für Mitgliederverwaltung und Mitgliedsbeiträge für WordPress." + +#. Author of the plugin +msgid "Stranger Studios" +msgstr "Stranger Studios" + +#. Author URI of the plugin +msgid "https://www.strangerstudios.com" +msgstr "https://www.strangerstudios.com" + +#: adminpages/admin_header.php:27 +#: adminpages/admin_header.php:29 +msgid "Next step:" +msgstr "Nächster Schritt:" + +#: adminpages/admin_header.php:129 +msgid "The billing details for some of your discount codes are not supported by your gateway." +msgstr "Die Rechnungsdaten für einige Ihrer Rabattcodes werden von Ihrem Gateway nicht unterstützt." + +#: adminpages/admin_header.php:133 +msgid "The billing details for this discount code are not supported by your gateway." +msgstr "Die Rechnungsdaten für diesen Rabattcode werden von Ihrem Gateway nicht unterstützt." + +#: adminpages/admin_header.php:137 +msgid "The discount codes with issues are highlighted below." +msgstr "Die Rabattcodes mit Ausgaben sind unten hervorgehoben." + +#: adminpages/admin_header.php:139 +msgid "Please edit your discount codes" +msgstr "Bitte bearbeiten Sie Ihre Rabattcodes" + +#: adminpages/admin_header.php:177 +msgid "Valid License" +msgstr "Gültige Lizenz" + +#: adminpages/admin_header.php:179 +msgid "No License" +msgstr "Keine Lizenz" + +#: adminpages/admin_header.php:222 +#: includes/adminpages.php:51 +#: includes/adminpages.php:146 +msgid "Dashboard" +msgstr "Dashboard" + +#: adminpages/admin_header.php:226 +#: includes/adminpages.php:52 +#: includes/adminpages.php:158 +#: adminpages/reports/login.php:102 +msgid "Members" +msgstr "Mitglieder" + +#: adminpages/admin_header.php:238 +#: includes/adminpages.php:55 +#: includes/adminpages.php:194 +msgid "Settings" +msgstr "Einstellungen" + +#: adminpages/admin_header.php:246 +#: includes/adminpages.php:65 +msgid "License" +msgstr "Lizenz" + +#: adminpages/admin_header.php:265 +msgid "Payment Gateway & SSL Settings" +msgstr "Zahlungs-Gateway & SSL-Einstellungen" + +#: adminpages/admin_header.php:273 +#: adminpages/emailtemplates.php:20 +#: includes/adminpages.php:72 +msgid "Email Templates" +msgstr "E-Mail-Vorlagen" + +#: adminpages/advancedsettings.php:106 +#: includes/updates/upgrade_1.php:7 +#: adminpages/advancedsettings.php:116 +msgid "This content is for !!levels!! members only.
Join Now" +msgstr "Dieser Inhalt ist nur für !!levels!! Mitglieder.
Jetzt registrieren" + +#: adminpages/advancedsettings.php:111 +#: adminpages/advancedsettings.php:121 +msgid "This content is for !!levels!! members only.
Log In Join Now" +msgstr "Dieser Inhalt ist nur für !!levels!! Mitglieder.
Einloggen Registrieren" + +#: adminpages/advancedsettings.php:135 +#: adminpages/advancedsettings.php:144 +msgid "Restrict Dashboard Access" +msgstr "Zugang zum Dashboard einschränken" + +#: adminpages/advancedsettings.php:140 +#: adminpages/advancedsettings.php:149 +msgid "WordPress Dashboard" +msgstr "WordPress Dashboard" + +#: adminpages/advancedsettings.php:143 +#: adminpages/advancedsettings.php:152 +msgid "Block all users with the Subscriber role from accessing the Dashboard." +msgstr "Alle Benutzer mit der Rolle „Abonnent“ für den Zugriff auf das Dashboard sperren." + +#: adminpages/advancedsettings.php:148 +#: adminpages/advancedsettings.php:157 +msgid "WordPress Toolbar" +msgstr "WordPress Werkzeugleiste" + +#: adminpages/advancedsettings.php:151 +#: adminpages/advancedsettings.php:160 +msgid "Hide the Toolbar from all users with the Subscriber role." +msgstr "Die Werkzeugleiste für alle Benutzer mit der Rolle „Abonnent“ ausblenden." + +#: adminpages/advancedsettings.php:159 +#: adminpages/advancedsettings.php:168 +msgid "Message Settings" +msgstr "Nachrichteneinstellungen" + +#: adminpages/advancedsettings.php:177 +#: adminpages/advancedsettings.php:186 +#: adminpages/advancedsettings.php:195 +msgid "Available variables" +msgstr "Verfügbare Variablen" + +#: adminpages/advancedsettings.php:224 +#: adminpages/advancedsettings.php:233 +msgid "Checkout Settings" +msgstr "Checkout Einstellungen" + +#: adminpages/advancedsettings.php:257 +#: adminpages/advancedsettings.php:279 +msgid "reCAPTCHA Version" +msgstr "reCAPTCHA Version" + +#: adminpages/advancedsettings.php:260 +#: adminpages/advancedsettings.php:282 +msgid " v2 - Checkbox" +msgstr " v2-Checkbox" + +#: adminpages/advancedsettings.php:261 +#: adminpages/advancedsettings.php:283 +msgid "v3 - Invisible" +msgstr "v3 - Unsichtbar" + +#: adminpages/advancedsettings.php:263 +#: adminpages/advancedsettings.php:285 +msgid "Changing your version will require new API keys." +msgstr "Wenn Sie Ihre Version ändern, benötigen Sie neue API-Schlüssel." + +#: adminpages/advancedsettings.php:283 +#: adminpages/advancedsettings.php:305 +msgid "Communication Settings" +msgstr "Kommunikationseinstellungen" + +#: adminpages/advancedsettings.php:286 +#: adminpages/advancedsettings.php:308 +msgid "Notifications" +msgstr "Benachrichtigungen" + +#: adminpages/advancedsettings.php:290 +#: adminpages/advancedsettings.php:312 +msgid "Show all notifications." +msgstr "Alle Benachrichtigungen anzeigen." + +#: adminpages/advancedsettings.php:293 +#: adminpages/advancedsettings.php:315 +msgid "Show only security notifications." +msgstr "Nur Sicherheitsbenachrichtigungen anzeigen." + +#: adminpages/advancedsettings.php:297 +#: adminpages/advancedsettings.php:319 +msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." +msgstr "Benachrichtigungen werden gelegentlich auf den Einstellungsseiten für bezahlte Mitgliedschaften Pro angezeigt." + +#: adminpages/advancedsettings.php:302 +#: adminpages/advancedsettings.php:324 +msgid "Activity Email Frequency" +msgstr "Aktivität E-Mail-Häufigkeit" + +#: adminpages/advancedsettings.php:310 +#: adminpages/advancedsettings.php:332 +msgid "Weekly" +msgstr "Wöchentlich" + +#: adminpages/advancedsettings.php:320 +#: adminpages/advancedsettings.php:342 +msgid "Send periodic sales and revenue updates from this site to the administration email address." +msgstr "Senden Sie regelmäßige Updates zu Verkäufen und Einnahmen von dieser Website an die E-Mail-Adresse der Verwaltung." + +#: adminpages/advancedsettings.php:473 +#: adminpages/advancedsettings.php:475 +#: adminpages/advancedsettings.php:522 +msgid "Uninstall PMPro on deletion?" +msgstr "PMPro bei Löschung deinstallieren?" + +#: adminpages/advancedsettings.php:478 +#: adminpages/advancedsettings.php:480 +#: adminpages/advancedsettings.php:527 +msgid "Yes - Delete all PMPro Data." +msgstr "Ja - Alle PMPro-Daten löschen." + +#: adminpages/dashboard.php:12 +msgid "Welcome to Paid Memberships Pro" +msgstr "Willkommen bei Paid Memberships Pro" + +#: adminpages/dashboard.php:40 +msgid "Recent Members" +msgstr "Neue Mitglieder" + +#: adminpages/dashboard.php:47 +msgid "Recent Orders" +msgstr "Aktuelle Aufträge" + +#: adminpages/dashboard.php:54 +msgid "Paid Memberships Pro News and Updates" +msgstr "Paid Memberships Pro Neuigkeiten und Updates" + +#: adminpages/dashboard.php:108 +msgid "Initial Setup" +msgstr "Erstmalige Einrichtung" + +#: adminpages/dashboard.php:113 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 +msgid "Create a Membership Level" +msgstr "Eine Mitgliedschafts-Paket erstellen" + +#: adminpages/dashboard.php:115 +msgid "View Membership Levels" +msgstr "Ansicht Mitgliedschafts-Pakete" + +#: adminpages/dashboard.php:123 +msgid "Generate Membership Pages" +msgstr "Mitgliedschaftsseiten generieren" + +#: adminpages/dashboard.php:125 +msgid "Manage Membership Pages" +msgstr "Mitgliedschaftsseiten verwalten" + +#: adminpages/dashboard.php:133 +#: adminpages/dashboard.php:135 +msgid "Configure Payment Settings" +msgstr "Zahlungseinstellungen konfigurieren" + +#: adminpages/dashboard.php:143 +msgid "Confirm Email Settings" +msgstr "Bestätigen Sie die E-Mail-Einstellungen" + +#: adminpages/dashboard.php:147 +#: adminpages/dashboard.php:151 +msgid "View Advanced Settings" +msgstr "Erweiterte Einstellungen anzeigen" + +#: adminpages/dashboard.php:151 +#: adminpages/dashboard.php:155 +msgid "Explore Add Ons for Additional Features" +msgstr "Erkunden Sie Add Ons für zusätzliche Funktionen" + +#: adminpages/dashboard.php:156 +#: adminpages/dashboard.php:160 +msgid "For guidance as your begin these steps," +msgstr "Sie können sich bei diesen Schritten beraten lassen," + +#: adminpages/dashboard.php:157 +#: adminpages/dashboard.php:161 +msgid "view the Initial Setup Video and Docs." +msgstr "sehen Sie sich das Video und die Dokumente zur Ersteinrichtung an." + +#: adminpages/dashboard.php:161 +#: adminpages/dashboard.php:165 +msgid "Support License" +msgstr "Support Lizenz" + +#: adminpages/dashboard.php:169 +#: adminpages/dashboard.php:173 +msgid "No support license key found." +msgstr "Kein Support-Lizenzschlüssel gefunden." + +#: adminpages/dashboard.php:170 +#: adminpages/dashboard.php:174 +msgid "Enter your key here »" +msgstr "Geben Sie hier Ihren Schlüssel ein »" + +#: adminpages/dashboard.php:175 +#: adminpages/dashboard.php:179 +msgid "View your membership account to verify your license key." +msgstr "Sie können Ihr Mitgliedskonto einsehen, um Ihren Lizenzschlüssel zu überprüfen." + +#: adminpages/dashboard.php:177 +#: adminpages/license.php:51 +#: adminpages/dashboard.php:181 +#: adminpages/license.php:43 +#: adminpages/dashboard.php:183 +#: adminpages/license.php:57 +msgid "Thank you! A valid %s license key has been used to activate your support license on this site." +msgstr "Thank you! A valid %s license key has been used to activate your support license on this site." + +#: adminpages/dashboard.php:181 +#: adminpages/dashboard.php:185 +#: adminpages/dashboard.php:187 +msgid "An annual support license is recommended for websites running Paid Memberships Pro." +msgstr "Für Websites, die Paid Memberships Pro verwenden, wird eine jährliche Support-Lizenz empfohlen." + +#: adminpages/dashboard.php:181 +#: adminpages/dashboard.php:185 +msgid "View Pricing »" +msgstr "Preise anzeigen »" + +#: adminpages/dashboard.php:182 +#: adminpages/dashboard.php:186 +msgid "Upgrade" +msgstr "Upgrade" + +#: adminpages/dashboard.php:185 +#: adminpages/dashboard.php:189 +msgid "Paid Memberships Pro and our add ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." +msgstr "Paid Memberships Pro und unsere Add-ons werden unter der GPLv2-Lizenz vertrieben. Dies bedeutet unter anderem, dass Sie die Software auf dieser oder einer anderen Website kostenlos verwenden dürfen." + +#: adminpages/dashboard.php:188 +#: adminpages/dashboard.php:192 +#: adminpages/dashboard.php:194 +msgid "Get Involved" +msgstr "Engagieren Sie sich" + +#: adminpages/dashboard.php:189 +#: adminpages/dashboard.php:193 +#: adminpages/dashboard.php:195 +msgid "There are many ways you can help support Paid Memberships Pro." +msgstr "Es gibt viele Möglichkeiten, wie Sie Paid Memberships Pro unterstützen können." + +#: adminpages/dashboard.php:190 +#: adminpages/dashboard.php:194 +#: adminpages/dashboard.php:196 +msgid "Get involved with our plugin development via GitHub." +msgstr "Beteiligen Sie sich an unserer Plugin-Entwicklung über GitHub." + +#: adminpages/dashboard.php:190 +#: adminpages/dashboard.php:194 +#: adminpages/dashboard.php:196 +msgid "View on GitHub" +msgstr "Ansicht auf GitHub" + +#: adminpages/dashboard.php:192 +#: adminpages/dashboard.php:196 +#: adminpages/dashboard.php:198 +msgid "Subscribe to our YouTube Channel." +msgstr "Abonnieren Sie unseren YouTube-Kanal." + +#: adminpages/dashboard.php:193 +#: adminpages/dashboard.php:197 +#: adminpages/dashboard.php:199 +msgid "Follow us on Facebook." +msgstr "Folgen Sie uns auf Facebook." + +#: adminpages/dashboard.php:194 +#: adminpages/dashboard.php:198 +#: adminpages/dashboard.php:200 +msgid "Follow @pmproplugin on Twitter." +msgstr "Folgen Sie @pmproplugin auf Twitter." + +#: adminpages/dashboard.php:195 +#: adminpages/dashboard.php:199 +#: adminpages/dashboard.php:201 +msgid "Share an honest review at WordPress.org." +msgstr "Schreiben Sie eine ehrliche Bewertung auf WordPress.org." + +#: adminpages/dashboard.php:198 +#: adminpages/dashboard.php:202 +#: adminpages/dashboard.php:204 +msgid "Help translate Paid Memberships Pro into your language." +msgstr "Helfen Sie bei der Übersetzung von Paid Memberships Pro in Ihre Sprache." + +#: adminpages/dashboard.php:198 +#: adminpages/dashboard.php:202 +#: adminpages/dashboard.php:204 +msgid "Translation Dashboard" +msgstr "Übersetzung Dashboard" + +#: adminpages/dashboard.php:265 +#: adminpages/dashboard.php:269 +#: adminpages/dashboard.php:271 +msgid "View All Members " +msgstr "Alle Mitglieder anzeigen" + +#: adminpages/dashboard.php:356 +#: adminpages/dashboard.php:360 +#: adminpages/dashboard.php:362 +msgid "View All Orders " +msgstr "Alle Bestellungen anzeigen " + +#: adminpages/dashboard.php:387 +#: classes/class-pmpro-admin-activity-email.php:346 +#: adminpages/dashboard.php:391 +#: adminpages/dashboard.php:393 +#: classes/class-pmpro-admin-activity-email.php:340 +msgid "No news found." +msgstr "Keine Neuigkeiten gefunden." + +#: adminpages/dashboard.php:393 +#: adminpages/dashboard.php:397 +#: adminpages/dashboard.php:399 +msgid "Posted %s" +msgstr "Gesendet %s" + +#: adminpages/dashboard.php:401 +#: adminpages/dashboard.php:405 +#: adminpages/dashboard.php:407 +msgid "View More" +msgstr "Mehr anzeigen" + +#: adminpages/discountcodes.php:358 +#: adminpages/membershiplevels.php:169 +#: adminpages/discountcodes.php:360 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "WARNUNG: Eine Stufe wurde sowohl mit einem wiederkehrenden Rechnungsbetrag als auch mit einem Ablaufdatum festgelegt. Sie müssen nur eines davon festlegen, es sei denn, Sie möchten wirklich, dass diese Mitgliedschaft nach einer bestimmten Zeitspanne ausläuft. Weitere Informationen finden Sie in unserem Beitrag hier." + +#: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:450 +#: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 +msgid "Stripe integration does not allow billing periods longer than 1 year." +msgstr "Die Stripe-Integration erlaubt keine Abrechnungszeiträume von mehr als 1 Jahr." + +#: adminpages/discountcodes.php:643 +#: adminpages/membershiplevels.php:480 +#: adminpages/discountcodes.php:645 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "Optional: Erlauben Sie Abrechnungslimits mit Stripe unter Verwendung des Stripe Billing Limits Add On." + +#: adminpages/discountcodes.php:697 +#: adminpages/membershiplevels.php:580 +#: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 +msgid "Hour(s)" +msgstr "Stunde(n)" + +#: adminpages/discountcodes.php:754 +#: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 +msgid "No Discount Codes Found" +msgstr "Keine Rabatt-Codes gefunden" + +#: adminpages/discountcodes.php:755 +#: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 +msgid "Discount codes allow you to override your membership level's default pricing." +msgstr "Mit Rabattcodes können Sie die Standardpreise für Ihre Mitgliedschaft außer Kraft setzen." + +#: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 +msgid "Create a Discount Code" +msgstr "Einen Rabattcode erstellen" + +#: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 +msgid "Documentation: Discount Codes" +msgstr "Dokumentation: Rabatt-Codes" + +#: adminpages/discountcodes.php:807 +#: adminpages/discountcodes.php:809 +msgid "Edit Code: %s" +msgstr "Code bearbeiten: %s" + +#: adminpages/discountcodes.php:810 +#: adminpages/membershiplevels.php:833 +#: adminpages/orders.php:1366 +#: includes/profile.php:443 +#: adminpages/discountcodes.php:833 +#: adminpages/discountcodes.php:843 +#: adminpages/membershiplevels.php:858 +#: adminpages/membershiplevels.php:868 +#: adminpages/orders.php:1396 +#: adminpages/orders.php:1406 +#: adminpages/discountcodes.php:835 +#: adminpages/discountcodes.php:845 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 +msgid "Edit" +msgstr "Bearbeiten" + +#: adminpages/discountcodes.php:813 +#: adminpages/membershiplevels.php:834 +#: adminpages/orders.php:1369 +#: adminpages/discountcodes.php:847 +#: adminpages/discountcodes.php:858 +#: adminpages/membershiplevels.php:872 +#: adminpages/membershiplevels.php:883 +#: adminpages/orders.php:1410 +#: adminpages/orders.php:1421 +#: adminpages/discountcodes.php:849 +#: adminpages/discountcodes.php:860 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 +msgid "Copy" +msgstr "Kopieren" + +#: adminpages/discountcodes.php:820 +msgid " View Orders" +msgstr "Bestellungen anzeigen" + +#: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 +msgid "Send Emails From" +msgstr "E-Mails senden von" + +#: adminpages/emailsettings.php:119 +#: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 +msgid "Save All Settings" +msgstr "Alle Einstellungen speichern" + +#: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 +msgid "Email Deliverability" +msgstr "E-Mail-Zustellbarkeit" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "Wenn Sie Probleme mit der E-Mail-Zustellung von Ihrem Server haben, lesen Sie bitte unseren Leitfaden zur E-Mail-Fehlerbehebung. Als Alternative bietet Paid Memberships Pro eine integrierte Integration für SendWP. Optional: SendWP ist ein Drittanbieterdienst für Transaktions-E-Mails in WordPress. Klicken Sie hier, um mehr über SendWP und Paid Memberships Pro zu erfahren." + +#: adminpages/emailsettings.php:141 +msgid "Connect to SendWP" +msgstr "Mit SendWP verbinden" + +#: adminpages/emailsettings.php:143 +msgid "Disconnect from SendWP" +msgstr "Trennen Sie die Verbindung zu SendWP" + +#: adminpages/emailsettings.php:149 +msgid "Your site is connected to SendWP." +msgstr "Ihre Website ist mit SendWP verbunden." + +#: adminpages/emailsettings.php:149 +msgid "View Your SendWP Account" +msgstr "Ihr SendWP-Konto anzeigen" + +#: adminpages/emailsettings.php:150 +msgid "Please enable email sending inside %s." +msgstr "Bitte aktivieren Sie den E-Mail-Versand innerhalb von %s." + +#: adminpages/emailsettings.php:157 +msgid "Other Email Settings" +msgstr "Andere E-Mail-Einstellungen" + +#: adminpages/emailsettings.php:166 +msgid "Default WP notification email." +msgstr "Standard-WP-Benachrichtigungs-E-Mail." + +#: adminpages/emailsettings.php:167 +msgid "Recommended: Leave unchecked. Members will still get an email confirmation from PMPro after checkout." +msgstr "Empfohlen: Unmarkiert lassen. Die Mitglieder erhalten nach der Buchung trotzdem eine E-Mail-Bestätigung von PMPro." + +#: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 +msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." +msgstr "Wählen Sie eine E-Mail-Vorlage aus dem Dropdown-Menü aus, um den Betreff und den Text der E-Mails, die über Ihre Mitgliederseite versendet werden, anzupassen. Sie können auch eine bestimmte E-Mail deaktivieren oder eine Testversion über diese Verwaltungsseite senden." + +#: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 +msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." +msgstr "Klicken Sie hier, um eine Beschreibung der einzelnen E-Mails zu erhalten, die an Ihre Mitglieder und Administratoren in den verschiedenen Stadien der Mitgliedschaft gesendet werden." + +#: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 +msgid "Email Template" +msgstr "E-Mail-Vorlage" + +#: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 +msgid "Select a Template to Edit" +msgstr "Wählen Sie eine Vorlage zum Bearbeiten" + +#: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 +msgid "Disable this email?" +msgstr "Diese E-Mail deaktivieren?" + +#: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 +msgid "Emails with this template will not be sent." +msgstr "E-Mails mit dieser Vorlage werden nicht versendet." + +#: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 +msgid "Subject" +msgstr "Betreff" + +#: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 +msgid "Body" +msgstr "Body" + +#: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 +msgid "Send a test email to " +msgstr "Senden Sie eine Test-E-Mail an " + +#: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 +msgid "Save Template and Send Email" +msgstr "Vorlage speichern und E-Mail senden" + +#: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 +msgid "Your current membership will be used for any membership level data." +msgstr "Ihre aktuelle Mitgliedschaft wird für alle Daten der Mitgliedschaftsebene verwendet." + +#: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 +msgid "Save Template" +msgstr "Vorlage speichern" + +#: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 +msgid "Reset Template" +msgstr "Vorlage zurücksetzen" + +#: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 +msgid "Variable Reference" +msgstr "Variable Referenz" + +#: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 +msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." +msgstr "Verwenden Sie die unten stehenden Platzhaltervariablen, um Ihre Mitglieder- und Admin-E-Mails mit spezifischen Benutzer- oder Mitgliedsdaten zu versehen." + +#: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 +msgid "General Settings / Membership Info" +msgstr "Allgemeine Einstellungen / Mitgliedschaftsinformationen" + +#: adminpages/emailtemplates.php:126 +#: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 +msgid "Display Name (Profile/Edit User > Display name publicly as)" +msgstr "Anzeigename (Profil/Benutzer bearbeiten > Anzeigename öffentlich als)" + +#: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 +msgid "Site Title" +msgstr "Seitentitel" + +#: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 +msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" +msgstr "Website-E-Mail-Adresse (Allgemeine Einstellungen > E-Mail ODER Mitgliedschaften > Einstellungen > E-Mail-Einstellungen)" + +#: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 +msgid "Membership Level Name" +msgstr "Name der Mitgliedschafts-Paket" + +#: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 +msgid "Membership Level Change" +msgstr "Änderung des Mitgliedschafts-Paketes" + +#: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 +msgid "Membership Level Expiration" +msgstr "Ablauf des Mitgliedschafts-Paketes" + +#: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 +msgid "Membership Start Date" +msgstr "Datum des Beginns der Mitgliedschaft" + +#: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 +msgid "Membership End Date" +msgstr "Enddatum der Mitgliedschaft" + +#: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 +msgid "Login URL" +msgstr "Login URL" + +#: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 +msgid "Membership Levels Page URL" +msgstr "URL des Mitgliedschafts-Paketes" + +#: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 +msgid "Billing Info Complete Address" +msgstr "Vollständige Rechnungsadresse" + +#: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 +msgid "Billing Info Name" +msgstr "Rechnungsdaten Name" + +#: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 +msgid "Billing Info Street Address" +msgstr "Rechnungsdaten Straße und Hausnummer" + +#: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 +msgid "Billing Info City" +msgstr "Rechnungsdaten Stadt" + +#: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 +msgid "Billing Info State" +msgstr "Rechnungsdaten Bundesland" + +#: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 +msgid "Billing Info ZIP Code" +msgstr "Rechnungsdaten Postleitzahl" + +#: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 +msgid "Billing Info Country" +msgstr "Rechnungsdaten Land" + +#: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 +msgid "Billing Info Phone #" +msgstr "Rechnungsdaten Telefonnummer" + +#: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 +msgid "Credit Card Number (last 4 digits)" +msgstr "Kreditkartennummer (letzte 4 Ziffern)" + +#: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 +msgid "Credit Card Expiration Month (mm format)" +msgstr "Ablaufmonat der Kreditkarte (Format mm)" + +#: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 +msgid "Credit Card Expiration Year (yyyy format)" +msgstr "Ablaufjahr der Kreditkarte (Format yyyy)" + +#: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 +msgid "Membership Level Cost Text" +msgstr "Mitgliedschafts-Paket Kosten Text" + +#: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 +msgid "Payment Instructions (used in Checkout - Email Template)" +msgstr "Zahlungsanweisungen (verwendet in Checkout - E-Mail-Vorlage)" + +#: adminpages/emailtemplates.php:176 +#: includes/profile.php:423 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 +msgid "Invoice ID" +msgstr "Rechnung ID" + +#: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 +msgid "Invoice Total" +msgstr "Rechnung Gesamt" + +#: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 +msgid "Invoice Date" +msgstr "Rechnungsdatum" + +#: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 +msgid "Invoice Page URL" +msgstr "URL der Rechnungsseite" + +#: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 +msgid "Discount Code Applied" +msgstr "Rabattcode angewendet" + +#: adminpages/license.php:47 +#: adminpages/license.php:39 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "Geben Sie Ihren Support-Lizenzschlüssel ein. Sie finden Ihren Lizenzschlüssel in Ihrer E-Mail-Bestätigung für die Mitgliedschaft oder in Ihrem Mitgliedskonto." + +#: adminpages/license.php:49 +#: adminpages/license.php:37 +#: adminpages/license.php:41 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "Besuchen Sie die PMPro Mitgliedskonto Seite, um zu bestätigen, dass Ihr Konto aktiv ist und um Ihren Lizenzschlüssel zu finden." + +#: adminpages/license.php:61 +#: adminpages/license.php:53 +#: adminpages/license.php:67 +msgid "Validate Key" +msgstr "Schlüssel bestätigen" + +#: adminpages/license.php:95 +#: adminpages/license.php:87 +#: adminpages/license.php:94 +msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." +msgstr "Paid Memberships Pro und unsere Add Ons werden unter der GPLv2 license vertrieben. Dies bedeutet unter anderem, dass Sie die Software auf dieser oder einer anderen Website kostenlos nutzen dürfen." + +#: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 +msgid "Check to include this message in the membership confirmation email." +msgstr "Prüfen Sie, ob diese Nachricht in der E-Mail zur Bestätigung der Mitgliedschaft enthalten ist." + +#: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 +msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." +msgstr "Sie müssen einen „Tarif“ in Ihrem Braintree-Dashboard mit den gleichen Einstellungen und der „Tarif-ID“ auf %s erstellen." + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "Optional: Erlauben Sie weitere anpassbare Testzeiträume und Verlängerungsdaten mit dem Subscription Delays Add On." + +#: adminpages/membershiplevels.php:571 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "Optional: Ermöglichen Sie weitere anpassbare Ablaufdaten mit dem Ablaufdatum festlegen - Add On ." + +#: adminpages/membershiplevels.php:589 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "ACHTUNG: Für diese Stufe sind sowohl ein wiederkehrender Rechnungsbetrag als auch ein Verfallsdatum festgelegt. Sie müssen nur eines davon festlegen, es sei denn, Sie möchten wirklich, dass diese Mitgliedschaft nach einer bestimmten Anzahl von Zahlungen ausläuft. Weitere Informationen finden Sie in unserem Beitrag hier." + +#: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 +msgid "Non-members will not see posts in these categories. You can update this setting here." +msgstr "Nicht-Mitglieder sehen keine Beiträge in diesen Kategorien. Sie können diese Einstellung hier aktualisieren." + +#: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 +msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." +msgstr "Nicht-Mitglieder sehen den Titel und den Textauszug für Beiträge in diesen Kategorien. Sie können diese Einstellung hier aktualisieren." + +#: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 +msgid "Non-members will see the title only for posts in these categories. You can update this setting here." +msgstr "Nicht-Mitglieder sehen den Titel nur für Beiträge in diesen Kategorien. Sie können diese Einstellung hier aktualisieren." + +#: adminpages/membershiplevels.php:778 +#: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 +msgid "No Membership Levels Found" +msgstr "Keine Mitgliedschaftsebenen gefunden" + +#: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 +msgid "Video: Membership Levels" +msgstr "Video: Mitgliedschaftspakete" + +#: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 +msgid "Optional: Capture additional member profile fields using the Register Helper Add On." +msgstr "Optional: Erfassen Sie zusätzliche Mitgliederprofilfelder mit dem Register Helper Add On." + +#: adminpages/orders.php:862 +#: includes/profile.php:109 +#: adminpages/orders.php:868 +#: adminpages/orders.php:525 +#: includes/profile.php:95 +msgid "at" +msgstr "Bei" + +#: adminpages/orders.php:1024 +#: adminpages/orders.php:1030 +#: adminpages/orders.php:1111 +msgid "With a Discount Code" +msgstr "Mit einem Rabattcode" + +#: adminpages/orders.php:1028 +#: adminpages/orders.php:1034 +#: adminpages/orders.php:1115 +msgid "Only Paid Orders" +msgstr "Only Paid Orders" + +#: adminpages/orders.php:1030 +#: adminpages/orders.php:1036 +#: adminpages/orders.php:1117 +msgid "Only Free Orders" +msgstr "Nur kostenlose Bestellungen" + +#: adminpages/orders.php:1073 +#: adminpages/orders.php:1079 +#: adminpages/orders.php:1160 +msgid "Last Month" +msgstr "Letzter Monat" + +#: adminpages/orders.php:1077 +#: adminpages/orders.php:1083 +#: adminpages/orders.php:1164 +msgid "Last Year" +msgstr "Letztes Jahr" + +#: adminpages/pagesettings.php:86 +#: adminpages/pagesettings.php:100 +#: adminpages/pagesettings.php:105 +#: adminpages/pagesettings.php:119 +msgid "Your Profile" +msgstr "Ihr Profil" + +#: adminpages/pagesettings.php:99 +#: includes/login.php:481 +#: includes/login.php:717 +#: includes/menus.php:66 +#: includes/menus.php:70 +#: includes/menus.php:160 +#: adminpages/pagesettings.php:118 +msgid "Log In" +msgstr "Log In" + +#: adminpages/pagesettings.php:114 +#: adminpages/pagesettings.php:133 +msgid "Found an existing version of the %s page and used that one." +msgstr "Ich habe eine bestehende Version der Seite %s gefunden und diese verwendet." + +#: adminpages/pagesettings.php:117 +#: adminpages/pagesettings.php:136 +msgid "Error generating the %s page. You will have to choose or create one manually." +msgstr "Fehler beim Generieren der %s-Seite. Sie müssen eine Seite auswählen oder manuell erstellen." + +#: adminpages/pagesettings.php:174 +#: adminpages/pagesettings.php:192 +msgid "Manage Pages" +msgstr "Seiten verwalten" + +#: adminpages/pagesettings.php:175 +#: adminpages/pagesettings.php:193 +msgid "Several frontend pages are required for your Paid Memberships Pro site." +msgstr "Für Ihre Paid Memberships Pro-Website sind mehrere Frontend-Seiten erforderlich." + +#: adminpages/pagesettings.php:176 +#: adminpages/pagesettings.php:194 +msgid "Generate Pages For Me" +msgstr "Seiten für mich erstellen" + +#: adminpages/pagesettings.php:177 +#: adminpages/pagesettings.php:195 +msgid "Create Pages Manually" +msgstr "Seiten manuell erstellen" + +#: adminpages/pagesettings.php:199 +#: adminpages/pagesettings.php:224 +msgid "or the Membership Account block" +msgstr "oder den Block Mitgliedskonto" + +#: adminpages/pagesettings.php:216 +#: adminpages/pagesettings.php:248 +msgid "or the Membership Billing block" +msgstr "oder den Block „Abrechnung der Mitgliedschaft“" + +#: adminpages/pagesettings.php:233 +#: adminpages/pagesettings.php:272 +msgid "or the Membership Cancel block" +msgstr "oder den Block Mitgliedschaft kündigen" + +#: adminpages/pagesettings.php:251 +#: adminpages/pagesettings.php:297 +msgid "or the Membership Checkout block" +msgstr "oder den Block Mitgliedschaft Checkout" + +#: adminpages/pagesettings.php:269 +#: adminpages/pagesettings.php:322 +msgid "or the Membership Confirmation block" +msgstr "oder den Block „Bestätigung der Mitgliedschaft“" + +#: adminpages/pagesettings.php:287 +#: adminpages/pagesettings.php:347 +msgid "or the Membership Invoice block" +msgstr "oder der Block „Mitgliedschaftsrechnungen“" + +#: adminpages/pagesettings.php:305 +#: adminpages/pagesettings.php:372 +msgid "or the Membership Levels block" +msgstr "oder den Block Mitgliedschafts-Pakete" + +#: adminpages/pagesettings.php:315 +#: adminpages/pagesettings.php:382 +msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." +msgstr "Optional: Passen Sie Ihre Seite für die Mitgliedschafts-Pakete mit dem Erweiterte Pakete Seite - Add On an." + +#: adminpages/pagesettings.php:321 +#: adminpages/pagesettings.php:388 +msgid "Log In Page" +msgstr "Log In Seite" + +#: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:356 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 +msgid "Use WordPress Default" +msgstr "WordPress-Standard verwenden" + +#: adminpages/pagesettings.php:344 +#: adminpages/pagesettings.php:412 +msgid "Include the shortcode %s or the Log In Form block." +msgstr "Fügen Sie den Shortcode %s oder den Block Log In Form ein." + +#: adminpages/pagesettings.php:349 +#: includes/adminpages.php:358 +#: adminpages/pagesettings.php:417 +msgid "Member Profile Edit Page" +msgstr "Mitgliedsprofil bearbeiten Seite" + +#: adminpages/pagesettings.php:372 +#: adminpages/pagesettings.php:441 +msgid "Include the shortcode %s or the Member Profile Edit block." +msgstr "Fügen Sie den Shortcode %s oder den Block „Mitgliederprofil bearbeiten“ ein." + +#: adminpages/pagesettings.php:382 +#: adminpages/pagesettings.php:451 +msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." +msgstr "Optional: Erfassen Sie zusätzliche Mitgliederfelder an der Kasse, im Profil oder nur für den Administrator mit dem Register Helper Add On." + +#: adminpages/paymentsettings.php:115 +msgid "Learn more about SSL or Payment Gateway Settings." +msgstr "Erfahren Sie mehr über SSL oder Payment Gateway Einstellungen." + +#: adminpages/paymentsettings.php:142 +#: adminpages/paymentsettings.php:145 +msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." +msgstr "Dieses Gateway ist für Mitgliedschaftsseiten mit kostenlosen Pakete oder für Seiten, die Zahlungen offline akzeptieren." + +#: adminpages/paymentsettings.php:142 +#: adminpages/paymentsettings.php:147 +msgid "It is not connected to a live gateway environment and cannot accept payments." +msgstr "Es besteht keine Verbindung mit einer Live-Gateway-Umgebung und kann keine Zahlungen annehmen." + +#: adminpages/paymentsettings.php:241 +msgid "US only. If values are given, tax will be applied for any members ordering from the selected state.
For non-US or more complex tax rules, use the pmpro_tax filter." +msgstr "Nur USA. Wenn Werte angegeben werden, wird die Steuer auf alle Mitglieder angewandt, die aus dem ausgewählten Staat bestellen.
Für nicht-amerikanische oder komplexere Steuerregeln verwenden Sie den pmpro_tax Filter." + +#: adminpages/paymentsettings.php:282 +msgid "Your SSL Certificate must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." +msgstr "Ihr SSL-Zertifikat muss von Ihrem Webhost installiert werden. Verwenden Sie dieses Feld, um Ihr Siegel oder andere vertrauenswürdige Bilder von Händlern anzuzeigen. Dieses Feld akzeptiert kein JavaScript." + +#: adminpages/reports/history.php:4 +#: adminpages/reports/history.php:84 +msgid "Member Value Report" +msgstr "Mitgliederwertbericht" + +#: adminpages/reports/history.php:25 +msgid "No paying members found." +msgstr "Keine zahlenden Mitglieder gefunden." + +#: adminpages/reports/history.php:27 +msgid "Your Top 10 Members" +msgstr "Ihre Top 10 Mitglieder" + +#: adminpages/reports/history.php:33 +msgid "Member" +msgstr "Mitglied" + +#: adminpages/reports/history.php:35 +msgid "Total Value" +msgstr "Gesamt" + +#: adminpages/reports/history.php:47 +#: classes/class.memberorder.php:967 +#: classes/class.memberorder.php:1018 +msgid "Edit User" +msgstr "Benutzer bearbeiten" + +#: adminpages/reports/history.php:185 +msgid "Current Membership" +msgstr "Aktuelle Mitgliedschaft" + +#: adminpages/reports/history.php:188 +#: includes/profile.php:411 +#: includes/profile.php:429 +msgid "Total Paid" +msgstr "Bezahlte Summe" + +#: adminpages/reports/login.php:44 +msgid "This Week" +msgstr "Diese Woche" + +#: adminpages/reports/login.php:56 +msgid "Year to Date" +msgstr "Bisheriges Jahr" + +#: adminpages/reports/login.php:186 +#: adminpages/reports/login.php:189 +msgid "Visits This Week" +msgstr "Besuche diese Woche" + +#: adminpages/reports/login.php:188 +#: adminpages/reports/login.php:191 +msgid "Visits This Year" +msgstr "Besuche dieses Jahr" + +#: adminpages/reports/login.php:190 +#: adminpages/reports/login.php:193 +msgid "Views This Week" +msgstr "Ansichten diese Woche" + +#: adminpages/reports/login.php:192 +#: adminpages/reports/login.php:195 +msgid "Views This Year" +msgstr "Ansichten dieses Jahr" + +#: adminpages/reports/login.php:195 +#: adminpages/reports/login.php:198 +msgid "Logins This Week" +msgstr "Logins diese Woche" + +#: adminpages/reports/login.php:197 +#: adminpages/reports/login.php:200 +msgid "Logins This Year" +msgstr "Logins dieses Jahr" + +#: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 +msgid "All Paid Levels" +msgstr "Alle bezahlten Pakete" + +#: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 +msgid "All Free Levels" +msgstr "Alle freien Pakete" + +#: adminpages/reports/memberships.php:377 +#: adminpages/reports/sales.php:334 +#: adminpages/reports/memberships.php:376 +#: adminpages/reports/sales.php:352 +msgid "All Codes" +msgstr "Alle Codes" + +#: adminpages/reports/sales.php:345 +#: adminpages/reports/sales.php:365 +msgid "Average line calculated using data prior to current day, month, or year." +msgstr "Durchschnittslinie, die anhand von Daten vor dem aktuellen Tag, Monat oder Jahr berechnet wird." + +#: adminpages/reports/sales.php:388 +msgid "Average*" +msgstr "Durchschnitt*" + +#: blocks/checkout-button/block.php:54 +msgid "Buy Now" +msgstr "Jetzt kaufen" + +#: classes/class-pmpro-admin-activity-email.php:43 +msgid "yesterday" +msgstr "Gestern" + +#: classes/class-pmpro-admin-activity-email.php:44 +msgid "last week" +msgstr "Letzte Woche" + +#: classes/class-pmpro-admin-activity-email.php:45 +msgid "last month" +msgstr "Letzter Monat" + +#: classes/class-pmpro-admin-activity-email.php:84 +msgid "Here's a summary of what happened in your Paid Memberships Pro site %s." +msgstr "Hier ist eine Zusammenfassung der Vorgänge auf Ihrer Website für bezahlte Mitgliedschaften Pro %s." + +#: classes/class-pmpro-admin-activity-email.php:104 +msgid "Your membership site made %1$s in revenue %2$s." +msgstr "Ihre Mitgliederseite hat %1$s an Umsatz %2$s gemacht." + +#: classes/class-pmpro-admin-activity-email.php:106 +msgid "Signups and Cancellations" +msgstr "Anmeldungen und Stornierungen" + +#: classes/class-pmpro-admin-activity-email.php:135 +msgid " Total Members" +msgstr " Mitglieder insgesamt" + +#: classes/class-pmpro-admin-activity-email.php:151 +msgid "Here is a summary of your top %s most popular levels:

" +msgstr "Hier ist eine Zusammenfassung der beliebtesten %s-Pakete:

>" + +#: classes/class-pmpro-admin-activity-email.php:165 +msgid "View Signups and Cancellations Report »" +msgstr "Bericht über Anmeldungen und Stornierungen anzeigen »" + +#: classes/class-pmpro-admin-activity-email.php:175 +msgid "Discount Code Usage" +msgstr "Verwendung von Rabattcodes" + +#: classes/class-pmpro-admin-activity-email.php:206 +msgid "%1$d order used a Discount Code at checkout:" +msgstr "%1$d Bestellung hat beim CheckOut einen Rabattcode benutzt:" + +#: classes/class-pmpro-admin-activity-email.php:208 +msgid "%1$d orders used a Discount Code at checkout. Here is a breakdown of your most used codes:" +msgstr "%1$d Bestellungen haben beim CheckOut einen Rabattcode benutzt. Hier ist eine Aufschlüsselung der am häufigsten verwendeten Codes:" + +#: classes/class-pmpro-admin-activity-email.php:228 +msgid "No Discount Codes were used %2$s." +msgstr "Es wurden keine Rabatt-Codes verwendet %2$s." + +#: classes/class-pmpro-admin-activity-email.php:241 +#: classes/class-pmpro-admin-activity-email.php:265 +msgid "Active Add Ons" +msgstr "Aktive Add Ons" + +#: classes/class-pmpro-admin-activity-email.php:270 +msgid "Free Add Ons" +msgstr "Freie Add Ons" + +#: classes/class-pmpro-admin-activity-email.php:271 +msgid "Plus Add Ons" +msgstr "Plus Add Ons" + +#: classes/class-pmpro-admin-activity-email.php:272 +#: classes/class-pmpro-admin-activity-email.php:266 +msgid "Required Updates" +msgstr "Notwendige Updates" + +#: classes/class-pmpro-admin-activity-email.php:275 +msgid "It is important to keep all Add Ons up to date to take advantage of security improvements, bug fixes, and expanded features. Add On updates can be made via the WordPress Dashboard." +msgstr "Es ist wichtig, alle Add Ons auf dem neuesten Stand zu halten, um von den Sicherheitsverbesserungen, Fehlerbehebungen und erweiterten Funktionen zu profitieren. Add-On-Updates können über das WordPress-Dashboard vorgenommen werden." + +#: classes/class-pmpro-admin-activity-email.php:284 +#: classes/class-pmpro-admin-activity-email.php:278 +msgid "Membership Site Administration" +msgstr "Verwaltung der Mitgliederseite" + +#: classes/class-pmpro-admin-activity-email.php:288 +#: classes/class-pmpro-admin-activity-email.php:282 +msgid "Administrators" +msgstr "Administratoren" + +#: classes/class-pmpro-admin-activity-email.php:289 +#: classes/class-pmpro-admin-activity-email.php:283 +msgid "Membership Managers" +msgstr "Mitgliedschaftsmanager" + +#: classes/class-pmpro-admin-activity-email.php:308 +#: classes/class-pmpro-admin-activity-email.php:302 +msgid "Note: It is important to review users with access to your membership site data since they control settings and can modify member accounts." +msgstr "Hinweis: Es ist wichtig, die Benutzer mit Zugriff auf die Daten Ihrer Mitgliederseite zu überprüfen, da sie die Einstellungen kontrollieren und die Mitgliederkonten ändern können." + +#: classes/class-pmpro-admin-activity-email.php:315 +msgid "License Status: None" +msgstr "Lizenz-Status: Keine" + +#: classes/class-pmpro-admin-activity-email.php:316 +#: classes/class-pmpro-admin-activity-email.php:310 +msgid "...and that is perfectly OK! PMPro is free to use for as long as you want for membership sites of all sizes. Interested in unlimited support, access to over 70 featured-enhancing Add Ons and instant installs and updates? Check out our paid plans to learn more." +msgstr "…und das ist völlig in Ordnung! PMPro ist für Mitgliedschaftsseiten jeder Größe kostenlos und kann so lange genutzt werden, wie Sie wollen. Sind Sie an unbegrenztem Support, Zugang zu über 70 funktionserweiternden Add Ons und sofortigen Installationen und Updates interessiert? Sehen Sie sich unsere kostenpflichtigen Pläne an, um mehr zu erfahren." + +#: classes/class-pmpro-admin-activity-email.php:357 +#: classes/class-pmpro-admin-activity-email.php:351 +msgid "Follow @pmproplugin on Twitter" +msgstr "Folgen Sie @pmproplugin auf Twitter" + +#: classes/class-pmpro-admin-activity-email.php:358 +#: classes/class-pmpro-admin-activity-email.php:352 +msgid "Like us on Facebook" +msgstr "Gefällt mir auf Facebook" + +#: classes/class-pmpro-admin-activity-email.php:359 +#: classes/class-pmpro-admin-activity-email.php:353 +msgid "Subscribe to our YouTube Channel" +msgstr "Abonnieren Sie unseren YouTube-Kanal" + +#: classes/class-pmpro-admin-activity-email.php:371 +#: classes/class-pmpro-admin-activity-email.php:365 +msgid "This email is automatically generated by your WordPress site and sent to your Administration Email Address set under Settings > General in your WordPress dashboard." +msgstr "Diese E-Mail wird automatisch von Ihrer WordPress-Website generiert und an Ihre E-Mail-Adresse für die Administration gesendet, die Sie unter Einstellungen > Allgemein in Ihrem WordPress-Dashboard festgelegt haben." + +#: classes/class-pmpro-admin-activity-email.php:372 +#: classes/class-pmpro-admin-activity-email.php:366 +msgid "To adjust the frequency of this message or disable these emails completely, you can update the \"Activity Email Frequency\" setting here." +msgstr "Um die Häufigkeit dieser Nachricht anzupassen oder diese E-Mails ganz zu deaktivieren, können Sie hier die Einstellung „Häufigkeit der Aktivitäts-E-Mails“ aktualisieren." + +#: classes/class-pmpro-admin-activity-email.php:410 +#: classes/class-pmpro-admin-activity-email.php:404 +msgid "[%1$s] PMPro Activity for %2$s: %3$s" +msgstr "[%1$s] PMPro Aktivität für %2$s: %3$s" + +#: classes/class-pmpro-members-list-table.php:232 +#: classes/class-pmpro-members-list-table.php:231 +msgid "You can also try searching:" +msgstr "Sie können auch eine Suche durchführen:" + +#: classes/class-pmpro-members-list-table.php:542 +#: shortcodes/pmpro_account.php:145 +#: classes/class-pmpro-members-list-table.php:541 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 +#: classes/class-pmpro-members-list-table.php:576 +msgid "—" +msgstr "" + +#: classes/class.memberorder.php:968 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 +msgid "Edit Order" +msgstr "Bestellung bearbeiten" + +#: classes/class.memberorder.php:1141 +#: classes/class.memberorder.php:1192 +msgid "This is a test order used with the PMPro Email Templates addon." +msgstr "Dies ist ein Testauftrag, der mit dem Addon PMPro E-Mail Templates verwendet wird." + +#: classes/class.pmproemail.php:371 +#: classes/class.pmproemail.php:377 +#: classes/class.pmproemail.php:503 +msgid "Member checkout for %s at %s" +msgstr "Anmeldung eines neuen Mitglieds für das Paket %s bei %s" + +#: classes/class.pmproemail.php:565 +#: classes/class.pmproemail.php:577 +#: classes/class.pmproemail.php:703 +msgid "Membership payment failed at %s" +msgstr "Mitgliedschaftszahlung bei %s fehlgeschlagen" + +#: classes/class.pmproemail.php:614 +#: classes/class.pmproemail.php:626 +#: classes/class.pmproemail.php:752 +msgid "Membership payment failed For %s at %s" +msgstr "Mitgliedsbeitragszahlung fehlgeschlagen für %s bei %s" + +#: classes/class.pmproemail.php:663 +#: classes/class.pmproemail.php:675 +#: classes/class.pmproemail.php:801 +msgid "Credit card on file expiring soon at %s" +msgstr "Die hinterlegte Kreditkarte läuft bald ab bei %s" + +#: classes/class.pmproemail.php:715 +#: classes/class.pmproemail.php:727 +#: classes/class.pmproemail.php:853 +msgid "Invoice for %s membership" +msgstr "Rechnung für %s Mitgliedschaft" + +#: classes/class.pmproemail.php:904 +#: classes/class.pmproemail.php:949 +#: includes/email.php:443 +#: includes/email.php:468 +#: classes/class.pmproemail.php:916 +#: classes/class.pmproemail.php:961 +#: includes/email.php:475 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 +msgid "This membership does not expire." +msgstr "Diese Mitgliedschaft läuft nicht ab." + +#: classes/class.pmproemail.php:940 +#: classes/class.pmproemail.php:952 +#: classes/class.pmproemail.php:1078 +msgid "Membership has been cancelled." +msgstr "Die Mitgliedschaft wurde gekündigt." + +#: classes/class.pmproemail.php:980 +#: classes/class.pmproemail.php:992 +#: classes/class.pmproemail.php:1118 +msgid "Invoice for order #: " +msgstr "Rechnung für Bestellung Nummer: " + +#: classes/class.pmproemail.php:1030 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1168 +msgid "Payment action required for your %s membership" +msgstr "Zahlungsvorgang für Ihre %s-Mitgliedschaft erforderlich" + +#: classes/class.pmproemail.php:1068 +#: classes/class.pmproemail.php:1080 +#: classes/class.pmproemail.php:1206 +msgid "Payment action required: membership for %s at %s" +msgstr "Zahlungsvorgang erforderlich: Mitgliedschaft für %s bei %s" + +#: classes/gateways/class.pmprogateway_braintree.php:933 +#: classes/gateways/class.pmprogateway_braintree.php:943 +msgid "Error subscribing customer to plan with Braintree: %s (%s)" +msgstr "Fehler beim Abonnieren eines Kunden für einen Tarif mit Braintree: %s (%s)" + +#: classes/gateways/class.pmprogateway_braintree.php:948 +#: classes/gateways/class.pmprogateway_braintree.php:958 +msgid "Failed to subscribe with Braintree: %s" +msgstr "Anmeldung bei Braintree fehlgeschlagen: %s" + +#: classes/gateways/class.pmprogateway_braintree.php:1018 +#: classes/gateways/class.pmprogateway_braintree.php:1029 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 +msgid "Could not find the subscription. %s" +msgstr "Das Abonnement konnte nicht gefunden werden. %s" + +#: classes/gateways/class.pmprogateway_braintree.php:1082 +#: classes/gateways/class.pmprogateway_braintree.php:1092 +msgid "Error getting subscription with Braintree:" +msgstr "Fehler beim Abonnieren mit Braintree:" + +#: classes/gateways/class.pmprogateway_cybersource.php:317 +#: classes/gateways/class.pmprogateway_cybersource.php:318 +#: classes/gateways/class.pmprogateway_cybersource.php:481 +#: classes/gateways/class.pmprogateway_cybersource.php:482 +#: classes/gateways/class.pmprogateway_cybersource.php:768 +#: classes/gateways/class.pmprogateway_cybersource.php:769 +msgid "Error validating credit card type. Make sure your credit card number is correct and try again." +msgstr "Fehler bei der Überprüfung des Kreditkartentyps. Stellen Sie sicher, dass Ihre Kreditkartennummer korrekt ist und versuchen Sie es erneut." + +#: classes/gateways/class.pmprogateway_cybersource.php:344 +#: classes/gateways/class.pmprogateway_cybersource.php:350 +#: classes/gateways/class.pmprogateway_cybersource.php:396 +#: classes/gateways/class.pmprogateway_cybersource.php:402 +#: classes/gateways/class.pmprogateway_cybersource.php:506 +#: classes/gateways/class.pmprogateway_cybersource.php:512 +#: classes/gateways/class.pmprogateway_cybersource.php:696 +#: classes/gateways/class.pmprogateway_cybersource.php:702 +#: classes/gateways/class.pmprogateway_cybersource.php:780 +#: classes/gateways/class.pmprogateway_cybersource.php:786 +#: classes/gateways/class.pmprogateway_cybersource.php:834 +#: classes/gateways/class.pmprogateway_cybersource.php:840 +msgid "Error communicating with Cybersource: %" +msgstr "Fehler bei der Kommunikation mit Cybersource: %" + +#: classes/gateways/class.pmprogateway_cybersource.php:345 +#: classes/gateways/class.pmprogateway_cybersource.php:351 +#: classes/gateways/class.pmprogateway_cybersource.php:397 +#: classes/gateways/class.pmprogateway_cybersource.php:403 +#: classes/gateways/class.pmprogateway_cybersource.php:507 +#: classes/gateways/class.pmprogateway_cybersource.php:513 +#: classes/gateways/class.pmprogateway_cybersource.php:697 +#: classes/gateways/class.pmprogateway_cybersource.php:703 +#: classes/gateways/class.pmprogateway_cybersource.php:781 +#: classes/gateways/class.pmprogateway_cybersource.php:787 +#: classes/gateways/class.pmprogateway_cybersource.php:835 +#: classes/gateways/class.pmprogateway_cybersource.php:841 +msgid "Error communicating with Cybersource." +msgstr "Fehler bei der Kommunikation mit Cybersource." + +#: classes/gateways/class.pmprogateway_cybersource.php:679 +msgid "The payment gateway doesn't support this credit/debit card type." +msgstr "Das Zahlungsgateway unterstützt diesen Kredit-/Debitkartentyp nicht." + +#: classes/gateways/class.pmprogateway_cybersource.php:864 +msgid "Successful transaction." +msgstr "Erfolgreiche Transaktion." + +#: classes/gateways/class.pmprogateway_cybersource.php:865 +msgid "The request is missing one or more required fields." +msgstr "In der Anfrage fehlen ein oder mehrere Pflichtfelder." + +#: classes/gateways/class.pmprogateway_cybersource.php:866 +msgid "One or more fields in the request contains invalid data. Check that your billing address is valid." +msgstr "Ein oder mehrere Felder in der Anfrage enthalten ungültige Daten. Prüfen Sie, ob Ihre Rechnungsadresse gültig ist." + +#: classes/gateways/class.pmprogateway_cybersource.php:867 +msgid "Duplicate order detected." +msgstr "Doppelte Bestellung gefunden." + +#: classes/gateways/class.pmprogateway_cybersource.php:868 +msgid "Only partial amount was approved." +msgstr "Es wurde nur ein Teilbetrag genehmigt." + +#: classes/gateways/class.pmprogateway_cybersource.php:869 +msgid "Error: General system failure." +msgstr "Fehler: Allgemeiner Systemfehler." + +#: classes/gateways/class.pmprogateway_cybersource.php:870 +msgid "Error: The request was received but there was a server timeout." +msgstr "Fehler: Die Anfrage wurde empfangen, aber es gab eine Server-Zeitüberschreitung." + +#: classes/gateways/class.pmprogateway_cybersource.php:871 +msgid "Error: The request was received, but a service did not finish running in time. " +msgstr "Fehler: Die Anfrage wurde empfangen, aber ein Dienst wurde nicht rechtzeitig fertig. " + +#: classes/gateways/class.pmprogateway_cybersource.php:872 +msgid "Address Verification Service (AVS) failure." +msgstr "Ausfall des Adressverifizierungsdienstes (AVS)." + +#: classes/gateways/class.pmprogateway_cybersource.php:873 +msgid "Authorization failed." +msgstr "Autorisierung fehlgeschlagen." + +#: classes/gateways/class.pmprogateway_cybersource.php:874 +msgid "Expired card or invalid expiration date." +msgstr "Abgelaufene Karte oder ungültiges Gültigkeitsdatum." + +#: classes/gateways/class.pmprogateway_cybersource.php:875 +msgid "The card was declined." +msgstr "Die Karte wurde abgelehnt." + +#: classes/gateways/class.pmprogateway_cybersource.php:876 +msgid "Insufficient funds in the account." +msgstr "Unzureichende Deckung des Kontos." + +#: classes/gateways/class.pmprogateway_cybersource.php:877 +msgid "Stolen or lost card." +msgstr "Gestohlene oder verlorene Karte." + +#: classes/gateways/class.pmprogateway_cybersource.php:878 +msgid "Issuing bank unavailable." +msgstr "Die ausstellende Bank ist nicht verfügbar." + +#: classes/gateways/class.pmprogateway_cybersource.php:879 +msgid "Inactive card or card not authorized for card-not-present transactions." +msgstr "Inaktive Karte oder nicht autorisierte Karte für Transaktionen ohne Kartenzahlung." + +#: classes/gateways/class.pmprogateway_cybersource.php:880 +msgid "American Express Card Identification Digits (CID) did not match." +msgstr "Die American Express Card Identification Digits (CID) stimmten nicht überein." + +#: classes/gateways/class.pmprogateway_cybersource.php:881 +msgid "The card has reached the credit limit. " +msgstr "Die Karte hat das Kreditlimit erreicht. " + +#: classes/gateways/class.pmprogateway_cybersource.php:882 +msgid "Invalid card verification number." +msgstr "Ungültige Kartenprüfnummer." + +#: classes/gateways/class.pmprogateway_cybersource.php:883 +msgid "The customer matched an entry on the processors negative file. " +msgstr "Der Kunde stimmte mit einem Eintrag in der Negativdatei des Verarbeiters überein. " + +#: classes/gateways/class.pmprogateway_cybersource.php:884 +msgid "Card verification (CV) check failed." +msgstr "Die Überprüfung der Karte (CV) ist fehlgeschlagen." + +#: classes/gateways/class.pmprogateway_cybersource.php:885 +msgid "Invalid account number." +msgstr "Ungültige Kontonummer." + +#: classes/gateways/class.pmprogateway_cybersource.php:886 +msgid "The card type is not accepted by the payment processor." +msgstr "Der Kartentyp wird vom Zahlungsdienstleister nicht akzeptiert." + +#: classes/gateways/class.pmprogateway_cybersource.php:887 +msgid "General decline by the processor." +msgstr "Allgemeine Ablehnung durch den Prozessor." + +#: classes/gateways/class.pmprogateway_cybersource.php:888 +msgid "There is a problem with your CyberSource merchant configuration." +msgstr "Es liegt ein Problem mit der CyberSource-Händlerkonfiguration vor." + +#: classes/gateways/class.pmprogateway_cybersource.php:889 +msgid "The requested amount exceeds the originally authorized amount." +msgstr "Der angeforderte Betrag übersteigt den ursprünglich genehmigten Betrag." + +#: classes/gateways/class.pmprogateway_cybersource.php:890 +msgid "Processor failure." +msgstr "Prozessorfehler." + +#: classes/gateways/class.pmprogateway_cybersource.php:891 +msgid "The authorization has already been reversed." +msgstr "Die Autorisierung wurde bereits storniert." + +#: classes/gateways/class.pmprogateway_cybersource.php:892 +msgid "The authorization has already been captured." +msgstr "Die Autorisierung wurde bereits erfasst." + +#: classes/gateways/class.pmprogateway_cybersource.php:893 +msgid "The requested transaction amount must match the previous transaction amount." +msgstr "Der angeforderte Buchungsbetrag muss mit dem vorherigen Buchungsbetrag übereinstimmen." + +#: classes/gateways/class.pmprogateway_cybersource.php:894 +msgid "The card type sent is invalid or does not correlate with the credit card number." +msgstr "Der gesendete Kartentyp ist ungültig oder korreliert nicht mit der Kreditkartennummer." + +#: classes/gateways/class.pmprogateway_cybersource.php:895 +msgid "The referenced request id is invalid for all follow-on transactions." +msgstr "Die referenzierte Anforderungs-ID ist für alle Folgetransaktionen ungültig." + +#: classes/gateways/class.pmprogateway_cybersource.php:896 +msgid "The request ID is invalid." +msgstr "Die Anforderungs-ID ist ungültig." + +#: classes/gateways/class.pmprogateway_cybersource.php:897 +msgid "The transaction has already been settled or reversed." +msgstr "Die Buchung wurde bereits ausgeglichen oder storniert." + +#: classes/gateways/class.pmprogateway_cybersource.php:898 +msgid "The capture or credit is not voidable because the capture or credit information has already been submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided." +msgstr "Die Erfassung oder Gutschrift ist nicht annullierbar, da die Erfassungs- oder Kreditinformationen bereits an Ihren Auftragsverarbeiter übermittelt wurden. Oder Sie haben eine Stornierung für einen Transaktionstyp angefordert, der nicht storniert werden kann." + +#: classes/gateways/class.pmprogateway_cybersource.php:899 +msgid "You requested a credit for a capture that was previously voided." +msgstr "Sie haben eine Gutschrift für eine Erfassung angefordert, die zuvor storniert wurde." + +#: classes/gateways/class.pmprogateway_cybersource.php:900 +msgid "Error: The request was received, but there was a timeout at the payment processor." +msgstr "Fehler: Die Anforderung wurde empfangen, aber es gab ein Timeout am Zahlungsprozessor." + +#: classes/gateways/class.pmprogateway_cybersource.php:901 +msgid "Stand-alone credits are not allowed with this processor." +msgstr "Eigenständige Credits sind mit diesem Prozessor nicht zulässig." + +#: classes/gateways/class.pmprogateway_cybersource.php:902 +msgid "Apartment number missing or not found. Check that your billing address is valid." +msgstr "Wohnungsnummer fehlt oder nicht gefunden. Überprüfen Sie, ob Ihre Rechnungsadresse gültig ist." + +#: classes/gateways/class.pmprogateway_cybersource.php:903 +msgid "Insufficient address information. Check that your billing address is valid." +msgstr "Unzureichende Adressinformationen. Überprüfen Sie, ob Ihre Rechnungsadresse gültig ist." + +#: classes/gateways/class.pmprogateway_cybersource.php:904 +msgid "House/Box number not found on street. Check that your billing address is valid." +msgstr "Haus/Box-Nummer auf der Straße nicht gefunden. Überprüfen Sie, ob Ihre Rechnungsadresse gültig ist." + +#: classes/gateways/class.pmprogateway_cybersource.php:905 +msgid "Multiple address matches were found. Check that your billing address is valid." +msgstr "Es wurden mehrere Adressübereinstimmungen gefunden. Überprüfen Sie, ob Ihre Rechnungsadresse gültig ist." + +#: classes/gateways/class.pmprogateway_cybersource.php:906 +msgid "P.O. Box identifier not found or out of range.. Check that your billing address is valid." +msgstr "Postfach-Id wurde nicht gefunden oder ist nicht in erreichbar. Überprüfen Sie, ob Ihre Rechnungsadresse gültig ist." + +#: classes/gateways/class.pmprogateway_cybersource.php:907 +msgid "Route service identifier not found or out of range. Check that your billing address is valid." +msgstr "Routen-Id wurde nicht gefunden oder ist nicht in erreichbar. Überprüfen Sie, ob Ihre Rechnungsadresse gültig ist." + +#: classes/gateways/class.pmprogateway_cybersource.php:908 +msgid "Street name not found in Postal code. Check that your billing address is valid." +msgstr "Straßenname in der Postleitzahl nicht gefunden. Überprüfen Sie, ob Ihre Rechnungsadresse gültig ist." + +#: classes/gateways/class.pmprogateway_cybersource.php:909 +msgid "Postal code not found in database. Check that your billing address is valid." +msgstr "Postleitzahl in der Datenbank nicht gefunden. Überprüfen Sie, ob Ihre Rechnungsadresse gültig ist." + +#: classes/gateways/class.pmprogateway_cybersource.php:910 +msgid "Unable to verify or correct address. Check that your billing address is valid." +msgstr "Die Adresse kann nicht überprüft oder korrigiert werden. Überprüfen Sie, ob Ihre Rechnungsadresse gültig ist." + +#: classes/gateways/class.pmprogateway_cybersource.php:911 +msgid "Multiple address matches were found (international). Check that your billing address is valid." +msgstr "Es wurden mehrere Adressübereinstimmungen (international) gefunden. Überprüfen Sie, ob Ihre Rechnungsadresse gültig ist." + +#: classes/gateways/class.pmprogateway_cybersource.php:912 +msgid "Address match not found. Check that your billing address is valid." +msgstr "Adressübereinstimmung wurde nicht gefunden. Überprüfen Sie, ob Ihre Rechnungsadresse gültig ist." + +#: classes/gateways/class.pmprogateway_cybersource.php:913 +msgid "Unsupported character set. Verify the character set that you are using to process transactions." +msgstr "Nicht unterstützter Zeichensatz. Überprüfen Sie den Zeichensatz, den Sie zum Verarbeiten von Transaktionen verwenden." + +#: classes/gateways/class.pmprogateway_cybersource.php:914 +msgid "Order has been rejected by Decision Manager." +msgstr "Der Auftrag wurde vom Entscheidungsmanager abgelehnt." + +#: classes/gateways/class.pmprogateway_cybersource.php:915 +msgid "Smart Authorization failed." +msgstr "Smart Authorization fehlgeschlagen." + +#: classes/gateways/class.pmprogateway_cybersource.php:916 +msgid "Your order has been refused." +msgstr "Ihre Bestellung wurde abgelehnt." + +#: classes/gateways/class.pmprogateway_cybersource.php:922 +#: includes/license.php:159 +#: includes/license.php:165 +msgid "Unknown error." +msgstr "Unbekannter Fehler." + +#: classes/gateways/class.pmprogateway_cybersource.php:927 +msgid " Invalid fields:" +msgstr " Ungültige Felder:" + +#: classes/gateways/class.pmprogateway_payflowpro.php:145 +msgid "Payflow does not use IPN. To sync recurring subscriptions, please see the Payflow Recurring Orders Add On." +msgstr "Payflow verwendet keine IPN. Um wiederkehrende Abonnements zu synchronisieren benutzen Sie bitte Payflow Recurring Orders Add On ." + +#: classes/gateways/class.pmprogateway_paypal.php:146 +#: classes/gateways/class.pmprogateway_paypalexpress.php:155 +#: classes/gateways/class.pmprogateway_paypalstandard.php:147 +#: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 +msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." +msgstr "Bitte beachten Sie: Wir empfehlen, nicht mit PayPal-Standard zu arbeiten. Wir empfehlen die Verwendung von PayPal Express, Website Zahlungen Pro (Legacy) oder PayPal Pro (Payflow Pro). Weitere Informationen finden Sie hier." + +#: classes/gateways/class.pmprogateway_paypalexpress.php:346 +#: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 +msgid "Checkout was already processed." +msgstr "Der Checkout wurde bereits bearbeitet." + +#: classes/gateways/class.pmprogateway_paypalexpress.php:781 +#: classes/gateways/class.pmprogateway_paypalexpress.php:791 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 +msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." +msgstr "Etwas ist schief gelaufen, einen Tarif mit PayPal zu erstellen; fehlender PROFILSTATUS." + +#: classes/gateways/class.pmprogateway_paypalexpress.php:782 +#: classes/gateways/class.pmprogateway_paypalexpress.php:792 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 +msgid "Error creating plan with PayPal." +msgstr "Fehler beim Erstellen des Tarifs mit PayPal." + +#: classes/gateways/class.pmprogateway_stripe.php:350 +#: classes/gateways/class.pmprogateway_stripe.php:436 +#: classes/gateways/class.pmprogateway_stripe.php:354 +#: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:360 +#: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:2227 +msgid "Stripe Connect Settings" +msgstr "Stripe Connect Settings" + +#: classes/gateways/class.pmprogateway_stripe.php:352 +#: classes/gateways/class.pmprogateway_stripe.php:356 +#: classes/gateways/class.pmprogateway_stripe.php:362 +#: classes/gateways/class.pmprogateway_stripe.php:2230 +msgid "Live Mode:" +msgstr "Live-Modus:" + +#: classes/gateways/class.pmprogateway_stripe.php:354 +#: classes/gateways/class.pmprogateway_stripe.php:440 +#: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:364 +#: classes/gateways/class.pmprogateway_stripe.php:454 +#: classes/gateways/class.pmprogateway_stripe.php:2232 +msgid "Connected" +msgstr "Verbunden" + +#: classes/gateways/class.pmprogateway_stripe.php:356 +#: classes/gateways/class.pmprogateway_stripe.php:442 +#: classes/gateways/class.pmprogateway_stripe.php:362 +#: classes/gateways/class.pmprogateway_stripe.php:452 +#: classes/gateways/class.pmprogateway_stripe.php:368 +#: classes/gateways/class.pmprogateway_stripe.php:458 +#: classes/gateways/class.pmprogateway_stripe.php:2236 +msgid "Not Connected" +msgstr "Nicht verbunden" + +#: classes/gateways/class.pmprogateway_stripe.php:363 +#: classes/gateways/class.pmprogateway_stripe.php:449 +#: classes/gateways/class.pmprogateway_stripe.php:369 +#: classes/gateways/class.pmprogateway_stripe.php:459 +#: classes/gateways/class.pmprogateway_stripe.php:375 +#: classes/gateways/class.pmprogateway_stripe.php:465 +#: classes/gateways/class.pmprogateway_stripe.php:2244 +msgid "Your site is using legacy API keys to authenticate with Stripe." +msgstr "Ihre Website verwendet ältere API-Schlüssel zur Authentifizierung bei Stripe." + +#: classes/gateways/class.pmprogateway_stripe.php:364 +#: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:377 +#: classes/gateways/class.pmprogateway_stripe.php:2248 +msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." +msgstr "Verwenden Sie die Schaltfläche \"Mit Stripe verbinden\", um sich mit Stripe Connect sicher bei Ihrem Stripe-Konto zu authentifizieren. Melden Sie sich mit dem aktuellen Stripe-Konto an, das für diese Website verwendet wird, damit vorhandene Abonnements nicht von der Aktualisierung betroffen sind." + +#: classes/gateways/class.pmprogateway_stripe.php:372 +#: classes/gateways/class.pmprogateway_stripe.php:458 +#: classes/gateways/class.pmprogateway_stripe.php:380 +#: classes/gateways/class.pmprogateway_stripe.php:470 +#: classes/gateways/class.pmprogateway_stripe.php:386 +#: classes/gateways/class.pmprogateway_stripe.php:476 +#: classes/gateways/class.pmprogateway_stripe.php:2261 +msgid "Stripe Connection:" +msgstr "Stripe-Verbindung:" + +#: classes/gateways/class.pmprogateway_stripe.php:388 +#: classes/gateways/class.pmprogateway_stripe.php:482 +#: classes/gateways/class.pmprogateway_stripe.php:396 +#: classes/gateways/class.pmprogateway_stripe.php:494 +#: classes/gateways/class.pmprogateway_stripe.php:402 +#: classes/gateways/class.pmprogateway_stripe.php:500 +#: classes/gateways/class.pmprogateway_stripe.php:2277 +msgid "Disconnect From Stripe" +msgstr "Verbindung zu Stripe trennen" + +#: classes/gateways/class.pmprogateway_stripe.php:389 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:403 +#: classes/gateways/class.pmprogateway_stripe.php:2281 +msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." +msgstr "Dadurch wird Ihre Website von Stripe getrennt. Benutzer können den Checkout der Mitgliedschaft nicht abschließen oder ihre Rechnungsinformationen aktualisieren. Bestehende Abonnements sind am Gateway nicht betroffen, aber neue wiederkehrende Bestellungen werden auf dieser Website nicht erstellt." + +#: classes/gateways/class.pmprogateway_stripe.php:401 +#: classes/gateways/class.pmprogateway_stripe.php:496 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:508 +#: classes/gateways/class.pmprogateway_stripe.php:415 +#: classes/gateways/class.pmprogateway_stripe.php:514 +#: classes/gateways/class.pmprogateway_stripe.php:2298 +msgid "Connect with Stripe" +msgstr "Mit Stripe verbinden" + +#: classes/gateways/class.pmprogateway_stripe.php:408 +#: classes/gateways/class.pmprogateway_stripe.php:416 +#: classes/gateways/class.pmprogateway_stripe.php:422 +#: classes/gateways/class.pmprogateway_stripe.php:2305 +msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." +msgstr "Hinweis: Sie haben eine gültige Lizenz und es fallen keine zusätzlichen Plattformgebühren für die Zahlungsabwicklung an." + +#: classes/gateways/class.pmprogateway_stripe.php:411 +#: classes/gateways/class.pmprogateway_stripe.php:419 +#: classes/gateways/class.pmprogateway_stripe.php:425 +msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a Plus license." +msgstr "Hinweis: Sie verwenden die kostenlose Stripe-Zahlungsgateway-Integration. Diese beinhaltet eine zusätzliche 1% Gebühr für die Zahlungsabwicklung. Diese Gebühr entfällt durch die Aktivierung einer Plus-Lizenz." + +#: classes/gateways/class.pmprogateway_stripe.php:423 +#: classes/gateways/class.pmprogateway_stripe.php:507 +#: classes/gateways/class.pmprogateway_stripe.php:547 +#: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:519 +#: classes/gateways/class.pmprogateway_stripe.php:559 +#: classes/gateways/class.pmprogateway_stripe.php:578 +#: classes/gateways/class.pmprogateway_stripe.php:437 +#: classes/gateways/class.pmprogateway_stripe.php:525 +#: classes/gateways/class.pmprogateway_stripe.php:584 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 +msgid "Webhook" +msgstr "Webhook" + +#: classes/gateways/class.pmprogateway_stripe.php:427 +#: classes/gateways/class.pmprogateway_stripe.php:511 +#: classes/gateways/class.pmprogateway_stripe.php:582 +#: classes/gateways/class.pmprogateway_stripe.php:435 +#: classes/gateways/class.pmprogateway_stripe.php:523 +#: classes/gateways/class.pmprogateway_stripe.php:594 +#: classes/gateways/class.pmprogateway_stripe.php:613 +#: classes/gateways/class.pmprogateway_stripe.php:441 +#: classes/gateways/class.pmprogateway_stripe.php:529 +#: classes/gateways/class.pmprogateway_stripe.php:619 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 +msgid "Webhook URL" +msgstr "Webhook URL" + +#: classes/gateways/class.pmprogateway_stripe.php:438 +#: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:452 +#: classes/gateways/class.pmprogateway_stripe.php:2230 +msgid "Test Mode:" +msgstr "Test Modus:" + +#: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:461 +#: classes/gateways/class.pmprogateway_stripe.php:467 +#: classes/gateways/class.pmprogateway_stripe.php:2250 +msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." +msgstr "Verwenden Sie die Schaltfläche \"Mit Stripe verbinden\" unten, um sich mit Stripe Connect im Testmodus sicher bei Ihrem Stripe-Konto zu authentifizieren." + +#: classes/gateways/class.pmprogateway_stripe.php:483 +#: classes/gateways/class.pmprogateway_stripe.php:495 +#: classes/gateways/class.pmprogateway_stripe.php:501 +#: classes/gateways/class.pmprogateway_stripe.php:2283 +msgid "This will disconnect your site from Stripe in test mode only." +msgstr "Dadurch wird Ihre Website nur im Testmodus von Stripe getrennt." + +#: classes/gateways/class.pmprogateway_stripe.php:518 +#: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:326 +msgid "Stripe API Settings (Legacy)" +msgstr "Stripe-API-Einstellungen (alt)" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +#: classes/gateways/class.pmprogateway_stripe.php:575 +#: classes/gateways/class.pmprogateway_stripe.php:563 +#: classes/gateways/class.pmprogateway_stripe.php:587 +#: classes/gateways/class.pmprogateway_stripe.php:582 +#: classes/gateways/class.pmprogateway_stripe.php:606 +#: classes/gateways/class.pmprogateway_stripe.php:588 +#: classes/gateways/class.pmprogateway_stripe.php:612 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 +msgid "Create Webhook" +msgstr "Webhook erstellen" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +#: classes/gateways/class.pmprogateway_stripe.php:569 +#: classes/gateways/class.pmprogateway_stripe.php:588 +#: classes/gateways/class.pmprogateway_stripe.php:594 +#: classes/gateways/class.pmprogateway_stripe.php:384 +msgid "A webhook is set up in Stripe, but it is disabled." +msgstr "Ein Webhook ist in Stripe eingerichtet, aber deaktiviert." + +#: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:576 +#: classes/gateways/class.pmprogateway_stripe.php:595 +#: classes/gateways/class.pmprogateway_stripe.php:601 +#: classes/gateways/class.pmprogateway_stripe.php:391 +msgid "A webhook is set up in Stripe, but it is using an old API version." +msgstr "Ein Webhook ist in Stripe eingerichtet, verwendet jedoch eine alte API-Version." + +#: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:576 +#: classes/gateways/class.pmprogateway_stripe.php:595 +#: classes/gateways/class.pmprogateway_stripe.php:601 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 +msgid "Rebuild Webhook" +msgstr "Webhook neu erstellen" + +#: classes/gateways/class.pmprogateway_stripe.php:570 +#: classes/gateways/class.pmprogateway_stripe.php:710 +#: classes/gateways/class.pmprogateway_stripe.php:826 +#: classes/gateways/class.pmprogateway_stripe.php:582 +#: classes/gateways/class.pmprogateway_stripe.php:722 +#: classes/gateways/class.pmprogateway_stripe.php:838 +#: classes/gateways/class.pmprogateway_stripe.php:601 +#: classes/gateways/class.pmprogateway_stripe.php:741 +#: classes/gateways/class.pmprogateway_stripe.php:857 +#: classes/gateways/class.pmprogateway_stripe.php:607 +#: classes/gateways/class.pmprogateway_stripe.php:747 +#: classes/gateways/class.pmprogateway_stripe.php:863 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 +msgid "Your webhook is enabled." +msgstr "Ihr Webhook ist aktiviert." + +#: classes/gateways/class.pmprogateway_stripe.php:570 +#: classes/gateways/class.pmprogateway_stripe.php:582 +#: classes/gateways/class.pmprogateway_stripe.php:601 +#: classes/gateways/class.pmprogateway_stripe.php:607 +#: classes/gateways/class.pmprogateway_stripe.php:397 +msgid "Disable Webhook" +msgstr "Webhook deaktivieren" + +#: classes/gateways/class.pmprogateway_stripe.php:577 +#: classes/gateways/class.pmprogateway_stripe.php:737 +#: classes/gateways/class.pmprogateway_stripe.php:754 +#: classes/gateways/class.pmprogateway_stripe.php:788 +#: classes/gateways/class.pmprogateway_stripe.php:589 +#: classes/gateways/class.pmprogateway_stripe.php:749 +#: classes/gateways/class.pmprogateway_stripe.php:766 +#: classes/gateways/class.pmprogateway_stripe.php:800 +#: classes/gateways/class.pmprogateway_stripe.php:608 +#: classes/gateways/class.pmprogateway_stripe.php:768 +#: classes/gateways/class.pmprogateway_stripe.php:785 +#: classes/gateways/class.pmprogateway_stripe.php:819 +#: classes/gateways/class.pmprogateway_stripe.php:614 +#: classes/gateways/class.pmprogateway_stripe.php:774 +#: classes/gateways/class.pmprogateway_stripe.php:791 +#: classes/gateways/class.pmprogateway_stripe.php:825 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 +msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." +msgstr "Ein Webhook in Stripe ist erforderlich, um wiederkehrende Zahlungen zu verarbeiten, fehlgeschlagene Zahlungen zu verwalten und Stornierungen zu synchronisieren." + +#: classes/gateways/class.pmprogateway_stripe.php:589 +#: classes/gateways/class.pmprogateway_stripe.php:601 +#: classes/gateways/class.pmprogateway_stripe.php:620 +#: classes/gateways/class.pmprogateway_stripe.php:626 +#: classes/gateways/class.pmprogateway_stripe.php:416 +msgid "Other Stripe Settings" +msgstr "Andere Streifeneinstellungen" + +#: classes/gateways/class.pmprogateway_stripe.php:593 +#: classes/gateways/class.pmprogateway_stripe.php:605 +#: classes/gateways/class.pmprogateway_stripe.php:624 +#: classes/gateways/class.pmprogateway_stripe.php:630 +#: classes/gateways/class.pmprogateway_stripe.php:420 +msgid "Stripe API Version" +msgstr "Stripe API-Version" + +#: classes/gateways/class.pmprogateway_stripe.php:612 +#: classes/gateways/class.pmprogateway_stripe.php:624 +#: classes/gateways/class.pmprogateway_stripe.php:643 +#: classes/gateways/class.pmprogateway_stripe.php:649 +#: classes/gateways/class.pmprogateway_stripe.php:439 +msgid "Enable Payment Request Button" +msgstr "Schaltfläche \"Zahlungsanforderung aktivieren\"" + +#: classes/gateways/class.pmprogateway_stripe.php:630 +#: classes/gateways/class.pmprogateway_stripe.php:642 +#: classes/gateways/class.pmprogateway_stripe.php:661 +#: classes/gateways/class.pmprogateway_stripe.php:667 +#: classes/gateways/class.pmprogateway_stripe.php:457 +msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" +msgstr "Ermöglichen Sie es Benutzern, je nach Browser mit Apple Pay, Google Pay oder Microsoft Pay zu bezahlen. Wenn diese Option aktiviert ist, wird Ihre Domain automatisch bei Apple registriert und eine Domain-Zuordnungsdatei wird auf Ihrer Website gehostet. Weitere Informationen »" + +#: classes/gateways/class.pmprogateway_stripe.php:643 +#: classes/gateways/class.pmprogateway_stripe.php:655 +#: classes/gateways/class.pmprogateway_stripe.php:674 +#: classes/gateways/class.pmprogateway_stripe.php:680 +#: classes/gateways/class.pmprogateway_stripe.php:470 +msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." +msgstr "Diese Webseite wird über HTTP bereitgestellt, aber die Stripe Payment Request Button funktioniert nur auf Seiten, die über HTTPS bereitgestellt werden. Um dieses Problem zu beheben, müssen Sie WordPress so einrichten, dass immer HTTPS verwendet wird." + +#: classes/gateways/class.pmprogateway_stripe.php:645 +#: classes/gateways/class.pmprogateway_stripe.php:657 +#: classes/gateways/class.pmprogateway_stripe.php:676 +#: classes/gateways/class.pmprogateway_stripe.php:682 +#: classes/gateways/class.pmprogateway_stripe.php:472 +msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." +msgstr "Es sieht so aus, als ob Sie einen älteren veröffentlichbaren Stripe-Schlüssel verwenden. Um die Funktion \"Payment Request Button\" verwenden zu können, müssen Sie Ihren API-Schlüssel aktualisieren, dem das Präfix \"pk_live_\" oder \"pk_test_\" vorangestellt wird. Melden Sie sich bei Ihrem Stripe-Dashboard an, um Ihren veröffentlichbaren Schlüssel zu rollen." + +#: classes/gateways/class.pmprogateway_stripe.php:647 +#: classes/gateways/class.pmprogateway_stripe.php:659 +#: classes/gateways/class.pmprogateway_stripe.php:678 +#: classes/gateways/class.pmprogateway_stripe.php:684 +#: classes/gateways/class.pmprogateway_stripe.php:474 +msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." +msgstr "Es sieht so aus, als ob Sie einen älteren geheimen Stripe-Schlüssel verwenden. Um die Funktion \"Payment Request Button\" nutzen zu können, müssen Sie Ihren API-Schlüssel aktualisieren, dem \"sk_live_\" oder \"sk_test_\" vorangestellt wird. Melden Sie sich bei Ihrem Stripe-Dashboard an, um Ihren geheimen Schlüssel zu rollen." + +#: classes/gateways/class.pmprogateway_stripe.php:649 +#: classes/gateways/class.pmprogateway_stripe.php:661 +#: classes/gateways/class.pmprogateway_stripe.php:680 +#: classes/gateways/class.pmprogateway_stripe.php:686 +#: classes/gateways/class.pmprogateway_stripe.php:476 +msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." +msgstr "Ihre Domain konnte nicht bei Apple registriert werden, um Apple Pay zu aktivieren. Bitte versuchen Sie, Ihre Domain manuell über die Apple Pay-Einstellungsseite in Stripe zu registrieren." + +#: classes/gateways/class.pmprogateway_stripe.php:674 +#: classes/gateways/class.pmprogateway_stripe.php:686 +#: classes/gateways/class.pmprogateway_stripe.php:705 +#: classes/gateways/class.pmprogateway_stripe.php:711 +#: classes/gateways/class.pmprogateway_stripe.php:501 +msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." +msgstr "Optional: PayPal Express als Option an der Kasse mit dem Add PayPal Express Add Onanbieten." + +#: classes/gateways/class.pmprogateway_stripe.php:695 +#: classes/gateways/class.pmprogateway_stripe.php:707 +#: classes/gateways/class.pmprogateway_stripe.php:726 +#: classes/gateways/class.pmprogateway_stripe.php:732 +#: classes/gateways/class.pmprogateway_stripe.php:604 +msgid "Webhook creation failed. You might already have a webhook set up." +msgstr "Die Webhook-Erstellung ist fehlgeschlagen. Möglicherweise ist bereits ein Webhook eingerichtet." + +#: classes/gateways/class.pmprogateway_stripe.php:761 +#: classes/gateways/class.pmprogateway_stripe.php:835 +#: classes/gateways/class.pmprogateway_stripe.php:773 +#: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:866 +#: classes/gateways/class.pmprogateway_stripe.php:798 +#: classes/gateways/class.pmprogateway_stripe.php:872 +#: classes/gateways/class.pmprogateway_stripe.php:648 +msgid "There was an error deleting the webhook." +msgstr "Beim Löschen des Webhooks ist ein Fehler aufgetreten." + +#: classes/gateways/class.pmprogateway_stripe.php:811 +#: classes/gateways/class.pmprogateway_stripe.php:823 +#: classes/gateways/class.pmprogateway_stripe.php:842 +#: classes/gateways/class.pmprogateway_stripe.php:848 +#: classes/gateways/class.pmprogateway_stripe.php:676 +msgid "Webhook creation failed. Please refresh and try again." +msgstr "Webhook-Erstellung fehlgeschlagen. Bitte aktualisieren Sie und versuchen Sie es erneut." + +#: classes/gateways/class.pmprogateway_stripe.php:867 +#: classes/gateways/class.pmprogateway_stripe.php:879 +#: classes/gateways/class.pmprogateway_stripe.php:898 +#: classes/gateways/class.pmprogateway_stripe.php:904 +#: classes/gateways/class.pmprogateway_stripe.php:704 +msgid "Verification steps confirmed. Your payment is processing." +msgstr "Überprüfungsschritte bestätigt. Ihre Zahlung wird verarbeitet." + +#: classes/gateways/class.pmprogateway_stripe.php:1262 +#: classes/gateways/class.pmprogateway_stripe.php:1274 +#: classes/gateways/class.pmprogateway_stripe.php:1293 +#: classes/gateways/class.pmprogateway_stripe.php:1299 +#: classes/gateways/class.pmprogateway_stripe.php:866 +msgid "Pay with Credit Card" +msgstr "Mit Kreditkarte bezahlen" + +#: classes/gateways/class.pmprogateway_stripe.php:1296 +#: classes/gateways/class.pmprogateway_stripe.php:1308 +#: classes/gateways/class.pmprogateway_stripe.php:1327 +#: classes/gateways/class.pmprogateway_stripe.php:1333 +#: classes/gateways/class.pmprogateway_stripe.php:900 +msgid "CVC" +msgstr "CVC" + +#: classes/gateways/class.pmprogateway_stripe.php:1981 +#: classes/gateways/class.pmprogateway_stripe.php:1985 +#: classes/gateways/class.pmprogateway_stripe.php:1998 +#: classes/gateways/class.pmprogateway_stripe.php:2002 +#: classes/gateways/class.pmprogateway_stripe.php:1993 +#: classes/gateways/class.pmprogateway_stripe.php:1997 +#: classes/gateways/class.pmprogateway_stripe.php:2010 +#: classes/gateways/class.pmprogateway_stripe.php:2014 +#: classes/gateways/class.pmprogateway_stripe.php:2012 +#: classes/gateways/class.pmprogateway_stripe.php:2016 +#: classes/gateways/class.pmprogateway_stripe.php:2029 +#: classes/gateways/class.pmprogateway_stripe.php:2033 +#: classes/gateways/class.pmprogateway_stripe.php:2018 +#: classes/gateways/class.pmprogateway_stripe.php:2022 +#: classes/gateways/class.pmprogateway_stripe.php:2035 +#: classes/gateways/class.pmprogateway_stripe.php:2039 +msgid "Error: %s" +msgstr "Fehler: %s" + +#: classes/gateways/class.pmprogateway_stripe.php:3330 +#: classes/gateways/class.pmprogateway_stripe.php:3342 +#: classes/gateways/class.pmprogateway_stripe.php:3364 +#: classes/gateways/class.pmprogateway_stripe.php:3370 +#: classes/gateways/class.pmprogateway_stripe.php:3829 +msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." +msgstr "Zum Abschließen dieser Transaktion ist eine Kundenauthentifizierung erforderlich. Bitte führen Sie die von Ihrem Zahlungsanbieter ausgestellten Überprüfungsschritte aus." + +#: classes/gateways/class.pmprogateway_stripe.php:3347 +#: classes/gateways/class.pmprogateway_stripe.php:3359 +#: classes/gateways/class.pmprogateway_stripe.php:3381 +#: classes/gateways/class.pmprogateway_stripe.php:3387 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 +msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." +msgstr "Die Kundenauthentifizierung ist erforderlich, um die Einrichtung Ihres Abonnements abzuschließen. Bitte führen Sie die von Ihrem Zahlungsanbieter ausgestellten Überprüfungsschritte aus." + +#: classes/gateways/class.pmprogateway_stripe.php:3533 +#: classes/gateways/class.pmprogateway_stripe.php:3545 +#: classes/gateways/class.pmprogateway_stripe.php:3567 +#: classes/gateways/class.pmprogateway_stripe.php:3573 +#: classes/gateways/class.pmprogateway_stripe.php:1324 +msgid "Invalid response from the Stripe Connect server." +msgstr "Ungültige Antwort vom Stripe Connect-Server." + +#. translators: %s Error Message +#: classes/gateways/class.pmprogateway_stripe.php:3561 +#: classes/gateways/class.pmprogateway_stripe.php:3573 +#: classes/gateways/class.pmprogateway_stripe.php:3595 +#: classes/gateways/class.pmprogateway_stripe.php:3601 +#: classes/gateways/class.pmprogateway_stripe.php:1352 +msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" +msgstr "Fehler: PMPro konnte keine Verbindung zur Stripe-API herstellen. Grund: %s" + +#. translators: %s Error Message +#: classes/gateways/class.pmprogateway_stripe.php:3597 +#: classes/gateways/class.pmprogateway_stripe.php:3609 +#: classes/gateways/class.pmprogateway_stripe.php:3631 +#: classes/gateways/class.pmprogateway_stripe.php:3637 +#: classes/gateways/class.pmprogateway_stripe.php:1388 +msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" +msgstr "Fehler: PMPro konnte die Verbindung zur Stripe-API nicht trennen. Grund: %s" + +#: classes/gateways/class.pmprogateway_stripe.php:3768 +#: classes/gateways/class.pmprogateway_stripe.php:3780 +#: classes/gateways/class.pmprogateway_stripe.php:3802 +#: classes/gateways/class.pmprogateway_stripe.php:3808 +#: classes/gateways/class.pmprogateway_stripe.php:4132 +msgid "Last webhook received at" +msgstr "Letzter Webhook erhalten am" + +#: classes/gateways/class.pmprogateway_stripe.php:3770 +#: classes/gateways/class.pmprogateway_stripe.php:3782 +#: classes/gateways/class.pmprogateway_stripe.php:3804 +#: classes/gateways/class.pmprogateway_stripe.php:3810 +#: classes/gateways/class.pmprogateway_stripe.php:4134 +msgid "No webhooks have been received." +msgstr "Es wurden keine Webhooks empfangen." + +#: classes/gateways/class.pmprogateway_stripe.php:3774 +#: classes/gateways/class.pmprogateway_stripe.php:3786 +#: classes/gateways/class.pmprogateway_stripe.php:3808 +#: classes/gateways/class.pmprogateway_stripe.php:3814 +#: classes/gateways/class.pmprogateway_stripe.php:4138 +msgid "Your webhook may not be working correctly." +msgstr "Ihr Webhook funktioniert möglicherweise nicht ordnungsgemäß." + +#: classes/gateways/class.pmprogateway_stripe.php:3776 +#: classes/gateways/class.pmprogateway_stripe.php:3788 +#: classes/gateways/class.pmprogateway_stripe.php:3810 +#: classes/gateways/class.pmprogateway_stripe.php:3816 +#: classes/gateways/class.pmprogateway_stripe.php:4140 +msgid "Click here for info on setting up your webhook with Stripe." +msgstr "Klicken Sie hier, um Informationen zum Einrichten Ihres Webhook mit Stripe zu erhalten." + +#: includes/adminpages.php:65 +#: includes/adminpages.php:225 +msgid "Warning: One or more users for deletion have an active membership level. Deleting a user will also cancel their membership and recurring subscription.

" +msgstr "

Warnung: Mindestens ein Benutzer zum Löschen hat eine aktive Mitgliedschafts-Paket. Durch das Löschen eines Benutzers wird auch die Mitgliedschaft und das wiederkehrende Abonnement gekündigt.

" + +#: includes/cleanup.php:45 +#: includes/cleanup.php:41 +msgid "

Warning: This user has an active membership level. Deleting a user will also cancel their membership and recurring subscription.

" +msgstr "

Warnung: Dieser Benutzer hat eine aktive Mitgliedschafts-Paket. Durch das Löschen eines Benutzers wird auch die Mitgliedschaft und das wiederkehrende Abonnement gekündigt.

" + +#: includes/compatibility/beaver-builder.php:29 +#: includes/compatibility/beaver-builder.php:126 +#: includes/compatibility/elementor.php:36 +msgid "Non-members" +msgstr "Nichtmitglieder" + +#: includes/compatibility/beaver-builder.php:35 +#: includes/compatibility/beaver-builder.php:131 +msgid "PMPro" +msgstr "" + +#: includes/compatibility/beaver-builder.php:38 +msgid "General" +msgstr "Allgemein" + +#: includes/compatibility/beaver-builder.php:42 +#: includes/compatibility/beaver-builder.php:138 +msgid "Enable Paid Memberships Pro module visibility?" +msgstr "Paid Memberships Pro-Modulsichtbarkeit aktivieren?" + +#: includes/compatibility/beaver-builder.php:57 +#: includes/compatibility/beaver-builder.php:153 +msgid "Select a level for module access" +msgstr "Wählen Sie eine Ebene für den Modulzugriff" + +#: includes/compatibility/divi.php:34 +msgid "Restrict Row by Level" +msgstr "Zeile nach Ebene einschränken" + +#: includes/compatibility/divi.php:35 +#: includes/compatibility/divi.php:51 +msgid "Enter comma-separated level IDs." +msgstr "Geben Sie durch Kommas getrennte Paket-IDs ein." + +#: includes/compatibility/divi.php:50 +msgid "Restrict Section by Level" +msgstr "Abschnitt nach Ebene einschränken" + +#: includes/compatibility/elementor/class-pmpro-elementor-content-restriction.php:29 +msgid "Require Membership Level" +msgstr "Erfordern des Mitgliedschafts-Paketes" + +#: includes/compatibility/elementor/class-pmpro-elementor-content-restriction.php:41 +msgid "Require membership level to see this content." +msgstr "Erforderlich ist das Mitgliedschafts-Paket, um diesen Inhalt anzuzeigen." + +#: includes/currencies.php:44 +msgid "Ghanaian Cedi (₵)" +msgstr "Ghanaischer Cedi (₵)" + +#: includes/currencies.php:59 +msgid "Kenyan Shilling" +msgstr "Kenianischer Schilling" + +#: includes/currencies.php:68 +msgid "Romanian Leu" +msgstr "Rumänische Leu" + +#: includes/currencies.php:103 +msgid "Ukrainian Hryvnia (₴)" +msgstr "Ukrainische Hrywna (₴)" + +#. translators: 1: the old hook name, 2: the new or replacement hook name +#: includes/deprecated.php:21 +msgid "The %1$s hook has been deprecated in Paid Memberships Pro. Please use the %2$s hook instead." +msgstr "Der Hook von %1$s ist in PMPro veraltet. Bitte verwenden Sie stattdessen den%2$s Hook." + +#. translators: %s: The list of deprecated plugins that are active. +#: includes/deprecated.php:107 +msgid "Some Add Ons are now merged into the Paid Memberships Pro core plugin. The features of the following plugins are now included in PMPro by default. You should delete these unnecessary plugins from your site: %s." +msgstr "Einige Add-Ons sind jetzt im Paid Memberships Pro Core Plugin zusammengeführt. Die Funktionen der folgenden Plugins sind jetzt standardmäßig in PMPro enthalten. Sie sollten diese unnötigen Plugins von Ihrer Website löschen: %s ." + +#: includes/email-templates.php:12 +msgid "An email from !!sitename!!" +msgstr "Eine E-Mail von !!sitename!!" + +#: includes/email-templates.php:13 +msgid "Default Email" +msgstr "Standard-E-Mail" + +#: includes/email-templates.php:14 +msgid "!!body!!" +msgstr "!!body!!" + +#: includes/email-templates.php:15 +msgid "This email is sent when there is a general message that needs to be communicated to the site administrator." +msgstr "Diese E-Mail wird gesendet, wenn eine allgemeine Nachricht an den Site-Administrator übermittelt werden muss." + +#: includes/email-templates.php:19 +msgid "Email Footer" +msgstr "E-Mail Fußzeile" + +#: includes/email-templates.php:20 +msgid "" +"

\n" +"\tRespectfully,
\n" +"\t!!sitename!!\n" +"

" +msgstr "" +"

\n" +"Mit freundlichen Grüßen,
\n" +"\t!!sitename!!\n" +"

" + +#: includes/email-templates.php:24 +msgid "This is the closing message included in every email sent to members and the site administrator through Paid Memberships Pro." +msgstr "Dies ist die Abschlussnachricht, die in jeder E-Mail enthalten ist, die über Paid Memberships Pro an Mitglieder und den Site-Administrator gesendet wird." + +#: includes/email-templates.php:28 +msgid "Email Header" +msgstr "E-Mail Kopfzeile" + +#: includes/email-templates.php:29 +msgid "

Dear !!name!!,

" +msgstr "

Sehr geehrte(r) !!name!!

" + +#: includes/email-templates.php:30 +msgid "This is the opening message included in every email sent to members and the site administrator through Paid Memberships Pro." +msgstr "Dies ist die Eröffnungsnachricht, die in jeder E-Mail enthalten ist, die über Paid Memberships Pro an Mitglieder und den Site-Administrator gesendet wird." + +#: includes/email-templates.php:33 +msgid "Your membership at !!sitename!! has been changed" +msgstr "Ihre Mitgliedschaft bei !!sitename!! wurde geändert" + +#: includes/email-templates.php:34 +msgid "Admin Change" +msgstr "Admin-Änderung" + +#: includes/email-templates.php:35 +msgid "" +"

An administrator at !!sitename!! has changed your membership level.

\n" +"\t\t\n" +"

!!membership_change!!

\n" +"\t\t\n" +"

If you did not request this membership change and would like more information please contact us at !!siteemail!!

\n" +"\t\t\n" +"

Log in to your membership account here: !!login_url!!

" +msgstr "" +"

Ein Administrator bei !!sitename!! hat Ihr Mitgliedschafts-Paket geändert.

\n" +"\t\t\n" +"

!!membership_change!!

\n" +"\t\t\n" +"

Wenn Sie diese Mitgliedschaftsänderung nicht beantragt haben und weitere Informationen wünschen, kontaktieren Sie uns bitte unter !!siteemail!!

\n" +"\t\t\n" +"

Loggen Sie sich hier in Ihr Mitgliedskonto ein: !!login_url!!

" + +#: includes/email-templates.php:42 +msgid "The site administrator can manually update a user's membership level through the WordPress admin. This email notifies the member of the level update." +msgstr "Der Site-Administrator kann das Mitgliedschafts-Paket eines Benutzers manuell über den WordPress-Administrator aktualisieren. Diese E-Mail benachrichtigt das Mitglied über die Aktualisierung des Mitgliedschafts-Paketes." + +#: includes/email-templates.php:45 +msgid "Membership for !!user_login!! at !!sitename!! has been changed" +msgstr "Mitgliedschaft für !!user_login!! bei !!sitename!! wurde geändert" + +#: includes/email-templates.php:46 +msgid "Admin Change (admin)" +msgstr "Admin-Änderung (admin)" + +#: includes/email-templates.php:47 +msgid "" +"

An administrator at !!sitename!! has changed a membership level for !!name!!.

\n" +"\n" +"

!!membership_change!!

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" +"

Ein Administrator bei !!sitename!! hat ein Mitgliedschafts-Paket für !!name!! geändert.

\n" +"\n" +"

!!membership_change!!

\n" +"\n" +"

Melden Sie sich hier bei Ihrem WordPress-Admin an: !!login_url!!

" + +#: includes/email-templates.php:52 +msgid "The site administrator can manually update a user's membership level through the WordPress admin. This email notifies the site administrator of the level update." +msgstr "Der Site-Administrator kann das Mitgliedschafts-Paket eines Benutzers manuell über den WordPress-Administrator aktualisieren. Diese E-Mail benachrichtigt den Site-Administrator über die Paket-Aktualisierung." + +#: includes/email-templates.php:55 +msgid "Invoice for order #: !!order_code!!" +msgstr "Rechnung für Bestellung Nummer: !!order_code!!" + +#: includes/email-templates.php:57 +msgid "" +"

Thank you for your membership to !!sitename!!. Below is your invoice for order #: !!order_code!!

\n" +"\n" +"!!invoice!!\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

" +msgstr "" +"

Vielen Dank für Ihre Mitgliedschaft bei !!sitename!!. Unten ist Ihre Rechnung für Bestellung Nummer: !!order_code!!

\n" +"\n" +"!!invoice!!\n" +"\n" +"

Loggen Sie sich hier in Ihr Mitgliedskonto ein: !!login_url!!

\n" +"\n" +"

Um eine Online-Version dieser Rechnung zu sehen, klicken Sie hier: !!invoice_url!!

" + +#: includes/email-templates.php:64 +msgid "The site administrator can manually send a user a copy of this invoice email via the Memberships > Orders admin page." +msgstr "Der Site-Administrator kann einem Benutzer manuell eine Kopie dieser Rechnungs-E-Mail über die Admin-Seite Mitgliedschaften > Bestellungen senden." + +#: includes/email-templates.php:67 +msgid "Your billing information has been updated at !!sitename!!" +msgstr "Ihre Rechnungsinformationen wurden aktualisiert: !!sitename!!" + +#: includes/email-templates.php:69 +msgid "" +"

Your billing information at !!sitename!! has been changed.

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tBilling Information:
\n" +"\t!!billing_address!!\n" +"

\n" +"\t!!cardtype!!: !!accountnumber!!
\n" +"\tExpires: !!expirationmonth!!/!!expirationyear!!\n" +"

If you did not request a billing information change please contact us at !!siteemail!!

Log in to your membership account here: !!login_url!!

" +msgstr "" +"

Ihre Rechnungsinformationen unter !!sitename!! wurde geändert.

Konto: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tRechnungsinformationen:
\n" +"\t!!billing_address!!\n" +"

\n" +"\t!!cardtype!!: !!accountnumber!!
\n" +"\tLäuft ab: !!expirationmonth!!/!!expirationyear!!\n" +"

Wenn Sie keine Änderung der Rechnungsinformationen angefordert haben, kontaktieren Sie uns bitte unter !!siteemail!!

Loggen Sie sich hier in Ihr Mitgliedskonto ein: !!login_url!!

" + +#: includes/email-templates.php:77 +msgid "Members can update the payment method associated with their recurring subscription. This email is sent to the member as a confirmation of a payment method update." +msgstr "Mitglieder können die Zahlungsmethode aktualisieren, die mit ihrem wiederkehrenden Abonnement verknüpft ist. Diese E-Mail wird als Bestätigung einer Aktualisierung der Zahlungsmethode an das Mitglied gesendet." + +#: includes/email-templates.php:80 +msgid "Billing information has been updated for !!user_login!! at !!sitename!!" +msgstr "Die Abrechnungsinformationen wurden für !!user_login!! aktualisiert: !!sitename!!" + +#: includes/email-templates.php:81 +msgid "Billing (admin)" +msgstr "Rechnung (admin)" + +#: includes/email-templates.php:82 +msgid "" +"

The billing information for !!display_name!! at !!sitename!! has been changed.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tBilling Information:
\n" +"\t!!billing_name!!
\n" +"\t!!billing_street!!
\n" +"\t!!billing_city!!, !!billing_state!! !!billing_zip!!\t!!billing_country!!\n" +"\t!!billing_phone!!\n" +"

\n" +"\n" +"

\n" +"\t!!cardtype!!: !!accountnumber!!
\n" +"\tExpires: !!expirationmonth!!/!!expirationyear!!\n" +"

\n" +"\n" +"

Log in to your WordPress dashboard here: !!login_url!!

" +msgstr "" +"

Die Rechnungsinformationen für !!display_name!! bei!!sitename!! wurde geändert.

\n" +"\n" +"

\n" +"\tKonto: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tRechnungsinformationen:
\n" +"\t!!billing_name!!
\n" +"\t!!billing_street!!
\n" +"\t!!billing_city!!, !!billing_state!! !!billing_zip!!\t!!billing_country!!\n" +"\t!!billing_phone!!\n" +"

\n" +"\n" +"\t!!cardtype!!: !!accountnumber!!
\n" +"\tLäuft ab: !!expirationmonth!!/!!expirationyear!!\n" +"

\n" +"\n" +"

Melden Sie sich hier in Ihrem WordPress-Dashboard an: !!login_url!!

" + +#: includes/email-templates.php:99 +msgid "Members can update the payment method associated with their recurring subscription. This email is sent to the site administrator as a confirmation of a payment method update." +msgstr "Mitglieder können die Zahlungsmethode aktualisieren, die mit ihrem wiederkehrenden Abonnement verknüpft ist. Diese E-Mail wird als Bestätigung für eine Aktualisierung der Zahlungsmethode an den Websiteadministrator gesendet." + +#: includes/email-templates.php:102 +msgid "Membership payment failed at !!sitename!!" +msgstr "Mitgliedszahlung fehlgeschlagen bei !!sitename!!" + +#: includes/email-templates.php:103 +msgid "Billing Failure" +msgstr "Bezahlvorgang fehlgeschlagen" + +#: includes/email-templates.php:104 +msgid "" +"

The current subscription payment for your !!sitename!! membership has failed. Please click the following link to log in and update your billing information to avoid account suspension. !!login_url!!

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

" +msgstr "" +"

Die aktuelle Abonnementzahlung für Ihre !!sitename!! Mitgliedschaft ist fehlgeschlagen. Bitte klicken Sie auf den folgenden Link, um sich anzumelden und Ihre Rechnungsinformationen zu aktualisieren, um eine Kontosperrung zu vermeiden. !!login_url!!

\n" +"\n" +"

Konto: !!display_name!! (!!user_email!!)

" + +#: includes/email-templates.php:107 +msgid "This email is sent out if a recurring payment has failed, usually due to an expired or cancelled credit card. This email is sent to the member to allowing them time to update payment information without a disruption in access to your site." +msgstr "Diese E-Mail wird versendet, wenn eine wiederkehrende Zahlung fehlgeschlagen ist, in der Regel aufgrund einer abgelaufenen oder stornierten Kreditkarte. Diese E-Mail wird an das Mitglied gesendet, damit es Zeit hat, Zahlungsinformationen ohne Unterbrechung des Zugriffs auf Ihre Website zu aktualisieren." + +#: includes/email-templates.php:110 +msgid "Membership payment failed for !!display_name!! at !!sitename!!" +msgstr "Mitgliedszahlung fehlgeschlagen für !!display_name!! bei !!sitename!!" + +#: includes/email-templates.php:111 +msgid "Billing Failure (admin)" +msgstr "Abrechnungsfehler (admin)" + +#: includes/email-templates.php:112 +msgid "" +"

The subscription payment for !!user_login!! at !!sitename!! has failed.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

Membership Level: !!membership_level_name!!

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

\n" +"" +msgstr "" +"

Die Abonnementzahlung für !!user_login!! bei !!sitename!! ist fehlgeschlagen.

\n" +"\n" +"

Konto: !!display_name!! (!!user_email!!)

\n" +"

Mitgliedschafts-Paket: !!membership_level_name!!

\n" +"\n" +"

Melden Sie sich hier bei Ihrem WordPress-Admin an: !!login_url!!

\n" +"" + +#: includes/email-templates.php:119 +msgid "This email is sent out if a recurring payment has failed for a member, usually due to an expired or cancelled credit card. This email is sent to the site administrator." +msgstr "Diese E-Mail wird versendet, wenn eine wiederkehrende Zahlung für ein Mitglied fehlgeschlagen ist, in der Regel aufgrund einer abgelaufenen oder stornierten Kreditkarte. Diese E-Mail wird an den Site-Administrator gesendet." + +#: includes/email-templates.php:122 +msgid "Your membership at !!sitename!! has been CANCELLED" +msgstr "Ihre Mitgliedschaft bei !!sitename!! wurde storniert" + +#: includes/email-templates.php:124 +msgid "" +"

Your membership at !!sitename!! has been cancelled.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

Membership Level: !!membership_level_name!!

\n" +"\n" +"

If you did not request this cancellation and would like more information please contact us at !!siteemail!!

" +msgstr "" +"

Ihre Mitgliedschaft bei !!sitename!! wurde storniert.

\n" +"\n" +"

Konto: !!display_name!! (!!user_email!!)

\n" +"

Mitgliedschafts-Paket: !!membership_level_name!!

\n" +"\n" +"

Wenn Sie diese Stornierung nicht beantragt haben und weitere Informationen wünschen, kontaktieren Sie uns bitte unter !!siteemail!!

" + +#: includes/email-templates.php:130 +msgid "The site administrator can manually cancel a user's membership through the WordPress admin or the member can cancel their own membership through your site. This email is sent to the member as confirmation of a cancelled membership." +msgstr "Der Site-Administrator kann die Mitgliedschaft eines Benutzers manuell über den WordPress-Administrator kündigen oder das Mitglied kann seine eigene Mitgliedschaft über Ihre Website kündigen. Diese E-Mail wird als Bestätigung einer gekündigten Mitgliedschaft an das Mitglied gesendet." + +#: includes/email-templates.php:133 +msgid "Membership for !!user_login!! at !!sitename!! has been CANCELLED" +msgstr "Die Mitgliedschaft für !!user_login!! bei !!sitename!! wurde storniert" + +#: includes/email-templates.php:134 +msgid "Cancel (admin)" +msgstr "Kündigung (admin)" + +#: includes/email-templates.php:135 +msgid "" +"

The membership for !!user_login!! at !!sitename!! has been cancelled.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

Membership Level: !!membership_level_name!!

\n" +"

Start Date: !!startdate!!

\n" +"

End Date: !!enddate!!

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" +"

Die Mitgliedschaft für !!user_login!! bei !!sitename!! wurde storniert.

\n" +"\n" +"

Konto: !!display_name!! (!!user_email!!)

\n" +"

Mitgliedschafts-Paket: !!membership_level_name!!

\n" +"

Startdatum: !!startdate!!

\n" +"

Enddatum: !!enddate!!

\n" +"\n" +"

Melden Sie sich hier bei Ihrem WordPress-Admin an: !!login_url!!

" + +#: includes/email-templates.php:143 +msgid "The site administrator can manually cancel a user's membership through the WordPress admin or the member can cancel their own membership through your site. This email is sent to the site administrator as confirmation of a cancelled membership." +msgstr "Der Site-Administrator kann die Mitgliedschaft eines Benutzers manuell über den WordPress-Administrator kündigen oder das Mitglied kann seine eigene Mitgliedschaft über Ihre Website kündigen. Diese E-Mail wird als Bestätigung einer gekündigten Mitgliedschaft an den Site-Administrator gesendet." + +#: includes/email-templates.php:146 +#: includes/email-templates.php:192 +#: includes/email-templates.php:234 +#: includes/email-templates.php:261 +#: includes/email-templates.php:310 +#: includes/email-templates.php:367 +msgid "Your membership confirmation for !!sitename!!" +msgstr "Ihre Mitgliedsbestätigung für !!sitename!!" + +#: includes/email-templates.php:147 +msgid "Checkout - Check" +msgstr "Buchung - Scheck" + +#: includes/email-templates.php:148 +msgid "" +"

Thank you for your membership to !!sitename!!. Your membership account is now active.

\n" +"\n" +"!!membership_level_confirmation_message!!\n" +"\n" +"!!instructions!!\n" +"\n" +"

Below are details about your membership account and a receipt for your initial membership invoice.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

Membership Level: !!membership_level_name!!

\n" +"

Membership Fee: !!membership_cost!!

\n" +"!!membership_expiration!! !!discount_code!!\n" +"\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Billed: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

" +msgstr "" +"

Vielen Dank für Ihre Mitgliedschaft bei !!sitename!!. Ihr Mitgliedskonto ist jetzt aktiv.

!!membership_level_confirmation_message!!\n" +"\n" +"!!instructions!!\n" +"\n" +"

Unten finden Sie Details zu Ihrem Mitgliedskonto und eine Quittung für Ihre erste Mitgliedschaftsrechnung.

\n" +"\n" +"

Konto: !!display_name!! (!!user_email!!)

\n" +"

Mitgliedschafts-Paket: !!membership_level_name!!

\n" +"

Mitgliedsbeitrag: !!membership_cost!!\n" +"

\n" +"!!membership_expiration!! !!discount_code!!\n" +"\n" +"

\n" +"\tRechnungs-Nummer!!invoice_id!! auf !!invoice_date!!
\n" +"\tInsgesamt abgerechnet: !!invoice_total!!

\n" +"\n" +"

Loggen Sie sich hier in Ihr Mitgliedskonto ein: !!login_url!!

" + +#: includes/email-templates.php:167 +msgid "This is a membership confirmation welcome email sent to a new member or to existing members that change their level using the \"Pay by Check\" gateway." +msgstr "Dies ist eine Willkommens-E-Mail zur Bestätigung der Mitgliedschaft, die an ein neues Mitglied oder an bestehende Mitglieder gesendet wird, die ihre Stufe über das Gateway \"Pay by Check\" ändern." + +#: includes/email-templates.php:170 +#: includes/email-templates.php:214 +#: includes/email-templates.php:248 +#: includes/email-templates.php:286 +#: includes/email-templates.php:339 +#: includes/email-templates.php:396 +msgid "Member checkout for !!membership_level_name!! at !!sitename!!" +msgstr "Mitglieder Checkout für !!membership_level_name!! bei !!sitename!!" + +#: includes/email-templates.php:171 +msgid "Checkout - Check (admin)" +msgstr "Buchung - Scheck (admin)" + +#: includes/email-templates.php:172 +msgid "" +"

There was a new member checkout at !!sitename!!.

\n" +"\n" +"

They have chosen to pay by check.

\n" +"\n" +"

Below are details about the new membership account and a receipt for the initial membership invoice.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

Membership Level: !!membership_level_name!!

\n" +"

Membership Fee: !!membership_cost!!

\n" +"!!membership_expiration!! !!discount_code!!\n" +"\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Billed: $!!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

" +msgstr "" +"

Es gab eine neue Mitglieder-Anmeldung bei !!sitename!!.

\n" +"\n" +"

Das Mitglied sich entschieden, als Scheck zu bezahlen.

\n" +"\n" +"

Unten finden Sie Details zum neuen Mitgliedskonto und eine Quittung für die ursprüngliche Mitgliedsrechnung.

\n" +"\n" +"

Konto: !!display_name!! (!!user_email!!)

\n" +"

Mitgliedschafts-Paket: !!membership_level_name!!

\n" +"

Mitgliedsbeitrag: !!membership_cost!!

\n" +"!!membership_expiration!! !!discount_code!!\n" +"\n" +"

Rechnungs-Nummer!!invoice_id!! auf!!invoice_date!!
\n" +"\n" +"Insgesamt abgerechnet: $!!invoice_total!!

\n" +"\n" +"

Loggen Sie sich hier in Ihr Mitgliedskonto ein: !!login_url!!

" + +#: includes/email-templates.php:189 +msgid "This is the membership confirmation email sent to the site administrator for every membership checkout using the \"Pay by Check\" gateway." +msgstr "Dies ist die Bestätigungs-E-Mail zur Mitgliedschaft, die an den Site-Administrator für jeden Mitglieds-Checkout über das Gateway \"Pay by Check\" gesendet wird." + +#: includes/email-templates.php:193 +msgid "Checkout - PayPal Express" +msgstr "Buchung - PayPal Express" + +#: includes/email-templates.php:194 +msgid "" +"

Thank you for your membership to !!sitename!!. Your membership account is now active.

\n" +"!!membership_level_confirmation_message!!\n" +"

Below are details about your membership account and a receipt for your initial membership invoice.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

Membership Level: !!membership_level_name!!

\n" +"

Membership Fee: !!membership_cost!!

\n" +"!!membership_expiration!! !!discount_code!!\n" +"\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Billed: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"" +msgstr "" +"

Vielen Dank für Ihre Mitgliedschaft bei !!sitename!!. Ihr Mitgliedskonto ist jetzt aktiv.

\n" +"!!membership_level_confirmation_message!!\n" +"

Unten finden Sie Details zu Ihrem Mitgliedskonto und eine Quittung für Ihre erste Mitgliedschaftsrechnung.

\n" +"\n" +"

Konto: !!display_name!! (!!user_email!!)

\n" +"

Mitgliedschafts-Paket: !!membership_level_name!!

\n" +"

Mitgliedsbeitrag: !!membership_cost!!

\n" +"!!membership_expiration!! !!discount_code!!\n" +"\n" +"

\n" +"\tRechnungs-Nummer: !!invoice_id!! am !!invoice_date!!
\n" +"\tInsgesamt abgerechnet: !!invoice_total!!

\n" +"\n" +"

Loggen Sie sich hier in Ihr Mitgliedskonto ein: !!login_url!!

\n" +"" + +#: includes/email-templates.php:210 +msgid "This is a membership confirmation welcome email sent to a new member or to existing members that change their level using the \"PayPal Express\" gateway." +msgstr "Dies ist eine Willkommens-E-Mail zur Bestätigung der Mitgliedschaft, die an ein neues Mitglied oder an bestehende Mitglieder gesendet wird, die ihre Stufe über das Gateway \"PayPal Express\" ändern." + +#: includes/email-templates.php:215 +msgid "Checkout - PayPal Express (admin)" +msgstr "Buchung - PayPal Express (admin)" + +#: includes/email-templates.php:216 +msgid "" +"

There was a new member checkout at !!sitename!!.

\n" +"

Below are details about the new membership account and a receipt for the initial membership invoice.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

Membership Level: !!membership_level_name!!

\n" +"

Membership Fee: !!membership_cost!!

\n" +"!!membership_expiration!! !!discount_code!!\n" +"\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Billed: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"" +msgstr "" +"

Es gab eine neue Mitglieder-Anmeldung bei !!sitename!!.

\n" +"

Unten finden Sie Details zum neuen Mitgliedskonto und eine Quittung für die ursprüngliche Mitgliedsrechnung.

\n" +"\n" +"

Konto: !!display_name!! (!!user_email!!)

\n" +"

Mitgliedschafts-Paket: !!membership_level_name!!

\n" +"

Mitgliedsbeitrag: !!membership_cost!!

\n" +"!!membership_expiration!! !!discount_code!!\n" +"\n" +"

\n" +"\tRechnungs-Nummer!!invoice_id!! am !!invoice_date!!
\n" +"\tInsgesamt abgerechnet: !!invoice_total!!

\n" +"\n" +"

Loggen Sie sich hier in Ihr Mitgliedskonto ein: !!login_url!!

\n" +"" + +#: includes/email-templates.php:231 +msgid "This is the membership confirmation email sent to the site administrator for every membership checkout using the \"PayPal Express\" gateway." +msgstr "Dies ist die Bestätigungs-E-Mail zur Mitgliedschaft, die an den Site-Administrator für jeden Mitglieds-Checkout über das Gateway \"PayPal Express\" gesendet wird." + +#: includes/email-templates.php:235 +msgid "Checkout - Free" +msgstr "Buchung - Kostenlos" + +#: includes/email-templates.php:236 +msgid "" +"

Thank you for your membership to !!sitename!!. Your membership account is now active.

\n" +"!!membership_level_confirmation_message!!\n" +"

Below are details about your membership account.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

Membership Level: !!membership_level_name!!

\n" +"!!membership_expiration!! !!discount_code!!\n" +"\n" +"

Log in to your membership account here: !!login_url!!

" +msgstr "" +"

Vielen Dank für Ihre Mitgliedschaft bei !!sitename!!. Ihr Mitgliedskonto ist jetzt aktiv.

\n" +"!!membership_level_confirmation_message!!\n" +"

Unten finden Sie Details zu Ihrem Mitgliedskonto.

\n" +"\n" +"

Konto: !!display_name!! (!!user_email!!)

\n" +"

Mitgliedschafts-Paket: !!membership_level_name!!

\n" +"!!membership_expiration!! !!discount_code!!\n" +"\n" +"

Loggen Sie sich hier in Ihr Mitgliedskonto ein: !!login_url!!

" + +#: includes/email-templates.php:245 +msgid "This is a membership confirmation welcome email sent to a new member or to existing members that change their level when the level has no charge." +msgstr "Dies ist eine Willkommens-E-Mail zur Bestätigung der Mitgliedschaft, die an ein neues Mitglied oder an bestehende Mitglieder gesendet wird, die ihre Stufe ändern, wenn die Stufe kostenlos ist." + +#: includes/email-templates.php:249 +msgid "Checkout - Free (admin)" +msgstr "Buchung - Kostenlos (admin)" + +#: includes/email-templates.php:250 +msgid "" +"

There was a new member checkout at !!sitename!!.

\n" +"

Below are details about the new membership account.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

Membership Level: !!membership_level_name!!

\n" +"!!membership_expiration!! !!discount_code!!\n" +"\n" +"

Log in to your membership account here: !!login_url!!

" +msgstr "" +"

Es gab eine neue Mitglieder-Anmeldung bei !!sitename!!.

\n" +"

Unten finden Sie Details zum neuen Mitgliedskonto.

\n" +"\n" +"

Konto: !!display_name!! (!!user_email!!)

\n" +"

Mitgliedschafts-Paket: !!membership_level_name!!

\n" +"!!membership_expiration!! !!discount_code!!\n" +"\n" +"

Loggen Sie sich hier in Ihr Mitgliedskonto ein: !!login_url!!

" + +#: includes/email-templates.php:258 +msgid "This is the membership confirmation email sent to the site administrator for every membership checkout that has no charge." +msgstr "Dies ist die Bestätigungs-E-Mail zur Mitgliedschaft, die an den Site-Administrator für jeden kostenpflichtigen Mitglieds-Checkout gesendet wird." + +#: includes/email-templates.php:262 +msgid "Checkout - Free Trial" +msgstr "Buchung- Kostenlose Testphase" + +#: includes/email-templates.php:263 +msgid "" +"

Thank you for your membership to !!sitename!!. Your membership account is now active.

\n" +"!!membership_level_confirmation_message!!\n" +"

Below are details about your membership account.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

Membership Level: !!membership_level_name!!

\n" +"

Membership Fee: !!membership_cost!!

\n" +"!!membership_expiration!! !!discount_code!!\n" +"\n" +"

\n" +"\tBilling Information on File:
\n" +"\t!!billing_address!!\n" +"

\n" +"\n" +"

\n" +"\t!!cardtype!!: !!accountnumber!!
\n" +"\tExpires: !!expirationmonth!!/!!expirationyear!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

" +msgstr "" +"

Vielen Dank für Ihre Mitgliedschaft bei !!sitename!!. Ihr Mitgliedskonto ist jetzt aktiv.

\n" +"!!membership_level_confirmation_message!!\n" +"

Unten finden Sie Details zu Ihrem Mitgliedskonto.

\n" +"\n" +"

Konto: !!display_name!! (!!user_email!!)

\n" +"

Mitgliedschafts-Paket: !!membership_level_name!!

\n" +"

Mitgliedsbeitrag: !!membership_cost!!

\n" +"!!membership_expiration!! !!discount_code!!\n" +"\n" +"

\n" +"\tGespeicherte Rechnungsinformationen:
\n" +"\t!!billing_address!!\n" +"

\n" +"\n" +"

!!cardtype!!: !!accountnumber!!
\n" +"\tLäuft ab: !!expirationmonth!!/!!expirationyear!!\n" +"

\n" +"\n" +"

Loggen Sie sich hier in Ihr Mitgliedskonto ein: !!login_url!!

" + +#: includes/email-templates.php:283 +#: includes/email-templates.php:393 +msgid "This is a membership confirmation welcome email sent to a new member or to existing members that change their level with a trial period." +msgstr "Dies ist eine Willkommens-E-Mail zur Bestätigung der Mitgliedschaft, die an ein neues Mitglied oder an bestehende Mitglieder gesendet wird, die ihre Stufe mit einer Testphase ändern." + +#: includes/email-templates.php:287 +msgid "Checkout - Free Trial (admin)" +msgstr "Buchung- Kostenlose Testphase (admin)" + +#: includes/email-templates.php:288 +msgid "" +"

There was a new member checkout at !!sitename!!.

\n" +"

Below are details about the new membership account and a receipt for the initial membership invoice.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

Membership Level: !!membership_level_name!!

\n" +"

Membership Fee: !!membership_cost!!

\n" +"!!membership_expiration!! !!discount_code!!\n" +"\n" +"

\n" +"\tBilling Information on File:
\n" +"\t!!billing_address!!\n" +"

\n" +"\n" +"

\n" +"\t!!cardtype!!: !!accountnumber!!
\n" +"\tExpires: !!expirationmonth!!/!!expirationyear!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

" +msgstr "" +"

Es gab eine neue Mitglieder-Anmeldung bei !!sitename!!.

\n" +"

Unten finden Sie Details zum neuen Mitgliedskonto und eine Quittung für die ursprüngliche Mitgliedsrechnung.

\n" +"\n" +"

Konto: !!display_name!! (!!user_email!!)

\n" +"

Mitgliedschafts-Paket: !!membership_level_name!!

\n" +"

Mitgliedsbeitrag: !!membership_cost!!

\n" +"!!membership_expiration!! !!discount_code!!\n" +"\n" +"

\n" +"\tGespeicherte Rechnungsinformationen:
\n" +"\t!!billing_address!!\n" +"

\n" +"\n" +"

\n" +"\t!!cardtype!!: !!accountnumber!!
\n" +"\tLäuft ab: !!expirationmonth!! /!!expirationyear!!

\n" +"\n" +"

Loggen Sie sich hier in Ihr Mitgliedskonto ein: !!login_url!!

" + +#: includes/email-templates.php:307 +#: includes/email-templates.php:421 +msgid "This is the membership confirmation email sent to the site administrator for every membership checkout with a trial period." +msgstr "Dies ist die Bestätigungs-E-Mail zur Mitgliedschaft, die an den Websiteadministrator für jeden Mitgliedschafts-Checkout mit einem Testzeitraum gesendet wird." + +#: includes/email-templates.php:311 +msgid "Checkout - Paid" +msgstr "Buchung - Bezahlt" + +#: includes/email-templates.php:312 +#: includes/email-templates.php:369 +msgid "" +"

Thank you for your membership to !!sitename!!. Your membership account is now active.

\n" +"!!membership_level_confirmation_message!!\n" +"

Below are details about your membership account and a receipt for your initial membership invoice.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

Membership Level: !!membership_level_name!!

\n" +"

Membership Fee: !!membership_cost!!

\n" +"!!membership_expiration!! !!discount_code!!\n" +"\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Billed: !!invoice_total!!\n" +"

\n" +"

\n" +"\tBilling Information:
\n" +"\t!!billing_address!!\n" +"

\n" +"\n" +"

\n" +"\t!!cardtype!!: !!accountnumber!!
\n" +"\tExpires: !!expirationmonth!!/!!expirationyear!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

" +msgstr "" +"

Vielen Dank für Ihre Mitgliedschaft bei !!sitename!!. Ihr Mitgliedskonto ist jetzt aktiv.

\n" +"!!membership_level_confirmation_message!!\n" +"

Unten finden Sie Details zu Ihrem Mitgliedskonto und eine Quittung für Ihre erste Mitgliedschaftsrechnung.

\n" +"\n" +"

Konto: !!display_name!! (!!user_email!!)

\n" +"

Mitgliedschafts-Paket: !!membership_level_name!!

\n" +"

Mitgliedsbeitrag: !!membership_cost!!

\n" +"!!membership_expiration!! !!discount_code!!\n" +"\n" +"

\n" +"\tRechnungs-Nummer!!invoice_id!! auf!!invoice_date!!
\n" +"\tInsgesamt abgerechnet: !!invoice_total!!\n" +"

\n" +"

\n" +"\tRechnungsinformationen:
\n" +"\t!!billing_address!!\n" +"

\n" +"\n" +"

\n" +"\t!!cardtype!!: !!accountnumber!!
\n" +"\tLäuft ab: !!expirationmonth!! /!!expirationyear!!\n" +"

\n" +"\n" +"

Loggen Sie sich hier in Ihr Mitgliedskonto ein: !!login_url!!

" + +#: includes/email-templates.php:336 +msgid "This is a membership confirmation welcome email sent to a new member or to existing members that change their level and complete a paid checkout on the site." +msgstr "Dies ist eine Willkommens-E-Mail zur Bestätigung der Mitgliedschaft, die an ein neues Mitglied oder an bestehende Mitglieder gesendet wird, die ihre Stufe ändern und einen bezahlten Checkout auf der Website abschließen." + +#: includes/email-templates.php:340 +msgid "Checkout - Paid (admin)" +msgstr "Buchung - Bezahlt (admin)" + +#: includes/email-templates.php:341 +#: includes/email-templates.php:398 +msgid "" +"

There was a new member checkout at !!sitename!!.

\n" +"

Below are details about the new membership account and a receipt for the initial membership invoice.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

Membership Level: !!membership_level_name!!

\n" +"

Membership Fee: !!membership_cost!!

\n" +"!!membership_expiration!! !!discount_code!!\n" +"\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Billed: !!invoice_total!!\n" +"

\n" +"

\n" +"\tBilling Information:
\n" +"\t!!billing_address!!\n" +"

\n" +"\n" +"

\n" +"\t!!cardtype!!: !!accountnumber!!
\n" +"\tExpires: !!expirationmonth!!/!!expirationyear!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

" +msgstr "" +"

Es gab eine neue Mitglieder-Anmeldung bei !!sitename!!.

\n" +"

Unten finden Sie Details zum neuen Mitgliedskonto und eine Quittung für die ursprüngliche Mitgliedsrechnung.

\n" +"\n" +"

Konto: !!display_name!! (!!user_email!!)

\n" +"

Mitgliedschafts-Paket: !!membership_level_name!!

\n" +"

Mitgliedsbeitrag: !!membership_cost!!

\n" +"!!membership_expiration!! !!discount_code!!\n" +"\n" +"

\n" +"\tRechnungs-Nummer: !!invoice_id!! am !!invoice_date!!
\n" +"\tInsgesamt abgerechnet: !!invoice_total!!\n" +"

\n" +"

\n" +"Rechnungsinformationen:
\n" +"\t!!billing_address!!\n" +"

\n" +"\n" +"

\n" +"\t!!cardtype!!: !!accountnumber!!
\n" +"\tLäuft ab: !!expirationmonth!! /!!expirationyear!!\n" +"

\n" +"\n" +"

Loggen Sie sich hier in Ihr Mitgliedskonto ein: !!login_url!!

" + +#: includes/email-templates.php:364 +msgid "This is the membership confirmation email sent to the site administrator for every paid membership checkout on the site." +msgstr "Dies ist die Bestätigungs-E-Mail zur Mitgliedschaft, die an den Websiteadministrator für jeden bezahlten Mitgliedschafts-Checkout auf der Website gesendet wird." + +#: includes/email-templates.php:368 +msgid "Checkout - Trial" +msgstr "Buchung - Testphase" + +#: includes/email-templates.php:397 +msgid "Checkout - Trial (admin)" +msgstr "Buchung - Testphase (admin)" + +#: includes/email-templates.php:424 +msgid "Credit card on file expiring soon at !!sitename!!" +msgstr "Ihre Kreditkarte läuft bald ab: !!sitename!!" + +#: includes/email-templates.php:425 +msgid "Credit Card Expiring" +msgstr "Kreditkarte läuft aus" + +#: includes/email-templates.php:426 +msgid "" +"

The payment method used for your membership at !!sitename!! will expire soon. Please click the following link to log in and update your billing information to avoid account suspension. !!login_url!!

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

The most recent account information we have on file is:

\n" +"\n" +"

!!billing_name!!
\n" +"\t!!billing_address!!\n" +"

\n" +"\n" +"

\n" +"\t!!cardtype!!: !!accountnumber!!
\n" +"\tExpires: !!expirationmonth!!/!!expirationyear!!\n" +"

" +msgstr "" +"

Die Zahlungsmethode, die für Ihre Mitgliedschaft bei !!sitename!! Verwendet wurde, läuft bald ab. Bitte klicken Sie auf den folgenden Link, um sich anzumelden und Ihre Rechnungsinformationen zu aktualisieren, um eine Kontosperrung zu vermeiden. !!login_url!!

\n" +"\n" +"

Konto: !!display_name!! (!!user_email!!)

\n" +"

Die neuesten Kontoinformationen, die wir gespeichert haben, sind:

\n" +"\n" +"

!!billing_name!!
\n" +"\t!!billing_address!!

\n" +"\n" +"

\n" +"\t!!cardtype!!: !!accountnumber!!
\n" +"\tLäuft ab: !!expirationmonth!! /!!expirationyear!!\n" +"

" + +#: includes/email-templates.php:439 +msgid "This email is sent when a member's payment method will be expiring soon. This allows the member to update their payment method before a payment failure, which may result in lost access to member features." +msgstr "Diese E-Mail wird gesendet, wenn die Zahlungsmethode eines Mitglieds bald abläuft. Dies ermöglicht es dem Mitglied, seine Zahlungsmethode vor einem Zahlungsfehler zu aktualisieren, was zu einem Verlust des Zugriffs auf die Mitgliederfunktionen führen kann." + +#: includes/email-templates.php:442 +msgid "Invoice for !!sitename!! membership" +msgstr "Rechnung für !!sitename!! Mitgliedschaft" + +#: includes/email-templates.php:443 +msgid "Invoice" +msgstr "Rechnung" + +#: includes/email-templates.php:444 +msgid "" +"

Thank you for your membership to !!sitename!!. Below is a receipt for your most recent membership invoice.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Billed: !!invoice_total!!\n" +"

\n" +"

\n" +"\tBilling Information:
\n" +"\t!!billing_address!!\n" +"

\n" +"\n" +"

\n" +"\t!!cardtype!!: !!accountnumber!!
\n" +"\tExpires: !!expirationmonth!!/!!expirationyear!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

" +msgstr "" +"

Vielen Dank für Ihre Mitgliedschaft bei !!sitename!!. Nachfolgend finden Sie eine Quittung für Ihre letzte Mitgliedsrechnung.

\n" +"\n" +"

Konto: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tRechnungs-Nummer!!invoice_id!! auf!!invoice_date!!
\n" +"\tInsgesamt abgerechnet: !!invoice_total!!

\n" +"

\n" +"\tRechnungsinformationen:
\n" +"\t!!billing_address!!\n" +"

\n" +"\n" +"

\n" +"\t!!cardtype!!: !!accountnumber!!
\n" +"\tLäuft ab: !!expirationmonth!! /!!expirationyear!!

\n" +"\n" +"

Loggen Sie sich hier in Ihr Mitgliedskonto ein: !!login_url!!

\n" +"

Um eine Online-Version dieser Rechnung zu sehen, klicken Sie hier: !!invoice_url!!

" + +#: includes/email-templates.php:463 +msgid "This email is sent to the member each time a new subscription payment is made." +msgstr "Diese E-Mail wird jedes Mal an das Mitglied gesendet, wenn eine neue Abonnementzahlung erfolgt." + +#: includes/email-templates.php:466 +msgid "Your membership at !!sitename!! has ended" +msgstr "Ihre Mitgliedschaft bei !!sitename!! ist beendet" + +#: includes/email-templates.php:467 +msgid "Membership Expired" +msgstr "Mitgliedschaft abgelaufen" + +#: includes/email-templates.php:468 +msgid "" +"

Your membership at !!sitename!! has ended.

\n" +"\n" +"

Thank you for your support.

\n" +"\n" +"

View our current membership offerings here: !!levels_url!!

\n" +"\n" +"

Log in to manage your account here: !!login_url!!

" +msgstr "" +"

Ihre Mitgliedschaft bei !!sitename!! ist beendet.

\n" +"\n" +"

Schade, dass Sie uns verlassen.

\n" +"\n" +"

Sehen Sie sich hier unsere aktuellen Mitgliedschaftsangebote an: !!levels_url!!

\n" +"\n" +"

Melden Sie sich hier an, um Ihr Konto zu verwalten: !!login_url!!

" + +#: includes/email-templates.php:475 +msgid "This email is sent to the member when their membership expires." +msgstr "Diese E-Mail wird an das Mitglied gesendet, wenn seine Mitgliedschaft abläuft." + +#: includes/email-templates.php:478 +msgid "Your membership at !!sitename!! will end soon" +msgstr "Ihre Mitgliedschaft bei !!sitename!! wird bald enden" + +#: includes/email-templates.php:479 +msgid "Membership Expiring" +msgstr "Mitgliedschaft läuft ab" + +#: includes/email-templates.php:480 +msgid "" +"

Thank you for your membership to !!sitename!!. This is just a reminder that your membership will end on !!enddate!!.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

Membership Level: !!membership_level_name!!

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

" +msgstr "" +"

Vielen Dank für Ihre Mitgliedschaft bei !!sitename!!. Dies ist nur eine Erinnerung daran, dass Ihre Mitgliedschaft am enden wird .

\n" +"\n" +"

Konto: !!display_name!! (!!user_email!!)

\n" +"

Mitgliedschafts-Paket: !!membership_level_name!!

\n" +"\n" +"

Loggen Sie sich hier in Ihr Mitgliedskonto ein: !!login_url!!

" + +#: includes/email-templates.php:486 +msgid "This email is sent to the member when their expiration date is approaching, at an interval based on the term of the membership." +msgstr "Diese E-Mail wird an das Mitglied gesendet, wenn sich sein Ablaufdatum nähert, in einem Intervall, das auf der Laufzeit der Mitgliedschaft basiert." + +#: includes/email-templates.php:489 +msgid "Your trial at !!sitename!! is ending soon" +msgstr "Ihre Testphase der Mitgliedschaft bei !!sitename!! endet bald" + +#: includes/email-templates.php:490 +msgid "Trial Ending" +msgstr "Testphase endet" + +#: includes/email-templates.php:491 +msgid "" +"

Thank you for your membership to !!sitename!!. Your trial period is ending on !!trial_end!!.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

Membership Level: !!membership_level_name!!

\n" +"\n" +"

Your fee will be changing from !!trial_amount!! to !!billing_amount!! every !!cycle_number!! !!cycle_period!!(s).

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

" +msgstr "" +"

Vielen Dank für Ihre Mitgliedschaft bei !!sitename!!. Ihre Testphase endet am !!trial_end!!.

\n" +"\n" +"

Konto: !!display_name!! (!!user_email!!)

\n" +"

Mitgliedschafts-Paket: !!membership_level_name!!

\n" +"\n" +"

Ihre Gebühr ändert sich von !!trial_amount!! zu !!billing_amount!! alle !!cycle_number!! !!cycle_period!!(*).

\n" +"\n" +"

Loggen Sie sich hier in Ihr Mitgliedskonto ein: !!login_url!!

" + +#: includes/email-templates.php:499 +msgid "This email is sent to the member when the trial portion of their membership level is approaching, at an interval based on the term of the trial." +msgstr "Diese E-Mail wird an das Mitglied gesendet, wenn sich der Testteil seiner Mitgliedschafts-Paket nähert, und zwar in einem Intervall, das auf der Laufzeit der Testphase basiert." + +#: includes/email-templates.php:508 +#: includes/email-templates.php:538 +msgid "Payment action required for your !!sitename!! membership" +msgstr "Zahlungsaktion erforderlich für Ihre !!sitename!! Mitgliedschaft" + +#: includes/email-templates.php:509 +#: includes/email-templates.php:539 +msgid "Payment Action Required" +msgstr "Zahlungsaktion erforderlich" + +#: includes/email-templates.php:510 +#: includes/email-templates.php:540 +msgid "" +"

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" +"\n" +"

Please complete the verification steps issued by your payment provider at the following link:

\n" +"

!!invoice_url!!

" +msgstr "" +"

Eine Kundenauthentifizierung ist erforderlich, um die Einrichtung Ihres Abonnements unter !!sitename!! abzuschließen.

\n" +"\n" +"

Bitte führen Sie die Verifizierungsschritte Ihres Zahlungsanbieters unter folgendem Link aus:

\n" +"

!!invoice_url!!

" + +#: includes/email-templates.php:514 +#: includes/email-templates.php:544 +msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." +msgstr "Diese E-Mail wird an den Benutzer gesendet, wenn für einen Versuch, eine Mitgliedschaft zu buchen, eine zusätzliche Kundenauthentifizierung erforderlich ist." + +#: includes/email-templates.php:517 +#: includes/email-templates.php:547 +msgid "Payment action required: membership for !!user_login!! at !!sitename!!" +msgstr "Zahlungsaktion erforderlich: Mitgliedschaft für !!user_login!! bei !!sitename!!" + +#: includes/email-templates.php:518 +#: includes/email-templates.php:548 +msgid "Payment Action Required (admin)" +msgstr "Zahlungsaktion erforderlich (admin)" + +#: includes/email-templates.php:519 +#: includes/email-templates.php:549 +msgid "" +"

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" +"

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" +"\n" +"

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" +"\n" +"

Please complete the verification steps issued by your payment provider at the following link:

\n" +"

!!invoice_url!!

" +msgstr "" +"

Eine Zahlung an !!sitename!! für !!user_login!! erfordert eine zusätzliche Kundenauthentifizierung, um abgeschlossen zu werden.

\n" +"

Unten ist eine Kopie der E-Mail, die wir an !!user_email!! um sie darüber zu informieren, dass sie ihre Zahlung abschließen müssen:

\n" +"\n" +"

Eine Kundenauthentifizierung ist erforderlich, um die Einrichtung Ihres Abonnements unter !!sitename!! abzuschließen.

\n" +"\n" +"

Bitte führen Sie die Verifizierungsschritte Ihres Zahlungsanbieters unter folgendem Link aus:

\n" +"

!!invoice_url!!

" + +#: includes/email-templates.php:526 +#: includes/email-templates.php:556 +msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." +msgstr "Diese E-Mail wird an den Site-Administrator gesendet, wenn für einen Versuch, eine Mitgliedschaft zu buchen, eine zusätzliche Kundenauthentifizierung erforderlich ist." + +#: includes/email.php:210 +#: includes/email.php:218 +#: includes/email.php:225 +msgid "Template Saved" +msgstr "Vorlage gespeichert" + +#: includes/email.php:376 +#: includes/email.php:396 +#: includes/email.php:403 +msgid "THIS IS A TEST EMAIL" +msgstr "DIES IST EINE TEST E-MAIL" + +#: includes/functions.php:2433 +#: includes/functions.php:2486 +msgid "Sign Up Now" +msgstr "Jetzt registrieren" + +#: includes/lib/SendWP/sendwp.php:149 +msgid "Security failed to check pmpro_sendwp_install_nonce" +msgstr "Sicherheit konnte pmpro_sendwp_install_nonce nicht überprüfen" + +#: includes/lib/SendWP/sendwp.php:150 +msgid "Ask an administrator for install_plugins capability" +msgstr "Fragen Sie einen Administrator nach install_plugins Funktion" + +#: includes/lib/SendWP/sendwp.php:151 +msgid "SendWP is already connected." +msgstr "SendWP ist bereits verbunden." + +#: includes/localization.php:34 +msgid "Hour" +msgstr "Stunde" + +#: includes/localization.php:47 +msgid "Hours" +msgstr "Stunden" + +#: includes/login.php:268 +#: includes/login.php:292 +msgid "Welcome" +msgstr "Willkommen" + +#: includes/login.php:270 +#: includes/login.php:294 +msgid "Lost Password" +msgstr "Passwort vergessen" + +#: includes/login.php:272 +#: includes/login.php:296 +#: includes/login.php:523 +#: includes/login.php:699 +msgid "Reset Password" +msgstr "Passwort zurücksetzen" + +#: includes/login.php:320 +#: includes/login.php:861 +msgid "There was a problem with your username or password." +msgstr "Es ist ein Problem mit Ihrem Benutzernamen oder Kennwort aufgetreten." + +#: includes/login.php:324 +msgid "Unknown username. Check again or try your email address." +msgstr "Unbekannter Benutzername. Überprüfen Sie dies, oder versuchen Sie es mit Ihrer E-Mail-Adresse." + +#: includes/login.php:328 +msgid "Empty username. Please enter your username and try again." +msgstr "Leerer Benutzername. Geben Sie Ihren Benutzernamen ein, und versuchen Sie es erneut." + +#: includes/login.php:332 +msgid "Empty password. Please enter your password and try again." +msgstr "Leeres Kennwort. Geben Sie Ihr Kennwort ein, und versuchen Sie es erneut." + +#: includes/login.php:336 +msgid "The password you entered for the user is incorrect. Please try again." +msgstr "Das Kennwort, das Sie für den Benutzer eingegeben haben, ist falsch. Bitte versuchen Sie es erneut." + +#: includes/login.php:340 +msgid "Check your email for the confirmation link." +msgstr "Bitte überprüfen Sie Ihren Posteingang. Sie haben eine E-Mail mit Bestätigungslink erhalten." + +#: includes/login.php:355 +msgid "You are now logged out." +msgstr "Sie haben sich erfolgreich abgemeldet." + +#: includes/login.php:359 +msgid "There was a problem logging you out." +msgstr "Es ist ein Problem beim Abmelden aufgetreten." + +#: includes/login.php:370 +msgid "Check your email for a link to reset your password." +msgstr "Überprüfen Sie Ihre E-Mail. Wir haben Ihnen einen Link gesendet, um Ihr Passwort zurückzusetzen." + +#: includes/login.php:373 +msgid "There was an unexpected error regarding your email. Please try again" +msgstr "Es ist ein unerwarteter Fehler in Bezug auf Ihre E-Mail aufgetreten. Bitte versuchen Sie es erneut" + +#: includes/login.php:383 +msgid "Your reset password key is invalid." +msgstr "Ihr Kennwortschlüssel zum Zurücksetzen ist ungültig." + +#: includes/login.php:387 +msgid "Your reset password key is expired, please request a new key from the password reset page." +msgstr "Ihr Kennwortschlüssel zum Zurücksetzen ist abgelaufen, bitte fordern Sie einen neuen Schlüssel von der Seite zum Zurücksetzen des Kennworts an." + +#: includes/login.php:399 +msgid "Your password has successfully been updated." +msgstr "Ihr Kennwort wurde erfolgreich aktualisiert." + +#: includes/login.php:403 +msgid "There was a problem updating your password" +msgstr "Beim Aktualisieren Ihres Kennworts ist ein Problem aufgetreten." + +#: includes/login.php:417 +msgid "There is no account with that username or email address." +msgstr "Es gibt kein Konto mit diesem Benutzernamen oder dieser E-Mail-Adresse." + +#: includes/login.php:421 +msgid "Please enter a valid username." +msgstr "Bitte geben Sie einen gültigen Benutzernamen ein." + +#: includes/login.php:425 +msgid "You've entered an invalid email address." +msgstr "Sie haben eine ungültige E-Mail-Adresse eingegeben." + +#: includes/login.php:429 +#: includes/profile.php:843 +#: includes/profile.php:855 +#: includes/profile.php:891 +msgid "New passwords do not match." +msgstr "Die neuen Passwörter stimmen nicht überein." + +#: includes/login.php:433 +#: includes/profile.php:839 +#: includes/profile.php:851 +#: includes/profile.php:887 +msgid "Please complete all fields." +msgstr "Bitte füllen Sie alle Felder aus." + +#: includes/login.php:437 +msgid "The email could not be sent. This site may not be correctly configured to send emails." +msgstr "Die E-Mail konnte nicht gesendet werden. Diese Website ist möglicherweise nicht ordnungsgemäß für das Senden von E-Mails konfiguriert." + +#: includes/login.php:503 +msgid "Password Reset" +msgstr "Passwort zurücksetzen" + +#: includes/login.php:508 +msgid "Please enter your username or email address. You will receive a link to create a new password via email." +msgstr "Bitte geben Sie Ihre E-Mail-Adresse hier ein. Sie bekommen eine E-Mail zugesandt, mit deren Hilfe Sie ein neues Passwort erstellen können." + +#: includes/login.php:533 +msgid "You are already signed in." +msgstr "Sie sind bereits angemeldet." + +#: includes/login.php:568 +msgid "Username or Email Address" +msgstr "Nutzername oder E-Mail Adresse" + +#: includes/login.php:573 +msgid "Get New Password" +msgstr "Neues Passwort anfordern" + +#: includes/login.php:688 +#: includes/profile.php:891 +#: includes/profile.php:903 +#: includes/profile.php:939 +msgid "New Password" +msgstr "Neues Passwort" + +#: includes/login.php:690 +#: includes/profile.php:894 +#: includes/scripts.php:86 +#: includes/profile.php:906 +#: includes/scripts.php:85 +#: includes/profile.php:942 +msgid "Strength Indicator" +msgstr "Passwortstärke-Anzeiger" + +#: includes/login.php:694 +#: includes/profile.php:898 +#: includes/profile.php:910 +#: includes/profile.php:946 +msgid "Confirm New Password" +msgstr "Neues Passwort bestätigen" + +#: includes/login.php:724 +msgid "Join Now" +msgstr "Registrieren" + +#: includes/login.php:726 +msgid "Register" +msgstr "Registrieren" + +#: includes/login.php:731 +msgid "Lost Password?" +msgstr "Passwort vergessen?" + +#: includes/login.php:809 +msgid "Invalid Request" +msgstr "Ungültige Anfrage" + +#. translators: a generated link to the user's account or profile page +#: includes/login.php:933 +msgid "Welcome, %s" +msgstr "Willkommen, %s" + +#: includes/login.php:967 +#: includes/menus.php:76 +#: includes/menus.php:79 +#: includes/menus.php:169 +#: shortcodes/pmpro_account.php:198 +msgid "Log Out" +msgstr "Abmelden" + +#: includes/menus.php:105 +msgid "Paid Memberships Pro Page" +msgstr "Paid Memberships Pro Seite" + +#: includes/menus.php:162 +#: includes/menus.php:171 +msgid "Page" +msgstr "Seite" + +#: includes/menus.php:231 +msgid "Log In Widget - PMPro" +msgstr "Log In Widget - PMPro" + +#: includes/notifications.php:25 +msgid "Dismiss this notice." +msgstr "Diesen Hinweis ausblenden." + +#: includes/pointers.php:31 +msgid "PMPro v2.0 Update" +msgstr "PMPro v2.0 Update" + +#: includes/pointers.php:32 +msgid "The Memberships menu has moved. Check out the new dashboard. The Membership Levels and Discount Codes pages can now be found under Settings." +msgstr "Das Mitglieds-Menü hat sich verschoben. Schauen Sie sich das neue Dashboard an. Die Mitgliedschaftspakete und Rabatt-Code-Seiten finden Sie jetzt unter Einstellungen ." + +#: includes/pointers.php:47 +msgid "Close" +msgstr "Schließen" + +#: includes/profile.php:58 +#: pages/invoice.php:43 +#: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 +msgid "Paid" +msgstr "Bezahlt" + +#: includes/profile.php:410 +#: includes/profile.php:428 +msgid "Member History" +msgstr "Verlauf der Mitgliedschaften" + +#: includes/profile.php:413 +#: includes/profile.php:431 +msgid "Order History" +msgstr "Bestellverlauf" + +#: includes/profile.php:414 +#: includes/profile.php:432 +msgid "Membership Levels History" +msgstr "Ihre bisherigen Mitgliedschaften" + +#: includes/profile.php:485 +#: includes/profile.php:488 +#: includes/profile.php:515 +msgid "No membership orders found." +msgstr "Keine Mitgliedschaftsbestellungen gefunden." + +#: includes/profile.php:537 +#: includes/profile.php:546 +#: includes/profile.php:582 +msgid "No membership history found." +msgstr "Keine Mitgliedschaftshistorie gefunden." + +#: includes/profile.php:644 +#: includes/profile.php:656 +#: includes/profile.php:692 +msgid "Log in to edit your profile." +msgstr "Melden Sie sich an, um Ihr Profil zu bearbeiten." + +#: includes/profile.php:679 +#: includes/profile.php:691 +#: includes/profile.php:727 +msgid "Please enter a display name." +msgstr "Geben Sie einen Anzeigenamen ein." + +#: includes/profile.php:689 +#: includes/profile.php:701 +#: includes/profile.php:737 +msgid "Please enter an email address." +msgstr "Bitte geben Sie eine E-Mail Adresse ein." + +#: includes/profile.php:691 +#: includes/profile.php:703 +#: includes/profile.php:739 +msgid "The email address isn’t correct." +msgstr "Die E-Mail Adresse ist nicht korrekt." + +#: includes/profile.php:695 +#: includes/profile.php:707 +#: includes/profile.php:743 +msgid "This email is already registered, please choose another one." +msgstr "Diese E-Mail-Adresse ist bereits registriert. Bitte wählen Sie eine andere aus." + +#: includes/profile.php:722 +#: includes/profile.php:734 +#: includes/profile.php:770 +msgid "Your profile has been updated." +msgstr "Ihr Profil wurde aktualisiert." + +#: includes/profile.php:749 +#: includes/profile.php:761 +#: includes/profile.php:797 +msgid "Display name publicly as" +msgstr "Anzeigename öffentlich als" + +#: includes/profile.php:762 +#: includes/profile.php:774 +#: includes/profile.php:810 +msgid "Site administrators must use the WordPress dashboard to update their email address." +msgstr "Site-Administratoren müssen das WordPress-Dashboard verwenden, um ihre E-Mail-Adresse zu aktualisieren." + +#: includes/profile.php:785 +#: includes/profile.php:797 +#: includes/profile.php:833 +msgid "Update Profile" +msgstr "Profil aktualisieren" + +#: includes/profile.php:841 +#: includes/profile.php:853 +#: includes/profile.php:889 +msgid "Please enter your current password." +msgstr "Bitte geben Sie Ihr derzeitiges Passwort ein." + +#: includes/profile.php:845 +#: includes/profile.php:857 +#: includes/profile.php:893 +msgid "Your current password is incorrect." +msgstr "Ihr derzeitiges Passwort ist nicht korrekt." + +#: includes/profile.php:856 +#: includes/profile.php:868 +#: includes/profile.php:904 +msgid "Your password has been updated." +msgstr "Ihr Passwort wurde aktualisiert." + +#: includes/profile.php:886 +#: includes/profile.php:898 +#: includes/profile.php:934 +msgid "Current Password" +msgstr "Aktuelles Passwort" + +#: includes/profile.php:888 +#: includes/profile.php:893 +#: includes/profile.php:900 +#: includes/profile.php:905 +#: includes/profile.php:912 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 +msgid "Required Field" +msgstr "Pflichtfeld" + +#: includes/recaptcha.php:114 +#: includes/recaptcha.php:115 +msgid "Please check the ReCAPTCHA box to confirm you are not a bot." +msgstr "Bitte aktivieren Sie das Kontrollkästchen reCAPTCHA, um zu bestätigen, dass Sie kein Bot sind." + +#: includes/updates/upgrade_1.php:10 +msgid "This content is for !!levels!! members only.
Login Join Now" +msgstr "Dieser Inhalt ist nur für !!levels!! Mitglieder.
Login Jetzt registrieren" + +#: includes/widgets.php:17 +msgid "Display a login form and optional \"Logged In\" member content." +msgstr "Anmeldeformular und den optionalen \"Logged In\" Inhalt des Mitglieds anzeigen." + +#: includes/widgets.php:19 +msgid "Log In - PMPro" +msgstr "Log In - PMPro" + +#: includes/widgets.php:104 +msgid "Display \"Welcome\" content when logged in." +msgstr "\"Willkommen\" Inhalte anzeigen, wenn Sie angemeldet sind." + +#: includes/widgets.php:109 +msgid "Display a \"Log Out\" link." +msgstr "\"Abmelden\" Link anzeigen." + +#: includes/widgets.php:114 +msgid "Display the \"Log In Widget\" menu." +msgstr "Das Menü \"Widget Log In“ anzeigen." + +#: includes/widgets.php:124 +msgid "Customize this menu per level using the Nav Menus Add On. Assign the menu under Appearance > Menus." +msgstr "Passen Sie dieses Menü pro Ebene mit dem Nav Menus Add Onan an. Weisen Sie das Menü unter Aussehen > Menüs zu." + +#: pages/billing.php:136 +#: pages/billing.php:138 +msgid "Your billing information cannot be updated at this time." +msgstr "Ihre Rechnungsinformationen können derzeit nicht aktualisiert werden." + +#: pages/billing.php:458 +#: shortcodes/pmpro_account.php:68 +#: pages/billing.php:475 +msgid "Your membership is not active. Renew now." +msgstr "Ihre Mitgliedschaft ist nicht aktiv. Jetzt erneuern." + +#: pages/billing.php:461 +#: shortcodes/pmpro_account.php:71 +#: pages/billing.php:478 +msgid "You do not have an active membership. Register here." +msgstr "Sie haben keine aktive Mitgliedschaft. Hier Registrieren." + +#: pages/billing.php:464 +#: shortcodes/pmpro_account.php:74 +#: pages/billing.php:481 +msgid "You do not have an active membership. Choose a membership level." +msgstr "Sie haben keine aktive Mitgliedschaft. Wählen Sie ein Mitgliedschafts-Paket aus." + +#: pages/checkout.php:85 +msgid "

A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.

We have not removed the user's membership level.

You can view details on this user here: %s

" +msgstr "

Das Braintree-Abonnement eines Mitglieds ist auf Ihrer Website abgelaufen. Dies geschieht normalerweise, wenn Sie Abrechnungslimits für Ihre Paket eingerichtet haben.

Wir haben das Mitgliedschafts-Paket des Benutzers nicht entfernt.

Details zu diesem Benutzer finden Sie hier: %s

" + +#: services/braintree-webhook.php:427 +#: services/braintree-webhook.php:428 +msgid "A member's Braintree subscription has expired at %s" +msgstr "Das Braintree-Abonnement eines Mitglieds ist bei %s abgelaufen" + +#: shortcodes/pmpro_account.php:249 +msgid "Refunded" +msgstr "Rückerstattet" + +#: blocks/account-invoices-section/block.js:22 +#: blocks/account-invoices-section/block.js:39 +#: js/blocks.build.js:119 +#: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 +msgid "Membership Account: Invoices" +msgstr "Mitgliedskonto: Rechnungen" + +#: blocks/account-invoices-section/block.js:23 +#: js/blocks.build.js:120 +msgid "Displays the member's invoices." +msgstr "Zeigt die Rechnungen des Mitglieds an." + +#: blocks/account-invoices-section/block.js:30 +#: blocks/account-links-section/block.js:30 +#: blocks/account-membership-section/block.js:30 +#: blocks/account-page/block.js:32 +#: blocks/account-profile-section/block.js:31 +#: blocks/billing-page/block.js:30 +#: blocks/cancel-page/block.js:30 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:36 +#: blocks/confirmation-page/block.js:30 +#: blocks/invoice-page/block.js:30 +#: blocks/levels-page/block.js:30 +#: blocks/login/block.js:35 +#: blocks/member-profile-edit/block.js:26 +#: blocks/membership/block.js:39 +#: js/blocks.build.js:127 +#: js/blocks.build.js:184 +#: js/blocks.build.js:241 +#: js/blocks.build.js:311 +#: js/blocks.build.js:500 +#: js/blocks.build.js:557 +#: js/blocks.build.js:685 +#: js/blocks.build.js:758 +#: js/blocks.build.js:981 +#: js/blocks.build.js:1144 +#: js/blocks.build.js:1214 +#: js/blocks.build.js:1271 +#: js/blocks.build.js:1335 +#: js/blocks.build.js:1496 +#: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 +msgid "pmpro" +msgstr "" + +#: blocks/account-links-section/block.js:22 +#: js/blocks.build.js:176 +msgid "Membership Account: Links" +msgstr "Mitgliedskonto: Links" + +#: blocks/account-links-section/block.js:23 +#: js/blocks.build.js:177 +msgid "Displays the member's member links. This block is only visible if other Add Ons or custom code have added links." +msgstr "Zeigt die Mitgliederlinks des Mitglieds an. Dieser Block ist nur sichtbar, wenn Sie andere Zusatzfunktionen oder benutzerdefinierter Code-Links hinzugefügt haben." + +#: blocks/account-links-section/block.js:39 +#: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 +msgid "Membership Account: Member Links" +msgstr "Mitgliedskonto: Mitgliederlinks" + +#: blocks/account-membership-section/block.js:22 +#: js/blocks.build.js:233 +msgid "Membership Account: Memberships" +msgstr "Mitgliedskonto: Mitgliedschaften" + +#: blocks/account-membership-section/block.js:23 +#: js/blocks.build.js:234 +msgid "Displays the member's membership information." +msgstr "Zeigt die Mitgliedschaftsinformationen des Mitglieds an." + +#: blocks/account-membership-section/block.js:39 +#: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 +msgid "Membership Account: My Memberships" +msgstr "Mitgliedskonto: Meine Mitgliedschaften" + +#: blocks/account-page/block.js:25 +#: js/blocks.build.js:304 +msgid "Displays the sections of the Membership Account page as selected below." +msgstr "Zeigt die Abschnitte der Seite Mitgliedskonto an, wie unten ausgewählt." + +#: blocks/account-page/inspector.js:30 +#: js/blocks.build.js:419 +msgid "Show 'My Memberships' Section" +msgstr "Abschnitt \"Meine Mitgliedschaften\" anzeigen" + +#: blocks/account-page/inspector.js:37 +#: js/blocks.build.js:427 +msgid "Show 'Profile' Section" +msgstr "Abschnitt \"Profil\" anzeigen" + +#: blocks/account-page/inspector.js:44 +#: js/blocks.build.js:435 +msgid "Show 'Invoices' Section" +msgstr "Abschnitt \"Rechnungen\" anzeigen" + +#: blocks/account-page/inspector.js:51 +#: js/blocks.build.js:443 +msgid "Show 'Member Links' Section" +msgstr "Abschnitt \"Mitgliederlinks\" anzeigen" + +#: blocks/account-profile-section/block.js:23 +#: blocks/account-profile-section/block.js:40 +#: js/blocks.build.js:492 +#: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 +msgid "Membership Account: Profile" +msgstr "Mitgliedskonto: Profil" + +#: blocks/account-profile-section/block.js:24 +#: js/blocks.build.js:493 +msgid "Displays the member's profile information." +msgstr "Zeigt die Profilinformationen des Mitglieds an." + +#: blocks/billing-page/block.js:22 +#: blocks/billing-page/block.js:39 +#: js/blocks.build.js:549 +#: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 +msgid "Membership Billing Page" +msgstr "Abrechnungsseite für Mitgliedschaften" + +#: blocks/billing-page/block.js:23 +#: js/blocks.build.js:550 +msgid "Displays the member's billing information and allows them to update the payment method." +msgstr "Zeigt die Rechnungsinformationen des Mitglieds an und ermöglicht es ihm, die Zahlungsmethode zu aktualisieren." + +#: blocks/cancel-page/block.js:23 +#: js/blocks.build.js:678 +msgid "Generates the Membership Cancel page." +msgstr "Generiert die Seite Mitgliedschaft kündigen." + +#: blocks/checkout-button/block.js:31 +#: js/blocks.build.js:750 +msgid "Membership Checkout Button" +msgstr "Schaltfläche \"Mitgliedschaft buchen“" + +#: blocks/checkout-button/block.js:32 +#: js/blocks.build.js:751 +msgid "Displays a button-styled link to Membership Checkout for the specified level." +msgstr "Zeigt einen Link im Schaltflächenstil zum Buchen der Mitgliedschaft für das angegebene Paket an." + +#: blocks/checkout-button/block.js:41 +#: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 +msgid "buy" +msgstr "kaufen" + +#: blocks/checkout-button/block.js:42 +#: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 +msgid "level" +msgstr "Paket" + +#: blocks/checkout-button/block.js:68 +#: blocks/checkout-button/inspector.js:31 +#: js/blocks.build.js:790 +#: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 +msgid "Button Text" +msgstr "Button Text" + +#: blocks/checkout-button/block.js:79 +#: blocks/checkout-button/inspector.js:48 +#: js/blocks.build.js:807 +#: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 +msgid "CSS Class" +msgstr "CSS Klasse" + +#: blocks/checkout-button/inspector.js:32 +#: js/blocks.build.js:892 +msgid "Text for checkout button" +msgstr "Text für die Schaltfläche „Buchen“" + +#: blocks/checkout-button/inspector.js:40 +#: js/blocks.build.js:901 +msgid "The level to link to for checkout button" +msgstr "Die Ebene, auf die für die Schaltfläche \"Buchen\" verlinkt werden soll" + +#: blocks/checkout-button/inspector.js:49 +#: js/blocks.build.js:911 +msgid "Additional styling for checkout button" +msgstr "Zusätzliches Styling für Buchungs-Schaltfläche" + +#: blocks/checkout-page/block.js:28 +#: blocks/checkout-page/block.js:52 +#: js/blocks.build.js:973 +#: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 +msgid "Membership Checkout Form" +msgstr "Buchungs-Formular für die Mitgliedschaft" + +#: blocks/checkout-page/block.js:29 +#: js/blocks.build.js:974 +msgid "Displays the Membership Checkout form." +msgstr "Zeigt das Formular Mitgliedschaft buchen an." + +#: blocks/checkout-page/inspector.js:32 +#: js/blocks.build.js:1087 +msgid "Choose a default level for Membership Checkout." +msgstr "Wählen Sie ein Standardpaket für die Buchung der Mitgliedschaft aus." + +#: blocks/confirmation-page/block.js:23 +#: js/blocks.build.js:1137 +msgid "Displays the member's Membership Confirmation after Membership Checkout." +msgstr "Zeigt die Mitgliedschaftsbestätigung des Mitglieds nach der Buchung der Mitgliedschaft an." + +#: blocks/invoice-page/block.js:23 +#: js/blocks.build.js:1207 +msgid "Displays the member's Membership Invoices." +msgstr "Zeigt die Mitgliedsrechnungen des Mitglieds an." + +#: blocks/invoice-page/block.js:39 +#: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 +msgid "Membership Invoices" +msgstr "Mitgliedsrechnungen" + +#: blocks/levels-page/block.js:22 +#: blocks/levels-page/block.js:39 +#: js/blocks.build.js:1263 +#: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 +msgid "Membership Levels List" +msgstr "Liste der Mitgliedschaftspakete" + +#: blocks/levels-page/block.js:23 +#: js/blocks.build.js:1264 +msgid "Displays a list of Membership Levels. To change the order, go to Memberships > Settings > Levels." +msgstr "Zeigt eine Liste der Mitgliedschaftspakete an. Um die Reihenfolge zu ändern, gehen Sie zu Mitgliedschaften > Einstellungen > Pakete." + +#: blocks/login/block.js:23 +#: blocks/login/block.js:47 +#: js/blocks.build.js:1327 +#: js/blocks.build.js:1344 +msgid "Log in Form" +msgstr "Anmeldeformular" + +#: blocks/login/block.js:24 +#: js/blocks.build.js:1328 +msgid "Displays a Log In Form for Paid Memberships Pro." +msgstr "Zeigt ein Anmeldeformular für Paid Memberships Pro an." + +#: blocks/login/block.js:36 +#: js/blocks.build.js:1335 +msgid "login" +msgstr "Login" + +#: blocks/login/block.js:37 +#: js/blocks.build.js:1335 +msgid "form" +msgstr "Formular" + +#: blocks/login/block.js:38 +#: js/blocks.build.js:1335 +#: blocks/login/block.js:34 +msgid "log in" +msgstr "Log In" + +#: blocks/login/inspector.js:29 +#: js/blocks.build.js:1424 +msgid "Display 'Welcome' content when logged in." +msgstr "\"Willkommen\"-Inhalte anzeigen, wenn Sie angemeldet sind." + +#: blocks/login/inspector.js:38 +#: js/blocks.build.js:1432 +msgid "Display the 'Log In Widget' menu." +msgstr "Menü „Widget Log In“ anzeigen." + +#: blocks/login/inspector.js:48 +#: js/blocks.build.js:1441 +msgid "Display a 'Log Out' link." +msgstr "Link \"Abmelden\" anzeigen." + +#: blocks/member-profile-edit/block.js:17 +#: blocks/member-profile-edit/block.js:35 +#: js/blocks.build.js:1488 +#: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 +msgid "Member Profile Edit" +msgstr "Mitgliedsprofil bearbeiten Seite" + +#: blocks/member-profile-edit/block.js:18 +#: js/blocks.build.js:1489 +msgid "Allow member profile editing." +msgstr "Bearbeiten von Mitgliederprofilen zulassen." + +#: blocks/member-profile-edit/block.js:27 +#: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 +msgid "member" +msgstr "Mitglied" + +#: blocks/member-profile-edit/block.js:28 +#: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 +msgid "profile" +msgstr "Profil" + +#: blocks/membership/block.js:31 +#: js/blocks.build.js:1552 +msgid "Require Membership Block" +msgstr "Mitgliedschaftsblock erforderlich" + +#: blocks/membership/block.js:32 +#: js/blocks.build.js:1553 +msgid "Control the visibility of nested blocks for members or non-members." +msgstr "Steuern Sie die Sichtbarkeit von verschachtelten Blöcken für Mitglieder oder Nichtmitglieder." + +#: adminpages/dashboard.php:147 +msgid "Customize Email Templates" +msgstr "Anpassen von E-Mail-Vorlagen" + +#: adminpages/discountcodes.php:871 +#: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 +msgid "View Orders" +msgstr "Bestellungen ansehen" + +#: adminpages/paymentsettings.php:115 +msgid "Learn more about Payment Gateway Settings and SSL." +msgstr "Erfahren Sie mehr über Payment Gateway-Einstellungen und SSL." + +#: classes/gateways/class.pmprogateway_stripe.php:360 +#: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:366 +#: classes/gateways/class.pmprogateway_stripe.php:456 +#: classes/gateways/class.pmprogateway_stripe.php:2234 +msgid "Connected with Legacy Keys" +msgstr "Verbunden mit Legacy-Schlüsseln" + +#: classes/gateways/class.pmprogateway_stripe.php:370 +#: classes/gateways/class.pmprogateway_stripe.php:460 +#: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:466 +#: classes/gateways/class.pmprogateway_stripe.php:2245 +msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." +msgstr "Sie können weiterhin die Legacy-API-Schlüssel verwenden oder ein Upgrade auf unsere neue Stripe Connect-Lösung durchführen." + +#: classes/gateways/class.pmprogateway_stripe.php:372 +#: classes/gateways/class.pmprogateway_stripe.php:462 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:468 +#: classes/gateways/class.pmprogateway_stripe.php:2253 +msgid "Read the documentation on switching to Stripe Connect »" +msgstr "Lesen Sie die Dokumentation zum Umstieg auf Stripe Connect »" + +#: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 +msgid "Custom Level Confirmation Message" +msgstr "Bestätigungsmeldung für benutzerdefinierte Ebene" + +#: classes/class-pmpro-site-health.php:62 +msgid "This debug information for your Paid Memberships Pro installation can assist you in getting support." +msgstr "Diese Debug-Informationen für Ihre Installation von Paid Memberships Pro können Ihnen dabei helfen, Support zu erhalten." + +#: classes/class-pmpro-site-health.php:109 +#: classes/class-pmpro-site-health.php:128 +msgid "No Levels Found" +msgstr "Keine Pakete gefunden" + +#. translators: %d: The total count of discount codes. +#: classes/class-pmpro-site-health.php:128 +#: classes/class-pmpro-site-health.php:147 +msgid "%d discount code" +msgid_plural "%d discount codes" +msgstr[0] "" +msgstr[1] "" + +#. translators: %d: The total count of orders. +#: classes/class-pmpro-site-health.php:144 +#: classes/class-pmpro-site-health.php:163 +msgid "%d order" +msgid_plural "%d orders" +msgstr[0] "" +msgstr[1] "" + +#. translators: %s: The gateway name that is not registered. +#: classes/class-pmpro-site-health.php:161 +#: classes/class-pmpro-site-health.php:180 +msgid "%s (gateway not registered)" +msgstr "%s (Gateway nicht registriert)" + +#: classes/class-pmpro-site-health.php:174 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 +msgid "Legacy Keys" +msgstr "Legacy-Schlüssel" + +#: classes/class-pmpro-site-health.php:178 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 +msgid "Stripe Connect" +msgstr "Stripe Connect" + +#. translators: %s: The environment name that is not registered. +#: classes/class-pmpro-site-health.php:202 +#: classes/class-pmpro-site-health.php:224 +msgid "%s (environment not registered)" +msgstr "%s (Umgebung nicht registriert)" + +#: classes/class-pmpro-site-health.php:226 +#: classes/class-pmpro-site-health.php:279 +msgid "Unable to verify" +msgstr "Überprüfung nicht möglich" + +#: classes/class-pmpro-site-health.php:302 +#: classes/class-pmpro-site-health.php:342 +msgid "missing" +msgstr "fehlt" + +#: classes/gateways/class.pmprogateway_stripe.php:533 +#: classes/gateways/class.pmprogateway_stripe.php:539 +#: classes/gateways/class.pmprogateway_stripe.php:329 +msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" +msgstr "Haben Sie Probleme beim Herstellen einer Verbindung über die Schaltfläche oben oder müssen Sie anderweitig Ihre eigenen API-Schlüssel verwenden?" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +#: classes/gateways/class.pmprogateway_stripe.php:540 +#: classes/gateways/class.pmprogateway_stripe.php:330 +msgid "Click here to use the legacy API settings." +msgstr "Klicken Sie hier, um die Legacy-API-Einstellungen zu verwenden." + +#: adminpages/license.php:37 +#: adminpages/license.php:49 +msgid "There was an issue validating your license key: %s" +msgstr "Bei der Validierung Ihres Lizenzschlüssels ist ein Problem aufgetreten" + +#: includes/email-templates.php:172 +msgid "" +"

There was a new member checkout at !!sitename!!.

\n" +"\n" +"

They have chosen to pay by check.

\n" +"\n" +"

Below are details about the new membership account and a receipt for the initial membership invoice.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

Membership Level: !!membership_level_name!!

\n" +"

Membership Fee: !!membership_cost!!

\n" +"!!membership_expiration!! !!discount_code!!\n" +"\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Billed: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

" +msgstr "" +"

Vielen Dank für Ihre Anmeldung bei !!sitename!!.

\n" +"\n" +"

Sie haben sich entschieden, als Scheck zu bezahlen.

\n" +"\n" +"

Unten finden Sie Details zum neuen Mitgliedskonto und eine Quittung für die ursprüngliche Mitgliedsrechnung.

\n" +"\n" +"

Konto: !!display_name!! (!!user_email!!)

\n" +"

Mitgliedschafts-Paket: !!membership_level_name!!

\n" +"

Mitgliedsbeitrag: !!membership_cost!!

\n" +"!!membership_expiration!! !!discount_code!!\n" +"\n" +"

\n" +"\tRechnungs-Nummer!!invoice_id!! am !!invoice_date!!
\n" +"\tInsgesamt abgerechnet: !!invoice_total!!

\n" +"\n" +"

Loggen Sie sich hier in Ihr Mitgliedskonto ein: !!login_url!!

" + +#: includes/license.php:112 +#: includes/license.php:117 +msgid "Missing key." +msgstr "Fehlender Schlüssel." + +#: shortcodes/pmpro_account.php:145 +msgctxt "A dash is shown when there is no expiration date." +msgid "—" +msgstr "" + +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 +#: includes/email.php:465 +#~ msgid "The new level is %s." +#~ msgstr "Das neue Paket ist %s." + +#~ msgid "The new level is %s. This membership is free" +#~ msgstr "Das neue Paket ist %s. Diese Mitgliedschaft ist kostenlos." + +#: adminpages/addons.php:242 +msgid "PMPro Standard" +msgstr "" + +#: adminpages/addons.php:246 +msgid "PMPro Builder" +msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:250 +msgid "Enable Spam Protection?" +msgstr "" + +#: adminpages/advancedsettings.php:256 +msgid "Yes - Enable Spam Protection" +msgstr "" + +#: adminpages/advancedsettings.php:258 +msgid "Block IPs from checkout if there are more than %d failures within %d minutes." +msgstr "" + +#: adminpages/advancedsettings.php:414 +msgid "Redirect all traffic from registration page to /subscription/?" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:529 +msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." +msgstr "" + +#: adminpages/dashboard.php:181 +#: adminpages/license.php:55 +msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." +msgstr "" + +#: adminpages/dashboard.php:188 +#: adminpages/license.php:76 +msgid "View Plans and Pricing" +msgstr "" + +#: adminpages/dashboard.php:191 +msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/discountcodes.php:729 +msgid "Save Code" +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/license.php:78 +msgid "Manage My Account" +msgstr "" + +#: adminpages/license.php:80 +msgid "Open Support Ticket" +msgstr "" + +#: adminpages/license.php:82 +msgid "Upgrade For Support" +msgstr "" + +#: adminpages/license.php:98 +msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." +msgstr "" + +#: adminpages/license.php:102 +msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." +msgstr "" + +#: adminpages/license.php:105 +msgid "View Support License Options »" +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:168 +msgid "Order %s deleted successfully." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: adminpages/paymentsettings.php:114 +msgid "Paid Memberships Pro - Payment Gateway Settings" +msgstr "" + +#: adminpages/paymentsettings.php:114 +msgid "Payment Gateway Settings" +msgstr "" + +#: adminpages/paymentsettings.php:115 +msgid "Paid Memberships Pro - SSL Settings" +msgstr "" + +#: adminpages/paymentsettings.php:115 +msgid "SSL" +msgstr "" + +#. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. +#: adminpages/paymentsettings.php:117 +msgid "Learn more about %s and %s." +msgstr "" + +#. translators: %s: A link to the docs for the pmpro_tax filter. +#: adminpages/paymentsettings.php:250 +msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." +msgstr "" + +#: adminpages/paymentsettings.php:295 +msgid "SSL Certificate" +msgstr "" + +#. translators: %s: Link to SSL Certificate docs. +#: adminpages/paymentsettings.php:297 +msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." +msgstr "" + +#: adminpages/reports/login.php:102 +msgctxt "Search form label" +msgid "Search" +msgstr "" + +#: adminpages/reports/login.php:102 +msgid "Users" +msgstr "" + +#: adminpages/reports/login.php:109 +msgctxt "Dropdown label, e.g. Show All Users" +msgid "Show" +msgstr "" + +#: adminpages/reports/sales.php:407 +msgid "Renewals" +msgstr "" + +#: adminpages/reports/sales.php:408 +msgid "New %s" +msgstr "" + +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 +msgid "Average: %s" +msgstr "" + +#: adminpages/reports/sales.php:527 +msgid "New:" +msgstr "" + +#: adminpages/reports/sales.php:530 +msgid "Renewals:" +msgstr "" + +#: adminpages/reports/sales.php:533 +msgid "Total:" +msgstr "" + +#: adminpages/reports/sales.php:546 +msgid "%s %s for %s" +msgstr "" + +#: adminpages/updates.php:23 +msgid "Loading..." +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-admin-activity-email.php:241 +msgid "Paid Memberships Pro Add Ons" +msgstr "" + +#: classes/class-pmpro-admin-activity-email.php:269 +msgid "It is important to keep all Add Ons up to date to take advantage of security improvements, bug fixes, and expanded features. Add On updates can be made via the WordPress Dashboard." +msgstr "" + +#: classes/class-pmpro-admin-activity-email.php:309 +msgid "Premium License Status: None" +msgstr "" + +#: classes/class-pmpro-admin-activity-email.php:325 +msgid "PMPro News and Updates" +msgstr "" + +#: classes/class-pmpro-members-list-table.php:584 +msgid " + " +msgstr "" + +#: classes/class-pmpro-members-list-table.php:589 +msgid " per " +msgstr "" + +#: classes/class-pmpro-site-health.php:65 +msgid "Cron Job Status" +msgstr "" + +#: classes/class-pmpro-site-health.php:73 +msgid "Payment Gateway Environment" +msgstr "" + +#: classes/class-pmpro-site-health.php:89 +msgid "Custom Templates" +msgstr "" + +#: classes/class-pmpro-site-health.php:93 +msgid "getfile.php Usage" +msgstr "" + +#: classes/class-pmpro-site-health.php:97 +msgid ".htaccess Cache Usage" +msgstr "" + +#: classes/class-pmpro-site-health.php:101 +msgid "Membership Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:283 +msgid "No template overrides" +msgstr "" + +#: classes/class-pmpro-site-health.php:289 +msgid "Empty override folder -- no template overrides" +msgstr "" + +#: classes/class-pmpro-site-health.php:382 +msgid "No Membership Pages Found" +msgstr "" + +#: classes/class-pmpro-site-health.php:399 +msgid "PMPRO_GETFILE_ENABLED is not set" +msgstr "" + +#: classes/class-pmpro-site-health.php:403 +msgid "PMPRO_GETFILE_ENABLED is off" +msgstr "" + +#: classes/class-pmpro-site-health.php:416 +#: classes/class-pmpro-site-health.php:450 +msgid "Unable to access .htaccess file" +msgstr "" + +#: classes/class-pmpro-site-health.php:420 +#: classes/class-pmpro-site-health.php:454 +msgid "Off - No .htaccess file" +msgstr "" + +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 +msgid "Off" +msgstr "" + +#: classes/class-pmpro-site-health.php:429 +msgid "On - .htaccess contains services/getfile.php usage" +msgstr "" + +#: classes/class-pmpro-site-health.php:460 +msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." +msgstr "" + +#: classes/class-pmpro-site-health.php:462 +msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-site-health.php:508 +msgid "Cron Limit" +msgstr "" + +#: classes/class-pmpro-site-health.php:509 +msgid "Default Membership Level" +msgstr "" + +#: classes/class-pmpro-site-health.php:510 +msgid "Use Sessions" +msgstr "" + +#: classes/class-pmpro-site-health.php:515 +msgid "Authorize.net Silent Post Debug Mode" +msgstr "" + +#: classes/class-pmpro-site-health.php:518 +msgid "Braintree Webhook Debug Mode" +msgstr "" + +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 +msgid "PayPal IPN Debug Mode" +msgstr "" + +#: classes/class-pmpro-site-health.php:530 +msgid "Stripe Webhook Delay" +msgstr "" + +#: classes/class-pmpro-site-health.php:531 +msgid "Stripe Webhook Debug Mode" +msgstr "" + +#: classes/class-pmpro-site-health.php:534 +msgid "2Checkout INS Debug Mode" +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/gateways/class.pmprogateway_paypal.php:189 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 +msgid "Require an extra confirmation after users return from PayPal." +msgstr "" + +#: classes/gateways/class.pmprogateway_paypal.php:190 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 +msgid "Skip the extra confirmation after users return from PayPal." +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:955 +msgid "Edit customer in Stripe" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1806 +msgid "Error processing setup intent." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1821 +msgid "Error processing payment intent." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 +msgid "Error retrieving payment method." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 +msgid "Error updating default payment method." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1879 +msgid "Error creating subscription for customer." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:2110 +msgid "Error updating payment method for subscription." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:2307 +msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:2309 +msgid "Learn More »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:2526 +msgid "Error updating customer record with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:2537 +msgid "Error creating customer record with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:2815 +msgid "Could not create price." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:2875 +msgid "Cannot find product for membership level." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:2881 +msgid "Cannot get price." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:3031 +msgid "Cannot reuse an old setup intent." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 +msgid "Error adding metadata to setup intent." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:3102 +msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:3167 +msgid "Remove" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/addons.php:243 +msgid "Important: This plugin requires a valid PMPro %s license key to update." +msgstr "" + +#: includes/addons.php:307 +msgid "You must have a valid PMPro %s License Key to update PMPro %s add ons. The following plugins will not be updated:" +msgstr "" + +#: includes/addons.php:329 +msgid "You must have a valid PMPro %s License Key to update PMPro %s add ons." +msgstr "" + +#: includes/addons.php:351 +msgid "You must enter a valid PMPro %s License Key under Settings > PMPro License to update this add on." +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/lib/SendWP/sendwp.php:90 +msgid "Something went wrong. SendWP was not installed correctly." +msgstr "" + +#: includes/lib/Twocheckout/Twocheckout/TwocheckoutCharge.php:15 +msgid "Click here if you are not redirected automatically." +msgstr "" + +#: includes/lib/Twocheckout/Twocheckout/TwocheckoutCharge.php:33 +msgid "Click here if the payment form does not open automatically." +msgstr "" + +#: includes/license.php:140 +msgid "Bad response code %s." +msgstr "" + +#: includes/login.php:652 +#: includes/login.php:661 +msgid "Your password reset link appears to be invalid. Please request a new link below." +msgstr "" + +#: includes/login.php:654 +#: includes/login.php:663 +msgid "Your password reset link has expired. Please request a new link below." +msgstr "" + +#: includes/login.php:1000 +msgid "Missing request ID." +msgstr "" + +#: includes/login.php:1004 +msgid "Missing confirm key." +msgstr "" + +#: includes/metaboxes.php:19 +msgid "Select:" +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: includes/spam.php:187 +msgid "Suspicious activity detected. Try again in a few minutes." +msgstr "" + +#: includes/updates.php:150 +msgid "You currently have the Better Login Reports Add On activated. This functionality has now been merged into Paid Memberships Pro. %s" +msgstr "" + +#: includes/updates.php:150 +msgid "Please deactivate and remove this plugin." +msgstr "" + +#: pages/levels.php:82 +msgid "Return to Your Account" +msgstr "" + +#: pages/levels.php:84 +msgid "Return to Home" +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/login/inspector.js:39 +msgid "Assign the menu under Appearance > Menus." +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-el_GR.mo b/languages/paid-memberships-pro-el_GR.mo index 21ef095f9..c0d39c131 100644 Binary files a/languages/paid-memberships-pro-el_GR.mo and b/languages/paid-memberships-pro-el_GR.mo differ diff --git a/languages/paid-memberships-pro-el_GR.po b/languages/paid-memberships-pro-el_GR.po index e2936e404..2dc352e4b 100644 --- a/languages/paid-memberships-pro-el_GR.po +++ b/languages/paid-memberships-pro-el_GR.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:20:24+00:00\n" +"POT-Creation-Date: 2022-05-05T20:37:12+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -93,6 +93,7 @@ msgstr "Ελέγξτε πάλι" #: adminpages/orders.php:1014 #: includes/metaboxes.php:19 #: adminpages/orders.php:1015 +#: adminpages/orders.php:1103 msgid "All" msgstr "Όλα" @@ -136,6 +137,7 @@ msgstr "Τύπος" #: adminpages/membershiplevels.php:296 #: adminpages/membershiplevels.php:298 #: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "Περιγραφή" @@ -218,6 +220,11 @@ msgstr "Ενεργοποίηση %s" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "Διαγραφή" @@ -287,6 +294,18 @@ msgstr "WordPress.org" #: adminpages/orders.php:913 #: adminpages/orders.php:1537 #: adminpages/orders.php:1546 +#: adminpages/orders.php:704 +#: adminpages/orders.php:996 +#: adminpages/orders.php:1689 +#: adminpages/orders.php:1698 +#: classes/class.pmproemail.php:261 +#: classes/class.pmproemail.php:327 +#: includes/profile.php:167 +#: includes/profile.php:483 +#: includes/profile.php:484 +#: includes/profile.php:556 +#: includes/profile.php:557 +#: includes/profile.php:558 msgid "N/A" msgstr "N/A" @@ -482,6 +501,11 @@ msgstr "Τρόποι Πληρωμής & SSL" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "Email" @@ -497,6 +521,7 @@ msgstr "Advanced" #: adminpages/advancedsettings.php:42 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "Οι ρυθμίσεις σας ανανεώθηκαν." @@ -517,6 +542,7 @@ msgstr "Παρακαλώ συνδεθείτε για να δ #: adminpages/advancedsettings.php:116 #: includes/updates/upgrade_1.php:13 #: adminpages/advancedsettings.php:118 +#: adminpages/advancedsettings.php:126 msgid "This content is for members only. Visit the site and log in/register to read." msgstr "Το περιεχόμενο είναι διαθέσιμο μόνο για συνδρομητές. Επισκεφθείτε τον ιστότοπο, συνδεθείτε/εγγραφείτε για να το δείτε." @@ -535,6 +561,7 @@ msgstr "Το περιεχόμενο είναι διαθέσιμο μόνο γι #: adminpages/advancedsettings.php:132 #: includes/adminpages.php:73 #: adminpages/advancedsettings.php:134 +#: adminpages/advancedsettings.php:142 msgid "Advanced Settings" msgstr "Advanced Ρυθμίσεις" @@ -543,6 +570,7 @@ msgstr "Advanced Ρυθμίσεις" #: adminpages/advancedsettings.php:92 #: adminpages/advancedsettings.php:164 #: adminpages/advancedsettings.php:166 +#: adminpages/advancedsettings.php:173 msgid "Message for Logged-in Non-members" msgstr "Μήνυμα για Logged-in Non-members" @@ -551,6 +579,7 @@ msgstr "Μήνυμα για Logged-in Non-members" #: adminpages/advancedsettings.php:96 #: adminpages/advancedsettings.php:168 #: adminpages/advancedsettings.php:170 +#: adminpages/advancedsettings.php:177 msgid "This message replaces the post content for non-members. Available variables" msgstr "Αυτό το μήνυμα αντικαθιστά το περιεχόμενο για τους μη συνδρομητές. Διαθέσιμες μεταβλητές" @@ -559,6 +588,7 @@ msgstr "Αυτό το μήνυμα αντικαθιστά το περιεχόμ #: adminpages/advancedsettings.php:101 #: adminpages/advancedsettings.php:173 #: adminpages/advancedsettings.php:175 +#: adminpages/advancedsettings.php:182 msgid "Message for Logged-out Users" msgstr "Μήνυμα για μη συνδεδεμένους συνδρομητές" @@ -567,6 +597,7 @@ msgstr "Μήνυμα για μη συνδεδεμένους συνδρομητέ #: adminpages/advancedsettings.php:105 #: adminpages/advancedsettings.php:177 #: adminpages/advancedsettings.php:179 +#: adminpages/advancedsettings.php:186 msgid "This message replaces the post content for logged-out visitors." msgstr "Αυτό το μήνυμα αντικαθιστά το περιεχόμενο για τους αποσυνδεδεμένους επισκέπτες. " @@ -575,6 +606,7 @@ msgstr "Αυτό το μήνυμα αντικαθιστά το περιεχόμ #: adminpages/advancedsettings.php:110 #: adminpages/advancedsettings.php:182 #: adminpages/advancedsettings.php:184 +#: adminpages/advancedsettings.php:191 msgid "Message for RSS Feed" msgstr "Μήνυμα για RSS Feed" @@ -583,24 +615,28 @@ msgstr "Μήνυμα για RSS Feed" #: adminpages/advancedsettings.php:114 #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "This message replaces the post content in RSS feeds." msgstr "Αυτό το μήνυμα αντικαθιστά το περιεχόμενο για τα RSS feeds." #: adminpages/advancedsettings.php:122 #: adminpages/advancedsettings.php:199 #: adminpages/advancedsettings.php:201 +#: adminpages/advancedsettings.php:208 msgid "Filter searches and archives?" msgstr "" #: adminpages/advancedsettings.php:126 #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:205 +#: adminpages/advancedsettings.php:212 msgid "No - Non-members will see restricted posts/pages in searches and archives." msgstr "Όχι - Οι μη συνδρομητές θα βλέπουν περιορισμένα posts/σελίδες στην αναζήτηση και στο αρχείο." #: adminpages/advancedsettings.php:127 #: adminpages/advancedsettings.php:204 #: adminpages/advancedsettings.php:206 +#: adminpages/advancedsettings.php:213 msgid "Yes - Only members will see restricted posts/pages in searches and archives." msgstr "Ναι - Μόνο οι συνδρομητές θα βλέπουν περιορισμένα posts/σελίδες στην αναζήτηση και στο αρχείο." @@ -609,6 +645,7 @@ msgstr "Ναι - Μόνο οι συνδρομητές θα βλέπουν περ #: adminpages/advancedsettings.php:120 #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:212 +#: adminpages/advancedsettings.php:219 msgid "Show Excerpts to Non-Members?" msgstr "Προβολή αποσπασμάτων σε μη συνδρομητές; " @@ -617,6 +654,7 @@ msgstr "Προβολή αποσπασμάτων σε μη συνδρομητές #: adminpages/advancedsettings.php:124 #: adminpages/advancedsettings.php:214 #: adminpages/advancedsettings.php:216 +#: adminpages/advancedsettings.php:223 msgid "No - Hide excerpts." msgstr "Όχι - Απόκρυψη αποσπασμάτων." @@ -625,12 +663,14 @@ msgstr "Όχι - Απόκρυψη αποσπασμάτων." #: adminpages/advancedsettings.php:125 #: adminpages/advancedsettings.php:215 #: adminpages/advancedsettings.php:217 +#: adminpages/advancedsettings.php:224 msgid "Yes - Show excerpts." msgstr "Ναι - Προβολή αποσπασμάτων." #: adminpages/advancedsettings.php:144 #: adminpages/advancedsettings.php:333 #: adminpages/advancedsettings.php:348 +#: adminpages/advancedsettings.php:355 msgid "Hide Ads From Members?" msgstr "Απόκρυψη Διαφημίσεων από συνδρομητές; " @@ -697,6 +737,16 @@ msgstr "Απόκρυψη Διαφημίσεων από συνδρομητές; " #: classes/gateways/class.pmprogateway_stripe.php:404 #: classes/gateways/class.pmprogateway_stripe.php:418 #: adminpages/paymentsettings.php:279 +#: adminpages/advancedsettings.php:254 +#: adminpages/advancedsettings.php:267 +#: adminpages/advancedsettings.php:359 +#: adminpages/advancedsettings.php:418 +#: adminpages/advancedsettings.php:526 +#: adminpages/membershiplevels.php:939 +#: adminpages/paymentsettings.php:277 +#: classes/gateways/class.pmprogateway_stripe.php:430 +#: classes/gateways/class.pmprogateway_stripe.php:444 +#: includes/profile.php:78 msgid "No" msgstr "Όχι" @@ -705,6 +755,7 @@ msgstr "Όχι" #: adminpages/advancedsettings.php:136 #: adminpages/advancedsettings.php:338 #: adminpages/advancedsettings.php:353 +#: adminpages/advancedsettings.php:360 msgid "Hide Ads From All Members" msgstr "Απόκρυψη Διαφημίσεων από όλους τους συνδρομητές; " @@ -713,6 +764,7 @@ msgstr "Απόκρυψη Διαφημίσεων από όλους τους συ #: adminpages/advancedsettings.php:137 #: adminpages/advancedsettings.php:339 #: adminpages/advancedsettings.php:354 +#: adminpages/advancedsettings.php:361 msgid "Hide Ads From Certain Members" msgstr "Απόκρυψη Διαφημίσεων από ορισμένους συνδρομητές; " @@ -727,6 +779,7 @@ msgstr "Οι διαφημίσεις από τα παρακάτω plugins θα α #: adminpages/advancedsettings.php:145 #: adminpages/advancedsettings.php:346 #: adminpages/advancedsettings.php:361 +#: adminpages/advancedsettings.php:368 msgid "To hide ads in your template code, use code like the following" msgstr "Για να αποκρύψετε διαφημίσεις, χρησιμοποιήστε κώδικα όπως ο παρακάτω" @@ -735,6 +788,7 @@ msgstr "Για να αποκρύψετε διαφημίσεις, χρησιμο #: adminpages/advancedsettings.php:156 #: adminpages/advancedsettings.php:355 #: adminpages/advancedsettings.php:370 +#: adminpages/advancedsettings.php:377 msgid "Choose Levels to Hide Ads From" msgstr "Επιλέξτε Επίπεδο από το οποίο θέλετε να αποκρύψετε Διαφημίσεις" @@ -753,6 +807,7 @@ msgstr "Ανακατεύθυνση από την σελίδα της εγγρα #: adminpages/advancedsettings.php:390 #: adminpages/advancedsettings.php:392 #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "multisite only" msgstr "multisite μόνο" @@ -808,6 +863,12 @@ msgstr "multisite μόνο" #: classes/gateways/class.pmprogateway_stripe.php:406 #: classes/gateways/class.pmprogateway_stripe.php:420 #: adminpages/paymentsettings.php:280 +#: adminpages/advancedsettings.php:419 +#: adminpages/membershiplevels.php:934 +#: adminpages/paymentsettings.php:278 +#: classes/gateways/class.pmprogateway_stripe.php:432 +#: classes/gateways/class.pmprogateway_stripe.php:446 +#: includes/profile.php:79 msgid "Yes" msgstr "Ναι" @@ -816,6 +877,7 @@ msgstr "Ναι" #: adminpages/advancedsettings.php:202 #: adminpages/advancedsettings.php:241 #: adminpages/advancedsettings.php:256 +#: adminpages/advancedsettings.php:263 msgid "Use reCAPTCHA?" msgstr "Χρήση reCAPTCHA?" @@ -831,6 +893,7 @@ msgstr "Ναι - Δωρεάν Συνδρομή μόνο." #: adminpages/advancedsettings.php:208 #: adminpages/advancedsettings.php:247 #: adminpages/advancedsettings.php:262 +#: adminpages/advancedsettings.php:269 msgid "Yes - All memberships." msgstr "Ναι - Όλες οι συνδρομές." @@ -839,6 +902,7 @@ msgstr "Ναι - Όλες οι συνδρομές." #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "A free reCAPTCHA key is required." msgstr "Απαιτείται δωρεάν reCAPTCHA κλειδί. " @@ -847,6 +911,7 @@ msgstr "Απαιτείται δωρεάν reCAPTCHA κλειδί. " #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "Click here to signup for reCAPTCHA" msgstr "Πατήστε εδώ για να εγγραφείτε για reCAPTCHA" @@ -904,6 +969,9 @@ msgstr "επιλεγμένο" #: adminpages/pagesettings.php:508 #: adminpages/pagesettings.php:512 #: adminpages/paymentsettings.php:316 +#: adminpages/advancedsettings.php:574 +#: adminpages/pagesettings.php:511 +#: adminpages/paymentsettings.php:314 msgid "Save Settings" msgstr "Αποθήκευση ρυθμίσεων" @@ -989,6 +1057,7 @@ msgstr "Σφάλμα κατά την διαγραφή του κωδικού. Π #: adminpages/discountcodes.php:796 #: adminpages/discountcodes.php:354 #: adminpages/discountcodes.php:798 +#: adminpages/discountcodes.php:799 msgid "Code not found." msgstr "Ο Κωδικός δεν βρέθηκε." @@ -1014,6 +1083,7 @@ msgstr "Επεξεργασία Εκτωτικού Κωδικού" #: adminpages/discountcodes.php:735 #: adminpages/discountcodes.php:377 #: adminpages/discountcodes.php:737 +#: adminpages/discountcodes.php:738 msgid "Add New Discount Code" msgstr "Προσθέστε νέο Εκπτωτικό Κωδικό" @@ -1066,6 +1136,8 @@ msgstr "Προσθέστε νέο Εκπτωτικό Κωδικό" #: adminpages/reports/login.php:182 #: adminpages/templates/orders-email.php:49 #: adminpages/templates/orders-print.php:78 +#: adminpages/membershiplevels.php:345 +#: adminpages/membershiplevels.php:805 msgid "ID" msgstr "ID" @@ -1117,6 +1189,9 @@ msgstr "Αυτό θα δημιουργηθεί όταν το αποθηκεύσ #: adminpages/dashboard.php:292 #: adminpages/orders.php:429 #: adminpages/orders.php:1333 +#: adminpages/discountcodes.php:787 +#: adminpages/orders.php:475 +#: adminpages/orders.php:1426 msgid "Code" msgstr "Κωδικός" @@ -1131,6 +1206,7 @@ msgstr "Κωδικός" #: adminpages/discountcodes.php:489 #: includes/profile.php:501 #: includes/profile.php:497 +#: includes/profile.php:537 msgid "Start Date" msgstr "Ημερομηνία έναρξης" @@ -1172,6 +1248,8 @@ msgstr "Ημερομηνία έναρξης" #: classes/gateways/class.pmprogateway_stripe.php:1326 #: classes/gateways/class.pmprogateway_stripe.php:785 #: pages/billing.php:381 +#: classes/gateways/class.pmprogateway_braintree.php:486 +#: classes/gateways/class.pmprogateway_stripe.php:893 msgid "Expiration Date" msgstr "Ημερομηνία λήξης" @@ -1188,6 +1266,7 @@ msgstr "Ημερομηνία λήξης" #: adminpages/discountcodes.php:787 #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:789 +#: adminpages/discountcodes.php:790 msgid "Uses" msgstr "Χρήσεις" @@ -1224,6 +1303,7 @@ msgstr "Σε ποιο επίπεδο θα εφαρμοστεί ο Κωδικός #: adminpages/discountcodes.php:574 #: adminpages/membershiplevels.php:401 #: adminpages/discountcodes.php:576 +#: adminpages/membershiplevels.php:399 msgid "Initial Payment" msgstr "Αρχική Πληρωμή" @@ -1240,6 +1320,7 @@ msgstr "Αρχική Πληρωμή" #: adminpages/discountcodes.php:585 #: adminpages/membershiplevels.php:412 #: adminpages/discountcodes.php:587 +#: adminpages/membershiplevels.php:410 msgid "The initial amount collected at registration." msgstr "Το αρχικό ποσό πληρωμής, πληρώθηκε κατά την εγγραφή." @@ -1256,6 +1337,7 @@ msgstr "Το αρχικό ποσό πληρωμής, πληρώθηκε κατά #: adminpages/discountcodes.php:590 #: adminpages/membershiplevels.php:417 #: adminpages/discountcodes.php:592 +#: adminpages/membershiplevels.php:415 msgid "Recurring Subscription" msgstr "Επαναλαμβανόμενες Συνδρομές" @@ -1272,6 +1354,7 @@ msgstr "Επαναλαμβανόμενες Συνδρομές" #: adminpages/discountcodes.php:591 #: adminpages/membershiplevels.php:418 #: adminpages/discountcodes.php:593 +#: adminpages/membershiplevels.php:416 msgid "Check if this level has a recurring subscription payment." msgstr "Επιλέξτε εάν αυτό το επίπεδο έχει επαναλμβανόμενες συνδρομές." @@ -1287,6 +1370,7 @@ msgstr "Επιλέξτε εάν αυτό το επίπεδο έχει επανα #: adminpages/discountcodes.php:595 #: adminpages/membershiplevels.php:422 #: adminpages/discountcodes.php:597 +#: adminpages/membershiplevels.php:420 msgid "Billing Amount" msgstr "Ποσό Χρέωσης" @@ -1328,6 +1412,10 @@ msgstr "Ποσό Χρέωσης" #: classes/gateways/class.pmprogateway_stripe.php:2637 #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2635 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3092 msgid "Day(s)" msgstr "Ημέρες(s)" @@ -1369,6 +1457,10 @@ msgstr "Ημέρες(s)" #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2641 #: classes/gateways/class.pmprogateway_stripe.php:2637 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3094 msgid "Month(s)" msgstr "Μήνες(s)" @@ -1410,6 +1502,10 @@ msgstr "Μήνες(s)" #: classes/gateways/class.pmprogateway_stripe.php:2638 #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2636 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3093 msgid "Week(s)" msgstr "Εβδομάδες(s)" @@ -1451,6 +1547,10 @@ msgstr "Εβδομάδες(s)" #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2642 #: classes/gateways/class.pmprogateway_stripe.php:2638 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3095 msgid "Year(s)" msgstr "Χρόνια(s)" @@ -1467,6 +1567,7 @@ msgstr "Χρόνια(s)" #: adminpages/discountcodes.php:618 #: adminpages/membershiplevels.php:446 #: adminpages/discountcodes.php:620 +#: adminpages/membershiplevels.php:444 msgid "The amount to be billed one cycle after the initial payment." msgstr "Το ποσό το οποίο θα χρεωθεί έναν κύκλο μετά την αρχική πληρωμή." @@ -1483,6 +1584,7 @@ msgstr "Το ποσό το οποίο θα χρεωθεί έναν κύκλο μ #: adminpages/discountcodes.php:628 #: adminpages/membershiplevels.php:465 #: adminpages/discountcodes.php:630 +#: adminpages/membershiplevels.php:463 msgid "Billing Cycle Limit" msgstr "Όριο κύκλου πληρωμής" @@ -1499,6 +1601,7 @@ msgstr "Όριο κύκλου πληρωμής" #: adminpages/discountcodes.php:632 #: adminpages/membershiplevels.php:469 #: adminpages/discountcodes.php:634 +#: adminpages/membershiplevels.php:467 msgid "The total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "Ο συνολικός αριθμός των επαναλμβανόμενων κύκλων πληρωμής για αυτό το επίπεδο, συμπερηλαμβανομένου και την δοκιμαστική περίοδο (εάν εφαρμόζετε) αλλά δεν συμπεριλαμβάνεται στην αρχική πληρωμή. Συμπληρώστε μηδέν εάν αυτή η συνδρομή είναι αορίστου χρόνου. " @@ -1515,6 +1618,8 @@ msgstr "Ο συνολικός αριθμός των επανα #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "Custom Δοκιμαστική Περίοδος" @@ -1532,6 +1637,8 @@ msgstr "Custom Δοκιμαστική Περίοδος" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "Επιλέξτε για να προσθέσετε μία custom δοκιμαστική περίοδο." @@ -1549,6 +1656,7 @@ msgstr "Επιλέξτε για να προσθέσετε μία custom δοκι #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "Ποσό πληρωμής δοκιμαστικής περιόδου" @@ -1566,6 +1674,7 @@ msgstr "Ποσό πληρωμής δοκιμαστικής περιόδου" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "για τον πρώτο" @@ -1583,6 +1692,7 @@ msgstr "για τον πρώτο" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "πληρωμές συνδρομής" @@ -1601,6 +1711,7 @@ msgstr "πληρωμές συνδρομής" #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "Λήξη Συνδρομής" @@ -1618,6 +1729,7 @@ msgstr "Λήξη Συνδρομής" #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "Επιλέξτε για να ορίσετε πότε λήξει η συνδρομή." @@ -1637,6 +1749,8 @@ msgstr "Επιλέξτε για να ορίσετε πότε λήξει η συ #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "Λήξει σε" @@ -1654,6 +1768,8 @@ msgstr "Λήξει σε" #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "Συμπληρώστε την διάρκεια της συνδρομης. Λάβετε υπ'όψιν σας ότι μελλοντικές πληρωμές (επαναλαμβανόμενες συνδρομές, εάν υπάρχουν) θα ακυρωθού όταν θα λήξει η συνδρομή." @@ -1664,6 +1780,7 @@ msgstr "Συμπληρώστε την διάρκεια της συνδρομης #: adminpages/discountcodes.php:557 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "Εκτπωτικοί Κωδικοί Συνδρομής" @@ -1674,6 +1791,7 @@ msgstr "Εκτπωτικοί Κωδικοί Συνδρομής" #: adminpages/discountcodes.php:567 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "Αναζήτηση Εκπτωτικών Κωδικών" @@ -1687,6 +1805,7 @@ msgstr "Αναζήτηση Εκπτωτικών Κωδικών" #: adminpages/reports/login.php:83 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "Αναζήτηση" @@ -1697,6 +1816,7 @@ msgstr "Αναζήτηση" #: adminpages/discountcodes.php:588 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "Αρχή" @@ -1727,6 +1847,8 @@ msgstr "Αρχή" #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "Λήγει" @@ -1738,6 +1860,7 @@ msgstr "Λήγει" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "Επίπεδα" @@ -1783,6 +1906,7 @@ msgstr "Οι εκπτωτικοί κωδικοί σας επιτεπουν να #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "edit" @@ -1843,6 +1967,7 @@ msgstr "Email Settings" #: adminpages/emailsettings.php:70 #: adminpages/emailsettings.php:61 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "Από προεπιλογή, τα emails που δημιουργούνται αυτόματα στέλνονται από το wordpress@yourdomain.com. Μπορείτε να αλλάξετε αυτήν την διεύθυνση χρησιμοποιόντας το παρακάτω πεδίο." @@ -1854,22 +1979,26 @@ msgstr "To modify the appearance of system generated emails, add the files e #: adminpages/emailsettings.php:78 #: adminpages/emailsettings.php:69 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "From Email" #: adminpages/emailsettings.php:86 #: adminpages/emailsettings.php:77 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "From Name" #: adminpages/emailsettings.php:94 #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "Only Filter PMPro Emails?" #: adminpages/emailsettings.php:98 #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 #, php-format msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "Εάν δεν έχει επιλεγεί, όλα τα emails από \"WordPress <%s>\" θα φιλτράρονται σύμφωνα με τις παραπάνω ρυθμίσεις." @@ -2039,6 +2168,8 @@ msgstr "Προσθήκη Νέου Επιπέδου Συνδρομής" #: adminpages/reports/history.php:184 #: adminpages/reports/login.php:181 #: adminpages/reports/login.php:184 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 msgid "Name" msgstr "Όνομα" @@ -2046,6 +2177,7 @@ msgstr "Όνομα" #: adminpages/membershiplevels.php:314 #: adminpages/membershiplevels.php:316 #: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "Μήνυμα Επιβεβαιώσης" @@ -2059,6 +2191,8 @@ msgstr "Μήνυμα Επιβεβαιώσης" #: adminpages/membershiplevels.php:638 #: adminpages/membershiplevels.php:397 #: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "Λεπτομέριες Πληρωμής" @@ -2084,6 +2218,8 @@ msgstr "Λεπτομέριες Πληρωμής" #: classes/gateways/class.pmprogateway_stripe.php:2696 #: classes/gateways/class.pmprogateway_stripe.php:2698 #: classes/gateways/class.pmprogateway_stripe.php:2694 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "το" @@ -2102,6 +2238,7 @@ msgstr "Η ενσωμάτωση της Stripe ως προς το παρών υπ #: adminpages/discountcodes.php:620 #: adminpages/membershiplevels.php:448 #: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:446 msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." msgstr "Η ενσωμάτωση της Braintree ως προς το παρών υποστηρίζει περιόδους πληρωμής \"Month\" ή \"Year\"." @@ -2119,6 +2256,7 @@ msgstr "Η ενσωμάτωση της Payflow ως προς το παρών υ #: adminpages/membershiplevels.php:393 #: adminpages/membershiplevels.php:396 #: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." msgstr "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." @@ -2141,6 +2279,8 @@ msgstr "After saving this level, make note of the ID and create a \"Plan\" in yo #: adminpages/membershiplevels.php:454 #: adminpages/membershiplevels.php:459 #: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 msgid "Note" msgstr "Σημείωση" @@ -2160,6 +2300,7 @@ msgstr "You will need to create a \"Plan\" in your Braintree dashboard with the #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "Stripe integration currently does not support billing limits. You can still set an expiration date below." @@ -2171,6 +2312,8 @@ msgstr "Stripe integration currently does not support billing limits. You can st #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." @@ -2183,6 +2326,7 @@ msgstr "2Checkout integration does not support custom trials. You can do one per #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "Stripe integration currently does not support trial amounts greater than $0." @@ -2195,6 +2339,7 @@ msgstr "Stripe integration currently does not support trial amounts greater than #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "Braintree integration currently does not support trial amounts greater than $0." @@ -2207,6 +2352,7 @@ msgstr "Braintree integration currently does not support trial amounts greater t #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "Payflow integration currently does not support trial amounts greater than $0." @@ -2221,6 +2367,7 @@ msgstr "Payflow integration currently does not support trial amounts greater tha #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "Άλλες Επιλογές" @@ -2256,6 +2403,8 @@ msgstr "Επιλέξτε για να κρύψετε αυτό το επίπεδο #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "Επιλογές Περιεχομένου" @@ -2267,12 +2416,14 @@ msgstr "Επιλογές Περιεχομένου" #: adminpages/membershiplevels.php:497 #: adminpages/membershiplevels.php:500 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "Κατηγορίες" #: adminpages/membershiplevels.php:517 #: adminpages/membershiplevels.php:516 #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "Αποθηκεύστε το Επίπεδο" @@ -2311,6 +2462,11 @@ msgstr "Αποθηκεύστε το Επίπεδο" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "Ακύρωση" @@ -2351,6 +2507,7 @@ msgstr "Αναζητήστε Επίπεδο" #: adminpages/membershiplevels.php:579 #: adminpages/membershiplevels.php:630 #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "Σύρετε τα επίπεδα συνδρομών για να τα αναδιατάξετε στην Σελίδα των Συνδρομών" @@ -2376,6 +2533,8 @@ msgstr "Σύρετε τα επίπεδα συνδρομών για να τα α #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "Λήξη" @@ -2388,6 +2547,7 @@ msgstr "Λήξη" #: adminpages/membershiplevels.php:587 #: adminpages/membershiplevels.php:640 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "Επιτρέψτε Νέες Εγγραφές" @@ -2401,6 +2561,7 @@ msgstr "Επιτρέψτε Νέες Εγγραφές" #: adminpages/membershiplevels.php:655 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "ΔΩΡΕΑΝ" @@ -2414,6 +2575,7 @@ msgstr "ΔΩΡΕΑΝ" #: adminpages/membershiplevels.php:664 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "Μετά" @@ -2460,6 +2622,7 @@ msgstr "αντίγραφο" #: includes/adminpages.php:149 #: includes/adminpages.php:153 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "Λίστα συνδρομητών" @@ -2473,6 +2636,8 @@ msgstr "Λίστα συνδρομητών" #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "Εξαγωγή σε CSV " @@ -2503,6 +2668,8 @@ msgstr "Εξαγωγή σε CSV " #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "Προβολή" @@ -2532,6 +2699,8 @@ msgstr "Προβολή" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "Όλα τα επίπεδα" @@ -2575,6 +2744,8 @@ msgstr "Παλιοί Συνδρομητές" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "Αναζητήστε Συνδρομητές" @@ -2613,6 +2784,8 @@ msgstr "Βρέθηκαν %d Συνδρομητές" #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "Username" @@ -2657,6 +2830,7 @@ msgstr "Last Name" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "Διεύθυνση Πληρωμής" @@ -2768,6 +2942,7 @@ msgstr "Σφάλμα κατά την διαγραφή της παραγγελί #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "Η παραγγελία αποθηκεύτηκε με επιτυχία." @@ -2783,6 +2958,7 @@ msgstr "Σφάλμα κατά την ανανέωση της χρονοσφρα #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "Σφάλμα κατά την αποθήκευση της παραγγελίας." @@ -2796,6 +2972,7 @@ msgstr "Σφάλμα κατά την αποθήκευση της παραγγε #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "Παραγγελία" @@ -2806,6 +2983,7 @@ msgstr "Παραγγελία" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "Νέα Παραγγελία" @@ -2816,6 +2994,7 @@ msgstr "Νέα Παραγγελία" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "Θα παραχθεί τυχαία για εσάς." @@ -2826,6 +3005,7 @@ msgstr "Θα παραχθεί τυχαία για εσάς." #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "ID Χρήστη" @@ -2837,6 +3017,8 @@ msgstr "ID Χρήστη" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "ID Επιπέδου Συνδρομής" @@ -2848,6 +3030,7 @@ msgstr "ID Επιπέδου Συνδρομής" #: includes/privacy.php:245 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "Όνομα Λογαριασμού" @@ -2859,6 +3042,7 @@ msgstr "Όνομα Λογαριασμού" #: includes/privacy.php:249 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "Οδός Λογαριασμού" @@ -2871,6 +3055,7 @@ msgstr "Οδός Λογαριασμού" #: includes/privacy.php:358 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "Πόλη Λογαριασμού" @@ -2882,6 +3067,7 @@ msgstr "Πόλη Λογαριασμού" #: includes/privacy.php:257 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "Γεωγραφικό Διαμέρισμα Λογαριασμού" @@ -2895,6 +3081,7 @@ msgstr "Γεωγραφικό Διαμέρισμα Λογαριασμού" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "Τ.Κ Λογαριασμού" @@ -2908,6 +3095,7 @@ msgstr "Τ.Κ Λογαριασμού" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "Χώρα Λογαριασμού" @@ -2920,6 +3108,7 @@ msgstr "Χώρα Λογαριασμού" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "Αριθμός Τηλεφώνου Λογαριασμού" @@ -2932,6 +3121,7 @@ msgstr "Αριθμός Τηλεφώνου Λογαριασμού" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "Υπό Σύνολο" @@ -2951,6 +3141,8 @@ msgstr "Υπό Σύνολο" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "Φόρος" @@ -2963,6 +3155,7 @@ msgstr "Φόρος" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "Ποσό Κουπονιού" @@ -2994,6 +3187,9 @@ msgstr "Ποσό Κουπονιού" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "Σύνολο" @@ -3013,6 +3209,7 @@ msgstr "Οφειλή υποσύνολο + φόρος - ποσό κουπονιο #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "Τύπος Πληρωμής" @@ -3024,6 +3221,7 @@ msgstr "Τύπος Πληρωμής" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "π.χ. PayPal Express, PayPal Standard, Credit Card." @@ -3067,6 +3265,9 @@ msgstr "π.χ. PayPal Express, PayPal Standard, Credit Card." #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "Τύπος Κάρτας" @@ -3078,6 +3279,7 @@ msgstr "Τύπος Κάρτας" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "π.χ. Visa, MasterCard, AMEX, etc" @@ -3096,6 +3298,8 @@ msgstr "π.χ. Visa, MasterCard, AMEX, etc" #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "Αριθμός Λογαριασμού" @@ -3106,6 +3310,7 @@ msgstr "Αριθμός Λογαριασμού" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "Εμφανίζονται μόνο τα 4 τελευταία ψηφία." @@ -3120,6 +3325,7 @@ msgstr "Εμφανίζονται μόνο τα 4 τελευταία ψηφία." #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "Μήνας λήξης" @@ -3162,6 +3368,10 @@ msgstr "Έτος λήξης" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "Κατάσταση" @@ -3184,6 +3394,9 @@ msgstr "Κατάσταση" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "Τρόπος πληρωμής" @@ -3202,6 +3415,8 @@ msgstr "Τρόπος πληρωμής" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "Περιβάλλον Τρόπου Πληρωμής" @@ -3223,6 +3438,9 @@ msgstr "Περιβάλλον Τρόπου Πληρωμής" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "Sandbox/Testing" @@ -3244,6 +3462,9 @@ msgstr "Sandbox/Testing" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "Live/Production" @@ -3256,6 +3477,7 @@ msgstr "Live/Production" #: includes/privacy.php:321 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "ID Πληρωμής" @@ -3267,6 +3489,7 @@ msgstr "ID Πληρωμής" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "Δημιουργήθηκε από τον τρόπο πληρωμής. Χρήσιμο για να διασταυρώσετε παραγγελίες αναφοράς." @@ -3281,6 +3504,8 @@ msgstr "Δημιουργήθηκε από τον τρόπο πληρωμής. Χ #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "ID Συνδρομής" @@ -3293,6 +3518,7 @@ msgstr "ID Συνδρομής" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "Δημιουργήθηκε από τον τρόπο πληρωμής. Χρήσιμο για να διασταυρώσετε συνδρομές αναφοράς." @@ -3326,6 +3552,8 @@ msgstr "Δημιουργήθηκε από τον τρόπο πληρωμής. Χ #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "Ημερομηνία" @@ -3337,6 +3565,7 @@ msgstr "Ημερομηνία" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "Affiliate ID" @@ -3348,6 +3577,7 @@ msgstr "Affiliate ID" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "Affiliate SubID" @@ -3359,6 +3589,7 @@ msgstr "Affiliate SubID" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "Σημειώσεις" @@ -3370,6 +3601,7 @@ msgstr "Σημειώσεις" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "Αποθήκευση Παραγγελίας" @@ -3415,6 +3647,8 @@ msgstr "Αποστολή Email" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "Παραγγελίες" @@ -3426,6 +3660,7 @@ msgstr "Παραγγελίες" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "Προσθέστε Νέες Παραγγελίες" @@ -3436,6 +3671,7 @@ msgstr "Προσθέστε Νέες Παραγγελίες" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "Εντός ενός Χρονικού Περιθωρίου" @@ -3446,6 +3682,7 @@ msgstr "Εντός ενός Χρονικού Περιθωρίου" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "Προκαθορισμένο Χρονικό Περιθώριο" @@ -3456,6 +3693,7 @@ msgstr "Προκαθορισμένο Χρονικό Περιθώριο" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "Εντός ενός Επιπέδου" @@ -3466,6 +3704,7 @@ msgstr "Εντός ενός Επιπέδου" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "Εντός μίας Θέσης" @@ -3476,6 +3715,7 @@ msgstr "Εντός μίας Θέσης" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "Από" @@ -3486,6 +3726,7 @@ msgstr "Από" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "Εώς" @@ -3496,6 +3737,7 @@ msgstr "Εώς" #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "ταξινόμηση κατά" @@ -3506,6 +3748,7 @@ msgstr "ταξινόμηση κατά" #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "Ταξινόμηση" @@ -3525,6 +3768,8 @@ msgstr "Ταξινόμηση" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "Σειρά Αναζητήσεων" @@ -3537,6 +3782,8 @@ msgstr "Σειρά Αναζητήσεων" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "%d βρέθηκαν παραγγελίες" @@ -3561,6 +3808,7 @@ msgstr "%d βρέθηκαν παραγγελίες" #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "Χρήστης" @@ -3605,6 +3853,8 @@ msgstr "Χρήστης" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "Membership Level" @@ -3626,6 +3876,7 @@ msgstr "Membership Level" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "Πληρωμή" @@ -3638,6 +3889,7 @@ msgstr "Πληρωμή" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "ID Συναλλαγών" @@ -3661,6 +3913,8 @@ msgstr "ID Συναλλαγών" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "διεγραμμένο" @@ -3674,6 +3928,7 @@ msgstr "διεγραμμένο" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "Συνδρομή" @@ -3689,6 +3944,7 @@ msgstr "Συνδρομή" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "Η διαγραφή παραγγελιών είναι οριστική και μπορεί να επιρεάσει κάποιους χρήστες. Είστε σίγουροι ότι θέλετε να διαγράψετε την παραγγελία %s;" @@ -3718,6 +3974,7 @@ msgstr "email" #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "Δεν βρέθηκαν παραγγελίες." @@ -3790,6 +4047,7 @@ msgstr "Οι παρακάτω σελίδες έχουν δημιουργηθεί #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "Διαχείρηση των WordPress σελίδων που έχουν ανατεθεί σε κάθε απαιτούμενη σελίδα Paid Membership Pro." @@ -3799,6 +4057,7 @@ msgstr "Διαχείρηση των WordPress σελίδων που έχουν #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "Ανάθεση των σελίδων WordPress για κάθε απαιτούενη Paid Membership Pro σελίδα ή" @@ -3808,6 +4067,7 @@ msgstr "Ανάθεση των σελίδων WordPress για κάθε απαι #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "κάντε κλικ εδώ για να μας επιτρέψετε αν τις παράγουμε εμείς για εσάς" @@ -3817,6 +4077,7 @@ msgstr "κάντε κλικ εδώ για να μας επιτρέψετε αν #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "Account Page" @@ -3863,6 +4124,14 @@ msgstr "Account Page" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "Διαλέξτε μία" @@ -3923,6 +4192,16 @@ msgstr "Διαλέξτε μία" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "επεξεργασία σελίδας" @@ -3980,6 +4259,15 @@ msgstr "επεξεργασία σελίδας" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "προβολή σελίδας" @@ -4033,6 +4321,12 @@ msgstr "προβολή σελίδας" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "Συμπεριλαμβανομένου του shortcode" @@ -4044,6 +4338,7 @@ msgstr "Συμπεριλαμβανομένου του shortcode" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "Σελίδα Πληροφοριών Τιμολόγησης" @@ -4055,6 +4350,7 @@ msgstr "Σελίδα Πληροφοριών Τιμολόγησης" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "Σελίδα Ακύρωσης" @@ -4066,6 +4362,7 @@ msgstr "Σελίδα Ακύρωσης" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "Σελίδα Πληρωμής" @@ -4077,6 +4374,7 @@ msgstr "Σελίδα Πληρωμής" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "Σελίδα Επιβεβαίωσης" @@ -4088,6 +4386,7 @@ msgstr "Σελίδα Επιβεβαίωσης" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "Σελίδα Τιμολογίου" @@ -4099,6 +4398,7 @@ msgstr "Σελίδα Τιμολογίου" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "Σελίδα Επιπέδων" @@ -4106,6 +4406,7 @@ msgstr "Σελίδα Επιπέδων" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "Σελίδα Επιπρόσθετων Ρυθμίσεων" @@ -4119,6 +4420,9 @@ msgstr "Σελίδα Επιπρόσθετων Ρυθμίσεων" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "Παραγωγή Σελίδας" @@ -4139,6 +4443,7 @@ msgstr "Οι ρυθμίσεις πληρωμής σας έχουν ανανεω #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "Gateway Πληρωμής" @@ -4149,6 +4454,7 @@ msgstr "Gateway Πληρωμής" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "Ρυθμίσεις SSL" @@ -4160,12 +4466,14 @@ msgstr "Learn more about If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.
If No, make sure you disable address verification in the Stripe dashboard settings." @@ -6171,6 +6593,7 @@ msgstr "To fully integrate with Stripe, be sure to set your Web Hook URL to" #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "Ενημερώσεις Συνδρομής" @@ -6224,6 +6647,7 @@ msgstr "Οι ενημερώσεις της συνδρομής, σας επιτρ #: classes/gateways/class.pmprogateway_stripe.php:2653 #: classes/gateways/class.pmprogateway_stripe.php:2649 #: pages/billing.php:441 +#: classes/gateways/class.pmprogateway_stripe.php:3106 msgid "Update" msgstr "Ενημέρωση" @@ -6241,6 +6665,7 @@ msgstr "Ενημέρωση" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "Αδυναμία ακύρωσης παλιάς συνδρομής. Οι ενημερώσεις δεν έχουν υποστεί επεξεργασία." @@ -6293,6 +6718,8 @@ msgstr "Σφάλμα κατά την δημιουργία αρχείου πελ #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "Σφάλμα παραλαβής συνδρομής με το Stripe:" @@ -6334,6 +6761,8 @@ msgstr "Σφάλμα παραλαβής συνδρομής με το Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "Σφάλμα δημιουργίας πλάνου με το Stripe:" @@ -6370,6 +6799,8 @@ msgstr "Σφάλμα δημιουργίας πλάνου με το Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "Σφάλμα κατά την συνδρομή του πελάτη σε πλάνο με το Stripe:" @@ -6393,6 +6824,7 @@ msgstr "Σφάλμα κατά την συνδρομή του πελάτη σε #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "Αδυναμία ακύρωσης παλιάς συνδρομής." @@ -6413,6 +6845,7 @@ msgstr "Αδυναμία ακύρωσης παλιάς συνδρομής." #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "Δεν βρέθηκε πελάτης." @@ -6425,6 +6858,7 @@ msgstr "Δεν βρέθηκε πελάτης." #: paid-memberships-pro.php:132 #: paid-memberships-pro.php:133 #: paid-memberships-pro.php:134 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "2Checkout" @@ -6432,24 +6866,28 @@ msgstr "2Checkout" #: classes/gateways/class.pmprogateway_twocheckout.php:108 #: classes/gateways/class.pmprogateway_twocheckout.php:116 #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "Ρυθμίσεις 2Checkout" #: classes/gateways/class.pmprogateway_twocheckout.php:123 #: classes/gateways/class.pmprogateway_twocheckout.php:125 #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." #: classes/gateways/class.pmprogateway_twocheckout.php:132 #: classes/gateways/class.pmprogateway_twocheckout.php:134 #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "Δημιουργήθηκε κωδικός για τον χρήστη του API." #: classes/gateways/class.pmprogateway_twocheckout.php:141 #: classes/gateways/class.pmprogateway_twocheckout.php:152 #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "Κάντε κλικ στο εικονίδιο του λογαριασμού σας στο 2Checkout για να βρείτε τον Αριθμό Λογαριασμού σας." @@ -6459,12 +6897,14 @@ msgstr "Κάντε κλικ στο εικονίδιο του λογαριασμ #: classes/gateways/class.pmprogateway_twocheckout.php:137 #: classes/gateways/class.pmprogateway_twocheckout.php:157 #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "Μυστική Λέξη" #: classes/gateways/class.pmprogateway_twocheckout.php:150 #: classes/gateways/class.pmprogateway_twocheckout.php:161 #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." @@ -6475,12 +6915,14 @@ msgstr "Go to Account » Site Management. Look under Checkout Options to fi #: classes/gateways/class.pmprogateway_twocheckout.php:145 #: classes/gateways/class.pmprogateway_twocheckout.php:166 #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "TwoCheckout INS URL" #: classes/gateways/class.pmprogateway_twocheckout.php:158 #: classes/gateways/class.pmprogateway_twocheckout.php:169 #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "Για την πλήρη ενσωμάτωση με το 2Checkout, σιγουρευτείτε πως χρησιμοποείτε τα ακόλουθα για το INS URL και Approved URL" @@ -6488,6 +6930,7 @@ msgstr "Για την πλήρη ενσωμάτωση με το 2Checkout, σι #: classes/gateways/class.pmprogateway_twocheckout.php:192 #: classes/gateways/class.pmprogateway_twocheckout.php:214 #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "Πληρωμή με 2Checkout" @@ -7502,6 +7945,7 @@ msgstr "και" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "Εγγραφείτε για !!name!! Τώρα" @@ -7550,6 +7994,9 @@ msgstr "Παρακαλούμε διευκρινήστε ένα id επιπέδο #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "Κανένα" @@ -7561,6 +8008,7 @@ msgstr "Το κλειδί άδειας χρήσης σας έχει επικυρ #: includes/license.php:81 #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "Paid Memberships Pro Support License" @@ -7581,6 +8029,7 @@ msgstr "Visit the PMPro
Thank you! A valid %s license key h #: adminpages/license.php:59 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "Εισάγετε το κλείδι άδειας χρήσης εδώ…" @@ -7706,6 +8156,8 @@ msgstr "Παρών Επίπεδο" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "Μη καταβολή." @@ -7822,6 +8274,9 @@ msgstr "αποσύνδεση" #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "Επίπεδο" @@ -7894,6 +8349,7 @@ msgstr "Την πληρωμή της συνδρομής σας διαχειρί #: includes/profile.php:759 #: includes/profile.php:755 #: pages/billing.php:166 +#: includes/profile.php:795 msgid "First Name" msgstr "Όνομα" @@ -7915,6 +8371,7 @@ msgstr "Όνομα" #: includes/profile.php:760 #: includes/profile.php:756 #: pages/billing.php:170 +#: includes/profile.php:796 msgid "Last Name" msgstr "Επώνυμο" @@ -8435,6 +8892,10 @@ msgstr "Τιμολόγιο #%s σε %s" #: adminpages/orders.php:391 #: adminpages/orders.php:1424 #: adminpages/orders.php:1434 +#: adminpages/orders.php:439 +#: adminpages/orders.php:1539 +#: adminpages/orders.php:1549 +#: includes/profile.php:473 msgid "Print" msgstr "Εκτύπωση" @@ -8485,6 +8946,7 @@ msgstr "Μέθοδος Πληρωμής" #: pages/invoice.php:97 #: pages/invoice.php:125 #: includes/profile.php:413 +#: includes/profile.php:453 msgid "Total Billed" msgstr "Συνολική Τιμή" @@ -8509,6 +8971,7 @@ msgstr "Παρακάτω υπάρχουν πληροφορίες σχετικά #: pages/confirmation.php:103 #: pages/confirmation.php:138 #: shortcodes/pmpro_account.php:247 +#: pages/confirmation.php:65 msgid "Pending" msgstr "Σε αναμονή" @@ -8536,6 +8999,7 @@ msgstr "Σε περίπτωση που ο λογαριασμός σας δεν #: includes/functions.php:2857 #: includes/functions.php:2888 #: includes/functions.php:2910 +#: includes/functions.php:2912 msgid "Coupon" msgstr "Κουπόνι" @@ -8621,6 +9085,7 @@ msgstr "← Επιστροφή στην Αρχική" #: paid-memberships-pro.php:157 #: paid-memberships-pro.php:159 #: paid-memberships-pro.php:160 +#: paid-memberships-pro.php:166 msgid "Testing Only" msgstr "Μόνο για Δοκιμή" @@ -8633,6 +9098,7 @@ msgstr "Μόνο για Δοκιμή" #: paid-memberships-pro.php:162 #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:165 +#: paid-memberships-pro.php:171 msgid "PayPal Payflow Pro/PayPal Pro" msgstr "PayPal Payflow Pro/PayPal Pro" @@ -8645,6 +9111,7 @@ msgstr "PayPal Payflow Pro/PayPal Pro" #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:168 #: paid-memberships-pro.php:169 +#: paid-memberships-pro.php:175 msgid "Cybersource" msgstr "PayPal Payflow Pro/PayPal Pro" @@ -8652,6 +9119,7 @@ msgstr "PayPal Payflow Pro/PayPal Pro" #: paid-memberships-pro.php:156 #: paid-memberships-pro.php:194 #: paid-memberships-pro.php:195 +#: paid-memberships-pro.php:201 msgid "Once a month" msgstr "Μία φορά το μήνα" @@ -8769,6 +9237,7 @@ msgstr "Σφάλμα κατά την ενημέρωση των πληροφορ #: classes/class.pmproemail.php:907 #: includes/email.php:459 #: classes/class.pmproemail.php:900 +#: classes/class.pmproemail.php:1033 msgid "Your membership has been cancelled." msgstr "Η συνδρομή σας έχει ακυρωθεί." @@ -9100,6 +9569,7 @@ msgstr "%s έχει λάβει την άκύρωση της συνδρομής #: pages/account.php:19 #: includes/email-templates.php:68 #: shortcodes/pmpro_account.php:43 +#: adminpages/orders.php:1431 msgid "Billing" msgstr "Χρέωση" @@ -9154,6 +9624,8 @@ msgstr "Επεξεργασία Λογαριασμού" #: includes/profile.php:921 #: includes/profile.php:880 #: includes/profile.php:917 +#: includes/profile.php:920 +#: includes/profile.php:957 msgid "Change Password" msgstr "Αλλαγή Κωδικού" @@ -9252,6 +9724,8 @@ msgstr "κάθε" #: includes/profile.php:515 #: includes/profile.php:511 #: adminpages/advancedsettings.php:331 +#: adminpages/advancedsettings.php:338 +#: includes/profile.php:551 msgid "Never" msgstr "Ποτέ" @@ -9436,6 +9910,7 @@ msgstr "Οι πρώτες σας πληρωμές θα κοστίσει %s." #: pages/account.php:87 #: pages/account.php:91 #: adminpages/emailtemplates.php:156 +#: adminpages/emailtemplates.php:149 msgid "Billing Information" msgstr "Πληροφορίες Χρέωσης" @@ -9552,6 +10027,18 @@ msgstr "Ολοκληρώστε τον Λογαριασμό σας" #: js/blocks.build.js:1342 #: js/blocks.build.js:1502 #: classes/class-pmpro-admin-activity-email.php:349 +#: blocks/account-invoices-section/block.js:47 +#: blocks/account-links-section/block.js:47 +#: blocks/account-membership-section/block.js:45 +#: blocks/account-page/block.js:72 +#: blocks/account-profile-section/block.js:45 +#: blocks/billing-page/block.js:44 +#: blocks/cancel-page/block.js:44 +#: blocks/checkout-page/block.js:58 +#: blocks/confirmation-page/block.js:46 +#: blocks/invoice-page/block.js:45 +#: blocks/levels-page/block.js:44 +#: blocks/member-profile-edit/block.js:37 msgid "Paid Memberships Pro" msgstr "" @@ -9597,6 +10084,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:76 #: classes/gateways/class.pmprogateway_stripe.php:82 #: classes/gateways/class.pmprogateway_stripe.php:1338 +#: classes/gateways/class.pmprogateway_stripe.php:1463 msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade." msgstr "" @@ -9637,6 +10125,7 @@ msgstr "" #: includes/adminpages.php:52 #: includes/adminpages.php:158 #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Members" msgstr "" @@ -9681,41 +10170,49 @@ msgstr "" #: adminpages/advancedsettings.php:106 #: includes/updates/upgrade_1.php:7 #: adminpages/advancedsettings.php:108 +#: adminpages/advancedsettings.php:116 msgid "This content is for !!levels!! members only.
Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -9723,93 +10220,111 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -9835,6 +10350,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -9905,6 +10421,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -10010,6 +10527,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -10048,6 +10566,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -10060,31 +10579,39 @@ msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 msgid "%d discount codes found." msgstr "" @@ -10110,6 +10637,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -10128,6 +10662,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -10136,15 +10676,18 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -10185,192 +10728,241 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:960 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:170 #: includes/privacy.php:363 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -10388,6 +10980,7 @@ msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -10395,14 +10988,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -10419,27 +11015,34 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -10449,6 +11052,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -10456,6 +11061,7 @@ msgstr "" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -10463,6 +11069,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -10470,6 +11077,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -10477,6 +11085,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -10484,6 +11093,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -10491,6 +11101,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -10529,78 +11140,91 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -10610,12 +11234,15 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -10623,18 +11250,21 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" @@ -10644,11 +11274,13 @@ msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" @@ -10658,6 +11290,7 @@ msgstr "" #: adminpages/paymentsettings.php:260 #: adminpages/paymentsettings.php:273 +#: adminpages/paymentsettings.php:271 msgid "Your Site URL starts with https:// and so PMPro will allow your entire site to be served over HTTPS." msgstr "" @@ -10689,6 +11322,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -10699,6 +11333,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -10741,21 +11376,25 @@ msgid "Logins This Year" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -10914,51 +11553,63 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:962 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -10971,6 +11622,8 @@ msgstr "" #: includes/email.php:465 #: classes/class.pmproemail.php:898 #: classes/class.pmproemail.php:943 +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 msgid "The new level is %s." msgstr "" @@ -10983,30 +11636,36 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -11018,14 +11677,17 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:91 #: classes/gateways/class.pmprogateway_stripe.php:97 #: classes/gateways/class.pmprogateway_stripe.php:1353 +#: classes/gateways/class.pmprogateway_stripe.php:1478 msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" @@ -11039,21 +11701,30 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:750 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -11061,11 +11732,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -11343,17 +12017,20 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:185 #: classes/gateways/class.pmprogateway_paypalexpress.php:194 #: classes/gateways/class.pmprogateway_paypalexpress.php:204 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 msgid "Confirmation Step" msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -11362,6 +12039,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -11370,6 +12048,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -11385,6 +12064,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -11393,6 +12073,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -11404,6 +12085,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -11415,6 +12097,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -11426,6 +12109,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -11434,6 +12118,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -11445,6 +12130,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -11456,6 +12142,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -11464,6 +12151,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -11475,6 +12163,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -11483,6 +12172,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -11506,6 +12196,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -11522,6 +12214,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -11530,6 +12224,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -11538,6 +12233,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -11546,6 +12242,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -11553,6 +12250,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -11561,6 +12259,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -11574,6 +12273,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -11582,6 +12283,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -11590,6 +12292,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -11599,6 +12302,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -11616,6 +12321,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -11624,6 +12331,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -11645,6 +12353,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -11653,6 +12363,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -11661,6 +12372,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -11669,6 +12381,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -11677,6 +12390,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -11685,6 +12399,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -11693,6 +12408,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -11701,6 +12417,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -11709,6 +12426,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -11717,6 +12435,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -11725,6 +12444,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -11737,6 +12457,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -11745,6 +12466,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -11753,6 +12475,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -11761,6 +12484,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -11769,6 +12493,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -11812,6 +12537,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "" @@ -11823,6 +12550,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 msgid "Error: Unkown error while refunding charge #%s" msgstr "" @@ -11832,6 +12560,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -11852,6 +12581,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -11860,6 +12593,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -11869,6 +12603,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -11878,6 +12613,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -11889,6 +12625,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -11900,6 +12637,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -11911,6 +12649,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -11922,6 +12661,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" @@ -11956,6 +12696,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -11968,6 +12709,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -11980,6 +12722,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -13770,14 +14513,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -13786,18 +14532,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -13809,6 +14559,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -13941,6 +14692,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -14054,6 +14806,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -14061,6 +14814,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -14092,6 +14846,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -14101,6 +14856,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -14108,6 +14864,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -14207,6 +14964,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -14214,6 +14973,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -14221,6 +14981,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -14228,6 +14989,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -14299,126 +15061,148 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -14430,6 +15214,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -14527,6 +15314,7 @@ msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -14552,6 +15340,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -14590,6 +15379,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -14605,6 +15409,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -14620,6 +15425,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -14652,6 +15458,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -14664,6 +15471,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -14689,11 +15497,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -14701,6 +15514,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -14708,6 +15522,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -14730,6 +15545,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -14755,6 +15571,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -14762,6 +15579,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -14794,6 +15612,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -14816,6 +15635,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -14826,11 +15646,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -14850,6 +15681,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -14863,6 +15695,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -14872,6 +15705,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -14881,10 +15715,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -14895,6 +15731,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -14902,6 +15739,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -14911,6 +15749,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -14920,12 +15759,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -14933,6 +15775,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -14941,6 +15785,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -14948,6 +15793,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -14955,22 +15801,26 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -15028,12 +15878,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -15043,6 +15895,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -15052,6 +15905,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -15061,54 +15915,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -15119,42 +15983,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -15169,51 +16043,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -15221,6 +16107,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -15228,6 +16115,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -15235,6 +16123,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -15243,6 +16132,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -15256,6 +16147,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -15276,19 +16168,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -15298,31 +16194,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -15348,21 +16252,25 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" @@ -15432,26 +16340,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -15460,51 +16374,62 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -15518,19 +16443,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -15561,3 +16490,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-en_GB.mo b/languages/paid-memberships-pro-en_GB.mo index 7dcb1bbd0..70e56bfa4 100644 Binary files a/languages/paid-memberships-pro-en_GB.mo and b/languages/paid-memberships-pro-en_GB.mo differ diff --git a/languages/paid-memberships-pro-en_GB.po b/languages/paid-memberships-pro-en_GB.po index 0cc1eaf4c..56aa2db34 100644 --- a/languages/paid-memberships-pro-en_GB.po +++ b/languages/paid-memberships-pro-en_GB.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:20:27+00:00\n" +"POT-Creation-Date: 2022-05-05T20:37:15+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -246,6 +246,7 @@ msgstr "" #: adminpages/advancedsettings.php:132 #: includes/adminpages.php:73 #: adminpages/advancedsettings.php:134 +#: adminpages/advancedsettings.php:142 msgid "Advanced Settings" msgstr "" @@ -263,6 +264,7 @@ msgstr "" #: includes/adminpages.php:74 #: adminpages/memberslist.php:25 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "" @@ -289,6 +291,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "" @@ -335,6 +339,8 @@ msgstr "" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "" @@ -357,6 +363,9 @@ msgstr "" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "" @@ -378,6 +387,8 @@ msgstr "" #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "" @@ -417,6 +428,16 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:404 #: classes/gateways/class.pmprogateway_stripe.php:418 #: adminpages/paymentsettings.php:279 +#: adminpages/advancedsettings.php:254 +#: adminpages/advancedsettings.php:267 +#: adminpages/advancedsettings.php:359 +#: adminpages/advancedsettings.php:418 +#: adminpages/advancedsettings.php:526 +#: adminpages/membershiplevels.php:939 +#: adminpages/paymentsettings.php:277 +#: classes/gateways/class.pmprogateway_stripe.php:430 +#: classes/gateways/class.pmprogateway_stripe.php:444 +#: includes/profile.php:78 msgid "No" msgstr "" @@ -448,6 +469,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:406 #: classes/gateways/class.pmprogateway_stripe.php:420 #: adminpages/paymentsettings.php:280 +#: adminpages/advancedsettings.php:419 +#: adminpages/membershiplevels.php:934 +#: adminpages/paymentsettings.php:278 +#: classes/gateways/class.pmprogateway_stripe.php:432 +#: classes/gateways/class.pmprogateway_stripe.php:446 +#: includes/profile.php:79 msgid "Yes" msgstr "" @@ -616,6 +643,7 @@ msgstr "" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "" @@ -698,6 +726,18 @@ msgstr "" #: classes/class.pmproemail.php:764 #: adminpages/orders.php:576 #: adminpages/orders.php:1343 +#: adminpages/orders.php:697 +#: adminpages/orders.php:1437 +#: classes/class.pmproemail.php:465 +#: classes/class.pmproemail.php:471 +#: classes/class.pmproemail.php:477 +#: classes/class.pmproemail.php:567 +#: classes/class.pmproemail.php:573 +#: classes/class.pmproemail.php:895 +#: classes/class.pmproemail.php:897 +#: classes/gateways/class.pmprogateway_braintree.php:516 +#: classes/gateways/class.pmprogateway_stripe.php:906 +#: includes/profile.php:454 msgid "Discount Code" msgstr "" @@ -712,6 +752,7 @@ msgstr "" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "" @@ -733,6 +774,7 @@ msgstr "" #: pages/invoice.php:97 #: pages/invoice.php:125 #: includes/profile.php:413 +#: includes/profile.php:453 msgid "Total Billed" msgstr "" @@ -755,6 +797,8 @@ msgstr "" #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "" @@ -762,6 +806,7 @@ msgstr "" #: includes/functions.php:2842 #: includes/functions.php:2873 #: includes/functions.php:2895 +#: includes/functions.php:2897 msgid "Subtotal" msgstr "" @@ -775,6 +820,8 @@ msgstr "" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "" @@ -782,6 +829,7 @@ msgstr "" #: includes/functions.php:2857 #: includes/functions.php:2888 #: includes/functions.php:2910 +#: includes/functions.php:2912 msgid "Coupon" msgstr "" @@ -803,6 +851,9 @@ msgstr "" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "" @@ -824,6 +875,9 @@ msgstr "" #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:492 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "" @@ -890,6 +944,9 @@ msgstr "" #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "" @@ -936,6 +993,8 @@ msgstr "" #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "" @@ -958,6 +1017,11 @@ msgstr "" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "" @@ -974,11 +1038,14 @@ msgstr "" #: includes/profile.php:921 #: includes/profile.php:880 #: includes/profile.php:917 +#: includes/profile.php:920 +#: includes/profile.php:957 msgid "Change Password" msgstr "" #: pages/account.php:87 #: adminpages/emailtemplates.php:156 +#: adminpages/emailtemplates.php:149 msgid "Billing Information" msgstr "" @@ -1060,6 +1127,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1338 #: classes/gateways/class.pmprogateway_stripe.php:1344 #: classes/gateways/class.pmprogateway_stripe.php:803 +#: classes/gateways/class.pmprogateway_braintree.php:518 +#: classes/gateways/class.pmprogateway_stripe.php:911 msgid "Apply" msgstr "" @@ -1146,6 +1215,7 @@ msgstr "" #: pages/checkout.php:218 #: classes/gateways/class.pmprogateway_paypalexpress.php:498 #: classes/gateways/class.pmprogateway_paypalexpress.php:502 +#: classes/gateways/class.pmprogateway_paypalexpress.php:503 msgid "Check Out with PayPal" msgstr "" @@ -1157,6 +1227,7 @@ msgstr "" #: includes/profile.php:759 #: includes/profile.php:755 #: pages/billing.php:166 +#: includes/profile.php:795 msgid "First Name" msgstr "" @@ -1168,6 +1239,7 @@ msgstr "" #: includes/profile.php:760 #: includes/profile.php:756 #: pages/billing.php:170 +#: includes/profile.php:796 msgid "Last Name" msgstr "" @@ -1251,6 +1323,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1283 #: classes/gateways/class.pmprogateway_stripe.php:1289 #: classes/gateways/class.pmprogateway_stripe.php:748 +#: classes/gateways/class.pmprogateway_braintree.php:462 +#: classes/gateways/class.pmprogateway_stripe.php:856 #, php-format msgid "We Accept %s" msgstr "" @@ -1263,6 +1337,9 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1282 #: classes/gateways/class.pmprogateway_stripe.php:1288 #: classes/gateways/class.pmprogateway_stripe.php:747 +#: adminpages/orders.php:676 +#: classes/gateways/class.pmprogateway_braintree.php:461 +#: classes/gateways/class.pmprogateway_stripe.php:855 msgid "Payment Information" msgstr "" @@ -1283,6 +1360,9 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "" @@ -1297,6 +1377,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1322 #: classes/gateways/class.pmprogateway_stripe.php:781 #: pages/billing.php:377 +#: classes/gateways/class.pmprogateway_braintree.php:482 +#: classes/gateways/class.pmprogateway_stripe.php:889 msgid "Card Number" msgstr "" @@ -1314,6 +1396,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1326 #: classes/gateways/class.pmprogateway_stripe.php:785 #: pages/billing.php:381 +#: classes/gateways/class.pmprogateway_braintree.php:486 +#: classes/gateways/class.pmprogateway_stripe.php:893 msgid "Expiration Date" msgstr "" @@ -1322,6 +1406,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:503 #: pages/billing.php:410 #: pages/billing.php:417 +#: classes/gateways/class.pmprogateway_braintree.php:510 msgid "CVV" msgstr "" @@ -1331,6 +1416,7 @@ msgstr "" #: pages/billing.php:411 #: pages/checkout.php:425 #: pages/billing.php:418 +#: classes/gateways/class.pmprogateway_braintree.php:511 msgid "what's this?" msgstr "" @@ -1352,6 +1438,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:503 #: classes/gateways/class.pmprogateway_paypalexpress.php:507 #: pages/checkout.php:538 +#: classes/gateways/class.pmprogateway_paypalexpress.php:508 msgid "Submit and Check Out" msgstr "" @@ -1364,6 +1451,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:503 #: classes/gateways/class.pmprogateway_paypalexpress.php:507 #: pages/checkout.php:538 +#: classes/gateways/class.pmprogateway_paypalexpress.php:508 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Submit and Confirm" msgstr "" @@ -1423,6 +1512,10 @@ msgstr "" #: adminpages/orders.php:391 #: adminpages/orders.php:1424 #: adminpages/orders.php:1434 +#: adminpages/orders.php:439 +#: adminpages/orders.php:1539 +#: adminpages/orders.php:1549 +#: includes/profile.php:473 msgid "Print" msgstr "" @@ -1434,6 +1527,7 @@ msgstr "" #: pages/confirmation.php:105 #: pages/confirmation.php:138 #: shortcodes/pmpro_account.php:247 +#: pages/confirmation.php:65 msgid "Pending" msgstr "" @@ -1465,6 +1559,7 @@ msgstr "" #: pages/billing.php:179 #: adminpages/paymentsettings.php:241 #: pages/billing.php:181 +#: adminpages/paymentsettings.php:239 msgid "optional" msgstr "" @@ -1493,6 +1588,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2653 #: classes/gateways/class.pmprogateway_stripe.php:2649 #: pages/billing.php:441 +#: classes/gateways/class.pmprogateway_stripe.php:3106 msgid "Update" msgstr "" @@ -1516,6 +1612,11 @@ msgstr "" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "" @@ -1533,6 +1634,7 @@ msgstr "" #: adminpages/discountcodes.php:574 #: adminpages/membershiplevels.php:401 #: adminpages/discountcodes.php:576 +#: adminpages/membershiplevels.php:399 msgid "Initial Payment" msgstr "" @@ -1609,6 +1711,7 @@ msgstr "" #: classes/class.memberorder.php:543 #: classes/class.memberorder.php:959 #: classes/class.memberorder.php:1001 +#: classes/class.memberorder.php:1010 #, php-format msgid "There was an error canceling the subscription for user with ID=%s. You will want to check your payment gateway to see if their subscription is still active." msgstr "" @@ -1636,6 +1739,7 @@ msgstr "" #: classes/class.pmproemail.php:175 #: classes/class.pmproemail.php:269 #: classes/class.pmproemail.php:262 +#: classes/class.pmproemail.php:395 #, php-format msgid "Your membership confirmation for %s" msgstr "" @@ -1664,6 +1768,11 @@ msgstr "" #: classes/class.pmproemail.php:771 #: classes/class.pmproemail.php:905 #: classes/class.pmproemail.php:950 +#: classes/class.pmproemail.php:485 +#: classes/class.pmproemail.php:583 +#: classes/class.pmproemail.php:904 +#: classes/class.pmproemail.php:1038 +#: classes/class.pmproemail.php:1083 #, php-format msgid "This membership will expire on %s." msgstr "" @@ -1707,6 +1816,7 @@ msgstr "" #: classes/class.pmproemail.php:794 #: classes/class.pmproemail.php:806 #: classes/class.pmproemail.php:799 +#: classes/class.pmproemail.php:932 #, php-format msgid "Your trial at %s is ending soon" msgstr "" @@ -1715,6 +1825,7 @@ msgstr "" #: classes/class.pmproemail.php:831 #: classes/class.pmproemail.php:843 #: classes/class.pmproemail.php:836 +#: classes/class.pmproemail.php:969 #, php-format msgid "Your membership at %s has ended" msgstr "" @@ -1723,6 +1834,7 @@ msgstr "" #: classes/class.pmproemail.php:858 #: classes/class.pmproemail.php:870 #: classes/class.pmproemail.php:863 +#: classes/class.pmproemail.php:996 #, php-format msgid "Your membership at %s will end soon" msgstr "" @@ -1731,6 +1843,7 @@ msgstr "" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:900 #: classes/class.pmproemail.php:893 +#: classes/class.pmproemail.php:1026 #, php-format msgid "Your membership at %s has been changed" msgstr "" @@ -1745,6 +1858,8 @@ msgstr "" #: includes/email.php:465 #: classes/class.pmproemail.php:898 #: classes/class.pmproemail.php:943 +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 #, php-format msgid "The new level is %s." msgstr "" @@ -1768,6 +1883,7 @@ msgstr "" #: classes/class.pmproemail.php:933 #: classes/class.pmproemail.php:945 #: classes/class.pmproemail.php:938 +#: classes/class.pmproemail.php:1071 #, php-format msgid "Membership for %s at %s has been changed" msgstr "" @@ -1843,36 +1959,42 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:61 #: classes/gateways/class.pmprogateway_stripe.php:53 #: classes/gateways/class.pmprogateway_braintree.php:574 +#: classes/gateways/class.pmprogateway_braintree.php:581 msgid "Unknown error: Initial payment failed." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:120 #: classes/gateways/class.pmprogateway_braintree.php:650 #: classes/gateways/class.pmprogateway_braintree.php:653 +#: classes/gateways/class.pmprogateway_braintree.php:660 msgid "Error during settlement:" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:129 #: classes/gateways/class.pmprogateway_braintree.php:659 #: classes/gateways/class.pmprogateway_braintree.php:662 +#: classes/gateways/class.pmprogateway_braintree.php:669 msgid "Error during charge:" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:198 #: classes/gateways/class.pmprogateway_braintree.php:762 #: classes/gateways/class.pmprogateway_braintree.php:765 +#: classes/gateways/class.pmprogateway_braintree.php:772 msgid "Failed to update customer." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:246 #: classes/gateways/class.pmprogateway_braintree.php:810 #: classes/gateways/class.pmprogateway_braintree.php:813 +#: classes/gateways/class.pmprogateway_braintree.php:820 msgid "Failed to create customer." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:253 #: classes/gateways/class.pmprogateway_braintree.php:817 #: classes/gateways/class.pmprogateway_braintree.php:820 +#: classes/gateways/class.pmprogateway_braintree.php:827 msgid "Error creating customer record with Braintree:" msgstr "" @@ -1891,6 +2013,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:354 #: classes/gateways/class.pmprogateway_braintree.php:1036 #: classes/gateways/class.pmprogateway_braintree.php:1039 +#: classes/gateways/class.pmprogateway_braintree.php:1046 msgid "Could not find the subscription." msgstr "" @@ -1948,6 +2071,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "" @@ -1968,6 +2093,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "" @@ -2083,6 +2210,8 @@ msgstr "" #: adminpages/reports/login.php:182 #: adminpages/templates/orders-email.php:49 #: adminpages/templates/orders-print.php:78 +#: adminpages/membershiplevels.php:345 +#: adminpages/membershiplevels.php:805 msgid "ID" msgstr "" @@ -2094,23 +2223,29 @@ msgstr "" #: adminpages/reports/history.php:184 #: adminpages/reports/login.php:181 #: adminpages/reports/login.php:184 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 msgid "Name" msgstr "" #: adminpages/membershiplevels.php:296 #: adminpages/addons.php:111 #: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "" #: adminpages/membershiplevels.php:314 #: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "" #: adminpages/membershiplevels.php:333 #: adminpages/membershiplevels.php:397 #: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "" @@ -2119,6 +2254,7 @@ msgstr "" #: adminpages/discountcodes.php:585 #: adminpages/membershiplevels.php:412 #: adminpages/discountcodes.php:587 +#: adminpages/membershiplevels.php:410 msgid "The initial amount collected at registration." msgstr "" @@ -2127,6 +2263,7 @@ msgstr "" #: adminpages/discountcodes.php:590 #: adminpages/membershiplevels.php:417 #: adminpages/discountcodes.php:592 +#: adminpages/membershiplevels.php:415 msgid "Recurring Subscription" msgstr "" @@ -2135,6 +2272,7 @@ msgstr "" #: adminpages/discountcodes.php:591 #: adminpages/membershiplevels.php:418 #: adminpages/discountcodes.php:593 +#: adminpages/membershiplevels.php:416 msgid "Check if this level has a recurring subscription payment." msgstr "" @@ -2142,6 +2280,7 @@ msgstr "" #: adminpages/discountcodes.php:595 #: adminpages/membershiplevels.php:422 #: adminpages/discountcodes.php:597 +#: adminpages/membershiplevels.php:420 msgid "Billing Amount" msgstr "" @@ -2157,6 +2296,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2696 #: classes/gateways/class.pmprogateway_stripe.php:2698 #: classes/gateways/class.pmprogateway_stripe.php:2694 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "" @@ -2175,6 +2316,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2637 #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2635 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3092 msgid "Day(s)" msgstr "" @@ -2193,6 +2338,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2638 #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2636 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3093 msgid "Week(s)" msgstr "" @@ -2211,6 +2360,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2641 #: classes/gateways/class.pmprogateway_stripe.php:2637 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3094 msgid "Month(s)" msgstr "" @@ -2229,6 +2382,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2642 #: classes/gateways/class.pmprogateway_stripe.php:2638 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3095 msgid "Year(s)" msgstr "" @@ -2237,6 +2394,7 @@ msgstr "" #: adminpages/discountcodes.php:618 #: adminpages/membershiplevels.php:446 #: adminpages/discountcodes.php:620 +#: adminpages/membershiplevels.php:444 msgid "The amount to be billed one cycle after the initial payment." msgstr "" @@ -2248,6 +2406,7 @@ msgstr "" #: adminpages/discountcodes.php:620 #: adminpages/membershiplevels.php:448 #: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:446 msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." msgstr "" @@ -2262,11 +2421,14 @@ msgstr "" #: adminpages/membershiplevels.php:454 #: adminpages/membershiplevels.php:459 #: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 msgid "Note" msgstr "" #: adminpages/membershiplevels.php:372 #: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." msgstr "" @@ -2279,6 +2441,7 @@ msgstr "" #: adminpages/discountcodes.php:628 #: adminpages/membershiplevels.php:465 #: adminpages/discountcodes.php:630 +#: adminpages/membershiplevels.php:463 msgid "Billing Cycle Limit" msgstr "" @@ -2287,6 +2450,7 @@ msgstr "" #: adminpages/discountcodes.php:632 #: adminpages/membershiplevels.php:469 #: adminpages/discountcodes.php:634 +#: adminpages/membershiplevels.php:467 msgid "The total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "" @@ -2294,6 +2458,7 @@ msgstr "" #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "" @@ -2302,6 +2467,8 @@ msgstr "" #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "" @@ -2310,6 +2477,8 @@ msgstr "" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "" @@ -2317,6 +2486,8 @@ msgstr "" #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "" @@ -2325,6 +2496,7 @@ msgstr "" #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "" @@ -2333,6 +2505,7 @@ msgstr "" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "" @@ -2341,6 +2514,7 @@ msgstr "" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "" @@ -2348,6 +2522,7 @@ msgstr "" #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "" @@ -2355,6 +2530,7 @@ msgstr "" #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "" @@ -2362,6 +2538,7 @@ msgstr "" #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "" @@ -2370,6 +2547,7 @@ msgstr "" #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "" @@ -2388,6 +2566,7 @@ msgstr "" #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "" @@ -2396,6 +2575,7 @@ msgstr "" #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "" @@ -2405,6 +2585,8 @@ msgstr "" #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "" @@ -2413,6 +2595,8 @@ msgstr "" #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "" @@ -2420,11 +2604,14 @@ msgstr "" #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "" #: adminpages/membershiplevels.php:467 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "" @@ -2450,12 +2637,14 @@ msgstr "" #: adminpages/membershiplevels.php:517 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "" #: adminpages/membershiplevels.php:540 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "" @@ -2475,12 +2664,15 @@ msgstr "" #: adminpages/reports/sales.php:314 #: adminpages/reports/sales.php:321 #: adminpages/reports/sales.php:332 +#: adminpages/reports/memberships.php:341 +#: adminpages/reports/memberships.php:352 msgid "for" msgstr "" #: adminpages/membershiplevels.php:566 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "" @@ -2492,6 +2684,7 @@ msgstr "" #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "" @@ -2531,6 +2724,7 @@ msgstr "" #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "" @@ -2542,6 +2736,7 @@ msgstr "" #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "" @@ -2552,6 +2747,7 @@ msgstr "" #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "" @@ -2559,6 +2755,7 @@ msgstr "" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "" @@ -2590,6 +2787,9 @@ msgstr "" #: adminpages/dashboard.php:292 #: adminpages/orders.php:429 #: adminpages/orders.php:1333 +#: adminpages/discountcodes.php:787 +#: adminpages/orders.php:475 +#: adminpages/orders.php:1426 msgid "Code" msgstr "" @@ -2597,6 +2797,7 @@ msgstr "" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "" @@ -2604,6 +2805,7 @@ msgstr "" #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "" @@ -2612,6 +2814,8 @@ msgstr "" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "" @@ -2620,6 +2824,7 @@ msgstr "" #: includes/privacy.php:245 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "" @@ -2628,6 +2833,7 @@ msgstr "" #: includes/privacy.php:249 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "" @@ -2637,6 +2843,7 @@ msgstr "" #: includes/privacy.php:358 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "" @@ -2645,6 +2852,7 @@ msgstr "" #: includes/privacy.php:257 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "Billing County" @@ -2655,6 +2863,7 @@ msgstr "Billing County" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "" @@ -2665,6 +2874,7 @@ msgstr "" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "" @@ -2674,6 +2884,7 @@ msgstr "" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "" @@ -2683,6 +2894,7 @@ msgstr "" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "" @@ -2692,6 +2904,7 @@ msgstr "" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "" @@ -2705,6 +2918,7 @@ msgstr "" #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "" @@ -2713,6 +2927,7 @@ msgstr "" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "" @@ -2721,6 +2936,7 @@ msgstr "" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "" @@ -2732,6 +2948,8 @@ msgstr "" #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "" @@ -2739,6 +2957,7 @@ msgstr "" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "" @@ -2750,6 +2969,7 @@ msgstr "" #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "" @@ -2782,6 +3002,10 @@ msgstr "" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "" @@ -2797,6 +3021,9 @@ msgstr "" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "" @@ -2804,6 +3031,7 @@ msgstr "" #: paid-memberships-pro.php:157 #: paid-memberships-pro.php:159 #: paid-memberships-pro.php:160 +#: paid-memberships-pro.php:166 msgid "Testing Only" msgstr "" @@ -2813,6 +3041,7 @@ msgstr "" #: paid-memberships-pro.php:158 #: paid-memberships-pro.php:160 #: paid-memberships-pro.php:161 +#: paid-memberships-pro.php:167 msgid "Pay by Check" msgstr "" @@ -2824,6 +3053,8 @@ msgstr "" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "" @@ -2838,6 +3069,9 @@ msgstr "" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "" @@ -2852,6 +3086,9 @@ msgstr "" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "" @@ -2860,6 +3097,7 @@ msgstr "" #: includes/privacy.php:321 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "" @@ -2867,6 +3105,7 @@ msgstr "" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "" @@ -2877,6 +3116,8 @@ msgstr "" #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "" @@ -2885,6 +3126,7 @@ msgstr "" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "" @@ -2893,6 +3135,7 @@ msgstr "" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "" @@ -2901,6 +3144,7 @@ msgstr "" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "" @@ -2909,6 +3153,7 @@ msgstr "" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "" @@ -2917,6 +3162,7 @@ msgstr "" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "" @@ -2925,6 +3171,7 @@ msgstr "" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "" @@ -2935,6 +3182,8 @@ msgstr "" #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "" @@ -2948,6 +3197,8 @@ msgstr "" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "" @@ -2956,6 +3207,8 @@ msgstr "" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "" @@ -2971,6 +3224,7 @@ msgstr "" #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "" @@ -2984,6 +3238,7 @@ msgstr "" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "" @@ -2992,6 +3247,7 @@ msgstr "" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "" @@ -3011,6 +3267,8 @@ msgstr "" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "" @@ -3019,6 +3277,7 @@ msgstr "" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "" @@ -3028,6 +3287,7 @@ msgstr "" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "" @@ -3041,6 +3301,7 @@ msgstr "" #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "" @@ -3060,6 +3321,8 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "" @@ -3081,6 +3344,8 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "" @@ -3100,6 +3365,8 @@ msgstr "" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "" @@ -3143,6 +3410,8 @@ msgstr "" #: includes/profile.php:515 #: includes/profile.php:511 #: adminpages/advancedsettings.php:331 +#: adminpages/advancedsettings.php:338 +#: includes/profile.php:551 msgid "Never" msgstr "" @@ -3180,6 +3449,7 @@ msgstr "" #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "" @@ -3187,6 +3457,7 @@ msgstr "" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "" @@ -3214,6 +3485,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:162 #: classes/gateways/class.pmprogateway_paypalstandard.php:154 #: classes/gateways/class.pmprogateway_paypalexpress.php:172 +#: classes/gateways/class.pmprogateway_paypalexpress.php:173 msgid "Gateway Account Email" msgstr "" @@ -3224,6 +3496,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalstandard.php:162 #: classes/gateways/class.pmprogateway_twocheckout.php:120 #: classes/gateways/class.pmprogateway_paypalexpress.php:180 +#: classes/gateways/class.pmprogateway_paypalexpress.php:181 +#: classes/gateways/class.pmprogateway_twocheckout.php:127 msgid "API Username" msgstr "" @@ -3234,6 +3508,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalstandard.php:170 #: classes/gateways/class.pmprogateway_twocheckout.php:129 #: classes/gateways/class.pmprogateway_paypalexpress.php:188 +#: classes/gateways/class.pmprogateway_paypalexpress.php:189 +#: classes/gateways/class.pmprogateway_twocheckout.php:136 msgid "API Password" msgstr "" @@ -3242,6 +3518,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:186 #: classes/gateways/class.pmprogateway_paypalstandard.php:178 #: classes/gateways/class.pmprogateway_paypalexpress.php:196 +#: classes/gateways/class.pmprogateway_paypalexpress.php:197 msgid "API Signature" msgstr "" @@ -3261,6 +3538,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:570 #: classes/gateways/class.pmprogateway_stripe.php:576 #: classes/gateways/class.pmprogateway_stripe.php:340 +#: classes/gateways/class.pmprogateway_stripe.php:366 msgid "Secret Key" msgstr "" @@ -3270,6 +3548,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:554 #: classes/gateways/class.pmprogateway_stripe.php:560 #: classes/gateways/class.pmprogateway_stripe.php:324 +#: classes/gateways/class.pmprogateway_stripe.php:350 msgid "Publishable Key" msgstr "" @@ -3277,26 +3556,31 @@ msgstr "" #: adminpages/paymentsettings.php:374 #: classes/gateways/class.pmprogateway_braintree.php:313 #: classes/gateways/class.pmprogateway_cybersource.php:94 +#: classes/gateways/class.pmprogateway_braintree.php:320 msgid "Merchant ID" msgstr "" #: adminpages/paymentsettings.php:316 #: classes/gateways/class.pmprogateway_braintree.php:321 +#: classes/gateways/class.pmprogateway_braintree.php:328 msgid "Public Key" msgstr "" #: adminpages/paymentsettings.php:324 #: classes/gateways/class.pmprogateway_braintree.php:329 +#: classes/gateways/class.pmprogateway_braintree.php:336 msgid "Private Key" msgstr "" #: adminpages/paymentsettings.php:332 #: classes/gateways/class.pmprogateway_braintree.php:337 +#: classes/gateways/class.pmprogateway_braintree.php:344 msgid "Client-Side Encryption Key" msgstr "" #: adminpages/paymentsettings.php:365 #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "" @@ -3312,12 +3596,14 @@ msgstr "" #: adminpages/paymentsettings.php:400 #: adminpages/paymentsettings.php:199 #: adminpages/paymentsettings.php:206 +#: adminpages/paymentsettings.php:204 msgid "Currency" msgstr "" #: adminpages/paymentsettings.php:420 #: adminpages/paymentsettings.php:220 #: adminpages/paymentsettings.php:227 +#: adminpages/paymentsettings.php:225 msgid "Accepted Credit Card Types" msgstr "" @@ -3337,6 +3623,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:629 #: classes/gateways/class.pmprogateway_stripe.php:635 #: classes/gateways/class.pmprogateway_stripe.php:399 +#: adminpages/orders.php:570 +#: classes/gateways/class.pmprogateway_stripe.php:425 msgid "Show Billing Address Fields" msgstr "" @@ -3346,30 +3634,35 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:638 #: classes/gateways/class.pmprogateway_stripe.php:644 #: classes/gateways/class.pmprogateway_stripe.php:408 +#: classes/gateways/class.pmprogateway_stripe.php:434 msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.
If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "" #: adminpages/paymentsettings.php:457 #: adminpages/paymentsettings.php:234 #: adminpages/paymentsettings.php:241 +#: adminpages/paymentsettings.php:239 msgid "Sales Tax" msgstr "" #: adminpages/paymentsettings.php:460 #: adminpages/paymentsettings.php:237 #: adminpages/paymentsettings.php:244 +#: adminpages/paymentsettings.php:242 msgid "Tax State" msgstr "" #: adminpages/paymentsettings.php:461 #: adminpages/paymentsettings.php:238 #: adminpages/paymentsettings.php:245 +#: adminpages/paymentsettings.php:243 msgid "abbreviation, e.g. \"PA\"" msgstr "" #: adminpages/paymentsettings.php:463 #: adminpages/paymentsettings.php:240 #: adminpages/paymentsettings.php:247 +#: adminpages/paymentsettings.php:245 msgid "decimal, e.g. \"0.06\"" msgstr "" @@ -3380,18 +3673,21 @@ msgstr "" #: adminpages/paymentsettings.php:469 #: adminpages/paymentsettings.php:253 #: adminpages/paymentsettings.php:266 +#: adminpages/paymentsettings.php:264 msgid "Force SSL" msgstr "" #: adminpages/paymentsettings.php:475 #: adminpages/paymentsettings.php:268 #: adminpages/paymentsettings.php:281 +#: adminpages/paymentsettings.php:279 msgid "Yes (with JavaScript redirects)" msgstr "" #: adminpages/paymentsettings.php:482 #: adminpages/paymentsettings.php:278 #: adminpages/paymentsettings.php:291 +#: adminpages/paymentsettings.php:289 msgid "SSL Seal Code" msgstr "" @@ -3408,6 +3704,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:205 #: classes/gateways/class.pmprogateway_paypalstandard.php:186 #: classes/gateways/class.pmprogateway_paypalexpress.php:215 +#: classes/gateways/class.pmprogateway_paypalexpress.php:216 msgid "IPN Handler URL" msgstr "" @@ -3415,11 +3712,13 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:199 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 #: classes/gateways/class.pmprogateway_paypalexpress.php:218 +#: classes/gateways/class.pmprogateway_paypalexpress.php:219 msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to " msgstr "" #: adminpages/paymentsettings.php:507 #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "" @@ -3440,6 +3739,7 @@ msgstr "" #: adminpages/paymentsettings.php:523 #: adminpages/paymentsettings.php:531 #: classes/gateways/class.pmprogateway_braintree.php:345 +#: classes/gateways/class.pmprogateway_braintree.php:352 msgid "Web Hook URL" msgstr "" @@ -3449,6 +3749,7 @@ msgstr "" #: adminpages/paymentsettings.php:535 #: classes/gateways/class.pmprogateway_braintree.php:348 +#: classes/gateways/class.pmprogateway_braintree.php:355 msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to" msgstr "" @@ -3463,6 +3764,9 @@ msgstr "" #: adminpages/pagesettings.php:508 #: adminpages/pagesettings.php:512 #: adminpages/paymentsettings.php:316 +#: adminpages/advancedsettings.php:574 +#: adminpages/pagesettings.php:511 +#: adminpages/paymentsettings.php:314 msgid "Save Settings" msgstr "" @@ -3584,6 +3888,7 @@ msgstr "" #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "" @@ -3591,6 +3896,7 @@ msgstr "" #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "" @@ -3598,6 +3904,7 @@ msgstr "" #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "" @@ -3605,6 +3912,7 @@ msgstr "" #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "" @@ -3643,6 +3951,16 @@ msgstr "" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "" @@ -3681,6 +3999,16 @@ msgstr "" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:246 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "" @@ -3711,6 +4039,13 @@ msgstr "" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:248 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "" @@ -3718,6 +4053,7 @@ msgstr "" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "" @@ -3725,6 +4061,7 @@ msgstr "" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "" @@ -3732,6 +4069,7 @@ msgstr "" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "" @@ -3739,6 +4077,7 @@ msgstr "" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "" @@ -3746,6 +4085,7 @@ msgstr "" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "" @@ -3753,6 +4093,7 @@ msgstr "" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "" @@ -3817,6 +4158,7 @@ msgstr "" #: adminpages/discountcodes.php:796 #: adminpages/discountcodes.php:354 #: adminpages/discountcodes.php:798 +#: adminpages/discountcodes.php:799 msgid "Code not found." msgstr "" @@ -3832,6 +4174,7 @@ msgstr "" #: adminpages/discountcodes.php:735 #: adminpages/discountcodes.php:377 #: adminpages/discountcodes.php:737 +#: adminpages/discountcodes.php:738 msgid "Add New Discount Code" msgstr "" @@ -3843,6 +4186,7 @@ msgstr "" #: adminpages/discountcodes.php:489 #: includes/profile.php:501 #: includes/profile.php:497 +#: includes/profile.php:537 msgid "Start Date" msgstr "" @@ -3852,6 +4196,7 @@ msgstr "" #: adminpages/discountcodes.php:787 #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:789 +#: adminpages/discountcodes.php:790 msgid "Uses" msgstr "" @@ -3868,12 +4213,14 @@ msgstr "" #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "" #: adminpages/discountcodes.php:535 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "" @@ -3881,12 +4228,14 @@ msgstr "" #: adminpages/reports/login.php:81 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "" #: adminpages/discountcodes.php:549 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "" @@ -3894,6 +4243,7 @@ msgstr "" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "" @@ -3924,6 +4274,7 @@ msgstr "" #: adminpages/emailsettings.php:61 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "" @@ -3933,11 +4284,13 @@ msgstr "" #: adminpages/emailsettings.php:69 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "" #: adminpages/emailsettings.php:77 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "" @@ -3993,72 +4346,84 @@ msgstr "" #: adminpages/advancedsettings.php:35 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "" #: adminpages/advancedsettings.php:85 #: adminpages/advancedsettings.php:164 #: adminpages/advancedsettings.php:166 +#: adminpages/advancedsettings.php:173 msgid "Message for Logged-in Non-members" msgstr "" #: adminpages/advancedsettings.php:89 #: adminpages/advancedsettings.php:168 #: adminpages/advancedsettings.php:170 +#: adminpages/advancedsettings.php:177 msgid "This message replaces the post content for non-members. Available variables" msgstr "" #: adminpages/advancedsettings.php:94 #: adminpages/advancedsettings.php:173 #: adminpages/advancedsettings.php:175 +#: adminpages/advancedsettings.php:182 msgid "Message for Logged-out Users" msgstr "" #: adminpages/advancedsettings.php:98 #: adminpages/advancedsettings.php:177 #: adminpages/advancedsettings.php:179 +#: adminpages/advancedsettings.php:186 msgid "This message replaces the post content for logged-out visitors." msgstr "" #: adminpages/advancedsettings.php:103 #: adminpages/advancedsettings.php:182 #: adminpages/advancedsettings.php:184 +#: adminpages/advancedsettings.php:191 msgid "Message for RSS Feed" msgstr "" #: adminpages/advancedsettings.php:107 #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "This message replaces the post content in RSS feeds." msgstr "" #: adminpages/advancedsettings.php:113 #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:212 +#: adminpages/advancedsettings.php:219 msgid "Show Excerpts to Non-Members?" msgstr "" #: adminpages/advancedsettings.php:117 #: adminpages/advancedsettings.php:214 #: adminpages/advancedsettings.php:216 +#: adminpages/advancedsettings.php:223 msgid "No - Hide excerpts." msgstr "" #: adminpages/advancedsettings.php:118 #: adminpages/advancedsettings.php:215 #: adminpages/advancedsettings.php:217 +#: adminpages/advancedsettings.php:224 msgid "Yes - Show excerpts." msgstr "" #: adminpages/advancedsettings.php:129 #: adminpages/advancedsettings.php:338 #: adminpages/advancedsettings.php:353 +#: adminpages/advancedsettings.php:360 msgid "Hide Ads From All Members" msgstr "" #: adminpages/advancedsettings.php:130 #: adminpages/advancedsettings.php:339 #: adminpages/advancedsettings.php:354 +#: adminpages/advancedsettings.php:361 msgid "Hide Ads From Certain Members" msgstr "" @@ -4069,12 +4434,14 @@ msgstr "" #: adminpages/advancedsettings.php:138 #: adminpages/advancedsettings.php:346 #: adminpages/advancedsettings.php:361 +#: adminpages/advancedsettings.php:368 msgid "To hide ads in your template code, use code like the following" msgstr "" #: adminpages/advancedsettings.php:149 #: adminpages/advancedsettings.php:355 #: adminpages/advancedsettings.php:370 +#: adminpages/advancedsettings.php:377 msgid "Choose Levels to Hide Ads From" msgstr "" @@ -4089,12 +4456,14 @@ msgstr "" #: adminpages/advancedsettings.php:390 #: adminpages/advancedsettings.php:392 #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "multisite only" msgstr "" #: adminpages/advancedsettings.php:195 #: adminpages/advancedsettings.php:241 #: adminpages/advancedsettings.php:256 +#: adminpages/advancedsettings.php:263 msgid "Use reCAPTCHA?" msgstr "" @@ -4106,18 +4475,21 @@ msgstr "" #: adminpages/advancedsettings.php:201 #: adminpages/advancedsettings.php:247 #: adminpages/advancedsettings.php:262 +#: adminpages/advancedsettings.php:269 msgid "Yes - All memberships." msgstr "" #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "A free reCAPTCHA key is required." msgstr "" #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "Click here to signup for reCAPTCHA" msgstr "" @@ -4132,12 +4504,14 @@ msgstr "" #: adminpages/advancedsettings.php:218 #: adminpages/advancedsettings.php:229 #: adminpages/advancedsettings.php:231 +#: adminpages/advancedsettings.php:238 msgid "Require Terms of Service on signups?" msgstr "" #: adminpages/advancedsettings.php:225 #: adminpages/advancedsettings.php:236 #: adminpages/advancedsettings.php:238 +#: adminpages/advancedsettings.php:245 msgid "If yes, create a WordPress page containing your TOS agreement and assign it using the dropdown above." msgstr "" @@ -4155,6 +4529,8 @@ msgstr "" #: adminpages/reports/sales.php:295 #: adminpages/advancedsettings.php:322 #: adminpages/reports/sales.php:313 +#: adminpages/advancedsettings.php:329 +#: adminpages/reports/memberships.php:332 msgid "Daily" msgstr "" @@ -4165,6 +4541,8 @@ msgstr "" #: adminpages/reports/sales.php:296 #: adminpages/advancedsettings.php:328 #: adminpages/reports/sales.php:314 +#: adminpages/advancedsettings.php:335 +#: adminpages/reports/memberships.php:333 msgid "Monthly" msgstr "" @@ -4173,11 +4551,13 @@ msgstr "" #: adminpages/reports/memberships.php:335 #: adminpages/reports/sales.php:297 #: adminpages/reports/sales.php:315 +#: adminpages/reports/memberships.php:334 msgid "Annual" msgstr "" #: adminpages/reports/memberships.php:299 #: adminpages/reports/memberships.php:339 +#: adminpages/reports/memberships.php:338 msgid "Signups vs. Cancellations" msgstr "" @@ -4186,6 +4566,7 @@ msgstr "" #: adminpages/reports/memberships.php:385 #: adminpages/reports/sales.php:342 #: adminpages/reports/sales.php:360 +#: adminpages/reports/memberships.php:384 msgid "Generate Report" msgstr "" @@ -4255,6 +4636,7 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:234 #: classes/class-pmpro-members-list-table.php:233 #: adminpages/reports/login.php:105 +#: adminpages/reports/login.php:111 msgid "All Users" msgstr "" @@ -4464,6 +4846,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:401 #: classes/gateways/class.pmprogateway_paypalexpress.php:352 #: classes/gateways/class.pmprogateway_paypalexpress.php:411 +#: classes/gateways/class.pmprogateway_paypalexpress.php:353 +#: classes/gateways/class.pmprogateway_paypalexpress.php:412 msgid "The PayPal Token was lost." msgstr "" @@ -4514,6 +4898,7 @@ msgstr "" #: classes/class.pmproemail.php:907 #: includes/email.php:459 #: classes/class.pmproemail.php:900 +#: classes/class.pmproemail.php:1033 msgid "Your membership has been cancelled." msgstr "" @@ -4572,6 +4957,18 @@ msgstr "" #: js/blocks.build.js:1342 #: js/blocks.build.js:1502 #: classes/class-pmpro-admin-activity-email.php:349 +#: blocks/account-invoices-section/block.js:47 +#: blocks/account-links-section/block.js:47 +#: blocks/account-membership-section/block.js:45 +#: blocks/account-page/block.js:72 +#: blocks/account-profile-section/block.js:45 +#: blocks/billing-page/block.js:44 +#: blocks/cancel-page/block.js:44 +#: blocks/checkout-page/block.js:58 +#: blocks/confirmation-page/block.js:46 +#: blocks/invoice-page/block.js:45 +#: blocks/levels-page/block.js:44 +#: blocks/member-profile-edit/block.js:37 msgid "Paid Memberships Pro" msgstr "" @@ -4606,6 +5003,7 @@ msgstr "" #: adminpages/orders.php:1014 #: includes/metaboxes.php:19 #: adminpages/orders.php:1015 +#: adminpages/orders.php:1103 msgid "All" msgstr "" @@ -4704,6 +5102,18 @@ msgstr "" #: adminpages/orders.php:913 #: adminpages/orders.php:1537 #: adminpages/orders.php:1546 +#: adminpages/orders.php:704 +#: adminpages/orders.php:996 +#: adminpages/orders.php:1689 +#: adminpages/orders.php:1698 +#: classes/class.pmproemail.php:261 +#: classes/class.pmproemail.php:327 +#: includes/profile.php:167 +#: includes/profile.php:483 +#: includes/profile.php:484 +#: includes/profile.php:556 +#: includes/profile.php:557 +#: includes/profile.php:558 msgid "N/A" msgstr "" @@ -4732,6 +5142,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:76 #: classes/gateways/class.pmprogateway_stripe.php:82 #: classes/gateways/class.pmprogateway_stripe.php:1338 +#: classes/gateways/class.pmprogateway_stripe.php:1463 msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade." msgstr "" @@ -4772,6 +5183,7 @@ msgstr "" #: includes/adminpages.php:52 #: includes/adminpages.php:158 #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Members" msgstr "" @@ -4816,47 +5228,56 @@ msgstr "" #: adminpages/advancedsettings.php:106 #: includes/updates/upgrade_1.php:7 #: adminpages/advancedsettings.php:108 +#: adminpages/advancedsettings.php:116 msgid "This content is for !!levels!! members only.
Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:116 #: includes/updates/upgrade_1.php:13 #: adminpages/advancedsettings.php:118 +#: adminpages/advancedsettings.php:126 msgid "This content is for members only. Visit the site and log in/register to read." msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -4864,113 +5285,135 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:199 #: adminpages/advancedsettings.php:201 +#: adminpages/advancedsettings.php:208 msgid "Filter searches and archives?" msgstr "" #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:205 +#: adminpages/advancedsettings.php:212 msgid "No - Non-members will see restricted posts/pages in searches and archives." msgstr "" #: adminpages/advancedsettings.php:204 #: adminpages/advancedsettings.php:206 +#: adminpages/advancedsettings.php:213 msgid "Yes - Only members will see restricted posts/pages in searches and archives." msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:333 #: adminpages/advancedsettings.php:348 +#: adminpages/advancedsettings.php:355 msgid "Hide Ads From Members?" msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -4996,6 +5439,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -5059,6 +5503,7 @@ msgstr "" #: adminpages/license.php:49 #: adminpages/dashboard.php:178 #: adminpages/license.php:41 +#: adminpages/license.php:53 msgid "Your license is invalid or expired." msgstr "" @@ -5073,6 +5518,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -5178,6 +5624,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -5221,6 +5668,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -5233,31 +5681,39 @@ msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 msgid "%d discount codes found." msgstr "" @@ -5283,6 +5739,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -5301,6 +5764,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -5318,6 +5787,11 @@ msgstr "" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "" @@ -5326,23 +5800,28 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "" #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -5383,192 +5862,241 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:960 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:170 #: includes/privacy.php:363 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -5598,6 +6126,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "" @@ -5615,12 +6144,14 @@ msgstr "" #: adminpages/license.php:59 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -5628,14 +6159,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -5652,35 +6186,44 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -5690,6 +6233,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -5697,6 +6242,7 @@ msgstr "" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -5704,6 +6250,7 @@ msgstr "" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "" @@ -5711,6 +6258,7 @@ msgstr "" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "" @@ -5718,6 +6266,7 @@ msgstr "" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "" @@ -5725,6 +6274,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -5732,6 +6282,7 @@ msgstr "" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "" @@ -5739,6 +6290,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -5746,6 +6298,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -5753,6 +6306,7 @@ msgstr "" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "" @@ -5760,6 +6314,7 @@ msgstr "" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "" @@ -5767,6 +6322,7 @@ msgstr "" #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "" @@ -5777,6 +6333,7 @@ msgstr "" #: adminpages/orders.php:1077 #: adminpages/orders.php:1069 #: adminpages/orders.php:1070 +#: adminpages/orders.php:1158 msgid "This Month" msgstr "" @@ -5784,6 +6341,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -5793,6 +6351,7 @@ msgstr "" #: adminpages/orders.php:1081 #: adminpages/orders.php:1073 #: adminpages/orders.php:1074 +#: adminpages/orders.php:1162 msgid "This Year" msgstr "" @@ -5800,6 +6359,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -5807,6 +6367,7 @@ msgstr "" #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "" @@ -5887,24 +6448,28 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" @@ -5931,60 +6496,77 @@ msgstr "" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -5994,6 +6576,8 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" @@ -6006,12 +6590,16 @@ msgstr "" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -6019,24 +6607,28 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "" @@ -6046,31 +6638,37 @@ msgstr "" #: adminpages/paymentsettings.php:122 #: adminpages/paymentsettings.php:127 +#: adminpages/paymentsettings.php:125 msgid "Choose a Gateway" msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" #: adminpages/paymentsettings.php:194 #: adminpages/paymentsettings.php:201 +#: adminpages/paymentsettings.php:199 msgid "Currency and Tax Settings" msgstr "" #: adminpages/paymentsettings.php:215 #: adminpages/paymentsettings.php:222 +#: adminpages/paymentsettings.php:220 msgid "Not all currencies will be supported by every gateway. Please check with your gateway." msgstr "" #: adminpages/paymentsettings.php:239 #: adminpages/paymentsettings.php:246 +#: adminpages/paymentsettings.php:244 msgid "Tax Rate" msgstr "" @@ -6080,11 +6678,13 @@ msgstr "" #: adminpages/paymentsettings.php:260 #: adminpages/paymentsettings.php:273 +#: adminpages/paymentsettings.php:271 msgid "Your Site URL starts with https:// and so PMPro will allow your entire site to be served over HTTPS." msgstr "" #: adminpages/paymentsettings.php:270 #: adminpages/paymentsettings.php:283 +#: adminpages/paymentsettings.php:281 msgid "Recommended: Yes. Try the JavaScript redirects setting if you are having issues with infinite redirect loops." msgstr "" @@ -6094,16 +6694,19 @@ msgstr "" #: adminpages/paymentsettings.php:287 #: adminpages/paymentsettings.php:306 +#: adminpages/paymentsettings.php:304 msgid "Extra HTTPS URL Filter" msgstr "" #: adminpages/paymentsettings.php:290 #: adminpages/paymentsettings.php:309 +#: adminpages/paymentsettings.php:307 msgid "Pass all generated HTML through a URL filter to add HTTPS to URLs used on secure pages. Check this if you are using SSL and have warnings on your checkout pages." msgstr "" #: adminpages/reports.php:19 #: adminpages/reports.php:18 +#: adminpages/reports.php:21 msgid "Back to Reports Dashboard" msgstr "" @@ -6131,6 +6734,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -6141,6 +6745,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -6174,6 +6779,7 @@ msgstr "" #: adminpages/reports/memberships.php:52 #: adminpages/reports/sales.php:53 #: adminpages/reports/sales.php:542 +#: adminpages/reports/sales.php:543 msgid "All Time" msgstr "" @@ -6216,29 +6822,35 @@ msgid "All Cancellations" msgstr "" #: adminpages/reports/memberships.php:338 +#: adminpages/reports/memberships.php:337 msgid "Signups vs. All Cancellations" msgstr "" #: adminpages/reports/memberships.php:340 +#: adminpages/reports/memberships.php:339 msgid "Signups vs. Expirations" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -6457,63 +7069,77 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:962 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:463 #: classes/class.pmproemail.php:475 #: classes/class.pmproemail.php:468 +#: classes/class.pmproemail.php:601 msgid "Your billing information has been updated at %s" msgstr "" #: classes/class.pmproemail.php:513 #: classes/class.pmproemail.php:525 #: classes/class.pmproemail.php:518 +#: classes/class.pmproemail.php:651 msgid "Billing information has been updated for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -6526,30 +7152,36 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -6557,6 +7189,7 @@ msgstr "" #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:167 +#: paid-memberships-pro.php:173 msgid "Authorize.net" msgstr "" @@ -6572,14 +7205,17 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:91 #: classes/gateways/class.pmprogateway_stripe.php:97 #: classes/gateways/class.pmprogateway_stripe.php:1353 +#: classes/gateways/class.pmprogateway_stripe.php:1478 msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" @@ -6587,10 +7223,13 @@ msgstr "" #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:167 #: paid-memberships-pro.php:168 +#: classes/gateways/class.pmprogateway_braintree.php:258 +#: paid-memberships-pro.php:174 msgid "Braintree Payments" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:308 +#: classes/gateways/class.pmprogateway_braintree.php:315 msgid "Braintree Settings" msgstr "" @@ -6604,21 +7243,30 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:750 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -6626,11 +7274,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -6932,6 +7583,7 @@ msgstr "" #: paid-memberships-pro.php:161 #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:164 +#: paid-memberships-pro.php:170 msgid "PayPal Website Payments Pro" msgstr "" @@ -6939,6 +7591,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:141 #: classes/gateways/class.pmprogateway_paypalstandard.php:133 #: classes/gateways/class.pmprogateway_paypalexpress.php:151 +#: classes/gateways/class.pmprogateway_paypalexpress.php:152 msgid "PayPal Settings" msgstr "" @@ -6946,12 +7599,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:185 #: classes/gateways/class.pmprogateway_paypalexpress.php:194 #: classes/gateways/class.pmprogateway_paypalexpress.php:204 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 msgid "Confirmation Step" msgstr "" @@ -6963,6 +7618,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:854 #: classes/gateways/class.pmprogateway_paypal.php:726 #: classes/gateways/class.pmprogateway_paypalexpress.php:865 +#: classes/gateways/class.pmprogateway_paypalexpress.php:866 msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward." msgstr "" @@ -6971,11 +7627,14 @@ msgstr "" #: paid-memberships-pro.php:162 #: classes/gateways/class.pmprogateway_paypalexpress.php:94 #: paid-memberships-pro.php:163 +#: classes/gateways/class.pmprogateway_paypalexpress.php:95 +#: paid-memberships-pro.php:169 msgid "PayPal Express" msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -6984,6 +7643,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -6992,6 +7652,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -6999,6 +7660,7 @@ msgstr "" #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:166 +#: paid-memberships-pro.php:172 msgid "PayPal Standard" msgstr "" @@ -7016,6 +7678,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:258 #: classes/gateways/class.pmprogateway_stripe.php:216 #: paid-memberships-pro.php:162 +#: classes/gateways/class.pmprogateway_stripe.php:234 +#: paid-memberships-pro.php:168 msgid "Stripe" msgstr "" @@ -7027,6 +7691,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -7035,6 +7700,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -7046,6 +7712,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -7057,6 +7724,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -7068,6 +7736,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -7076,6 +7745,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -7087,6 +7757,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -7098,6 +7769,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -7106,6 +7778,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -7117,6 +7790,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -7125,6 +7799,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -7148,6 +7823,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -7164,6 +7841,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -7172,6 +7851,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -7180,6 +7860,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -7188,6 +7869,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -7195,6 +7877,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -7203,6 +7886,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -7216,6 +7900,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -7224,6 +7910,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -7232,6 +7919,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -7241,6 +7929,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -7258,6 +7948,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -7266,6 +7958,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -7287,6 +7980,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -7295,6 +7990,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -7303,6 +7999,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -7311,6 +8008,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -7319,6 +8017,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -7327,6 +8026,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -7335,6 +8035,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -7343,6 +8044,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -7351,6 +8053,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -7359,6 +8062,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -7367,6 +8071,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -7379,6 +8084,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -7387,6 +8093,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -7395,6 +8102,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -7403,6 +8111,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -7411,6 +8120,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -7429,6 +8139,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "" @@ -7481,6 +8192,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "" @@ -7492,6 +8205,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "" @@ -7501,6 +8215,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "" @@ -7510,6 +8225,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "" @@ -7527,6 +8243,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "" @@ -7538,6 +8256,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 msgid "Error: Unkown error while refunding charge #%s" msgstr "" @@ -7547,6 +8266,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -7567,6 +8287,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -7575,6 +8299,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -7584,6 +8309,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -7593,6 +8319,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -7604,6 +8331,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -7615,6 +8343,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -7626,6 +8355,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -7637,34 +8367,42 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:59 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "" @@ -7707,6 +8445,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -7719,6 +8458,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -7731,6 +8471,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -8968,6 +9709,7 @@ msgstr "" #: includes/email-templates.php:68 #: shortcodes/pmpro_account.php:43 +#: adminpages/orders.php:1431 msgid "Billing" msgstr "" @@ -9558,14 +10300,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -9574,18 +10319,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -9597,6 +10346,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -9742,6 +10492,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -9871,6 +10622,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -9878,6 +10630,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -9909,6 +10662,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -9918,6 +10672,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -9925,6 +10680,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -10029,6 +10785,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -10036,6 +10794,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -10043,6 +10802,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -10050,6 +10810,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -10121,6 +10882,7 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" @@ -10129,6 +10891,8 @@ msgstr "" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "" @@ -10139,121 +10903,142 @@ msgstr "" #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -10265,6 +11050,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -10393,18 +11181,21 @@ msgstr "" #: paid-memberships-pro.php:162 #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:165 +#: paid-memberships-pro.php:171 msgid "PayPal Payflow Pro/PayPal Pro" msgstr "" #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:168 #: paid-memberships-pro.php:169 +#: paid-memberships-pro.php:175 msgid "Cybersource" msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -10454,6 +11245,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -10492,6 +11284,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -10507,6 +11314,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -10522,6 +11330,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -10554,6 +11363,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -10566,6 +11376,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -10591,11 +11402,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -10603,6 +11419,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -10610,6 +11427,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -10632,6 +11450,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -10657,6 +11476,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -10664,6 +11484,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -10696,6 +11517,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -10718,6 +11540,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -10728,11 +11551,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -10752,6 +11586,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -10765,6 +11600,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -10774,6 +11610,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -10783,10 +11620,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -10797,6 +11636,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -10804,6 +11644,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -10813,6 +11654,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -10822,12 +11664,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -10835,6 +11680,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -10843,6 +11690,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -10850,6 +11698,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -10857,27 +11706,32 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: paid-memberships-pro.php:194 #: paid-memberships-pro.php:195 +#: paid-memberships-pro.php:201 msgid "Once a month" msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -10935,12 +11789,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -10950,6 +11806,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -10959,6 +11816,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -10968,54 +11826,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -11026,42 +11894,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -11076,51 +11954,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -11128,6 +12018,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -11135,6 +12026,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -11142,6 +12034,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -11150,6 +12043,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -11163,6 +12058,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -11183,19 +12079,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -11205,31 +12105,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -11259,25 +12167,30 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "" @@ -11347,26 +12260,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -11375,51 +12294,62 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -11433,19 +12363,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -11476,3 +12410,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-es_CL.mo b/languages/paid-memberships-pro-es_CL.mo index c310d489b..91f0303f7 100644 Binary files a/languages/paid-memberships-pro-es_CL.mo and b/languages/paid-memberships-pro-es_CL.mo differ diff --git a/languages/paid-memberships-pro-es_CL.po b/languages/paid-memberships-pro-es_CL.po index f907c187d..9fa6a52b6 100644 --- a/languages/paid-memberships-pro-es_CL.po +++ b/languages/paid-memberships-pro-es_CL.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:20:30+00:00\n" +"POT-Creation-Date: 2022-05-05T20:37:17+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -52,6 +52,7 @@ msgstr "Ajustes de Email" #: adminpages/advancedsettings.php:132 #: includes/adminpages.php:73 #: adminpages/advancedsettings.php:134 +#: adminpages/advancedsettings.php:142 msgid "Advanced Settings" msgstr "Opciones Avanzadas" @@ -69,6 +70,7 @@ msgstr "Add Ons" #: includes/adminpages.php:74 #: adminpages/memberslist.php:25 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "Lista de Miembros" @@ -95,6 +97,8 @@ msgstr "Informes" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "Órdenes" @@ -124,6 +128,7 @@ msgstr "Niveles de Membresía" #: includes/cleanup.php:24 #: classes/class.memberorder.php:959 #: classes/class.memberorder.php:1001 +#: classes/class.memberorder.php:1010 #, php-format msgid "There was an error canceling the subscription for user with ID=%s. You will want to check your payment gateway to see if their subscription is still active." msgstr "Hubo un error cancelando la subscripcion para el usuario con ID=%s. Deberías comprobar tu procesamiento de pagos (payment gateway) y ver si tu suscripción sigue activa." @@ -415,6 +420,7 @@ msgstr "y" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "Date de alta en !!name!! ya" @@ -480,6 +486,8 @@ msgstr "Requerir membresía" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "Nivel de membresía" @@ -502,6 +510,9 @@ msgstr "Nivel actual" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "Ninguno" @@ -523,6 +534,8 @@ msgstr "El usuario no paga." #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "Expira" @@ -561,6 +574,16 @@ msgstr "Expira" #: classes/gateways/class.pmprogateway_stripe.php:404 #: classes/gateways/class.pmprogateway_stripe.php:418 #: adminpages/paymentsettings.php:279 +#: adminpages/advancedsettings.php:254 +#: adminpages/advancedsettings.php:267 +#: adminpages/advancedsettings.php:359 +#: adminpages/advancedsettings.php:418 +#: adminpages/advancedsettings.php:526 +#: adminpages/membershiplevels.php:939 +#: adminpages/paymentsettings.php:277 +#: classes/gateways/class.pmprogateway_stripe.php:430 +#: classes/gateways/class.pmprogateway_stripe.php:444 +#: includes/profile.php:78 msgid "No" msgstr "No" @@ -592,6 +615,12 @@ msgstr "No" #: classes/gateways/class.pmprogateway_stripe.php:406 #: classes/gateways/class.pmprogateway_stripe.php:420 #: adminpages/paymentsettings.php:280 +#: adminpages/advancedsettings.php:419 +#: adminpages/membershiplevels.php:934 +#: adminpages/paymentsettings.php:278 +#: classes/gateways/class.pmprogateway_stripe.php:432 +#: classes/gateways/class.pmprogateway_stripe.php:446 +#: includes/profile.php:79 msgid "Yes" msgstr "Si" @@ -736,6 +765,11 @@ msgstr "Pasarela de pagos & SSL" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "Email" @@ -747,72 +781,84 @@ msgstr "Avanzado" #: adminpages/advancedsettings.php:35 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "Tus opciones avanzadas han sido actualizadas." #: adminpages/advancedsettings.php:85 #: adminpages/advancedsettings.php:164 #: adminpages/advancedsettings.php:166 +#: adminpages/advancedsettings.php:173 msgid "Message for Logged-in Non-members" msgstr "Mensaje para no-miembros logeados" #: adminpages/advancedsettings.php:89 #: adminpages/advancedsettings.php:168 #: adminpages/advancedsettings.php:170 +#: adminpages/advancedsettings.php:177 msgid "This message replaces the post content for non-members. Available variables" msgstr "Este mensaje reemplaza el contenido de la entrada para no-miembros. Variables disponibles" #: adminpages/advancedsettings.php:94 #: adminpages/advancedsettings.php:173 #: adminpages/advancedsettings.php:175 +#: adminpages/advancedsettings.php:182 msgid "Message for Logged-out Users" msgstr "Mensaje para usuarios desconectados (deslogeados)" #: adminpages/advancedsettings.php:98 #: adminpages/advancedsettings.php:177 #: adminpages/advancedsettings.php:179 +#: adminpages/advancedsettings.php:186 msgid "This message replaces the post content for logged-out visitors." msgstr "Este mensaje reemplaza el contenido de la entrada para visitantes no logeados" #: adminpages/advancedsettings.php:103 #: adminpages/advancedsettings.php:182 #: adminpages/advancedsettings.php:184 +#: adminpages/advancedsettings.php:191 msgid "Message for RSS Feed" msgstr "Mensaje para Feed RSS" #: adminpages/advancedsettings.php:107 #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "This message replaces the post content in RSS feeds." msgstr "Este mensaje reemplaza el contenido de la entrada en los feeds RSS" #: adminpages/advancedsettings.php:113 #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:212 +#: adminpages/advancedsettings.php:219 msgid "Show Excerpts to Non-Members?" msgstr "Mostrar Extracto a no miembros?" #: adminpages/advancedsettings.php:117 #: adminpages/advancedsettings.php:214 #: adminpages/advancedsettings.php:216 +#: adminpages/advancedsettings.php:223 msgid "No - Hide excerpts." msgstr "No - Esconder Extracto." #: adminpages/advancedsettings.php:118 #: adminpages/advancedsettings.php:215 #: adminpages/advancedsettings.php:217 +#: adminpages/advancedsettings.php:224 msgid "Yes - Show excerpts." msgstr "Si - Mostrar Extracto." #: adminpages/advancedsettings.php:129 #: adminpages/advancedsettings.php:338 #: adminpages/advancedsettings.php:353 +#: adminpages/advancedsettings.php:360 msgid "Hide Ads From All Members" msgstr "Esconder anuncios para todos los miembros" #: adminpages/advancedsettings.php:130 #: adminpages/advancedsettings.php:339 #: adminpages/advancedsettings.php:354 +#: adminpages/advancedsettings.php:361 msgid "Hide Ads From Certain Members" msgstr "Esconder anuncios para ciertos miembros" @@ -823,12 +869,14 @@ msgstr "Anuncios de los siguientes plugins serán automaticamente desactivados" #: adminpages/advancedsettings.php:138 #: adminpages/advancedsettings.php:346 #: adminpages/advancedsettings.php:361 +#: adminpages/advancedsettings.php:368 msgid "To hide ads in your template code, use code like the following" msgstr "Para esconder anuncios en el código de tus plantillas, usa codigo como el siguiente" #: adminpages/advancedsettings.php:149 #: adminpages/advancedsettings.php:355 #: adminpages/advancedsettings.php:370 +#: adminpages/advancedsettings.php:377 msgid "Choose Levels to Hide Ads From" msgstr "Elige niveles para los cuales esconder anuncios" @@ -843,12 +891,14 @@ msgstr "Redirigir todo el tráfico de la página de registro a /subscription/?" #: adminpages/advancedsettings.php:390 #: adminpages/advancedsettings.php:392 #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "multisite only" msgstr "Solo multisitio" #: adminpages/advancedsettings.php:195 #: adminpages/advancedsettings.php:241 #: adminpages/advancedsettings.php:256 +#: adminpages/advancedsettings.php:263 msgid "Use reCAPTCHA?" msgstr "Usar reCAPTCHA?" @@ -860,18 +910,21 @@ msgstr "Si - Solo membresías gratuitas." #: adminpages/advancedsettings.php:201 #: adminpages/advancedsettings.php:247 #: adminpages/advancedsettings.php:262 +#: adminpages/advancedsettings.php:269 msgid "Yes - All memberships." msgstr "Si - Todas las membresías." #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "A free reCAPTCHA key is required." msgstr "Una clave gratuita de reCAPTCHA es necesaria." #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "Click here to signup for reCAPTCHA" msgstr "Haz click aquí para registrarte en reCAPTCHA" @@ -886,12 +939,14 @@ msgstr "Clave privada reCAPTCHA" #: adminpages/advancedsettings.php:218 #: adminpages/advancedsettings.php:229 #: adminpages/advancedsettings.php:231 +#: adminpages/advancedsettings.php:238 msgid "Require Terms of Service on signups?" msgstr "Requerir términos de servicio durante el registro?" #: adminpages/advancedsettings.php:225 #: adminpages/advancedsettings.php:236 #: adminpages/advancedsettings.php:238 +#: adminpages/advancedsettings.php:245 msgid "If yes, create a WordPress page containing your TOS agreement and assign it using the dropdown above." msgstr "En caso positivo, crear una página WordPress que contiene tus términos de servicio y asignala usando el desplegable superior." @@ -906,6 +961,9 @@ msgstr "En caso positivo, crear una página WordPress que contiene tus términos #: adminpages/pagesettings.php:508 #: adminpages/pagesettings.php:512 #: adminpages/paymentsettings.php:316 +#: adminpages/advancedsettings.php:574 +#: adminpages/pagesettings.php:511 +#: adminpages/paymentsettings.php:314 msgid "Save Settings" msgstr "Guardar opciones" @@ -970,6 +1028,7 @@ msgstr "Error eliminado el cupón. Por favor intentelo de nuevo." #: adminpages/discountcodes.php:796 #: adminpages/discountcodes.php:354 #: adminpages/discountcodes.php:798 +#: adminpages/discountcodes.php:799 msgid "Code not found." msgstr "Cupón no encontrado." @@ -985,6 +1044,7 @@ msgstr "Edita el cupón de descuento." #: adminpages/discountcodes.php:735 #: adminpages/discountcodes.php:377 #: adminpages/discountcodes.php:737 +#: adminpages/discountcodes.php:738 msgid "Add New Discount Code" msgstr "Añade un nuevo cupón de descuento." @@ -1012,6 +1072,8 @@ msgstr "Añade un nuevo cupón de descuento." #: adminpages/reports/login.php:182 #: adminpages/templates/orders-email.php:49 #: adminpages/templates/orders-print.php:78 +#: adminpages/membershiplevels.php:345 +#: adminpages/membershiplevels.php:805 msgid "ID" msgstr "ID" @@ -1043,6 +1105,9 @@ msgstr "Esto será generado cuando guardes." #: adminpages/dashboard.php:292 #: adminpages/orders.php:429 #: adminpages/orders.php:1333 +#: adminpages/discountcodes.php:787 +#: adminpages/orders.php:475 +#: adminpages/orders.php:1426 msgid "Code" msgstr "Cupón" @@ -1054,6 +1119,7 @@ msgstr "Cupón" #: adminpages/discountcodes.php:489 #: includes/profile.php:501 #: includes/profile.php:497 +#: includes/profile.php:537 msgid "Start Date" msgstr "Fecha de inicio" @@ -1071,6 +1137,8 @@ msgstr "Fecha de inicio" #: classes/gateways/class.pmprogateway_stripe.php:1326 #: classes/gateways/class.pmprogateway_stripe.php:785 #: pages/billing.php:381 +#: classes/gateways/class.pmprogateway_braintree.php:486 +#: classes/gateways/class.pmprogateway_stripe.php:893 msgid "Expiration Date" msgstr "Fecha de expiración" @@ -1080,6 +1148,7 @@ msgstr "Fecha de expiración" #: adminpages/discountcodes.php:787 #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:789 +#: adminpages/discountcodes.php:790 msgid "Uses" msgstr "Usa" @@ -1096,6 +1165,7 @@ msgstr "Dejar en blanco para permitir uso ilimitado." #: adminpages/discountcodes.php:574 #: adminpages/membershiplevels.php:401 #: adminpages/discountcodes.php:576 +#: adminpages/membershiplevels.php:399 msgid "Initial Payment" msgstr "Pago inicial" @@ -1104,6 +1174,7 @@ msgstr "Pago inicial" #: adminpages/discountcodes.php:585 #: adminpages/membershiplevels.php:412 #: adminpages/discountcodes.php:587 +#: adminpages/membershiplevels.php:410 msgid "The initial amount collected at registration." msgstr "La cantidad inicial recogida durante el registro." @@ -1112,6 +1183,7 @@ msgstr "La cantidad inicial recogida durante el registro." #: adminpages/discountcodes.php:590 #: adminpages/membershiplevels.php:417 #: adminpages/discountcodes.php:592 +#: adminpages/membershiplevels.php:415 msgid "Recurring Subscription" msgstr "Subscripción recurrente." @@ -1120,6 +1192,7 @@ msgstr "Subscripción recurrente." #: adminpages/discountcodes.php:591 #: adminpages/membershiplevels.php:418 #: adminpages/discountcodes.php:593 +#: adminpages/membershiplevels.php:416 msgid "Check if this level has a recurring subscription payment." msgstr "Comprobar si el nivel tiene una subscripción de pago recurrente." @@ -1132,6 +1205,7 @@ msgstr "Cantidad a facturar" #: adminpages/discountcodes.php:618 #: adminpages/membershiplevels.php:446 #: adminpages/discountcodes.php:620 +#: adminpages/membershiplevels.php:444 msgid "The amount to be billed one cycle after the initial payment." msgstr "La cantidad que se cobrará un ciclo despues del pago inicial." @@ -1140,6 +1214,7 @@ msgstr "La cantidad que se cobrará un ciclo despues del pago inicial." #: adminpages/discountcodes.php:628 #: adminpages/membershiplevels.php:465 #: adminpages/discountcodes.php:630 +#: adminpages/membershiplevels.php:463 msgid "Billing Cycle Limit" msgstr "Límite del ciclo de facturación" @@ -1148,6 +1223,7 @@ msgstr "Límite del ciclo de facturación" #: adminpages/discountcodes.php:632 #: adminpages/membershiplevels.php:469 #: adminpages/discountcodes.php:634 +#: adminpages/membershiplevels.php:467 msgid "The total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "El número totalde ciclos recurrentes para este nivel, incluyendo el periodo de prueba ( si existe) pero no incluyendo el pago inicial. " @@ -1156,6 +1232,8 @@ msgstr "El número totalde ciclos recurrentes para este nivel, #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "Periodo de prueba personalizado" @@ -1164,6 +1242,8 @@ msgstr "Periodo de prueba personalizado" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "Seleccionar para añadir un periodo de prueba personalizado." @@ -1172,6 +1252,7 @@ msgstr "Seleccionar para añadir un periodo de prueba personalizado." #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "Cantidad a facturar por periodo de prueba" @@ -1180,6 +1261,7 @@ msgstr "Cantidad a facturar por periodo de prueba" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "por el/los primer/os" @@ -1188,6 +1270,7 @@ msgstr "por el/los primer/os" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "pagos de susbscipción" @@ -1196,6 +1279,7 @@ msgstr "pagos de susbscipción" #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "Expiración de la membresía" @@ -1209,6 +1293,8 @@ msgstr "Marcar para seleccionar una fecha de expiración para nuevos registros." #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "Expira en" @@ -1219,12 +1305,14 @@ msgstr "Cuanto tiempo ha de pasar antes de que la expiración expire. Ten en cue #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "Cupónes de descuento de membresías" #: adminpages/discountcodes.php:535 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "Buscar cupones de descuento" @@ -1232,12 +1320,14 @@ msgstr "Buscar cupones de descuento" #: adminpages/reports/login.php:81 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "Busqueda" #: adminpages/discountcodes.php:549 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "Estadísticas" @@ -1245,6 +1335,7 @@ msgstr "Estadísticas" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "Niveles" @@ -1264,6 +1355,7 @@ msgstr "Crea tu primer cupón de descuento ahora" #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "editar" @@ -1284,6 +1376,7 @@ msgstr "borrar" #: adminpages/emailsettings.php:61 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "Por defecto, emails generados por el sistema son enviades desde wordpress@tudominio.com. Puedes actualizar esta dirección desde usando los campos de aqui abajo." @@ -1293,11 +1386,13 @@ msgstr "Para modificar la apariencia de los emails generados por el sistema, añ #: adminpages/emailsettings.php:69 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "Campo desde del email" #: adminpages/emailsettings.php:77 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "Campo nombre del email" @@ -1413,23 +1508,29 @@ msgstr "Añade un nuevo nivel de membresía" #: adminpages/reports/history.php:184 #: adminpages/reports/login.php:181 #: adminpages/reports/login.php:184 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 msgid "Name" msgstr "Nombre" #: adminpages/membershiplevels.php:296 #: adminpages/addons.php:111 #: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "Descripción" #: adminpages/membershiplevels.php:314 #: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "Mensaje de confirmación" #: adminpages/membershiplevels.php:333 #: adminpages/membershiplevels.php:397 #: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "Detalles de facturación" @@ -1437,6 +1538,7 @@ msgstr "Detalles de facturación" #: adminpages/discountcodes.php:595 #: adminpages/membershiplevels.php:422 #: adminpages/discountcodes.php:597 +#: adminpages/membershiplevels.php:420 msgid "Billing Amount" msgstr "Cantidad a facturar" @@ -1452,6 +1554,8 @@ msgstr "Cantidad a facturar" #: classes/gateways/class.pmprogateway_stripe.php:2696 #: classes/gateways/class.pmprogateway_stripe.php:2698 #: classes/gateways/class.pmprogateway_stripe.php:2694 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "por" @@ -1470,6 +1574,10 @@ msgstr "por" #: classes/gateways/class.pmprogateway_stripe.php:2637 #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2635 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3092 msgid "Day(s)" msgstr "Día(s)" @@ -1488,6 +1596,10 @@ msgstr "Día(s)" #: classes/gateways/class.pmprogateway_stripe.php:2638 #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2636 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3093 msgid "Week(s)" msgstr "Semana(s)" @@ -1506,6 +1618,10 @@ msgstr "Semana(s)" #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2641 #: classes/gateways/class.pmprogateway_stripe.php:2637 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3094 msgid "Month(s)" msgstr "Mes(es)" @@ -1524,6 +1640,10 @@ msgstr "Mes(es)" #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2642 #: classes/gateways/class.pmprogateway_stripe.php:2638 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3095 msgid "Year(s)" msgstr "Año(s)" @@ -1535,6 +1655,7 @@ msgstr "La integración con Stripe actualmente solo soporta periodos de facturac #: adminpages/discountcodes.php:620 #: adminpages/membershiplevels.php:448 #: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:446 msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." msgstr "La integración con Braintree actualmente solo soporta periodos de facturación \"mensuales \" o \"anuales \"." @@ -1548,11 +1669,14 @@ msgstr "La integración con Payflow actualmente solo soporta frecuencias de 1 pa #: adminpages/membershiplevels.php:454 #: adminpages/membershiplevels.php:459 #: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 msgid "Note" msgstr "Nota" #: adminpages/membershiplevels.php:372 #: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." msgstr "Despues de guardar este nivel, apunta la ID y crea un \"Plan\" en tu escritorio de Braintree con las mismas opciones y el \"Plan ID\" con valor pmpro_# donde # es el ID de nivel." @@ -1564,6 +1688,7 @@ msgstr "Necesitas crear un \"Plan\" en el escritorio de tu Braintree con las mi #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "La integración con Stripe actualmente no soporta límites de facturación. Pero puedes elegir una fecha de expiración aqui abajo." @@ -1571,6 +1696,7 @@ msgstr "La integración con Stripe actualmente no soporta límites de facturaci #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "La integracion con Stripe actualmente no soporta cantidades para el periodo de prueba superiores a $0." @@ -1578,6 +1704,7 @@ msgstr "La integracion con Stripe actualmente no soporta cantidades para el peri #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "La integracion con Braintree actualmente no soporta cantidades para el periodo de prueba superiores a $0." @@ -1585,6 +1712,7 @@ msgstr "La integracion con Braintree actualmente no soporta cantidades para el p #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "La integracion con Payflow actualmente no soporta cantidades para el periodo de prueba superiores a $0." @@ -1593,6 +1721,7 @@ msgstr "La integracion con Payflow actualmente no soporta cantidades para el per #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "Otras opciones" @@ -1610,6 +1739,7 @@ msgstr "Marcar para esconder este nivel de la página de membresías y desactiva #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "Marcar esto para elegir cuando termina el acceso a la membresía." @@ -1617,6 +1747,8 @@ msgstr "Marcar esto para elegir cuando termina el acceso a la membresía." #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "Elige la duración de acceso para la membresía. Ten en cuenta que cualquier futuro pago ( subscripciones recurrentes, si las hay) serán canceladas cuando la membresía expire." @@ -1624,11 +1756,14 @@ msgstr "Elige la duración de acceso para la membresía. Ten en cuenta que cualq #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "Opciones de contenido" #: adminpages/membershiplevels.php:461 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "Categorías" @@ -1662,17 +1797,21 @@ msgstr "Periodo de prueba" #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "Expiración" #: adminpages/membershiplevels.php:511 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "Permitir registros" #: adminpages/membershiplevels.php:534 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "GRATIS" @@ -1690,12 +1829,15 @@ msgstr "cada" #: adminpages/reports/sales.php:314 #: adminpages/reports/sales.php:321 #: adminpages/reports/sales.php:332 +#: adminpages/reports/memberships.php:341 +#: adminpages/reports/memberships.php:352 msgid "for" msgstr "por" #: adminpages/membershiplevels.php:560 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "Despues" @@ -1719,6 +1861,8 @@ msgstr "¿Seguro que quieres borrar el nivel de membresía %s? Todas las subscri #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "Exportar a CSV" @@ -1737,6 +1881,8 @@ msgstr "Exportar a CSV" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "Mostrar" @@ -1757,6 +1903,8 @@ msgstr "Mostrar" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "Todos los niveles" @@ -1766,6 +1914,8 @@ msgstr "Todos los niveles" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "Buscar Miembros" @@ -1789,6 +1939,8 @@ msgstr "%d miembros encontrados." #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "Nombre de usuario" @@ -1811,6 +1963,7 @@ msgstr "Apellidos" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "Dirección de facturación" @@ -1843,6 +1996,8 @@ msgstr "Se unió" #: includes/profile.php:515 #: includes/profile.php:511 #: adminpages/advancedsettings.php:331 +#: adminpages/advancedsettings.php:338 +#: includes/profile.php:551 msgid "Never" msgstr "Nunca" @@ -1886,6 +2041,7 @@ msgstr "Error eliminando pago." #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "Pago guardado correctamente." @@ -1897,6 +2053,7 @@ msgstr "Error actualizando timestamp del pago." #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "Error guardando pago." @@ -1907,6 +2064,7 @@ msgstr "Error guardando pago." #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "Pagos" @@ -1914,6 +2072,7 @@ msgstr "Pagos" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "Nuevo Pago" @@ -1921,6 +2080,7 @@ msgstr "Nuevo Pago" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "Generado aleatoriamente para ti." @@ -1928,6 +2088,7 @@ msgstr "Generado aleatoriamente para ti." #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "ID de usuario" @@ -1936,6 +2097,8 @@ msgstr "ID de usuario" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "ID de nivel de membresía" @@ -1944,6 +2107,7 @@ msgstr "ID de nivel de membresía" #: includes/privacy.php:245 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "Nombre (facturación)" @@ -1952,6 +2116,7 @@ msgstr "Nombre (facturación)" #: includes/privacy.php:249 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "Calle (facturación)" @@ -1961,6 +2126,7 @@ msgstr "Calle (facturación)" #: includes/privacy.php:358 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "Ciudad (facturación)" @@ -1969,6 +2135,7 @@ msgstr "Ciudad (facturación)" #: includes/privacy.php:257 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "Estado (facturación)" @@ -1979,6 +2146,7 @@ msgstr "Estado (facturación)" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "Código Postal (facturación)" @@ -1989,6 +2157,7 @@ msgstr "Código Postal (facturación)" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "País (facturación)" @@ -1998,6 +2167,7 @@ msgstr "País (facturación)" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "Teléfono (facturación)" @@ -2007,6 +2177,7 @@ msgstr "Teléfono (facturación)" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "Subtotal" @@ -2020,6 +2191,8 @@ msgstr "Subtotal" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "Impuesto" @@ -2029,6 +2202,7 @@ msgstr "Impuesto" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "Cantidad de cupón" @@ -2050,6 +2224,9 @@ msgstr "Cantidad de cupón" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "Total" @@ -2063,6 +2240,7 @@ msgstr "Debería ser subtotal + impuesto -cantidadcupon" #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "Tipo de pago" @@ -2071,6 +2249,7 @@ msgstr "Tipo de pago" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "p.ej. PayPal Express, PayPal Standard, Credit Card." @@ -2091,6 +2270,9 @@ msgstr "p.ej. PayPal Express, PayPal Standard, Credit Card." #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "Tipo de tarjeta" @@ -2099,6 +2281,7 @@ msgstr "Tipo de tarjeta" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "p.ej. Visa, MasterCard, AMEX, etc" @@ -2109,6 +2292,8 @@ msgstr "p.ej. Visa, MasterCard, AMEX, etc" #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "Número de cuenta" @@ -2116,6 +2301,7 @@ msgstr "Número de cuenta" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "Esconde todo menos los últimos 4 dígitos" @@ -2127,6 +2313,7 @@ msgstr "Esconde todo menos los últimos 4 dígitos" #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "Mes de expiración" @@ -2159,6 +2346,10 @@ msgstr "Año de expiración" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "Estado" @@ -2174,6 +2365,9 @@ msgstr "Estado" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "Pasarela" @@ -2181,6 +2375,7 @@ msgstr "Pasarela" #: paid-memberships-pro.php:157 #: paid-memberships-pro.php:159 #: paid-memberships-pro.php:160 +#: paid-memberships-pro.php:166 msgid "Testing Only" msgstr "Prueba solo" @@ -2190,6 +2385,7 @@ msgstr "Prueba solo" #: paid-memberships-pro.php:158 #: paid-memberships-pro.php:160 #: paid-memberships-pro.php:161 +#: paid-memberships-pro.php:167 msgid "Pay by Check" msgstr "Pagar con cheque" @@ -2201,6 +2397,8 @@ msgstr "Pagar con cheque" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "Entorno de pasarela (Gateway Environment)" @@ -2215,6 +2413,9 @@ msgstr "Entorno de pasarela (Gateway Environment)" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "Sandbox/Pruebas" @@ -2229,6 +2430,9 @@ msgstr "Sandbox/Pruebas" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "Vivo/Producción" @@ -2237,6 +2441,7 @@ msgstr "Vivo/Producción" #: includes/privacy.php:321 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "ID de transacción de pago" @@ -2244,6 +2449,7 @@ msgstr "ID de transacción de pago" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "Generado por la pasarela. Útil para comparar pagos." @@ -2254,6 +2460,8 @@ msgstr "Generado por la pasarela. Útil para comparar pagos." #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "ID de transacción de la subscripción" @@ -2262,6 +2470,7 @@ msgstr "ID de transacción de la subscripción" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "Generado por la pasarela. Util para comparar subscripciones." @@ -2283,6 +2492,9 @@ msgstr "Generado por la pasarela. Util para comparar subscripciones." #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:492 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "Fecha" @@ -2291,6 +2503,7 @@ msgstr "Fecha" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "ID de afiliado" @@ -2299,6 +2512,7 @@ msgstr "ID de afiliado" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "SubID de afiliado" @@ -2307,6 +2521,7 @@ msgstr "SubID de afiliado" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "Notas" @@ -2315,6 +2530,7 @@ msgstr "Notas" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "Guardar pago" @@ -2338,6 +2554,11 @@ msgstr "Guardar pago" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "Cancelar" @@ -2346,6 +2567,7 @@ msgstr "Cancelar" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "Añadir nuevo pago" @@ -2359,6 +2581,8 @@ msgstr "Añadir nuevo pago" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "Buscar pagos" @@ -2367,6 +2591,8 @@ msgstr "Buscar pagos" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "%d pagos encontrados." @@ -2382,6 +2608,7 @@ msgstr "%d pagos encontrados." #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "Usuario" @@ -2395,6 +2622,7 @@ msgstr "Usuario" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "Método de pago" @@ -2403,6 +2631,7 @@ msgstr "Método de pago" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "IDs de transacción" @@ -2422,6 +2651,8 @@ msgstr "IDs de transacción" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "borrado" @@ -2430,6 +2661,7 @@ msgstr "borrado" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "Subscripción" @@ -2439,6 +2671,7 @@ msgstr "Subscripción" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "Borrar un pago es permanente y puede afectar a los usuarios activos. ¿Seguro que quieres borrar el pago %s?" @@ -2452,6 +2685,7 @@ msgstr "Borrar un pago es permanente y puede afectar a los usuarios activos. ¿S #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "No se han encontrado pagos." @@ -2466,6 +2700,7 @@ msgstr "Las siguientes páginas han sido creadas para ti" #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "Gestiona las páginas WordPress asignando a cada una la página de Paid Memberships Pro requerida." @@ -2473,6 +2708,7 @@ msgstr "Gestiona las páginas WordPress asignando a cada una la página de Paid #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "Asigna a cada página WordPress la página de Paid Memberships Pro requerida o" @@ -2480,6 +2716,7 @@ msgstr "Asigna a cada página WordPress la página de Paid Memberships Pro reque #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "haz click aqui para que dejarnos generarlas por ti" @@ -2487,6 +2724,7 @@ msgstr "haz click aqui para que dejarnos generarlas por ti" #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "Página de Cuenta" @@ -2525,6 +2763,16 @@ msgstr "Página de Cuenta" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "editar página" @@ -2555,6 +2803,13 @@ msgstr "editar página" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:248 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "Incluye el shortcode" @@ -2562,6 +2817,7 @@ msgstr "Incluye el shortcode" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "Página de información de facturación" @@ -2569,6 +2825,7 @@ msgstr "Página de información de facturación" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "Página de cancelación" @@ -2576,6 +2833,7 @@ msgstr "Página de cancelación" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "Página de pago" @@ -2583,6 +2841,7 @@ msgstr "Página de pago" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "Página de confirmación" @@ -2590,6 +2849,7 @@ msgstr "Página de confirmación" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "Página de facturas" @@ -2597,6 +2857,7 @@ msgstr "Página de facturas" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "Página de niveles" @@ -2611,6 +2872,7 @@ msgstr "Las opciones de pago han sido actualizadas." #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "Pasarela de pagos" @@ -2618,6 +2880,7 @@ msgstr "Pasarela de pagos" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "Opciones SSL" @@ -2647,6 +2910,7 @@ msgstr "Contraseña" #: classes/gateways/class.pmprogateway_paypalexpress.php:162 #: classes/gateways/class.pmprogateway_paypalstandard.php:154 #: classes/gateways/class.pmprogateway_paypalexpress.php:172 +#: classes/gateways/class.pmprogateway_paypalexpress.php:173 msgid "Gateway Account Email" msgstr "Email de cuenta de la Pasarela " @@ -2656,6 +2920,8 @@ msgstr "Email de cuenta de la Pasarela " #: classes/gateways/class.pmprogateway_paypalstandard.php:162 #: classes/gateways/class.pmprogateway_twocheckout.php:120 #: classes/gateways/class.pmprogateway_paypalexpress.php:180 +#: classes/gateways/class.pmprogateway_paypalexpress.php:181 +#: classes/gateways/class.pmprogateway_twocheckout.php:127 msgid "API Username" msgstr "Nombre de usuario de API (API Username)" @@ -2665,6 +2931,8 @@ msgstr "Nombre de usuario de API (API Username)" #: classes/gateways/class.pmprogateway_paypalstandard.php:170 #: classes/gateways/class.pmprogateway_twocheckout.php:129 #: classes/gateways/class.pmprogateway_paypalexpress.php:188 +#: classes/gateways/class.pmprogateway_paypalexpress.php:189 +#: classes/gateways/class.pmprogateway_twocheckout.php:136 msgid "API Password" msgstr "Contraseña de API (API Password)" @@ -2673,6 +2941,7 @@ msgstr "Contraseña de API (API Password)" #: classes/gateways/class.pmprogateway_paypalexpress.php:186 #: classes/gateways/class.pmprogateway_paypalstandard.php:178 #: classes/gateways/class.pmprogateway_paypalexpress.php:196 +#: classes/gateways/class.pmprogateway_paypalexpress.php:197 msgid "API Signature" msgstr "Firma de API (API Signature)" @@ -2692,6 +2961,7 @@ msgstr "Llave de transaccion (Transaction Key)" #: classes/gateways/class.pmprogateway_stripe.php:570 #: classes/gateways/class.pmprogateway_stripe.php:576 #: classes/gateways/class.pmprogateway_stripe.php:340 +#: classes/gateways/class.pmprogateway_stripe.php:366 msgid "Secret Key" msgstr "Llave secreta (Secret Key)" @@ -2701,27 +2971,32 @@ msgstr "Llave secreta (Secret Key)" #: classes/gateways/class.pmprogateway_stripe.php:554 #: classes/gateways/class.pmprogateway_stripe.php:560 #: classes/gateways/class.pmprogateway_stripe.php:324 +#: classes/gateways/class.pmprogateway_stripe.php:350 msgid "Publishable Key" msgstr "Llave publicable (Publishable Key)" #: adminpages/paymentsettings.php:294 #: classes/gateways/class.pmprogateway_braintree.php:313 #: classes/gateways/class.pmprogateway_cybersource.php:94 +#: classes/gateways/class.pmprogateway_braintree.php:320 msgid "Merchant ID" msgstr "ID de mercader (Merchant ID)" #: adminpages/paymentsettings.php:302 #: classes/gateways/class.pmprogateway_braintree.php:321 +#: classes/gateways/class.pmprogateway_braintree.php:328 msgid "Public Key" msgstr "Llave pública (Public Key)" #: adminpages/paymentsettings.php:310 #: classes/gateways/class.pmprogateway_braintree.php:329 +#: classes/gateways/class.pmprogateway_braintree.php:336 msgid "Private Key" msgstr "Llave privada (Private Key)" #: adminpages/paymentsettings.php:318 #: classes/gateways/class.pmprogateway_braintree.php:337 +#: classes/gateways/class.pmprogateway_braintree.php:344 msgid "Client-Side Encryption Key" msgstr "Llave de encripción para el lado del cliente (Client-Side Encryption Key)" @@ -2730,12 +3005,14 @@ msgstr "Llave de encripción para el lado del cliente (Client-Side Encryption Ke #: adminpages/paymentsettings.php:356 #: adminpages/paymentsettings.php:199 #: adminpages/paymentsettings.php:206 +#: adminpages/paymentsettings.php:204 msgid "Currency" msgstr "Moneda" #: adminpages/paymentsettings.php:375 #: adminpages/paymentsettings.php:220 #: adminpages/paymentsettings.php:227 +#: adminpages/paymentsettings.php:225 msgid "Accepted Credit Card Types" msgstr "Tipos de tarjeta de crédito aceptados" @@ -2752,6 +3029,7 @@ msgstr "A nombre de quien escribir el cheque. Donde enviarlo. Mostrado durante c #: adminpages/paymentsettings.php:398 #: adminpages/paymentsettings.php:234 #: adminpages/paymentsettings.php:241 +#: adminpages/paymentsettings.php:239 msgid "Sales Tax" msgstr "IVA (impuesto a las ventas)" @@ -2761,24 +3039,28 @@ msgstr "IVA (impuesto a las ventas)" #: pages/billing.php:179 #: adminpages/paymentsettings.php:241 #: pages/billing.php:181 +#: adminpages/paymentsettings.php:239 msgid "optional" msgstr "opcional" #: adminpages/paymentsettings.php:401 #: adminpages/paymentsettings.php:237 #: adminpages/paymentsettings.php:244 +#: adminpages/paymentsettings.php:242 msgid "Tax State" msgstr "Impuesto del estado" #: adminpages/paymentsettings.php:402 #: adminpages/paymentsettings.php:238 #: adminpages/paymentsettings.php:245 +#: adminpages/paymentsettings.php:243 msgid "abbreviation, e.g. \"PA\"" msgstr "abreviación, p.ej. \"PA\"" #: adminpages/paymentsettings.php:404 #: adminpages/paymentsettings.php:240 #: adminpages/paymentsettings.php:247 +#: adminpages/paymentsettings.php:245 msgid "decimal, e.g. \"0.06\"" msgstr "decimal, p.ej. \"0.06\"" @@ -2798,6 +3080,7 @@ msgstr "Requerido por esta opcion de pasarela" #: adminpages/paymentsettings.php:430 #: adminpages/paymentsettings.php:278 #: adminpages/paymentsettings.php:291 +#: adminpages/paymentsettings.php:289 msgid "SSL Seal Code" msgstr "Código de sellado SSL" @@ -2814,6 +3097,7 @@ msgstr "Usar la \"Opción Nuclear\" para usar URLs seguras (HTTPS) en tus págin #: classes/gateways/class.pmprogateway_paypalexpress.php:205 #: classes/gateways/class.pmprogateway_paypalstandard.php:186 #: classes/gateways/class.pmprogateway_paypalexpress.php:215 +#: classes/gateways/class.pmprogateway_paypalexpress.php:216 msgid "IPN Handler URL" msgstr "IPN Handler URL" @@ -2821,6 +3105,7 @@ msgstr "IPN Handler URL" #: classes/gateways/class.pmprogateway_paypal.php:199 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 #: classes/gateways/class.pmprogateway_paypalexpress.php:218 +#: classes/gateways/class.pmprogateway_paypalexpress.php:219 msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to " msgstr "Para integrar completamente con Paypal, asegúrate de introducir tu IPN Handler URL a" @@ -2837,6 +3122,7 @@ msgstr "Para integrar completamente con Authorize.net, asegurate de asignar tu S #: adminpages/paymentsettings.php:462 #: adminpages/paymentsettings.php:470 #: classes/gateways/class.pmprogateway_braintree.php:345 +#: classes/gateways/class.pmprogateway_braintree.php:352 msgid "Web Hook URL" msgstr "Web Hook URL" @@ -2846,6 +3132,7 @@ msgstr "Para integrar completamente con Stripe, asegurate de asignar tu Web Hook #: adminpages/paymentsettings.php:474 #: classes/gateways/class.pmprogateway_braintree.php:348 +#: classes/gateways/class.pmprogateway_braintree.php:355 msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to" msgstr "Para integrar completamente con Braintree, asegurate de asignar tu Web Hook URL a" @@ -2924,6 +3211,7 @@ msgstr "Informe de visitas, vistas, y logins" #: classes/class-pmpro-members-list-table.php:234 #: classes/class-pmpro-members-list-table.php:233 #: adminpages/reports/login.php:105 +#: adminpages/reports/login.php:111 msgid "All Users" msgstr "Todos los usuarios" @@ -2970,6 +3258,8 @@ msgstr "Ventas y ingresos" #: adminpages/reports/sales.php:295 #: adminpages/advancedsettings.php:322 #: adminpages/reports/sales.php:313 +#: adminpages/advancedsettings.php:329 +#: adminpages/reports/memberships.php:332 msgid "Daily" msgstr "A diario" @@ -2979,6 +3269,8 @@ msgstr "A diario" #: adminpages/reports/sales.php:296 #: adminpages/advancedsettings.php:328 #: adminpages/reports/sales.php:314 +#: adminpages/advancedsettings.php:335 +#: adminpages/reports/memberships.php:333 msgid "Monthly" msgstr "Al mes" @@ -2986,6 +3278,7 @@ msgstr "Al mes" #: adminpages/reports/memberships.php:335 #: adminpages/reports/sales.php:297 #: adminpages/reports/sales.php:315 +#: adminpages/reports/memberships.php:334 msgid "Annual" msgstr "Al año" @@ -3007,6 +3300,7 @@ msgstr "Ventas" #: adminpages/reports/memberships.php:385 #: adminpages/reports/sales.php:342 #: adminpages/reports/sales.php:360 +#: adminpages/reports/memberships.php:384 msgid "Generate Report" msgstr "Generar informe" @@ -3033,6 +3327,7 @@ msgstr "Membresía para %s en %s ha sido CANCELADA" #: classes/class.pmproemail.php:172 #: classes/class.pmproemail.php:269 #: classes/class.pmproemail.php:262 +#: classes/class.pmproemail.php:395 #, php-format msgid "Your membership confirmation for %s" msgstr "Confirmación de membresía para %s" @@ -3088,6 +3383,18 @@ msgstr "Confirmación de membresía para %s" #: classes/class.pmproemail.php:764 #: adminpages/orders.php:576 #: adminpages/orders.php:1343 +#: adminpages/orders.php:697 +#: adminpages/orders.php:1437 +#: classes/class.pmproemail.php:465 +#: classes/class.pmproemail.php:471 +#: classes/class.pmproemail.php:477 +#: classes/class.pmproemail.php:567 +#: classes/class.pmproemail.php:573 +#: classes/class.pmproemail.php:895 +#: classes/class.pmproemail.php:897 +#: classes/gateways/class.pmprogateway_braintree.php:516 +#: classes/gateways/class.pmprogateway_stripe.php:906 +#: includes/profile.php:454 msgid "Discount Code" msgstr "Cupón de descuento" @@ -3115,6 +3422,11 @@ msgstr "Cupón de descuento" #: classes/class.pmproemail.php:771 #: classes/class.pmproemail.php:905 #: classes/class.pmproemail.php:950 +#: classes/class.pmproemail.php:485 +#: classes/class.pmproemail.php:583 +#: classes/class.pmproemail.php:904 +#: classes/class.pmproemail.php:1038 +#: classes/class.pmproemail.php:1083 #, php-format msgid "This membership will expire on %s." msgstr "Esta membresía caducará en %s" @@ -3153,6 +3465,7 @@ msgstr "FACTURA por mebresa %s" #: classes/class.pmproemail.php:794 #: classes/class.pmproemail.php:806 #: classes/class.pmproemail.php:799 +#: classes/class.pmproemail.php:932 #, php-format msgid "Your trial at %s is ending soon" msgstr "Tu periodo de prueba en %s se acaba pronto" @@ -3161,6 +3474,7 @@ msgstr "Tu periodo de prueba en %s se acaba pronto" #: classes/class.pmproemail.php:831 #: classes/class.pmproemail.php:843 #: classes/class.pmproemail.php:836 +#: classes/class.pmproemail.php:969 #, php-format msgid "Your membership at %s has ended" msgstr "Tu membresía en %s ha terminado" @@ -3169,6 +3483,7 @@ msgstr "Tu membresía en %s ha terminado" #: classes/class.pmproemail.php:858 #: classes/class.pmproemail.php:870 #: classes/class.pmproemail.php:863 +#: classes/class.pmproemail.php:996 #, php-format msgid "Your membership at %s will end soon" msgstr "Tu membresía en %s acabará pronto" @@ -3177,6 +3492,7 @@ msgstr "Tu membresía en %s acabará pronto" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:900 #: classes/class.pmproemail.php:893 +#: classes/class.pmproemail.php:1026 #, php-format msgid "Your membership at %s has been changed" msgstr "Tu membresía en %s ha cambiado" @@ -3206,6 +3522,7 @@ msgstr "Esta membresa no caduca" #: classes/class.pmproemail.php:933 #: classes/class.pmproemail.php:945 #: classes/class.pmproemail.php:938 +#: classes/class.pmproemail.php:1071 #, php-format msgid "Membership for %s at %s has been changed" msgstr "La membresía para %s en %s ha cambiado" @@ -3273,36 +3590,42 @@ msgstr "No se pudo conectar a Authorize.net" #: classes/gateways/class.pmprogateway_braintree.php:61 #: classes/gateways/class.pmprogateway_stripe.php:53 #: classes/gateways/class.pmprogateway_braintree.php:574 +#: classes/gateways/class.pmprogateway_braintree.php:581 msgid "Unknown error: Initial payment failed." msgstr "Error desconocido: El pago inicial ha fallado." #: classes/gateways/class.pmprogateway_braintree.php:120 #: classes/gateways/class.pmprogateway_braintree.php:650 #: classes/gateways/class.pmprogateway_braintree.php:653 +#: classes/gateways/class.pmprogateway_braintree.php:660 msgid "Error during settlement:" msgstr "Error durante la resolución del pago:" #: classes/gateways/class.pmprogateway_braintree.php:129 #: classes/gateways/class.pmprogateway_braintree.php:659 #: classes/gateways/class.pmprogateway_braintree.php:662 +#: classes/gateways/class.pmprogateway_braintree.php:669 msgid "Error during charge:" msgstr "Error durante el pago:" #: classes/gateways/class.pmprogateway_braintree.php:198 #: classes/gateways/class.pmprogateway_braintree.php:762 #: classes/gateways/class.pmprogateway_braintree.php:765 +#: classes/gateways/class.pmprogateway_braintree.php:772 msgid "Failed to update customer." msgstr "Falló actualizando cliente." #: classes/gateways/class.pmprogateway_braintree.php:246 #: classes/gateways/class.pmprogateway_braintree.php:810 #: classes/gateways/class.pmprogateway_braintree.php:813 +#: classes/gateways/class.pmprogateway_braintree.php:820 msgid "Failed to create customer." msgstr "Falló al crear cliente." #: classes/gateways/class.pmprogateway_braintree.php:253 #: classes/gateways/class.pmprogateway_braintree.php:817 #: classes/gateways/class.pmprogateway_braintree.php:820 +#: classes/gateways/class.pmprogateway_braintree.php:827 msgid "Error creating customer record with Braintree:" msgstr "Error creando entrada para el cliente con Braintree:" @@ -3321,6 +3644,7 @@ msgstr "Error al subscribirse con Braintree:" #: classes/gateways/class.pmprogateway_stripe.php:353 #: classes/gateways/class.pmprogateway_braintree.php:1036 #: classes/gateways/class.pmprogateway_braintree.php:1039 +#: classes/gateways/class.pmprogateway_braintree.php:1046 msgid "Could not find the subscription." msgstr "No se pudo encontrar la subscripción." @@ -3364,6 +3688,8 @@ msgstr "Error creando entrada para el cliente con Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "Error creando plan con Stripe:" @@ -3384,6 +3710,8 @@ msgstr "Error creando plan con Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "Error subscribiendo al cliente al plan con Stripe:" @@ -3420,6 +3748,9 @@ msgstr "Tu membresía esta activa." #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "Nivel" @@ -3472,6 +3803,8 @@ msgstr "Editar Perfil" #: includes/profile.php:921 #: includes/profile.php:880 #: includes/profile.php:917 +#: includes/profile.php:920 +#: includes/profile.php:957 msgid "Change Password" msgstr "Cambiar Contraseña" @@ -3541,6 +3874,7 @@ msgstr "Tu subscripción de pago es gestionada por Paypal. Por favor Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:116 #: includes/updates/upgrade_1.php:13 #: adminpages/advancedsettings.php:118 +#: adminpages/advancedsettings.php:126 msgid "This content is for members only. Visit the site and log in/register to read." msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -4643,113 +5041,135 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:199 #: adminpages/advancedsettings.php:201 +#: adminpages/advancedsettings.php:208 msgid "Filter searches and archives?" msgstr "" #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:205 +#: adminpages/advancedsettings.php:212 msgid "No - Non-members will see restricted posts/pages in searches and archives." msgstr "" #: adminpages/advancedsettings.php:204 #: adminpages/advancedsettings.php:206 +#: adminpages/advancedsettings.php:213 msgid "Yes - Only members will see restricted posts/pages in searches and archives." msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:333 #: adminpages/advancedsettings.php:348 +#: adminpages/advancedsettings.php:355 msgid "Hide Ads From Members?" msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -4781,6 +5201,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -4844,6 +5265,7 @@ msgstr "" #: adminpages/license.php:49 #: adminpages/dashboard.php:178 #: adminpages/license.php:41 +#: adminpages/license.php:53 msgid "Your license is invalid or expired." msgstr "" @@ -4858,6 +5280,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -4963,6 +5386,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -5006,6 +5430,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -5018,37 +5443,47 @@ msgstr "" #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 msgid "%d discount codes found." msgstr "" @@ -5074,6 +5509,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -5092,6 +5534,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -5109,6 +5557,11 @@ msgstr "" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "" @@ -5117,23 +5570,28 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "" #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -5174,196 +5632,246 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:960 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:156 +#: adminpages/emailtemplates.php:149 msgid "Billing Information" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:170 #: includes/privacy.php:363 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -5393,6 +5901,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "" @@ -5410,12 +5919,14 @@ msgstr "" #: adminpages/license.php:59 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -5423,14 +5934,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -5447,35 +5961,44 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -5485,6 +6008,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -5492,6 +6017,7 @@ msgstr "" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -5499,6 +6025,7 @@ msgstr "" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "" @@ -5506,6 +6033,7 @@ msgstr "" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "" @@ -5513,6 +6041,7 @@ msgstr "" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "" @@ -5520,6 +6049,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -5527,6 +6057,7 @@ msgstr "" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "" @@ -5534,6 +6065,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -5541,6 +6073,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -5548,6 +6081,7 @@ msgstr "" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "" @@ -5555,6 +6089,7 @@ msgstr "" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "" @@ -5562,6 +6097,7 @@ msgstr "" #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "" @@ -5572,6 +6108,7 @@ msgstr "" #: adminpages/orders.php:1077 #: adminpages/orders.php:1069 #: adminpages/orders.php:1070 +#: adminpages/orders.php:1158 msgid "This Month" msgstr "" @@ -5579,6 +6116,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -5588,6 +6126,7 @@ msgstr "" #: adminpages/orders.php:1081 #: adminpages/orders.php:1073 #: adminpages/orders.php:1074 +#: adminpages/orders.php:1162 msgid "This Year" msgstr "" @@ -5595,6 +6134,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -5602,6 +6142,7 @@ msgstr "" #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "" @@ -5682,24 +6223,28 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" @@ -5726,6 +6271,14 @@ msgstr "" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "" @@ -5757,60 +6310,79 @@ msgstr "" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:246 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -5820,6 +6392,8 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" @@ -5832,12 +6406,16 @@ msgstr "" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -5845,24 +6423,28 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "" @@ -5872,31 +6454,37 @@ msgstr "" #: adminpages/paymentsettings.php:122 #: adminpages/paymentsettings.php:127 +#: adminpages/paymentsettings.php:125 msgid "Choose a Gateway" msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" #: adminpages/paymentsettings.php:194 #: adminpages/paymentsettings.php:201 +#: adminpages/paymentsettings.php:199 msgid "Currency and Tax Settings" msgstr "" #: adminpages/paymentsettings.php:215 #: adminpages/paymentsettings.php:222 +#: adminpages/paymentsettings.php:220 msgid "Not all currencies will be supported by every gateway. Please check with your gateway." msgstr "" #: adminpages/paymentsettings.php:239 #: adminpages/paymentsettings.php:246 +#: adminpages/paymentsettings.php:244 msgid "Tax Rate" msgstr "" @@ -5906,21 +6494,25 @@ msgstr "" #: adminpages/paymentsettings.php:253 #: adminpages/paymentsettings.php:266 +#: adminpages/paymentsettings.php:264 msgid "Force SSL" msgstr "" #: adminpages/paymentsettings.php:260 #: adminpages/paymentsettings.php:273 +#: adminpages/paymentsettings.php:271 msgid "Your Site URL starts with https:// and so PMPro will allow your entire site to be served over HTTPS." msgstr "" #: adminpages/paymentsettings.php:268 #: adminpages/paymentsettings.php:281 +#: adminpages/paymentsettings.php:279 msgid "Yes (with JavaScript redirects)" msgstr "" #: adminpages/paymentsettings.php:270 #: adminpages/paymentsettings.php:283 +#: adminpages/paymentsettings.php:281 msgid "Recommended: Yes. Try the JavaScript redirects setting if you are having issues with infinite redirect loops." msgstr "" @@ -5930,16 +6522,19 @@ msgstr "" #: adminpages/paymentsettings.php:287 #: adminpages/paymentsettings.php:306 +#: adminpages/paymentsettings.php:304 msgid "Extra HTTPS URL Filter" msgstr "" #: adminpages/paymentsettings.php:290 #: adminpages/paymentsettings.php:309 +#: adminpages/paymentsettings.php:307 msgid "Pass all generated HTML through a URL filter to add HTTPS to URLs used on secure pages. Check this if you are using SSL and have warnings on your checkout pages." msgstr "" #: adminpages/reports.php:19 #: adminpages/reports.php:18 +#: adminpages/reports.php:21 msgid "Back to Reports Dashboard" msgstr "" @@ -5967,6 +6562,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -5977,6 +6573,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -6010,6 +6607,7 @@ msgstr "" #: adminpages/reports/memberships.php:52 #: adminpages/reports/sales.php:53 #: adminpages/reports/sales.php:542 +#: adminpages/reports/sales.php:543 msgid "All Time" msgstr "" @@ -6052,33 +6650,40 @@ msgid "All Cancellations" msgstr "" #: adminpages/reports/memberships.php:338 +#: adminpages/reports/memberships.php:337 msgid "Signups vs. All Cancellations" msgstr "" #: adminpages/reports/memberships.php:339 +#: adminpages/reports/memberships.php:338 msgid "Signups vs. Cancellations" msgstr "" #: adminpages/reports/memberships.php:340 +#: adminpages/reports/memberships.php:339 msgid "Signups vs. Expirations" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -6306,63 +6911,77 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:962 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:463 #: classes/class.pmproemail.php:475 #: classes/class.pmproemail.php:468 +#: classes/class.pmproemail.php:601 msgid "Your billing information has been updated at %s" msgstr "" #: classes/class.pmproemail.php:513 #: classes/class.pmproemail.php:525 #: classes/class.pmproemail.php:518 +#: classes/class.pmproemail.php:651 msgid "Billing information has been updated for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -6375,6 +6994,8 @@ msgstr "" #: includes/email.php:465 #: classes/class.pmproemail.php:898 #: classes/class.pmproemail.php:943 +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 msgid "The new level is %s." msgstr "" @@ -6387,30 +7008,36 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -6418,6 +7045,7 @@ msgstr "" #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:167 +#: paid-memberships-pro.php:173 msgid "Authorize.net" msgstr "" @@ -6433,14 +7061,17 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:91 #: classes/gateways/class.pmprogateway_stripe.php:97 #: classes/gateways/class.pmprogateway_stripe.php:1353 +#: classes/gateways/class.pmprogateway_stripe.php:1478 msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" @@ -6448,10 +7079,13 @@ msgstr "" #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:167 #: paid-memberships-pro.php:168 +#: classes/gateways/class.pmprogateway_braintree.php:258 +#: paid-memberships-pro.php:174 msgid "Braintree Payments" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:308 +#: classes/gateways/class.pmprogateway_braintree.php:315 msgid "Braintree Settings" msgstr "" @@ -6465,21 +7099,30 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:750 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -6487,11 +7130,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -6801,6 +7447,7 @@ msgstr "" #: paid-memberships-pro.php:161 #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:164 +#: paid-memberships-pro.php:170 msgid "PayPal Website Payments Pro" msgstr "" @@ -6808,6 +7455,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:141 #: classes/gateways/class.pmprogateway_paypalstandard.php:133 #: classes/gateways/class.pmprogateway_paypalexpress.php:151 +#: classes/gateways/class.pmprogateway_paypalexpress.php:152 msgid "PayPal Settings" msgstr "" @@ -6815,12 +7463,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:185 #: classes/gateways/class.pmprogateway_paypalexpress.php:194 #: classes/gateways/class.pmprogateway_paypalexpress.php:204 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 msgid "Confirmation Step" msgstr "" @@ -6832,6 +7482,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:854 #: classes/gateways/class.pmprogateway_paypal.php:726 #: classes/gateways/class.pmprogateway_paypalexpress.php:865 +#: classes/gateways/class.pmprogateway_paypalexpress.php:866 msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward." msgstr "" @@ -6840,11 +7491,14 @@ msgstr "" #: paid-memberships-pro.php:162 #: classes/gateways/class.pmprogateway_paypalexpress.php:94 #: paid-memberships-pro.php:163 +#: classes/gateways/class.pmprogateway_paypalexpress.php:95 +#: paid-memberships-pro.php:169 msgid "PayPal Express" msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -6853,6 +7507,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -6861,6 +7516,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -6868,6 +7524,7 @@ msgstr "" #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:166 +#: paid-memberships-pro.php:172 msgid "PayPal Standard" msgstr "" @@ -6885,6 +7542,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:258 #: classes/gateways/class.pmprogateway_stripe.php:216 #: paid-memberships-pro.php:162 +#: classes/gateways/class.pmprogateway_stripe.php:234 +#: paid-memberships-pro.php:168 msgid "Stripe" msgstr "" @@ -6896,6 +7555,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -6904,6 +7564,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -6915,6 +7576,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -6926,6 +7588,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -6937,6 +7600,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -6945,6 +7609,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -6956,6 +7621,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -6967,6 +7633,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -6975,6 +7642,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -6986,6 +7654,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -6994,6 +7663,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -7017,6 +7687,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -7033,6 +7705,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -7041,6 +7715,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -7049,6 +7724,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -7057,6 +7733,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -7064,6 +7741,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -7072,6 +7750,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -7085,6 +7764,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -7093,6 +7774,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -7101,6 +7783,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -7110,6 +7793,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -7127,6 +7812,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -7135,6 +7822,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -7156,6 +7844,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -7164,6 +7854,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -7172,6 +7863,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -7180,6 +7872,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:629 #: classes/gateways/class.pmprogateway_stripe.php:635 #: classes/gateways/class.pmprogateway_stripe.php:399 +#: adminpages/orders.php:570 +#: classes/gateways/class.pmprogateway_stripe.php:425 msgid "Show Billing Address Fields" msgstr "" @@ -7188,6 +7882,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:638 #: classes/gateways/class.pmprogateway_stripe.php:644 #: classes/gateways/class.pmprogateway_stripe.php:408 +#: classes/gateways/class.pmprogateway_stripe.php:434 msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.
If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "" @@ -7196,6 +7891,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -7204,6 +7900,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -7212,6 +7909,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -7220,6 +7918,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -7228,6 +7927,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -7236,6 +7936,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -7244,6 +7945,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -7252,6 +7954,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -7264,6 +7967,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -7272,6 +7976,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -7280,6 +7985,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -7288,6 +7994,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -7296,6 +8003,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -7314,6 +8022,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "" @@ -7366,6 +8075,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "" @@ -7377,6 +8088,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "" @@ -7386,6 +8098,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "" @@ -7395,6 +8108,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "" @@ -7412,6 +8126,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "" @@ -7423,6 +8139,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 msgid "Error: Unkown error while refunding charge #%s" msgstr "" @@ -7432,6 +8149,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -7452,6 +8170,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -7460,6 +8182,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -7469,6 +8192,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -7478,6 +8202,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -7489,6 +8214,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -7500,6 +8226,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -7511,6 +8238,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -7522,42 +8250,52 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:59 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "" @@ -7600,6 +8338,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -7612,6 +8351,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -7624,6 +8364,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -8885,6 +9626,7 @@ msgstr "" #: includes/email-templates.php:68 #: shortcodes/pmpro_account.php:43 +#: adminpages/orders.php:1431 msgid "Billing" msgstr "" @@ -9475,14 +10217,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -9491,18 +10236,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -9514,6 +10263,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -9659,6 +10409,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -9788,6 +10539,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -9795,6 +10547,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -9826,6 +10579,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -9835,6 +10589,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -9842,6 +10597,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -9946,6 +10702,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -9953,6 +10711,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -9960,6 +10719,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -9967,6 +10727,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -10038,6 +10799,7 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" @@ -10046,6 +10808,8 @@ msgstr "" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "" @@ -10056,121 +10820,142 @@ msgstr "" #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -10182,6 +10967,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -10319,18 +11107,21 @@ msgstr "" #: paid-memberships-pro.php:162 #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:165 +#: paid-memberships-pro.php:171 msgid "PayPal Payflow Pro/PayPal Pro" msgstr "" #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:168 #: paid-memberships-pro.php:169 +#: paid-memberships-pro.php:175 msgid "Cybersource" msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -10388,6 +11179,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -10426,6 +11218,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -10441,6 +11248,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -10456,6 +11264,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -10488,6 +11297,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -10500,6 +11310,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -10525,11 +11336,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -10537,6 +11353,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -10544,6 +11361,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -10566,6 +11384,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -10591,6 +11410,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -10598,6 +11418,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -10630,6 +11451,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -10652,6 +11474,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -10662,11 +11485,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -10686,6 +11520,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -10699,6 +11534,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -10708,6 +11544,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -10717,10 +11554,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -10731,6 +11570,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -10738,6 +11578,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -10747,6 +11588,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -10756,12 +11598,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -10769,6 +11614,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -10777,6 +11624,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -10784,6 +11632,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -10791,27 +11640,32 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: paid-memberships-pro.php:194 #: paid-memberships-pro.php:195 +#: paid-memberships-pro.php:201 msgid "Once a month" msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -10869,12 +11723,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -10884,6 +11740,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -10893,6 +11750,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -10902,54 +11760,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -10960,42 +11828,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -11010,51 +11888,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -11062,6 +11952,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -11069,6 +11960,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -11076,6 +11968,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -11084,6 +11977,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -11097,6 +11992,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -11117,19 +12013,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -11139,31 +12039,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -11193,25 +12101,30 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "" @@ -11281,26 +12194,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -11309,51 +12228,62 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -11367,19 +12297,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -11410,3 +12344,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-es_ES.mo b/languages/paid-memberships-pro-es_ES.mo index 37cc558de..4af1064cf 100644 Binary files a/languages/paid-memberships-pro-es_ES.mo and b/languages/paid-memberships-pro-es_ES.mo differ diff --git a/languages/paid-memberships-pro-es_ES.po b/languages/paid-memberships-pro-es_ES.po index 60bbd6e53..b9477b337 100644 --- a/languages/paid-memberships-pro-es_ES.po +++ b/languages/paid-memberships-pro-es_ES.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:20:33+00:00\n" +"POT-Creation-Date: 2022-05-05T20:37:19+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -52,6 +52,7 @@ msgstr "Ajustes de Email" #: adminpages/advancedsettings.php:132 #: includes/adminpages.php:73 #: adminpages/advancedsettings.php:134 +#: adminpages/advancedsettings.php:142 msgid "Advanced Settings" msgstr "Opciones Avanzadas" @@ -69,6 +70,7 @@ msgstr "Add Ons" #: includes/adminpages.php:74 #: adminpages/memberslist.php:25 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "Lista de Miembros" @@ -95,6 +97,8 @@ msgstr "Informes" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "Órdenes" @@ -124,6 +128,7 @@ msgstr "Tipos de Suscripción" #: includes/cleanup.php:24 #: classes/class.memberorder.php:959 #: classes/class.memberorder.php:1001 +#: classes/class.memberorder.php:1010 #, php-format msgid "There was an error canceling the subscription for user with ID=%s. You will want to check your payment gateway to see if their subscription is still active." msgstr "Hubo un error cancelando la subscripcion para el usuario con ID=%s. Deberías comprobar tu procesamiento de pagos (payment gateway) y ver si tu suscripción sigue activa." @@ -415,6 +420,7 @@ msgstr "y" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "Date de alta en !!name!! ya" @@ -500,6 +506,8 @@ msgstr "Requerir suscripción" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "Tipo de suscripción" @@ -522,6 +530,9 @@ msgstr "Nivel actual" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "Ninguno" @@ -543,6 +554,8 @@ msgstr "El usuario no paga." #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "Expira" @@ -581,6 +594,16 @@ msgstr "Expira" #: classes/gateways/class.pmprogateway_stripe.php:404 #: classes/gateways/class.pmprogateway_stripe.php:418 #: adminpages/paymentsettings.php:279 +#: adminpages/advancedsettings.php:254 +#: adminpages/advancedsettings.php:267 +#: adminpages/advancedsettings.php:359 +#: adminpages/advancedsettings.php:418 +#: adminpages/advancedsettings.php:526 +#: adminpages/membershiplevels.php:939 +#: adminpages/paymentsettings.php:277 +#: classes/gateways/class.pmprogateway_stripe.php:430 +#: classes/gateways/class.pmprogateway_stripe.php:444 +#: includes/profile.php:78 msgid "No" msgstr "No" @@ -612,6 +635,12 @@ msgstr "No" #: classes/gateways/class.pmprogateway_stripe.php:406 #: classes/gateways/class.pmprogateway_stripe.php:420 #: adminpages/paymentsettings.php:280 +#: adminpages/advancedsettings.php:419 +#: adminpages/membershiplevels.php:934 +#: adminpages/paymentsettings.php:278 +#: classes/gateways/class.pmprogateway_stripe.php:432 +#: classes/gateways/class.pmprogateway_stripe.php:446 +#: includes/profile.php:79 msgid "Yes" msgstr "Si" @@ -756,6 +785,11 @@ msgstr "Pasarela de pagos & SSL" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "Email" @@ -767,72 +801,84 @@ msgstr "Avanzado" #: adminpages/advancedsettings.php:35 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "Tus opciones avanzadas han sido actualizadas." #: adminpages/advancedsettings.php:85 #: adminpages/advancedsettings.php:164 #: adminpages/advancedsettings.php:166 +#: adminpages/advancedsettings.php:173 msgid "Message for Logged-in Non-members" msgstr "Mensaje para no-miembros logeados" #: adminpages/advancedsettings.php:89 #: adminpages/advancedsettings.php:168 #: adminpages/advancedsettings.php:170 +#: adminpages/advancedsettings.php:177 msgid "This message replaces the post content for non-members. Available variables" msgstr "Este mensaje reemplaza el contenido de la entrada para no-miembros. Variables disponibles" #: adminpages/advancedsettings.php:94 #: adminpages/advancedsettings.php:173 #: adminpages/advancedsettings.php:175 +#: adminpages/advancedsettings.php:182 msgid "Message for Logged-out Users" msgstr "Mensaje para usuarios desconectados (deslogeados)" #: adminpages/advancedsettings.php:98 #: adminpages/advancedsettings.php:177 #: adminpages/advancedsettings.php:179 +#: adminpages/advancedsettings.php:186 msgid "This message replaces the post content for logged-out visitors." msgstr "Este mensaje reemplaza el contenido de la entrada para visitantes no logeados" #: adminpages/advancedsettings.php:103 #: adminpages/advancedsettings.php:182 #: adminpages/advancedsettings.php:184 +#: adminpages/advancedsettings.php:191 msgid "Message for RSS Feed" msgstr "Mensaje para Feed RSS" #: adminpages/advancedsettings.php:107 #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "This message replaces the post content in RSS feeds." msgstr "Este mensaje reemplaza el contenido de la entrada en los feeds RSS" #: adminpages/advancedsettings.php:113 #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:212 +#: adminpages/advancedsettings.php:219 msgid "Show Excerpts to Non-Members?" msgstr "Mostrar Extracto a no miembros?" #: adminpages/advancedsettings.php:117 #: adminpages/advancedsettings.php:214 #: adminpages/advancedsettings.php:216 +#: adminpages/advancedsettings.php:223 msgid "No - Hide excerpts." msgstr "No - Esconder Extracto." #: adminpages/advancedsettings.php:118 #: adminpages/advancedsettings.php:215 #: adminpages/advancedsettings.php:217 +#: adminpages/advancedsettings.php:224 msgid "Yes - Show excerpts." msgstr "Si - Mostrar Extracto." #: adminpages/advancedsettings.php:129 #: adminpages/advancedsettings.php:338 #: adminpages/advancedsettings.php:353 +#: adminpages/advancedsettings.php:360 msgid "Hide Ads From All Members" msgstr "Esconder anuncios para todos los miembros" #: adminpages/advancedsettings.php:130 #: adminpages/advancedsettings.php:339 #: adminpages/advancedsettings.php:354 +#: adminpages/advancedsettings.php:361 msgid "Hide Ads From Certain Members" msgstr "Esconder anuncios para ciertos miembros" @@ -843,12 +889,14 @@ msgstr "Anuncios de los siguientes plugins serán automaticamente desactivados" #: adminpages/advancedsettings.php:138 #: adminpages/advancedsettings.php:346 #: adminpages/advancedsettings.php:361 +#: adminpages/advancedsettings.php:368 msgid "To hide ads in your template code, use code like the following" msgstr "Para esconder anuncios en el código de tus plantillas, usa codigo como el siguiente" #: adminpages/advancedsettings.php:149 #: adminpages/advancedsettings.php:355 #: adminpages/advancedsettings.php:370 +#: adminpages/advancedsettings.php:377 msgid "Choose Levels to Hide Ads From" msgstr "Elige niveles para los cuales esconder anuncios" @@ -863,12 +911,14 @@ msgstr "Redirigir todo el tráfico de la página de registro a /subscription/?" #: adminpages/advancedsettings.php:390 #: adminpages/advancedsettings.php:392 #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "multisite only" msgstr "Solo multisitio" #: adminpages/advancedsettings.php:195 #: adminpages/advancedsettings.php:241 #: adminpages/advancedsettings.php:256 +#: adminpages/advancedsettings.php:263 msgid "Use reCAPTCHA?" msgstr "Usar reCAPTCHA?" @@ -880,18 +930,21 @@ msgstr "Sí - Solo suscripciones gratuitas." #: adminpages/advancedsettings.php:201 #: adminpages/advancedsettings.php:247 #: adminpages/advancedsettings.php:262 +#: adminpages/advancedsettings.php:269 msgid "Yes - All memberships." msgstr "Sí - Todas las suscripciones." #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "A free reCAPTCHA key is required." msgstr "Una clave gratuita de reCAPTCHA es necesaria." #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "Click here to signup for reCAPTCHA" msgstr "Haz click aquí para registrarte en reCAPTCHA" @@ -906,12 +959,14 @@ msgstr "Clave privada reCAPTCHA" #: adminpages/advancedsettings.php:218 #: adminpages/advancedsettings.php:229 #: adminpages/advancedsettings.php:231 +#: adminpages/advancedsettings.php:238 msgid "Require Terms of Service on signups?" msgstr "Requerir términos de servicio durante el registro?" #: adminpages/advancedsettings.php:225 #: adminpages/advancedsettings.php:236 #: adminpages/advancedsettings.php:238 +#: adminpages/advancedsettings.php:245 msgid "If yes, create a WordPress page containing your TOS agreement and assign it using the dropdown above." msgstr "En caso positivo, crear una página WordPress que contiene tus términos de servicio y asignala usando el desplegable superior." @@ -926,6 +981,9 @@ msgstr "En caso positivo, crear una página WordPress que contiene tus términos #: adminpages/pagesettings.php:508 #: adminpages/pagesettings.php:512 #: adminpages/paymentsettings.php:316 +#: adminpages/advancedsettings.php:574 +#: adminpages/pagesettings.php:511 +#: adminpages/paymentsettings.php:314 msgid "Save Settings" msgstr "Guardar opciones" @@ -990,6 +1048,7 @@ msgstr "Error eliminado el cupón. Por favor intentelo de nuevo." #: adminpages/discountcodes.php:796 #: adminpages/discountcodes.php:354 #: adminpages/discountcodes.php:798 +#: adminpages/discountcodes.php:799 msgid "Code not found." msgstr "Cupón no encontrado." @@ -1005,6 +1064,7 @@ msgstr "Edita el cupón de descuento." #: adminpages/discountcodes.php:735 #: adminpages/discountcodes.php:377 #: adminpages/discountcodes.php:737 +#: adminpages/discountcodes.php:738 msgid "Add New Discount Code" msgstr "Añade un nuevo cupón de descuento." @@ -1032,6 +1092,8 @@ msgstr "Añade un nuevo cupón de descuento." #: adminpages/reports/login.php:182 #: adminpages/templates/orders-email.php:49 #: adminpages/templates/orders-print.php:78 +#: adminpages/membershiplevels.php:345 +#: adminpages/membershiplevels.php:805 msgid "ID" msgstr "ID" @@ -1063,6 +1125,9 @@ msgstr "Esto será generado cuando guardes." #: adminpages/dashboard.php:292 #: adminpages/orders.php:429 #: adminpages/orders.php:1333 +#: adminpages/discountcodes.php:787 +#: adminpages/orders.php:475 +#: adminpages/orders.php:1426 msgid "Code" msgstr "Cupón" @@ -1074,6 +1139,7 @@ msgstr "Cupón" #: adminpages/discountcodes.php:489 #: includes/profile.php:501 #: includes/profile.php:497 +#: includes/profile.php:537 msgid "Start Date" msgstr "Fecha de inicio" @@ -1091,6 +1157,8 @@ msgstr "Fecha de inicio" #: classes/gateways/class.pmprogateway_stripe.php:1326 #: classes/gateways/class.pmprogateway_stripe.php:785 #: pages/billing.php:381 +#: classes/gateways/class.pmprogateway_braintree.php:486 +#: classes/gateways/class.pmprogateway_stripe.php:893 msgid "Expiration Date" msgstr "Fecha de expiración" @@ -1100,6 +1168,7 @@ msgstr "Fecha de expiración" #: adminpages/discountcodes.php:787 #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:789 +#: adminpages/discountcodes.php:790 msgid "Uses" msgstr "Usa" @@ -1116,6 +1185,7 @@ msgstr "Dejar en blanco para permitir uso ilimitado." #: adminpages/discountcodes.php:574 #: adminpages/membershiplevels.php:401 #: adminpages/discountcodes.php:576 +#: adminpages/membershiplevels.php:399 msgid "Initial Payment" msgstr "Pago inicial" @@ -1124,6 +1194,7 @@ msgstr "Pago inicial" #: adminpages/discountcodes.php:585 #: adminpages/membershiplevels.php:412 #: adminpages/discountcodes.php:587 +#: adminpages/membershiplevels.php:410 msgid "The initial amount collected at registration." msgstr "La cantidad inicial recogida durante el registro." @@ -1132,6 +1203,7 @@ msgstr "La cantidad inicial recogida durante el registro." #: adminpages/discountcodes.php:590 #: adminpages/membershiplevels.php:417 #: adminpages/discountcodes.php:592 +#: adminpages/membershiplevels.php:415 msgid "Recurring Subscription" msgstr "Subscripción recurrente." @@ -1140,6 +1212,7 @@ msgstr "Subscripción recurrente." #: adminpages/discountcodes.php:591 #: adminpages/membershiplevels.php:418 #: adminpages/discountcodes.php:593 +#: adminpages/membershiplevels.php:416 msgid "Check if this level has a recurring subscription payment." msgstr "Comprobar si el nivel tiene una subscripción de pago recurrente." @@ -1152,6 +1225,7 @@ msgstr "Cantidad a facturar" #: adminpages/discountcodes.php:618 #: adminpages/membershiplevels.php:446 #: adminpages/discountcodes.php:620 +#: adminpages/membershiplevels.php:444 msgid "The amount to be billed one cycle after the initial payment." msgstr "La cantidad que se cobrará un ciclo despues del pago inicial." @@ -1160,6 +1234,7 @@ msgstr "La cantidad que se cobrará un ciclo despues del pago inicial." #: adminpages/discountcodes.php:628 #: adminpages/membershiplevels.php:465 #: adminpages/discountcodes.php:630 +#: adminpages/membershiplevels.php:463 msgid "Billing Cycle Limit" msgstr "Límite del ciclo de facturación" @@ -1168,6 +1243,7 @@ msgstr "Límite del ciclo de facturación" #: adminpages/discountcodes.php:632 #: adminpages/membershiplevels.php:469 #: adminpages/discountcodes.php:634 +#: adminpages/membershiplevels.php:467 msgid "The total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "El número totalde ciclos recurrentes para este nivel, incluyendo el periodo de prueba ( si existe) pero no incluyendo el pago inicial. " @@ -1176,6 +1252,8 @@ msgstr "El número totalde ciclos recurrentes para este nivel, #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "Periodo de prueba personalizado" @@ -1184,6 +1262,8 @@ msgstr "Periodo de prueba personalizado" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "Seleccionar para añadir un periodo de prueba personalizado." @@ -1192,6 +1272,7 @@ msgstr "Seleccionar para añadir un periodo de prueba personalizado." #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "Cantidad a facturar por periodo de prueba" @@ -1200,6 +1281,7 @@ msgstr "Cantidad a facturar por periodo de prueba" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "por el/los primer/os" @@ -1208,6 +1290,7 @@ msgstr "por el/los primer/os" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "pagos de susbscipción" @@ -1216,6 +1299,7 @@ msgstr "pagos de susbscipción" #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "Caducidad de la suscripción" @@ -1229,6 +1313,8 @@ msgstr "Marcar para seleccionar una fecha de expiración para nuevos registros." #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "Expira en" @@ -1239,12 +1325,14 @@ msgstr "Cuanto tiempo ha de pasar antes de que la caducidad expire. Ten en cuent #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "Cupónes de descuento de suscripciones" #: adminpages/discountcodes.php:535 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "Buscar cupones de descuento" @@ -1252,12 +1340,14 @@ msgstr "Buscar cupones de descuento" #: adminpages/reports/login.php:81 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "Busqueda" #: adminpages/discountcodes.php:549 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "Estadísticas" @@ -1265,6 +1355,7 @@ msgstr "Estadísticas" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "Niveles" @@ -1284,6 +1375,7 @@ msgstr "Crea tu primer cupón de descuento ahora" #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "editar" @@ -1304,6 +1396,7 @@ msgstr "borrar" #: adminpages/emailsettings.php:61 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "Por defecto, emails generados por el sistema son enviades desde wordpress@tudominio.com. Puedes actualizar esta dirección desde usando los campos de aqui abajo." @@ -1313,11 +1406,13 @@ msgstr "Para modificar la apariencia de los emails generados por el sistema, añ #: adminpages/emailsettings.php:69 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "Campo desde del email" #: adminpages/emailsettings.php:77 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "Campo nombre del email" @@ -1433,23 +1528,29 @@ msgstr "Añade un nuevo tipo de suscripción" #: adminpages/reports/history.php:184 #: adminpages/reports/login.php:181 #: adminpages/reports/login.php:184 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 msgid "Name" msgstr "Nombre" #: adminpages/membershiplevels.php:296 #: adminpages/addons.php:111 #: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "Descripción" #: adminpages/membershiplevels.php:314 #: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "Mensaje de confirmación" #: adminpages/membershiplevels.php:333 #: adminpages/membershiplevels.php:397 #: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "Detalles de facturación" @@ -1457,6 +1558,7 @@ msgstr "Detalles de facturación" #: adminpages/discountcodes.php:595 #: adminpages/membershiplevels.php:422 #: adminpages/discountcodes.php:597 +#: adminpages/membershiplevels.php:420 msgid "Billing Amount" msgstr "Cantidad a facturar" @@ -1472,6 +1574,8 @@ msgstr "Cantidad a facturar" #: classes/gateways/class.pmprogateway_stripe.php:2696 #: classes/gateways/class.pmprogateway_stripe.php:2698 #: classes/gateways/class.pmprogateway_stripe.php:2694 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "por" @@ -1490,6 +1594,10 @@ msgstr "por" #: classes/gateways/class.pmprogateway_stripe.php:2637 #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2635 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3092 msgid "Day(s)" msgstr "Día(s)" @@ -1508,6 +1616,10 @@ msgstr "Día(s)" #: classes/gateways/class.pmprogateway_stripe.php:2638 #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2636 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3093 msgid "Week(s)" msgstr "Semana(s)" @@ -1526,6 +1638,10 @@ msgstr "Semana(s)" #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2641 #: classes/gateways/class.pmprogateway_stripe.php:2637 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3094 msgid "Month(s)" msgstr "Mes(es)" @@ -1544,6 +1660,10 @@ msgstr "Mes(es)" #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2642 #: classes/gateways/class.pmprogateway_stripe.php:2638 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3095 msgid "Year(s)" msgstr "Año(s)" @@ -1555,6 +1675,7 @@ msgstr "La integración con Stripe actualmente solo soporta periodos de facturac #: adminpages/discountcodes.php:620 #: adminpages/membershiplevels.php:448 #: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:446 msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." msgstr "La integración con Braintree actualmente solo soporta periodos de facturación \"mensuales \" o \"anuales \"." @@ -1568,11 +1689,14 @@ msgstr "La integración con Payflow actualmente solo soporta frecuencias de 1 pa #: adminpages/membershiplevels.php:454 #: adminpages/membershiplevels.php:459 #: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 msgid "Note" msgstr "Nota" #: adminpages/membershiplevels.php:372 #: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." msgstr "Despues de guardar este nivel, apunta la ID y crea un \"Plan\" en tu escritorio de Braintree con las mismas opciones y el \"Plan ID\" con valor pmpro_# donde # es el ID de nivel." @@ -1584,6 +1708,7 @@ msgstr "Necesitas crear un \"Plan\" en el escritorio de tu Braintree con las mi #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "La integración con Stripe actualmente no soporta límites de facturación. Pero puedes elegir una fecha de expiración aqui abajo." @@ -1591,6 +1716,7 @@ msgstr "La integración con Stripe actualmente no soporta límites de facturaci #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "La integracion con Stripe actualmente no soporta cantidades para el periodo de prueba superiores a $0." @@ -1598,6 +1724,7 @@ msgstr "La integracion con Stripe actualmente no soporta cantidades para el peri #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "La integracion con Braintree actualmente no soporta cantidades para el periodo de prueba superiores a $0." @@ -1605,6 +1732,7 @@ msgstr "La integracion con Braintree actualmente no soporta cantidades para el p #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "La integracion con Payflow actualmente no soporta cantidades para el periodo de prueba superiores a $0." @@ -1613,6 +1741,7 @@ msgstr "La integracion con Payflow actualmente no soporta cantidades para el per #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "Otras opciones" @@ -1630,6 +1759,7 @@ msgstr "Marcar para esconder este nivel de la página de suscripciones y desacti #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "Marcar esto para elegir cuando termina el acceso a la suscripción." @@ -1637,6 +1767,8 @@ msgstr "Marcar esto para elegir cuando termina el acceso a la suscripción." #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "Elige la duración de acceso para la suscripción. Ten en cuenta que cualquier futuro pago ( subscripciones recurrentes, si las hay) serán canceladas cuando la suscripción expire." @@ -1644,11 +1776,14 @@ msgstr "Elige la duración de acceso para la suscripción. Ten en cuenta que cua #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "Opciones de contenido" #: adminpages/membershiplevels.php:461 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "Categorías" @@ -1682,17 +1817,21 @@ msgstr "Periodo de prueba" #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "Expiración" #: adminpages/membershiplevels.php:511 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "Permitir registros" #: adminpages/membershiplevels.php:534 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "GRATIS" @@ -1710,12 +1849,15 @@ msgstr "cada" #: adminpages/reports/sales.php:314 #: adminpages/reports/sales.php:321 #: adminpages/reports/sales.php:332 +#: adminpages/reports/memberships.php:341 +#: adminpages/reports/memberships.php:352 msgid "for" msgstr "por" #: adminpages/membershiplevels.php:560 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "Despues" @@ -1739,6 +1881,8 @@ msgstr "¿Seguro que quieres borrar el nivel de suscripción %s? Todas las subsc #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "Exportar a CSV" @@ -1757,6 +1901,8 @@ msgstr "Exportar a CSV" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "Mostrar" @@ -1777,6 +1923,8 @@ msgstr "Mostrar" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "Todos los niveles" @@ -1786,6 +1934,8 @@ msgstr "Todos los niveles" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "Buscar Miembros" @@ -1809,6 +1959,8 @@ msgstr "%d miembros encontrados." #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "Nombre de usuario" @@ -1831,6 +1983,7 @@ msgstr "Apellidos" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "Dirección de facturación" @@ -1863,6 +2016,8 @@ msgstr "Se unió" #: includes/profile.php:515 #: includes/profile.php:511 #: adminpages/advancedsettings.php:331 +#: adminpages/advancedsettings.php:338 +#: includes/profile.php:551 msgid "Never" msgstr "Nunca" @@ -1906,6 +2061,7 @@ msgstr "Error eliminando pago." #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "Pago guardado correctamente." @@ -1917,6 +2073,7 @@ msgstr "Error actualizando timestamp del pago." #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "Error guardando pago." @@ -1927,6 +2084,7 @@ msgstr "Error guardando pago." #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "Pagos" @@ -1934,6 +2092,7 @@ msgstr "Pagos" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "Nuevo Pago" @@ -1941,6 +2100,7 @@ msgstr "Nuevo Pago" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "Generado aleatoriamente para ti." @@ -1948,6 +2108,7 @@ msgstr "Generado aleatoriamente para ti." #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "ID de usuario" @@ -1956,6 +2117,8 @@ msgstr "ID de usuario" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "ID de nivel de suscripción" @@ -1964,6 +2127,7 @@ msgstr "ID de nivel de suscripción" #: includes/privacy.php:245 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "Nombre (facturación)" @@ -1972,6 +2136,7 @@ msgstr "Nombre (facturación)" #: includes/privacy.php:249 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "Calle (facturación)" @@ -1981,6 +2146,7 @@ msgstr "Calle (facturación)" #: includes/privacy.php:358 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "Ciudad (facturación)" @@ -1989,6 +2155,7 @@ msgstr "Ciudad (facturación)" #: includes/privacy.php:257 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "Estado (facturación)" @@ -1999,6 +2166,7 @@ msgstr "Estado (facturación)" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "Código Postal (facturación)" @@ -2009,6 +2177,7 @@ msgstr "Código Postal (facturación)" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "País (facturación)" @@ -2018,6 +2187,7 @@ msgstr "País (facturación)" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "Teléfono (facturación)" @@ -2027,6 +2197,7 @@ msgstr "Teléfono (facturación)" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "Subtotal" @@ -2040,6 +2211,8 @@ msgstr "Subtotal" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "Impuesto" @@ -2049,6 +2222,7 @@ msgstr "Impuesto" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "Cantidad de cupón" @@ -2070,6 +2244,9 @@ msgstr "Cantidad de cupón" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "Total" @@ -2083,6 +2260,7 @@ msgstr "Debería ser subtotal + impuesto -cantidadcupon" #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "Tipo de pago" @@ -2091,6 +2269,7 @@ msgstr "Tipo de pago" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "p.ej. PayPal Express, PayPal Standard, Credit Card." @@ -2111,6 +2290,9 @@ msgstr "p.ej. PayPal Express, PayPal Standard, Credit Card." #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "Tipo de tarjeta" @@ -2119,6 +2301,7 @@ msgstr "Tipo de tarjeta" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "p.ej. Visa, MasterCard, AMEX, etc" @@ -2129,6 +2312,8 @@ msgstr "p.ej. Visa, MasterCard, AMEX, etc" #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "Número de cuenta" @@ -2136,6 +2321,7 @@ msgstr "Número de cuenta" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "Esconde todo menos los últimos 4 dígitos" @@ -2147,6 +2333,7 @@ msgstr "Esconde todo menos los últimos 4 dígitos" #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "Mes de expiración" @@ -2179,6 +2366,10 @@ msgstr "Año de expiración" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "Estado" @@ -2194,6 +2385,9 @@ msgstr "Estado" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "Pasarela" @@ -2201,6 +2395,7 @@ msgstr "Pasarela" #: paid-memberships-pro.php:157 #: paid-memberships-pro.php:159 #: paid-memberships-pro.php:160 +#: paid-memberships-pro.php:166 msgid "Testing Only" msgstr "Prueba solo" @@ -2210,6 +2405,7 @@ msgstr "Prueba solo" #: paid-memberships-pro.php:158 #: paid-memberships-pro.php:160 #: paid-memberships-pro.php:161 +#: paid-memberships-pro.php:167 msgid "Pay by Check" msgstr "Pagar con cheque" @@ -2221,6 +2417,8 @@ msgstr "Pagar con cheque" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "Entorno de pasarela (Gateway Environment)" @@ -2235,6 +2433,9 @@ msgstr "Entorno de pasarela (Gateway Environment)" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "Sandbox/Pruebas" @@ -2249,6 +2450,9 @@ msgstr "Sandbox/Pruebas" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "Vivo/Producción" @@ -2257,6 +2461,7 @@ msgstr "Vivo/Producción" #: includes/privacy.php:321 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "ID de transacción de pago" @@ -2264,6 +2469,7 @@ msgstr "ID de transacción de pago" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "Generado por la pasarela. Útil para comparar pagos." @@ -2274,6 +2480,8 @@ msgstr "Generado por la pasarela. Útil para comparar pagos." #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "ID de transacción de la subscripción" @@ -2282,6 +2490,7 @@ msgstr "ID de transacción de la subscripción" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "Generado por la pasarela. Util para comparar subscripciones." @@ -2303,6 +2512,9 @@ msgstr "Generado por la pasarela. Util para comparar subscripciones." #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:492 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "Fecha" @@ -2311,6 +2523,7 @@ msgstr "Fecha" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "ID de afiliado" @@ -2319,6 +2532,7 @@ msgstr "ID de afiliado" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "SubID de afiliado" @@ -2327,6 +2541,7 @@ msgstr "SubID de afiliado" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "Notas" @@ -2335,6 +2550,7 @@ msgstr "Notas" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "Guardar pago" @@ -2358,6 +2574,11 @@ msgstr "Guardar pago" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "Cancelar" @@ -2366,6 +2587,7 @@ msgstr "Cancelar" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "Añadir nuevo pago" @@ -2379,6 +2601,8 @@ msgstr "Añadir nuevo pago" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "Buscar pagos" @@ -2387,6 +2611,8 @@ msgstr "Buscar pagos" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "%d pagos encontrados." @@ -2402,6 +2628,7 @@ msgstr "%d pagos encontrados." #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "Usuario" @@ -2415,6 +2642,7 @@ msgstr "Usuario" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "Método de pago" @@ -2423,6 +2651,7 @@ msgstr "Método de pago" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "IDs de transacción" @@ -2442,6 +2671,8 @@ msgstr "IDs de transacción" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "borrado" @@ -2450,6 +2681,7 @@ msgstr "borrado" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "Subscripción" @@ -2459,6 +2691,7 @@ msgstr "Subscripción" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "Borrar un pago es permanente y puede afectar a los usuarios activos. ¿Seguro que quieres borrar el pago %s?" @@ -2472,6 +2705,7 @@ msgstr "Borrar un pago es permanente y puede afectar a los usuarios activos. ¿S #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "No se han encontrado pagos." @@ -2486,6 +2720,7 @@ msgstr "Las siguientes páginas han sido creadas para ti" #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "Gestiona las páginas WordPress asignando a cada una la página de Paid Memberships Pro requerida." @@ -2493,6 +2728,7 @@ msgstr "Gestiona las páginas WordPress asignando a cada una la página de Paid #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "Asigna a cada página WordPress la página de Paid Memberships Pro requerida o" @@ -2500,6 +2736,7 @@ msgstr "Asigna a cada página WordPress la página de Paid Memberships Pro reque #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "haz click aqui para que dejarnos generarlas por ti" @@ -2507,6 +2744,7 @@ msgstr "haz click aqui para que dejarnos generarlas por ti" #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "Página de Cuenta" @@ -2545,6 +2783,16 @@ msgstr "Página de Cuenta" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "editar página" @@ -2575,6 +2823,13 @@ msgstr "editar página" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:248 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "Incluye el shortcode" @@ -2582,6 +2837,7 @@ msgstr "Incluye el shortcode" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "Página de información de facturación" @@ -2589,6 +2845,7 @@ msgstr "Página de información de facturación" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "Página de cancelación" @@ -2596,6 +2853,7 @@ msgstr "Página de cancelación" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "Página de pago" @@ -2603,6 +2861,7 @@ msgstr "Página de pago" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "Página de confirmación" @@ -2610,6 +2869,7 @@ msgstr "Página de confirmación" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "Página de facturas" @@ -2617,6 +2877,7 @@ msgstr "Página de facturas" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "Página de niveles" @@ -2631,6 +2892,7 @@ msgstr "Las opciones de pago han sido actualizadas." #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "Pasarela de pagos" @@ -2638,6 +2900,7 @@ msgstr "Pasarela de pagos" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "Opciones SSL" @@ -2667,6 +2930,7 @@ msgstr "Contraseña" #: classes/gateways/class.pmprogateway_paypalexpress.php:162 #: classes/gateways/class.pmprogateway_paypalstandard.php:154 #: classes/gateways/class.pmprogateway_paypalexpress.php:172 +#: classes/gateways/class.pmprogateway_paypalexpress.php:173 msgid "Gateway Account Email" msgstr "Email de cuenta de la Pasarela " @@ -2676,6 +2940,8 @@ msgstr "Email de cuenta de la Pasarela " #: classes/gateways/class.pmprogateway_paypalstandard.php:162 #: classes/gateways/class.pmprogateway_twocheckout.php:120 #: classes/gateways/class.pmprogateway_paypalexpress.php:180 +#: classes/gateways/class.pmprogateway_paypalexpress.php:181 +#: classes/gateways/class.pmprogateway_twocheckout.php:127 msgid "API Username" msgstr "Nombre de usuario de API (API Username)" @@ -2685,6 +2951,8 @@ msgstr "Nombre de usuario de API (API Username)" #: classes/gateways/class.pmprogateway_paypalstandard.php:170 #: classes/gateways/class.pmprogateway_twocheckout.php:129 #: classes/gateways/class.pmprogateway_paypalexpress.php:188 +#: classes/gateways/class.pmprogateway_paypalexpress.php:189 +#: classes/gateways/class.pmprogateway_twocheckout.php:136 msgid "API Password" msgstr "Contraseña de API (API Password)" @@ -2693,6 +2961,7 @@ msgstr "Contraseña de API (API Password)" #: classes/gateways/class.pmprogateway_paypalexpress.php:186 #: classes/gateways/class.pmprogateway_paypalstandard.php:178 #: classes/gateways/class.pmprogateway_paypalexpress.php:196 +#: classes/gateways/class.pmprogateway_paypalexpress.php:197 msgid "API Signature" msgstr "Firma de API (API Signature)" @@ -2712,6 +2981,7 @@ msgstr "Llave de transaccion (Transaction Key)" #: classes/gateways/class.pmprogateway_stripe.php:570 #: classes/gateways/class.pmprogateway_stripe.php:576 #: classes/gateways/class.pmprogateway_stripe.php:340 +#: classes/gateways/class.pmprogateway_stripe.php:366 msgid "Secret Key" msgstr "Llave secreta (Secret Key)" @@ -2721,27 +2991,32 @@ msgstr "Llave secreta (Secret Key)" #: classes/gateways/class.pmprogateway_stripe.php:554 #: classes/gateways/class.pmprogateway_stripe.php:560 #: classes/gateways/class.pmprogateway_stripe.php:324 +#: classes/gateways/class.pmprogateway_stripe.php:350 msgid "Publishable Key" msgstr "Llave publicable (Publishable Key)" #: adminpages/paymentsettings.php:294 #: classes/gateways/class.pmprogateway_braintree.php:313 #: classes/gateways/class.pmprogateway_cybersource.php:94 +#: classes/gateways/class.pmprogateway_braintree.php:320 msgid "Merchant ID" msgstr "ID de mercader (Merchant ID)" #: adminpages/paymentsettings.php:302 #: classes/gateways/class.pmprogateway_braintree.php:321 +#: classes/gateways/class.pmprogateway_braintree.php:328 msgid "Public Key" msgstr "Llave pública (Public Key)" #: adminpages/paymentsettings.php:310 #: classes/gateways/class.pmprogateway_braintree.php:329 +#: classes/gateways/class.pmprogateway_braintree.php:336 msgid "Private Key" msgstr "Llave privada (Private Key)" #: adminpages/paymentsettings.php:318 #: classes/gateways/class.pmprogateway_braintree.php:337 +#: classes/gateways/class.pmprogateway_braintree.php:344 msgid "Client-Side Encryption Key" msgstr "Llave de encripción para el lado del cliente (Client-Side Encryption Key)" @@ -2750,12 +3025,14 @@ msgstr "Llave de encripción para el lado del cliente (Client-Side Encryption Ke #: adminpages/paymentsettings.php:356 #: adminpages/paymentsettings.php:199 #: adminpages/paymentsettings.php:206 +#: adminpages/paymentsettings.php:204 msgid "Currency" msgstr "Moneda" #: adminpages/paymentsettings.php:375 #: adminpages/paymentsettings.php:220 #: adminpages/paymentsettings.php:227 +#: adminpages/paymentsettings.php:225 msgid "Accepted Credit Card Types" msgstr "Tipos de tarjeta de crédito aceptados" @@ -2772,6 +3049,7 @@ msgstr "A nombre de quien escribir el cheque. Donde enviarlo. Mostrado durante c #: adminpages/paymentsettings.php:398 #: adminpages/paymentsettings.php:234 #: adminpages/paymentsettings.php:241 +#: adminpages/paymentsettings.php:239 msgid "Sales Tax" msgstr "IVA (impuesto a las ventas)" @@ -2781,24 +3059,28 @@ msgstr "IVA (impuesto a las ventas)" #: pages/billing.php:179 #: adminpages/paymentsettings.php:241 #: pages/billing.php:181 +#: adminpages/paymentsettings.php:239 msgid "optional" msgstr "opcional" #: adminpages/paymentsettings.php:401 #: adminpages/paymentsettings.php:237 #: adminpages/paymentsettings.php:244 +#: adminpages/paymentsettings.php:242 msgid "Tax State" msgstr "Impuesto del estado" #: adminpages/paymentsettings.php:402 #: adminpages/paymentsettings.php:238 #: adminpages/paymentsettings.php:245 +#: adminpages/paymentsettings.php:243 msgid "abbreviation, e.g. \"PA\"" msgstr "abreviación, p.ej. \"PA\"" #: adminpages/paymentsettings.php:404 #: adminpages/paymentsettings.php:240 #: adminpages/paymentsettings.php:247 +#: adminpages/paymentsettings.php:245 msgid "decimal, e.g. \"0.06\"" msgstr "decimal, p.ej. \"0.06\"" @@ -2818,6 +3100,7 @@ msgstr "Requerido por esta opcion de pasarela" #: adminpages/paymentsettings.php:430 #: adminpages/paymentsettings.php:278 #: adminpages/paymentsettings.php:291 +#: adminpages/paymentsettings.php:289 msgid "SSL Seal Code" msgstr "Código de sellado SSL" @@ -2834,6 +3117,7 @@ msgstr "Usar la \"Opción Nuclear\" para usar URLs seguras (HTTPS) en tus págin #: classes/gateways/class.pmprogateway_paypalexpress.php:205 #: classes/gateways/class.pmprogateway_paypalstandard.php:186 #: classes/gateways/class.pmprogateway_paypalexpress.php:215 +#: classes/gateways/class.pmprogateway_paypalexpress.php:216 msgid "IPN Handler URL" msgstr "IPN Handler URL" @@ -2841,6 +3125,7 @@ msgstr "IPN Handler URL" #: classes/gateways/class.pmprogateway_paypal.php:199 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 #: classes/gateways/class.pmprogateway_paypalexpress.php:218 +#: classes/gateways/class.pmprogateway_paypalexpress.php:219 msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to " msgstr "Para integrar completamente con Paypal, asegúrate de introducir tu IPN Handler URL a" @@ -2857,6 +3142,7 @@ msgstr "Para integrar completamente con Authorize.net, asegurate de asignar tu S #: adminpages/paymentsettings.php:462 #: adminpages/paymentsettings.php:470 #: classes/gateways/class.pmprogateway_braintree.php:345 +#: classes/gateways/class.pmprogateway_braintree.php:352 msgid "Web Hook URL" msgstr "Web Hook URL" @@ -2866,6 +3152,7 @@ msgstr "Para integrar completamente con Stripe, asegurate de asignar tu Web Hook #: adminpages/paymentsettings.php:474 #: classes/gateways/class.pmprogateway_braintree.php:348 +#: classes/gateways/class.pmprogateway_braintree.php:355 msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to" msgstr "Para integrar completamente con Braintree, asegurate de asignar tu Web Hook URL a" @@ -2944,6 +3231,7 @@ msgstr "Informe de visitas, vistas, y logins" #: classes/class-pmpro-members-list-table.php:234 #: classes/class-pmpro-members-list-table.php:233 #: adminpages/reports/login.php:105 +#: adminpages/reports/login.php:111 msgid "All Users" msgstr "Todos los usuarios" @@ -2990,6 +3278,8 @@ msgstr "Ventas y ingresos" #: adminpages/reports/sales.php:295 #: adminpages/advancedsettings.php:322 #: adminpages/reports/sales.php:313 +#: adminpages/advancedsettings.php:329 +#: adminpages/reports/memberships.php:332 msgid "Daily" msgstr "A diario" @@ -2999,6 +3289,8 @@ msgstr "A diario" #: adminpages/reports/sales.php:296 #: adminpages/advancedsettings.php:328 #: adminpages/reports/sales.php:314 +#: adminpages/advancedsettings.php:335 +#: adminpages/reports/memberships.php:333 msgid "Monthly" msgstr "Al mes" @@ -3006,6 +3298,7 @@ msgstr "Al mes" #: adminpages/reports/memberships.php:335 #: adminpages/reports/sales.php:297 #: adminpages/reports/sales.php:315 +#: adminpages/reports/memberships.php:334 msgid "Annual" msgstr "Al año" @@ -3027,6 +3320,7 @@ msgstr "Ventas" #: adminpages/reports/memberships.php:385 #: adminpages/reports/sales.php:342 #: adminpages/reports/sales.php:360 +#: adminpages/reports/memberships.php:384 msgid "Generate Report" msgstr "Generar informe" @@ -3053,6 +3347,7 @@ msgstr "Membresía para %s en %s ha sido CANCELADA" #: classes/class.pmproemail.php:172 #: classes/class.pmproemail.php:269 #: classes/class.pmproemail.php:262 +#: classes/class.pmproemail.php:395 #, php-format msgid "Your membership confirmation for %s" msgstr "Confirmación de suscripción para %s" @@ -3108,6 +3403,18 @@ msgstr "Confirmación de suscripción para %s" #: classes/class.pmproemail.php:764 #: adminpages/orders.php:576 #: adminpages/orders.php:1343 +#: adminpages/orders.php:697 +#: adminpages/orders.php:1437 +#: classes/class.pmproemail.php:465 +#: classes/class.pmproemail.php:471 +#: classes/class.pmproemail.php:477 +#: classes/class.pmproemail.php:567 +#: classes/class.pmproemail.php:573 +#: classes/class.pmproemail.php:895 +#: classes/class.pmproemail.php:897 +#: classes/gateways/class.pmprogateway_braintree.php:516 +#: classes/gateways/class.pmprogateway_stripe.php:906 +#: includes/profile.php:454 msgid "Discount Code" msgstr "Cupón de descuento" @@ -3135,6 +3442,11 @@ msgstr "Cupón de descuento" #: classes/class.pmproemail.php:771 #: classes/class.pmproemail.php:905 #: classes/class.pmproemail.php:950 +#: classes/class.pmproemail.php:485 +#: classes/class.pmproemail.php:583 +#: classes/class.pmproemail.php:904 +#: classes/class.pmproemail.php:1038 +#: classes/class.pmproemail.php:1083 #, php-format msgid "This membership will expire on %s." msgstr "Esta suscripción caducará en %s" @@ -3173,6 +3485,7 @@ msgstr "FACTURA por mebresa %s" #: classes/class.pmproemail.php:794 #: classes/class.pmproemail.php:806 #: classes/class.pmproemail.php:799 +#: classes/class.pmproemail.php:932 #, php-format msgid "Your trial at %s is ending soon" msgstr "Tu periodo de prueba en %s se acaba pronto" @@ -3181,6 +3494,7 @@ msgstr "Tu periodo de prueba en %s se acaba pronto" #: classes/class.pmproemail.php:831 #: classes/class.pmproemail.php:843 #: classes/class.pmproemail.php:836 +#: classes/class.pmproemail.php:969 #, php-format msgid "Your membership at %s has ended" msgstr "Tu suscripción en %s ha terminado" @@ -3189,6 +3503,7 @@ msgstr "Tu suscripción en %s ha terminado" #: classes/class.pmproemail.php:858 #: classes/class.pmproemail.php:870 #: classes/class.pmproemail.php:863 +#: classes/class.pmproemail.php:996 #, php-format msgid "Your membership at %s will end soon" msgstr "Tu suscripción en %s acabará pronto" @@ -3197,6 +3512,7 @@ msgstr "Tu suscripción en %s acabará pronto" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:900 #: classes/class.pmproemail.php:893 +#: classes/class.pmproemail.php:1026 #, php-format msgid "Your membership at %s has been changed" msgstr "Tu suscripción en %s ha cambiado" @@ -3226,6 +3542,7 @@ msgstr "Esta suscripción no caduca" #: classes/class.pmproemail.php:933 #: classes/class.pmproemail.php:945 #: classes/class.pmproemail.php:938 +#: classes/class.pmproemail.php:1071 #, php-format msgid "Membership for %s at %s has been changed" msgstr "La suscripción para %s en %s ha cambiado" @@ -3293,36 +3610,42 @@ msgstr "No se pudo conectar a Authorize.net" #: classes/gateways/class.pmprogateway_braintree.php:61 #: classes/gateways/class.pmprogateway_stripe.php:53 #: classes/gateways/class.pmprogateway_braintree.php:574 +#: classes/gateways/class.pmprogateway_braintree.php:581 msgid "Unknown error: Initial payment failed." msgstr "Error desconocido: El pago inicial ha fallado." #: classes/gateways/class.pmprogateway_braintree.php:120 #: classes/gateways/class.pmprogateway_braintree.php:650 #: classes/gateways/class.pmprogateway_braintree.php:653 +#: classes/gateways/class.pmprogateway_braintree.php:660 msgid "Error during settlement:" msgstr "Error durante la resolución del pago:" #: classes/gateways/class.pmprogateway_braintree.php:129 #: classes/gateways/class.pmprogateway_braintree.php:659 #: classes/gateways/class.pmprogateway_braintree.php:662 +#: classes/gateways/class.pmprogateway_braintree.php:669 msgid "Error during charge:" msgstr "Error durante el pago:" #: classes/gateways/class.pmprogateway_braintree.php:198 #: classes/gateways/class.pmprogateway_braintree.php:762 #: classes/gateways/class.pmprogateway_braintree.php:765 +#: classes/gateways/class.pmprogateway_braintree.php:772 msgid "Failed to update customer." msgstr "Falló actualizando cliente." #: classes/gateways/class.pmprogateway_braintree.php:246 #: classes/gateways/class.pmprogateway_braintree.php:810 #: classes/gateways/class.pmprogateway_braintree.php:813 +#: classes/gateways/class.pmprogateway_braintree.php:820 msgid "Failed to create customer." msgstr "Falló al crear cliente." #: classes/gateways/class.pmprogateway_braintree.php:253 #: classes/gateways/class.pmprogateway_braintree.php:817 #: classes/gateways/class.pmprogateway_braintree.php:820 +#: classes/gateways/class.pmprogateway_braintree.php:827 msgid "Error creating customer record with Braintree:" msgstr "Error creando entrada para el cliente con Braintree:" @@ -3341,6 +3664,7 @@ msgstr "Error al subscribirse con Braintree:" #: classes/gateways/class.pmprogateway_stripe.php:353 #: classes/gateways/class.pmprogateway_braintree.php:1036 #: classes/gateways/class.pmprogateway_braintree.php:1039 +#: classes/gateways/class.pmprogateway_braintree.php:1046 msgid "Could not find the subscription." msgstr "No se pudo encontrar la subscripción." @@ -3384,6 +3708,8 @@ msgstr "Error creando entrada para el cliente con Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "Error creando plan con Stripe:" @@ -3404,6 +3730,8 @@ msgstr "Error creando plan con Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "Error subscribiendo al cliente al plan con Stripe:" @@ -3440,6 +3768,9 @@ msgstr "Tu suscripción esta activa." #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "Nivel" @@ -3492,6 +3823,8 @@ msgstr "Editar Perfil" #: includes/profile.php:921 #: includes/profile.php:880 #: includes/profile.php:917 +#: includes/profile.php:920 +#: includes/profile.php:957 msgid "Change Password" msgstr "Cambiar Contraseña" @@ -3561,6 +3894,7 @@ msgstr "Tu subscripción de pago es gestionada por Paypal. Por favor Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:116 #: includes/updates/upgrade_1.php:13 #: adminpages/advancedsettings.php:118 +#: adminpages/advancedsettings.php:126 msgid "This content is for members only. Visit the site and log in/register to read." msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -4663,113 +5061,135 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:199 #: adminpages/advancedsettings.php:201 +#: adminpages/advancedsettings.php:208 msgid "Filter searches and archives?" msgstr "" #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:205 +#: adminpages/advancedsettings.php:212 msgid "No - Non-members will see restricted posts/pages in searches and archives." msgstr "" #: adminpages/advancedsettings.php:204 #: adminpages/advancedsettings.php:206 +#: adminpages/advancedsettings.php:213 msgid "Yes - Only members will see restricted posts/pages in searches and archives." msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:333 #: adminpages/advancedsettings.php:348 +#: adminpages/advancedsettings.php:355 msgid "Hide Ads From Members?" msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -4801,6 +5221,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -4864,6 +5285,7 @@ msgstr "" #: adminpages/license.php:49 #: adminpages/dashboard.php:178 #: adminpages/license.php:41 +#: adminpages/license.php:53 msgid "Your license is invalid or expired." msgstr "" @@ -4878,6 +5300,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -4983,6 +5406,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -5026,6 +5450,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -5038,37 +5463,47 @@ msgstr "" #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 msgid "%d discount codes found." msgstr "" @@ -5094,6 +5529,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -5112,6 +5554,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -5129,6 +5577,11 @@ msgstr "" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "" @@ -5137,23 +5590,28 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "" #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -5194,196 +5652,246 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:960 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:156 +#: adminpages/emailtemplates.php:149 msgid "Billing Information" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:170 #: includes/privacy.php:363 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -5413,6 +5921,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "" @@ -5430,12 +5939,14 @@ msgstr "" #: adminpages/license.php:59 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -5443,14 +5954,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -5467,35 +5981,44 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -5505,6 +6028,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -5512,6 +6037,7 @@ msgstr "" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -5519,6 +6045,7 @@ msgstr "" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "" @@ -5526,6 +6053,7 @@ msgstr "" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "" @@ -5533,6 +6061,7 @@ msgstr "" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "" @@ -5540,6 +6069,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -5547,6 +6077,7 @@ msgstr "" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "" @@ -5554,6 +6085,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -5561,6 +6093,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -5568,6 +6101,7 @@ msgstr "" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "" @@ -5575,6 +6109,7 @@ msgstr "" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "" @@ -5582,6 +6117,7 @@ msgstr "" #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "" @@ -5592,6 +6128,7 @@ msgstr "" #: adminpages/orders.php:1077 #: adminpages/orders.php:1069 #: adminpages/orders.php:1070 +#: adminpages/orders.php:1158 msgid "This Month" msgstr "" @@ -5599,6 +6136,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -5608,6 +6146,7 @@ msgstr "" #: adminpages/orders.php:1081 #: adminpages/orders.php:1073 #: adminpages/orders.php:1074 +#: adminpages/orders.php:1162 msgid "This Year" msgstr "" @@ -5615,6 +6154,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -5622,6 +6162,7 @@ msgstr "" #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "" @@ -5702,24 +6243,28 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" @@ -5746,6 +6291,14 @@ msgstr "" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "" @@ -5777,60 +6330,79 @@ msgstr "" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:246 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -5840,6 +6412,8 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" @@ -5852,12 +6426,16 @@ msgstr "" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -5865,24 +6443,28 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "" @@ -5892,31 +6474,37 @@ msgstr "" #: adminpages/paymentsettings.php:122 #: adminpages/paymentsettings.php:127 +#: adminpages/paymentsettings.php:125 msgid "Choose a Gateway" msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" #: adminpages/paymentsettings.php:194 #: adminpages/paymentsettings.php:201 +#: adminpages/paymentsettings.php:199 msgid "Currency and Tax Settings" msgstr "" #: adminpages/paymentsettings.php:215 #: adminpages/paymentsettings.php:222 +#: adminpages/paymentsettings.php:220 msgid "Not all currencies will be supported by every gateway. Please check with your gateway." msgstr "" #: adminpages/paymentsettings.php:239 #: adminpages/paymentsettings.php:246 +#: adminpages/paymentsettings.php:244 msgid "Tax Rate" msgstr "" @@ -5926,21 +6514,25 @@ msgstr "" #: adminpages/paymentsettings.php:253 #: adminpages/paymentsettings.php:266 +#: adminpages/paymentsettings.php:264 msgid "Force SSL" msgstr "" #: adminpages/paymentsettings.php:260 #: adminpages/paymentsettings.php:273 +#: adminpages/paymentsettings.php:271 msgid "Your Site URL starts with https:// and so PMPro will allow your entire site to be served over HTTPS." msgstr "" #: adminpages/paymentsettings.php:268 #: adminpages/paymentsettings.php:281 +#: adminpages/paymentsettings.php:279 msgid "Yes (with JavaScript redirects)" msgstr "" #: adminpages/paymentsettings.php:270 #: adminpages/paymentsettings.php:283 +#: adminpages/paymentsettings.php:281 msgid "Recommended: Yes. Try the JavaScript redirects setting if you are having issues with infinite redirect loops." msgstr "" @@ -5950,16 +6542,19 @@ msgstr "" #: adminpages/paymentsettings.php:287 #: adminpages/paymentsettings.php:306 +#: adminpages/paymentsettings.php:304 msgid "Extra HTTPS URL Filter" msgstr "" #: adminpages/paymentsettings.php:290 #: adminpages/paymentsettings.php:309 +#: adminpages/paymentsettings.php:307 msgid "Pass all generated HTML through a URL filter to add HTTPS to URLs used on secure pages. Check this if you are using SSL and have warnings on your checkout pages." msgstr "" #: adminpages/reports.php:19 #: adminpages/reports.php:18 +#: adminpages/reports.php:21 msgid "Back to Reports Dashboard" msgstr "" @@ -5987,6 +6582,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -5997,6 +6593,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -6030,6 +6627,7 @@ msgstr "" #: adminpages/reports/memberships.php:52 #: adminpages/reports/sales.php:53 #: adminpages/reports/sales.php:542 +#: adminpages/reports/sales.php:543 msgid "All Time" msgstr "" @@ -6072,33 +6670,40 @@ msgid "All Cancellations" msgstr "" #: adminpages/reports/memberships.php:338 +#: adminpages/reports/memberships.php:337 msgid "Signups vs. All Cancellations" msgstr "" #: adminpages/reports/memberships.php:339 +#: adminpages/reports/memberships.php:338 msgid "Signups vs. Cancellations" msgstr "" #: adminpages/reports/memberships.php:340 +#: adminpages/reports/memberships.php:339 msgid "Signups vs. Expirations" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -6326,63 +6931,77 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:962 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:463 #: classes/class.pmproemail.php:475 #: classes/class.pmproemail.php:468 +#: classes/class.pmproemail.php:601 msgid "Your billing information has been updated at %s" msgstr "" #: classes/class.pmproemail.php:513 #: classes/class.pmproemail.php:525 #: classes/class.pmproemail.php:518 +#: classes/class.pmproemail.php:651 msgid "Billing information has been updated for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -6395,6 +7014,8 @@ msgstr "" #: includes/email.php:465 #: classes/class.pmproemail.php:898 #: classes/class.pmproemail.php:943 +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 msgid "The new level is %s." msgstr "" @@ -6407,30 +7028,36 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -6438,6 +7065,7 @@ msgstr "" #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:167 +#: paid-memberships-pro.php:173 msgid "Authorize.net" msgstr "" @@ -6453,14 +7081,17 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:91 #: classes/gateways/class.pmprogateway_stripe.php:97 #: classes/gateways/class.pmprogateway_stripe.php:1353 +#: classes/gateways/class.pmprogateway_stripe.php:1478 msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" @@ -6468,10 +7099,13 @@ msgstr "" #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:167 #: paid-memberships-pro.php:168 +#: classes/gateways/class.pmprogateway_braintree.php:258 +#: paid-memberships-pro.php:174 msgid "Braintree Payments" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:308 +#: classes/gateways/class.pmprogateway_braintree.php:315 msgid "Braintree Settings" msgstr "" @@ -6485,21 +7119,30 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:750 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -6507,11 +7150,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -6821,6 +7467,7 @@ msgstr "" #: paid-memberships-pro.php:161 #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:164 +#: paid-memberships-pro.php:170 msgid "PayPal Website Payments Pro" msgstr "" @@ -6828,6 +7475,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:141 #: classes/gateways/class.pmprogateway_paypalstandard.php:133 #: classes/gateways/class.pmprogateway_paypalexpress.php:151 +#: classes/gateways/class.pmprogateway_paypalexpress.php:152 msgid "PayPal Settings" msgstr "" @@ -6835,12 +7483,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:185 #: classes/gateways/class.pmprogateway_paypalexpress.php:194 #: classes/gateways/class.pmprogateway_paypalexpress.php:204 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 msgid "Confirmation Step" msgstr "" @@ -6852,6 +7502,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:854 #: classes/gateways/class.pmprogateway_paypal.php:726 #: classes/gateways/class.pmprogateway_paypalexpress.php:865 +#: classes/gateways/class.pmprogateway_paypalexpress.php:866 msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward." msgstr "" @@ -6860,11 +7511,14 @@ msgstr "" #: paid-memberships-pro.php:162 #: classes/gateways/class.pmprogateway_paypalexpress.php:94 #: paid-memberships-pro.php:163 +#: classes/gateways/class.pmprogateway_paypalexpress.php:95 +#: paid-memberships-pro.php:169 msgid "PayPal Express" msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -6873,6 +7527,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -6881,6 +7536,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -6888,6 +7544,7 @@ msgstr "" #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:166 +#: paid-memberships-pro.php:172 msgid "PayPal Standard" msgstr "" @@ -6905,6 +7562,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:258 #: classes/gateways/class.pmprogateway_stripe.php:216 #: paid-memberships-pro.php:162 +#: classes/gateways/class.pmprogateway_stripe.php:234 +#: paid-memberships-pro.php:168 msgid "Stripe" msgstr "" @@ -6916,6 +7575,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -6924,6 +7584,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -6935,6 +7596,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -6946,6 +7608,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -6957,6 +7620,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -6965,6 +7629,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -6976,6 +7641,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -6987,6 +7653,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -6995,6 +7662,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -7006,6 +7674,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -7014,6 +7683,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -7037,6 +7707,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -7053,6 +7725,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -7061,6 +7735,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -7069,6 +7744,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -7077,6 +7753,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -7084,6 +7761,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -7092,6 +7770,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -7105,6 +7784,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -7113,6 +7794,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -7121,6 +7803,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -7130,6 +7813,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -7147,6 +7832,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -7155,6 +7842,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -7176,6 +7864,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -7184,6 +7874,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -7192,6 +7883,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -7200,6 +7892,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:629 #: classes/gateways/class.pmprogateway_stripe.php:635 #: classes/gateways/class.pmprogateway_stripe.php:399 +#: adminpages/orders.php:570 +#: classes/gateways/class.pmprogateway_stripe.php:425 msgid "Show Billing Address Fields" msgstr "" @@ -7208,6 +7902,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:638 #: classes/gateways/class.pmprogateway_stripe.php:644 #: classes/gateways/class.pmprogateway_stripe.php:408 +#: classes/gateways/class.pmprogateway_stripe.php:434 msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.
If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "" @@ -7216,6 +7911,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -7224,6 +7920,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -7232,6 +7929,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -7240,6 +7938,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -7248,6 +7947,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -7256,6 +7956,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -7264,6 +7965,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -7272,6 +7974,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -7284,6 +7987,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -7292,6 +7996,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -7300,6 +8005,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -7308,6 +8014,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -7316,6 +8023,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -7334,6 +8042,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "" @@ -7386,6 +8095,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "" @@ -7397,6 +8108,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "" @@ -7406,6 +8118,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "" @@ -7415,6 +8128,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "" @@ -7432,6 +8146,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "" @@ -7443,6 +8159,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 msgid "Error: Unkown error while refunding charge #%s" msgstr "" @@ -7452,6 +8169,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -7472,6 +8190,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -7480,6 +8202,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -7489,6 +8212,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -7498,6 +8222,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -7509,6 +8234,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -7520,6 +8246,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -7531,6 +8258,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -7542,42 +8270,52 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:59 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "" @@ -7620,6 +8358,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -7632,6 +8371,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -7644,6 +8384,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -8905,6 +9646,7 @@ msgstr "" #: includes/email-templates.php:68 #: shortcodes/pmpro_account.php:43 +#: adminpages/orders.php:1431 msgid "Billing" msgstr "" @@ -9495,14 +10237,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -9511,18 +10256,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -9534,6 +10283,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -9679,6 +10429,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -9792,6 +10543,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -9799,6 +10551,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -9830,6 +10583,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -9839,6 +10593,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -9846,6 +10601,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -9950,6 +10706,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -9957,6 +10715,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -9964,6 +10723,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -9971,6 +10731,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -10042,6 +10803,7 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" @@ -10050,6 +10812,8 @@ msgstr "" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "" @@ -10060,121 +10824,142 @@ msgstr "" #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -10186,6 +10971,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -10323,18 +11111,21 @@ msgstr "" #: paid-memberships-pro.php:162 #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:165 +#: paid-memberships-pro.php:171 msgid "PayPal Payflow Pro/PayPal Pro" msgstr "" #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:168 #: paid-memberships-pro.php:169 +#: paid-memberships-pro.php:175 msgid "Cybersource" msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -10392,6 +11183,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -10430,6 +11222,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -10445,6 +11252,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -10460,6 +11268,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -10492,6 +11301,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -10504,6 +11314,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -10529,11 +11340,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -10541,6 +11357,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -10548,6 +11365,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -10570,6 +11388,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -10595,6 +11414,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -10602,6 +11422,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -10634,6 +11455,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -10656,6 +11478,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -10666,11 +11489,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -10690,6 +11524,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -10703,6 +11538,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -10712,6 +11548,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -10721,10 +11558,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -10735,6 +11574,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -10742,6 +11582,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -10751,6 +11592,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -10760,12 +11602,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -10773,6 +11618,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -10781,6 +11628,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -10788,6 +11636,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -10795,27 +11644,32 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: paid-memberships-pro.php:194 #: paid-memberships-pro.php:195 +#: paid-memberships-pro.php:201 msgid "Once a month" msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -10873,12 +11727,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -10888,6 +11744,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -10897,6 +11754,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -10906,54 +11764,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -10964,42 +11832,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -11014,51 +11892,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -11066,6 +11956,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -11073,6 +11964,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -11080,6 +11972,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -11088,6 +11981,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -11101,6 +11996,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -11121,19 +12017,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -11143,31 +12043,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -11197,25 +12105,30 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "" @@ -11285,26 +12198,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -11313,51 +12232,62 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -11371,19 +12301,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -11414,3 +12348,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-es_PE.mo b/languages/paid-memberships-pro-es_PE.mo index 649916f7f..42b71ce20 100644 Binary files a/languages/paid-memberships-pro-es_PE.mo and b/languages/paid-memberships-pro-es_PE.mo differ diff --git a/languages/paid-memberships-pro-es_PE.po b/languages/paid-memberships-pro-es_PE.po index 46e8c3842..2c92ef5a7 100644 --- a/languages/paid-memberships-pro-es_PE.po +++ b/languages/paid-memberships-pro-es_PE.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:20:36+00:00\n" +"POT-Creation-Date: 2022-05-05T20:37:21+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -52,6 +52,7 @@ msgstr "Ajustes de Email" #: adminpages/advancedsettings.php:132 #: includes/adminpages.php:73 #: adminpages/advancedsettings.php:134 +#: adminpages/advancedsettings.php:142 msgid "Advanced Settings" msgstr "Opciones Avanzadas" @@ -69,6 +70,7 @@ msgstr "Add Ons" #: includes/adminpages.php:74 #: adminpages/memberslist.php:25 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "Lista de Miembros" @@ -95,6 +97,8 @@ msgstr "Informes" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "Órdenes" @@ -124,6 +128,7 @@ msgstr "Niveles de Membresía" #: includes/cleanup.php:24 #: classes/class.memberorder.php:959 #: classes/class.memberorder.php:1001 +#: classes/class.memberorder.php:1010 #, php-format msgid "There was an error canceling the subscription for user with ID=%s. You will want to check your payment gateway to see if their subscription is still active." msgstr "Hubo un error cancelando la subscripcion para el usuario con ID=%s. Deberías comprobar tu procesamiento de pagos (payment gateway) y ver si tu suscripción sigue activa." @@ -415,6 +420,7 @@ msgstr "y" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "Date de alta en !!name!! ya" @@ -480,6 +486,8 @@ msgstr "Requerir membresía" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "Nivel de membresía" @@ -502,6 +510,9 @@ msgstr "Nivel actual" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "Ninguno" @@ -523,6 +534,8 @@ msgstr "El usuario no paga." #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "Expira" @@ -561,6 +574,16 @@ msgstr "Expira" #: classes/gateways/class.pmprogateway_stripe.php:404 #: classes/gateways/class.pmprogateway_stripe.php:418 #: adminpages/paymentsettings.php:279 +#: adminpages/advancedsettings.php:254 +#: adminpages/advancedsettings.php:267 +#: adminpages/advancedsettings.php:359 +#: adminpages/advancedsettings.php:418 +#: adminpages/advancedsettings.php:526 +#: adminpages/membershiplevels.php:939 +#: adminpages/paymentsettings.php:277 +#: classes/gateways/class.pmprogateway_stripe.php:430 +#: classes/gateways/class.pmprogateway_stripe.php:444 +#: includes/profile.php:78 msgid "No" msgstr "No" @@ -592,6 +615,12 @@ msgstr "No" #: classes/gateways/class.pmprogateway_stripe.php:406 #: classes/gateways/class.pmprogateway_stripe.php:420 #: adminpages/paymentsettings.php:280 +#: adminpages/advancedsettings.php:419 +#: adminpages/membershiplevels.php:934 +#: adminpages/paymentsettings.php:278 +#: classes/gateways/class.pmprogateway_stripe.php:432 +#: classes/gateways/class.pmprogateway_stripe.php:446 +#: includes/profile.php:79 msgid "Yes" msgstr "Si" @@ -736,6 +765,11 @@ msgstr "Pasarela de pagos & SSL" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "Email" @@ -747,72 +781,84 @@ msgstr "Avanzado" #: adminpages/advancedsettings.php:35 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "Tus opciones avanzadas han sido actualizadas." #: adminpages/advancedsettings.php:85 #: adminpages/advancedsettings.php:164 #: adminpages/advancedsettings.php:166 +#: adminpages/advancedsettings.php:173 msgid "Message for Logged-in Non-members" msgstr "Mensaje para no-miembros logeados" #: adminpages/advancedsettings.php:89 #: adminpages/advancedsettings.php:168 #: adminpages/advancedsettings.php:170 +#: adminpages/advancedsettings.php:177 msgid "This message replaces the post content for non-members. Available variables" msgstr "Este mensaje reemplaza el contenido de la entrada para no-miembros. Variables disponibles" #: adminpages/advancedsettings.php:94 #: adminpages/advancedsettings.php:173 #: adminpages/advancedsettings.php:175 +#: adminpages/advancedsettings.php:182 msgid "Message for Logged-out Users" msgstr "Mensaje para usuarios desconectados (deslogeados)" #: adminpages/advancedsettings.php:98 #: adminpages/advancedsettings.php:177 #: adminpages/advancedsettings.php:179 +#: adminpages/advancedsettings.php:186 msgid "This message replaces the post content for logged-out visitors." msgstr "Este mensaje reemplaza el contenido de la entrada para visitantes no logeados" #: adminpages/advancedsettings.php:103 #: adminpages/advancedsettings.php:182 #: adminpages/advancedsettings.php:184 +#: adminpages/advancedsettings.php:191 msgid "Message for RSS Feed" msgstr "Mensaje para Feed RSS" #: adminpages/advancedsettings.php:107 #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "This message replaces the post content in RSS feeds." msgstr "Este mensaje reemplaza el contenido de la entrada en los feeds RSS" #: adminpages/advancedsettings.php:113 #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:212 +#: adminpages/advancedsettings.php:219 msgid "Show Excerpts to Non-Members?" msgstr "Mostrar Extracto a no miembros?" #: adminpages/advancedsettings.php:117 #: adminpages/advancedsettings.php:214 #: adminpages/advancedsettings.php:216 +#: adminpages/advancedsettings.php:223 msgid "No - Hide excerpts." msgstr "No - Esconder Extracto." #: adminpages/advancedsettings.php:118 #: adminpages/advancedsettings.php:215 #: adminpages/advancedsettings.php:217 +#: adminpages/advancedsettings.php:224 msgid "Yes - Show excerpts." msgstr "Si - Mostrar Extracto." #: adminpages/advancedsettings.php:129 #: adminpages/advancedsettings.php:338 #: adminpages/advancedsettings.php:353 +#: adminpages/advancedsettings.php:360 msgid "Hide Ads From All Members" msgstr "Esconder anuncios para todos los miembros" #: adminpages/advancedsettings.php:130 #: adminpages/advancedsettings.php:339 #: adminpages/advancedsettings.php:354 +#: adminpages/advancedsettings.php:361 msgid "Hide Ads From Certain Members" msgstr "Esconder anuncios para ciertos miembros" @@ -823,12 +869,14 @@ msgstr "Anuncios de los siguientes plugins serán automaticamente desactivados" #: adminpages/advancedsettings.php:138 #: adminpages/advancedsettings.php:346 #: adminpages/advancedsettings.php:361 +#: adminpages/advancedsettings.php:368 msgid "To hide ads in your template code, use code like the following" msgstr "Para esconder anuncios en el código de tus plantillas, usa codigo como el siguiente" #: adminpages/advancedsettings.php:149 #: adminpages/advancedsettings.php:355 #: adminpages/advancedsettings.php:370 +#: adminpages/advancedsettings.php:377 msgid "Choose Levels to Hide Ads From" msgstr "Elige niveles para los cuales esconder anuncios" @@ -843,12 +891,14 @@ msgstr "Redirigir todo el tráfico de la página de registro a /subscription/?" #: adminpages/advancedsettings.php:390 #: adminpages/advancedsettings.php:392 #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "multisite only" msgstr "Solo multisitio" #: adminpages/advancedsettings.php:195 #: adminpages/advancedsettings.php:241 #: adminpages/advancedsettings.php:256 +#: adminpages/advancedsettings.php:263 msgid "Use reCAPTCHA?" msgstr "Usar reCAPTCHA?" @@ -860,18 +910,21 @@ msgstr "Si - Solo membresías gratuitas." #: adminpages/advancedsettings.php:201 #: adminpages/advancedsettings.php:247 #: adminpages/advancedsettings.php:262 +#: adminpages/advancedsettings.php:269 msgid "Yes - All memberships." msgstr "Si - Todas las membresías." #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "A free reCAPTCHA key is required." msgstr "Una clave gratuita de reCAPTCHA es necesaria." #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "Click here to signup for reCAPTCHA" msgstr "Haz click aquí para registrarte en reCAPTCHA" @@ -886,12 +939,14 @@ msgstr "Clave privada reCAPTCHA" #: adminpages/advancedsettings.php:218 #: adminpages/advancedsettings.php:229 #: adminpages/advancedsettings.php:231 +#: adminpages/advancedsettings.php:238 msgid "Require Terms of Service on signups?" msgstr "Requerir términos de servicio durante el registro?" #: adminpages/advancedsettings.php:225 #: adminpages/advancedsettings.php:236 #: adminpages/advancedsettings.php:238 +#: adminpages/advancedsettings.php:245 msgid "If yes, create a WordPress page containing your TOS agreement and assign it using the dropdown above." msgstr "En caso positivo, crear una página WordPress que contiene tus términos de servicio y asignala usando el desplegable superior." @@ -906,6 +961,9 @@ msgstr "En caso positivo, crear una página WordPress que contiene tus términos #: adminpages/pagesettings.php:508 #: adminpages/pagesettings.php:512 #: adminpages/paymentsettings.php:316 +#: adminpages/advancedsettings.php:574 +#: adminpages/pagesettings.php:511 +#: adminpages/paymentsettings.php:314 msgid "Save Settings" msgstr "Guardar opciones" @@ -970,6 +1028,7 @@ msgstr "Error eliminado el cupón. Por favor intentelo de nuevo." #: adminpages/discountcodes.php:796 #: adminpages/discountcodes.php:354 #: adminpages/discountcodes.php:798 +#: adminpages/discountcodes.php:799 msgid "Code not found." msgstr "Cupón no encontrado." @@ -985,6 +1044,7 @@ msgstr "Edita el cupón de descuento." #: adminpages/discountcodes.php:735 #: adminpages/discountcodes.php:377 #: adminpages/discountcodes.php:737 +#: adminpages/discountcodes.php:738 msgid "Add New Discount Code" msgstr "Añade un nuevo cupón de descuento." @@ -1012,6 +1072,8 @@ msgstr "Añade un nuevo cupón de descuento." #: adminpages/reports/login.php:182 #: adminpages/templates/orders-email.php:49 #: adminpages/templates/orders-print.php:78 +#: adminpages/membershiplevels.php:345 +#: adminpages/membershiplevels.php:805 msgid "ID" msgstr "ID" @@ -1043,6 +1105,9 @@ msgstr "Esto será generado cuando guardes." #: adminpages/dashboard.php:292 #: adminpages/orders.php:429 #: adminpages/orders.php:1333 +#: adminpages/discountcodes.php:787 +#: adminpages/orders.php:475 +#: adminpages/orders.php:1426 msgid "Code" msgstr "Cupón" @@ -1054,6 +1119,7 @@ msgstr "Cupón" #: adminpages/discountcodes.php:489 #: includes/profile.php:501 #: includes/profile.php:497 +#: includes/profile.php:537 msgid "Start Date" msgstr "Fecha de inicio" @@ -1071,6 +1137,8 @@ msgstr "Fecha de inicio" #: classes/gateways/class.pmprogateway_stripe.php:1326 #: classes/gateways/class.pmprogateway_stripe.php:785 #: pages/billing.php:381 +#: classes/gateways/class.pmprogateway_braintree.php:486 +#: classes/gateways/class.pmprogateway_stripe.php:893 msgid "Expiration Date" msgstr "Fecha de expiración" @@ -1080,6 +1148,7 @@ msgstr "Fecha de expiración" #: adminpages/discountcodes.php:787 #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:789 +#: adminpages/discountcodes.php:790 msgid "Uses" msgstr "Usa" @@ -1096,6 +1165,7 @@ msgstr "Dejar en blanco para permitir uso ilimitado." #: adminpages/discountcodes.php:574 #: adminpages/membershiplevels.php:401 #: adminpages/discountcodes.php:576 +#: adminpages/membershiplevels.php:399 msgid "Initial Payment" msgstr "Pago inicial" @@ -1104,6 +1174,7 @@ msgstr "Pago inicial" #: adminpages/discountcodes.php:585 #: adminpages/membershiplevels.php:412 #: adminpages/discountcodes.php:587 +#: adminpages/membershiplevels.php:410 msgid "The initial amount collected at registration." msgstr "La cantidad inicial recogida durante el registro." @@ -1112,6 +1183,7 @@ msgstr "La cantidad inicial recogida durante el registro." #: adminpages/discountcodes.php:590 #: adminpages/membershiplevels.php:417 #: adminpages/discountcodes.php:592 +#: adminpages/membershiplevels.php:415 msgid "Recurring Subscription" msgstr "Subscripción recurrente." @@ -1120,6 +1192,7 @@ msgstr "Subscripción recurrente." #: adminpages/discountcodes.php:591 #: adminpages/membershiplevels.php:418 #: adminpages/discountcodes.php:593 +#: adminpages/membershiplevels.php:416 msgid "Check if this level has a recurring subscription payment." msgstr "Comprobar si el nivel tiene una subscripción de pago recurrente." @@ -1132,6 +1205,7 @@ msgstr "Cantidad a facturar" #: adminpages/discountcodes.php:618 #: adminpages/membershiplevels.php:446 #: adminpages/discountcodes.php:620 +#: adminpages/membershiplevels.php:444 msgid "The amount to be billed one cycle after the initial payment." msgstr "La cantidad que se cobrará un ciclo despues del pago inicial." @@ -1140,6 +1214,7 @@ msgstr "La cantidad que se cobrará un ciclo despues del pago inicial." #: adminpages/discountcodes.php:628 #: adminpages/membershiplevels.php:465 #: adminpages/discountcodes.php:630 +#: adminpages/membershiplevels.php:463 msgid "Billing Cycle Limit" msgstr "Límite del ciclo de facturación" @@ -1148,6 +1223,7 @@ msgstr "Límite del ciclo de facturación" #: adminpages/discountcodes.php:632 #: adminpages/membershiplevels.php:469 #: adminpages/discountcodes.php:634 +#: adminpages/membershiplevels.php:467 msgid "The total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "El número totalde ciclos recurrentes para este nivel, incluyendo el periodo de prueba ( si existe) pero no incluyendo el pago inicial. " @@ -1156,6 +1232,8 @@ msgstr "El número totalde ciclos recurrentes para este nivel, #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "Periodo de prueba personalizado" @@ -1164,6 +1242,8 @@ msgstr "Periodo de prueba personalizado" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "Seleccionar para añadir un periodo de prueba personalizado." @@ -1172,6 +1252,7 @@ msgstr "Seleccionar para añadir un periodo de prueba personalizado." #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "Cantidad a facturar por periodo de prueba" @@ -1180,6 +1261,7 @@ msgstr "Cantidad a facturar por periodo de prueba" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "por el/los primer/os" @@ -1188,6 +1270,7 @@ msgstr "por el/los primer/os" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "pagos de susbscipción" @@ -1196,6 +1279,7 @@ msgstr "pagos de susbscipción" #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "Expiración de la membresía" @@ -1209,6 +1293,8 @@ msgstr "Marcar para seleccionar una fecha de expiración para nuevos registros." #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "Expira en" @@ -1219,12 +1305,14 @@ msgstr "Cuanto tiempo ha de pasar antes de que la expiración expire. Ten en cue #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "Cupónes de descuento de membresías" #: adminpages/discountcodes.php:535 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "Buscar cupones de descuento" @@ -1232,12 +1320,14 @@ msgstr "Buscar cupones de descuento" #: adminpages/reports/login.php:81 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "Busqueda" #: adminpages/discountcodes.php:549 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "Estadísticas" @@ -1245,6 +1335,7 @@ msgstr "Estadísticas" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "Niveles" @@ -1264,6 +1355,7 @@ msgstr "Crea tu primer cupón de descuento ahora" #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "editar" @@ -1284,6 +1376,7 @@ msgstr "borrar" #: adminpages/emailsettings.php:61 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "Por defecto, emails generados por el sistema son enviades desde wordpress@tudominio.com. Puedes actualizar esta dirección desde usando los campos de aqui abajo." @@ -1293,11 +1386,13 @@ msgstr "Para modificar la apariencia de los emails generados por el sistema, añ #: adminpages/emailsettings.php:69 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "Campo desde del email" #: adminpages/emailsettings.php:77 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "Campo nombre del email" @@ -1413,23 +1508,29 @@ msgstr "Añade un nuevo nivel de membresía" #: adminpages/reports/history.php:184 #: adminpages/reports/login.php:181 #: adminpages/reports/login.php:184 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 msgid "Name" msgstr "Nombre" #: adminpages/membershiplevels.php:296 #: adminpages/addons.php:111 #: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "Descripción" #: adminpages/membershiplevels.php:314 #: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "Mensaje de confirmación" #: adminpages/membershiplevels.php:333 #: adminpages/membershiplevels.php:397 #: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "Detalles de facturación" @@ -1437,6 +1538,7 @@ msgstr "Detalles de facturación" #: adminpages/discountcodes.php:595 #: adminpages/membershiplevels.php:422 #: adminpages/discountcodes.php:597 +#: adminpages/membershiplevels.php:420 msgid "Billing Amount" msgstr "Cantidad a facturar" @@ -1452,6 +1554,8 @@ msgstr "Cantidad a facturar" #: classes/gateways/class.pmprogateway_stripe.php:2696 #: classes/gateways/class.pmprogateway_stripe.php:2698 #: classes/gateways/class.pmprogateway_stripe.php:2694 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "por" @@ -1470,6 +1574,10 @@ msgstr "por" #: classes/gateways/class.pmprogateway_stripe.php:2637 #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2635 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3092 msgid "Day(s)" msgstr "Día(s)" @@ -1488,6 +1596,10 @@ msgstr "Día(s)" #: classes/gateways/class.pmprogateway_stripe.php:2638 #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2636 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3093 msgid "Week(s)" msgstr "Semana(s)" @@ -1506,6 +1618,10 @@ msgstr "Semana(s)" #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2641 #: classes/gateways/class.pmprogateway_stripe.php:2637 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3094 msgid "Month(s)" msgstr "Mes(es)" @@ -1524,6 +1640,10 @@ msgstr "Mes(es)" #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2642 #: classes/gateways/class.pmprogateway_stripe.php:2638 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3095 msgid "Year(s)" msgstr "Año(s)" @@ -1535,6 +1655,7 @@ msgstr "La integración con Stripe actualmente solo soporta periodos de facturac #: adminpages/discountcodes.php:620 #: adminpages/membershiplevels.php:448 #: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:446 msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." msgstr "La integración con Braintree actualmente solo soporta periodos de facturación \"mensuales \" o \"anuales \"." @@ -1548,11 +1669,14 @@ msgstr "La integración con Payflow actualmente solo soporta frecuencias de 1 pa #: adminpages/membershiplevels.php:454 #: adminpages/membershiplevels.php:459 #: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 msgid "Note" msgstr "Nota" #: adminpages/membershiplevels.php:372 #: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." msgstr "Despues de guardar este nivel, apunta la ID y crea un \"Plan\" en tu escritorio de Braintree con las mismas opciones y el \"Plan ID\" con valor pmpro_# donde # es el ID de nivel." @@ -1564,6 +1688,7 @@ msgstr "Necesitas crear un \"Plan\" en el escritorio de tu Braintree con las mi #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "La integración con Stripe actualmente no soporta límites de facturación. Pero puedes elegir una fecha de expiración aqui abajo." @@ -1571,6 +1696,7 @@ msgstr "La integración con Stripe actualmente no soporta límites de facturaci #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "La integracion con Stripe actualmente no soporta cantidades para el periodo de prueba superiores a $0." @@ -1578,6 +1704,7 @@ msgstr "La integracion con Stripe actualmente no soporta cantidades para el peri #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "La integracion con Braintree actualmente no soporta cantidades para el periodo de prueba superiores a $0." @@ -1585,6 +1712,7 @@ msgstr "La integracion con Braintree actualmente no soporta cantidades para el p #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "La integracion con Payflow actualmente no soporta cantidades para el periodo de prueba superiores a $0." @@ -1593,6 +1721,7 @@ msgstr "La integracion con Payflow actualmente no soporta cantidades para el per #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "Otras opciones" @@ -1610,6 +1739,7 @@ msgstr "Marcar para esconder este nivel de la página de membresías y desactiva #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "Marcar esto para elegir cuando termina el acceso a la membresía." @@ -1617,6 +1747,8 @@ msgstr "Marcar esto para elegir cuando termina el acceso a la membresía." #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "Elige la duración de acceso para la membresía. Ten en cuenta que cualquier futuro pago ( subscripciones recurrentes, si las hay) serán canceladas cuando la membresía expire." @@ -1624,11 +1756,14 @@ msgstr "Elige la duración de acceso para la membresía. Ten en cuenta que cualq #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "Opciones de contenido" #: adminpages/membershiplevels.php:461 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "Categorías" @@ -1662,17 +1797,21 @@ msgstr "Periodo de prueba" #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "Expiración" #: adminpages/membershiplevels.php:511 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "Permitir registros" #: adminpages/membershiplevels.php:534 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "GRATIS" @@ -1690,12 +1829,15 @@ msgstr "cada" #: adminpages/reports/sales.php:314 #: adminpages/reports/sales.php:321 #: adminpages/reports/sales.php:332 +#: adminpages/reports/memberships.php:341 +#: adminpages/reports/memberships.php:352 msgid "for" msgstr "por" #: adminpages/membershiplevels.php:560 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "Despues" @@ -1719,6 +1861,8 @@ msgstr "¿Seguro que quieres borrar el nivel de membresía %s? Todas las subscri #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "Exportar a CSV" @@ -1737,6 +1881,8 @@ msgstr "Exportar a CSV" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "Mostrar" @@ -1757,6 +1903,8 @@ msgstr "Mostrar" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "Todos los niveles" @@ -1766,6 +1914,8 @@ msgstr "Todos los niveles" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "Buscar Miembros" @@ -1789,6 +1939,8 @@ msgstr "%d miembros encontrados." #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "Nombre de usuario" @@ -1811,6 +1963,7 @@ msgstr "Apellidos" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "Dirección de facturación" @@ -1843,6 +1996,8 @@ msgstr "Se unió" #: includes/profile.php:515 #: includes/profile.php:511 #: adminpages/advancedsettings.php:331 +#: adminpages/advancedsettings.php:338 +#: includes/profile.php:551 msgid "Never" msgstr "Nunca" @@ -1886,6 +2041,7 @@ msgstr "Error eliminando pago." #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "Pago guardado correctamente." @@ -1897,6 +2053,7 @@ msgstr "Error actualizando timestamp del pago." #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "Error guardando pago." @@ -1907,6 +2064,7 @@ msgstr "Error guardando pago." #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "Pagos" @@ -1914,6 +2072,7 @@ msgstr "Pagos" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "Nuevo Pago" @@ -1921,6 +2080,7 @@ msgstr "Nuevo Pago" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "Generado aleatoriamente para ti." @@ -1928,6 +2088,7 @@ msgstr "Generado aleatoriamente para ti." #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "ID de usuario" @@ -1936,6 +2097,8 @@ msgstr "ID de usuario" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "ID de nivel de membresía" @@ -1944,6 +2107,7 @@ msgstr "ID de nivel de membresía" #: includes/privacy.php:245 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "Nombre (facturación)" @@ -1952,6 +2116,7 @@ msgstr "Nombre (facturación)" #: includes/privacy.php:249 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "Calle (facturación)" @@ -1961,6 +2126,7 @@ msgstr "Calle (facturación)" #: includes/privacy.php:358 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "Ciudad (facturación)" @@ -1969,6 +2135,7 @@ msgstr "Ciudad (facturación)" #: includes/privacy.php:257 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "Estado (facturación)" @@ -1979,6 +2146,7 @@ msgstr "Estado (facturación)" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "Código Postal (facturación)" @@ -1989,6 +2157,7 @@ msgstr "Código Postal (facturación)" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "País (facturación)" @@ -1998,6 +2167,7 @@ msgstr "País (facturación)" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "Teléfono (facturación)" @@ -2007,6 +2177,7 @@ msgstr "Teléfono (facturación)" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "Subtotal" @@ -2020,6 +2191,8 @@ msgstr "Subtotal" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "Impuesto" @@ -2029,6 +2202,7 @@ msgstr "Impuesto" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "Cantidad de cupón" @@ -2050,6 +2224,9 @@ msgstr "Cantidad de cupón" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "Total" @@ -2063,6 +2240,7 @@ msgstr "Debería ser subtotal + impuesto -cantidadcupon" #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "Tipo de pago" @@ -2071,6 +2249,7 @@ msgstr "Tipo de pago" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "p.ej. PayPal Express, PayPal Standard, Credit Card." @@ -2091,6 +2270,9 @@ msgstr "p.ej. PayPal Express, PayPal Standard, Credit Card." #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "Tipo de tarjeta" @@ -2099,6 +2281,7 @@ msgstr "Tipo de tarjeta" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "p.ej. Visa, MasterCard, AMEX, etc" @@ -2109,6 +2292,8 @@ msgstr "p.ej. Visa, MasterCard, AMEX, etc" #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "Número de cuenta" @@ -2116,6 +2301,7 @@ msgstr "Número de cuenta" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "Esconde todo menos los últimos 4 dígitos" @@ -2127,6 +2313,7 @@ msgstr "Esconde todo menos los últimos 4 dígitos" #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "Mes de expiración" @@ -2159,6 +2346,10 @@ msgstr "Año de expiración" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "Estado" @@ -2174,6 +2365,9 @@ msgstr "Estado" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "Pasarela" @@ -2181,6 +2375,7 @@ msgstr "Pasarela" #: paid-memberships-pro.php:157 #: paid-memberships-pro.php:159 #: paid-memberships-pro.php:160 +#: paid-memberships-pro.php:166 msgid "Testing Only" msgstr "Prueba solo" @@ -2190,6 +2385,7 @@ msgstr "Prueba solo" #: paid-memberships-pro.php:158 #: paid-memberships-pro.php:160 #: paid-memberships-pro.php:161 +#: paid-memberships-pro.php:167 msgid "Pay by Check" msgstr "Pagar con cheque" @@ -2201,6 +2397,8 @@ msgstr "Pagar con cheque" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "Entorno de pasarela (Gateway Environment)" @@ -2215,6 +2413,9 @@ msgstr "Entorno de pasarela (Gateway Environment)" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "Sandbox/Pruebas" @@ -2229,6 +2430,9 @@ msgstr "Sandbox/Pruebas" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "Vivo/Producción" @@ -2237,6 +2441,7 @@ msgstr "Vivo/Producción" #: includes/privacy.php:321 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "ID de transacción de pago" @@ -2244,6 +2449,7 @@ msgstr "ID de transacción de pago" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "Generado por la pasarela. Útil para comparar pagos." @@ -2254,6 +2460,8 @@ msgstr "Generado por la pasarela. Útil para comparar pagos." #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "ID de transacción de la subscripción" @@ -2262,6 +2470,7 @@ msgstr "ID de transacción de la subscripción" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "Generado por la pasarela. Util para comparar subscripciones." @@ -2283,6 +2492,9 @@ msgstr "Generado por la pasarela. Util para comparar subscripciones." #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:492 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "Fecha" @@ -2291,6 +2503,7 @@ msgstr "Fecha" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "ID de afiliado" @@ -2299,6 +2512,7 @@ msgstr "ID de afiliado" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "SubID de afiliado" @@ -2307,6 +2521,7 @@ msgstr "SubID de afiliado" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "Notas" @@ -2315,6 +2530,7 @@ msgstr "Notas" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "Guardar pago" @@ -2338,6 +2554,11 @@ msgstr "Guardar pago" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "Cancelar" @@ -2346,6 +2567,7 @@ msgstr "Cancelar" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "Añadir nuevo pago" @@ -2359,6 +2581,8 @@ msgstr "Añadir nuevo pago" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "Buscar pagos" @@ -2367,6 +2591,8 @@ msgstr "Buscar pagos" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "%d pagos encontrados." @@ -2382,6 +2608,7 @@ msgstr "%d pagos encontrados." #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "Usuario" @@ -2395,6 +2622,7 @@ msgstr "Usuario" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "Método de pago" @@ -2403,6 +2631,7 @@ msgstr "Método de pago" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "IDs de transacción" @@ -2422,6 +2651,8 @@ msgstr "IDs de transacción" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "borrado" @@ -2430,6 +2661,7 @@ msgstr "borrado" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "Subscripción" @@ -2439,6 +2671,7 @@ msgstr "Subscripción" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "Borrar un pago es permanente y puede afectar a los usuarios activos. ¿Seguro que quieres borrar el pago %s?" @@ -2452,6 +2685,7 @@ msgstr "Borrar un pago es permanente y puede afectar a los usuarios activos. ¿S #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "No se han encontrado pagos." @@ -2466,6 +2700,7 @@ msgstr "Las siguientes páginas han sido creadas para ti" #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "Gestiona las páginas WordPress asignando a cada una la página de Paid Memberships Pro requerida." @@ -2473,6 +2708,7 @@ msgstr "Gestiona las páginas WordPress asignando a cada una la página de Paid #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "Asigna a cada página WordPress la página de Paid Memberships Pro requerida o" @@ -2480,6 +2716,7 @@ msgstr "Asigna a cada página WordPress la página de Paid Memberships Pro reque #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "haz click aqui para que dejarnos generarlas por ti" @@ -2487,6 +2724,7 @@ msgstr "haz click aqui para que dejarnos generarlas por ti" #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "Página de Cuenta" @@ -2525,6 +2763,16 @@ msgstr "Página de Cuenta" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "editar página" @@ -2555,6 +2803,13 @@ msgstr "editar página" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:248 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "Incluye el shortcode" @@ -2562,6 +2817,7 @@ msgstr "Incluye el shortcode" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "Página de información de facturación" @@ -2569,6 +2825,7 @@ msgstr "Página de información de facturación" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "Página de cancelación" @@ -2576,6 +2833,7 @@ msgstr "Página de cancelación" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "Página de pago" @@ -2583,6 +2841,7 @@ msgstr "Página de pago" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "Página de confirmación" @@ -2590,6 +2849,7 @@ msgstr "Página de confirmación" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "Página de facturas" @@ -2597,6 +2857,7 @@ msgstr "Página de facturas" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "Página de niveles" @@ -2611,6 +2872,7 @@ msgstr "Las opciones de pago han sido actualizadas." #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "Pasarela de pagos" @@ -2618,6 +2880,7 @@ msgstr "Pasarela de pagos" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "Opciones SSL" @@ -2647,6 +2910,7 @@ msgstr "Contraseña" #: classes/gateways/class.pmprogateway_paypalexpress.php:162 #: classes/gateways/class.pmprogateway_paypalstandard.php:154 #: classes/gateways/class.pmprogateway_paypalexpress.php:172 +#: classes/gateways/class.pmprogateway_paypalexpress.php:173 msgid "Gateway Account Email" msgstr "Email de cuenta de la Pasarela " @@ -2656,6 +2920,8 @@ msgstr "Email de cuenta de la Pasarela " #: classes/gateways/class.pmprogateway_paypalstandard.php:162 #: classes/gateways/class.pmprogateway_twocheckout.php:120 #: classes/gateways/class.pmprogateway_paypalexpress.php:180 +#: classes/gateways/class.pmprogateway_paypalexpress.php:181 +#: classes/gateways/class.pmprogateway_twocheckout.php:127 msgid "API Username" msgstr "Nombre de usuario de API (API Username)" @@ -2665,6 +2931,8 @@ msgstr "Nombre de usuario de API (API Username)" #: classes/gateways/class.pmprogateway_paypalstandard.php:170 #: classes/gateways/class.pmprogateway_twocheckout.php:129 #: classes/gateways/class.pmprogateway_paypalexpress.php:188 +#: classes/gateways/class.pmprogateway_paypalexpress.php:189 +#: classes/gateways/class.pmprogateway_twocheckout.php:136 msgid "API Password" msgstr "Contraseña de API (API Password)" @@ -2673,6 +2941,7 @@ msgstr "Contraseña de API (API Password)" #: classes/gateways/class.pmprogateway_paypalexpress.php:186 #: classes/gateways/class.pmprogateway_paypalstandard.php:178 #: classes/gateways/class.pmprogateway_paypalexpress.php:196 +#: classes/gateways/class.pmprogateway_paypalexpress.php:197 msgid "API Signature" msgstr "Firma de API (API Signature)" @@ -2692,6 +2961,7 @@ msgstr "Llave de transaccion (Transaction Key)" #: classes/gateways/class.pmprogateway_stripe.php:570 #: classes/gateways/class.pmprogateway_stripe.php:576 #: classes/gateways/class.pmprogateway_stripe.php:340 +#: classes/gateways/class.pmprogateway_stripe.php:366 msgid "Secret Key" msgstr "Llave secreta (Secret Key)" @@ -2701,27 +2971,32 @@ msgstr "Llave secreta (Secret Key)" #: classes/gateways/class.pmprogateway_stripe.php:554 #: classes/gateways/class.pmprogateway_stripe.php:560 #: classes/gateways/class.pmprogateway_stripe.php:324 +#: classes/gateways/class.pmprogateway_stripe.php:350 msgid "Publishable Key" msgstr "Llave publicable (Publishable Key)" #: adminpages/paymentsettings.php:294 #: classes/gateways/class.pmprogateway_braintree.php:313 #: classes/gateways/class.pmprogateway_cybersource.php:94 +#: classes/gateways/class.pmprogateway_braintree.php:320 msgid "Merchant ID" msgstr "ID de mercader (Merchant ID)" #: adminpages/paymentsettings.php:302 #: classes/gateways/class.pmprogateway_braintree.php:321 +#: classes/gateways/class.pmprogateway_braintree.php:328 msgid "Public Key" msgstr "Llave pública (Public Key)" #: adminpages/paymentsettings.php:310 #: classes/gateways/class.pmprogateway_braintree.php:329 +#: classes/gateways/class.pmprogateway_braintree.php:336 msgid "Private Key" msgstr "Llave privada (Private Key)" #: adminpages/paymentsettings.php:318 #: classes/gateways/class.pmprogateway_braintree.php:337 +#: classes/gateways/class.pmprogateway_braintree.php:344 msgid "Client-Side Encryption Key" msgstr "Llave de encripción para el lado del cliente (Client-Side Encryption Key)" @@ -2730,12 +3005,14 @@ msgstr "Llave de encripción para el lado del cliente (Client-Side Encryption Ke #: adminpages/paymentsettings.php:356 #: adminpages/paymentsettings.php:199 #: adminpages/paymentsettings.php:206 +#: adminpages/paymentsettings.php:204 msgid "Currency" msgstr "Moneda" #: adminpages/paymentsettings.php:375 #: adminpages/paymentsettings.php:220 #: adminpages/paymentsettings.php:227 +#: adminpages/paymentsettings.php:225 msgid "Accepted Credit Card Types" msgstr "Tipos de tarjeta de crédito aceptados" @@ -2752,6 +3029,7 @@ msgstr "A nombre de quien escribir el cheque. Donde enviarlo. Mostrado durante c #: adminpages/paymentsettings.php:398 #: adminpages/paymentsettings.php:234 #: adminpages/paymentsettings.php:241 +#: adminpages/paymentsettings.php:239 msgid "Sales Tax" msgstr "IVA (impuesto a las ventas)" @@ -2761,24 +3039,28 @@ msgstr "IVA (impuesto a las ventas)" #: pages/billing.php:179 #: adminpages/paymentsettings.php:241 #: pages/billing.php:181 +#: adminpages/paymentsettings.php:239 msgid "optional" msgstr "opcional" #: adminpages/paymentsettings.php:401 #: adminpages/paymentsettings.php:237 #: adminpages/paymentsettings.php:244 +#: adminpages/paymentsettings.php:242 msgid "Tax State" msgstr "Impuesto del estado" #: adminpages/paymentsettings.php:402 #: adminpages/paymentsettings.php:238 #: adminpages/paymentsettings.php:245 +#: adminpages/paymentsettings.php:243 msgid "abbreviation, e.g. \"PA\"" msgstr "abreviación, p.ej. \"PA\"" #: adminpages/paymentsettings.php:404 #: adminpages/paymentsettings.php:240 #: adminpages/paymentsettings.php:247 +#: adminpages/paymentsettings.php:245 msgid "decimal, e.g. \"0.06\"" msgstr "decimal, p.ej. \"0.06\"" @@ -2798,6 +3080,7 @@ msgstr "Requerido por esta opcion de pasarela" #: adminpages/paymentsettings.php:430 #: adminpages/paymentsettings.php:278 #: adminpages/paymentsettings.php:291 +#: adminpages/paymentsettings.php:289 msgid "SSL Seal Code" msgstr "Código de sellado SSL" @@ -2814,6 +3097,7 @@ msgstr "Usar la \"Opción Nuclear\" para usar URLs seguras (HTTPS) en tus págin #: classes/gateways/class.pmprogateway_paypalexpress.php:205 #: classes/gateways/class.pmprogateway_paypalstandard.php:186 #: classes/gateways/class.pmprogateway_paypalexpress.php:215 +#: classes/gateways/class.pmprogateway_paypalexpress.php:216 msgid "IPN Handler URL" msgstr "IPN Handler URL" @@ -2821,6 +3105,7 @@ msgstr "IPN Handler URL" #: classes/gateways/class.pmprogateway_paypal.php:199 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 #: classes/gateways/class.pmprogateway_paypalexpress.php:218 +#: classes/gateways/class.pmprogateway_paypalexpress.php:219 msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to " msgstr "Para integrar completamente con Paypal, asegúrate de introducir tu IPN Handler URL a" @@ -2837,6 +3122,7 @@ msgstr "Para integrar completamente con Authorize.net, asegurate de asignar tu S #: adminpages/paymentsettings.php:462 #: adminpages/paymentsettings.php:470 #: classes/gateways/class.pmprogateway_braintree.php:345 +#: classes/gateways/class.pmprogateway_braintree.php:352 msgid "Web Hook URL" msgstr "Web Hook URL" @@ -2846,6 +3132,7 @@ msgstr "Para integrar completamente con Stripe, asegurate de asignar tu Web Hook #: adminpages/paymentsettings.php:474 #: classes/gateways/class.pmprogateway_braintree.php:348 +#: classes/gateways/class.pmprogateway_braintree.php:355 msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to" msgstr "Para integrar completamente con Braintree, asegurate de asignar tu Web Hook URL a" @@ -2924,6 +3211,7 @@ msgstr "Informe de visitas, vistas, y logins" #: classes/class-pmpro-members-list-table.php:234 #: classes/class-pmpro-members-list-table.php:233 #: adminpages/reports/login.php:105 +#: adminpages/reports/login.php:111 msgid "All Users" msgstr "Todos los usuarios" @@ -2970,6 +3258,8 @@ msgstr "Ventas y ingresos" #: adminpages/reports/sales.php:295 #: adminpages/advancedsettings.php:322 #: adminpages/reports/sales.php:313 +#: adminpages/advancedsettings.php:329 +#: adminpages/reports/memberships.php:332 msgid "Daily" msgstr "A diario" @@ -2979,6 +3269,8 @@ msgstr "A diario" #: adminpages/reports/sales.php:296 #: adminpages/advancedsettings.php:328 #: adminpages/reports/sales.php:314 +#: adminpages/advancedsettings.php:335 +#: adminpages/reports/memberships.php:333 msgid "Monthly" msgstr "Al mes" @@ -2986,6 +3278,7 @@ msgstr "Al mes" #: adminpages/reports/memberships.php:335 #: adminpages/reports/sales.php:297 #: adminpages/reports/sales.php:315 +#: adminpages/reports/memberships.php:334 msgid "Annual" msgstr "Al año" @@ -3007,6 +3300,7 @@ msgstr "Ventas" #: adminpages/reports/memberships.php:385 #: adminpages/reports/sales.php:342 #: adminpages/reports/sales.php:360 +#: adminpages/reports/memberships.php:384 msgid "Generate Report" msgstr "Generar informe" @@ -3033,6 +3327,7 @@ msgstr "Membresía para %s en %s ha sido CANCELADA" #: classes/class.pmproemail.php:172 #: classes/class.pmproemail.php:269 #: classes/class.pmproemail.php:262 +#: classes/class.pmproemail.php:395 #, php-format msgid "Your membership confirmation for %s" msgstr "Confirmación de membresía para %s" @@ -3088,6 +3383,18 @@ msgstr "Confirmación de membresía para %s" #: classes/class.pmproemail.php:764 #: adminpages/orders.php:576 #: adminpages/orders.php:1343 +#: adminpages/orders.php:697 +#: adminpages/orders.php:1437 +#: classes/class.pmproemail.php:465 +#: classes/class.pmproemail.php:471 +#: classes/class.pmproemail.php:477 +#: classes/class.pmproemail.php:567 +#: classes/class.pmproemail.php:573 +#: classes/class.pmproemail.php:895 +#: classes/class.pmproemail.php:897 +#: classes/gateways/class.pmprogateway_braintree.php:516 +#: classes/gateways/class.pmprogateway_stripe.php:906 +#: includes/profile.php:454 msgid "Discount Code" msgstr "Cupón de descuento" @@ -3115,6 +3422,11 @@ msgstr "Cupón de descuento" #: classes/class.pmproemail.php:771 #: classes/class.pmproemail.php:905 #: classes/class.pmproemail.php:950 +#: classes/class.pmproemail.php:485 +#: classes/class.pmproemail.php:583 +#: classes/class.pmproemail.php:904 +#: classes/class.pmproemail.php:1038 +#: classes/class.pmproemail.php:1083 #, php-format msgid "This membership will expire on %s." msgstr "Esta membresía caducará en %s" @@ -3153,6 +3465,7 @@ msgstr "FACTURA por mebresa %s" #: classes/class.pmproemail.php:794 #: classes/class.pmproemail.php:806 #: classes/class.pmproemail.php:799 +#: classes/class.pmproemail.php:932 #, php-format msgid "Your trial at %s is ending soon" msgstr "Tu periodo de prueba en %s se acaba pronto" @@ -3161,6 +3474,7 @@ msgstr "Tu periodo de prueba en %s se acaba pronto" #: classes/class.pmproemail.php:831 #: classes/class.pmproemail.php:843 #: classes/class.pmproemail.php:836 +#: classes/class.pmproemail.php:969 #, php-format msgid "Your membership at %s has ended" msgstr "Tu membresía en %s ha terminado" @@ -3169,6 +3483,7 @@ msgstr "Tu membresía en %s ha terminado" #: classes/class.pmproemail.php:858 #: classes/class.pmproemail.php:870 #: classes/class.pmproemail.php:863 +#: classes/class.pmproemail.php:996 #, php-format msgid "Your membership at %s will end soon" msgstr "Tu membresía en %s acabará pronto" @@ -3177,6 +3492,7 @@ msgstr "Tu membresía en %s acabará pronto" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:900 #: classes/class.pmproemail.php:893 +#: classes/class.pmproemail.php:1026 #, php-format msgid "Your membership at %s has been changed" msgstr "Tu membresía en %s ha cambiado" @@ -3206,6 +3522,7 @@ msgstr "Esta membresa no caduca" #: classes/class.pmproemail.php:933 #: classes/class.pmproemail.php:945 #: classes/class.pmproemail.php:938 +#: classes/class.pmproemail.php:1071 #, php-format msgid "Membership for %s at %s has been changed" msgstr "La membresía para %s en %s ha cambiado" @@ -3273,36 +3590,42 @@ msgstr "No se pudo conectar a Authorize.net" #: classes/gateways/class.pmprogateway_braintree.php:61 #: classes/gateways/class.pmprogateway_stripe.php:53 #: classes/gateways/class.pmprogateway_braintree.php:574 +#: classes/gateways/class.pmprogateway_braintree.php:581 msgid "Unknown error: Initial payment failed." msgstr "Error desconocido: El pago inicial ha fallado." #: classes/gateways/class.pmprogateway_braintree.php:120 #: classes/gateways/class.pmprogateway_braintree.php:650 #: classes/gateways/class.pmprogateway_braintree.php:653 +#: classes/gateways/class.pmprogateway_braintree.php:660 msgid "Error during settlement:" msgstr "Error durante la resolución del pago:" #: classes/gateways/class.pmprogateway_braintree.php:129 #: classes/gateways/class.pmprogateway_braintree.php:659 #: classes/gateways/class.pmprogateway_braintree.php:662 +#: classes/gateways/class.pmprogateway_braintree.php:669 msgid "Error during charge:" msgstr "Error durante el pago:" #: classes/gateways/class.pmprogateway_braintree.php:198 #: classes/gateways/class.pmprogateway_braintree.php:762 #: classes/gateways/class.pmprogateway_braintree.php:765 +#: classes/gateways/class.pmprogateway_braintree.php:772 msgid "Failed to update customer." msgstr "Falló actualizando cliente." #: classes/gateways/class.pmprogateway_braintree.php:246 #: classes/gateways/class.pmprogateway_braintree.php:810 #: classes/gateways/class.pmprogateway_braintree.php:813 +#: classes/gateways/class.pmprogateway_braintree.php:820 msgid "Failed to create customer." msgstr "Falló al crear cliente." #: classes/gateways/class.pmprogateway_braintree.php:253 #: classes/gateways/class.pmprogateway_braintree.php:817 #: classes/gateways/class.pmprogateway_braintree.php:820 +#: classes/gateways/class.pmprogateway_braintree.php:827 msgid "Error creating customer record with Braintree:" msgstr "Error creando entrada para el cliente con Braintree:" @@ -3321,6 +3644,7 @@ msgstr "Error al subscribirse con Braintree:" #: classes/gateways/class.pmprogateway_stripe.php:353 #: classes/gateways/class.pmprogateway_braintree.php:1036 #: classes/gateways/class.pmprogateway_braintree.php:1039 +#: classes/gateways/class.pmprogateway_braintree.php:1046 msgid "Could not find the subscription." msgstr "No se pudo encontrar la subscripción." @@ -3364,6 +3688,8 @@ msgstr "Error creando entrada para el cliente con Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "Error creando plan con Stripe:" @@ -3384,6 +3710,8 @@ msgstr "Error creando plan con Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "Error subscribiendo al cliente al plan con Stripe:" @@ -3420,6 +3748,9 @@ msgstr "Tu membresía esta activa." #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "Nivel" @@ -3472,6 +3803,8 @@ msgstr "Editar Perfil" #: includes/profile.php:921 #: includes/profile.php:880 #: includes/profile.php:917 +#: includes/profile.php:920 +#: includes/profile.php:957 msgid "Change Password" msgstr "Cambiar Contraseña" @@ -3541,6 +3874,7 @@ msgstr "Tu subscripción de pago es gestionada por Paypal. Por favor Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:116 #: includes/updates/upgrade_1.php:13 #: adminpages/advancedsettings.php:118 +#: adminpages/advancedsettings.php:126 msgid "This content is for members only. Visit the site and log in/register to read." msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -4643,113 +5041,135 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:199 #: adminpages/advancedsettings.php:201 +#: adminpages/advancedsettings.php:208 msgid "Filter searches and archives?" msgstr "" #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:205 +#: adminpages/advancedsettings.php:212 msgid "No - Non-members will see restricted posts/pages in searches and archives." msgstr "" #: adminpages/advancedsettings.php:204 #: adminpages/advancedsettings.php:206 +#: adminpages/advancedsettings.php:213 msgid "Yes - Only members will see restricted posts/pages in searches and archives." msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:333 #: adminpages/advancedsettings.php:348 +#: adminpages/advancedsettings.php:355 msgid "Hide Ads From Members?" msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -4781,6 +5201,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -4844,6 +5265,7 @@ msgstr "" #: adminpages/license.php:49 #: adminpages/dashboard.php:178 #: adminpages/license.php:41 +#: adminpages/license.php:53 msgid "Your license is invalid or expired." msgstr "" @@ -4858,6 +5280,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -4963,6 +5386,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -5006,6 +5430,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -5018,37 +5443,47 @@ msgstr "" #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 msgid "%d discount codes found." msgstr "" @@ -5074,6 +5509,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -5092,6 +5534,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -5109,6 +5557,11 @@ msgstr "" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "" @@ -5117,23 +5570,28 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "" #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -5174,196 +5632,246 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:960 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:156 +#: adminpages/emailtemplates.php:149 msgid "Billing Information" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:170 #: includes/privacy.php:363 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -5393,6 +5901,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "" @@ -5410,12 +5919,14 @@ msgstr "" #: adminpages/license.php:59 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -5423,14 +5934,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -5447,35 +5961,44 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -5485,6 +6008,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -5492,6 +6017,7 @@ msgstr "" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -5499,6 +6025,7 @@ msgstr "" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "" @@ -5506,6 +6033,7 @@ msgstr "" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "" @@ -5513,6 +6041,7 @@ msgstr "" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "" @@ -5520,6 +6049,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -5527,6 +6057,7 @@ msgstr "" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "" @@ -5534,6 +6065,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -5541,6 +6073,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -5548,6 +6081,7 @@ msgstr "" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "" @@ -5555,6 +6089,7 @@ msgstr "" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "" @@ -5562,6 +6097,7 @@ msgstr "" #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "" @@ -5572,6 +6108,7 @@ msgstr "" #: adminpages/orders.php:1077 #: adminpages/orders.php:1069 #: adminpages/orders.php:1070 +#: adminpages/orders.php:1158 msgid "This Month" msgstr "" @@ -5579,6 +6116,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -5588,6 +6126,7 @@ msgstr "" #: adminpages/orders.php:1081 #: adminpages/orders.php:1073 #: adminpages/orders.php:1074 +#: adminpages/orders.php:1162 msgid "This Year" msgstr "" @@ -5595,6 +6134,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -5602,6 +6142,7 @@ msgstr "" #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "" @@ -5682,24 +6223,28 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" @@ -5726,6 +6271,14 @@ msgstr "" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "" @@ -5757,60 +6310,79 @@ msgstr "" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:246 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -5820,6 +6392,8 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" @@ -5832,12 +6406,16 @@ msgstr "" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -5845,24 +6423,28 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "" @@ -5872,31 +6454,37 @@ msgstr "" #: adminpages/paymentsettings.php:122 #: adminpages/paymentsettings.php:127 +#: adminpages/paymentsettings.php:125 msgid "Choose a Gateway" msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" #: adminpages/paymentsettings.php:194 #: adminpages/paymentsettings.php:201 +#: adminpages/paymentsettings.php:199 msgid "Currency and Tax Settings" msgstr "" #: adminpages/paymentsettings.php:215 #: adminpages/paymentsettings.php:222 +#: adminpages/paymentsettings.php:220 msgid "Not all currencies will be supported by every gateway. Please check with your gateway." msgstr "" #: adminpages/paymentsettings.php:239 #: adminpages/paymentsettings.php:246 +#: adminpages/paymentsettings.php:244 msgid "Tax Rate" msgstr "" @@ -5906,21 +6494,25 @@ msgstr "" #: adminpages/paymentsettings.php:253 #: adminpages/paymentsettings.php:266 +#: adminpages/paymentsettings.php:264 msgid "Force SSL" msgstr "" #: adminpages/paymentsettings.php:260 #: adminpages/paymentsettings.php:273 +#: adminpages/paymentsettings.php:271 msgid "Your Site URL starts with https:// and so PMPro will allow your entire site to be served over HTTPS." msgstr "" #: adminpages/paymentsettings.php:268 #: adminpages/paymentsettings.php:281 +#: adminpages/paymentsettings.php:279 msgid "Yes (with JavaScript redirects)" msgstr "" #: adminpages/paymentsettings.php:270 #: adminpages/paymentsettings.php:283 +#: adminpages/paymentsettings.php:281 msgid "Recommended: Yes. Try the JavaScript redirects setting if you are having issues with infinite redirect loops." msgstr "" @@ -5930,16 +6522,19 @@ msgstr "" #: adminpages/paymentsettings.php:287 #: adminpages/paymentsettings.php:306 +#: adminpages/paymentsettings.php:304 msgid "Extra HTTPS URL Filter" msgstr "" #: adminpages/paymentsettings.php:290 #: adminpages/paymentsettings.php:309 +#: adminpages/paymentsettings.php:307 msgid "Pass all generated HTML through a URL filter to add HTTPS to URLs used on secure pages. Check this if you are using SSL and have warnings on your checkout pages." msgstr "" #: adminpages/reports.php:19 #: adminpages/reports.php:18 +#: adminpages/reports.php:21 msgid "Back to Reports Dashboard" msgstr "" @@ -5967,6 +6562,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -5977,6 +6573,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -6010,6 +6607,7 @@ msgstr "" #: adminpages/reports/memberships.php:52 #: adminpages/reports/sales.php:53 #: adminpages/reports/sales.php:542 +#: adminpages/reports/sales.php:543 msgid "All Time" msgstr "" @@ -6052,33 +6650,40 @@ msgid "All Cancellations" msgstr "" #: adminpages/reports/memberships.php:338 +#: adminpages/reports/memberships.php:337 msgid "Signups vs. All Cancellations" msgstr "" #: adminpages/reports/memberships.php:339 +#: adminpages/reports/memberships.php:338 msgid "Signups vs. Cancellations" msgstr "" #: adminpages/reports/memberships.php:340 +#: adminpages/reports/memberships.php:339 msgid "Signups vs. Expirations" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -6306,63 +6911,77 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:962 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:463 #: classes/class.pmproemail.php:475 #: classes/class.pmproemail.php:468 +#: classes/class.pmproemail.php:601 msgid "Your billing information has been updated at %s" msgstr "" #: classes/class.pmproemail.php:513 #: classes/class.pmproemail.php:525 #: classes/class.pmproemail.php:518 +#: classes/class.pmproemail.php:651 msgid "Billing information has been updated for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -6375,6 +6994,8 @@ msgstr "" #: includes/email.php:465 #: classes/class.pmproemail.php:898 #: classes/class.pmproemail.php:943 +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 msgid "The new level is %s." msgstr "" @@ -6387,30 +7008,36 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -6418,6 +7045,7 @@ msgstr "" #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:167 +#: paid-memberships-pro.php:173 msgid "Authorize.net" msgstr "" @@ -6433,14 +7061,17 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:91 #: classes/gateways/class.pmprogateway_stripe.php:97 #: classes/gateways/class.pmprogateway_stripe.php:1353 +#: classes/gateways/class.pmprogateway_stripe.php:1478 msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" @@ -6448,10 +7079,13 @@ msgstr "" #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:167 #: paid-memberships-pro.php:168 +#: classes/gateways/class.pmprogateway_braintree.php:258 +#: paid-memberships-pro.php:174 msgid "Braintree Payments" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:308 +#: classes/gateways/class.pmprogateway_braintree.php:315 msgid "Braintree Settings" msgstr "" @@ -6465,21 +7099,30 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:750 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -6487,11 +7130,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -6801,6 +7447,7 @@ msgstr "" #: paid-memberships-pro.php:161 #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:164 +#: paid-memberships-pro.php:170 msgid "PayPal Website Payments Pro" msgstr "" @@ -6808,6 +7455,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:141 #: classes/gateways/class.pmprogateway_paypalstandard.php:133 #: classes/gateways/class.pmprogateway_paypalexpress.php:151 +#: classes/gateways/class.pmprogateway_paypalexpress.php:152 msgid "PayPal Settings" msgstr "" @@ -6815,12 +7463,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:185 #: classes/gateways/class.pmprogateway_paypalexpress.php:194 #: classes/gateways/class.pmprogateway_paypalexpress.php:204 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 msgid "Confirmation Step" msgstr "" @@ -6832,6 +7482,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:854 #: classes/gateways/class.pmprogateway_paypal.php:726 #: classes/gateways/class.pmprogateway_paypalexpress.php:865 +#: classes/gateways/class.pmprogateway_paypalexpress.php:866 msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward." msgstr "" @@ -6840,11 +7491,14 @@ msgstr "" #: paid-memberships-pro.php:162 #: classes/gateways/class.pmprogateway_paypalexpress.php:94 #: paid-memberships-pro.php:163 +#: classes/gateways/class.pmprogateway_paypalexpress.php:95 +#: paid-memberships-pro.php:169 msgid "PayPal Express" msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -6853,6 +7507,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -6861,6 +7516,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -6868,6 +7524,7 @@ msgstr "" #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:166 +#: paid-memberships-pro.php:172 msgid "PayPal Standard" msgstr "" @@ -6885,6 +7542,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:258 #: classes/gateways/class.pmprogateway_stripe.php:216 #: paid-memberships-pro.php:162 +#: classes/gateways/class.pmprogateway_stripe.php:234 +#: paid-memberships-pro.php:168 msgid "Stripe" msgstr "" @@ -6896,6 +7555,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -6904,6 +7564,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -6915,6 +7576,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -6926,6 +7588,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -6937,6 +7600,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -6945,6 +7609,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -6956,6 +7621,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -6967,6 +7633,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -6975,6 +7642,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -6986,6 +7654,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -6994,6 +7663,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -7017,6 +7687,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -7033,6 +7705,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -7041,6 +7715,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -7049,6 +7724,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -7057,6 +7733,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -7064,6 +7741,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -7072,6 +7750,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -7085,6 +7764,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -7093,6 +7774,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -7101,6 +7783,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -7110,6 +7793,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -7127,6 +7812,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -7135,6 +7822,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -7156,6 +7844,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -7164,6 +7854,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -7172,6 +7863,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -7180,6 +7872,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:629 #: classes/gateways/class.pmprogateway_stripe.php:635 #: classes/gateways/class.pmprogateway_stripe.php:399 +#: adminpages/orders.php:570 +#: classes/gateways/class.pmprogateway_stripe.php:425 msgid "Show Billing Address Fields" msgstr "" @@ -7188,6 +7882,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:638 #: classes/gateways/class.pmprogateway_stripe.php:644 #: classes/gateways/class.pmprogateway_stripe.php:408 +#: classes/gateways/class.pmprogateway_stripe.php:434 msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.
If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "" @@ -7196,6 +7891,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -7204,6 +7900,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -7212,6 +7909,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -7220,6 +7918,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -7228,6 +7927,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -7236,6 +7936,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -7244,6 +7945,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -7252,6 +7954,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -7264,6 +7967,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -7272,6 +7976,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -7280,6 +7985,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -7288,6 +7994,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -7296,6 +8003,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -7314,6 +8022,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "" @@ -7366,6 +8075,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "" @@ -7377,6 +8088,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "" @@ -7386,6 +8098,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "" @@ -7395,6 +8108,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "" @@ -7412,6 +8126,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "" @@ -7423,6 +8139,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 msgid "Error: Unkown error while refunding charge #%s" msgstr "" @@ -7432,6 +8149,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -7452,6 +8170,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -7460,6 +8182,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -7469,6 +8192,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -7478,6 +8202,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -7489,6 +8214,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -7500,6 +8226,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -7511,6 +8238,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -7522,42 +8250,52 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:59 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "" @@ -7600,6 +8338,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -7612,6 +8351,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -7624,6 +8364,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -8885,6 +9626,7 @@ msgstr "" #: includes/email-templates.php:68 #: shortcodes/pmpro_account.php:43 +#: adminpages/orders.php:1431 msgid "Billing" msgstr "" @@ -9475,14 +10217,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -9491,18 +10236,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -9514,6 +10263,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -9659,6 +10409,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -9788,6 +10539,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -9795,6 +10547,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -9826,6 +10579,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -9835,6 +10589,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -9842,6 +10597,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -9946,6 +10702,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -9953,6 +10711,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -9960,6 +10719,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -9967,6 +10727,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -10038,6 +10799,7 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" @@ -10046,6 +10808,8 @@ msgstr "" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "" @@ -10056,121 +10820,142 @@ msgstr "" #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -10182,6 +10967,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -10319,18 +11107,21 @@ msgstr "" #: paid-memberships-pro.php:162 #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:165 +#: paid-memberships-pro.php:171 msgid "PayPal Payflow Pro/PayPal Pro" msgstr "" #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:168 #: paid-memberships-pro.php:169 +#: paid-memberships-pro.php:175 msgid "Cybersource" msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -10388,6 +11179,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -10426,6 +11218,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -10441,6 +11248,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -10456,6 +11264,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -10488,6 +11297,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -10500,6 +11310,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -10525,11 +11336,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -10537,6 +11353,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -10544,6 +11361,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -10566,6 +11384,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -10591,6 +11410,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -10598,6 +11418,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -10630,6 +11451,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -10652,6 +11474,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -10662,11 +11485,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -10686,6 +11520,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -10699,6 +11534,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -10708,6 +11544,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -10717,10 +11554,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -10731,6 +11570,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -10738,6 +11578,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -10747,6 +11588,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -10756,12 +11598,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -10769,6 +11614,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -10777,6 +11624,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -10784,6 +11632,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -10791,27 +11640,32 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: paid-memberships-pro.php:194 #: paid-memberships-pro.php:195 +#: paid-memberships-pro.php:201 msgid "Once a month" msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -10869,12 +11723,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -10884,6 +11740,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -10893,6 +11750,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -10902,54 +11760,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -10960,42 +11828,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -11010,51 +11888,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -11062,6 +11952,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -11069,6 +11960,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -11076,6 +11968,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -11084,6 +11977,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -11097,6 +11992,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -11117,19 +12013,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -11139,31 +12039,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -11193,25 +12101,30 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "" @@ -11281,26 +12194,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -11309,51 +12228,62 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -11367,19 +12297,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -11410,3 +12344,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-et_EE.mo b/languages/paid-memberships-pro-et_EE.mo index 169453063..cd45652bb 100644 Binary files a/languages/paid-memberships-pro-et_EE.mo and b/languages/paid-memberships-pro-et_EE.mo differ diff --git a/languages/paid-memberships-pro-et_EE.po b/languages/paid-memberships-pro-et_EE.po index 708c05bc9..4f28ea4f7 100644 --- a/languages/paid-memberships-pro-et_EE.po +++ b/languages/paid-memberships-pro-et_EE.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:20:39+00:00\n" +"POT-Creation-Date: 2022-05-05T20:37:24+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -90,6 +90,7 @@ msgstr "Kontrollige uuesti" #: adminpages/orders.php:1014 #: includes/metaboxes.php:19 #: adminpages/orders.php:1015 +#: adminpages/orders.php:1103 msgid "All" msgstr "Kõik" @@ -133,6 +134,7 @@ msgstr "Tüüp" #: adminpages/membershiplevels.php:296 #: adminpages/membershiplevels.php:298 #: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "Kirjeldus" @@ -215,6 +217,11 @@ msgstr "Aktiveeri %s" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "Kustuta" @@ -283,6 +290,18 @@ msgstr "WordPress.org" #: adminpages/orders.php:913 #: adminpages/orders.php:1537 #: adminpages/orders.php:1546 +#: adminpages/orders.php:704 +#: adminpages/orders.php:996 +#: adminpages/orders.php:1689 +#: adminpages/orders.php:1698 +#: classes/class.pmproemail.php:261 +#: classes/class.pmproemail.php:327 +#: includes/profile.php:167 +#: includes/profile.php:483 +#: includes/profile.php:484 +#: includes/profile.php:556 +#: includes/profile.php:557 +#: includes/profile.php:558 msgid "N/A" msgstr "Ei ole kättesaadav" @@ -474,6 +493,11 @@ msgstr "Makse meetod & SSL" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "Email" @@ -489,6 +513,7 @@ msgstr "Täpsemad" #: adminpages/advancedsettings.php:42 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "Teie täpsemad seaded on uuendatud." @@ -509,6 +534,7 @@ msgstr "Palun logige sisse , et näha seda sisu. (total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "Kokkukorduvate arvete arv tsüklis sellele tasemele, sealhulgas katse aeg (kui määratud) välja arvatud esimene makse. Sea nulliks, kui liikmeks tase on püsiv." @@ -1444,6 +1547,8 @@ msgstr "Kokkukorduvate arvete arv tsüklis sellele tasemele, se #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "Kohandatud prooviaeg" @@ -1460,6 +1565,8 @@ msgstr "Kohandatud prooviaeg" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "Tee linnuke/kontrolli, et lisada kohandatud proovi periood." @@ -1476,6 +1583,7 @@ msgstr "Tee linnuke/kontrolli, et lisada kohandatud proovi periood." #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "Katseaja arve summa" @@ -1492,6 +1600,7 @@ msgstr "Katseaja arve summa" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "esimeseks" @@ -1508,6 +1617,7 @@ msgstr "esimeseks" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "tellimuse maksed" @@ -1525,6 +1635,7 @@ msgstr "tellimuse maksed" #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "Liikme aja kestvus" @@ -1541,6 +1652,7 @@ msgstr "Liikme aja kestvus" #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "Tee linnuke/Kontrolli, millal saab liikmelisus pääse läbi." @@ -1559,6 +1671,8 @@ msgstr "Tee linnuke/Kontrolli, millal saab liikmelisus pääse läbi." #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "Aegub" @@ -1575,6 +1689,8 @@ msgstr "Aegub" #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "Sea liikme juurdepääsu kestvus. Pange tähele, et kõik tulevased maksed (korduv tellimus, kui on üldse) tunnistatakse kehtetuks kui liikmelisus lõpeb." @@ -1584,6 +1700,7 @@ msgstr "Sea liikme juurdepääsu kestvus. Pange tähele, et kõik tulevased maks #: adminpages/discountcodes.php:556 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "Liikmelisuse soodus koodid" @@ -1593,6 +1710,7 @@ msgstr "Liikmelisuse soodus koodid" #: adminpages/discountcodes.php:566 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "Otsi soodus koode" @@ -1605,6 +1723,7 @@ msgstr "Otsi soodus koode" #: adminpages/reports/login.php:83 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "Otsi" @@ -1614,6 +1733,7 @@ msgstr "Otsi" #: adminpages/discountcodes.php:587 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "Algab" @@ -1643,6 +1763,8 @@ msgstr "Algab" #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "Aegub" @@ -1653,6 +1775,7 @@ msgstr "Aegub" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "Tasemed" @@ -1694,6 +1817,7 @@ msgstr "Allahindluse koodid lubavad pakkuda liikmetele allahinnatud hindadele va #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "muuda" @@ -1749,6 +1873,7 @@ msgstr "Emaili sätted" #: adminpages/emailsettings.php:70 #: adminpages/emailsettings.php:61 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "Süsteemi genereeritud kirjad saadetakse vaikimisi aasdressilt wordpress@yourdomain.com. Saate uuendada seda aadressilt kasutades all olevaid välju." @@ -1760,17 +1885,20 @@ msgstr "Süsteemi loodud emaili välimuse muutmiseks, lisa failid email_head #: adminpages/emailsettings.php:78 #: adminpages/emailsettings.php:69 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "Kellelt Email" #: adminpages/emailsettings.php:86 #: adminpages/emailsettings.php:77 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "Kellelt Nimi" #: adminpages/emailsettings.php:94 #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "Filtreeri ainult PMPro emailid?" @@ -1943,6 +2071,8 @@ msgstr "Lisa uus liikme tase" #: adminpages/reports/history.php:184 #: adminpages/reports/login.php:181 #: adminpages/reports/login.php:184 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 msgid "Name" msgstr "Nimi" @@ -1950,6 +2080,7 @@ msgstr "Nimi" #: adminpages/membershiplevels.php:314 #: adminpages/membershiplevels.php:316 #: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "Kinnituse teadaanne" @@ -1963,6 +2094,8 @@ msgstr "Kinnituse teadaanne" #: adminpages/membershiplevels.php:639 #: adminpages/membershiplevels.php:397 #: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "Arve detailid" @@ -1986,6 +2119,8 @@ msgstr "Arve detailid" #: classes/gateways/class.pmprogateway_stripe.php:2696 #: classes/gateways/class.pmprogateway_stripe.php:2698 #: classes/gateways/class.pmprogateway_stripe.php:2694 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "kohta" @@ -2004,6 +2139,7 @@ msgstr "Stripe-i integratsioon toetab hetkel vaid \"Nädala\", \"Kuu\" või \"Aa #: adminpages/discountcodes.php:620 #: adminpages/membershiplevels.php:448 #: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:446 msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." msgstr "Braintree-i integratsioon toetab hetkel vaid \"Kuu\" või \"Aasta\" arve perioode." @@ -2021,6 +2157,7 @@ msgstr "Payflow -i integratsioon toetab hetkel vaid \"Nädala\", \"Kuu\" või \" #: adminpages/membershiplevels.php:393 #: adminpages/membershiplevels.php:396 #: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." msgstr "Pärast selle taseme salvestamist , märkige üles ID ja looge \"Plaan\" oma Braintree \"köögis\" samade seadetega ja \"Plaani ID-ga\" seapmpro_#, kus # on taseme ID." @@ -2043,6 +2180,8 @@ msgstr "Pärast selle taseme salvestamist , märkige üles ID ja looge \"Plaan\" #: adminpages/membershiplevels.php:454 #: adminpages/membershiplevels.php:459 #: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 msgid "Note" msgstr "Märge" @@ -2062,6 +2201,7 @@ msgstr "Te peaksite looma \"Plaani\" oma Braintree \"köögis\" samade säteteg #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "Stripe integratsioon hetkel ei toeta arve limiite. Te saate ikkagi määrata aegumise kuupäeva all." @@ -2073,6 +2213,8 @@ msgstr "Stripe integratsioon hetkel ei toeta arve limiite. Te saate ikkagi mää #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "2Checkout integratsioon ei toeta kohandatud proovi aegu. Te saate teha ühe perioodi prooviaegu, seades algse makse erinevaks arve summast." @@ -2085,6 +2227,7 @@ msgstr "2Checkout integratsioon ei toeta kohandatud proovi aegu. Te saate teha #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "Stripe integratsioon hetkel ei toeta proovi aegu mille summa on suurem kui $0." @@ -2097,6 +2240,7 @@ msgstr "Stripe integratsioon hetkel ei toeta proovi aegu mille summa on suurem k #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "Braintree integratsioon hetkel ei toeta proovi aegu mille summa on suurem kui $0." @@ -2109,6 +2253,7 @@ msgstr "Braintree integratsioon hetkel ei toeta proovi aegu mille summa on suure #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "Payflow integratsioon ei toeta proovi aegu mille summa on suurem kui $0." @@ -2123,6 +2268,7 @@ msgstr "Payflow integratsioon ei toeta proovi aegu mille summa on suurem kui $0. #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "Teised seaded" @@ -2158,6 +2304,8 @@ msgstr "Lisa linnuke, et peita seda taset liikme tasemete lehel ja keela registr #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "Sisu seaded" @@ -2169,12 +2317,14 @@ msgstr "Sisu seaded" #: adminpages/membershiplevels.php:497 #: adminpages/membershiplevels.php:500 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "Kategooriad" #: adminpages/membershiplevels.php:516 #: adminpages/membershiplevels.php:517 #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "Salvesta tase" @@ -2210,6 +2360,11 @@ msgstr "Salvesta tase" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "Tühista" @@ -2250,6 +2405,7 @@ msgstr "Otsi tasemeid" #: adminpages/membershiplevels.php:579 #: adminpages/membershiplevels.php:631 #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "Lohista ja lase lahti, et asetada need tasemete lehele." @@ -2275,6 +2431,8 @@ msgstr "Lohista ja lase lahti, et asetada need tasemete lehele." #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "Aegumine" @@ -2287,6 +2445,7 @@ msgstr "Aegumine" #: adminpages/membershiplevels.php:587 #: adminpages/membershiplevels.php:641 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "Luba registreerimised" @@ -2300,6 +2459,7 @@ msgstr "Luba registreerimised" #: adminpages/membershiplevels.php:656 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "TASUTA" @@ -2313,6 +2473,7 @@ msgstr "TASUTA" #: adminpages/membershiplevels.php:665 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "Pärast" @@ -2355,6 +2516,7 @@ msgstr "kopeeri" #: includes/adminpages.php:142 #: includes/adminpages.php:149 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "Liikmete nimekiri" @@ -2367,6 +2529,8 @@ msgstr "Liikmete nimekiri" #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "Ekspordi CSV-ks" @@ -2394,6 +2558,8 @@ msgstr "Ekspordi CSV-ks" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "Näita" @@ -2421,6 +2587,8 @@ msgstr "Näita" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "Kõik tasemed" @@ -2464,6 +2632,8 @@ msgstr "Vanad liikmed" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "Otsi liikmeid" @@ -2501,6 +2671,8 @@ msgstr "%d liikmed leitud." #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "Kasutajanimi" @@ -2543,6 +2715,7 @@ msgstr "Perekonna Nimi" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "Arve aadress" @@ -2654,6 +2827,7 @@ msgstr "Tekkis tõrge tellimuse kustutamisel." #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "Tellimus salvestati edukalt." @@ -2669,6 +2843,7 @@ msgstr "Viga tellimuse timestamp uuendamisel." #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "Tellimuse salvestamisel tekkis tõrge." @@ -2681,6 +2856,7 @@ msgstr "Tellimuse salvestamisel tekkis tõrge." #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "Tellimus" @@ -2690,6 +2866,7 @@ msgstr "Tellimus" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "Uus tellimus" @@ -2699,6 +2876,7 @@ msgstr "Uus tellimus" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "Juhuslikult genereeritud teile." @@ -2708,6 +2886,7 @@ msgstr "Juhuslikult genereeritud teile." #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "Kasutaja ID" @@ -2718,6 +2897,8 @@ msgstr "Kasutaja ID" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "Liikme taseme ID" @@ -2728,6 +2909,7 @@ msgstr "Liikme taseme ID" #: includes/privacy.php:245 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "Arvel nimi" @@ -2738,6 +2920,7 @@ msgstr "Arvel nimi" #: includes/privacy.php:249 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "Arvel tänava nimi" @@ -2749,6 +2932,7 @@ msgstr "Arvel tänava nimi" #: includes/privacy.php:358 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "Arvel linna nimi" @@ -2759,6 +2943,7 @@ msgstr "Arvel linna nimi" #: includes/privacy.php:257 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "Arveldusaadressi osariik" @@ -2771,6 +2956,7 @@ msgstr "Arveldusaadressi osariik" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "Arvel posti index" @@ -2783,6 +2969,7 @@ msgstr "Arvel posti index" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "Arvel riigi nimi" @@ -2794,6 +2981,7 @@ msgstr "Arvel riigi nimi" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "Arveldusaadressi telefoni number" @@ -2805,6 +2993,7 @@ msgstr "Arveldusaadressi telefoni number" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "Kokku liidetud" @@ -2823,6 +3012,8 @@ msgstr "Kokku liidetud" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "Maks" @@ -2834,6 +3025,7 @@ msgstr "Maks" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "Kuppongi summa" @@ -2863,6 +3055,9 @@ msgstr "Kuppongi summa" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "Kokku" @@ -2880,6 +3075,7 @@ msgstr "Tuleks vahesumma + maksud - kupongi summa." #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "Makse tüüp" @@ -2890,6 +3086,7 @@ msgstr "Makse tüüp" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "näiteks PayPal Express, PayPal Standard, Credit Card." @@ -2926,6 +3123,9 @@ msgstr "näiteks PayPal Express, PayPal Standard, Credit Card." #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "Kaardi tüüp" @@ -2936,6 +3136,7 @@ msgstr "Kaardi tüüp" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "näiteks Visa, MasterCard, AMEX, jne." @@ -2952,6 +3153,8 @@ msgstr "näiteks Visa, MasterCard, AMEX, jne." #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "Konto number" @@ -2961,6 +3164,7 @@ msgstr "Konto number" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "Varja kõik peale 4 viimase numbri." @@ -2974,6 +3178,7 @@ msgstr "Varja kõik peale 4 viimase numbri." #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "Aegumise kuu" @@ -3013,6 +3218,10 @@ msgstr "Aegumise aasta" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "Olek" @@ -3033,6 +3242,9 @@ msgstr "Olek" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "Meetod" @@ -3050,6 +3262,8 @@ msgstr "Meetod" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "Meetod keskkond" @@ -3070,6 +3284,9 @@ msgstr "Meetod keskkond" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "Sandbox/Testimine" @@ -3090,6 +3307,9 @@ msgstr "Sandbox/Testimine" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "Live/Produtseerimine" @@ -3101,6 +3321,7 @@ msgstr "Live/Produtseerimine" #: includes/privacy.php:321 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "Tasumise kande ID" @@ -3111,6 +3332,7 @@ msgstr "Tasumise kande ID" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "Loodud gateway poolt. Kasulik tellimuste risti võrdlemiseks." @@ -3124,6 +3346,8 @@ msgstr "Loodud gateway poolt. Kasulik tellimuste risti võrdlemiseks." #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "Tellimus kande ID" @@ -3135,6 +3359,7 @@ msgstr "Tellimus kande ID" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "Loodud meetodite poolt. Kasulik tellimuste risti võrdlemiseks." @@ -3166,6 +3391,8 @@ msgstr "Loodud meetodite poolt. Kasulik tellimuste risti võrdlemiseks." #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "Kuupäev" @@ -3176,6 +3403,7 @@ msgstr "Kuupäev" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "Filiaal ID" @@ -3186,6 +3414,7 @@ msgstr "Filiaal ID" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "Filiaal SubID" @@ -3196,6 +3425,7 @@ msgstr "Filiaal SubID" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "Märkmed" @@ -3206,6 +3436,7 @@ msgstr "Märkmed" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "Salvesta tellimus" @@ -3245,6 +3476,8 @@ msgstr "Saatke Email" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "Tellimused" @@ -3255,6 +3488,7 @@ msgstr "Tellimused" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "Lisa uus tellimus" @@ -3264,6 +3498,7 @@ msgstr "Lisa uus tellimus" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "Kuupäeva vahemikus" @@ -3273,6 +3508,7 @@ msgstr "Kuupäeva vahemikus" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "Eelmääratletud kuupäeva vahemik" @@ -3282,6 +3518,7 @@ msgstr "Eelmääratletud kuupäeva vahemik" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "Tasemes" @@ -3291,6 +3528,7 @@ msgstr "Tasemes" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "Olekus" @@ -3300,6 +3538,7 @@ msgstr "Olekus" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "Kellelt" @@ -3309,6 +3548,7 @@ msgstr "Kellelt" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "Kellele" @@ -3318,6 +3558,7 @@ msgstr "Kellele" #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "Filtreeri millegi järgi/abil" @@ -3327,6 +3568,7 @@ msgstr "Filtreeri millegi järgi/abil" #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "Filter" @@ -3344,6 +3586,8 @@ msgstr "Filter" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "Otsi tellimusi" @@ -3355,6 +3599,8 @@ msgstr "Otsi tellimusi" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "%d tellimusi leitud." @@ -3378,6 +3624,7 @@ msgstr "%d tellimusi leitud." #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "Kasutaja" @@ -3420,6 +3667,8 @@ msgstr "Kasutaja" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "Liikme tase" @@ -3439,6 +3688,7 @@ msgstr "Liikme tase" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "Makse" @@ -3450,6 +3700,7 @@ msgstr "Makse" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "Ülekande ID-d" @@ -3472,6 +3723,8 @@ msgstr "Ülekande ID-d" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "kustutatud" @@ -3484,6 +3737,7 @@ msgstr "kustutatud" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "Tellimus" @@ -3498,6 +3752,7 @@ msgstr "Tellimus" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "Tellimuste kustutamine on jääv ja võib mõjutada aktiivseid kasutajaid. Kas te olete kindel, et tahate kustutada tellimuse %s?" @@ -3524,6 +3779,7 @@ msgstr "email" #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "Ei leitud ühtegi tellimust" @@ -3596,6 +3852,7 @@ msgstr "Järgmised lehed on loodud teie jaoks" #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "Hoolda lehti, mis on määratud igale Paid Memberships Pro lehele." @@ -3605,6 +3862,7 @@ msgstr "Hoolda lehti, mis on määratud igale Paid Memberships Pro lehele." #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "Määra WordPress lehed, igale nõutud Paid Memberships Pro lehele või" @@ -3614,6 +3872,7 @@ msgstr "Määra WordPress lehed, igale nõutud Paid Memberships Pro lehele või" #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "Vajutage siia, et me saaksime genereerida need Teie jaoks" @@ -3623,6 +3882,7 @@ msgstr "Vajutage siia, et me saaksime genereerida need Teie jaoks" #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "Konto leht" @@ -3669,6 +3929,14 @@ msgstr "Konto leht" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "Vali üks" @@ -3729,6 +3997,16 @@ msgstr "Vali üks" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "muuda lehte" @@ -3786,6 +4064,15 @@ msgstr "muuda lehte" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "vaata lehte" @@ -3839,6 +4126,12 @@ msgstr "vaata lehte" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "Kaasa lühikood" @@ -3850,6 +4143,7 @@ msgstr "Kaasa lühikood" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "Arvete info leht" @@ -3861,6 +4155,7 @@ msgstr "Arvete info leht" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "Tühistamis leht" @@ -3872,6 +4167,7 @@ msgstr "Tühistamis leht" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "Ostukinnituse leht" @@ -3883,6 +4179,7 @@ msgstr "Ostukinnituse leht" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "Kinnitus leht" @@ -3894,6 +4191,7 @@ msgstr "Kinnitus leht" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "Täpsema arve leht" @@ -3905,6 +4203,7 @@ msgstr "Täpsema arve leht" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "Tasemete leht" @@ -3912,6 +4211,7 @@ msgstr "Tasemete leht" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "Veel lehe sätteid" @@ -3925,6 +4225,9 @@ msgstr "Veel lehe sätteid" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "Loo leht" @@ -3945,6 +4248,7 @@ msgstr "Teie makse seadeid uuendati." #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "Makse meetod" @@ -3954,6 +4258,7 @@ msgstr "Makse meetod" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "SSL sätted" @@ -3970,6 +4275,7 @@ msgstr "Rohkem infot If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "Stripe ei vaja arve aadressi välju. Valige 'Ei' , et peita neid oma väljumise lehel.
Kui EI tehke kindlaks, et olete välja lülitanud aadressi kinnituse Stripe \"köögi\" seadetest." @@ -5774,6 +6187,7 @@ msgstr "Täielikuks integratsiooniks Stripe-iga, tehke kindlaks, et seate oma We #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "Tellimuse uuendused" @@ -5819,6 +6233,7 @@ msgstr "Tellimuse uuendused lubavad muuta liikme liikmeväärtuste eelmääratle #: classes/gateways/class.pmprogateway_stripe.php:2653 #: classes/gateways/class.pmprogateway_stripe.php:2649 #: pages/billing.php:441 +#: classes/gateways/class.pmprogateway_stripe.php:3106 msgid "Update" msgstr "Uuendage" @@ -5834,6 +6249,7 @@ msgstr "Uuendage" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "Ei saanud vana tellimust tühistada. Värskendusi pole töödeldud." @@ -5880,6 +6296,8 @@ msgstr "Ei õnnestu luua kliendikirjet Stripe-iga:" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "Viga tellimuse saamisel Stripe-iga:" @@ -5918,6 +6336,8 @@ msgstr "Viga tellimuse saamisel Stripe-iga:" #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "Ei õnnestu luua plaani Stripe-iga:" @@ -5951,6 +6371,8 @@ msgstr "Ei õnnestu luua plaani Stripe-iga:" #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "Ei õnnestu tellimisel kliendikirje plaani luua Stripe-iga:" @@ -5971,6 +6393,7 @@ msgstr "Ei õnnestu tellimisel kliendikirje plaani luua Stripe-iga:" #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "Ei saanud tühistada vana tellimust." @@ -5988,6 +6411,7 @@ msgstr "Ei saanud tühistada vana tellimust." #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "Ei suutnud leida klienti." @@ -5998,22 +6422,26 @@ msgstr "Ei suutnud leida klienti." #: paid-memberships-pro.php:125 #: paid-memberships-pro.php:132 #: classes/gateways/class.pmprogateway_twocheckout.php:59 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "2Checkout" #: classes/gateways/class.pmprogateway_twocheckout.php:116 #: classes/gateways/class.pmprogateway_twocheckout.php:108 #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "2Checkout seaded" #: classes/gateways/class.pmprogateway_twocheckout.php:125 #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "Minge kontole » kasutaja haldamine 2Checkout-is ja looge kasutaja API Access-i ja API uuendamisega." #: classes/gateways/class.pmprogateway_twocheckout.php:134 #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "Parool API kasutajale loodud." @@ -6027,6 +6455,7 @@ msgstr "Minge API-sse 2Checkout-is ja genereerige uus võtme paar. Kleepige pri #: classes/gateways/class.pmprogateway_twocheckout.php:152 #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "Klikkige profiili ikoonile 2Checkout-is, et leida oma konto number." @@ -6035,11 +6464,13 @@ msgstr "Klikkige profiili ikoonile 2Checkout-is, et leida oma konto number." #: adminpages/paymentsettings.php:360 #: classes/gateways/class.pmprogateway_twocheckout.php:137 #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "Salasõna" #: classes/gateways/class.pmprogateway_twocheckout.php:161 #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "Minge kontole » lehe haldamine. Vaata Checkout valikuid, et leida salasõna." @@ -6049,17 +6480,20 @@ msgstr "Minge kontole » lehe haldamine. Vaata Checkout valikuid, et leida #: adminpages/paymentsettings.php:495 #: classes/gateways/class.pmprogateway_twocheckout.php:145 #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "TwoCheckout INS URL" #: classes/gateways/class.pmprogateway_twocheckout.php:169 #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "Et täielikult integreerida 2Checkout-iga, ole kindel, et kasutad järgnevat oma INS-i URL-i ja Kinnitatud URL-i" #: classes/gateways/class.pmprogateway_twocheckout.php:214 #: classes/gateways/class.pmprogateway_twocheckout.php:192 #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "Välju 2Checkout-iga" @@ -6980,6 +7414,7 @@ msgstr "ja" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "Registreeruge !!name!! nüüd" @@ -7025,6 +7460,9 @@ msgstr "Palun täpsustage taseme id." #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "pole" @@ -7036,6 +7474,7 @@ msgstr "Teie litsentsi võti valideeriti." #: includes/license.php:81 #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "Paid Memberships Pro toetuse litsents" @@ -7056,6 +7495,7 @@ msgstr "Külastage PMPro-d
Tänan! Kasutati kehtivat%s litsent #: adminpages/license.php:59 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "Sisestage litsentsi võti siia...." @@ -7177,6 +7618,8 @@ msgstr "Praegune tase" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "Ei maksa" @@ -7261,6 +7704,9 @@ msgstr "logi välja" #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "Tase" @@ -7326,6 +7772,7 @@ msgstr "Teie makse tellimust haldab PayPal. Palun Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -9047,93 +9534,111 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -9159,6 +9664,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -9229,6 +9735,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -9334,6 +9841,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -9372,6 +9880,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -9384,31 +9893,39 @@ msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 msgid "%d discount codes found." msgstr "" @@ -9434,6 +9951,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -9452,6 +9976,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -9460,19 +9990,23 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -9513,192 +10047,241 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:960 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:170 #: includes/privacy.php:363 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -9716,6 +10299,7 @@ msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -9723,14 +10307,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -9747,27 +10334,34 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -9777,6 +10371,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -9784,6 +10380,7 @@ msgstr "" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -9791,6 +10388,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -9798,6 +10396,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -9805,6 +10404,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -9812,6 +10412,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -9819,6 +10420,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -9857,78 +10459,91 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -9938,12 +10553,15 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -9951,18 +10569,21 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" @@ -9972,26 +10593,31 @@ msgstr "" #: adminpages/paymentsettings.php:122 #: adminpages/paymentsettings.php:127 +#: adminpages/paymentsettings.php:125 msgid "Choose a Gateway" msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" #: adminpages/paymentsettings.php:194 #: adminpages/paymentsettings.php:201 +#: adminpages/paymentsettings.php:199 msgid "Currency and Tax Settings" msgstr "" #: adminpages/paymentsettings.php:239 #: adminpages/paymentsettings.php:246 +#: adminpages/paymentsettings.php:244 msgid "Tax Rate" msgstr "" @@ -10001,11 +10627,13 @@ msgstr "" #: adminpages/paymentsettings.php:260 #: adminpages/paymentsettings.php:273 +#: adminpages/paymentsettings.php:271 msgid "Your Site URL starts with https:// and so PMPro will allow your entire site to be served over HTTPS." msgstr "" #: adminpages/paymentsettings.php:270 #: adminpages/paymentsettings.php:283 +#: adminpages/paymentsettings.php:281 msgid "Recommended: Yes. Try the JavaScript redirects setting if you are having issues with infinite redirect loops." msgstr "" @@ -10037,6 +10665,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -10047,6 +10676,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -10093,29 +10723,35 @@ msgid "All Cancellations" msgstr "" #: adminpages/reports/memberships.php:338 +#: adminpages/reports/memberships.php:337 msgid "Signups vs. All Cancellations" msgstr "" #: adminpages/reports/memberships.php:340 +#: adminpages/reports/memberships.php:339 msgid "Signups vs. Expirations" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -10282,63 +10918,77 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:962 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:463 #: classes/class.pmproemail.php:475 #: classes/class.pmproemail.php:468 +#: classes/class.pmproemail.php:601 msgid "Your billing information has been updated at %s" msgstr "" #: classes/class.pmproemail.php:513 #: classes/class.pmproemail.php:525 #: classes/class.pmproemail.php:518 +#: classes/class.pmproemail.php:651 msgid "Billing information has been updated for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -10351,6 +11001,8 @@ msgstr "" #: includes/email.php:465 #: classes/class.pmproemail.php:898 #: classes/class.pmproemail.php:943 +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 msgid "The new level is %s." msgstr "" @@ -10363,30 +11015,36 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -10398,14 +11056,17 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:91 #: classes/gateways/class.pmprogateway_stripe.php:97 #: classes/gateways/class.pmprogateway_stripe.php:1353 +#: classes/gateways/class.pmprogateway_stripe.php:1478 msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" @@ -10419,21 +11080,30 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:750 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -10441,11 +11111,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -10723,17 +11396,20 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:185 #: classes/gateways/class.pmprogateway_paypalexpress.php:194 #: classes/gateways/class.pmprogateway_paypalexpress.php:204 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 msgid "Confirmation Step" msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -10742,6 +11418,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -10750,6 +11427,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -10765,6 +11443,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -10773,6 +11452,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -10784,6 +11464,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -10795,6 +11476,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -10806,6 +11488,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -10814,6 +11497,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -10825,6 +11509,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -10836,6 +11521,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -10844,6 +11530,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -10855,6 +11542,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -10863,6 +11551,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -10886,6 +11575,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -10902,6 +11593,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -10910,6 +11603,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -10918,6 +11612,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -10926,6 +11621,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -10933,6 +11629,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -10941,6 +11638,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -10954,6 +11652,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -10962,6 +11662,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -10970,6 +11671,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -10979,6 +11681,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -10996,6 +11700,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -11004,6 +11710,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -11025,6 +11732,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -11033,6 +11742,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -11041,6 +11751,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -11049,6 +11760,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -11057,6 +11769,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -11065,6 +11778,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -11073,6 +11787,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -11081,6 +11796,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -11089,6 +11805,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -11097,6 +11814,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -11105,6 +11823,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -11117,6 +11836,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -11125,6 +11845,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -11133,6 +11854,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -11141,6 +11863,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -11149,6 +11872,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -11192,6 +11916,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "" @@ -11203,6 +11929,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 msgid "Error: Unkown error while refunding charge #%s" msgstr "" @@ -11212,6 +11939,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -11232,6 +11960,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -11240,6 +11972,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -11249,6 +11982,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -11258,6 +11992,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -11269,6 +12004,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -11280,6 +12016,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -11291,6 +12028,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -11302,6 +12040,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" @@ -11340,6 +12079,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -11352,6 +12092,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -11364,6 +12105,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -13162,14 +13904,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -13178,18 +13923,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -13201,6 +13950,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -13333,6 +14083,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -13446,6 +14197,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -13453,6 +14205,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -13484,6 +14237,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -13493,6 +14247,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -13500,6 +14255,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -13599,6 +14355,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -13606,6 +14364,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -13613,6 +14372,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -13620,6 +14380,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -13691,126 +14452,148 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -13822,6 +14605,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -13927,6 +14713,7 @@ msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -13952,6 +14739,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -13990,6 +14778,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -14005,6 +14808,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -14020,6 +14824,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -14052,6 +14857,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -14064,6 +14870,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -14089,11 +14896,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -14101,6 +14913,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -14108,6 +14921,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -14130,6 +14944,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -14155,6 +14970,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -14162,6 +14978,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -14194,6 +15011,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -14216,6 +15034,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -14226,11 +15045,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -14250,6 +15080,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -14263,6 +15094,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -14272,6 +15104,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -14281,10 +15114,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -14295,6 +15130,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -14302,6 +15138,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -14311,6 +15148,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -14320,12 +15158,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -14333,6 +15174,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -14341,6 +15184,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -14348,6 +15192,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -14355,27 +15200,32 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: paid-memberships-pro.php:194 #: paid-memberships-pro.php:195 +#: paid-memberships-pro.php:201 msgid "Once a month" msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -14433,12 +15283,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -14448,6 +15300,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -14457,6 +15310,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -14466,54 +15320,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -14524,42 +15388,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -14574,51 +15448,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -14626,6 +15512,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -14633,6 +15520,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -14640,6 +15528,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -14648,6 +15537,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -14661,6 +15552,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -14681,19 +15573,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -14703,31 +15599,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -14757,21 +15661,25 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" @@ -14841,26 +15749,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -14869,51 +15783,62 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -14927,19 +15852,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -14970,3 +15899,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-fa_IR.mo b/languages/paid-memberships-pro-fa_IR.mo index 02ba2e0e6..1e84d93de 100644 Binary files a/languages/paid-memberships-pro-fa_IR.mo and b/languages/paid-memberships-pro-fa_IR.mo differ diff --git a/languages/paid-memberships-pro-fa_IR.po b/languages/paid-memberships-pro-fa_IR.po index 9f466b492..8dfb2dd8a 100644 --- a/languages/paid-memberships-pro-fa_IR.po +++ b/languages/paid-memberships-pro-fa_IR.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:20:42+00:00\n" +"POT-Creation-Date: 2022-05-05T20:37:26+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -89,6 +89,7 @@ msgstr "بررسی دوباره" #: adminpages/orders.php:1014 #: includes/metaboxes.php:19 #: adminpages/orders.php:1015 +#: adminpages/orders.php:1103 msgid "All" msgstr "همه" @@ -132,6 +133,7 @@ msgstr "نوع" #: adminpages/membershiplevels.php:296 #: adminpages/membershiplevels.php:298 #: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "توضیحات" @@ -214,6 +216,11 @@ msgstr "فعال کردن %s" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "حذف" @@ -282,6 +289,18 @@ msgstr "WordPress.org" #: adminpages/orders.php:913 #: adminpages/orders.php:1537 #: adminpages/orders.php:1546 +#: adminpages/orders.php:704 +#: adminpages/orders.php:996 +#: adminpages/orders.php:1689 +#: adminpages/orders.php:1698 +#: classes/class.pmproemail.php:261 +#: classes/class.pmproemail.php:327 +#: includes/profile.php:167 +#: includes/profile.php:483 +#: includes/profile.php:484 +#: includes/profile.php:556 +#: includes/profile.php:557 +#: includes/profile.php:558 msgid "N/A" msgstr "N/A" @@ -472,6 +491,11 @@ msgstr "درگاه پرداخت و گواهی اس اس ال" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "ایمیل" @@ -487,6 +511,7 @@ msgstr "پیشرفته" #: adminpages/advancedsettings.php:42 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "تنظیمات پیشرفته شما بروزرسانی شد" @@ -507,6 +532,7 @@ msgstr "لطفا برای دیدن محتوا وارد شو #: adminpages/advancedsettings.php:116 #: includes/updates/upgrade_1.php:13 #: adminpages/advancedsettings.php:118 +#: adminpages/advancedsettings.php:126 msgid "This content is for members only. Visit the site and log in/register to read." msgstr "این محتوا فقط برای کاربران است. وارد شوید و یا ثبت نام کنید" @@ -523,6 +549,7 @@ msgstr "این محتوا فقط برای کاربران است. وارد شوی #: adminpages/advancedsettings.php:132 #: includes/adminpages.php:73 #: adminpages/advancedsettings.php:134 +#: adminpages/advancedsettings.php:142 msgid "Advanced Settings" msgstr "تنظیمات پیشرفته" @@ -531,6 +558,7 @@ msgstr "تنظیمات پیشرفته" #: adminpages/advancedsettings.php:92 #: adminpages/advancedsettings.php:164 #: adminpages/advancedsettings.php:166 +#: adminpages/advancedsettings.php:173 msgid "Message for Logged-in Non-members" msgstr "پیام برای کاربران وارد شده غیر عضو" @@ -539,6 +567,7 @@ msgstr "پیام برای کاربران وارد شده غیر عضو" #: adminpages/advancedsettings.php:96 #: adminpages/advancedsettings.php:168 #: adminpages/advancedsettings.php:170 +#: adminpages/advancedsettings.php:177 msgid "This message replaces the post content for non-members. Available variables" msgstr "این پیام محتوای مطالب را برای کاربران معمولی جایگزین می کند. متغیرهای موجود" @@ -547,6 +576,7 @@ msgstr "این پیام محتوای مطالب را برای کاربران م #: adminpages/advancedsettings.php:101 #: adminpages/advancedsettings.php:173 #: adminpages/advancedsettings.php:175 +#: adminpages/advancedsettings.php:182 msgid "Message for Logged-out Users" msgstr "پیام برای کاربران خارج شده" @@ -555,6 +585,7 @@ msgstr "پیام برای کاربران خارج شده" #: adminpages/advancedsettings.php:105 #: adminpages/advancedsettings.php:177 #: adminpages/advancedsettings.php:179 +#: adminpages/advancedsettings.php:186 msgid "This message replaces the post content for logged-out visitors." msgstr "این پیام محتوای مطالب را برای کاربران خارج شده جایگزین می کند." @@ -563,6 +594,7 @@ msgstr "این پیام محتوای مطالب را برای کاربران خ #: adminpages/advancedsettings.php:110 #: adminpages/advancedsettings.php:182 #: adminpages/advancedsettings.php:184 +#: adminpages/advancedsettings.php:191 msgid "Message for RSS Feed" msgstr "پیام براسی RSS Feed" @@ -571,24 +603,28 @@ msgstr "پیام براسی RSS Feed" #: adminpages/advancedsettings.php:114 #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "This message replaces the post content in RSS feeds." msgstr "این پیام محتوای مطالب را در RSS feeds جایگزین می کند." #: adminpages/advancedsettings.php:122 #: adminpages/advancedsettings.php:199 #: adminpages/advancedsettings.php:201 +#: adminpages/advancedsettings.php:208 msgid "Filter searches and archives?" msgstr "جستجوهای فیلتر و بایگانی ها؟" #: adminpages/advancedsettings.php:126 #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:205 +#: adminpages/advancedsettings.php:212 msgid "No - Non-members will see restricted posts/pages in searches and archives." msgstr "خیر - افراد غیر عضو در جستجو ها و بایگانی ها، پست ها/برگه های محدود شده را مشاهده خواهند کرد." #: adminpages/advancedsettings.php:127 #: adminpages/advancedsettings.php:204 #: adminpages/advancedsettings.php:206 +#: adminpages/advancedsettings.php:213 msgid "Yes - Only members will see restricted posts/pages in searches and archives." msgstr "بله - فقط اعضا در جستجو ها و بایگانی ها، پست ها/برگه های محدود شده را مشاهده خواهند کرد." @@ -597,6 +633,7 @@ msgstr "بله - فقط اعضا در جستجو ها و بایگانی ها، #: adminpages/advancedsettings.php:120 #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:212 +#: adminpages/advancedsettings.php:219 msgid "Show Excerpts to Non-Members?" msgstr "نمایش گزیده ها به افراد غیر عضو؟" @@ -605,6 +642,7 @@ msgstr "نمایش گزیده ها به افراد غیر عضو؟" #: adminpages/advancedsettings.php:124 #: adminpages/advancedsettings.php:214 #: adminpages/advancedsettings.php:216 +#: adminpages/advancedsettings.php:223 msgid "No - Hide excerpts." msgstr "خیر- مخفی کردن گزیده ها." @@ -613,12 +651,14 @@ msgstr "خیر- مخفی کردن گزیده ها." #: adminpages/advancedsettings.php:125 #: adminpages/advancedsettings.php:215 #: adminpages/advancedsettings.php:217 +#: adminpages/advancedsettings.php:224 msgid "Yes - Show excerpts." msgstr "بله - نمایش گزیده ها." #: adminpages/advancedsettings.php:144 #: adminpages/advancedsettings.php:333 #: adminpages/advancedsettings.php:348 +#: adminpages/advancedsettings.php:355 msgid "Hide Ads From Members?" msgstr "مخفی سازی تبلیغات از دید اعضاء؟" @@ -684,6 +724,16 @@ msgstr "مخفی سازی تبلیغات از دید اعضاء؟" #: classes/gateways/class.pmprogateway_stripe.php:404 #: classes/gateways/class.pmprogateway_stripe.php:418 #: adminpages/paymentsettings.php:279 +#: adminpages/advancedsettings.php:254 +#: adminpages/advancedsettings.php:267 +#: adminpages/advancedsettings.php:359 +#: adminpages/advancedsettings.php:418 +#: adminpages/advancedsettings.php:526 +#: adminpages/membershiplevels.php:939 +#: adminpages/paymentsettings.php:277 +#: classes/gateways/class.pmprogateway_stripe.php:430 +#: classes/gateways/class.pmprogateway_stripe.php:444 +#: includes/profile.php:78 msgid "No" msgstr "خیر" @@ -692,6 +742,7 @@ msgstr "خیر" #: adminpages/advancedsettings.php:136 #: adminpages/advancedsettings.php:338 #: adminpages/advancedsettings.php:353 +#: adminpages/advancedsettings.php:360 msgid "Hide Ads From All Members" msgstr "مخفی کردن تبلیغات از دید همه اعضاء" @@ -700,6 +751,7 @@ msgstr "مخفی کردن تبلیغات از دید همه اعضاء" #: adminpages/advancedsettings.php:137 #: adminpages/advancedsettings.php:339 #: adminpages/advancedsettings.php:354 +#: adminpages/advancedsettings.php:361 msgid "Hide Ads From Certain Members" msgstr "مخفی کردن تبلیغات از دید برخی اعضاء" @@ -714,6 +766,7 @@ msgstr "تبلیغات توسط افزونه های زیر به صورت خود #: adminpages/advancedsettings.php:145 #: adminpages/advancedsettings.php:346 #: adminpages/advancedsettings.php:361 +#: adminpages/advancedsettings.php:368 msgid "To hide ads in your template code, use code like the following" msgstr "برای پنهان کردن تبلیغات در کد قالب خود، از کد مانند زیر استفاده کنید" @@ -722,6 +775,7 @@ msgstr "برای پنهان کردن تبلیغات در کد قالب خود، #: adminpages/advancedsettings.php:156 #: adminpages/advancedsettings.php:355 #: adminpages/advancedsettings.php:370 +#: adminpages/advancedsettings.php:377 msgid "Choose Levels to Hide Ads From" msgstr "انتخاب سطح برای مخفی کردن تبلیغات از آن" @@ -740,6 +794,7 @@ msgstr "تغییر مسیر همه ترافیک از صفحه ثبت نام به #: adminpages/advancedsettings.php:390 #: adminpages/advancedsettings.php:392 #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "multisite only" msgstr "تنها چند سایت" @@ -794,6 +849,12 @@ msgstr "تنها چند سایت" #: classes/gateways/class.pmprogateway_stripe.php:406 #: classes/gateways/class.pmprogateway_stripe.php:420 #: adminpages/paymentsettings.php:280 +#: adminpages/advancedsettings.php:419 +#: adminpages/membershiplevels.php:934 +#: adminpages/paymentsettings.php:278 +#: classes/gateways/class.pmprogateway_stripe.php:432 +#: classes/gateways/class.pmprogateway_stripe.php:446 +#: includes/profile.php:79 msgid "Yes" msgstr "بله" @@ -802,6 +863,7 @@ msgstr "بله" #: adminpages/advancedsettings.php:202 #: adminpages/advancedsettings.php:241 #: adminpages/advancedsettings.php:256 +#: adminpages/advancedsettings.php:263 msgid "Use reCAPTCHA?" msgstr "استفاده از reCAPTCHA ؟" @@ -817,6 +879,7 @@ msgstr "بله - تنها عضویت های رایگان." #: adminpages/advancedsettings.php:208 #: adminpages/advancedsettings.php:247 #: adminpages/advancedsettings.php:262 +#: adminpages/advancedsettings.php:269 msgid "Yes - All memberships." msgstr "بله - همه عضویت ها." @@ -825,6 +888,7 @@ msgstr "بله - همه عضویت ها." #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "A free reCAPTCHA key is required." msgstr "کلید reCAPTCHA آزاد مورد نیاز است." @@ -833,6 +897,7 @@ msgstr "کلید reCAPTCHA آزاد مورد نیاز است." #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "Click here to signup for reCAPTCHA" msgstr "برای ثبت نام در reCAPTCHA اینجا را کلیک کنید" @@ -890,6 +955,9 @@ msgstr "انتخاب شده" #: adminpages/pagesettings.php:508 #: adminpages/pagesettings.php:512 #: adminpages/paymentsettings.php:316 +#: adminpages/advancedsettings.php:574 +#: adminpages/pagesettings.php:511 +#: adminpages/paymentsettings.php:314 msgid "Save Settings" msgstr "ذخیره تنظیمات" @@ -965,6 +1033,7 @@ msgstr "خطا در حذف کد تخفیف. لطفاً مجدد تلاش کنی #: adminpages/discountcodes.php:796 #: adminpages/discountcodes.php:354 #: adminpages/discountcodes.php:798 +#: adminpages/discountcodes.php:799 msgid "Code not found." msgstr "کد یافت نشد." @@ -987,6 +1056,7 @@ msgstr "ویرایش کد تخفیف" #: adminpages/discountcodes.php:735 #: adminpages/discountcodes.php:377 #: adminpages/discountcodes.php:737 +#: adminpages/discountcodes.php:738 msgid "Add New Discount Code" msgstr "افزودن کد تخفیف جدید" @@ -1034,6 +1104,8 @@ msgstr "افزودن کد تخفیف جدید" #: adminpages/reports/login.php:182 #: adminpages/templates/orders-email.php:49 #: adminpages/templates/orders-print.php:78 +#: adminpages/membershiplevels.php:345 +#: adminpages/membershiplevels.php:805 msgid "ID" msgstr "شناسه" @@ -1076,6 +1148,9 @@ msgstr "در صورت ذخیره، ایجاد می شود." #: adminpages/dashboard.php:292 #: adminpages/orders.php:429 #: adminpages/orders.php:1333 +#: adminpages/discountcodes.php:787 +#: adminpages/orders.php:475 +#: adminpages/orders.php:1426 msgid "Code" msgstr "کد" @@ -1089,6 +1164,7 @@ msgstr "کد" #: adminpages/discountcodes.php:489 #: includes/profile.php:501 #: includes/profile.php:497 +#: includes/profile.php:537 msgid "Start Date" msgstr "تاریخ شروع" @@ -1120,6 +1196,8 @@ msgstr "تاریخ شروع" #: classes/gateways/class.pmprogateway_stripe.php:1326 #: classes/gateways/class.pmprogateway_stripe.php:785 #: pages/billing.php:381 +#: classes/gateways/class.pmprogateway_braintree.php:486 +#: classes/gateways/class.pmprogateway_stripe.php:893 msgid "Expiration Date" msgstr "تاریخ انقضاء" @@ -1134,6 +1212,7 @@ msgstr "تاریخ انقضاء" #: adminpages/discountcodes.php:787 #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:789 +#: adminpages/discountcodes.php:790 msgid "Uses" msgstr "دفعات استفاده" @@ -1167,6 +1246,7 @@ msgstr "کدام سطح این کد را استفاده نمایند؟" #: adminpages/discountcodes.php:574 #: adminpages/membershiplevels.php:401 #: adminpages/discountcodes.php:576 +#: adminpages/membershiplevels.php:399 msgid "Initial Payment" msgstr "پرداخت اولیه" @@ -1182,6 +1262,7 @@ msgstr "پرداخت اولیه" #: adminpages/discountcodes.php:585 #: adminpages/membershiplevels.php:412 #: adminpages/discountcodes.php:587 +#: adminpages/membershiplevels.php:410 msgid "The initial amount collected at registration." msgstr "مقدار اولیه در هنگام ثبت نام جمع آوری شده.." @@ -1197,6 +1278,7 @@ msgstr "مقدار اولیه در هنگام ثبت نام جمع آوری شد #: adminpages/discountcodes.php:590 #: adminpages/membershiplevels.php:417 #: adminpages/discountcodes.php:592 +#: adminpages/membershiplevels.php:415 msgid "Recurring Subscription" msgstr "اشتراک دوره ای" @@ -1212,6 +1294,7 @@ msgstr "اشتراک دوره ای" #: adminpages/discountcodes.php:591 #: adminpages/membershiplevels.php:418 #: adminpages/discountcodes.php:593 +#: adminpages/membershiplevels.php:416 msgid "Check if this level has a recurring subscription payment." msgstr "اگر این سطح دارای پرداخت دوره ای حق اشتراک است، علامت بزنید." @@ -1226,6 +1309,7 @@ msgstr "اگر این سطح دارای پرداخت دوره ای حق اشتر #: adminpages/discountcodes.php:595 #: adminpages/membershiplevels.php:422 #: adminpages/discountcodes.php:597 +#: adminpages/membershiplevels.php:420 msgid "Billing Amount" msgstr "مقدار صورتحساب" @@ -1262,6 +1346,10 @@ msgstr "مقدار صورتحساب" #: classes/gateways/class.pmprogateway_stripe.php:2637 #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2635 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3092 msgid "Day(s)" msgstr "روز" @@ -1298,6 +1386,10 @@ msgstr "روز" #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2641 #: classes/gateways/class.pmprogateway_stripe.php:2637 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3094 msgid "Month(s)" msgstr "ماه" @@ -1334,6 +1426,10 @@ msgstr "ماه" #: classes/gateways/class.pmprogateway_stripe.php:2638 #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2636 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3093 msgid "Week(s)" msgstr "هفته" @@ -1370,6 +1466,10 @@ msgstr "هفته" #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2642 #: classes/gateways/class.pmprogateway_stripe.php:2638 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3095 msgid "Year(s)" msgstr "سال" @@ -1385,6 +1485,7 @@ msgstr "سال" #: adminpages/discountcodes.php:618 #: adminpages/membershiplevels.php:446 #: adminpages/discountcodes.php:620 +#: adminpages/membershiplevels.php:444 msgid "The amount to be billed one cycle after the initial payment." msgstr "مقداری که به صورت دوره ای بعد از اولین پرداخت، صورتحساب خواهد شد." @@ -1400,6 +1501,7 @@ msgstr "مقداری که به صورت دوره ای بعد از اولین پ #: adminpages/discountcodes.php:628 #: adminpages/membershiplevels.php:465 #: adminpages/discountcodes.php:630 +#: adminpages/membershiplevels.php:463 msgid "Billing Cycle Limit" msgstr "محدودیت چرخه صورتحساب" @@ -1415,6 +1517,7 @@ msgstr "محدودیت چرخه صورتحساب" #: adminpages/discountcodes.php:632 #: adminpages/membershiplevels.php:469 #: adminpages/discountcodes.php:634 +#: adminpages/membershiplevels.php:467 msgid "The total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "جمع تعداد چرخه صورت حساب دوره ای برای این سطح، شامل دوره آزمایشی (در صورت اجرا) می باشد، اما پرداخت اولیه را شامل نمی شود. در صورتی که عضویت نامعین است 0 بگذارید." @@ -1430,6 +1533,8 @@ msgstr "جمع تعداد چرخه صورت حساب دوره #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "دوره آزمایشی سفارشی" @@ -1446,6 +1551,8 @@ msgstr "دوره آزمایشی سفارشی" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "برای افزودن دوره آزمایشی سفارشی علامت بزنید." @@ -1462,6 +1569,7 @@ msgstr "برای افزودن دوره آزمایشی سفارشی علامت ب #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "میزان صورتحساب دوره آزمایشی" @@ -1478,6 +1586,7 @@ msgstr "میزان صورتحساب دوره آزمایشی" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "برای اولین" @@ -1494,6 +1603,7 @@ msgstr "برای اولین" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "پرداخت های اشتراک" @@ -1511,6 +1621,7 @@ msgstr "پرداخت های اشتراک" #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "انقضاء عضویت" @@ -1527,6 +1638,7 @@ msgstr "انقضاء عضویت" #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "برای ثبت زمان انقضای دسترسی عضویت علامت بزنید." @@ -1545,6 +1657,8 @@ msgstr "برای ثبت زمان انقضای دسترسی عضویت علامت #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "انقضا در" @@ -1561,6 +1675,8 @@ msgstr "انقضا در" #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "تنظیم مدت دسترسی عضویت. در نظر داشته باشید هرگونه پرداخت بعدی (اشتراک دوره ای، در صورت وجود) در صورت انقضای عضویت لغو می شود." @@ -1570,6 +1686,7 @@ msgstr "تنظیم مدت دسترسی عضویت. در نظر داشته باش #: adminpages/discountcodes.php:556 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "کدهای تخفیف اعضا" @@ -1579,6 +1696,7 @@ msgstr "کدهای تخفیف اعضا" #: adminpages/discountcodes.php:566 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "جستجوی کدهای تخفیف" @@ -1590,6 +1708,7 @@ msgstr "جستجوی کدهای تخفیف" #: adminpages/reports/login.php:81 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "جستجو" @@ -1599,6 +1718,7 @@ msgstr "جستجو" #: adminpages/discountcodes.php:587 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "آغاز" @@ -1627,6 +1747,8 @@ msgstr "آغاز" #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "انقضا" @@ -1637,6 +1759,7 @@ msgstr "انقضا" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "سطوح" @@ -1677,6 +1800,7 @@ msgstr "کدهای تخفیف به شما امکان میدهد تا به اعض #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "ویرایش" @@ -1731,6 +1855,7 @@ msgstr "تنظیمات ایمیل" #: adminpages/emailsettings.php:70 #: adminpages/emailsettings.php:61 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "در حالت پیشفرض، ایمیل های ارسالی سیستم از آدرس wordpress@yourdomain.comارسال میشوند. می توانید با استفاده از فیلدهای زیر، آدرس فرستنده این فرم را تغییر دهید." @@ -1742,17 +1867,20 @@ msgstr "برای ویرایش ظاهر ایمیل های ایجاد شده تو #: adminpages/emailsettings.php:78 #: adminpages/emailsettings.php:69 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "ایمیل فرستنده" #: adminpages/emailsettings.php:86 #: adminpages/emailsettings.php:77 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "نام فرستنده" #: adminpages/emailsettings.php:94 #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "تنها ایمیل های PMPro فیلتر شود؟" @@ -1924,6 +2052,8 @@ msgstr "افزودن سطح عضویت جدید" #: adminpages/reports/history.php:184 #: adminpages/reports/login.php:181 #: adminpages/reports/login.php:184 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 msgid "Name" msgstr "نام" @@ -1931,6 +2061,7 @@ msgstr "نام" #: adminpages/membershiplevels.php:314 #: adminpages/membershiplevels.php:316 #: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "پیام تایید" @@ -1944,6 +2075,8 @@ msgstr "پیام تایید" #: adminpages/membershiplevels.php:639 #: adminpages/membershiplevels.php:397 #: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "جزیئات صورتحساب" @@ -1966,6 +2099,8 @@ msgstr "جزیئات صورتحساب" #: classes/gateways/class.pmprogateway_stripe.php:2696 #: classes/gateways/class.pmprogateway_stripe.php:2698 #: classes/gateways/class.pmprogateway_stripe.php:2694 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "به ازای" @@ -1984,6 +2119,7 @@ msgstr "ادغام Stripe در حال حاضر تنها دوره های زمان #: adminpages/discountcodes.php:620 #: adminpages/membershiplevels.php:448 #: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:446 msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." msgstr "ادغام Braintree در حال حاضر تنها دوره های زمانی صدور صورت حساب \"ماهانه\" یا \"سالانه\" را پشتیبانی میکند." @@ -2001,6 +2137,7 @@ msgstr "ادغام Payflow در حال حاضر تنها دوره های زما #: adminpages/membershiplevels.php:393 #: adminpages/membershiplevels.php:396 #: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." msgstr "بعد از ذخیره این سطح، از شناسه آن یادداشت بردارید و یک \"Plan\" در داشبورد Braintree با تنظیمات مشابه ایجاد کرده و در قسمت \"Plan ID\" عبارت pmpro_# را وارد کنید، به طوریکه به جای # شناسه سطح را وارد نمایید." @@ -2023,6 +2160,8 @@ msgstr "بعد از ذخیره این سطح، از شناسه آن یادداش #: adminpages/membershiplevels.php:454 #: adminpages/membershiplevels.php:459 #: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 msgid "Note" msgstr "یادداشت" @@ -2042,6 +2181,7 @@ msgstr "یک \"Plan\" در داشبورد Braintree خود با تنظیمات #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "ادغام Stripe در حال حاضر محدودیت های صدور صورت حساب را پشتیبانی نمیکند. شما همچنان می توانید تاریخ انقضا را در زیر مشخص کنید" @@ -2053,6 +2193,8 @@ msgstr "ادغام Stripe در حال حاضر محدودیت های صدور ص #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "ادغام 2Checkout در حال حاضر از دوره های آزمایشی سفارشی پشتیبانی نمیکند. میتوانید یک دوره آزمایشی را با تنظیم یک پرداخت اولیه مجزا از مقدار صورت حساب انجام دهید." @@ -2065,6 +2207,7 @@ msgstr "ادغام 2Checkout در حال حاضر از دوره های آزما #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "ادغام Stripe در حال حاضر دوره آزمایشی با مقادیر بالاتر از 0$ را پشتیبانی نمیکند." @@ -2077,6 +2220,7 @@ msgstr "ادغام Stripe در حال حاضر دوره آزمایشی با مق #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "ادغام Braintree در حال حاضر دوره آزمایشی با مقادیر بالاتر از 0$ را پشتیبانی نمیکند." @@ -2089,6 +2233,7 @@ msgstr "ادغام Braintree در حال حاضر دوره آزمایشی با #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "ادغام Payflow در حال حاضر دوره آزمایشی با مقادیر بالاتر از 0$ را پشتیبانی نمیکند." @@ -2103,6 +2248,7 @@ msgstr "ادغام Payflow در حال حاضر دوره آزمایشی با م #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "تنظیمات دیگر" @@ -2138,6 +2284,8 @@ msgstr "برای مخفی سازی این سطح از لیست سطوح عضوی #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "تنظیمات محتوا" @@ -2149,12 +2297,14 @@ msgstr "تنظیمات محتوا" #: adminpages/membershiplevels.php:497 #: adminpages/membershiplevels.php:500 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "دسته بندی ها" #: adminpages/membershiplevels.php:516 #: adminpages/membershiplevels.php:517 #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "ذخیره سطح" @@ -2187,6 +2337,11 @@ msgstr "ذخیره سطح" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "لغو کردن" @@ -2227,6 +2382,7 @@ msgstr "جستجو تمام سطوح" #: adminpages/membershiplevels.php:579 #: adminpages/membershiplevels.php:631 #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "برای جابجایی ترتیب سطوح عضویت را بکشید و رها کنید تا در صفحه سطوح مرتب شوند." @@ -2252,6 +2408,8 @@ msgstr "برای جابجایی ترتیب سطوح عضویت را بکشید #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "انقضا" @@ -2264,6 +2422,7 @@ msgstr "انقضا" #: adminpages/membershiplevels.php:587 #: adminpages/membershiplevels.php:641 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "اجازه ثبت نام" @@ -2277,6 +2436,7 @@ msgstr "اجازه ثبت نام" #: adminpages/membershiplevels.php:656 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "رایگان" @@ -2290,6 +2450,7 @@ msgstr "رایگان" #: adminpages/membershiplevels.php:665 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "بعد از" @@ -2331,6 +2492,7 @@ msgstr "کپی کردن" #: includes/adminpages.php:142 #: includes/adminpages.php:149 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "لیست اعضا" @@ -2342,6 +2504,8 @@ msgstr "لیست اعضا" #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "ذخیره با فرمت CSV" @@ -2365,6 +2529,8 @@ msgstr "ذخیره با فرمت CSV" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "نمایش" @@ -2389,6 +2555,8 @@ msgstr "نمایش" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "همه سطوح" @@ -2432,6 +2600,8 @@ msgstr "اعضای پیشین" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "جستجوی اعضا" @@ -2467,6 +2637,8 @@ msgstr "%d عضو یافت شد" #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "نام کاربری" @@ -2508,6 +2680,7 @@ msgstr "نام خانوادگی" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "آدرس صورت حساب" @@ -2602,6 +2775,7 @@ msgstr "خطا در حذف سفارش." #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "سفارش با موفقیت ذخیره شد." @@ -2615,6 +2789,7 @@ msgstr "خطا در به روز کردن زمان سفارش." #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "خطا در ذخیره سفارش." @@ -2626,6 +2801,7 @@ msgstr "خطا در ذخیره سفارش." #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "سفارش" @@ -2634,6 +2810,7 @@ msgstr "سفارش" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "سفارش جدید" @@ -2642,6 +2819,7 @@ msgstr "سفارش جدید" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "به صورت تصادفی برای شما تولید شده است." @@ -2650,6 +2828,7 @@ msgstr "به صورت تصادفی برای شما تولید شده است." #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "شناسه کاربر" @@ -2659,6 +2838,8 @@ msgstr "شناسه کاربر" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "شناسه سطح عضویت" @@ -2668,6 +2849,7 @@ msgstr "شناسه سطح عضویت" #: includes/privacy.php:245 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "نام در صورت حساب" @@ -2677,6 +2859,7 @@ msgstr "نام در صورت حساب" #: includes/privacy.php:249 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "خیابان محل صورت حساب" @@ -2687,6 +2870,7 @@ msgstr "خیابان محل صورت حساب" #: includes/privacy.php:358 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "شهر صورت حساب" @@ -2696,6 +2880,7 @@ msgstr "شهر صورت حساب" #: includes/privacy.php:257 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "ایالت صورت حساب" @@ -2707,6 +2892,7 @@ msgstr "ایالت صورت حساب" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "کد پستی صورت حساب" @@ -2718,6 +2904,7 @@ msgstr "کد پستی صورت حساب" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "کشور صورت حساب" @@ -2728,6 +2915,7 @@ msgstr "کشور صورت حساب" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "تلفن صورت حساب" @@ -2738,6 +2926,7 @@ msgstr "تلفن صورت حساب" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "جمع کل" @@ -2753,6 +2942,8 @@ msgstr "جمع کل" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "مالیات" @@ -2763,6 +2954,7 @@ msgstr "مالیات" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "مقدار کپن" @@ -2788,6 +2980,9 @@ msgstr "مقدار کپن" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "مجموع" @@ -2803,6 +2998,7 @@ msgstr "باید جمع کل + مالیات - مقدار کوپن شود." #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "نوع پرداخت" @@ -2812,6 +3008,7 @@ msgstr "نوع پرداخت" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "به عنوان مثال، پی پال اکسپرس، پی پال استاندارد، کارت اعتباری." @@ -2844,6 +3041,9 @@ msgstr "به عنوان مثال، پی پال اکسپرس، پی پال است #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "نوع کارت" @@ -2853,6 +3053,7 @@ msgstr "نوع کارت" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "به عنوان مثال، ویزا، مسترکارد، AMEX، و غیره" @@ -2868,6 +3069,8 @@ msgstr "به عنوان مثال، ویزا، مسترکارد، AMEX، و غی #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "شماره حساب" @@ -2876,6 +3079,7 @@ msgstr "شماره حساب" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "عدم نمایش به جز 4 رقم آخر" @@ -2888,6 +3092,7 @@ msgstr "عدم نمایش به جز 4 رقم آخر" #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "ماه انقضا" @@ -2924,6 +3129,10 @@ msgstr "سال انقضا" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "وضعیت" @@ -2942,6 +3151,9 @@ msgstr "وضعیت" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "درگاه پرداخت" @@ -2958,6 +3170,8 @@ msgstr "درگاه پرداخت" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "محیط درگاه" @@ -2977,6 +3191,9 @@ msgstr "محیط درگاه" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "Sandbox/تست" @@ -2996,6 +3213,9 @@ msgstr "Sandbox/تست" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "زنده / تولید" @@ -3006,6 +3226,7 @@ msgstr "زنده / تولید" #: includes/privacy.php:321 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "شناسه تراکنش پرداخت" @@ -3015,6 +3236,7 @@ msgstr "شناسه تراکنش پرداخت" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "تولید شده توسط درگاه." @@ -3027,6 +3249,8 @@ msgstr "تولید شده توسط درگاه." #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "شناسه تراکنش اشتراک" @@ -3037,6 +3261,7 @@ msgstr "شناسه تراکنش اشتراک" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "تولید شده توسط درگاه." @@ -3065,6 +3290,8 @@ msgstr "تولید شده توسط درگاه." #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "تاریخ" @@ -3074,6 +3301,7 @@ msgstr "تاریخ" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "شناسه بازاریاب" @@ -3083,6 +3311,7 @@ msgstr "شناسه بازاریاب" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "شناسه زیر دسته بازاریاب" @@ -3092,6 +3321,7 @@ msgstr "شناسه زیر دسته بازاریاب" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "یادداشت ها" @@ -3101,6 +3331,7 @@ msgstr "یادداشت ها" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "ذخیره سفارش" @@ -3124,6 +3355,8 @@ msgstr "ذخیره سفارش" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "سفارشات" @@ -3133,6 +3366,7 @@ msgstr "سفارشات" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "افزودن سفارش جدید" @@ -3141,6 +3375,7 @@ msgstr "افزودن سفارش جدید" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "در یک محدوده زمانی" @@ -3149,6 +3384,7 @@ msgstr "در یک محدوده زمانی" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "محدوده زمانی پیش تعریف شده" @@ -3157,6 +3393,7 @@ msgstr "محدوده زمانی پیش تعریف شده" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "در یک سطح" @@ -3165,6 +3402,7 @@ msgstr "در یک سطح" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "در یک وضعیت" @@ -3173,6 +3411,7 @@ msgstr "در یک وضعیت" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "از" @@ -3181,6 +3420,7 @@ msgstr "از" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "به" @@ -3189,6 +3429,7 @@ msgstr "به" #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "فیلتر بر اساس" @@ -3197,6 +3438,7 @@ msgstr "فیلتر بر اساس" #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "فیلتر" @@ -3212,6 +3454,8 @@ msgstr "فیلتر" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "جستجوی سفارش" @@ -3222,6 +3466,8 @@ msgstr "جستجوی سفارش" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "%d سفارش یافت شد" @@ -3243,6 +3489,7 @@ msgstr "%d سفارش یافت شد" #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "کاربر" @@ -3283,6 +3530,8 @@ msgstr "کاربر" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "سطح عضویت" @@ -3301,6 +3550,7 @@ msgstr "سطح عضویت" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "پرداختی" @@ -3311,6 +3561,7 @@ msgstr "پرداختی" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "شناسه تراکنش" @@ -3332,6 +3583,8 @@ msgstr "شناسه تراکنش" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "پاک شد" @@ -3343,6 +3596,7 @@ msgstr "پاک شد" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "اشتراک" @@ -3356,6 +3610,7 @@ msgstr "اشتراک" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "حذف سفارشات دائمی است و این می تواند روی کاربران فعال تاثیر بگذارد. آیا شما برای حذف سفارش %s اطمینان دارید؟" @@ -3373,6 +3628,7 @@ msgstr "حذف سفارشات دائمی است و این می تواند روی #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "سفارشی یافت نشد." @@ -3445,6 +3701,7 @@ msgstr "صفحات زیر برای شما ایجاد شدند" #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "مدیریت صفحات وردپرس اختصاص یافته به هر صفحه PMPro مورد نیاز." @@ -3454,6 +3711,7 @@ msgstr "مدیریت صفحات وردپرس اختصاص یافته به هر #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "اختصاص صفحات وردپرس برای هر صفحه PMPro مورد نیاز." @@ -3463,6 +3721,7 @@ msgstr "اختصاص صفحات وردپرس برای هر صفحه PMPro مور #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "برای ایجاد صفحات به طور خودکار اینجا کلیک کنید" @@ -3472,6 +3731,7 @@ msgstr "برای ایجاد صفحات به طور خودکار اینجا کل #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "صفحه حساب کاربری" @@ -3518,6 +3778,14 @@ msgstr "صفحه حساب کاربری" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "انتخاب یکی" @@ -3578,6 +3846,16 @@ msgstr "انتخاب یکی" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "ویرایش صفحه" @@ -3635,6 +3913,15 @@ msgstr "ویرایش صفحه" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "نمایش صفحه" @@ -3688,6 +3975,12 @@ msgstr "نمایش صفحه" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "شامل کد کوتاه" @@ -3699,6 +3992,7 @@ msgstr "شامل کد کوتاه" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "صفحه اطلاعات صورتحساب" @@ -3710,6 +4004,7 @@ msgstr "صفحه اطلاعات صورتحساب" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "صفحه انصراف" @@ -3721,6 +4016,7 @@ msgstr "صفحه انصراف" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "صفحه پرداخت" @@ -3732,6 +4028,7 @@ msgstr "صفحه پرداخت" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "صفحه تاییدیه" @@ -3743,6 +4040,7 @@ msgstr "صفحه تاییدیه" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "صفحه فاکتور" @@ -3754,6 +4052,7 @@ msgstr "صفحه فاکتور" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "صفحه سطوح کاربری" @@ -3761,6 +4060,7 @@ msgstr "صفحه سطوح کاربری" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "تنظیمات صفحه اضافی" @@ -3774,6 +4074,9 @@ msgstr "تنظیمات صفحه اضافی" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "ایجاد صفحه" @@ -3794,6 +4097,7 @@ msgstr "تنظیمات پرداخت شما به روز رسانی شد." #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "درگاه پرداخت" @@ -3803,6 +4107,7 @@ msgstr "درگاه پرداخت" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "تنظیمات اس اس ال" @@ -3819,6 +4124,7 @@ msgstr "بیشتر بدانید If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.
If No, make sure you disable address verification in the Stripe dashboard settings." @@ -5533,6 +5944,7 @@ msgstr "To fully integrate with Stripe, be sure to set your Web Hook URL to" #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "به روز رسانی اشتراک" @@ -5574,6 +5986,7 @@ msgstr "Subscription updates, allow you to change the member's subscription valu #: classes/gateways/class.pmprogateway_stripe.php:2653 #: classes/gateways/class.pmprogateway_stripe.php:2649 #: pages/billing.php:441 +#: classes/gateways/class.pmprogateway_stripe.php:3106 msgid "Update" msgstr "‌بروزرسانی" @@ -5588,6 +6001,7 @@ msgstr "‌بروزرسانی" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "قادر به لغو اشتراک قبل نمی باشد. به روز رسانی پردازش نشده است." @@ -5650,6 +6064,8 @@ msgstr "خطا در ایجاد رکورد مشتری با Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "خطا در ایجاد پلن با Stripe:" @@ -5682,6 +6098,8 @@ msgstr "خطا در ایجاد پلن با Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "خطا در عضویت مشتری در پلن با Stripe:" @@ -5701,6 +6119,7 @@ msgstr "خطا در عضویت مشتری در پلن با Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "اشتراک های قدیمی را نمی توان لغو کرد" @@ -5717,6 +6136,7 @@ msgstr "اشتراک های قدیمی را نمی توان لغو کرد" #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "مشتری پیدا نشد" @@ -5726,22 +6146,26 @@ msgstr "مشتری پیدا نشد" #: paid-memberships-pro.php:124 #: paid-memberships-pro.php:125 #: classes/gateways/class.pmprogateway_twocheckout.php:59 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "2Checkout" #: classes/gateways/class.pmprogateway_twocheckout.php:116 #: classes/gateways/class.pmprogateway_twocheckout.php:108 #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "2Checkout Settings" #: classes/gateways/class.pmprogateway_twocheckout.php:125 #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." #: classes/gateways/class.pmprogateway_twocheckout.php:134 #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "Password for the API user created." @@ -5755,6 +6179,7 @@ msgstr "Go to API in 2Checkout and generate a new key pair. Paste the Private Ke #: classes/gateways/class.pmprogateway_twocheckout.php:152 #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "Click on the profile icon in 2Checkout to find your Account Number." @@ -5763,11 +6188,13 @@ msgstr "Click on the profile icon in 2Checkout to find your Account Number." #: adminpages/paymentsettings.php:360 #: classes/gateways/class.pmprogateway_twocheckout.php:137 #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "Secret Word" #: classes/gateways/class.pmprogateway_twocheckout.php:161 #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." @@ -5777,17 +6204,20 @@ msgstr "Go to Account » Site Management. Look under Checkout Options to fi #: adminpages/paymentsettings.php:495 #: classes/gateways/class.pmprogateway_twocheckout.php:145 #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "TwoCheckout INS URL" #: classes/gateways/class.pmprogateway_twocheckout.php:169 #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" #: classes/gateways/class.pmprogateway_twocheckout.php:214 #: classes/gateways/class.pmprogateway_twocheckout.php:192 #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "Check Out with 2Checkout" @@ -6647,6 +7077,7 @@ msgstr "و" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "هم اکنون برای !!name!! ثبت نام کنید" @@ -6690,6 +7121,9 @@ msgstr "لطفا یک شناسه سطح را مشخص کنید." #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "هیچ" @@ -6701,6 +7135,7 @@ msgstr "کلید لایسنس شما اعتبار سنجی شد." #: includes/license.php:81 #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "لایسنس پشتیبانی Paid Memberships Pro" @@ -6721,6 +7156,7 @@ msgstr "Visit the PMPro
Thank you! A valid %s license key h #: adminpages/license.php:59 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "کلید مجوز را اینجا وارد کنید ..." @@ -6842,6 +7279,8 @@ msgstr "سطح کنونی" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "بدون پرداخت." @@ -6921,6 +7360,9 @@ msgstr "خروج" #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "سطح" @@ -6985,6 +7427,7 @@ msgstr "پرداخت اشتراک شما با پی پال صورت گرفته ل #: includes/profile.php:759 #: includes/profile.php:755 #: pages/billing.php:166 +#: includes/profile.php:795 msgid "First Name" msgstr "نام" @@ -7003,6 +7446,7 @@ msgstr "نام" #: includes/profile.php:760 #: includes/profile.php:756 #: pages/billing.php:170 +#: includes/profile.php:796 msgid "Last Name" msgstr "نام خانوادگی" @@ -7449,6 +7893,10 @@ msgstr "فاکتور #%s در %s" #: adminpages/orders.php:391 #: adminpages/orders.php:1424 #: adminpages/orders.php:1434 +#: adminpages/orders.php:439 +#: adminpages/orders.php:1539 +#: adminpages/orders.php:1549 +#: includes/profile.php:473 msgid "Print" msgstr "چاپ" @@ -7499,6 +7947,7 @@ msgstr "روش پرداخت" #: pages/invoice.php:97 #: pages/invoice.php:125 #: includes/profile.php:413 +#: includes/profile.php:453 msgid "Total Billed" msgstr "مجموع صورتحساب" @@ -7523,6 +7972,7 @@ msgstr "در زیر اطلاعات حساب کاربری شما آمده است. #: pages/confirmation.php:103 #: pages/confirmation.php:138 #: shortcodes/pmpro_account.php:247 +#: pages/confirmation.php:65 msgid "Pending" msgstr "در حال بررسی" @@ -7550,6 +8000,7 @@ msgstr "اگر حساب شما ظرف چند دقیقه آینده فعال نش #: includes/functions.php:2842 #: includes/functions.php:2873 #: includes/functions.php:2895 +#: includes/functions.php:2897 msgid "Subtotal" msgstr "مجموع" @@ -7558,6 +8009,7 @@ msgstr "مجموع" #: includes/functions.php:2857 #: includes/functions.php:2888 #: includes/functions.php:2910 +#: includes/functions.php:2912 msgid "Coupon" msgstr "کوپن تخفیف" @@ -7641,6 +8093,7 @@ msgstr "←بازگشت به صفحه اصلی" #: paid-memberships-pro.php:157 #: paid-memberships-pro.php:159 #: paid-memberships-pro.php:160 +#: paid-memberships-pro.php:166 msgid "Testing Only" msgstr "تنها آزمایشی" @@ -7650,6 +8103,7 @@ msgstr "تنها آزمایشی" #: paid-memberships-pro.php:162 #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:165 +#: paid-memberships-pro.php:171 msgid "PayPal Payflow Pro/PayPal Pro" msgstr "PayPal Payflow Pro/PayPal Pro" @@ -7659,6 +8113,7 @@ msgstr "PayPal Payflow Pro/PayPal Pro" #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:168 #: paid-memberships-pro.php:169 +#: paid-memberships-pro.php:175 msgid "Cybersource" msgstr "CyberSource" @@ -7776,6 +8231,7 @@ msgstr "خطا در به روز رسانی اطلاعات صورت حساب." #: classes/class.pmproemail.php:907 #: includes/email.php:459 #: classes/class.pmproemail.php:900 +#: classes/class.pmproemail.php:1033 msgid "Your membership has been cancelled." msgstr "عضویت شما لغو شد" @@ -8074,6 +8530,7 @@ msgstr "عضو %s پرداخت اشتراک خود را با Stripe لغو نم #: pages/account.php:19 #: includes/email-templates.php:68 #: shortcodes/pmpro_account.php:43 +#: adminpages/orders.php:1431 msgid "Billing" msgstr "صورتحساب" @@ -8122,6 +8579,8 @@ msgstr "ویرایش پروفایل" #: includes/profile.php:921 #: includes/profile.php:880 #: includes/profile.php:917 +#: includes/profile.php:920 +#: includes/profile.php:957 msgid "Change Password" msgstr "تغییر رمز عبور" @@ -8212,6 +8671,8 @@ msgstr "هر" #: includes/profile.php:515 #: includes/profile.php:511 #: adminpages/advancedsettings.php:331 +#: adminpages/advancedsettings.php:338 +#: includes/profile.php:551 msgid "Never" msgstr "هرگز" @@ -8302,6 +8763,7 @@ msgstr "هزینه اولین %d پرداخت شما %s میباشد." #: pages/account.php:87 #: pages/account.php:91 #: adminpages/emailtemplates.php:156 +#: adminpages/emailtemplates.php:149 msgid "Billing Information" msgstr "اطلاعات صورتحساب" @@ -8418,6 +8880,18 @@ msgstr "حساب خود را تنظیم کنید" #: js/blocks.build.js:1342 #: js/blocks.build.js:1502 #: classes/class-pmpro-admin-activity-email.php:349 +#: blocks/account-invoices-section/block.js:47 +#: blocks/account-links-section/block.js:47 +#: blocks/account-membership-section/block.js:45 +#: blocks/account-page/block.js:72 +#: blocks/account-profile-section/block.js:45 +#: blocks/billing-page/block.js:44 +#: blocks/cancel-page/block.js:44 +#: blocks/checkout-page/block.js:58 +#: blocks/confirmation-page/block.js:46 +#: blocks/invoice-page/block.js:45 +#: blocks/levels-page/block.js:44 +#: blocks/member-profile-edit/block.js:37 msgid "Paid Memberships Pro" msgstr "" @@ -8463,6 +8937,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:76 #: classes/gateways/class.pmprogateway_stripe.php:82 #: classes/gateways/class.pmprogateway_stripe.php:1338 +#: classes/gateways/class.pmprogateway_stripe.php:1463 msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade." msgstr "" @@ -8503,6 +8978,7 @@ msgstr "" #: includes/adminpages.php:52 #: includes/adminpages.php:158 #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Members" msgstr "" @@ -8547,41 +9023,49 @@ msgstr "" #: adminpages/advancedsettings.php:106 #: includes/updates/upgrade_1.php:7 #: adminpages/advancedsettings.php:108 +#: adminpages/advancedsettings.php:116 msgid "This content is for !!levels!! members only.
Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -8589,93 +9073,111 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -8701,6 +9203,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -8771,6 +9274,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -8876,6 +9380,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -8914,6 +9419,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -8926,31 +9432,39 @@ msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 msgid "%d discount codes found." msgstr "" @@ -8976,6 +9490,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -8994,6 +9515,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -9002,19 +9529,23 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -9055,192 +9586,241 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:960 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:170 #: includes/privacy.php:363 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -9278,6 +9858,7 @@ msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -9285,14 +9866,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -9309,27 +9893,34 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -9339,6 +9930,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -9346,6 +9939,7 @@ msgstr "" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -9353,6 +9947,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -9360,6 +9955,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -9367,6 +9963,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -9374,6 +9971,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -9381,6 +9979,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -9419,78 +10018,91 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -9500,12 +10112,15 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -9513,18 +10128,21 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" @@ -9534,26 +10152,31 @@ msgstr "" #: adminpages/paymentsettings.php:122 #: adminpages/paymentsettings.php:127 +#: adminpages/paymentsettings.php:125 msgid "Choose a Gateway" msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" #: adminpages/paymentsettings.php:194 #: adminpages/paymentsettings.php:201 +#: adminpages/paymentsettings.php:199 msgid "Currency and Tax Settings" msgstr "" #: adminpages/paymentsettings.php:239 #: adminpages/paymentsettings.php:246 +#: adminpages/paymentsettings.php:244 msgid "Tax Rate" msgstr "" @@ -9563,11 +10186,13 @@ msgstr "" #: adminpages/paymentsettings.php:260 #: adminpages/paymentsettings.php:273 +#: adminpages/paymentsettings.php:271 msgid "Your Site URL starts with https:// and so PMPro will allow your entire site to be served over HTTPS." msgstr "" #: adminpages/paymentsettings.php:270 #: adminpages/paymentsettings.php:283 +#: adminpages/paymentsettings.php:281 msgid "Recommended: Yes. Try the JavaScript redirects setting if you are having issues with infinite redirect loops." msgstr "" @@ -9577,6 +10202,7 @@ msgstr "" #: adminpages/reports.php:19 #: adminpages/reports.php:18 +#: adminpages/reports.php:21 msgid "Back to Reports Dashboard" msgstr "" @@ -9604,6 +10230,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -9614,6 +10241,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -9672,29 +10300,35 @@ msgid "All Cancellations" msgstr "" #: adminpages/reports/memberships.php:338 +#: adminpages/reports/memberships.php:337 msgid "Signups vs. All Cancellations" msgstr "" #: adminpages/reports/memberships.php:340 +#: adminpages/reports/memberships.php:339 msgid "Signups vs. Expirations" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -9887,63 +10521,77 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:962 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:463 #: classes/class.pmproemail.php:475 #: classes/class.pmproemail.php:468 +#: classes/class.pmproemail.php:601 msgid "Your billing information has been updated at %s" msgstr "" #: classes/class.pmproemail.php:513 #: classes/class.pmproemail.php:525 #: classes/class.pmproemail.php:518 +#: classes/class.pmproemail.php:651 msgid "Billing information has been updated for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -9956,6 +10604,8 @@ msgstr "" #: includes/email.php:465 #: classes/class.pmproemail.php:898 #: classes/class.pmproemail.php:943 +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 msgid "The new level is %s." msgstr "" @@ -9968,30 +10618,36 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -10003,14 +10659,17 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:91 #: classes/gateways/class.pmprogateway_stripe.php:97 #: classes/gateways/class.pmprogateway_stripe.php:1353 +#: classes/gateways/class.pmprogateway_stripe.php:1478 msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" @@ -10024,21 +10683,30 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:750 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -10046,11 +10714,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -10328,17 +10999,20 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:185 #: classes/gateways/class.pmprogateway_paypalexpress.php:194 #: classes/gateways/class.pmprogateway_paypalexpress.php:204 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 msgid "Confirmation Step" msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -10347,6 +11021,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -10355,6 +11030,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -10370,6 +11046,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -10378,6 +11055,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -10389,6 +11067,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -10400,6 +11079,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -10411,6 +11091,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -10419,6 +11100,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -10430,6 +11112,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -10441,6 +11124,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -10449,6 +11133,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -10460,6 +11145,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -10468,6 +11154,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -10491,6 +11178,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -10507,6 +11196,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -10515,6 +11206,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -10523,6 +11215,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -10531,6 +11224,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -10538,6 +11232,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -10546,6 +11241,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -10559,6 +11255,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -10567,6 +11265,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -10575,6 +11274,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -10584,6 +11284,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -10601,6 +11303,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -10609,6 +11313,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -10630,6 +11335,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -10638,6 +11345,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -10646,6 +11354,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -10654,6 +11363,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -10662,6 +11372,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -10670,6 +11381,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -10678,6 +11390,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -10686,6 +11399,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -10694,6 +11408,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -10702,6 +11417,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -10710,6 +11426,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -10722,6 +11439,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -10730,6 +11448,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -10738,6 +11457,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -10746,6 +11466,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -10754,6 +11475,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -10799,6 +11521,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "" @@ -10816,6 +11540,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "" @@ -10827,6 +11553,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 msgid "Error: Unkown error while refunding charge #%s" msgstr "" @@ -10836,6 +11563,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -10856,6 +11584,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -10864,6 +11596,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -10873,6 +11606,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -10882,6 +11616,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -10893,6 +11628,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -10904,6 +11640,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -10915,6 +11652,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -10926,6 +11664,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" @@ -10964,6 +11703,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -10976,6 +11716,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -10988,6 +11729,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -12786,14 +13528,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -12802,18 +13547,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -12825,6 +13574,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -12957,6 +13707,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -13070,6 +13821,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -13077,6 +13829,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -13108,6 +13861,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -13117,6 +13871,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -13124,6 +13879,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -13223,6 +13979,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -13230,6 +13988,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -13237,6 +13996,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -13244,6 +14004,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -13315,126 +14076,148 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -13446,6 +14229,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -13551,6 +14337,7 @@ msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -13576,6 +14363,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -13614,6 +14402,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -13629,6 +14432,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -13644,6 +14448,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -13676,6 +14481,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -13688,6 +14494,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -13713,11 +14520,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -13725,6 +14537,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -13732,6 +14545,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -13754,6 +14568,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -13779,6 +14594,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -13786,6 +14602,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -13818,6 +14635,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -13840,6 +14658,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -13850,11 +14669,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -13874,6 +14704,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -13887,6 +14718,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -13896,6 +14728,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -13905,10 +14738,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -13919,6 +14754,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -13926,6 +14762,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -13935,6 +14772,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -13944,12 +14782,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -13957,6 +14798,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -13965,6 +14808,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -13972,6 +14816,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -13979,27 +14824,32 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: paid-memberships-pro.php:194 #: paid-memberships-pro.php:195 +#: paid-memberships-pro.php:201 msgid "Once a month" msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -14057,12 +14907,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -14072,6 +14924,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -14081,6 +14934,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -14090,54 +14944,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -14148,42 +15012,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -14198,51 +15072,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -14250,6 +15136,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -14257,6 +15144,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -14264,6 +15152,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -14272,6 +15161,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -14285,6 +15176,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -14305,19 +15197,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -14327,31 +15223,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -14381,21 +15285,25 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" @@ -14465,26 +15373,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -14493,51 +15407,62 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -14551,19 +15476,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -14594,3 +15523,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-fi.mo b/languages/paid-memberships-pro-fi.mo index 7842c5530..c7dab88bf 100644 Binary files a/languages/paid-memberships-pro-fi.mo and b/languages/paid-memberships-pro-fi.mo differ diff --git a/languages/paid-memberships-pro-fi.po b/languages/paid-memberships-pro-fi.po index b80c8a1c9..94206dc6c 100644 --- a/languages/paid-memberships-pro-fi.po +++ b/languages/paid-memberships-pro-fi.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:20:45+00:00\n" +"POT-Creation-Date: 2022-05-05T20:37:28+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -185,6 +185,11 @@ msgstr "Maksuväylä & SSL" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "Sähköposti" @@ -206,6 +211,7 @@ msgstr "Lisäosat" #: adminpages/advancedsettings.php:43 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "Lisäasetukset on päivitetty." @@ -223,6 +229,7 @@ msgstr "Kirjaudu sisään lukeaksesi sisällön. (total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "Tilaajatason laskutettavien jaksojen kokonaismäärä, sisältäen kokeiluajan ja lukuunottamatta aloitusmaksua. Aseta 0, mikäli tilaus jatkuu toistaiseksi." @@ -838,6 +922,8 @@ msgstr "Tilaajatason laskutettavien jaksojen kokonaismäärä, #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "Mukautettu kokeiluaika" @@ -846,6 +932,8 @@ msgstr "Mukautettu kokeiluaika" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "Valitse lisätäksesi mukautetun kokeiluajan." @@ -854,6 +942,7 @@ msgstr "Valitse lisätäksesi mukautetun kokeiluajan." #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "Kokeilujaksojen maksu" @@ -862,6 +951,7 @@ msgstr "Kokeilujaksojen maksu" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "ensimmäiselle" @@ -870,6 +960,7 @@ msgstr "ensimmäiselle" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "laskutusjaksolle" @@ -878,6 +969,7 @@ msgstr "laskutusjaksolle" #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "Tilaajataso vanhenee" @@ -886,6 +978,7 @@ msgstr "Tilaajataso vanhenee" #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "Valitse asettaaksesi tilaajatasolle vanhemisajankohta." @@ -895,6 +988,8 @@ msgstr "Valitse asettaaksesi tilaajatasolle vanhemisajankohta." #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "Vanhenee kun" @@ -903,30 +998,36 @@ msgstr "Vanhenee kun" #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "Valitse tilaajatason kesto. Ota huomioon, että tulevat maksut (uusiutuvat tilaukset, mikäli niitä on) loppuvat kun tilaus päättyy." #: adminpages/discountcodes.php:557 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "" #: adminpages/discountcodes.php:567 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "Etsi Alennuskoodeja" #: adminpages/discountcodes.php:570 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "Etsi" #: adminpages/discountcodes.php:588 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "Alkaa" @@ -944,6 +1045,8 @@ msgstr "Alkaa" #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "Päättyy" @@ -951,6 +1054,7 @@ msgstr "Päättyy" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "Tilaajatasot" @@ -970,6 +1074,7 @@ msgstr "Luo ensimmäinen alennuskoodisi nyt" #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "muokkaa" @@ -999,6 +1104,7 @@ msgstr "Sähköpostiasetukset" #: adminpages/emailsettings.php:70 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "" @@ -1008,16 +1114,19 @@ msgstr "" #: adminpages/emailsettings.php:78 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "Keneltä (sähköposti)" #: adminpages/emailsettings.php:86 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "Kuka (nimi)" #: adminpages/emailsettings.php:94 #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "Filtteröi vain PMPro-Sähköposteja?" @@ -1137,17 +1246,21 @@ msgstr "Lisää uusi Tilaajataso" #: adminpages/reports/history.php:184 #: adminpages/reports/login.php:181 #: adminpages/reports/login.php:184 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 msgid "Name" msgstr "Nimi" #: adminpages/membershiplevels.php:300 #: adminpages/addons.php:111 #: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "Kuvaus" #: adminpages/membershiplevels.php:318 #: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "Vahvistusviesti" @@ -1155,6 +1268,8 @@ msgstr "Vahvistusviesti" #: adminpages/membershiplevels.php:585 #: adminpages/membershiplevels.php:397 #: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "Laskutuksen asetukset" @@ -1171,6 +1286,8 @@ msgstr "Laskutuksen asetukset" #: classes/gateways/class.pmprogateway_stripe.php:2696 #: classes/gateways/class.pmprogateway_stripe.php:2698 #: classes/gateways/class.pmprogateway_stripe.php:2694 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "" @@ -1182,6 +1299,7 @@ msgstr "" #: adminpages/discountcodes.php:620 #: adminpages/membershiplevels.php:448 #: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:446 msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." msgstr "" @@ -1198,11 +1316,14 @@ msgstr "" #: adminpages/membershiplevels.php:454 #: adminpages/membershiplevels.php:459 #: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 msgid "Note" msgstr "Huomio" #: adminpages/membershiplevels.php:395 #: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." msgstr "" @@ -1214,6 +1335,7 @@ msgstr "" #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "" @@ -1221,6 +1343,8 @@ msgstr "" #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "" @@ -1228,6 +1352,7 @@ msgstr "" #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "" @@ -1235,6 +1360,7 @@ msgstr "" #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "" @@ -1242,6 +1368,7 @@ msgstr "" #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "" @@ -1250,6 +1377,7 @@ msgstr "" #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "Muut Asetukset" @@ -1267,16 +1395,20 @@ msgstr "Valitse piilottaaksesi tason tilaajatasosivulta ja estääksesi rekister #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "Sisältöasetukset" #: adminpages/membershiplevels.php:499 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "Kategoriat" #: adminpages/membershiplevels.php:516 #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "Tallenna taso" @@ -1303,6 +1435,11 @@ msgstr "Tallenna taso" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "Peruuta" @@ -1320,6 +1457,7 @@ msgstr "Etsi tasoja" #: adminpages/membershiplevels.php:579 #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "Vedä ja pudota tilaajatasot uudelleen järjestääksesi ne Tilaajataso sivulla." @@ -1335,23 +1473,28 @@ msgstr "Vedä ja pudota tilaajatasot uudelleen järjestääksesi ne Tilaajataso #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "Päättymispäivä" #: adminpages/membershiplevels.php:587 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "Salli rekisteröityminen" #: adminpages/membershiplevels.php:646 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "ILMAINEN" #: adminpages/membershiplevels.php:655 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "Jälkeen" @@ -1364,6 +1507,7 @@ msgstr "kopioi" #: includes/adminpages.php:53 #: includes/adminpages.php:153 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "Tilaajalista" @@ -1374,6 +1518,8 @@ msgstr "Tilaajalista" #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "Vie CSV:hen" @@ -1390,6 +1536,8 @@ msgstr "Vie CSV:hen" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "Näytä" @@ -1411,6 +1559,8 @@ msgstr "Näytä" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "Kaikki tasot" @@ -1450,6 +1600,8 @@ msgstr "Vanhat Tilaajat" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "Etsi Tilaajia" @@ -1473,6 +1625,8 @@ msgstr "%d tilaajaa löytyi." #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "Käyttäjänimi" @@ -1494,6 +1648,7 @@ msgstr "Sukunimi" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "Laskutusosoite" @@ -1562,6 +1717,7 @@ msgstr "Virhe tilauksen poistamisessa." #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "Tilaus tallennettiin onnistuneesti." @@ -1573,6 +1729,7 @@ msgstr "" #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "Tilauksen tallentamisessa tapahtui virhe" @@ -1583,6 +1740,7 @@ msgstr "Tilauksen tallentamisessa tapahtui virhe" #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "Tilaus" @@ -1590,6 +1748,7 @@ msgstr "Tilaus" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "Uusi tilaus" @@ -1597,6 +1756,7 @@ msgstr "Uusi tilaus" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "Satunnaisesti luotu sinulle." @@ -1604,6 +1764,7 @@ msgstr "Satunnaisesti luotu sinulle." #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "Käyttäjän ID" @@ -1612,6 +1773,8 @@ msgstr "Käyttäjän ID" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "Tilaajatason ID" @@ -1620,6 +1783,7 @@ msgstr "Tilaajatason ID" #: includes/privacy.php:245 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "Laskutuksen Nimi" @@ -1628,6 +1792,7 @@ msgstr "Laskutuksen Nimi" #: includes/privacy.php:249 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "Laskutuksen Osoite" @@ -1637,6 +1802,7 @@ msgstr "Laskutuksen Osoite" #: includes/privacy.php:358 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "Laskutuksen Kaupunki" @@ -1645,6 +1811,7 @@ msgstr "Laskutuksen Kaupunki" #: includes/privacy.php:257 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "Laskutuksen Maakunta" @@ -1655,6 +1822,7 @@ msgstr "Laskutuksen Maakunta" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "Laskutuksen Postinumero" @@ -1665,6 +1833,7 @@ msgstr "Laskutuksen Postinumero" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "Laskutuksen Maa" @@ -1674,6 +1843,7 @@ msgstr "Laskutuksen Maa" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "Laskutuksen Puhelinnumero" @@ -1683,6 +1853,7 @@ msgstr "Laskutuksen Puhelinnumero" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "Välisumma" @@ -1696,6 +1867,8 @@ msgstr "Välisumma" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "Vero" @@ -1705,6 +1878,7 @@ msgstr "Vero" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "Alennuskuponki" @@ -1726,6 +1900,9 @@ msgstr "Alennuskuponki" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "Yhteensä" @@ -1739,6 +1916,7 @@ msgstr "Pitäisi olla Välisumma + verot - alennuskuponki." #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "Maksutyyppi" @@ -1747,6 +1925,7 @@ msgstr "Maksutyyppi" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "kuten. PayPal Express, PayPal Standard, Luottokortti." @@ -1769,6 +1948,9 @@ msgstr "kuten. PayPal Express, PayPal Standard, Luottokortti." #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "Korttityyppi" @@ -1777,6 +1959,7 @@ msgstr "Korttityyppi" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "kuten. Visa, MasterCard, jne" @@ -1788,6 +1971,8 @@ msgstr "kuten. Visa, MasterCard, jne" #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "Tilinumero" @@ -1795,6 +1980,7 @@ msgstr "Tilinumero" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "Piilotettuna, paitsi 4 viimeistä numeroa." @@ -1806,6 +1992,7 @@ msgstr "Piilotettuna, paitsi 4 viimeistä numeroa." #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "Vanhentumiskuukausi" @@ -1838,6 +2025,10 @@ msgstr "Vanhentumisvuosi" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "Tila" @@ -1853,6 +2044,9 @@ msgstr "Tila" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "Maksuväylä" @@ -1864,6 +2058,8 @@ msgstr "Maksuväylä" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "Maksuväylän Ympäristö" @@ -1878,6 +2074,9 @@ msgstr "Maksuväylän Ympäristö" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "Sandbox / Testaus" @@ -1892,6 +2091,9 @@ msgstr "Sandbox / Testaus" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "Live/Tuotanto" @@ -1900,6 +2102,7 @@ msgstr "Live/Tuotanto" #: includes/privacy.php:321 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "Maksu transaktion ID" @@ -1907,6 +2110,7 @@ msgstr "Maksu transaktion ID" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "Maksuväylän generoima. Hyödyllinen tekemään ristikkäisiä viittauksia tilauksien välillä." @@ -1917,6 +2121,8 @@ msgstr "Maksuväylän generoima. Hyödyllinen tekemään ristikkäisiä viittauk #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "" @@ -1925,6 +2131,7 @@ msgstr "" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "" @@ -1947,6 +2154,9 @@ msgstr "" #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:492 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "Päiväys" @@ -1955,6 +2165,7 @@ msgstr "Päiväys" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "" @@ -1963,6 +2174,7 @@ msgstr "" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "" @@ -1971,6 +2183,7 @@ msgstr "" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "Muistiinpanot" @@ -1979,6 +2192,7 @@ msgstr "Muistiinpanot" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "Tallenna Tilaus" @@ -1997,6 +2211,8 @@ msgstr "Tallenna Tilaus" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "Tilaukset" @@ -2005,6 +2221,7 @@ msgstr "Tilaukset" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "Lisää Uusi Tilaus" @@ -2020,6 +2237,7 @@ msgstr "" #: adminpages/orders.php:1014 #: includes/metaboxes.php:19 #: adminpages/orders.php:1015 +#: adminpages/orders.php:1103 msgid "All" msgstr "Kaikki" @@ -2028,6 +2246,7 @@ msgstr "Kaikki" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "Ajanjakson sisällä" @@ -2036,6 +2255,7 @@ msgstr "Ajanjakson sisällä" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "Määritelty ajanjakso" @@ -2044,6 +2264,7 @@ msgstr "Määritelty ajanjakso" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "" @@ -2052,6 +2273,7 @@ msgstr "" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "" @@ -2085,6 +2307,8 @@ msgstr "" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "Etsi tilauksista" @@ -2093,6 +2317,8 @@ msgstr "Etsi tilauksista" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "%d tilausta löytyi." @@ -2108,6 +2334,7 @@ msgstr "%d tilausta löytyi." #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "Käyttäjä" @@ -2132,6 +2359,8 @@ msgstr "Käyttäjä" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "Tilaajataso" @@ -2145,6 +2374,7 @@ msgstr "Tilaajataso" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "Maksu" @@ -2153,6 +2383,7 @@ msgstr "Maksu" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "Maksutapahtumat" @@ -2172,6 +2403,8 @@ msgstr "Maksutapahtumat" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "poistettu" @@ -2180,6 +2413,7 @@ msgstr "poistettu" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "Tilaus" @@ -2189,6 +2423,7 @@ msgstr "Tilaus" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "Tilauksien poistaminen on lopullista ja saattaa vaikuttaa aktiivisiin käyttäjiin. Haluatko varmasti poistaa tilauksen %s?" @@ -2202,6 +2437,7 @@ msgstr "Tilauksien poistaminen on lopullista ja saattaa vaikuttaa aktiivisiin k #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "Tilauksia ei löytynyt." @@ -2263,6 +2499,7 @@ msgstr "" #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "" @@ -2270,6 +2507,7 @@ msgstr "" #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "" @@ -2277,6 +2515,7 @@ msgstr "" #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "klikkaa tästä generoidaksesi ne" @@ -2284,6 +2523,7 @@ msgstr "klikkaa tästä generoidaksesi ne" #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "Käyttäjätilisivu" @@ -2316,6 +2556,14 @@ msgstr "Käyttäjätilisivu" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "Valitse yksi" @@ -2354,6 +2602,16 @@ msgstr "Valitse yksi" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "muokkaa sivua" @@ -2391,6 +2649,16 @@ msgstr "muokkaa sivua" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:246 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "näytä sivu" @@ -2420,6 +2688,13 @@ msgstr "näytä sivu" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:248 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "\t" @@ -2427,6 +2702,7 @@ msgstr "\t" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "Laskutustietosivu" @@ -2434,6 +2710,7 @@ msgstr "Laskutustietosivu" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "Peruutussivu" @@ -2441,6 +2718,7 @@ msgstr "Peruutussivu" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "Maksusivu" @@ -2448,6 +2726,7 @@ msgstr "Maksusivu" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "Vahvistussivu" @@ -2455,6 +2734,7 @@ msgstr "Vahvistussivu" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "Ostoskorisivu" @@ -2462,6 +2742,7 @@ msgstr "Ostoskorisivu" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "Tilaajatasosivu" @@ -2476,6 +2757,7 @@ msgstr "Maksuasetuksesi on päivitetty." #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "Maksuväylä" @@ -2483,6 +2765,7 @@ msgstr "Maksuväylä" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "SSL-asetukset" @@ -2493,24 +2776,28 @@ msgstr "" #: adminpages/paymentsettings.php:153 #: adminpages/paymentsettings.php:199 #: adminpages/paymentsettings.php:206 +#: adminpages/paymentsettings.php:204 msgid "Currency" msgstr "Valuutta" #: adminpages/paymentsettings.php:169 #: adminpages/paymentsettings.php:215 #: adminpages/paymentsettings.php:222 +#: adminpages/paymentsettings.php:220 msgid "Not all currencies will be supported by every gateway. Please check with your gateway." msgstr "" #: adminpages/paymentsettings.php:174 #: adminpages/paymentsettings.php:220 #: adminpages/paymentsettings.php:227 +#: adminpages/paymentsettings.php:225 msgid "Accepted Credit Card Types" msgstr "" #: adminpages/paymentsettings.php:188 #: adminpages/paymentsettings.php:234 #: adminpages/paymentsettings.php:241 +#: adminpages/paymentsettings.php:239 msgid "Sales Tax" msgstr "ALV" @@ -2520,24 +2807,28 @@ msgstr "ALV" #: pages/billing.php:179 #: adminpages/paymentsettings.php:241 #: pages/billing.php:181 +#: adminpages/paymentsettings.php:239 msgid "optional" msgstr "vapaavalintainen" #: adminpages/paymentsettings.php:191 #: adminpages/paymentsettings.php:237 #: adminpages/paymentsettings.php:244 +#: adminpages/paymentsettings.php:242 msgid "Tax State" msgstr "Veroalue (ei merkitystä Suomessa)" #: adminpages/paymentsettings.php:192 #: adminpages/paymentsettings.php:238 #: adminpages/paymentsettings.php:245 +#: adminpages/paymentsettings.php:243 msgid "abbreviation, e.g. \"PA\"" msgstr "" #: adminpages/paymentsettings.php:194 #: adminpages/paymentsettings.php:240 #: adminpages/paymentsettings.php:247 +#: adminpages/paymentsettings.php:245 msgid "decimal, e.g. \"0.06\"" msgstr "desimaaliluku, esim \"0.24\"" @@ -2548,30 +2839,35 @@ msgstr "" #: adminpages/paymentsettings.php:206 #: adminpages/paymentsettings.php:253 #: adminpages/paymentsettings.php:266 +#: adminpages/paymentsettings.php:264 msgid "Force SSL" msgstr "Pakota SSL" #: adminpages/paymentsettings.php:212 #: adminpages/paymentsettings.php:268 #: adminpages/paymentsettings.php:281 +#: adminpages/paymentsettings.php:279 msgid "Yes (with JavaScript redirects)" msgstr "Kyllä (javascript uudelleenohjauksilla)" #: adminpages/paymentsettings.php:219 #: adminpages/paymentsettings.php:278 #: adminpages/paymentsettings.php:291 +#: adminpages/paymentsettings.php:289 msgid "SSL Seal Code" msgstr "SSL Varmenteen kuvake" #: adminpages/paymentsettings.php:228 #: adminpages/paymentsettings.php:287 #: adminpages/paymentsettings.php:306 +#: adminpages/paymentsettings.php:304 msgid "Extra HTTPS URL Filter" msgstr "" #: adminpages/paymentsettings.php:231 #: adminpages/paymentsettings.php:290 #: adminpages/paymentsettings.php:309 +#: adminpages/paymentsettings.php:307 msgid "Pass all generated HTML through a URL filter to add HTTPS to URLs used on secure pages. Check this if you are using SSL and have warnings on your checkout pages." msgstr "" @@ -2647,6 +2943,7 @@ msgstr "Raportti käynneistä, Katseluista ja kirjautumisista" #: adminpages/reports/login.php:67 #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "Näytä" @@ -2656,11 +2953,13 @@ msgstr "Näytä" #: classes/class-pmpro-members-list-table.php:234 #: classes/class-pmpro-members-list-table.php:233 #: adminpages/reports/login.php:105 +#: adminpages/reports/login.php:111 msgid "All Users" msgstr "Kaikki Käyttäjät" #: adminpages/reports/login.php:83 #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "Etsi" @@ -2707,6 +3006,7 @@ msgstr "Rekisteröitymiset" #: adminpages/reports/memberships.php:52 #: adminpages/reports/sales.php:53 #: adminpages/reports/sales.php:542 +#: adminpages/reports/sales.php:543 msgid "All Time" msgstr "Kaikkiaan" @@ -2718,6 +3018,7 @@ msgstr "Kaikkiaan" #: adminpages/orders.php:1081 #: adminpages/orders.php:1073 #: adminpages/orders.php:1074 +#: adminpages/orders.php:1162 msgid "This Year" msgstr "Tänä vuonna" @@ -2730,6 +3031,7 @@ msgstr "Tänä vuonna" #: adminpages/orders.php:1077 #: adminpages/orders.php:1069 #: adminpages/orders.php:1070 +#: adminpages/orders.php:1158 msgid "This Month" msgstr "Tässä kuussa" @@ -2774,6 +3076,8 @@ msgstr "Näytä" #: adminpages/reports/sales.php:295 #: adminpages/advancedsettings.php:322 #: adminpages/reports/sales.php:313 +#: adminpages/advancedsettings.php:329 +#: adminpages/reports/memberships.php:332 msgid "Daily" msgstr "Päivittäinen" @@ -2784,6 +3088,8 @@ msgstr "Päivittäinen" #: adminpages/reports/sales.php:296 #: adminpages/advancedsettings.php:328 #: adminpages/reports/sales.php:314 +#: adminpages/advancedsettings.php:335 +#: adminpages/reports/memberships.php:333 msgid "Monthly" msgstr "Kuukausittain" @@ -2792,11 +3098,13 @@ msgstr "Kuukausittain" #: adminpages/reports/memberships.php:335 #: adminpages/reports/sales.php:297 #: adminpages/reports/sales.php:315 +#: adminpages/reports/memberships.php:334 msgid "Annual" msgstr "Vuosittain" #: adminpages/reports/memberships.php:299 #: adminpages/reports/memberships.php:339 +#: adminpages/reports/memberships.php:338 msgid "Signups vs. Cancellations" msgstr "Rekisteröitymiset vs. Peruutukset" @@ -2844,6 +3152,7 @@ msgstr "" #: classes/class.memberorder.php:644 #: classes/class.memberorder.php:959 #: classes/class.memberorder.php:1001 +#: classes/class.memberorder.php:1010 #, php-format msgid "There was an error canceling the subscription for user with ID=%s. You will want to check your payment gateway to see if their subscription is still active." msgstr "" @@ -2871,6 +3180,7 @@ msgstr "" #: classes/class.pmproemail.php:187 #: classes/class.pmproemail.php:269 #: classes/class.pmproemail.php:262 +#: classes/class.pmproemail.php:395 #, php-format msgid "Your membership confirmation for %s" msgstr "" @@ -2928,6 +3238,18 @@ msgstr "" #: classes/class.pmproemail.php:764 #: adminpages/orders.php:576 #: adminpages/orders.php:1343 +#: adminpages/orders.php:697 +#: adminpages/orders.php:1437 +#: classes/class.pmproemail.php:465 +#: classes/class.pmproemail.php:471 +#: classes/class.pmproemail.php:477 +#: classes/class.pmproemail.php:567 +#: classes/class.pmproemail.php:573 +#: classes/class.pmproemail.php:895 +#: classes/class.pmproemail.php:897 +#: classes/gateways/class.pmprogateway_braintree.php:516 +#: classes/gateways/class.pmprogateway_stripe.php:906 +#: includes/profile.php:454 msgid "Discount Code" msgstr "Alennuskoodi" @@ -2955,6 +3277,11 @@ msgstr "Alennuskoodi" #: classes/class.pmproemail.php:771 #: classes/class.pmproemail.php:905 #: classes/class.pmproemail.php:950 +#: classes/class.pmproemail.php:485 +#: classes/class.pmproemail.php:583 +#: classes/class.pmproemail.php:904 +#: classes/class.pmproemail.php:1038 +#: classes/class.pmproemail.php:1083 #, php-format msgid "This membership will expire on %s." msgstr "" @@ -2998,6 +3325,7 @@ msgstr "" #: classes/class.pmproemail.php:794 #: classes/class.pmproemail.php:806 #: classes/class.pmproemail.php:799 +#: classes/class.pmproemail.php:932 #, php-format msgid "Your trial at %s is ending soon" msgstr "" @@ -3006,6 +3334,7 @@ msgstr "" #: classes/class.pmproemail.php:831 #: classes/class.pmproemail.php:843 #: classes/class.pmproemail.php:836 +#: classes/class.pmproemail.php:969 #, php-format msgid "Your membership at %s has ended" msgstr "" @@ -3014,6 +3343,7 @@ msgstr "" #: classes/class.pmproemail.php:858 #: classes/class.pmproemail.php:870 #: classes/class.pmproemail.php:863 +#: classes/class.pmproemail.php:996 #, php-format msgid "Your membership at %s will end soon" msgstr "" @@ -3022,6 +3352,7 @@ msgstr "" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:900 #: classes/class.pmproemail.php:893 +#: classes/class.pmproemail.php:1026 #, php-format msgid "Your membership at %s has been changed" msgstr "" @@ -3051,6 +3382,7 @@ msgstr "" #: classes/class.pmproemail.php:933 #: classes/class.pmproemail.php:945 #: classes/class.pmproemail.php:938 +#: classes/class.pmproemail.php:1071 #, php-format msgid "Membership for %s at %s has been changed" msgstr "" @@ -3119,6 +3451,7 @@ msgstr "" #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:167 +#: paid-memberships-pro.php:173 msgid "Authorize.net" msgstr "" @@ -3160,11 +3493,14 @@ msgstr "" #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:167 #: paid-memberships-pro.php:168 +#: classes/gateways/class.pmprogateway_braintree.php:258 +#: paid-memberships-pro.php:174 msgid "Braintree Payments" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:132 #: classes/gateways/class.pmprogateway_braintree.php:308 +#: classes/gateways/class.pmprogateway_braintree.php:315 msgid "Braintree Settings" msgstr "" @@ -3172,32 +3508,38 @@ msgstr "" #: classes/gateways/class.pmprogateway_cybersource.php:106 #: classes/gateways/class.pmprogateway_braintree.php:313 #: classes/gateways/class.pmprogateway_cybersource.php:94 +#: classes/gateways/class.pmprogateway_braintree.php:320 msgid "Merchant ID" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:145 #: classes/gateways/class.pmprogateway_braintree.php:321 +#: classes/gateways/class.pmprogateway_braintree.php:328 msgid "Public Key" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:153 #: classes/gateways/class.pmprogateway_braintree.php:329 +#: classes/gateways/class.pmprogateway_braintree.php:336 msgid "Private Key" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:161 #: classes/gateways/class.pmprogateway_braintree.php:337 +#: classes/gateways/class.pmprogateway_braintree.php:344 msgid "Client-Side Encryption Key" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:169 #: classes/gateways/class.pmprogateway_stripe.php:182 #: classes/gateways/class.pmprogateway_braintree.php:345 +#: classes/gateways/class.pmprogateway_braintree.php:352 msgid "Web Hook URL" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:173 #: classes/gateways/class.pmprogateway_braintree.php:348 +#: classes/gateways/class.pmprogateway_braintree.php:355 msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to" msgstr "" @@ -3211,6 +3553,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1283 #: classes/gateways/class.pmprogateway_stripe.php:1289 #: classes/gateways/class.pmprogateway_stripe.php:748 +#: classes/gateways/class.pmprogateway_braintree.php:462 +#: classes/gateways/class.pmprogateway_stripe.php:856 #, php-format msgid "We Accept %s" msgstr "Maksuvälineenä käyvät %s" @@ -3225,6 +3569,9 @@ msgstr "Maksuvälineenä käyvät %s" #: classes/gateways/class.pmprogateway_stripe.php:1282 #: classes/gateways/class.pmprogateway_stripe.php:1288 #: classes/gateways/class.pmprogateway_stripe.php:747 +#: adminpages/orders.php:676 +#: classes/gateways/class.pmprogateway_braintree.php:461 +#: classes/gateways/class.pmprogateway_stripe.php:855 msgid "Payment Information" msgstr "Maksutiedot" @@ -3241,6 +3588,8 @@ msgstr "Maksutiedot" #: classes/gateways/class.pmprogateway_stripe.php:1322 #: classes/gateways/class.pmprogateway_stripe.php:781 #: pages/billing.php:377 +#: classes/gateways/class.pmprogateway_braintree.php:482 +#: classes/gateways/class.pmprogateway_stripe.php:889 msgid "Card Number" msgstr "Kortin numero" @@ -3272,42 +3621,50 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1338 #: classes/gateways/class.pmprogateway_stripe.php:1344 #: classes/gateways/class.pmprogateway_stripe.php:803 +#: classes/gateways/class.pmprogateway_braintree.php:518 +#: classes/gateways/class.pmprogateway_stripe.php:911 msgid "Apply" msgstr "Käytä" #: classes/gateways/class.pmprogateway_braintree.php:419 #: classes/gateways/class.pmprogateway_stripe.php:1026 #: classes/gateways/class.pmprogateway_braintree.php:574 +#: classes/gateways/class.pmprogateway_braintree.php:581 msgid "Unknown error: Initial payment failed." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:478 #: classes/gateways/class.pmprogateway_braintree.php:650 #: classes/gateways/class.pmprogateway_braintree.php:653 +#: classes/gateways/class.pmprogateway_braintree.php:660 msgid "Error during settlement:" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:487 #: classes/gateways/class.pmprogateway_braintree.php:659 #: classes/gateways/class.pmprogateway_braintree.php:662 +#: classes/gateways/class.pmprogateway_braintree.php:669 msgid "Error during charge:" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:579 #: classes/gateways/class.pmprogateway_braintree.php:762 #: classes/gateways/class.pmprogateway_braintree.php:765 +#: classes/gateways/class.pmprogateway_braintree.php:772 msgid "Failed to update customer." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:627 #: classes/gateways/class.pmprogateway_braintree.php:810 #: classes/gateways/class.pmprogateway_braintree.php:813 +#: classes/gateways/class.pmprogateway_braintree.php:820 msgid "Failed to create customer." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:634 #: classes/gateways/class.pmprogateway_braintree.php:817 #: classes/gateways/class.pmprogateway_braintree.php:820 +#: classes/gateways/class.pmprogateway_braintree.php:827 msgid "Error creating customer record with Braintree:" msgstr "" @@ -3324,6 +3681,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:807 #: classes/gateways/class.pmprogateway_braintree.php:1036 #: classes/gateways/class.pmprogateway_braintree.php:1039 +#: classes/gateways/class.pmprogateway_braintree.php:1046 msgid "Could not find the subscription." msgstr "" @@ -3333,6 +3691,7 @@ msgstr "" #: paid-memberships-pro.php:158 #: paid-memberships-pro.php:160 #: paid-memberships-pro.php:161 +#: paid-memberships-pro.php:167 msgid "Pay by Check" msgstr "Shekkimaksu" @@ -3420,6 +3779,7 @@ msgstr "" #: paid-memberships-pro.php:161 #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:164 +#: paid-memberships-pro.php:170 msgid "PayPal Website Payments Pro" msgstr "" @@ -3430,6 +3790,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:141 #: classes/gateways/class.pmprogateway_paypalstandard.php:133 #: classes/gateways/class.pmprogateway_paypalexpress.php:151 +#: classes/gateways/class.pmprogateway_paypalexpress.php:152 msgid "PayPal Settings" msgstr "" @@ -3446,6 +3807,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:162 #: classes/gateways/class.pmprogateway_paypalstandard.php:154 #: classes/gateways/class.pmprogateway_paypalexpress.php:172 +#: classes/gateways/class.pmprogateway_paypalexpress.php:173 msgid "Gateway Account Email" msgstr "" @@ -3458,6 +3820,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalstandard.php:162 #: classes/gateways/class.pmprogateway_twocheckout.php:120 #: classes/gateways/class.pmprogateway_paypalexpress.php:180 +#: classes/gateways/class.pmprogateway_paypalexpress.php:181 +#: classes/gateways/class.pmprogateway_twocheckout.php:127 msgid "API Username" msgstr "" @@ -3470,6 +3834,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalstandard.php:170 #: classes/gateways/class.pmprogateway_twocheckout.php:129 #: classes/gateways/class.pmprogateway_paypalexpress.php:188 +#: classes/gateways/class.pmprogateway_paypalexpress.php:189 +#: classes/gateways/class.pmprogateway_twocheckout.php:136 msgid "API Password" msgstr "" @@ -3480,6 +3846,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:186 #: classes/gateways/class.pmprogateway_paypalstandard.php:178 #: classes/gateways/class.pmprogateway_paypalexpress.php:196 +#: classes/gateways/class.pmprogateway_paypalexpress.php:197 msgid "API Signature" msgstr "" @@ -3490,6 +3857,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:205 #: classes/gateways/class.pmprogateway_paypalstandard.php:186 #: classes/gateways/class.pmprogateway_paypalexpress.php:215 +#: classes/gateways/class.pmprogateway_paypalexpress.php:216 msgid "IPN Handler URL" msgstr "" @@ -3507,6 +3875,7 @@ msgstr "" #: pages/checkout.php:218 #: classes/gateways/class.pmprogateway_paypalexpress.php:498 #: classes/gateways/class.pmprogateway_paypalexpress.php:502 +#: classes/gateways/class.pmprogateway_paypalexpress.php:503 msgid "Check Out with PayPal" msgstr "" @@ -3521,6 +3890,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:503 #: classes/gateways/class.pmprogateway_paypalexpress.php:507 #: pages/checkout.php:538 +#: classes/gateways/class.pmprogateway_paypalexpress.php:508 msgid "Submit and Check Out" msgstr "" @@ -3537,6 +3907,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:503 #: classes/gateways/class.pmprogateway_paypalexpress.php:507 #: pages/checkout.php:538 +#: classes/gateways/class.pmprogateway_paypalexpress.php:508 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Submit and Confirm" msgstr "" @@ -3551,6 +3923,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:854 #: classes/gateways/class.pmprogateway_paypal.php:726 #: classes/gateways/class.pmprogateway_paypalexpress.php:865 +#: classes/gateways/class.pmprogateway_paypalexpress.php:866 msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward." msgstr "" @@ -3561,6 +3934,8 @@ msgstr "" #: paid-memberships-pro.php:162 #: classes/gateways/class.pmprogateway_paypalexpress.php:94 #: paid-memberships-pro.php:163 +#: classes/gateways/class.pmprogateway_paypalexpress.php:95 +#: paid-memberships-pro.php:169 msgid "PayPal Express" msgstr "" @@ -3568,6 +3943,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:199 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 #: classes/gateways/class.pmprogateway_paypalexpress.php:218 +#: classes/gateways/class.pmprogateway_paypalexpress.php:219 msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to " msgstr "" @@ -3577,6 +3953,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:401 #: classes/gateways/class.pmprogateway_paypalexpress.php:352 #: classes/gateways/class.pmprogateway_paypalexpress.php:411 +#: classes/gateways/class.pmprogateway_paypalexpress.php:353 +#: classes/gateways/class.pmprogateway_paypalexpress.php:412 msgid "The PayPal Token was lost." msgstr "" @@ -3586,6 +3964,7 @@ msgstr "" #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:166 +#: paid-memberships-pro.php:172 msgid "PayPal Standard" msgstr "" @@ -3602,6 +3981,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:258 #: classes/gateways/class.pmprogateway_stripe.php:216 #: paid-memberships-pro.php:162 +#: classes/gateways/class.pmprogateway_stripe.php:234 +#: paid-memberships-pro.php:168 msgid "Stripe" msgstr "" @@ -3615,6 +3996,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:570 #: classes/gateways/class.pmprogateway_stripe.php:576 #: classes/gateways/class.pmprogateway_stripe.php:340 +#: classes/gateways/class.pmprogateway_stripe.php:366 msgid "Secret Key" msgstr "" @@ -3624,6 +4006,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:554 #: classes/gateways/class.pmprogateway_stripe.php:560 #: classes/gateways/class.pmprogateway_stripe.php:324 +#: classes/gateways/class.pmprogateway_stripe.php:350 msgid "Publishable Key" msgstr "" @@ -3633,6 +4016,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:629 #: classes/gateways/class.pmprogateway_stripe.php:635 #: classes/gateways/class.pmprogateway_stripe.php:399 +#: adminpages/orders.php:570 +#: classes/gateways/class.pmprogateway_stripe.php:425 msgid "Show Billing Address Fields" msgstr "" @@ -3642,6 +4027,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:638 #: classes/gateways/class.pmprogateway_stripe.php:644 #: classes/gateways/class.pmprogateway_stripe.php:408 +#: classes/gateways/class.pmprogateway_stripe.php:434 msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.
If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "" @@ -3658,6 +4044,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "" @@ -3690,6 +4077,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2653 #: classes/gateways/class.pmprogateway_stripe.php:2649 #: pages/billing.php:441 +#: classes/gateways/class.pmprogateway_stripe.php:3106 msgid "Update" msgstr "Päivitä" @@ -3702,6 +4090,7 @@ msgstr "Päivitä" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "" @@ -3739,6 +4128,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "" @@ -3759,6 +4150,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "" @@ -3769,6 +4162,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "" @@ -3779,27 +4173,32 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:60 #: paid-memberships-pro.php:125 #: classes/gateways/class.pmprogateway_twocheckout.php:59 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:116 #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:125 #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:134 #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "" @@ -3813,31 +4212,37 @@ msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:152 #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:157 #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:161 #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:166 #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:169 #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:214 #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "" @@ -4255,6 +4660,7 @@ msgstr "ja" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "Rekisteröidy !!name!!ksi nyt" @@ -4277,6 +4683,9 @@ msgstr "" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "Ei mitään" @@ -4353,6 +4762,8 @@ msgstr "Nykyinen tilaajataso" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "" @@ -4420,6 +4831,9 @@ msgstr "uloskirjaus" #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "Taso" @@ -4463,6 +4877,7 @@ msgstr "" #: includes/profile.php:759 #: includes/profile.php:755 #: pages/billing.php:166 +#: includes/profile.php:795 msgid "First Name" msgstr "Etunimi" @@ -4474,6 +4889,7 @@ msgstr "Etunimi" #: includes/profile.php:760 #: includes/profile.php:756 #: pages/billing.php:170 +#: includes/profile.php:796 msgid "Last Name" msgstr "Sukunimi" @@ -4765,6 +5181,10 @@ msgstr "" #: adminpages/orders.php:391 #: adminpages/orders.php:1424 #: adminpages/orders.php:1434 +#: adminpages/orders.php:439 +#: adminpages/orders.php:1539 +#: adminpages/orders.php:1549 +#: includes/profile.php:473 msgid "Print" msgstr "Tulosta" @@ -4800,6 +5220,7 @@ msgstr "" #: pages/invoice.php:97 #: pages/invoice.php:125 #: includes/profile.php:413 +#: includes/profile.php:453 msgid "Total Billed" msgstr "Yhteensä laskutettu" @@ -4843,6 +5264,7 @@ msgstr "" #: includes/functions.php:2842 #: includes/functions.php:2873 #: includes/functions.php:2895 +#: includes/functions.php:2897 msgid "Subtotal" msgstr "Välisumma" @@ -4850,6 +5272,7 @@ msgstr "Välisumma" #: includes/functions.php:2857 #: includes/functions.php:2888 #: includes/functions.php:2910 +#: includes/functions.php:2912 msgid "Coupon" msgstr "" @@ -4915,6 +5338,7 @@ msgstr "" #: paid-memberships-pro.php:157 #: paid-memberships-pro.php:159 #: paid-memberships-pro.php:160 +#: paid-memberships-pro.php:166 msgid "Testing Only" msgstr "Vain Testaus" @@ -4922,6 +5346,7 @@ msgstr "Vain Testaus" #: paid-memberships-pro.php:162 #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:165 +#: paid-memberships-pro.php:171 msgid "PayPal Payflow Pro/PayPal Pro" msgstr "" @@ -4929,6 +5354,7 @@ msgstr "" #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:168 #: paid-memberships-pro.php:169 +#: paid-memberships-pro.php:175 msgid "Cybersource" msgstr "" @@ -4995,6 +5421,7 @@ msgstr "" #: classes/class.pmproemail.php:907 #: includes/email.php:459 #: classes/class.pmproemail.php:900 +#: classes/class.pmproemail.php:1033 msgid "Your membership has been cancelled." msgstr "" @@ -5156,6 +5583,7 @@ msgstr "" #: shortcodes/pmpro_account.php:45 #: includes/email-templates.php:68 #: shortcodes/pmpro_account.php:43 +#: adminpages/orders.php:1431 msgid "Billing" msgstr "Laskutus" @@ -5192,6 +5620,8 @@ msgstr "Muokkaa profiilia" #: includes/profile.php:921 #: includes/profile.php:880 #: includes/profile.php:917 +#: includes/profile.php:920 +#: includes/profile.php:957 msgid "Change Password" msgstr "Muuta salasanasi" @@ -5254,6 +5684,8 @@ msgstr "" #: adminpages/reports/sales.php:314 #: adminpages/reports/sales.php:321 #: adminpages/reports/sales.php:332 +#: adminpages/reports/memberships.php:341 +#: adminpages/reports/memberships.php:352 #~ msgid "for" #~ msgstr "/" @@ -5269,6 +5701,8 @@ msgstr "" #: includes/profile.php:515 #: includes/profile.php:511 #: adminpages/advancedsettings.php:331 +#: adminpages/advancedsettings.php:338 +#: includes/profile.php:551 #~ msgid "Never" #~ msgstr "Ei koskaan" @@ -5328,6 +5762,18 @@ msgstr "" #: js/blocks.build.js:1342 #: js/blocks.build.js:1502 #: classes/class-pmpro-admin-activity-email.php:349 +#: blocks/account-invoices-section/block.js:47 +#: blocks/account-links-section/block.js:47 +#: blocks/account-membership-section/block.js:45 +#: blocks/account-page/block.js:72 +#: blocks/account-profile-section/block.js:45 +#: blocks/billing-page/block.js:44 +#: blocks/cancel-page/block.js:44 +#: blocks/checkout-page/block.js:58 +#: blocks/confirmation-page/block.js:46 +#: blocks/invoice-page/block.js:45 +#: blocks/levels-page/block.js:44 +#: blocks/member-profile-edit/block.js:37 msgid "Paid Memberships Pro" msgstr "" @@ -5451,6 +5897,18 @@ msgstr "" #: adminpages/orders.php:913 #: adminpages/orders.php:1537 #: adminpages/orders.php:1546 +#: adminpages/orders.php:704 +#: adminpages/orders.php:996 +#: adminpages/orders.php:1689 +#: adminpages/orders.php:1698 +#: classes/class.pmproemail.php:261 +#: classes/class.pmproemail.php:327 +#: includes/profile.php:167 +#: includes/profile.php:483 +#: includes/profile.php:484 +#: includes/profile.php:556 +#: includes/profile.php:557 +#: includes/profile.php:558 msgid "N/A" msgstr "" @@ -5479,6 +5937,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:76 #: classes/gateways/class.pmprogateway_stripe.php:82 #: classes/gateways/class.pmprogateway_stripe.php:1338 +#: classes/gateways/class.pmprogateway_stripe.php:1463 msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade." msgstr "" @@ -5519,6 +5978,7 @@ msgstr "" #: includes/adminpages.php:52 #: includes/adminpages.php:158 #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Members" msgstr "" @@ -5563,41 +6023,49 @@ msgstr "" #: adminpages/advancedsettings.php:106 #: includes/updates/upgrade_1.php:7 #: adminpages/advancedsettings.php:108 +#: adminpages/advancedsettings.php:116 msgid "This content is for !!levels!! members only.
Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -5605,93 +6073,111 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -5717,6 +6203,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -5780,6 +6267,7 @@ msgstr "" #: adminpages/license.php:49 #: adminpages/dashboard.php:178 #: adminpages/license.php:41 +#: adminpages/license.php:53 msgid "Your license is invalid or expired." msgstr "" @@ -5794,6 +6282,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -5899,6 +6388,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -5937,6 +6427,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -5949,31 +6440,39 @@ msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 msgid "%d discount codes found." msgstr "" @@ -5999,6 +6498,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -6017,6 +6523,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -6034,6 +6546,11 @@ msgstr "" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "" @@ -6042,19 +6559,23 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -6095,196 +6616,246 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:960 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:156 +#: adminpages/emailtemplates.php:149 msgid "Billing Information" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:170 #: includes/privacy.php:363 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -6314,6 +6885,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "" @@ -6331,12 +6903,14 @@ msgstr "" #: adminpages/license.php:59 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -6344,14 +6918,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -6368,23 +6945,29 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" @@ -6395,6 +6978,7 @@ msgid "Are you sure you want to delete membership level %s? All subscriptions wi msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -6404,6 +6988,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -6411,6 +6997,7 @@ msgstr "" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -6418,6 +7005,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -6425,6 +7013,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -6432,6 +7021,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -6439,6 +7029,7 @@ msgstr "" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "" @@ -6446,6 +7037,7 @@ msgstr "" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "" @@ -6453,6 +7045,7 @@ msgstr "" #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "" @@ -6460,6 +7053,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -6467,6 +7061,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -6474,6 +7069,7 @@ msgstr "" #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "" @@ -6518,78 +7114,91 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -6599,6 +7208,8 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" @@ -6611,12 +7222,16 @@ msgstr "" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -6624,24 +7239,28 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "" @@ -6651,26 +7270,31 @@ msgstr "" #: adminpages/paymentsettings.php:122 #: adminpages/paymentsettings.php:127 +#: adminpages/paymentsettings.php:125 msgid "Choose a Gateway" msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" #: adminpages/paymentsettings.php:194 #: adminpages/paymentsettings.php:201 +#: adminpages/paymentsettings.php:199 msgid "Currency and Tax Settings" msgstr "" #: adminpages/paymentsettings.php:239 #: adminpages/paymentsettings.php:246 +#: adminpages/paymentsettings.php:244 msgid "Tax Rate" msgstr "" @@ -6680,11 +7304,13 @@ msgstr "" #: adminpages/paymentsettings.php:260 #: adminpages/paymentsettings.php:273 +#: adminpages/paymentsettings.php:271 msgid "Your Site URL starts with https:// and so PMPro will allow your entire site to be served over HTTPS." msgstr "" #: adminpages/paymentsettings.php:270 #: adminpages/paymentsettings.php:283 +#: adminpages/paymentsettings.php:281 msgid "Recommended: Yes. Try the JavaScript redirects setting if you are having issues with infinite redirect loops." msgstr "" @@ -6694,6 +7320,7 @@ msgstr "" #: adminpages/reports.php:19 #: adminpages/reports.php:18 +#: adminpages/reports.php:21 msgid "Back to Reports Dashboard" msgstr "" @@ -6721,6 +7348,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -6731,6 +7359,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -6789,35 +7418,42 @@ msgid "All Cancellations" msgstr "" #: adminpages/reports/memberships.php:338 +#: adminpages/reports/memberships.php:337 msgid "Signups vs. All Cancellations" msgstr "" #: adminpages/reports/memberships.php:340 +#: adminpages/reports/memberships.php:339 msgid "Signups vs. Expirations" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/memberships.php:385 #: adminpages/reports/sales.php:342 #: adminpages/reports/sales.php:360 +#: adminpages/reports/memberships.php:384 msgid "Generate Report" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -7010,63 +7646,77 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:962 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:463 #: classes/class.pmproemail.php:475 #: classes/class.pmproemail.php:468 +#: classes/class.pmproemail.php:601 msgid "Your billing information has been updated at %s" msgstr "" #: classes/class.pmproemail.php:513 #: classes/class.pmproemail.php:525 #: classes/class.pmproemail.php:518 +#: classes/class.pmproemail.php:651 msgid "Billing information has been updated for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -7079,6 +7729,8 @@ msgstr "" #: includes/email.php:465 #: classes/class.pmproemail.php:898 #: classes/class.pmproemail.php:943 +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 msgid "The new level is %s." msgstr "" @@ -7091,30 +7743,36 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -7126,20 +7784,24 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:91 #: classes/gateways/class.pmprogateway_stripe.php:97 #: classes/gateways/class.pmprogateway_stripe.php:1353 +#: classes/gateways/class.pmprogateway_stripe.php:1478 msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:503 #: pages/billing.php:410 #: pages/billing.php:417 +#: classes/gateways/class.pmprogateway_braintree.php:510 msgid "CVV" msgstr "" @@ -7147,6 +7809,7 @@ msgstr "" #: pages/billing.php:411 #: pages/checkout.php:425 #: pages/billing.php:418 +#: classes/gateways/class.pmprogateway_braintree.php:511 msgid "what's this?" msgstr "" @@ -7160,21 +7823,30 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:750 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -7182,11 +7854,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -7464,17 +8139,20 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:185 #: classes/gateways/class.pmprogateway_paypalexpress.php:194 #: classes/gateways/class.pmprogateway_paypalexpress.php:204 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 msgid "Confirmation Step" msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -7483,6 +8161,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -7491,6 +8170,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -7506,6 +8186,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -7514,6 +8195,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -7525,6 +8207,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -7536,6 +8219,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -7547,6 +8231,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -7555,6 +8240,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -7566,6 +8252,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -7577,6 +8264,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -7585,6 +8273,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -7596,6 +8285,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -7604,6 +8294,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -7627,6 +8318,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -7643,6 +8336,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -7651,6 +8346,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -7659,6 +8355,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -7667,6 +8364,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -7674,6 +8372,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -7682,6 +8381,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -7695,6 +8395,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -7703,6 +8405,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -7711,6 +8414,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -7720,6 +8424,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -7737,6 +8443,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -7745,6 +8453,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -7766,6 +8475,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -7774,6 +8485,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -7782,6 +8494,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -7790,6 +8503,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -7798,6 +8512,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -7806,6 +8521,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -7814,6 +8530,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -7822,6 +8539,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -7830,6 +8548,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -7838,6 +8557,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -7846,6 +8566,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -7858,6 +8579,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -7866,6 +8588,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -7874,6 +8597,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -7882,6 +8606,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -7890,6 +8615,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -7935,6 +8661,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "" @@ -7952,6 +8680,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "" @@ -7963,6 +8693,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 msgid "Error: Unkown error while refunding charge #%s" msgstr "" @@ -7972,6 +8703,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -7992,6 +8724,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -8000,6 +8736,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -8009,6 +8746,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -8018,6 +8756,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -8029,6 +8768,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -8040,6 +8780,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -8051,6 +8792,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -8062,6 +8804,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" @@ -8100,6 +8843,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -8112,6 +8856,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -8124,6 +8869,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -9922,14 +10668,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -9938,18 +10687,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -9961,6 +10714,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -10093,6 +10847,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -10206,6 +10961,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -10213,6 +10969,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -10244,6 +11001,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -10253,6 +11011,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -10260,6 +11019,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -10364,6 +11124,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -10371,6 +11133,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -10378,6 +11141,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -10385,6 +11149,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -10456,126 +11221,148 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -10587,6 +11374,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -10695,12 +11485,14 @@ msgstr "" #: pages/confirmation.php:138 #: shortcodes/pmpro_account.php:247 +#: pages/confirmation.php:65 msgid "Pending" msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -10726,6 +11518,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -10764,6 +11557,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -10779,6 +11587,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -10794,6 +11603,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -10826,6 +11636,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -10838,6 +11649,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -10863,11 +11675,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -10875,6 +11692,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -10882,6 +11700,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -10904,6 +11723,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -10929,6 +11749,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -10936,6 +11757,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -10968,6 +11790,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -10990,6 +11813,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -11000,11 +11824,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -11024,6 +11859,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -11037,6 +11873,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -11046,6 +11883,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -11055,10 +11893,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -11069,6 +11909,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -11076,6 +11917,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -11085,6 +11927,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -11094,12 +11937,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -11107,6 +11953,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -11115,6 +11963,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -11122,6 +11971,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -11129,27 +11979,32 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: paid-memberships-pro.php:194 #: paid-memberships-pro.php:195 +#: paid-memberships-pro.php:201 msgid "Once a month" msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -11207,12 +12062,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -11222,6 +12079,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -11231,6 +12089,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -11240,54 +12099,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -11298,42 +12167,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -11348,51 +12227,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -11400,6 +12291,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -11407,6 +12299,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -11414,6 +12307,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -11422,6 +12316,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -11435,6 +12331,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -11455,19 +12352,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -11477,31 +12378,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -11531,21 +12440,25 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" @@ -11615,26 +12528,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -11643,41 +12562,50 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -11691,19 +12619,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -11734,3 +12666,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-fr_FR.mo b/languages/paid-memberships-pro-fr_FR.mo index bd1192642..2d43dc0d3 100755 Binary files a/languages/paid-memberships-pro-fr_FR.mo and b/languages/paid-memberships-pro-fr_FR.mo differ diff --git a/languages/paid-memberships-pro-fr_FR.po b/languages/paid-memberships-pro-fr_FR.po index 84c0f433b..a8be5d859 100755 --- a/languages/paid-memberships-pro-fr_FR.po +++ b/languages/paid-memberships-pro-fr_FR.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:20:48+00:00\n" +"POT-Creation-Date: 2022-05-05T20:37:31+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -185,6 +185,11 @@ msgstr "Passerelle de paiement et SSL" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "Courriel" @@ -206,6 +211,7 @@ msgstr "Compléments" #: adminpages/advancedsettings.php:43 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "Vos réglages avancés ont été mis à jour." @@ -223,6 +229,7 @@ msgstr "Veuillez vous connecter pour voir ce contenu. (total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "Le nombre total de cycles de paiement récurrents pour ce niveau, y compris la période d'essai (le cas échéant), mais non compris le paiement initial. Mettre à zéro si l'adhésion est sans limite de temps." @@ -838,6 +922,8 @@ msgstr "Le nombre total de cycles de paiement récurrents pour #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "Essai personnalisé" @@ -846,6 +932,8 @@ msgstr "Essai personnalisé" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "Cochez pour ajouter une période d'essai personnalisé." @@ -854,6 +942,7 @@ msgstr "Cochez pour ajouter une période d'essai personnalisé." #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "Montant pour l'essai personnalisé" @@ -862,6 +951,7 @@ msgstr "Montant pour l'essai personnalisé" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "pour la première" @@ -870,6 +960,7 @@ msgstr "pour la première" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "paiements d'abonnement" @@ -878,6 +969,7 @@ msgstr "paiements d'abonnement" #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "Expiration de l'adhésion" @@ -886,6 +978,7 @@ msgstr "Expiration de l'adhésion" #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "Cochez cette case pour définir quand le niveau d'adhésion expire." @@ -895,6 +988,8 @@ msgstr "Cochez cette case pour définir quand le niveau d'adhésion expire." #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "Expire en" @@ -903,18 +998,22 @@ msgstr "Expire en" #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "Réglez la durée du niveau d'adhésion. Notez que les tous les paiements futurs (abonnement récurrent, le cas échéant) seront annulés lorsque l'abonnement expirera." #: adminpages/discountcodes.php:557 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "Codes de réduction sur les adhésions" #: adminpages/discountcodes.php:567 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "Rechercher parmi les codes de réduction" @@ -922,12 +1021,14 @@ msgstr "Rechercher parmi les codes de réduction" #: adminpages/reports/login.php:83 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "Rechercher" #: adminpages/discountcodes.php:588 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "Commence" @@ -945,6 +1046,8 @@ msgstr "Commence" #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "Expire" @@ -952,6 +1055,7 @@ msgstr "Expire" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "Niveaux" @@ -971,6 +1075,7 @@ msgstr "Créez votre premier code de réduction maintenant" #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "éditer" @@ -1000,6 +1105,7 @@ msgstr "Paramètres de courriel" #: adminpages/emailsettings.php:70 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "Par défaut, les courriels générés par le système sont envoyés par wordpress@yourdomain.com. Vous pouvez mettre à jour cette adresse en utilisant les champs ci-dessous" @@ -1009,16 +1115,19 @@ msgstr "Pour modifier l'apparence des courriels générés, ajoutez les fichiers #: adminpages/emailsettings.php:78 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "Courriel d'envoi" #: adminpages/emailsettings.php:86 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "Nom d'envoi" #: adminpages/emailsettings.php:94 #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "Filtrer seulement les courriels de PMPro ?" @@ -1138,17 +1247,21 @@ msgstr "Ajouter un nouveau niveau d'adhésion" #: adminpages/reports/history.php:184 #: adminpages/reports/login.php:181 #: adminpages/reports/login.php:184 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 msgid "Name" msgstr "Nom" #: adminpages/membershiplevels.php:298 #: adminpages/addons.php:111 #: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "Description" #: adminpages/membershiplevels.php:316 #: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "Message de confirmation" @@ -1156,6 +1269,8 @@ msgstr "Message de confirmation" #: adminpages/membershiplevels.php:543 #: adminpages/membershiplevels.php:397 #: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "Détails de facturation" @@ -1172,6 +1287,8 @@ msgstr "Détails de facturation" #: classes/gateways/class.pmprogateway_stripe.php:2696 #: classes/gateways/class.pmprogateway_stripe.php:2698 #: classes/gateways/class.pmprogateway_stripe.php:2694 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "par" @@ -1183,6 +1300,7 @@ msgstr "L'intégration Stripe ne supporte actuellement que les périodes de fact #: adminpages/discountcodes.php:620 #: adminpages/membershiplevels.php:448 #: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:446 msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." msgstr "L'intégration Braintree ne supporte actuellement que les périodes de facturation par mois et année." @@ -1199,11 +1317,14 @@ msgstr "L'intégration Payflox ne supporte actuellement que les fréquences de 1 #: adminpages/membershiplevels.php:454 #: adminpages/membershiplevels.php:459 #: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 msgid "Note" msgstr "Remarque" #: adminpages/membershiplevels.php:393 #: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." msgstr "Après avoir enregistré ce niveau, prenez note de son ID et créez un \"Plan\" dans votre tableau de bord Braintree avec les mêmes réglages et le \"Plan ID\" mis à pmpro_#, où # est l'ID du niveau." @@ -1215,6 +1336,7 @@ msgstr "Vous devrez créer un \"Plan\" dans votre tableau de bord Braintree avec #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "L'intégration de Stripe ne supporte actuellement pas les limites de facturation. Vous pouvez toujours définir une date d'expiration ci-dessous." @@ -1222,6 +1344,8 @@ msgstr "L'intégration de Stripe ne supporte actuellement pas les limites de fac #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "L'intégration 2Checkout ne supporte pas les essais personnalisés. Vous pouvez avoir une période d'essai en mettant un paiement initial différent du montant récurrent." @@ -1229,6 +1353,7 @@ msgstr "L'intégration 2Checkout ne supporte pas les essais personnalisés. Vou #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "L'intégration de Stripe ne supporte actuellement pas des périodes d'essai supérieures à 0€" @@ -1236,6 +1361,7 @@ msgstr "L'intégration de Stripe ne supporte actuellement pas des périodes d'es #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "L'intégration de Braintree ne supporte actuellement pas des périodes d'essai supérieures à 0€" @@ -1243,6 +1369,7 @@ msgstr "L'intégration de Braintree ne supporte actuellement pas des périodes d #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "L'intégration de Payflow ne supporte actuellement pas des périodes d'essai supérieures à 0€" @@ -1251,6 +1378,7 @@ msgstr "L'intégration de Payflow ne supporte actuellement pas des périodes d'e #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "Autres paramètres" @@ -1268,16 +1396,20 @@ msgstr "Cochez pour cacher ce niveau de la page des niveaux d'adhésion et désa #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "Paramètres de contenu" #: adminpages/membershiplevels.php:497 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "Catégories" #: adminpages/membershiplevels.php:514 #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "Enregistrer le niveau d'adhésion" @@ -1304,6 +1436,11 @@ msgstr "Enregistrer le niveau d'adhésion" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "Annuler" @@ -1331,23 +1468,28 @@ msgstr "Recherche de niveaux" #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "Expiration" #: adminpages/membershiplevels.php:545 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "Permette les inscriptions" #: adminpages/membershiplevels.php:566 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "GRATUIT" #: adminpages/membershiplevels.php:575 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "Après" @@ -1368,6 +1510,7 @@ msgstr "Êtes-vous sûr de vouloir effacer le niveau d'adhésion %s ? Toutes les #: includes/adminpages.php:53 #: includes/adminpages.php:149 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "Liste des membres" @@ -1378,6 +1521,8 @@ msgstr "Liste des membres" #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "Exporter au format CSV" @@ -1398,6 +1543,8 @@ msgstr "Exporter au format CSV" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "Montrer" @@ -1419,6 +1566,8 @@ msgstr "Montrer" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "Tous les niveaux" @@ -1458,6 +1607,8 @@ msgstr "Ancien membres" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "Recherchez les membres" @@ -1481,6 +1632,8 @@ msgstr "%d membres trouvés" #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "Nom d'utilisateur" @@ -1502,6 +1655,7 @@ msgstr "Nom" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "Adresse de facturation" @@ -1570,6 +1724,7 @@ msgstr "Erreur lors de la suppression de la commande." #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "Commande enregistgrée." @@ -1581,6 +1736,7 @@ msgstr "Erreur lors de la mise à jour de la date de la commande." #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "Erreur en sauvant la commande." @@ -1591,6 +1747,7 @@ msgstr "Erreur en sauvant la commande." #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "Commande" @@ -1598,6 +1755,7 @@ msgstr "Commande" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "Nouvelle commande" @@ -1605,6 +1763,7 @@ msgstr "Nouvelle commande" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "Généré de façon aléatoire pour vous." @@ -1612,6 +1771,7 @@ msgstr "Généré de façon aléatoire pour vous." #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "ID utilisateur" @@ -1620,6 +1780,8 @@ msgstr "ID utilisateur" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "ID niveau d'adhésion" @@ -1628,6 +1790,7 @@ msgstr "ID niveau d'adhésion" #: includes/privacy.php:245 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "Nom de facturation" @@ -1636,6 +1799,7 @@ msgstr "Nom de facturation" #: includes/privacy.php:249 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "Rue de facturation" @@ -1645,6 +1809,7 @@ msgstr "Rue de facturation" #: includes/privacy.php:358 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "Ville de facturation" @@ -1653,6 +1818,7 @@ msgstr "Ville de facturation" #: includes/privacy.php:257 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "Province de facturation" @@ -1663,6 +1829,7 @@ msgstr "Province de facturation" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "Code postal de facturation" @@ -1673,6 +1840,7 @@ msgstr "Code postal de facturation" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "Pays de facturation" @@ -1682,6 +1850,7 @@ msgstr "Pays de facturation" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "Téléphone de facturation" @@ -1691,6 +1860,7 @@ msgstr "Téléphone de facturation" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "Sous-total" @@ -1704,6 +1874,8 @@ msgstr "Sous-total" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "Taxe" @@ -1713,6 +1885,7 @@ msgstr "Taxe" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "Montant du coupon" @@ -1734,6 +1907,9 @@ msgstr "Montant du coupon" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "Total" @@ -1747,6 +1923,7 @@ msgstr "Devrait être le sous-total + la taxe - le montant du coupon." #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "Type de paiement" @@ -1755,6 +1932,7 @@ msgstr "Type de paiement" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "c'est-à-dire PayPal Express, PayPal Standard ou carte de crédit." @@ -1777,6 +1955,9 @@ msgstr "c'est-à-dire PayPal Express, PayPal Standard ou carte de crédit." #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "Type de carte" @@ -1785,6 +1966,7 @@ msgstr "Type de carte" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "c'est-à-dire Visa, MasterCartd, AMEX, etc." @@ -1796,6 +1978,8 @@ msgstr "c'est-à-dire Visa, MasterCartd, AMEX, etc." #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "Numéro de compte" @@ -1803,6 +1987,7 @@ msgstr "Numéro de compte" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "Masque tout sauf les 4 derniers chiffres." @@ -1814,6 +1999,7 @@ msgstr "Masque tout sauf les 4 derniers chiffres." #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "Mois d'expiration" @@ -1846,6 +2032,10 @@ msgstr "Année d'expiration" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "Statut" @@ -1861,6 +2051,9 @@ msgstr "Statut" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "Passerelle" @@ -1872,6 +2065,8 @@ msgstr "Passerelle" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "Environnement de passerelle" @@ -1886,6 +2081,9 @@ msgstr "Environnement de passerelle" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "Enironnement de test" @@ -1900,6 +2098,9 @@ msgstr "Enironnement de test" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "Environnement de production" @@ -1908,6 +2109,7 @@ msgstr "Environnement de production" #: includes/privacy.php:321 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "ID de la transaction du paiement" @@ -1915,6 +2117,7 @@ msgstr "ID de la transaction du paiement" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "Généré par la passerelle. Utile pour voir les références des commandes." @@ -1925,6 +2128,8 @@ msgstr "Généré par la passerelle. Utile pour voir les références des comman #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "Numéro de la transaction d'abonnement" @@ -1933,6 +2138,7 @@ msgstr "Numéro de la transaction d'abonnement" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "Généré par la passerelle. Utile pour voir la référence des abonnements." @@ -1955,6 +2161,9 @@ msgstr "Généré par la passerelle. Utile pour voir la référence des abonneme #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:492 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "Date" @@ -1963,6 +2172,7 @@ msgstr "Date" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "ID d'affiliation" @@ -1971,6 +2181,7 @@ msgstr "ID d'affiliation" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "SubID d'affiliation" @@ -1979,6 +2190,7 @@ msgstr "SubID d'affiliation" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "Remarques" @@ -1987,6 +2199,7 @@ msgstr "Remarques" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "Enregistrer la commande" @@ -2005,6 +2218,8 @@ msgstr "Enregistrer la commande" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "Commandes" @@ -2013,6 +2228,7 @@ msgstr "Commandes" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "Ajouter une nouvelle commande" @@ -2023,6 +2239,7 @@ msgstr "Ajouter une nouvelle commande" #: adminpages/orders.php:1014 #: includes/metaboxes.php:19 #: adminpages/orders.php:1015 +#: adminpages/orders.php:1103 msgid "All" msgstr "Tout" @@ -2031,6 +2248,7 @@ msgstr "Tout" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "Dans la plage de dates" @@ -2039,6 +2257,7 @@ msgstr "Dans la plage de dates" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "Plage de date prédéfinie" @@ -2047,6 +2266,7 @@ msgstr "Plage de date prédéfinie" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "Dans le niveau" @@ -2055,6 +2275,7 @@ msgstr "Dans le niveau" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "Dans le statut" @@ -2063,6 +2284,7 @@ msgstr "Dans le statut" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "De" @@ -2071,6 +2293,7 @@ msgstr "De" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "À" @@ -2079,6 +2302,7 @@ msgstr "À" #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "filtré par" @@ -2087,6 +2311,7 @@ msgstr "filtré par" #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "Filtrer" @@ -2100,6 +2325,8 @@ msgstr "Filtrer" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "Rechercher parmi les commandes" @@ -2108,6 +2335,8 @@ msgstr "Rechercher parmi les commandes" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "%d commandes trouvées." @@ -2123,6 +2352,7 @@ msgstr "%d commandes trouvées." #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "Utilisateur" @@ -2147,6 +2377,8 @@ msgstr "Utilisateur" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "Niveau d'adhésion" @@ -2160,6 +2392,7 @@ msgstr "Niveau d'adhésion" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "Paiement" @@ -2168,6 +2401,7 @@ msgstr "Paiement" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "IDs de transactions" @@ -2187,6 +2421,8 @@ msgstr "IDs de transactions" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "supprimé" @@ -2195,6 +2431,7 @@ msgstr "supprimé" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "Abonnement" @@ -2204,6 +2441,7 @@ msgstr "Abonnement" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "La suppression des commandes est permanente et peut affecter les utilisateurs actifs. Êtes-vous sûr de vouloir supprimer la commande %s ?" @@ -2217,6 +2455,7 @@ msgstr "La suppression des commandes est permanente et peut affecter les utilisa #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "Aucune commande trouvée." @@ -2278,6 +2517,7 @@ msgstr "Les pages qui suivent ont été créés pour vous" #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "Gérer les pages Wordpress assignées à chaque page Paid Memberships Pro." @@ -2285,6 +2525,7 @@ msgstr "Gérer les pages Wordpress assignées à chaque page Paid Memberships Pr #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "Assigner les pages Wordpress à chaque page Paid Memberships Pro." @@ -2292,6 +2533,7 @@ msgstr "Assigner les pages Wordpress à chaque page Paid Memberships Pro." #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "Cliquer ici pour nous laisser générer ceci pour vous." @@ -2299,6 +2541,7 @@ msgstr "Cliquer ici pour nous laisser générer ceci pour vous." #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "Page de compte" @@ -2331,6 +2574,14 @@ msgstr "Page de compte" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "Choisir" @@ -2369,6 +2620,16 @@ msgstr "Choisir" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "éditer la page" @@ -2406,6 +2667,16 @@ msgstr "éditer la page" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:246 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "voir la page" @@ -2435,6 +2706,13 @@ msgstr "voir la page" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:248 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "Inclure le shortcode" @@ -2442,6 +2720,7 @@ msgstr "Inclure le shortcode" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "Page d'information de facturation" @@ -2449,6 +2728,7 @@ msgstr "Page d'information de facturation" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "Page d'annulation" @@ -2456,6 +2736,7 @@ msgstr "Page d'annulation" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "Page de paiement" @@ -2463,6 +2744,7 @@ msgstr "Page de paiement" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "Page de confirmation" @@ -2470,6 +2752,7 @@ msgstr "Page de confirmation" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "Page de facture" @@ -2477,6 +2760,7 @@ msgstr "Page de facture" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "Page des niveaux" @@ -2491,6 +2775,7 @@ msgstr "Vos paramètres de paiement ont été mis à jour." #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "Passerelle de paiement" @@ -2498,6 +2783,7 @@ msgstr "Passerelle de paiement" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "Paramètres SSL" @@ -2508,24 +2794,28 @@ msgstr "En savoir plus If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "" @@ -3667,6 +4059,7 @@ msgstr "Afin d'intégrer pleinement avec Stripe, veillez à régler votre Web Ho #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "" @@ -3699,6 +4092,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2653 #: classes/gateways/class.pmprogateway_stripe.php:2649 #: pages/billing.php:441 +#: classes/gateways/class.pmprogateway_stripe.php:3106 msgid "Update" msgstr "Mettre à jour" @@ -3711,6 +4105,7 @@ msgstr "Mettre à jour" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "" @@ -3748,6 +4143,8 @@ msgstr "Erreur de création du dossier client avec Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "" @@ -3768,6 +4165,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "" @@ -3778,6 +4177,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "" @@ -3788,27 +4188,32 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:53 #: paid-memberships-pro.php:125 #: classes/gateways/class.pmprogateway_twocheckout.php:59 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:108 #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:137 #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:145 #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "" @@ -3818,6 +4223,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:192 #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "" @@ -4249,6 +4655,7 @@ msgstr "et" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "!!name!!, inscrivez-vous maintenant !" @@ -4271,6 +4678,9 @@ msgstr "Veuillez spécifier un n° de niveau." #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "Aucun" @@ -4343,6 +4753,8 @@ msgstr "Niveau actuel" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "Rien à payer." @@ -4409,6 +4821,9 @@ msgstr "déconnexion" #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "Niveau" @@ -4452,6 +4867,7 @@ msgstr "Votre abonnement est géré par PayPal. S'il vous plait Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -5661,93 +6129,111 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -5773,6 +6259,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -5836,6 +6323,7 @@ msgstr "" #: adminpages/license.php:49 #: adminpages/dashboard.php:178 #: adminpages/license.php:41 +#: adminpages/license.php:53 msgid "Your license is invalid or expired." msgstr "" @@ -5850,6 +6338,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -5955,6 +6444,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -5993,6 +6483,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -6005,31 +6496,39 @@ msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 msgid "%d discount codes found." msgstr "" @@ -6055,6 +6554,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -6073,6 +6579,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -6090,6 +6602,11 @@ msgstr "" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "" @@ -6098,19 +6615,23 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -6151,196 +6672,246 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:960 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:156 +#: adminpages/emailtemplates.php:149 msgid "Billing Information" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:170 #: includes/privacy.php:363 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -6370,6 +6941,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "" @@ -6387,12 +6959,14 @@ msgstr "" #: adminpages/license.php:59 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -6400,14 +6974,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -6424,31 +7001,39 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -6458,6 +7043,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -6465,6 +7052,7 @@ msgstr "" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -6472,6 +7060,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -6479,6 +7068,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -6486,6 +7076,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -6493,6 +7084,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -6500,6 +7092,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -6544,78 +7137,91 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -6625,6 +7231,8 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" @@ -6637,12 +7245,16 @@ msgstr "" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -6650,24 +7262,28 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "" @@ -6677,26 +7293,31 @@ msgstr "" #: adminpages/paymentsettings.php:122 #: adminpages/paymentsettings.php:127 +#: adminpages/paymentsettings.php:125 msgid "Choose a Gateway" msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" #: adminpages/paymentsettings.php:194 #: adminpages/paymentsettings.php:201 +#: adminpages/paymentsettings.php:199 msgid "Currency and Tax Settings" msgstr "" #: adminpages/paymentsettings.php:239 #: adminpages/paymentsettings.php:246 +#: adminpages/paymentsettings.php:244 msgid "Tax Rate" msgstr "" @@ -6706,11 +7327,13 @@ msgstr "" #: adminpages/paymentsettings.php:260 #: adminpages/paymentsettings.php:273 +#: adminpages/paymentsettings.php:271 msgid "Your Site URL starts with https:// and so PMPro will allow your entire site to be served over HTTPS." msgstr "" #: adminpages/paymentsettings.php:270 #: adminpages/paymentsettings.php:283 +#: adminpages/paymentsettings.php:281 msgid "Recommended: Yes. Try the JavaScript redirects setting if you are having issues with infinite redirect loops." msgstr "" @@ -6720,6 +7343,7 @@ msgstr "" #: adminpages/reports.php:19 #: adminpages/reports.php:18 +#: adminpages/reports.php:21 msgid "Back to Reports Dashboard" msgstr "" @@ -6747,6 +7371,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -6757,6 +7382,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -6815,29 +7441,35 @@ msgid "All Cancellations" msgstr "" #: adminpages/reports/memberships.php:338 +#: adminpages/reports/memberships.php:337 msgid "Signups vs. All Cancellations" msgstr "" #: adminpages/reports/memberships.php:340 +#: adminpages/reports/memberships.php:339 msgid "Signups vs. Expirations" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -7030,63 +7662,77 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:962 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:463 #: classes/class.pmproemail.php:475 #: classes/class.pmproemail.php:468 +#: classes/class.pmproemail.php:601 msgid "Your billing information has been updated at %s" msgstr "" #: classes/class.pmproemail.php:513 #: classes/class.pmproemail.php:525 #: classes/class.pmproemail.php:518 +#: classes/class.pmproemail.php:651 msgid "Billing information has been updated for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -7099,6 +7745,8 @@ msgstr "" #: includes/email.php:465 #: classes/class.pmproemail.php:898 #: classes/class.pmproemail.php:943 +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 msgid "The new level is %s." msgstr "" @@ -7111,30 +7759,36 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -7146,14 +7800,17 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:91 #: classes/gateways/class.pmprogateway_stripe.php:97 #: classes/gateways/class.pmprogateway_stripe.php:1353 +#: classes/gateways/class.pmprogateway_stripe.php:1478 msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" @@ -7167,21 +7824,30 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:750 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -7189,11 +7855,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -7471,17 +8140,20 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:185 #: classes/gateways/class.pmprogateway_paypalexpress.php:194 #: classes/gateways/class.pmprogateway_paypalexpress.php:204 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 msgid "Confirmation Step" msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -7490,6 +8162,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -7498,6 +8171,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -7513,6 +8187,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -7521,6 +8196,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -7532,6 +8208,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -7543,6 +8220,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -7554,6 +8232,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -7562,6 +8241,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -7573,6 +8253,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -7584,6 +8265,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -7592,6 +8274,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -7603,6 +8286,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -7611,6 +8295,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -7634,6 +8319,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -7650,6 +8337,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -7658,6 +8347,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -7666,6 +8356,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -7674,6 +8365,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -7681,6 +8373,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -7689,6 +8382,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -7702,6 +8396,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -7710,6 +8406,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -7718,6 +8415,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -7727,6 +8425,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -7744,6 +8444,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -7752,6 +8454,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -7773,6 +8476,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -7781,6 +8486,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -7789,6 +8495,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -7797,6 +8504,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -7805,6 +8513,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -7813,6 +8522,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -7821,6 +8531,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -7829,6 +8540,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -7837,6 +8549,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -7845,6 +8558,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -7853,6 +8567,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -7865,6 +8580,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -7873,6 +8589,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -7881,6 +8598,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -7889,6 +8607,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -7897,6 +8616,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -7942,6 +8662,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "" @@ -7959,6 +8681,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "" @@ -7970,6 +8694,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 msgid "Error: Unkown error while refunding charge #%s" msgstr "" @@ -7979,6 +8704,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -7999,6 +8725,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -8007,6 +8737,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -8016,6 +8747,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -8025,6 +8757,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -8036,6 +8769,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -8047,6 +8781,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -8058,6 +8793,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -8069,22 +8805,27 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "" @@ -8123,6 +8864,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -8135,6 +8877,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -8147,6 +8890,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -9945,14 +10689,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -9961,18 +10708,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -9984,6 +10735,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -10099,6 +10851,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -10212,6 +10965,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -10219,6 +10973,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -10250,6 +11005,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -10259,6 +11015,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -10266,6 +11023,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -10370,6 +11128,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -10377,6 +11137,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -10384,6 +11145,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -10391,6 +11153,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -10462,126 +11225,148 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -10593,6 +11378,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -10702,6 +11490,7 @@ msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -10731,6 +11520,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -10769,6 +11559,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -10784,6 +11589,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -10799,6 +11605,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -10831,6 +11638,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -10843,6 +11651,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -10868,11 +11677,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -10880,6 +11694,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -10887,6 +11702,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -10909,6 +11725,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -10934,6 +11751,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -10941,6 +11759,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -10973,6 +11792,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -10995,6 +11815,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -11005,11 +11826,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -11029,6 +11861,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -11042,6 +11875,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -11051,6 +11885,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -11060,10 +11895,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -11074,6 +11911,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -11081,6 +11919,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -11090,6 +11929,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -11099,12 +11939,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -11112,6 +11955,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -11120,6 +11965,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -11127,6 +11973,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -11134,27 +11981,32 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: paid-memberships-pro.php:194 #: paid-memberships-pro.php:195 +#: paid-memberships-pro.php:201 msgid "Once a month" msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -11212,12 +12064,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -11227,6 +12081,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -11236,6 +12091,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -11245,54 +12101,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -11303,42 +12169,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -11353,51 +12229,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -11405,6 +12293,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -11412,6 +12301,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -11419,6 +12309,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -11427,6 +12318,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -11440,6 +12333,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -11460,19 +12354,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -11482,31 +12380,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -11536,25 +12442,30 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "" @@ -11624,26 +12535,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -11652,51 +12569,62 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -11710,19 +12638,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -11753,3 +12685,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-he_IL.mo b/languages/paid-memberships-pro-he_IL.mo index c73d36087..823d38fca 100644 Binary files a/languages/paid-memberships-pro-he_IL.mo and b/languages/paid-memberships-pro-he_IL.mo differ diff --git a/languages/paid-memberships-pro-he_IL.po b/languages/paid-memberships-pro-he_IL.po index 7469c6053..2529bb289 100644 --- a/languages/paid-memberships-pro-he_IL.po +++ b/languages/paid-memberships-pro-he_IL.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:20:51+00:00\n" +"POT-Creation-Date: 2022-05-05T20:37:33+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -93,6 +93,7 @@ msgstr "" #: adminpages/orders.php:1014 #: includes/metaboxes.php:19 #: adminpages/orders.php:1015 +#: adminpages/orders.php:1103 msgid "All" msgstr "" @@ -136,6 +137,7 @@ msgstr "" #: adminpages/membershiplevels.php:296 #: adminpages/membershiplevels.php:298 #: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "" @@ -218,6 +220,11 @@ msgstr "" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "" @@ -286,6 +293,18 @@ msgstr "" #: adminpages/orders.php:913 #: adminpages/orders.php:1537 #: adminpages/orders.php:1546 +#: adminpages/orders.php:704 +#: adminpages/orders.php:996 +#: adminpages/orders.php:1689 +#: adminpages/orders.php:1698 +#: classes/class.pmproemail.php:261 +#: classes/class.pmproemail.php:327 +#: includes/profile.php:167 +#: includes/profile.php:483 +#: includes/profile.php:484 +#: includes/profile.php:556 +#: includes/profile.php:557 +#: includes/profile.php:558 msgid "N/A" msgstr "" @@ -481,6 +500,11 @@ msgstr "" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "‎אימייל" @@ -496,6 +520,7 @@ msgstr "‎מתקדם" #: adminpages/advancedsettings.php:42 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "" @@ -516,6 +541,7 @@ msgstr "" #: adminpages/advancedsettings.php:116 #: includes/updates/upgrade_1.php:13 #: adminpages/advancedsettings.php:118 +#: adminpages/advancedsettings.php:126 msgid "This content is for members only. Visit the site and log in/register to read." msgstr "‎התכון בעמוד זה זמין למשתמשים בלבד‫.‬ אנא הירשם או התחבר באתר‫.‬" @@ -534,6 +560,7 @@ msgstr "‎התכון בעמוד זה זמין למשתמשים בלבד‫.‬ #: adminpages/advancedsettings.php:132 #: includes/adminpages.php:73 #: adminpages/advancedsettings.php:134 +#: adminpages/advancedsettings.php:142 msgid "Advanced Settings" msgstr "‎הגדרות מתקדמות" @@ -542,6 +569,7 @@ msgstr "‎הגדרות מתקדמות" #: adminpages/advancedsettings.php:92 #: adminpages/advancedsettings.php:164 #: adminpages/advancedsettings.php:166 +#: adminpages/advancedsettings.php:173 msgid "Message for Logged-in Non-members" msgstr "" @@ -550,6 +578,7 @@ msgstr "" #: adminpages/advancedsettings.php:96 #: adminpages/advancedsettings.php:168 #: adminpages/advancedsettings.php:170 +#: adminpages/advancedsettings.php:177 msgid "This message replaces the post content for non-members. Available variables" msgstr "" @@ -558,6 +587,7 @@ msgstr "" #: adminpages/advancedsettings.php:101 #: adminpages/advancedsettings.php:173 #: adminpages/advancedsettings.php:175 +#: adminpages/advancedsettings.php:182 msgid "Message for Logged-out Users" msgstr "" @@ -566,6 +596,7 @@ msgstr "" #: adminpages/advancedsettings.php:105 #: adminpages/advancedsettings.php:177 #: adminpages/advancedsettings.php:179 +#: adminpages/advancedsettings.php:186 msgid "This message replaces the post content for logged-out visitors." msgstr "" @@ -574,6 +605,7 @@ msgstr "" #: adminpages/advancedsettings.php:110 #: adminpages/advancedsettings.php:182 #: adminpages/advancedsettings.php:184 +#: adminpages/advancedsettings.php:191 msgid "Message for RSS Feed" msgstr "" @@ -582,24 +614,28 @@ msgstr "" #: adminpages/advancedsettings.php:114 #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "This message replaces the post content in RSS feeds." msgstr "" #: adminpages/advancedsettings.php:122 #: adminpages/advancedsettings.php:199 #: adminpages/advancedsettings.php:201 +#: adminpages/advancedsettings.php:208 msgid "Filter searches and archives?" msgstr "" #: adminpages/advancedsettings.php:126 #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:205 +#: adminpages/advancedsettings.php:212 msgid "No - Non-members will see restricted posts/pages in searches and archives." msgstr "" #: adminpages/advancedsettings.php:127 #: adminpages/advancedsettings.php:204 #: adminpages/advancedsettings.php:206 +#: adminpages/advancedsettings.php:213 msgid "Yes - Only members will see restricted posts/pages in searches and archives." msgstr "" @@ -608,6 +644,7 @@ msgstr "" #: adminpages/advancedsettings.php:120 #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:212 +#: adminpages/advancedsettings.php:219 msgid "Show Excerpts to Non-Members?" msgstr "" @@ -616,6 +653,7 @@ msgstr "" #: adminpages/advancedsettings.php:124 #: adminpages/advancedsettings.php:214 #: adminpages/advancedsettings.php:216 +#: adminpages/advancedsettings.php:223 msgid "No - Hide excerpts." msgstr "" @@ -624,12 +662,14 @@ msgstr "" #: adminpages/advancedsettings.php:125 #: adminpages/advancedsettings.php:215 #: adminpages/advancedsettings.php:217 +#: adminpages/advancedsettings.php:224 msgid "Yes - Show excerpts." msgstr "" #: adminpages/advancedsettings.php:144 #: adminpages/advancedsettings.php:333 #: adminpages/advancedsettings.php:348 +#: adminpages/advancedsettings.php:355 msgid "Hide Ads From Members?" msgstr "" @@ -696,6 +736,16 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:404 #: classes/gateways/class.pmprogateway_stripe.php:418 #: adminpages/paymentsettings.php:279 +#: adminpages/advancedsettings.php:254 +#: adminpages/advancedsettings.php:267 +#: adminpages/advancedsettings.php:359 +#: adminpages/advancedsettings.php:418 +#: adminpages/advancedsettings.php:526 +#: adminpages/membershiplevels.php:939 +#: adminpages/paymentsettings.php:277 +#: classes/gateways/class.pmprogateway_stripe.php:430 +#: classes/gateways/class.pmprogateway_stripe.php:444 +#: includes/profile.php:78 msgid "No" msgstr "" @@ -704,6 +754,7 @@ msgstr "" #: adminpages/advancedsettings.php:136 #: adminpages/advancedsettings.php:338 #: adminpages/advancedsettings.php:353 +#: adminpages/advancedsettings.php:360 msgid "Hide Ads From All Members" msgstr "" @@ -712,6 +763,7 @@ msgstr "" #: adminpages/advancedsettings.php:137 #: adminpages/advancedsettings.php:339 #: adminpages/advancedsettings.php:354 +#: adminpages/advancedsettings.php:361 msgid "Hide Ads From Certain Members" msgstr "" @@ -726,6 +778,7 @@ msgstr "" #: adminpages/advancedsettings.php:145 #: adminpages/advancedsettings.php:346 #: adminpages/advancedsettings.php:361 +#: adminpages/advancedsettings.php:368 msgid "To hide ads in your template code, use code like the following" msgstr "" @@ -734,6 +787,7 @@ msgstr "" #: adminpages/advancedsettings.php:156 #: adminpages/advancedsettings.php:355 #: adminpages/advancedsettings.php:370 +#: adminpages/advancedsettings.php:377 msgid "Choose Levels to Hide Ads From" msgstr "" @@ -752,6 +806,7 @@ msgstr "" #: adminpages/advancedsettings.php:390 #: adminpages/advancedsettings.php:392 #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "multisite only" msgstr "" @@ -807,6 +862,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:406 #: classes/gateways/class.pmprogateway_stripe.php:420 #: adminpages/paymentsettings.php:280 +#: adminpages/advancedsettings.php:419 +#: adminpages/membershiplevels.php:934 +#: adminpages/paymentsettings.php:278 +#: classes/gateways/class.pmprogateway_stripe.php:432 +#: classes/gateways/class.pmprogateway_stripe.php:446 +#: includes/profile.php:79 msgid "Yes" msgstr "" @@ -815,6 +876,7 @@ msgstr "" #: adminpages/advancedsettings.php:202 #: adminpages/advancedsettings.php:241 #: adminpages/advancedsettings.php:256 +#: adminpages/advancedsettings.php:263 msgid "Use reCAPTCHA?" msgstr "" @@ -830,6 +892,7 @@ msgstr "" #: adminpages/advancedsettings.php:208 #: adminpages/advancedsettings.php:247 #: adminpages/advancedsettings.php:262 +#: adminpages/advancedsettings.php:269 msgid "Yes - All memberships." msgstr "" @@ -838,6 +901,7 @@ msgstr "" #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "A free reCAPTCHA key is required." msgstr "" @@ -846,6 +910,7 @@ msgstr "" #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "Click here to signup for reCAPTCHA" msgstr "" @@ -903,6 +968,9 @@ msgstr "" #: adminpages/pagesettings.php:508 #: adminpages/pagesettings.php:512 #: adminpages/paymentsettings.php:316 +#: adminpages/advancedsettings.php:574 +#: adminpages/pagesettings.php:511 +#: adminpages/paymentsettings.php:314 msgid "Save Settings" msgstr "" @@ -988,6 +1056,7 @@ msgstr "" #: adminpages/discountcodes.php:796 #: adminpages/discountcodes.php:354 #: adminpages/discountcodes.php:798 +#: adminpages/discountcodes.php:799 msgid "Code not found." msgstr "" @@ -1013,6 +1082,7 @@ msgstr "" #: adminpages/discountcodes.php:735 #: adminpages/discountcodes.php:377 #: adminpages/discountcodes.php:737 +#: adminpages/discountcodes.php:738 msgid "Add New Discount Code" msgstr "" @@ -1065,6 +1135,8 @@ msgstr "" #: adminpages/reports/login.php:182 #: adminpages/templates/orders-email.php:49 #: adminpages/templates/orders-print.php:78 +#: adminpages/membershiplevels.php:345 +#: adminpages/membershiplevels.php:805 msgid "ID" msgstr "" @@ -1116,6 +1188,9 @@ msgstr "" #: adminpages/dashboard.php:292 #: adminpages/orders.php:429 #: adminpages/orders.php:1333 +#: adminpages/discountcodes.php:787 +#: adminpages/orders.php:475 +#: adminpages/orders.php:1426 msgid "Code" msgstr "" @@ -1130,6 +1205,7 @@ msgstr "" #: adminpages/discountcodes.php:489 #: includes/profile.php:501 #: includes/profile.php:497 +#: includes/profile.php:537 msgid "Start Date" msgstr "" @@ -1168,6 +1244,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1326 #: classes/gateways/class.pmprogateway_stripe.php:785 #: pages/billing.php:381 +#: classes/gateways/class.pmprogateway_braintree.php:486 +#: classes/gateways/class.pmprogateway_stripe.php:893 msgid "Expiration Date" msgstr "תוקף" @@ -1184,6 +1262,7 @@ msgstr "תוקף" #: adminpages/discountcodes.php:787 #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:789 +#: adminpages/discountcodes.php:790 msgid "Uses" msgstr "" @@ -1220,6 +1299,7 @@ msgstr "" #: adminpages/discountcodes.php:574 #: adminpages/membershiplevels.php:401 #: adminpages/discountcodes.php:576 +#: adminpages/membershiplevels.php:399 msgid "Initial Payment" msgstr "" @@ -1236,6 +1316,7 @@ msgstr "" #: adminpages/discountcodes.php:585 #: adminpages/membershiplevels.php:412 #: adminpages/discountcodes.php:587 +#: adminpages/membershiplevels.php:410 msgid "The initial amount collected at registration." msgstr "" @@ -1252,6 +1333,7 @@ msgstr "" #: adminpages/discountcodes.php:590 #: adminpages/membershiplevels.php:417 #: adminpages/discountcodes.php:592 +#: adminpages/membershiplevels.php:415 msgid "Recurring Subscription" msgstr "" @@ -1268,6 +1350,7 @@ msgstr "" #: adminpages/discountcodes.php:591 #: adminpages/membershiplevels.php:418 #: adminpages/discountcodes.php:593 +#: adminpages/membershiplevels.php:416 msgid "Check if this level has a recurring subscription payment." msgstr "" @@ -1283,6 +1366,7 @@ msgstr "" #: adminpages/discountcodes.php:595 #: adminpages/membershiplevels.php:422 #: adminpages/discountcodes.php:597 +#: adminpages/membershiplevels.php:420 msgid "Billing Amount" msgstr "" @@ -1323,6 +1407,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2637 #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2635 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3092 msgid "Day(s)" msgstr "" @@ -1363,6 +1451,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2641 #: classes/gateways/class.pmprogateway_stripe.php:2637 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3094 msgid "Month(s)" msgstr "" @@ -1403,6 +1495,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2638 #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2636 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3093 msgid "Week(s)" msgstr "" @@ -1443,6 +1539,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2642 #: classes/gateways/class.pmprogateway_stripe.php:2638 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3095 msgid "Year(s)" msgstr "" @@ -1459,6 +1559,7 @@ msgstr "" #: adminpages/discountcodes.php:618 #: adminpages/membershiplevels.php:446 #: adminpages/discountcodes.php:620 +#: adminpages/membershiplevels.php:444 msgid "The amount to be billed one cycle after the initial payment." msgstr "" @@ -1475,6 +1576,7 @@ msgstr "" #: adminpages/discountcodes.php:628 #: adminpages/membershiplevels.php:465 #: adminpages/discountcodes.php:630 +#: adminpages/membershiplevels.php:463 msgid "Billing Cycle Limit" msgstr "" @@ -1491,6 +1593,7 @@ msgstr "" #: adminpages/discountcodes.php:632 #: adminpages/membershiplevels.php:469 #: adminpages/discountcodes.php:634 +#: adminpages/membershiplevels.php:467 msgid "The total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "" @@ -1507,6 +1610,8 @@ msgstr "" #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "" @@ -1524,6 +1629,8 @@ msgstr "" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "" @@ -1541,6 +1648,7 @@ msgstr "" #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "" @@ -1558,6 +1666,7 @@ msgstr "" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "" @@ -1575,6 +1684,7 @@ msgstr "" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "" @@ -1593,6 +1703,7 @@ msgstr "" #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "תוקף החשבון" @@ -1610,6 +1721,7 @@ msgstr "תוקף החשבון" #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "" @@ -1629,6 +1741,8 @@ msgstr "" #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "" @@ -1646,6 +1760,8 @@ msgstr "" #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "" @@ -1656,6 +1772,7 @@ msgstr "" #: adminpages/discountcodes.php:557 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "" @@ -1666,6 +1783,7 @@ msgstr "" #: adminpages/discountcodes.php:567 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "" @@ -1679,6 +1797,7 @@ msgstr "" #: adminpages/reports/login.php:83 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "" @@ -1689,6 +1808,7 @@ msgstr "" #: adminpages/discountcodes.php:588 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "" @@ -1719,6 +1839,8 @@ msgstr "" #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "" @@ -1730,6 +1852,7 @@ msgstr "" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "" @@ -1775,6 +1898,7 @@ msgstr "" #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "" @@ -1835,6 +1959,7 @@ msgstr "" #: adminpages/emailsettings.php:70 #: adminpages/emailsettings.php:61 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "" @@ -1846,22 +1971,26 @@ msgstr "" #: adminpages/emailsettings.php:78 #: adminpages/emailsettings.php:69 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "" #: adminpages/emailsettings.php:86 #: adminpages/emailsettings.php:77 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "" #: adminpages/emailsettings.php:94 #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "" #: adminpages/emailsettings.php:98 #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 #, php-format msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "" @@ -2031,6 +2160,8 @@ msgstr "" #: adminpages/reports/history.php:184 #: adminpages/reports/login.php:181 #: adminpages/reports/login.php:184 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 msgid "Name" msgstr "" @@ -2038,6 +2169,7 @@ msgstr "" #: adminpages/membershiplevels.php:314 #: adminpages/membershiplevels.php:316 #: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "" @@ -2051,6 +2183,8 @@ msgstr "" #: adminpages/membershiplevels.php:639 #: adminpages/membershiplevels.php:397 #: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "" @@ -2075,6 +2209,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2696 #: classes/gateways/class.pmprogateway_stripe.php:2698 #: classes/gateways/class.pmprogateway_stripe.php:2694 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "" @@ -2093,6 +2229,7 @@ msgstr "" #: adminpages/discountcodes.php:620 #: adminpages/membershiplevels.php:448 #: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:446 msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." msgstr "" @@ -2110,6 +2247,7 @@ msgstr "" #: adminpages/membershiplevels.php:393 #: adminpages/membershiplevels.php:396 #: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." msgstr "" @@ -2132,6 +2270,8 @@ msgstr "" #: adminpages/membershiplevels.php:454 #: adminpages/membershiplevels.php:459 #: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 msgid "Note" msgstr "" @@ -2151,6 +2291,7 @@ msgstr "" #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "ניתן לקבוע תאריך תוקף עכשיו." @@ -2162,6 +2303,8 @@ msgstr "ניתן לקבוע תאריך תוקף עכשיו." #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "" @@ -2174,6 +2317,7 @@ msgstr "" #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "" @@ -2186,6 +2330,7 @@ msgstr "" #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "" @@ -2198,6 +2343,7 @@ msgstr "" #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "" @@ -2212,6 +2358,7 @@ msgstr "" #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "" @@ -2247,6 +2394,8 @@ msgstr "" #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "" @@ -2258,12 +2407,14 @@ msgstr "" #: adminpages/membershiplevels.php:497 #: adminpages/membershiplevels.php:500 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "" #: adminpages/membershiplevels.php:516 #: adminpages/membershiplevels.php:517 #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "" @@ -2301,6 +2452,11 @@ msgstr "" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "" @@ -2341,6 +2497,7 @@ msgstr "" #: adminpages/membershiplevels.php:579 #: adminpages/membershiplevels.php:631 #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "" @@ -2366,6 +2523,8 @@ msgstr "" #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "תוקף" @@ -2378,6 +2537,7 @@ msgstr "תוקף" #: adminpages/membershiplevels.php:587 #: adminpages/membershiplevels.php:641 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "" @@ -2391,6 +2551,7 @@ msgstr "" #: adminpages/membershiplevels.php:656 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "" @@ -2404,6 +2565,7 @@ msgstr "" #: adminpages/membershiplevels.php:665 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "" @@ -2449,6 +2611,7 @@ msgstr "" #: includes/adminpages.php:149 #: includes/adminpages.php:153 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "" @@ -2462,6 +2625,8 @@ msgstr "" #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "" @@ -2492,6 +2657,8 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "" @@ -2521,6 +2688,8 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "" @@ -2564,6 +2733,8 @@ msgstr "" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "" @@ -2602,6 +2773,8 @@ msgstr "" #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "שם משתמש" @@ -2645,6 +2818,7 @@ msgstr "" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "כתובת חיוב" @@ -2756,6 +2930,7 @@ msgstr "" #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "" @@ -2771,6 +2946,7 @@ msgstr "" #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "" @@ -2784,6 +2960,7 @@ msgstr "" #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "" @@ -2794,6 +2971,7 @@ msgstr "" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "" @@ -2804,6 +2982,7 @@ msgstr "" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "" @@ -2814,6 +2993,7 @@ msgstr "" #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "" @@ -2825,6 +3005,8 @@ msgstr "" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "" @@ -2836,6 +3018,7 @@ msgstr "" #: includes/privacy.php:245 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "" @@ -2847,6 +3030,7 @@ msgstr "" #: includes/privacy.php:249 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "" @@ -2859,6 +3043,7 @@ msgstr "" #: includes/privacy.php:358 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "" @@ -2870,6 +3055,7 @@ msgstr "" #: includes/privacy.php:257 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "" @@ -2883,6 +3069,7 @@ msgstr "" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "" @@ -2896,6 +3083,7 @@ msgstr "" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "" @@ -2908,6 +3096,7 @@ msgstr "" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "" @@ -2920,6 +3109,7 @@ msgstr "" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "" @@ -2939,6 +3129,8 @@ msgstr "" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "" @@ -2951,6 +3143,7 @@ msgstr "" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "סכום ההנחה" @@ -2982,6 +3175,9 @@ msgstr "סכום ההנחה" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "סה’’כ" @@ -3001,6 +3197,7 @@ msgstr "" #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "" @@ -3012,6 +3209,7 @@ msgstr "" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "לדוגמא פייפאל אקספרס, פייפאל סטנדרטי או כרטיס אשראי" @@ -3052,6 +3250,9 @@ msgstr "לדוגמא פייפאל אקספרס, פייפאל סטנדרטי או #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "" @@ -3063,6 +3264,7 @@ msgstr "" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "" @@ -3081,6 +3283,8 @@ msgstr "" #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "מספר חשבון" @@ -3091,6 +3295,7 @@ msgstr "מספר חשבון" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "" @@ -3105,6 +3310,7 @@ msgstr "" #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "תקף עד חודש" @@ -3147,6 +3353,10 @@ msgstr "תקף עד שנת" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "" @@ -3169,6 +3379,9 @@ msgstr "" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "" @@ -3187,6 +3400,8 @@ msgstr "" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "" @@ -3208,6 +3423,9 @@ msgstr "" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "" @@ -3229,6 +3447,9 @@ msgstr "" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "" @@ -3241,6 +3462,7 @@ msgstr "" #: includes/privacy.php:321 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "" @@ -3252,6 +3474,7 @@ msgstr "" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "" @@ -3266,6 +3489,8 @@ msgstr "" #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "" @@ -3278,6 +3503,7 @@ msgstr "" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "" @@ -3311,6 +3537,8 @@ msgstr "" #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "תאריך" @@ -3322,6 +3550,7 @@ msgstr "תאריך" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "" @@ -3333,6 +3562,7 @@ msgstr "" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "" @@ -3344,6 +3574,7 @@ msgstr "" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "" @@ -3355,6 +3586,7 @@ msgstr "" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "" @@ -3400,6 +3632,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "" @@ -3411,6 +3645,7 @@ msgstr "" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "" @@ -3421,6 +3656,7 @@ msgstr "" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "" @@ -3431,6 +3667,7 @@ msgstr "" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "" @@ -3441,6 +3678,7 @@ msgstr "" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "" @@ -3451,6 +3689,7 @@ msgstr "" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "" @@ -3461,6 +3700,7 @@ msgstr "" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "" @@ -3471,6 +3711,7 @@ msgstr "" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "" @@ -3481,6 +3722,7 @@ msgstr "" #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "" @@ -3491,6 +3733,7 @@ msgstr "" #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "" @@ -3510,6 +3753,8 @@ msgstr "" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "" @@ -3522,6 +3767,8 @@ msgstr "" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "" @@ -3546,6 +3793,7 @@ msgstr "" #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "" @@ -3589,6 +3837,8 @@ msgstr "" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "" @@ -3610,6 +3860,7 @@ msgstr "" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "" @@ -3622,6 +3873,7 @@ msgstr "" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "" @@ -3645,6 +3897,8 @@ msgstr "" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "" @@ -3658,6 +3912,7 @@ msgstr "" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "" @@ -3673,6 +3928,7 @@ msgstr "" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "" @@ -3702,6 +3958,7 @@ msgstr "אימייל" #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "לא נמצאו הזמנות" @@ -3774,6 +4031,7 @@ msgstr "" #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "" @@ -3783,6 +4041,7 @@ msgstr "" #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "" @@ -3792,6 +4051,7 @@ msgstr "" #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "" @@ -3801,6 +4061,7 @@ msgstr "" #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "עמוד החשבון" @@ -3847,6 +4108,14 @@ msgstr "עמוד החשבון" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "" @@ -3907,6 +4176,16 @@ msgstr "" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "" @@ -3964,6 +4243,15 @@ msgstr "" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "" @@ -4017,6 +4305,12 @@ msgstr "" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "" @@ -4028,6 +4322,7 @@ msgstr "" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "" @@ -4039,6 +4334,7 @@ msgstr "" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "" @@ -4050,6 +4346,7 @@ msgstr "" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "" @@ -4061,6 +4358,7 @@ msgstr "" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "" @@ -4072,6 +4370,7 @@ msgstr "" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "עמוד הקבלה" @@ -4083,6 +4382,7 @@ msgstr "עמוד הקבלה" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "" @@ -4090,6 +4390,7 @@ msgstr "" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "" @@ -4103,6 +4404,9 @@ msgstr "" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "" @@ -4123,6 +4427,7 @@ msgstr "" #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "" @@ -4133,6 +4438,7 @@ msgstr "" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "" @@ -4144,12 +4450,14 @@ msgstr "" #: adminpages/paymentsettings.php:101 #: adminpages/paymentsettings.php:122 #: adminpages/paymentsettings.php:127 +#: adminpages/paymentsettings.php:125 msgid "Choose a Gateway" msgstr "" #: adminpages/paymentsettings.php:148 #: adminpages/paymentsettings.php:194 #: adminpages/paymentsettings.php:201 +#: adminpages/paymentsettings.php:199 msgid "Currency and Tax Settings" msgstr "" @@ -4161,6 +4469,7 @@ msgstr "" #: adminpages/paymentsettings.php:386 #: adminpages/paymentsettings.php:199 #: adminpages/paymentsettings.php:206 +#: adminpages/paymentsettings.php:204 msgid "Currency" msgstr "" @@ -4169,6 +4478,7 @@ msgstr "" #: adminpages/paymentsettings.php:402 #: adminpages/paymentsettings.php:215 #: adminpages/paymentsettings.php:222 +#: adminpages/paymentsettings.php:220 msgid "Not all currencies will be supported by every gateway. Please check with your gateway." msgstr "" @@ -4179,6 +4489,7 @@ msgstr "" #: adminpages/paymentsettings.php:408 #: adminpages/paymentsettings.php:220 #: adminpages/paymentsettings.php:227 +#: adminpages/paymentsettings.php:225 msgid "Accepted Credit Card Types" msgstr "" @@ -4189,6 +4500,7 @@ msgstr "" #: adminpages/paymentsettings.php:445 #: adminpages/paymentsettings.php:234 #: adminpages/paymentsettings.php:241 +#: adminpages/paymentsettings.php:239 msgid "Sales Tax" msgstr "" @@ -4204,6 +4516,7 @@ msgstr "" #: pages/billing.php:179 #: adminpages/paymentsettings.php:241 #: pages/billing.php:181 +#: adminpages/paymentsettings.php:239 msgid "optional" msgstr "" @@ -4214,6 +4527,7 @@ msgstr "" #: adminpages/paymentsettings.php:448 #: adminpages/paymentsettings.php:237 #: adminpages/paymentsettings.php:244 +#: adminpages/paymentsettings.php:242 msgid "Tax State" msgstr "" @@ -4224,12 +4538,14 @@ msgstr "" #: adminpages/paymentsettings.php:449 #: adminpages/paymentsettings.php:238 #: adminpages/paymentsettings.php:245 +#: adminpages/paymentsettings.php:243 msgid "abbreviation, e.g. \"PA\"" msgstr "" #: adminpages/paymentsettings.php:193 #: adminpages/paymentsettings.php:239 #: adminpages/paymentsettings.php:246 +#: adminpages/paymentsettings.php:244 msgid "Tax Rate" msgstr "" @@ -4240,6 +4556,7 @@ msgstr "" #: adminpages/paymentsettings.php:451 #: adminpages/paymentsettings.php:240 #: adminpages/paymentsettings.php:247 +#: adminpages/paymentsettings.php:245 msgid "decimal, e.g. \"0.06\"" msgstr "" @@ -4255,6 +4572,7 @@ msgstr "" #: adminpages/paymentsettings.php:457 #: adminpages/paymentsettings.php:253 #: adminpages/paymentsettings.php:266 +#: adminpages/paymentsettings.php:264 msgid "Force SSL" msgstr "" @@ -4264,12 +4582,14 @@ msgstr "" #: adminpages/paymentsettings.php:463 #: adminpages/paymentsettings.php:268 #: adminpages/paymentsettings.php:281 +#: adminpages/paymentsettings.php:279 msgid "Yes (with JavaScript redirects)" msgstr "" #: adminpages/paymentsettings.php:214 #: adminpages/paymentsettings.php:270 #: adminpages/paymentsettings.php:283 +#: adminpages/paymentsettings.php:281 msgid "Recommended: Yes. Try the JavaScript redirects setting if you are having issues with infinite redirect loops." msgstr "" @@ -4280,6 +4600,7 @@ msgstr "" #: adminpages/paymentsettings.php:470 #: adminpages/paymentsettings.php:278 #: adminpages/paymentsettings.php:291 +#: adminpages/paymentsettings.php:289 msgid "SSL Seal Code" msgstr "" @@ -4290,12 +4611,14 @@ msgstr "" #: adminpages/paymentsettings.php:228 #: adminpages/paymentsettings.php:287 #: adminpages/paymentsettings.php:306 +#: adminpages/paymentsettings.php:304 msgid "Extra HTTPS URL Filter" msgstr "" #: adminpages/paymentsettings.php:231 #: adminpages/paymentsettings.php:290 #: adminpages/paymentsettings.php:309 +#: adminpages/paymentsettings.php:307 msgid "Pass all generated HTML through a URL filter to add HTTPS to URLs used on secure pages. Check this if you are using SSL and have warnings on your checkout pages." msgstr "" @@ -4313,6 +4636,7 @@ msgstr "פרטים" #: adminpages/reports.php:61 #: adminpages/reports.php:19 #: adminpages/reports.php:18 +#: adminpages/reports.php:21 msgid "Back to Reports Dashboard" msgstr "" @@ -4355,6 +4679,7 @@ msgstr "" #: adminpages/orders.php:1077 #: adminpages/orders.php:1069 #: adminpages/orders.php:1070 +#: adminpages/orders.php:1158 msgid "This Month" msgstr "" @@ -4367,6 +4692,7 @@ msgstr "" #: adminpages/reports/memberships.php:52 #: adminpages/reports/sales.php:53 #: adminpages/reports/sales.php:542 +#: adminpages/reports/sales.php:543 msgid "All Time" msgstr "" @@ -4384,6 +4710,7 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:234 #: classes/class-pmpro-members-list-table.php:233 #: adminpages/reports/login.php:105 +#: adminpages/reports/login.php:111 msgid "All Users" msgstr "" @@ -4482,6 +4809,7 @@ msgstr "" #: adminpages/orders.php:1081 #: adminpages/orders.php:1073 #: adminpages/orders.php:1074 +#: adminpages/orders.php:1162 msgid "This Year" msgstr "" @@ -4498,6 +4826,8 @@ msgstr "" #: adminpages/reports/sales.php:295 #: adminpages/advancedsettings.php:322 #: adminpages/reports/sales.php:313 +#: adminpages/advancedsettings.php:329 +#: adminpages/reports/memberships.php:332 msgid "Daily" msgstr "" @@ -4514,6 +4844,8 @@ msgstr "" #: adminpages/reports/sales.php:296 #: adminpages/advancedsettings.php:328 #: adminpages/reports/sales.php:314 +#: adminpages/advancedsettings.php:335 +#: adminpages/reports/memberships.php:333 msgid "Monthly" msgstr "" @@ -4528,12 +4860,14 @@ msgstr "" #: adminpages/reports/memberships.php:335 #: adminpages/reports/sales.php:297 #: adminpages/reports/sales.php:315 +#: adminpages/reports/memberships.php:334 msgid "Annual" msgstr "" #: adminpages/reports/memberships.php:283 #: adminpages/reports/memberships.php:270 #: adminpages/reports/memberships.php:338 +#: adminpages/reports/memberships.php:337 msgid "Signups vs. All Cancellations" msgstr "הרשמה נגד כל הביטולים" @@ -4542,12 +4876,14 @@ msgstr "הרשמה נגד כל הביטולים" #: adminpages/reports/memberships.php:271 #: adminpages/reports/memberships.php:299 #: adminpages/reports/memberships.php:339 +#: adminpages/reports/memberships.php:338 msgid "Signups vs. Cancellations" msgstr "הרשמה נגד ביטול" #: adminpages/reports/memberships.php:285 #: adminpages/reports/memberships.php:272 #: adminpages/reports/memberships.php:340 +#: adminpages/reports/memberships.php:339 msgid "Signups vs. Expirations" msgstr "ההרשמה נגד תוקף" @@ -4580,6 +4916,8 @@ msgstr "ההרשמה נגד תוקף" #: adminpages/reports/sales.php:314 #: adminpages/reports/sales.php:321 #: adminpages/reports/sales.php:332 +#: adminpages/reports/memberships.php:341 +#: adminpages/reports/memberships.php:352 msgid "for" msgstr "" @@ -4594,6 +4932,7 @@ msgstr "" #: adminpages/reports/memberships.php:385 #: adminpages/reports/sales.php:342 #: adminpages/reports/sales.php:360 +#: adminpages/reports/memberships.php:384 msgid "Generate Report" msgstr "" @@ -4677,6 +5016,7 @@ msgstr "מחיר" #: includes/functions.php:2842 #: includes/functions.php:2873 #: includes/functions.php:2895 +#: includes/functions.php:2897 msgid "Subtotal" msgstr "סכום לא סופי" @@ -4704,6 +5044,7 @@ msgstr "" #: includes/cleanup.php:24 #: classes/class.memberorder.php:959 #: classes/class.memberorder.php:1001 +#: classes/class.memberorder.php:1010 #, php-format msgid "There was an error canceling the subscription for user with ID=%s. You will want to check your payment gateway to see if their subscription is still active." msgstr "" @@ -4741,6 +5082,7 @@ msgstr "" #: classes/class.pmproemail.php:178 #: classes/class.pmproemail.php:269 #: classes/class.pmproemail.php:262 +#: classes/class.pmproemail.php:395 #, php-format msgid "Your membership confirmation for %s" msgstr "" @@ -4841,6 +5183,18 @@ msgstr "" #: classes/class.pmproemail.php:764 #: adminpages/orders.php:576 #: adminpages/orders.php:1343 +#: adminpages/orders.php:697 +#: adminpages/orders.php:1437 +#: classes/class.pmproemail.php:465 +#: classes/class.pmproemail.php:471 +#: classes/class.pmproemail.php:477 +#: classes/class.pmproemail.php:567 +#: classes/class.pmproemail.php:573 +#: classes/class.pmproemail.php:895 +#: classes/class.pmproemail.php:897 +#: classes/gateways/class.pmprogateway_braintree.php:516 +#: classes/gateways/class.pmprogateway_stripe.php:906 +#: includes/profile.php:454 msgid "Discount Code" msgstr "" @@ -4880,6 +5234,11 @@ msgstr "" #: classes/class.pmproemail.php:771 #: classes/class.pmproemail.php:905 #: classes/class.pmproemail.php:950 +#: classes/class.pmproemail.php:485 +#: classes/class.pmproemail.php:583 +#: classes/class.pmproemail.php:904 +#: classes/class.pmproemail.php:1038 +#: classes/class.pmproemail.php:1083 #, php-format msgid "This membership will expire on %s." msgstr "" @@ -4897,6 +5256,7 @@ msgstr "" #: classes/class.pmproemail.php:463 #: classes/class.pmproemail.php:475 #: classes/class.pmproemail.php:468 +#: classes/class.pmproemail.php:601 #, php-format msgid "Your billing information has been updated at %s" msgstr "" @@ -4905,6 +5265,7 @@ msgstr "" #: classes/class.pmproemail.php:513 #: classes/class.pmproemail.php:525 #: classes/class.pmproemail.php:518 +#: classes/class.pmproemail.php:651 #, php-format msgid "Billing information has been updated for %s at %s" msgstr "" @@ -4952,6 +5313,7 @@ msgstr "קבלה להרשמה" #: classes/class.pmproemail.php:794 #: classes/class.pmproemail.php:806 #: classes/class.pmproemail.php:799 +#: classes/class.pmproemail.php:932 #, php-format msgid "Your trial at %s is ending soon" msgstr "" @@ -4964,6 +5326,7 @@ msgstr "" #: classes/class.pmproemail.php:831 #: classes/class.pmproemail.php:843 #: classes/class.pmproemail.php:836 +#: classes/class.pmproemail.php:969 #, php-format msgid "Your membership at %s has ended" msgstr "" @@ -4976,6 +5339,7 @@ msgstr "" #: classes/class.pmproemail.php:858 #: classes/class.pmproemail.php:870 #: classes/class.pmproemail.php:863 +#: classes/class.pmproemail.php:996 #, php-format msgid "Your membership at %s will end soon" msgstr "" @@ -4988,6 +5352,7 @@ msgstr "" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:900 #: classes/class.pmproemail.php:893 +#: classes/class.pmproemail.php:1026 #, php-format msgid "Your membership at %s has been changed" msgstr "" @@ -5044,6 +5409,7 @@ msgstr "" #: classes/class.pmproemail.php:933 #: classes/class.pmproemail.php:945 #: classes/class.pmproemail.php:938 +#: classes/class.pmproemail.php:1071 #, php-format msgid "Membership for %s at %s has been changed" msgstr "" @@ -5148,6 +5514,7 @@ msgstr "תשלום חלקי שלא יכולנו להמנע ממנו נעשה. א #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:167 +#: paid-memberships-pro.php:173 msgid "Authorize.net" msgstr "Authorize.net" @@ -5215,12 +5582,15 @@ msgstr "" #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:167 #: paid-memberships-pro.php:168 +#: classes/gateways/class.pmprogateway_braintree.php:258 +#: paid-memberships-pro.php:174 msgid "Braintree Payments" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:132 #: classes/gateways/class.pmprogateway_braintree.php:119 #: classes/gateways/class.pmprogateway_braintree.php:308 +#: classes/gateways/class.pmprogateway_braintree.php:315 msgid "Braintree Settings" msgstr "" @@ -5234,6 +5604,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:124 #: classes/gateways/class.pmprogateway_braintree.php:313 #: classes/gateways/class.pmprogateway_cybersource.php:94 +#: classes/gateways/class.pmprogateway_braintree.php:320 msgid "Merchant ID" msgstr "" @@ -5243,6 +5614,7 @@ msgstr "" #: adminpages/paymentsettings.php:311 #: classes/gateways/class.pmprogateway_braintree.php:132 #: classes/gateways/class.pmprogateway_braintree.php:321 +#: classes/gateways/class.pmprogateway_braintree.php:328 msgid "Public Key" msgstr "" @@ -5252,6 +5624,7 @@ msgstr "" #: adminpages/paymentsettings.php:319 #: classes/gateways/class.pmprogateway_braintree.php:140 #: classes/gateways/class.pmprogateway_braintree.php:329 +#: classes/gateways/class.pmprogateway_braintree.php:336 msgid "Private Key" msgstr "" @@ -5261,6 +5634,7 @@ msgstr "" #: adminpages/paymentsettings.php:327 #: classes/gateways/class.pmprogateway_braintree.php:148 #: classes/gateways/class.pmprogateway_braintree.php:337 +#: classes/gateways/class.pmprogateway_braintree.php:344 msgid "Client-Side Encryption Key" msgstr "" @@ -5278,6 +5652,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:182 #: classes/gateways/class.pmprogateway_stripe.php:192 #: classes/gateways/class.pmprogateway_braintree.php:345 +#: classes/gateways/class.pmprogateway_braintree.php:352 msgid "Web Hook URL" msgstr "" @@ -5288,6 +5663,7 @@ msgstr "" #: adminpages/paymentsettings.php:523 #: classes/gateways/class.pmprogateway_braintree.php:160 #: classes/gateways/class.pmprogateway_braintree.php:348 +#: classes/gateways/class.pmprogateway_braintree.php:355 msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to" msgstr "" @@ -5314,6 +5690,9 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1282 #: classes/gateways/class.pmprogateway_stripe.php:1288 #: classes/gateways/class.pmprogateway_stripe.php:747 +#: adminpages/orders.php:676 +#: classes/gateways/class.pmprogateway_braintree.php:461 +#: classes/gateways/class.pmprogateway_stripe.php:855 msgid "Payment Information" msgstr "" @@ -5340,6 +5719,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1283 #: classes/gateways/class.pmprogateway_stripe.php:1289 #: classes/gateways/class.pmprogateway_stripe.php:748 +#: classes/gateways/class.pmprogateway_braintree.php:462 +#: classes/gateways/class.pmprogateway_stripe.php:856 #, php-format msgid "We Accept %s" msgstr "" @@ -5373,6 +5754,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1322 #: classes/gateways/class.pmprogateway_stripe.php:781 #: pages/billing.php:377 +#: classes/gateways/class.pmprogateway_braintree.php:482 +#: classes/gateways/class.pmprogateway_stripe.php:889 msgid "Card Number" msgstr "מספר כרטיס" @@ -5399,6 +5782,7 @@ msgstr "מספר כרטיס" #: classes/gateways/class.pmprogateway_braintree.php:503 #: pages/billing.php:410 #: pages/billing.php:417 +#: classes/gateways/class.pmprogateway_braintree.php:510 msgid "CVV" msgstr "ספרות בגב הכרטיס\t" @@ -5426,6 +5810,7 @@ msgstr "ספרות בגב הכרטיס\t" #: pages/billing.php:411 #: pages/checkout.php:425 #: pages/billing.php:418 +#: classes/gateways/class.pmprogateway_braintree.php:511 msgid "what's this?" msgstr "איפה זה?" @@ -5458,6 +5843,8 @@ msgstr "איפה זה?" #: classes/gateways/class.pmprogateway_stripe.php:1338 #: classes/gateways/class.pmprogateway_stripe.php:1344 #: classes/gateways/class.pmprogateway_stripe.php:803 +#: classes/gateways/class.pmprogateway_braintree.php:518 +#: classes/gateways/class.pmprogateway_stripe.php:911 msgid "Apply" msgstr "" @@ -5473,6 +5860,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1036 #: classes/gateways/class.pmprogateway_stripe.php:1040 #: classes/gateways/class.pmprogateway_braintree.php:574 +#: classes/gateways/class.pmprogateway_braintree.php:581 msgid "Unknown error: Initial payment failed." msgstr "שגיאה לא ידועה: התשלום נכשל." @@ -5482,6 +5870,7 @@ msgstr "שגיאה לא ידועה: התשלום נכשל." #: classes/gateways/class.pmprogateway_braintree.php:478 #: classes/gateways/class.pmprogateway_braintree.php:650 #: classes/gateways/class.pmprogateway_braintree.php:653 +#: classes/gateways/class.pmprogateway_braintree.php:660 msgid "Error during settlement:" msgstr "" @@ -5491,6 +5880,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:487 #: classes/gateways/class.pmprogateway_braintree.php:659 #: classes/gateways/class.pmprogateway_braintree.php:662 +#: classes/gateways/class.pmprogateway_braintree.php:669 msgid "Error during charge:" msgstr "" @@ -5501,6 +5891,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:579 #: classes/gateways/class.pmprogateway_braintree.php:762 #: classes/gateways/class.pmprogateway_braintree.php:765 +#: classes/gateways/class.pmprogateway_braintree.php:772 msgid "Failed to update customer." msgstr "" @@ -5511,6 +5902,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:627 #: classes/gateways/class.pmprogateway_braintree.php:810 #: classes/gateways/class.pmprogateway_braintree.php:813 +#: classes/gateways/class.pmprogateway_braintree.php:820 msgid "Failed to create customer." msgstr "" @@ -5521,6 +5913,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:634 #: classes/gateways/class.pmprogateway_braintree.php:817 #: classes/gateways/class.pmprogateway_braintree.php:820 +#: classes/gateways/class.pmprogateway_braintree.php:827 msgid "Error creating customer record with Braintree:" msgstr "" @@ -5570,6 +5963,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:423 #: classes/gateways/class.pmprogateway_braintree.php:1036 #: classes/gateways/class.pmprogateway_braintree.php:1039 +#: classes/gateways/class.pmprogateway_braintree.php:1046 msgid "Could not find the subscription." msgstr "" @@ -5588,6 +5982,7 @@ msgstr "" #: paid-memberships-pro.php:158 #: paid-memberships-pro.php:160 #: paid-memberships-pro.php:161 +#: paid-memberships-pro.php:167 msgid "Pay by Check" msgstr "" @@ -5708,6 +6103,7 @@ msgstr "" #: paid-memberships-pro.php:161 #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:164 +#: paid-memberships-pro.php:170 msgid "PayPal Website Payments Pro" msgstr "" @@ -5719,6 +6115,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:141 #: classes/gateways/class.pmprogateway_paypalstandard.php:133 #: classes/gateways/class.pmprogateway_paypalexpress.php:151 +#: classes/gateways/class.pmprogateway_paypalexpress.php:152 msgid "PayPal Settings" msgstr "הגדרות פייפאל" @@ -5741,6 +6138,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:162 #: classes/gateways/class.pmprogateway_paypalstandard.php:154 #: classes/gateways/class.pmprogateway_paypalexpress.php:172 +#: classes/gateways/class.pmprogateway_paypalexpress.php:173 msgid "Gateway Account Email" msgstr "" @@ -5761,6 +6159,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalstandard.php:162 #: classes/gateways/class.pmprogateway_twocheckout.php:120 #: classes/gateways/class.pmprogateway_paypalexpress.php:180 +#: classes/gateways/class.pmprogateway_paypalexpress.php:181 +#: classes/gateways/class.pmprogateway_twocheckout.php:127 msgid "API Username" msgstr "" @@ -5781,6 +6181,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalstandard.php:170 #: classes/gateways/class.pmprogateway_twocheckout.php:129 #: classes/gateways/class.pmprogateway_paypalexpress.php:188 +#: classes/gateways/class.pmprogateway_paypalexpress.php:189 +#: classes/gateways/class.pmprogateway_twocheckout.php:136 msgid "API Password" msgstr "" @@ -5795,6 +6197,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:186 #: classes/gateways/class.pmprogateway_paypalstandard.php:178 #: classes/gateways/class.pmprogateway_paypalexpress.php:196 +#: classes/gateways/class.pmprogateway_paypalexpress.php:197 msgid "API Signature" msgstr "" @@ -5810,6 +6213,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:205 #: classes/gateways/class.pmprogateway_paypalstandard.php:186 #: classes/gateways/class.pmprogateway_paypalexpress.php:215 +#: classes/gateways/class.pmprogateway_paypalexpress.php:216 msgid "IPN Handler URL" msgstr "" @@ -5837,6 +6241,7 @@ msgstr "" #: pages/checkout.php:218 #: classes/gateways/class.pmprogateway_paypalexpress.php:498 #: classes/gateways/class.pmprogateway_paypalexpress.php:502 +#: classes/gateways/class.pmprogateway_paypalexpress.php:503 msgid "Check Out with PayPal" msgstr "שלם עם פייפאל" @@ -5859,6 +6264,7 @@ msgstr "שלם עם פייפאל" #: classes/gateways/class.pmprogateway_paypalexpress.php:503 #: classes/gateways/class.pmprogateway_paypalexpress.php:507 #: pages/checkout.php:538 +#: classes/gateways/class.pmprogateway_paypalexpress.php:508 msgid "Submit and Check Out" msgstr "שלח ושלם" @@ -5885,6 +6291,8 @@ msgstr "שלח ושלם" #: classes/gateways/class.pmprogateway_paypalexpress.php:503 #: classes/gateways/class.pmprogateway_paypalexpress.php:507 #: pages/checkout.php:538 +#: classes/gateways/class.pmprogateway_paypalexpress.php:508 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Submit and Confirm" msgstr "" @@ -5911,6 +6319,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:854 #: classes/gateways/class.pmprogateway_paypal.php:726 #: classes/gateways/class.pmprogateway_paypalexpress.php:865 +#: classes/gateways/class.pmprogateway_paypalexpress.php:866 msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward." msgstr "אנא צור עימנו קשר ונעזור לך לבטל את התשלום." @@ -5927,6 +6336,8 @@ msgstr "אנא צור עימנו קשר ונעזור לך לבטל את התשל #: paid-memberships-pro.php:162 #: classes/gateways/class.pmprogateway_paypalexpress.php:94 #: paid-memberships-pro.php:163 +#: classes/gateways/class.pmprogateway_paypalexpress.php:95 +#: paid-memberships-pro.php:169 msgid "PayPal Express" msgstr "פייפאל אקספרס" @@ -5939,6 +6350,7 @@ msgstr "פייפאל אקספרס" #: classes/gateways/class.pmprogateway_paypal.php:199 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 #: classes/gateways/class.pmprogateway_paypalexpress.php:218 +#: classes/gateways/class.pmprogateway_paypalexpress.php:219 msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to " msgstr "" @@ -5962,6 +6374,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:401 #: classes/gateways/class.pmprogateway_paypalexpress.php:352 #: classes/gateways/class.pmprogateway_paypalexpress.php:411 +#: classes/gateways/class.pmprogateway_paypalexpress.php:353 +#: classes/gateways/class.pmprogateway_paypalexpress.php:412 msgid "The PayPal Token was lost." msgstr "האות מפייפאל אבד." @@ -5976,6 +6390,7 @@ msgstr "האות מפייפאל אבד." #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:166 +#: paid-memberships-pro.php:172 msgid "PayPal Standard" msgstr "פייפאל סטנדרט" @@ -6005,6 +6420,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:258 #: classes/gateways/class.pmprogateway_stripe.php:216 #: paid-memberships-pro.php:162 +#: classes/gateways/class.pmprogateway_stripe.php:234 +#: paid-memberships-pro.php:168 msgid "Stripe" msgstr "" @@ -6027,6 +6444,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:570 #: classes/gateways/class.pmprogateway_stripe.php:576 #: classes/gateways/class.pmprogateway_stripe.php:340 +#: classes/gateways/class.pmprogateway_stripe.php:366 msgid "Secret Key" msgstr "" @@ -6042,6 +6460,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:554 #: classes/gateways/class.pmprogateway_stripe.php:560 #: classes/gateways/class.pmprogateway_stripe.php:324 +#: classes/gateways/class.pmprogateway_stripe.php:350 msgid "Publishable Key" msgstr "" @@ -6057,6 +6476,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:629 #: classes/gateways/class.pmprogateway_stripe.php:635 #: classes/gateways/class.pmprogateway_stripe.php:399 +#: adminpages/orders.php:570 +#: classes/gateways/class.pmprogateway_stripe.php:425 msgid "Show Billing Address Fields" msgstr "הצג שדות פרטי חיוב" @@ -6071,6 +6492,7 @@ msgstr "הצג שדות פרטי חיוב" #: classes/gateways/class.pmprogateway_stripe.php:638 #: classes/gateways/class.pmprogateway_stripe.php:644 #: classes/gateways/class.pmprogateway_stripe.php:408 +#: classes/gateways/class.pmprogateway_stripe.php:434 msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.
If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "" @@ -6098,6 +6520,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "" @@ -6147,6 +6570,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2653 #: classes/gateways/class.pmprogateway_stripe.php:2649 #: pages/billing.php:441 +#: classes/gateways/class.pmprogateway_stripe.php:3106 msgid "Update" msgstr "" @@ -6163,6 +6587,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "" @@ -6213,6 +6638,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "" @@ -6253,6 +6680,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "" @@ -6288,6 +6717,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "" @@ -6310,6 +6741,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "" @@ -6329,6 +6761,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "" @@ -6341,6 +6774,7 @@ msgstr "" #: paid-memberships-pro.php:132 #: paid-memberships-pro.php:133 #: paid-memberships-pro.php:134 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "" @@ -6348,24 +6782,28 @@ msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:108 #: classes/gateways/class.pmprogateway_twocheckout.php:116 #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:123 #: classes/gateways/class.pmprogateway_twocheckout.php:125 #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:132 #: classes/gateways/class.pmprogateway_twocheckout.php:134 #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:141 #: classes/gateways/class.pmprogateway_twocheckout.php:152 #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "" @@ -6375,12 +6813,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:137 #: classes/gateways/class.pmprogateway_twocheckout.php:157 #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:150 #: classes/gateways/class.pmprogateway_twocheckout.php:161 #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "" @@ -6391,12 +6831,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:145 #: classes/gateways/class.pmprogateway_twocheckout.php:166 #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:158 #: classes/gateways/class.pmprogateway_twocheckout.php:169 #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "" @@ -6404,6 +6846,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:192 #: classes/gateways/class.pmprogateway_twocheckout.php:214 #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "" @@ -7384,6 +7827,7 @@ msgstr "‎ו" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "‎הירשם עבור !!name!! עכשיו" @@ -7430,6 +7874,9 @@ msgstr "" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "‎כלום" @@ -7441,6 +7888,7 @@ msgstr "‎הרישיון שלך תקף‫.‬" #: includes/license.php:81 #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "" @@ -7461,6 +7909,7 @@ msgstr "" #: adminpages/license.php:49 #: adminpages/dashboard.php:178 #: adminpages/license.php:41 +#: adminpages/license.php:53 msgid "Your license is invalid or expired." msgstr "" @@ -7473,6 +7922,7 @@ msgstr "" #: adminpages/license.php:59 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "" @@ -7586,6 +8036,8 @@ msgstr "" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "" @@ -7693,6 +8145,9 @@ msgstr "‎התנתק" #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "‎דרגה" @@ -7761,6 +8216,7 @@ msgstr "" #: includes/profile.php:759 #: includes/profile.php:755 #: pages/billing.php:166 +#: includes/profile.php:795 msgid "First Name" msgstr "‎שם פרטי" @@ -7781,6 +8237,7 @@ msgstr "‎שם פרטי" #: includes/profile.php:760 #: includes/profile.php:756 #: pages/billing.php:170 +#: includes/profile.php:796 msgid "Last Name" msgstr "‎שם משפחה" @@ -8285,6 +8742,10 @@ msgstr "קבלה #%s ב%s" #: adminpages/orders.php:391 #: adminpages/orders.php:1424 #: adminpages/orders.php:1434 +#: adminpages/orders.php:439 +#: adminpages/orders.php:1539 +#: adminpages/orders.php:1549 +#: includes/profile.php:473 msgid "Print" msgstr "" @@ -8335,6 +8796,7 @@ msgstr "אמצעי תשלום" #: pages/invoice.php:97 #: pages/invoice.php:125 #: includes/profile.php:413 +#: includes/profile.php:453 msgid "Total Billed" msgstr "סה’’כ החיוב" @@ -8359,6 +8821,7 @@ msgstr "" #: pages/confirmation.php:103 #: pages/confirmation.php:138 #: shortcodes/pmpro_account.php:247 +#: pages/confirmation.php:65 msgid "Pending" msgstr "" @@ -8386,6 +8849,7 @@ msgstr "" #: includes/functions.php:2857 #: includes/functions.php:2888 #: includes/functions.php:2910 +#: includes/functions.php:2912 msgid "Coupon" msgstr "" @@ -8471,6 +8935,7 @@ msgstr "‏← חזור לעמוד הראשי" #: paid-memberships-pro.php:157 #: paid-memberships-pro.php:159 #: paid-memberships-pro.php:160 +#: paid-memberships-pro.php:166 msgid "Testing Only" msgstr "בדיקה בלבד" @@ -8483,6 +8948,7 @@ msgstr "בדיקה בלבד" #: paid-memberships-pro.php:162 #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:165 +#: paid-memberships-pro.php:171 msgid "PayPal Payflow Pro/PayPal Pro" msgstr "" @@ -8495,6 +8961,7 @@ msgstr "" #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:168 #: paid-memberships-pro.php:169 +#: paid-memberships-pro.php:175 msgid "Cybersource" msgstr "" @@ -8502,6 +8969,7 @@ msgstr "" #: paid-memberships-pro.php:156 #: paid-memberships-pro.php:194 #: paid-memberships-pro.php:195 +#: paid-memberships-pro.php:201 msgid "Once a month" msgstr "פעם בחודש" @@ -8619,6 +9087,7 @@ msgstr "שגיאה בעדכון פרטי חיוב" #: classes/class.pmproemail.php:907 #: includes/email.php:459 #: classes/class.pmproemail.php:900 +#: classes/class.pmproemail.php:1033 msgid "Your membership has been cancelled." msgstr "חשבונך בוטל." @@ -8941,6 +9410,7 @@ msgstr "‏%s החשבון התבטל על ידי חברת התשלומים. א #: pages/account.php:19 #: includes/email-templates.php:68 #: shortcodes/pmpro_account.php:43 +#: adminpages/orders.php:1431 msgid "Billing" msgstr "חיוב" @@ -8995,6 +9465,8 @@ msgstr "ערוך פרופיל" #: includes/profile.php:921 #: includes/profile.php:880 #: includes/profile.php:917 +#: includes/profile.php:920 +#: includes/profile.php:957 msgid "Change Password" msgstr "\\ שנה סיסמה" @@ -9093,6 +9565,8 @@ msgstr "" #: includes/profile.php:515 #: includes/profile.php:511 #: adminpages/advancedsettings.php:331 +#: adminpages/advancedsettings.php:338 +#: includes/profile.php:551 msgid "Never" msgstr "" @@ -9277,6 +9751,7 @@ msgstr "‎ה%d תשלומים הראשונים שלך יעלו %s." #: pages/account.php:87 #: pages/account.php:91 #: adminpages/emailtemplates.php:156 +#: adminpages/emailtemplates.php:149 msgid "Billing Information" msgstr "‎פרטי חיוב" @@ -9393,6 +9868,18 @@ msgstr "‎נהל את החשבון שלך" #: js/blocks.build.js:1342 #: js/blocks.build.js:1502 #: classes/class-pmpro-admin-activity-email.php:349 +#: blocks/account-invoices-section/block.js:47 +#: blocks/account-links-section/block.js:47 +#: blocks/account-membership-section/block.js:45 +#: blocks/account-page/block.js:72 +#: blocks/account-profile-section/block.js:45 +#: blocks/billing-page/block.js:44 +#: blocks/cancel-page/block.js:44 +#: blocks/checkout-page/block.js:58 +#: blocks/confirmation-page/block.js:46 +#: blocks/invoice-page/block.js:45 +#: blocks/levels-page/block.js:44 +#: blocks/member-profile-edit/block.js:37 msgid "Paid Memberships Pro" msgstr "" @@ -9438,6 +9925,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:76 #: classes/gateways/class.pmprogateway_stripe.php:82 #: classes/gateways/class.pmprogateway_stripe.php:1338 +#: classes/gateways/class.pmprogateway_stripe.php:1463 msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade." msgstr "" @@ -9478,6 +9966,7 @@ msgstr "" #: includes/adminpages.php:52 #: includes/adminpages.php:158 #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Members" msgstr "" @@ -9522,41 +10011,49 @@ msgstr "" #: adminpages/advancedsettings.php:106 #: includes/updates/upgrade_1.php:7 #: adminpages/advancedsettings.php:108 +#: adminpages/advancedsettings.php:116 msgid "This content is for !!levels!! members only.
Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -9564,93 +10061,111 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -9676,6 +10191,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -9746,6 +10262,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -9851,6 +10368,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -9889,6 +10407,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -9901,31 +10420,39 @@ msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 msgid "%d discount codes found." msgstr "" @@ -9951,6 +10478,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -9969,6 +10503,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -9977,15 +10517,18 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -10026,192 +10569,241 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:960 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:170 #: includes/privacy.php:363 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -10229,6 +10821,7 @@ msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -10236,14 +10829,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -10260,27 +10856,34 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -10290,6 +10893,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -10297,6 +10902,7 @@ msgstr "" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -10304,6 +10910,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -10311,6 +10918,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -10318,6 +10926,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -10325,6 +10934,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -10332,6 +10942,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -10370,78 +10981,91 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -10451,12 +11075,15 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -10464,18 +11091,21 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" @@ -10485,11 +11115,13 @@ msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" @@ -10499,6 +11131,7 @@ msgstr "" #: adminpages/paymentsettings.php:260 #: adminpages/paymentsettings.php:273 +#: adminpages/paymentsettings.php:271 msgid "Your Site URL starts with https:// and so PMPro will allow your entire site to be served over HTTPS." msgstr "" @@ -10530,6 +11163,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -10540,6 +11174,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -10582,21 +11217,25 @@ msgid "Logins This Year" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -10755,51 +11394,63 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:962 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -10812,6 +11463,8 @@ msgstr "" #: includes/email.php:465 #: classes/class.pmproemail.php:898 #: classes/class.pmproemail.php:943 +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 msgid "The new level is %s." msgstr "" @@ -10824,30 +11477,36 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -10859,14 +11518,17 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:91 #: classes/gateways/class.pmprogateway_stripe.php:97 #: classes/gateways/class.pmprogateway_stripe.php:1353 +#: classes/gateways/class.pmprogateway_stripe.php:1478 msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" @@ -10880,21 +11542,30 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:750 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -10902,11 +11573,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -11184,17 +11858,20 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:185 #: classes/gateways/class.pmprogateway_paypalexpress.php:194 #: classes/gateways/class.pmprogateway_paypalexpress.php:204 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 msgid "Confirmation Step" msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -11203,6 +11880,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -11211,6 +11889,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -11226,6 +11905,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -11234,6 +11914,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -11245,6 +11926,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -11256,6 +11938,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -11267,6 +11950,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -11275,6 +11959,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -11286,6 +11971,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -11297,6 +11983,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -11305,6 +11992,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -11316,6 +12004,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -11324,6 +12013,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -11347,6 +12037,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -11363,6 +12055,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -11371,6 +12065,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -11379,6 +12074,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -11387,6 +12083,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -11394,6 +12091,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -11402,6 +12100,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -11415,6 +12114,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -11423,6 +12124,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -11431,6 +12133,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -11440,6 +12143,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -11457,6 +12162,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -11465,6 +12172,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -11486,6 +12194,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -11494,6 +12204,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -11502,6 +12213,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -11510,6 +12222,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -11518,6 +12231,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -11526,6 +12240,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -11534,6 +12249,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -11542,6 +12258,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -11550,6 +12267,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -11558,6 +12276,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -11566,6 +12285,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -11578,6 +12298,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -11586,6 +12307,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -11594,6 +12316,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -11602,6 +12325,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -11610,6 +12334,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -11653,6 +12378,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "" @@ -11664,6 +12391,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 msgid "Error: Unkown error while refunding charge #%s" msgstr "" @@ -11673,6 +12401,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -11693,6 +12422,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -11701,6 +12434,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -11710,6 +12444,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -11719,6 +12454,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -11730,6 +12466,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -11741,6 +12478,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -11752,6 +12490,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -11763,6 +12502,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" @@ -11797,6 +12537,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -11809,6 +12550,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -11821,6 +12563,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -13611,14 +14354,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -13627,18 +14373,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -13650,6 +14400,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -13782,6 +14533,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -13895,6 +14647,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -13902,6 +14655,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -13933,6 +14687,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -13942,6 +14697,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -13949,6 +14705,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -14048,6 +14805,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -14055,6 +14814,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -14062,6 +14822,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -14069,6 +14830,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -14140,126 +14902,148 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -14271,6 +15055,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -14368,6 +15155,7 @@ msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -14393,6 +15181,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -14431,6 +15220,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -14446,6 +15250,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -14461,6 +15266,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -14493,6 +15299,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -14505,6 +15312,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -14530,11 +15338,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -14542,6 +15355,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -14549,6 +15363,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -14571,6 +15386,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -14596,6 +15412,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -14603,6 +15420,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -14635,6 +15453,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -14657,6 +15476,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -14667,11 +15487,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -14691,6 +15522,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -14704,6 +15536,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -14713,6 +15546,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -14722,10 +15556,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -14736,6 +15572,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -14743,6 +15580,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -14752,6 +15590,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -14761,12 +15600,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -14774,6 +15616,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -14782,6 +15626,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -14789,6 +15634,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -14796,22 +15642,26 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -14869,12 +15719,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -14884,6 +15736,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -14893,6 +15746,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -14902,54 +15756,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -14960,42 +15824,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -15010,51 +15884,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -15062,6 +15948,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -15069,6 +15956,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -15076,6 +15964,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -15084,6 +15973,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -15097,6 +15988,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -15117,19 +16009,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -15139,31 +16035,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -15189,21 +16093,25 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" @@ -15273,26 +16181,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -15301,51 +16215,62 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -15359,19 +16284,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -15402,3 +16331,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-it_IT.mo b/languages/paid-memberships-pro-it_IT.mo index 7ef485620..b06b8426e 100644 Binary files a/languages/paid-memberships-pro-it_IT.mo and b/languages/paid-memberships-pro-it_IT.mo differ diff --git a/languages/paid-memberships-pro-it_IT.po b/languages/paid-memberships-pro-it_IT.po index 41c1fae15..e175514ef 100644 --- a/languages/paid-memberships-pro-it_IT.po +++ b/languages/paid-memberships-pro-it_IT.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:20:54+00:00\n" +"POT-Creation-Date: 2022-05-05T20:37:35+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -99,6 +99,7 @@ msgstr "Controlla di nuovo" #: adminpages/orders.php:1014 #: includes/metaboxes.php:19 #: adminpages/orders.php:1015 +#: adminpages/orders.php:1103 msgid "All" msgstr "Tutti" @@ -149,6 +150,7 @@ msgstr "Tipo" #: adminpages/membershiplevels.php:296 #: adminpages/membershiplevels.php:298 #: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "Descrizione" @@ -246,6 +248,11 @@ msgstr "Attivato %s" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "Elimina" @@ -322,6 +329,18 @@ msgstr "WordPress.org" #: adminpages/orders.php:913 #: adminpages/orders.php:1537 #: adminpages/orders.php:1546 +#: adminpages/orders.php:704 +#: adminpages/orders.php:996 +#: adminpages/orders.php:1689 +#: adminpages/orders.php:1698 +#: classes/class.pmproemail.php:261 +#: classes/class.pmproemail.php:327 +#: includes/profile.php:167 +#: includes/profile.php:483 +#: includes/profile.php:484 +#: includes/profile.php:556 +#: includes/profile.php:557 +#: includes/profile.php:558 msgid "N/A" msgstr "N/A" @@ -524,6 +543,11 @@ msgstr "Pagamento & SSL" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "Email" @@ -539,6 +563,7 @@ msgstr "Avanzate" #: adminpages/advancedsettings.php:42 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "Impostazioni avanzate aggiornate." @@ -559,6 +584,7 @@ msgstr "Per favore Accedi per vedere questo contenuto. (total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "Il numero totale di ricorrenze per questo livello, incluso il periodo di prova (se applicabile) ma escluso il pagamento iniziale. Lascia a zero se l'iscrizione è indefinita." @@ -1597,6 +1700,8 @@ msgstr "Il numero totale di ricorrenze per questo livello, incl #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "Periodo di prova personalizzato" @@ -1614,6 +1719,8 @@ msgstr "Periodo di prova personalizzato" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "Seleziona per aggiungere un periodo di prova personalizzato." @@ -1631,6 +1738,7 @@ msgstr "Seleziona per aggiungere un periodo di prova personalizzato." #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "Pagamento periodo di prova" @@ -1648,6 +1756,7 @@ msgstr "Pagamento periodo di prova" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "per i primi" @@ -1665,6 +1774,7 @@ msgstr "per i primi" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "pagamenti" @@ -1683,6 +1793,7 @@ msgstr "pagamenti" #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "Scadenza iscrizione" @@ -1700,6 +1811,7 @@ msgstr "Scadenza iscrizione" #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "Seleziona per impostare la scadenza dell'iscrizione." @@ -1719,6 +1831,8 @@ msgstr "Seleziona per impostare la scadenza dell'iscrizione." #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "Scade entro" @@ -1736,6 +1850,8 @@ msgstr "Scade entro" #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "Imposta la durata dell'iscrizione. Tenere in considerazione che quando l'iscrizione scade verranno annullati tutti i successivi pagamenti anche quelli di eventuali iscrizioni ricorsive, se ce ne fossero." @@ -1746,6 +1862,7 @@ msgstr "Imposta la durata dell'iscrizione. Tenere in considerazione che quando l #: adminpages/discountcodes.php:557 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "Codici sconto" @@ -1756,6 +1873,7 @@ msgstr "Codici sconto" #: adminpages/discountcodes.php:567 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "Cerca codici sconto" @@ -1769,6 +1887,7 @@ msgstr "Cerca codici sconto" #: adminpages/reports/login.php:83 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "Cerca" @@ -1779,6 +1898,7 @@ msgstr "Cerca" #: adminpages/discountcodes.php:588 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "Inizio" @@ -1809,6 +1929,8 @@ msgstr "Inizio" #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "Scade" @@ -1820,6 +1942,7 @@ msgstr "Scade" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "Livelli" @@ -1869,6 +1992,7 @@ msgstr "I codici sconto permettono di offrire l'iscrizione a prezzi scontati sol #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "modifica" @@ -1933,6 +2057,7 @@ msgstr "Emails" #: adminpages/emailsettings.php:70 #: adminpages/emailsettings.php:61 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "Il sistema invia le email dall'indirizzo wordpress@yourdomain.com. Puoi cambiare questa impostazione usando il campo seguente." @@ -1944,22 +2069,26 @@ msgstr "Per modificare l'aspetto delle email generate dal sistema, aggiungi i fi #: adminpages/emailsettings.php:78 #: adminpages/emailsettings.php:69 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "Email Mittente" #: adminpages/emailsettings.php:86 #: adminpages/emailsettings.php:77 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "Nome Mittente" #: adminpages/emailsettings.php:94 #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "Filtra solo le Email PMPro?" #: adminpages/emailsettings.php:98 #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 #, php-format msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "Se non selezionato, tutte le email da \"WordPress <%s>\" verranno filtrate utilizzando le impostazioni soprastanti." @@ -2131,6 +2260,8 @@ msgstr "Aggiungi un livello di iscrizione" #: adminpages/reports/history.php:184 #: adminpages/reports/login.php:181 #: adminpages/reports/login.php:184 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 msgid "Name" msgstr "Nome" @@ -2138,6 +2269,7 @@ msgstr "Nome" #: adminpages/membershiplevels.php:314 #: adminpages/membershiplevels.php:316 #: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "Messaggio di conferma" @@ -2153,6 +2285,8 @@ msgstr "Messaggio di conferma" #: adminpages/membershiplevels.php:643 #: adminpages/membershiplevels.php:397 #: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "Informazioni di pagamento" @@ -2181,6 +2315,8 @@ msgstr "Informazioni di pagamento" #: classes/gateways/class.pmprogateway_stripe.php:2696 #: classes/gateways/class.pmprogateway_stripe.php:2698 #: classes/gateways/class.pmprogateway_stripe.php:2694 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "ogni" @@ -2199,6 +2335,7 @@ msgstr "L'integrazione con Stripe supporta solo pagamenti \"Settimanali\", \"Men #: adminpages/discountcodes.php:620 #: adminpages/membershiplevels.php:448 #: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:446 msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." msgstr "L'integrazione con Braintree supporta solo pagamenti \"Mensili\" o \"Annuali\"." @@ -2216,6 +2353,7 @@ msgstr "L'integrazione con Payflow supporta solo pagamenti singoli e \"Settimana #: adminpages/membershiplevels.php:393 #: adminpages/membershiplevels.php:396 #: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." msgstr "Dopo aver salvato il livello, ricorda l'ID e crea un \"Piano\" nel tuo pannello di controllo di Braintree con le stesse impostazioni e l'\"ID Piano\" come pmpro_#, dove # è l'ID di livello." @@ -2240,6 +2378,8 @@ msgstr "Dopo aver salvato il livello, ricorda l'ID e crea un \"Piano\" nel tuo p #: adminpages/membershiplevels.php:454 #: adminpages/membershiplevels.php:459 #: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 msgid "Note" msgstr "Note" @@ -2259,6 +2399,7 @@ msgstr "Devi creare un \"Piano\" nel pannello di controllo di Braintree con le s #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "L'integrazione con Stripe non supporta i limiti di pagamento. Puoi comunque impostare una data di scadenza qui sotto." @@ -2270,6 +2411,8 @@ msgstr "L'integrazione con Stripe non supporta i limiti di pagamento. Puoi comun #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "L'integrazione con 2Checkout non consente periodi di prova personalizzati. Si può creare un periodo di prova impostando un prezzo iniziale differente dal successivo prezzo di fatturazione." @@ -2282,6 +2425,7 @@ msgstr "L'integrazione con 2Checkout non consente periodi di prova personalizzat #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "L'integrazione con Stripe non supporta le prove superiori a $0." @@ -2294,6 +2438,7 @@ msgstr "L'integrazione con Stripe non supporta le prove superiori a $0." #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "L'integrazione con Braintree non supporta le prove superiori a $0." @@ -2306,6 +2451,7 @@ msgstr "L'integrazione con Braintree non supporta le prove superiori a $0." #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "L'integrazione con Payflow non supporta le prove superiori a $0." @@ -2320,6 +2466,7 @@ msgstr "L'integrazione con Payflow non supporta le prove superiori a $0." #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "Altre impostazioni" @@ -2355,6 +2502,8 @@ msgstr "Seleziona per nascondere questo livello dalla pagina dei livelli e disab #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "Impostazioni contenuto" @@ -2366,6 +2515,7 @@ msgstr "Impostazioni contenuto" #: adminpages/membershiplevels.php:497 #: adminpages/membershiplevels.php:500 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "Categorie" @@ -2373,6 +2523,7 @@ msgstr "Categorie" #: adminpages/membershiplevels.php:516 #: adminpages/membershiplevels.php:517 #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "Salva Livello" @@ -2420,6 +2571,11 @@ msgstr "Salva Livello" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "Annulla" @@ -2464,6 +2620,7 @@ msgstr "Cerca livelli" #: adminpages/membershiplevels.php:630 #: adminpages/membershiplevels.php:631 #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "Trascina e rilascia i livelli di sottoscrizione per riordinarli nella pagina dei Livelli." @@ -2495,6 +2652,8 @@ msgstr "Trascina e rilascia i livelli di sottoscrizione per riordinarli nella pa #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "Scadenza" @@ -2509,6 +2668,7 @@ msgstr "Scadenza" #: adminpages/membershiplevels.php:641 #: adminpages/membershiplevels.php:645 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "Permetti iscrizione" @@ -2524,6 +2684,7 @@ msgstr "Permetti iscrizione" #: adminpages/membershiplevels.php:660 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "GRATIS" @@ -2539,6 +2700,7 @@ msgstr "GRATIS" #: adminpages/membershiplevels.php:669 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "Dopo" @@ -2591,6 +2753,7 @@ msgstr "copia" #: includes/adminpages.php:149 #: includes/adminpages.php:153 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "Membri" @@ -2606,6 +2769,8 @@ msgstr "Membri" #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "Esporta come CSV" @@ -2638,6 +2803,8 @@ msgstr "Esporta come CSV" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "Mostra" @@ -2669,6 +2836,8 @@ msgstr "Mostra" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "Tutti i livelli" @@ -2712,6 +2881,8 @@ msgstr "Membri Vecchi" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "Cerca membri" @@ -2752,6 +2923,8 @@ msgstr "%d membri trovati." #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "Username" @@ -2800,6 +2973,7 @@ msgstr "Cognome" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "Indirizzo di Fatturazione" @@ -2919,6 +3093,7 @@ msgstr "Errore eliminando l'ordine." #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "Ordine salvato con successo." @@ -2938,6 +3113,7 @@ msgstr "Errore aggiornando la data dell'ordine." #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "Errore salvando l'ordine." @@ -2953,6 +3129,7 @@ msgstr "Errore salvando l'ordine." #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "Ordine" @@ -2965,6 +3142,7 @@ msgstr "Ordine" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "Nuovo Ordine" @@ -2977,6 +3155,7 @@ msgstr "Nuovo Ordine" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "Generato casualmente." @@ -2989,6 +3168,7 @@ msgstr "Generato casualmente." #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "ID Utente" @@ -3002,6 +3182,8 @@ msgstr "ID Utente" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "ID Livello Iscrizione" @@ -3015,6 +3197,7 @@ msgstr "ID Livello Iscrizione" #: includes/privacy.php:245 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "Nome di Fatturazione" @@ -3028,6 +3211,7 @@ msgstr "Nome di Fatturazione" #: includes/privacy.php:249 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "Via di Fatturazione" @@ -3042,6 +3226,7 @@ msgstr "Via di Fatturazione" #: includes/privacy.php:358 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "Città di Fatturazione" @@ -3055,6 +3240,7 @@ msgstr "Città di Fatturazione" #: includes/privacy.php:257 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "Stato di Fatturazione" @@ -3070,6 +3256,7 @@ msgstr "Stato di Fatturazione" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "CAP di Fatturazione" @@ -3085,6 +3272,7 @@ msgstr "CAP di Fatturazione" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "Paese di Fatturazione" @@ -3099,6 +3287,7 @@ msgstr "Paese di Fatturazione" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "Telefono di Fatturazione" @@ -3113,6 +3302,7 @@ msgstr "Telefono di Fatturazione" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "Subtotale" @@ -3134,6 +3324,8 @@ msgstr "Subtotale" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "Tassa" @@ -3148,6 +3340,7 @@ msgstr "Tassa" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "Sconto" @@ -3183,6 +3376,9 @@ msgstr "Sconto" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "Totale" @@ -3206,6 +3402,7 @@ msgstr "Dovrebbe essere subtotale + tassa - valorecoupon." #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "Tipo di Pagamento" @@ -3219,6 +3416,7 @@ msgstr "Tipo di Pagamento" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "esempio PayPal Express, PayPal Standard, Credit Card." @@ -3271,6 +3469,9 @@ msgstr "esempio PayPal Express, PayPal Standard, Credit Card." #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "Tipo di carta" @@ -3284,6 +3485,7 @@ msgstr "Tipo di carta" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "esempio Visa, MasterCard, AMEX, ecc" @@ -3304,6 +3506,8 @@ msgstr "esempio Visa, MasterCard, AMEX, ecc" #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "Numero di Conto" @@ -3316,6 +3520,7 @@ msgstr "Numero di Conto" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "Oscura tutto tranne gli ultimi 4 numeri." @@ -3332,6 +3537,7 @@ msgstr "Oscura tutto tranne gli ultimi 4 numeri." #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "Mese scadenza" @@ -3380,6 +3586,10 @@ msgstr "Anno scadenza" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "Stato" @@ -3406,6 +3616,9 @@ msgstr "Stato" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "Gateway" @@ -3426,6 +3639,8 @@ msgstr "Gateway" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "Gateway Environment" @@ -3449,6 +3664,9 @@ msgstr "Gateway Environment" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "Sandbox/Prova" @@ -3472,6 +3690,9 @@ msgstr "Sandbox/Prova" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "Live/Produzione" @@ -3486,6 +3707,7 @@ msgstr "Live/Produzione" #: includes/privacy.php:321 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "ID Transazione" @@ -3499,6 +3721,7 @@ msgstr "ID Transazione" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "Generato dal gateway. Utile come riferimento per gli ordini." @@ -3515,6 +3738,8 @@ msgstr "Generato dal gateway. Utile come riferimento per gli ordini." #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "ID Iscrizione" @@ -3529,6 +3754,7 @@ msgstr "ID Iscrizione" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "Generato dal gateway. Utile come riferimento per gli ordini." @@ -3567,6 +3793,8 @@ msgstr "Generato dal gateway. Utile come riferimento per gli ordini." #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "Data" @@ -3580,6 +3808,7 @@ msgstr "Data" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "ID Affilizazione" @@ -3593,6 +3822,7 @@ msgstr "ID Affilizazione" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "SubID Affilizazione" @@ -3606,6 +3836,7 @@ msgstr "SubID Affilizazione" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "Note" @@ -3619,6 +3850,7 @@ msgstr "Note" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "Salva Ordine" @@ -3672,6 +3904,8 @@ msgstr "Invia E-mail" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "Ordini" @@ -3685,6 +3919,7 @@ msgstr "Ordini" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "Crea Nuovo Ordine" @@ -3697,6 +3932,7 @@ msgstr "Crea Nuovo Ordine" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "Nell'intervallo di tempo" @@ -3709,6 +3945,7 @@ msgstr "Nell'intervallo di tempo" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "Intervallo di Tempo Predefinito" @@ -3721,6 +3958,7 @@ msgstr "Intervallo di Tempo Predefinito" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "In un Livello" @@ -3733,6 +3971,7 @@ msgstr "In un Livello" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "In uno Stato" @@ -3745,6 +3984,7 @@ msgstr "In uno Stato" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "Da" @@ -3757,6 +3997,7 @@ msgstr "Da" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "A" @@ -3769,6 +4010,7 @@ msgstr "A" #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "filtra per " @@ -3781,6 +4023,7 @@ msgstr "filtra per " #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "Filtro" @@ -3804,6 +4047,8 @@ msgstr "Filtro" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "Cerca Ordini" @@ -3818,6 +4063,8 @@ msgstr "Cerca Ordini" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "%d ordini trovati." @@ -3844,6 +4091,7 @@ msgstr "%d ordini trovati." #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "Utente" @@ -3894,6 +4142,8 @@ msgstr "Utente" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "Livello d'iscrizione" @@ -3919,6 +4169,7 @@ msgstr "Livello d'iscrizione" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "Pagamento" @@ -3933,6 +4184,7 @@ msgstr "Pagamento" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "ID Transazioni" @@ -3958,6 +4210,8 @@ msgstr "ID Transazioni" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "eliminato" @@ -3973,6 +4227,7 @@ msgstr "eliminato" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "Iscrizione" @@ -3990,6 +4245,7 @@ msgstr "Iscrizione" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "L'eliminazione di un ordine è permanente e potrebbe causare problemi agli utenti attivi. Sicuro di voler eliminare l'ordine %s?" @@ -4025,6 +4281,7 @@ msgstr "e-mail" #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "Nessun ordine trovato." @@ -4097,6 +4354,7 @@ msgstr "Le pagine seguenti sono state create da te" #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "Gestisci le pagine assegnate ad ogni pagina richiesta da Paid Memberships Pro." @@ -4106,6 +4364,7 @@ msgstr "Gestisci le pagine assegnate ad ogni pagina richiesta da Paid Membership #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "Imposta le pagine per ogni pagina richiesta da Paid Memberships Pro oppure" @@ -4115,6 +4374,7 @@ msgstr "Imposta le pagine per ogni pagina richiesta da Paid Memberships Pro oppu #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "clicca qui per lasciare che venga fatto in automatico" @@ -4124,6 +4384,7 @@ msgstr "clicca qui per lasciare che venga fatto in automatico" #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "Pagina del Conto" @@ -4170,6 +4431,14 @@ msgstr "Pagina del Conto" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "Seleziona" @@ -4230,6 +4499,16 @@ msgstr "Seleziona" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "modifica pagina" @@ -4287,6 +4566,15 @@ msgstr "modifica pagina" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "visualizza pagina" @@ -4340,6 +4628,12 @@ msgstr "visualizza pagina" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "Includi lo shortcode" @@ -4351,6 +4645,7 @@ msgstr "Includi lo shortcode" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "Informazioni di Pagamento" @@ -4362,6 +4657,7 @@ msgstr "Informazioni di Pagamento" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "Annulla" @@ -4373,6 +4669,7 @@ msgstr "Annulla" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "Checkout" @@ -4384,6 +4681,7 @@ msgstr "Checkout" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "Conferma" @@ -4395,6 +4693,7 @@ msgstr "Conferma" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "Fattura" @@ -4406,6 +4705,7 @@ msgstr "Fattura" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "Livelli" @@ -4413,6 +4713,7 @@ msgstr "Livelli" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "Impostazioni Supplementari Pagine" @@ -4426,6 +4727,9 @@ msgstr "Impostazioni Supplementari Pagine" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "Crea Pagina" @@ -4446,6 +4750,7 @@ msgstr "Le impostazioni di pagamento sono state aggiornate." #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "Gateway di Pagamento" @@ -4456,6 +4761,7 @@ msgstr "Gateway di Pagamento" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "Impostazioni SSL" @@ -4467,12 +4773,14 @@ msgstr "Maggiori dettagli su If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "Stripe non necessita dei campi per l'indirizzo di fatturazione. Selezionare 'No' per nascondere questi campi nella pagina di pagamento.
Se No, assicirarsi di disabilitare verifica dell'indirizzo nelle impostazioni della bacheca di Stripe" @@ -6688,6 +7112,7 @@ msgstr "Per l'integrazione completa con Stripe accertati di aver impostato il We #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "Aggiornamenti Sottoscrizioni" @@ -6753,6 +7178,7 @@ msgstr "Aggiornamenti Sottoscrizione, ti consente di impostare i valori della so #: classes/gateways/class.pmprogateway_stripe.php:2653 #: classes/gateways/class.pmprogateway_stripe.php:2649 #: pages/billing.php:441 +#: classes/gateways/class.pmprogateway_stripe.php:3106 msgid "Update" msgstr "Aggiorna" @@ -6773,6 +7199,7 @@ msgstr "Aggiorna" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "Non è possibile cancellare la vecchia iscrizione. Gli aggiornamenti non sono ancora stati eseguiti." @@ -6833,6 +7260,8 @@ msgstr "Errore nella creazione del cliente su Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "Errore nella creazione dell'iscrizione con Stripe:" @@ -6878,6 +7307,8 @@ msgstr "Errore nella creazione dell'iscrizione con Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "Errore nella creazione del piano su Stripe:" @@ -6918,6 +7349,8 @@ msgstr "Errore nella creazione del piano su Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "Errore nell'iscrizione del cliente su Stripe:" @@ -6945,6 +7378,7 @@ msgstr "Errore nell'iscrizione del cliente su Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "Non è possibile cancellare la vecchia iscrizione." @@ -6969,6 +7403,7 @@ msgstr "Non è possibile cancellare la vecchia iscrizione." #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "Il Cliente non è stato trovato." @@ -6988,6 +7423,8 @@ msgstr "Il Cliente non è stato trovato." #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "Errore: " @@ -7001,6 +7438,7 @@ msgstr "Errore: " #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 #, php-format msgid "Error: Unkown error while refunding charge #%s" msgstr "Errore: Errore sconosciuto mentre veniva effettuato il rimborso #%s" @@ -7015,6 +7453,7 @@ msgstr "Errore: Errore sconosciuto mentre veniva effettuato il rimborso #%s" #: paid-memberships-pro.php:133 #: paid-memberships-pro.php:134 #: paid-memberships-pro.php:135 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "2Checkout" @@ -7022,24 +7461,28 @@ msgstr "2Checkout" #: classes/gateways/class.pmprogateway_twocheckout.php:108 #: classes/gateways/class.pmprogateway_twocheckout.php:116 #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "Impostazioni 2Checkout" #: classes/gateways/class.pmprogateway_twocheckout.php:123 #: classes/gateways/class.pmprogateway_twocheckout.php:125 #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "Vai in Account » User Management in 2Checkout e crea un utente con API Access e API Updating." #: classes/gateways/class.pmprogateway_twocheckout.php:132 #: classes/gateways/class.pmprogateway_twocheckout.php:134 #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "Password per API utente creato." #: classes/gateways/class.pmprogateway_twocheckout.php:141 #: classes/gateways/class.pmprogateway_twocheckout.php:152 #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "Clicca sull'icona del profilo in 2Checkout per trovare il tuo Numero di Conto." @@ -7049,12 +7492,14 @@ msgstr "Clicca sull'icona del profilo in 2Checkout per trovare il tuo Numero di #: classes/gateways/class.pmprogateway_twocheckout.php:137 #: classes/gateways/class.pmprogateway_twocheckout.php:157 #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "Parola Segreta" #: classes/gateways/class.pmprogateway_twocheckout.php:150 #: classes/gateways/class.pmprogateway_twocheckout.php:161 #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "Vai in Account » User Management in 2Checkout e guarda in Checkout Options per trovare la Parola Segreta (Secret Word)." @@ -7065,12 +7510,14 @@ msgstr "Vai in Account » User Management in 2Checkout e guarda in Checkou #: classes/gateways/class.pmprogateway_twocheckout.php:145 #: classes/gateways/class.pmprogateway_twocheckout.php:166 #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "TwoCheckout INS URL" #: classes/gateways/class.pmprogateway_twocheckout.php:158 #: classes/gateways/class.pmprogateway_twocheckout.php:169 #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "Per l'integrazione completa con 2Checkout, assicurarsi di aver impostato il proprio INS URL e Approved URL" @@ -7078,6 +7525,7 @@ msgstr "Per l'integrazione completa con 2Checkout, assicurarsi di aver impostat #: classes/gateways/class.pmprogateway_twocheckout.php:192 #: classes/gateways/class.pmprogateway_twocheckout.php:214 #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "Paga con 2Checkout" @@ -8256,6 +8704,7 @@ msgstr "e" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "Registrati come !!name!! Ora" @@ -8309,6 +8758,9 @@ msgstr "Specifica un ID di livello." #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "Non definito" @@ -8320,6 +8772,7 @@ msgstr "La tua chiave di licenza è stata convalidata." #: includes/license.php:81 #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "Licenza Supporto Paid Memberships Pro" @@ -8340,6 +8793,7 @@ msgstr "Visita la pagina
Grazie! Una Chiave di Licenza valida %sEff #: includes/profile.php:759 #: includes/profile.php:755 #: pages/billing.php:166 +#: includes/profile.php:795 msgid "First Name" msgstr "Nome" @@ -8694,6 +9155,7 @@ msgstr "Nome" #: includes/profile.php:760 #: includes/profile.php:756 #: pages/billing.php:170 +#: includes/profile.php:796 msgid "Last Name" msgstr "Cognome" @@ -9291,6 +9753,10 @@ msgstr "Fattura #%s di %s" #: adminpages/orders.php:391 #: adminpages/orders.php:1424 #: adminpages/orders.php:1434 +#: adminpages/orders.php:439 +#: adminpages/orders.php:1539 +#: adminpages/orders.php:1549 +#: includes/profile.php:473 msgid "Print" msgstr "Stampa" @@ -9346,6 +9812,7 @@ msgstr "Metodo di Pagamento" #: pages/invoice.php:97 #: pages/invoice.php:125 #: includes/profile.php:413 +#: includes/profile.php:453 msgid "Total Billed" msgstr "Totale Fatturato" @@ -9373,6 +9840,7 @@ msgstr "Di seguito trovi un rendiconto con i dettagli dela tua iscrizione. Una m #: pages/confirmation.php:105 #: pages/confirmation.php:138 #: shortcodes/pmpro_account.php:247 +#: pages/confirmation.php:65 msgid "Pending" msgstr "In attesa" @@ -9402,6 +9870,7 @@ msgstr "Se il tuo conto non viene attivato in pochi minuti, contatta l'amministr #: includes/functions.php:2857 #: includes/functions.php:2888 #: includes/functions.php:2910 +#: includes/functions.php:2912 msgid "Coupon" msgstr "Coupon" @@ -9489,6 +9958,7 @@ msgstr "← Torna alla Home" #: paid-memberships-pro.php:157 #: paid-memberships-pro.php:159 #: paid-memberships-pro.php:160 +#: paid-memberships-pro.php:166 msgid "Testing Only" msgstr "Modalità di prova" @@ -9502,6 +9972,7 @@ msgstr "Modalità di prova" #: paid-memberships-pro.php:162 #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:165 +#: paid-memberships-pro.php:171 msgid "PayPal Payflow Pro/PayPal Pro" msgstr "PayPal Payflow Pro/PayPal Pro" @@ -9515,6 +9986,7 @@ msgstr "PayPal Payflow Pro/PayPal Pro" #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:168 #: paid-memberships-pro.php:169 +#: paid-memberships-pro.php:175 msgid "Cybersource" msgstr "Cybersource" @@ -9523,6 +9995,7 @@ msgstr "Cybersource" #: paid-memberships-pro.php:157 #: paid-memberships-pro.php:194 #: paid-memberships-pro.php:195 +#: paid-memberships-pro.php:201 msgid "Once a month" msgstr "Mensilmente" @@ -9653,6 +10126,7 @@ msgstr "Errore nel tentativo di aggiornare le informazioni di pagamento." #: classes/class.pmproemail.php:907 #: includes/email.php:459 #: classes/class.pmproemail.php:900 +#: classes/class.pmproemail.php:1033 msgid "Your membership has been cancelled." msgstr "La tua iscrizione è stata cancellata." @@ -10035,6 +10509,7 @@ msgstr "L'iscrizione di %s è stata cancellata da Stripe. Se anche l'iscrizione #: shortcodes/pmpro_account.php:44 #: includes/email-templates.php:68 #: shortcodes/pmpro_account.php:43 +#: adminpages/orders.php:1431 msgid "Billing" msgstr "Fatturazione" @@ -10095,6 +10570,8 @@ msgstr "Modifica il Profilo" #: includes/profile.php:921 #: includes/profile.php:880 #: includes/profile.php:917 +#: includes/profile.php:920 +#: includes/profile.php:957 msgid "Change Password" msgstr "Cambia Password" @@ -10197,6 +10674,8 @@ msgstr "tutti" #: includes/profile.php:515 #: includes/profile.php:511 #: adminpages/advancedsettings.php:331 +#: adminpages/advancedsettings.php:338 +#: includes/profile.php:551 msgid "Never" msgstr "Mai" @@ -10386,6 +10865,7 @@ msgstr "Il pagamento iniziale per %d vale %s." #: pages/account.php:87 #: pages/account.php:91 #: adminpages/emailtemplates.php:156 +#: adminpages/emailtemplates.php:149 msgid "Billing Information" msgstr "Informazioni di Pagamento" @@ -10496,6 +10976,13 @@ msgstr "Imposta il tuo conto" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 #~ msgid "Edit" #~ msgstr "Modifica" @@ -10550,6 +11037,18 @@ msgstr "Imposta il tuo conto" #: js/blocks.build.js:1342 #: js/blocks.build.js:1502 #: classes/class-pmpro-admin-activity-email.php:349 +#: blocks/account-invoices-section/block.js:47 +#: blocks/account-links-section/block.js:47 +#: blocks/account-membership-section/block.js:45 +#: blocks/account-page/block.js:72 +#: blocks/account-profile-section/block.js:45 +#: blocks/billing-page/block.js:44 +#: blocks/cancel-page/block.js:44 +#: blocks/checkout-page/block.js:58 +#: blocks/confirmation-page/block.js:46 +#: blocks/invoice-page/block.js:45 +#: blocks/levels-page/block.js:44 +#: blocks/member-profile-edit/block.js:37 msgid "Paid Memberships Pro" msgstr "" @@ -10595,6 +11094,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:76 #: classes/gateways/class.pmprogateway_stripe.php:82 #: classes/gateways/class.pmprogateway_stripe.php:1338 +#: classes/gateways/class.pmprogateway_stripe.php:1463 msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade." msgstr "" @@ -10635,6 +11135,7 @@ msgstr "" #: includes/adminpages.php:52 #: includes/adminpages.php:158 #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Members" msgstr "" @@ -10679,41 +11180,49 @@ msgstr "" #: adminpages/advancedsettings.php:106 #: includes/updates/upgrade_1.php:7 #: adminpages/advancedsettings.php:108 +#: adminpages/advancedsettings.php:116 msgid "This content is for !!levels!! members only.
Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -10721,93 +11230,111 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -10833,6 +11360,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -10903,6 +11431,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -11008,6 +11537,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -11046,6 +11576,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -11058,31 +11589,39 @@ msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 msgid "%d discount codes found." msgstr "" @@ -11106,6 +11645,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -11114,15 +11659,18 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -11163,192 +11711,241 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:960 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:170 #: includes/privacy.php:363 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -11366,6 +11963,7 @@ msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -11373,14 +11971,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -11397,27 +11998,34 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -11427,6 +12035,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -11434,6 +12044,7 @@ msgstr "" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -11441,6 +12052,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -11448,6 +12060,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -11455,6 +12068,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -11462,6 +12076,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -11469,6 +12084,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -11507,78 +12123,91 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -11588,12 +12217,15 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -11601,18 +12233,21 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" @@ -11622,11 +12257,13 @@ msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" @@ -11662,6 +12299,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -11672,6 +12310,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -11714,21 +12353,25 @@ msgid "Logins This Year" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -11887,51 +12530,63 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:962 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -11944,6 +12599,8 @@ msgstr "" #: includes/email.php:465 #: classes/class.pmproemail.php:898 #: classes/class.pmproemail.php:943 +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 msgid "The new level is %s." msgstr "" @@ -11956,30 +12613,36 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -11991,14 +12654,17 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:91 #: classes/gateways/class.pmprogateway_stripe.php:97 #: classes/gateways/class.pmprogateway_stripe.php:1353 +#: classes/gateways/class.pmprogateway_stripe.php:1478 msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" @@ -12012,21 +12678,30 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:750 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -12034,11 +12709,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -12316,11 +12994,13 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -12329,6 +13009,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -12337,6 +13018,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -12352,6 +13034,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -12360,6 +13043,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -12371,6 +13055,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -12382,6 +13067,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -12393,6 +13079,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -12401,6 +13088,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -12412,6 +13100,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -12423,6 +13112,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -12431,6 +13121,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -12442,6 +13133,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -12450,6 +13142,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -12473,6 +13166,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -12489,6 +13184,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -12497,6 +13194,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -12505,6 +13203,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -12513,6 +13212,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -12520,6 +13220,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -12528,6 +13229,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -12541,6 +13243,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -12549,6 +13253,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -12557,6 +13262,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -12566,6 +13272,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -12583,6 +13291,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -12591,6 +13301,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -12612,6 +13323,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -12620,6 +13333,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -12628,6 +13342,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -12636,6 +13351,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -12644,6 +13360,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -12652,6 +13369,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -12660,6 +13378,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -12668,6 +13387,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -12676,6 +13396,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -12684,6 +13405,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -12692,6 +13414,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -12704,6 +13427,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -12712,6 +13436,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -12720,6 +13445,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -12728,6 +13454,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -12736,6 +13463,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -12771,6 +13499,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -12791,6 +13520,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -12799,6 +13532,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -12808,6 +13542,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -12817,6 +13552,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -12828,6 +13564,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -12839,6 +13576,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -12850,6 +13588,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -12861,6 +13600,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" @@ -12895,6 +13635,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -12907,6 +13648,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -12919,6 +13661,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -14709,14 +15452,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -14725,18 +15471,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -14748,6 +15498,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -14875,6 +15626,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -14988,6 +15740,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -14995,6 +15748,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -15026,6 +15780,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -15035,6 +15790,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -15042,6 +15798,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -15141,6 +15898,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -15148,6 +15907,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -15155,6 +15915,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -15162,6 +15923,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -15233,126 +15995,148 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -15364,6 +16148,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -15449,6 +16236,7 @@ msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -15474,6 +16262,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -15512,6 +16301,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -15527,6 +16331,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -15542,6 +16347,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -15574,6 +16380,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -15586,6 +16393,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -15611,11 +16419,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -15623,6 +16436,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -15630,6 +16444,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -15652,6 +16467,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -15677,6 +16493,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -15684,6 +16501,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -15716,6 +16534,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -15738,6 +16557,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -15748,11 +16568,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -15772,6 +16603,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -15785,6 +16617,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -15794,6 +16627,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -15803,10 +16637,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -15817,6 +16653,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -15824,6 +16661,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -15833,6 +16671,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -15842,12 +16681,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -15855,6 +16697,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -15863,6 +16707,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -15870,6 +16715,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -15877,22 +16723,26 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -15950,12 +16800,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -15965,6 +16817,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -15974,6 +16827,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -15983,54 +16837,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -16041,42 +16905,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -16091,51 +16965,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -16143,6 +17029,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -16150,6 +17037,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -16157,6 +17045,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -16165,6 +17054,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -16178,6 +17069,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -16198,19 +17090,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -16220,31 +17116,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -16270,21 +17174,25 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" @@ -16354,26 +17262,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -16382,51 +17296,62 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -16440,19 +17365,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -16483,3 +17412,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-nb_NO.mo b/languages/paid-memberships-pro-nb_NO.mo index cbabe0e75..6990695c2 100644 Binary files a/languages/paid-memberships-pro-nb_NO.mo and b/languages/paid-memberships-pro-nb_NO.mo differ diff --git a/languages/paid-memberships-pro-nb_NO.po b/languages/paid-memberships-pro-nb_NO.po index f07395e0b..b30a44383 100644 --- a/languages/paid-memberships-pro-nb_NO.po +++ b/languages/paid-memberships-pro-nb_NO.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:20:57+00:00\n" +"POT-Creation-Date: 2022-05-05T20:37:37+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -79,6 +79,7 @@ msgstr "Sjekk igjen" #: adminpages/orders.php:1014 #: includes/metaboxes.php:19 #: adminpages/orders.php:1015 +#: adminpages/orders.php:1103 msgid "All" msgstr "Alle" @@ -117,6 +118,7 @@ msgstr "Type" #: adminpages/membershiplevels.php:300 #: adminpages/addons.php:111 #: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "Beskrivelse" @@ -189,6 +191,11 @@ msgstr "Slett %s" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "Slett" @@ -246,6 +253,18 @@ msgstr "WordPress.org" #: adminpages/orders.php:913 #: adminpages/orders.php:1537 #: adminpages/orders.php:1546 +#: adminpages/orders.php:704 +#: adminpages/orders.php:996 +#: adminpages/orders.php:1689 +#: adminpages/orders.php:1698 +#: classes/class.pmproemail.php:261 +#: classes/class.pmproemail.php:327 +#: includes/profile.php:167 +#: includes/profile.php:483 +#: includes/profile.php:484 +#: includes/profile.php:556 +#: includes/profile.php:557 +#: includes/profile.php:558 msgid "N/A" msgstr "Ikke tilgjengelig" @@ -422,6 +441,11 @@ msgstr "Betalingsmåter & SSL" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "E-post" @@ -435,6 +459,7 @@ msgstr "Avansert" #: adminpages/advancedsettings.php:43 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "Dine avanserte innstillinger har blitt oppdatert." @@ -452,6 +477,7 @@ msgstr "Du må være pålogget for å ha tilgang til dette in #: adminpages/advancedsettings.php:116 #: includes/updates/upgrade_1.php:13 #: adminpages/advancedsettings.php:118 +#: adminpages/advancedsettings.php:126 msgid "This content is for members only. Visit the site and log in/register to read." msgstr "Dette innholdet er tilgjengelig til våre medlemmer. Du må enten være pålogget som bruker, eller ha registrert deg for å få tilgang." @@ -463,6 +489,7 @@ msgstr "Dette innholdet er tilgjengelig til våre medlemmer. Du må enten være #: adminpages/advancedsettings.php:132 #: includes/adminpages.php:73 #: adminpages/advancedsettings.php:134 +#: adminpages/advancedsettings.php:142 msgid "Advanced Settings" msgstr "Avanserte innstillinger" @@ -470,6 +497,7 @@ msgstr "Avanserte innstillinger" #: adminpages/advancedsettings.php:94 #: adminpages/advancedsettings.php:164 #: adminpages/advancedsettings.php:166 +#: adminpages/advancedsettings.php:173 msgid "Message for Logged-in Non-members" msgstr "Melding til innloggede ikke-medlemmer" @@ -477,6 +505,7 @@ msgstr "Melding til innloggede ikke-medlemmer" #: adminpages/advancedsettings.php:98 #: adminpages/advancedsettings.php:168 #: adminpages/advancedsettings.php:170 +#: adminpages/advancedsettings.php:177 msgid "This message replaces the post content for non-members. Available variables" msgstr "Denne meldingen erstatter innholdet i innleggene for ikke-medlemmer. Tilgjengelige variabler" @@ -484,6 +513,7 @@ msgstr "Denne meldingen erstatter innholdet i innleggene for ikke-medlemmer. Til #: adminpages/advancedsettings.php:103 #: adminpages/advancedsettings.php:173 #: adminpages/advancedsettings.php:175 +#: adminpages/advancedsettings.php:182 msgid "Message for Logged-out Users" msgstr "Melding til utloggede brukere" @@ -491,6 +521,7 @@ msgstr "Melding til utloggede brukere" #: adminpages/advancedsettings.php:107 #: adminpages/advancedsettings.php:177 #: adminpages/advancedsettings.php:179 +#: adminpages/advancedsettings.php:186 msgid "This message replaces the post content for logged-out visitors." msgstr "Denne meldingen erstatter innholdet i innleggene for utloggede besøkende" @@ -498,6 +529,7 @@ msgstr "Denne meldingen erstatter innholdet i innleggene for utloggede besøkend #: adminpages/advancedsettings.php:112 #: adminpages/advancedsettings.php:182 #: adminpages/advancedsettings.php:184 +#: adminpages/advancedsettings.php:191 msgid "Message for RSS Feed" msgstr "Melding for RSS Feed" @@ -505,24 +537,28 @@ msgstr "Melding for RSS Feed" #: adminpages/advancedsettings.php:116 #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "This message replaces the post content in RSS feeds." msgstr "Denne meldingen erstatter innholdet i innleggene i RSS Feeden" #: adminpages/advancedsettings.php:122 #: adminpages/advancedsettings.php:199 #: adminpages/advancedsettings.php:201 +#: adminpages/advancedsettings.php:208 msgid "Filter searches and archives?" msgstr "Bruke filter for alle søk og arkivsider?" #: adminpages/advancedsettings.php:126 #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:205 +#: adminpages/advancedsettings.php:212 msgid "No - Non-members will see restricted posts/pages in searches and archives." msgstr "Nei - Brukere som ikke er medlemmer vil kunne få tilgang til innhold i innlegg/sider ved søk eller i arkivene." #: adminpages/advancedsettings.php:127 #: adminpages/advancedsettings.php:204 #: adminpages/advancedsettings.php:206 +#: adminpages/advancedsettings.php:213 msgid "Yes - Only members will see restricted posts/pages in searches and archives." msgstr "Ja - Kun brukere som også er medlemmer vil kunne få tilgang til innhold i innlegg/sider ved søk eller i arkivene." @@ -530,6 +566,7 @@ msgstr "Ja - Kun brukere som også er medlemmer vil kunne få tilgang til innhol #: adminpages/advancedsettings.php:133 #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:212 +#: adminpages/advancedsettings.php:219 msgid "Show Excerpts to Non-Members?" msgstr "Viser utdrag for ikke-medlemmer?" @@ -537,6 +574,7 @@ msgstr "Viser utdrag for ikke-medlemmer?" #: adminpages/advancedsettings.php:137 #: adminpages/advancedsettings.php:214 #: adminpages/advancedsettings.php:216 +#: adminpages/advancedsettings.php:223 msgid "No - Hide excerpts." msgstr "Nei - Skjul utdragene." @@ -544,12 +582,14 @@ msgstr "Nei - Skjul utdragene." #: adminpages/advancedsettings.php:138 #: adminpages/advancedsettings.php:215 #: adminpages/advancedsettings.php:217 +#: adminpages/advancedsettings.php:224 msgid "Yes - Show excerpts." msgstr "Ja - Vis utdragene." #: adminpages/advancedsettings.php:144 #: adminpages/advancedsettings.php:333 #: adminpages/advancedsettings.php:348 +#: adminpages/advancedsettings.php:355 msgid "Hide Ads From Members?" msgstr "Skjule annonser fra alle medlemmer?" @@ -590,6 +630,16 @@ msgstr "Skjule annonser fra alle medlemmer?" #: classes/gateways/class.pmprogateway_stripe.php:404 #: classes/gateways/class.pmprogateway_stripe.php:418 #: adminpages/paymentsettings.php:279 +#: adminpages/advancedsettings.php:254 +#: adminpages/advancedsettings.php:267 +#: adminpages/advancedsettings.php:359 +#: adminpages/advancedsettings.php:418 +#: adminpages/advancedsettings.php:526 +#: adminpages/membershiplevels.php:939 +#: adminpages/paymentsettings.php:277 +#: classes/gateways/class.pmprogateway_stripe.php:430 +#: classes/gateways/class.pmprogateway_stripe.php:444 +#: includes/profile.php:78 msgid "No" msgstr "Nei" @@ -597,6 +647,7 @@ msgstr "Nei" #: adminpages/advancedsettings.php:149 #: adminpages/advancedsettings.php:338 #: adminpages/advancedsettings.php:353 +#: adminpages/advancedsettings.php:360 msgid "Hide Ads From All Members" msgstr "Skjul reklamen for alle medlemmer" @@ -604,6 +655,7 @@ msgstr "Skjul reklamen for alle medlemmer" #: adminpages/advancedsettings.php:150 #: adminpages/advancedsettings.php:339 #: adminpages/advancedsettings.php:354 +#: adminpages/advancedsettings.php:361 msgid "Hide Ads From Certain Members" msgstr "Skjul reklamen for visse medlemmer" @@ -616,6 +668,7 @@ msgstr "Reklamer fra følgende Plugins vil automatisk slås av" #: adminpages/advancedsettings.php:158 #: adminpages/advancedsettings.php:346 #: adminpages/advancedsettings.php:361 +#: adminpages/advancedsettings.php:368 msgid "To hide ads in your template code, use code like the following" msgstr "For å skjule reklamer i template-koden, bruk kode som i det følgende" @@ -623,6 +676,7 @@ msgstr "For å skjule reklamer i template-koden, bruk kode som i det følgende" #: adminpages/advancedsettings.php:169 #: adminpages/advancedsettings.php:355 #: adminpages/advancedsettings.php:370 +#: adminpages/advancedsettings.php:377 msgid "Choose Levels to Hide Ads From" msgstr "Velg nivåer for å skjule reklamer fra" @@ -639,6 +693,7 @@ msgstr "Omdiriger all trafikk fra registreringssiden til /abonnement/?" #: adminpages/advancedsettings.php:390 #: adminpages/advancedsettings.php:392 #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "multisite only" msgstr "kun for multisite" @@ -671,6 +726,12 @@ msgstr "kun for multisite" #: classes/gateways/class.pmprogateway_stripe.php:406 #: classes/gateways/class.pmprogateway_stripe.php:420 #: adminpages/paymentsettings.php:280 +#: adminpages/advancedsettings.php:419 +#: adminpages/membershiplevels.php:934 +#: adminpages/paymentsettings.php:278 +#: classes/gateways/class.pmprogateway_stripe.php:432 +#: classes/gateways/class.pmprogateway_stripe.php:446 +#: includes/profile.php:79 msgid "Yes" msgstr "Ja" @@ -678,6 +739,7 @@ msgstr "Ja" #: adminpages/advancedsettings.php:215 #: adminpages/advancedsettings.php:241 #: adminpages/advancedsettings.php:256 +#: adminpages/advancedsettings.php:263 msgid "Use reCAPTCHA?" msgstr "Bruk reCAPTCHA?" @@ -691,6 +753,7 @@ msgstr "Ja - Kun for gratis medlemskap." #: adminpages/advancedsettings.php:221 #: adminpages/advancedsettings.php:247 #: adminpages/advancedsettings.php:262 +#: adminpages/advancedsettings.php:269 msgid "Yes - All memberships." msgstr "Ja - Alle medlemskap." @@ -698,6 +761,7 @@ msgstr "Ja - Alle medlemskap." #: adminpages/advancedsettings.php:223 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "A free reCAPTCHA key is required." msgstr "Det trengs en gratis reCAPTCHA nøkkel" @@ -705,6 +769,7 @@ msgstr "Det trengs en gratis reCAPTCHA nøkkel" #: adminpages/advancedsettings.php:223 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "Click here to signup for reCAPTCHA" msgstr "Klikk her for å registrere deg for reCAPTCHA" @@ -748,6 +813,9 @@ msgstr "valgte" #: adminpages/pagesettings.php:508 #: adminpages/pagesettings.php:512 #: adminpages/paymentsettings.php:316 +#: adminpages/advancedsettings.php:574 +#: adminpages/pagesettings.php:511 +#: adminpages/paymentsettings.php:314 msgid "Save Settings" msgstr "Lagre innstillingene" @@ -822,6 +890,7 @@ msgstr "Feil ved sletting av koden. Prøv igjen." #: adminpages/discountcodes.php:796 #: adminpages/discountcodes.php:354 #: adminpages/discountcodes.php:798 +#: adminpages/discountcodes.php:799 msgid "Code not found." msgstr "Koden ble ikke funnet." @@ -839,6 +908,7 @@ msgstr "Rediger rabattkoden" #: adminpages/discountcodes.php:735 #: adminpages/discountcodes.php:377 #: adminpages/discountcodes.php:737 +#: adminpages/discountcodes.php:738 msgid "Add New Discount Code" msgstr "Legg til ny rabattkode" @@ -867,6 +937,8 @@ msgstr "Legg til ny rabattkode" #: adminpages/reports/login.php:182 #: adminpages/templates/orders-email.php:49 #: adminpages/templates/orders-print.php:78 +#: adminpages/membershiplevels.php:345 +#: adminpages/membershiplevels.php:805 msgid "ID" msgstr "ID" @@ -900,6 +972,9 @@ msgstr "Dette vil bli generert når du lagrer." #: adminpages/dashboard.php:292 #: adminpages/orders.php:429 #: adminpages/orders.php:1333 +#: adminpages/discountcodes.php:787 +#: adminpages/orders.php:475 +#: adminpages/orders.php:1426 msgid "Code" msgstr "Kode" @@ -912,6 +987,7 @@ msgstr "Kode" #: adminpages/discountcodes.php:489 #: includes/profile.php:501 #: includes/profile.php:497 +#: includes/profile.php:537 msgid "Start Date" msgstr "Startdato" @@ -932,6 +1008,8 @@ msgstr "Startdato" #: classes/gateways/class.pmprogateway_stripe.php:1326 #: classes/gateways/class.pmprogateway_stripe.php:785 #: pages/billing.php:381 +#: classes/gateways/class.pmprogateway_braintree.php:486 +#: classes/gateways/class.pmprogateway_stripe.php:893 msgid "Expiration Date" msgstr "Utløpsdato" @@ -942,6 +1020,7 @@ msgstr "Utløpsdato" #: adminpages/discountcodes.php:787 #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:789 +#: adminpages/discountcodes.php:790 msgid "Uses" msgstr "Ganger å bruke" @@ -964,6 +1043,7 @@ msgstr "Hvilke nivåer vil denne koden gjelde for?" #: adminpages/discountcodes.php:574 #: adminpages/membershiplevels.php:401 #: adminpages/discountcodes.php:576 +#: adminpages/membershiplevels.php:399 msgid "Initial Payment" msgstr "Pris" @@ -973,6 +1053,7 @@ msgstr "Pris" #: adminpages/discountcodes.php:585 #: adminpages/membershiplevels.php:412 #: adminpages/discountcodes.php:587 +#: adminpages/membershiplevels.php:410 msgid "The initial amount collected at registration." msgstr "Den første summen innbetales ved registrering." @@ -982,6 +1063,7 @@ msgstr "Den første summen innbetales ved registrering." #: adminpages/discountcodes.php:590 #: adminpages/membershiplevels.php:417 #: adminpages/discountcodes.php:592 +#: adminpages/membershiplevels.php:415 msgid "Recurring Subscription" msgstr "Abonnement" @@ -991,6 +1073,7 @@ msgstr "Abonnement" #: adminpages/discountcodes.php:591 #: adminpages/membershiplevels.php:418 #: adminpages/discountcodes.php:593 +#: adminpages/membershiplevels.php:416 msgid "Check if this level has a recurring subscription payment." msgstr "Kryss av dersom nivået har regelmessige abonnementsinnbetalinger." @@ -1000,6 +1083,7 @@ msgstr "Kryss av dersom nivået har regelmessige abonnementsinnbetalinger." #: adminpages/discountcodes.php:595 #: adminpages/membershiplevels.php:422 #: adminpages/discountcodes.php:597 +#: adminpages/membershiplevels.php:420 msgid "Billing Amount" msgstr "Faktureringsbeløp" @@ -1023,6 +1107,10 @@ msgstr "Faktureringsbeløp" #: classes/gateways/class.pmprogateway_stripe.php:2637 #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2635 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3092 msgid "Day(s)" msgstr "Dag(er)" @@ -1046,6 +1134,10 @@ msgstr "Dag(er)" #: classes/gateways/class.pmprogateway_stripe.php:2638 #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2636 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3093 msgid "Week(s)" msgstr "Uke(r)" @@ -1069,6 +1161,10 @@ msgstr "Uke(r)" #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2641 #: classes/gateways/class.pmprogateway_stripe.php:2637 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3094 msgid "Month(s)" msgstr "Måned(er)" @@ -1092,6 +1188,10 @@ msgstr "Måned(er)" #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2642 #: classes/gateways/class.pmprogateway_stripe.php:2638 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3095 msgid "Year(s)" msgstr "År" @@ -1101,6 +1201,7 @@ msgstr "År" #: adminpages/discountcodes.php:618 #: adminpages/membershiplevels.php:446 #: adminpages/discountcodes.php:620 +#: adminpages/membershiplevels.php:444 msgid "The amount to be billed one cycle after the initial payment." msgstr "Beløpet som skal faktureres en syklus etter første betaling." @@ -1110,6 +1211,7 @@ msgstr "Beløpet som skal faktureres en syklus etter første betaling." #: adminpages/discountcodes.php:628 #: adminpages/membershiplevels.php:465 #: adminpages/discountcodes.php:630 +#: adminpages/membershiplevels.php:463 msgid "Billing Cycle Limit" msgstr "Grense for faktureringssyklus" @@ -1119,6 +1221,7 @@ msgstr "Grense for faktureringssyklus" #: adminpages/discountcodes.php:632 #: adminpages/membershiplevels.php:469 #: adminpages/discountcodes.php:634 +#: adminpages/membershiplevels.php:467 msgid "The total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "Det totale antall tilbakevendende faktureringssykluser for dette nivået, inkludert prøveperioden (hvis aktuelt), men ekslusdert den første betalingen. Satt til null dersom medlemskapet er for ubestemt tid." @@ -1128,6 +1231,8 @@ msgstr "Det totale antall tilbakevendende faktureringssykluser #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "Prøve-periode" @@ -1137,6 +1242,8 @@ msgstr "Prøve-periode" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "Kryss av for å legge til en egen prøveperiode." @@ -1146,6 +1253,7 @@ msgstr "Kryss av for å legge til en egen prøveperiode." #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "Betalingsbeløp for prøveperioden" @@ -1155,6 +1263,7 @@ msgstr "Betalingsbeløp for prøveperioden" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "for den første" @@ -1164,6 +1273,7 @@ msgstr "for den første" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "abonnementsbetalinger" @@ -1173,6 +1283,7 @@ msgstr "abonnementsbetalinger" #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "Medlemskapsutløp" @@ -1182,6 +1293,7 @@ msgstr "Medlemskapsutløp" #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "Kryss av for å definere når medlemskapet utløper" @@ -1192,6 +1304,8 @@ msgstr "Kryss av for å definere når medlemskapet utløper" #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "Utløper om" @@ -1201,6 +1315,8 @@ msgstr "Utløper om" #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "Angi varigheten av medlemskapet. Vær oppmerksom på at fremtidige utbetalinger (repeterende abonnement, osv) vil bli slettet når medlemskapet utløper." @@ -1208,6 +1324,7 @@ msgstr "Angi varigheten av medlemskapet. Vær oppmerksom på at fremtidige utbet #: adminpages/discountcodes.php:557 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "Rabattkoder" @@ -1215,6 +1332,7 @@ msgstr "Rabattkoder" #: adminpages/discountcodes.php:567 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "Søk i rabattkodene" @@ -1222,6 +1340,7 @@ msgstr "Søk i rabattkodene" #: adminpages/discountcodes.php:570 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "Søk" @@ -1229,6 +1348,7 @@ msgstr "Søk" #: adminpages/discountcodes.php:588 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "Begynner" @@ -1247,6 +1367,8 @@ msgstr "Begynner" #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "Utløper" @@ -1255,6 +1377,7 @@ msgstr "Utløper" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "Nivåer" @@ -1277,6 +1400,7 @@ msgstr "Opprett din først rabattkode" #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "rediger" @@ -1310,6 +1434,7 @@ msgstr "Innstillinger for e-post" # @ pmpro #: adminpages/emailsettings.php:70 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "Normalt sendes automatiske e-postmeldinger fra wordpress@yourdomain.com. Du kan endre denne “fra” adressen ved å fylle ut feltene under." @@ -1321,22 +1446,26 @@ msgstr "Hvis du vil endre utseendet på genererte e-postmeldinger, pass på å l # @ pmpro #: adminpages/emailsettings.php:78 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "E-postadressen til avsender:" # @ pmpro #: adminpages/emailsettings.php:86 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "Navnet på e-postavsender:" #: adminpages/emailsettings.php:94 #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "Kun behandle e-post for PMPro?" #: adminpages/emailsettings.php:98 #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 #, php-format msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "Dersom denne ikke er krysset av, vil alle mail fra “Wordpress <%s> bli filtrert basert på innstillingene ovenfor." @@ -1476,12 +1605,15 @@ msgstr "Legg til nytt medlemsskapsnivå" #: adminpages/reports/history.php:184 #: adminpages/reports/login.php:181 #: adminpages/reports/login.php:184 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 msgid "Name" msgstr "Navn" # @ pmpro #: adminpages/membershiplevels.php:318 #: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "Bekreftelse" @@ -1490,6 +1622,8 @@ msgstr "Bekreftelse" #: adminpages/membershiplevels.php:638 #: adminpages/membershiplevels.php:397 #: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "Fakturadetaljer" @@ -1507,6 +1641,8 @@ msgstr "Fakturadetaljer" #: classes/gateways/class.pmprogateway_stripe.php:2696 #: classes/gateways/class.pmprogateway_stripe.php:2698 #: classes/gateways/class.pmprogateway_stripe.php:2694 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "per" @@ -1520,6 +1656,7 @@ msgstr "Stripe som betalingsbehandler støtter kun “Uker”, “Måneder” el #: adminpages/discountcodes.php:620 #: adminpages/membershiplevels.php:448 #: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:446 msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." msgstr "Braintree som betalingsbehandler støtter kun “Måneder” eller “År” som abonnementsperiodeverdier." @@ -1538,12 +1675,15 @@ msgstr "PayPal Payflow som betalingsbehandler støtter kun en betalingsfrekvens #: adminpages/membershiplevels.php:454 #: adminpages/membershiplevels.php:459 #: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 msgid "Note" msgstr "Notat" # @ pmpro #: adminpages/membershiplevels.php:395 #: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." msgstr "Etter att du har lagret dette medlemsnivået, ta notis av ID nummeret og opprett en “Plant” i dashboardet for Braintree. Her må du bruke de samme innstillingene samt sette “Plan ID”et til pmpro_#, der #-tegnet representerer det ID nummeret du noterte deg." @@ -1557,6 +1697,7 @@ msgstr "Du må opprette en “Plan” i kontrollpanelet til Braintree der du bru #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "Stripe som betalingsbehandler støtter per tiden ikke begrensinger i hvor lenge ett abonnnement kan løpe. På tross av dette kan du fortsatt sette en utløpsdato i feltet nedenfor." @@ -1565,6 +1706,8 @@ msgstr "Stripe som betalingsbehandler støtter per tiden ikke begrensinger i hvo #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "2Checkout som betalingsbehandler støtter for øyeblikket spesialtilpassede prøvetider. Du kan konfigurere en singel prøveperiode ved å konfigurere ett innledende betalingsbeløp som er annerledes enn hva den normale innbetalingen kommer til å være." @@ -1573,6 +1716,7 @@ msgstr "2Checkout som betalingsbehandler støtter for øyeblikket spesialtilpass #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "Stripe som betalingsbehandler støtter foreløpig ikke å ta betalt for prøveperioder." @@ -1581,6 +1725,7 @@ msgstr "Stripe som betalingsbehandler støtter foreløpig ikke å ta betalt for #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "Braintree som betalingsbehandler støtter foreløpig ikke å ta betalt for prøveperioder." @@ -1589,6 +1734,7 @@ msgstr "Braintree som betalingsbehandler støtter foreløpig ikke å ta betalt f #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "PayPal Payflow som betalingsbehandler støtter foreløpig ikke å ta betalt for prøveperioder." @@ -1598,6 +1744,7 @@ msgstr "PayPal Payflow som betalingsbehandler støtter foreløpig ikke å ta bet #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "Andre innstillinger" @@ -1618,17 +1765,21 @@ msgstr "Kryss av for å gjemme dette medlemsnivået fra nivåsiden, samt å deak #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "Innstillinger for innhold" # @ pmpro #: adminpages/membershiplevels.php:499 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "Kategorier" #: adminpages/membershiplevels.php:516 #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "Lagre nivået" @@ -1656,6 +1807,11 @@ msgstr "Lagre nivået" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "Avbryt" @@ -1675,6 +1831,7 @@ msgstr "Søke i medlemsnivåer" #: adminpages/membershiplevels.php:630 #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "Bruk “dra og slipp” prinsippet for å endre rekkefølgen på nivåene på Medlemsnivåsiden." @@ -1691,12 +1848,15 @@ msgstr "Bruk “dra og slipp” prinsippet for å endre rekkefølgen på nivåen #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "Utløpsdato" # @ pmpro #: adminpages/membershiplevels.php:640 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "Tillat nye registreringer" @@ -1704,6 +1864,7 @@ msgstr "Tillat nye registreringer" #: adminpages/membershiplevels.php:655 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "GRATIS" @@ -1711,6 +1872,7 @@ msgstr "GRATIS" #: adminpages/membershiplevels.php:664 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "etter" @@ -1734,6 +1896,7 @@ msgstr "Er du sikker på at du vil slette medlemsskapsnivå %s? Alle eksisterend #: includes/adminpages.php:54 #: includes/adminpages.php:158 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "Medlemsliste" @@ -1745,6 +1908,8 @@ msgstr "Medlemsliste" #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "Eksporter som kommaseparerte verdier (CSV)" @@ -1762,6 +1927,8 @@ msgstr "Eksporter som kommaseparerte verdier (CSV)" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "Vis" @@ -1784,6 +1951,8 @@ msgstr "Vis" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "Alle nivåer" @@ -1825,6 +1994,8 @@ msgstr "Tidligere medlemmer" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "Søk i Medlemmer" @@ -1850,6 +2021,8 @@ msgstr "funnet %d medlemmer" #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "Brukernavn" @@ -1874,6 +2047,7 @@ msgstr "Etternavn" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "Fakturadresse" @@ -1961,6 +2135,7 @@ msgstr "Feil ved sletting av bestillingen." #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "Bestillingen ble lagret." @@ -1974,6 +2149,7 @@ msgstr "Feil oppstod når vi oppdaterte tidspunktet for bestillingen." #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "Feil oppstod mens vi forsøkte å lagre bestillingen." @@ -1985,6 +2161,7 @@ msgstr "Feil oppstod mens vi forsøkte å lagre bestillingen." #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "Bestilling" @@ -1993,6 +2170,7 @@ msgstr "Bestilling" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "Ny bestilling" @@ -2001,6 +2179,7 @@ msgstr "Ny bestilling" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "Tilfeldig generert verdi" @@ -2009,6 +2188,7 @@ msgstr "Tilfeldig generert verdi" #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "Bruker ID" @@ -2018,6 +2198,8 @@ msgstr "Bruker ID" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "ID for medlemsnivået." @@ -2027,6 +2209,7 @@ msgstr "ID for medlemsnivået." #: includes/privacy.php:245 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "Navn" @@ -2036,6 +2219,7 @@ msgstr "Navn" #: includes/privacy.php:249 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "Gatenavn" @@ -2046,6 +2230,7 @@ msgstr "Gatenavn" #: includes/privacy.php:358 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "Sted/By" @@ -2055,6 +2240,7 @@ msgstr "Sted/By" #: includes/privacy.php:257 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "Fylke" @@ -2066,6 +2252,7 @@ msgstr "Fylke" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "Postnummer" @@ -2077,6 +2264,7 @@ msgstr "Postnummer" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "Land" @@ -2087,6 +2275,7 @@ msgstr "Land" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "Telefon" @@ -2097,6 +2286,7 @@ msgstr "Telefon" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "Totalbeløp" @@ -2113,6 +2303,8 @@ msgstr "Totalbeløp" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "MVA" @@ -2123,6 +2315,7 @@ msgstr "MVA" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "Rabattkodebeløp" @@ -2147,6 +2340,9 @@ msgstr "Rabattkodebeløp" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "Totalbeløp" @@ -2162,6 +2358,7 @@ msgstr "Bør være tilsvarende delsum + MVS/VAT - rabattkodebeløp." #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "Betalingstype" @@ -2171,6 +2368,7 @@ msgstr "Betalingstype" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "f.eks. PayPal Express, PayPal standard, kredittkort." @@ -2194,6 +2392,9 @@ msgstr "f.eks. PayPal Express, PayPal standard, kredittkort." #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "Korttype" @@ -2203,6 +2404,7 @@ msgstr "Korttype" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "F.eks Visa, MasteCard, American Express, osv." @@ -2215,6 +2417,8 @@ msgstr "F.eks Visa, MasteCard, American Express, osv." #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "Kontonummer" @@ -2223,6 +2427,7 @@ msgstr "Kontonummer" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "Skjul alle siffer unntatt de 4 siste sifrene. " @@ -2235,6 +2440,7 @@ msgstr "Skjul alle siffer unntatt de 4 siste sifrene. " #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "Utløpsmåned" @@ -2269,6 +2475,10 @@ msgstr "Utløpsår" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "Status" @@ -2285,6 +2495,9 @@ msgstr "Status" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "portal" @@ -2297,6 +2510,8 @@ msgstr "portal" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "Portaloppsett" @@ -2312,6 +2527,9 @@ msgstr "Portaloppsett" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "For testing" @@ -2327,6 +2545,9 @@ msgstr "For testing" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "For produksjon/live" @@ -2336,6 +2557,7 @@ msgstr "For produksjon/live" #: includes/privacy.php:321 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "Transaksjons ID for betalinger" @@ -2344,6 +2566,7 @@ msgstr "Transaksjons ID for betalinger" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "Opprettet av betalingstjenestens " @@ -2355,6 +2578,8 @@ msgstr "Opprettet av betalingstjenestens " #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "Transaksjons ID for abonnement" @@ -2364,6 +2589,7 @@ msgstr "Transaksjons ID for abonnement" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "Opprettet av betalingsformidlingstjenesten. Kan brukes for å kryssreferere abonnenter." @@ -2387,6 +2613,9 @@ msgstr "Opprettet av betalingsformidlingstjenesten. Kan brukes for å kryssrefer #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:492 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "Dato" @@ -2396,6 +2625,7 @@ msgstr "Dato" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "Affiliate ID" @@ -2405,6 +2635,7 @@ msgstr "Affiliate ID" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "Affiliate under-ID" @@ -2414,6 +2645,7 @@ msgstr "Affiliate under-ID" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "Notater" @@ -2423,6 +2655,7 @@ msgstr "Notater" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "Lagre Bestillingen" @@ -2457,6 +2690,8 @@ msgstr "Send e-post" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "Bestillinger" @@ -2466,6 +2701,7 @@ msgstr "Bestillinger" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "Ny bestilling" @@ -2479,6 +2715,7 @@ msgstr "Vis" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "Forhåndsdefinert datointervall" @@ -2487,6 +2724,7 @@ msgstr "Forhåndsdefinert datointervall" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "Forhåndsdefinert datointervall" @@ -2495,6 +2733,7 @@ msgstr "Forhåndsdefinert datointervall" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "Med nivå" @@ -2503,6 +2742,7 @@ msgstr "Med nivå" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "Med status" @@ -2537,6 +2777,8 @@ msgstr "Filtrer" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "Søk i Bestillinger" @@ -2546,6 +2788,8 @@ msgstr "Søk i Bestillinger" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "%d bestillinger funnet." @@ -2562,6 +2806,7 @@ msgstr "%d bestillinger funnet." #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "Bruker" @@ -2587,6 +2832,8 @@ msgstr "Bruker" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "Type medlemskap" @@ -2601,6 +2848,7 @@ msgstr "Type medlemskap" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "Betaling" @@ -2610,6 +2858,7 @@ msgstr "Betaling" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "Transaksjons ID" @@ -2630,6 +2879,8 @@ msgstr "Transaksjons ID" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "slettet" @@ -2639,6 +2890,7 @@ msgstr "slettet" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "Abonnement" @@ -2649,6 +2901,7 @@ msgstr "Abonnement" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "Dersom du sletter en bestilling er det permanent og kan påvirke aktive brukere. Er du sikker på at du ønsker å slette bestilling %s?" @@ -2671,6 +2924,7 @@ msgstr "e-post" #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "Fant ikke noen bestillinger" @@ -2736,6 +2990,7 @@ msgstr "Vi har opprettet de følgende sidene for deg" #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "Administrasjon av WordPress sidene som har blitt tildelt hver av de påkrevede Paid Memberships Pro sidene." @@ -2744,6 +2999,7 @@ msgstr "Administrasjon av WordPress sidene som har blitt tildelt hver av de påk #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "Tildel Wordpress sider for hver av de påkrevde Paid Memberships Pro sidene, eller" @@ -2752,6 +3008,7 @@ msgstr "Tildel Wordpress sider for hver av de påkrevde Paid Memberships Pro sid #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "klikk for å la oss opprette sidene for deg" @@ -2760,6 +3017,7 @@ msgstr "klikk for å la oss opprette sidene for deg" #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "Side for kontoinformasjon" @@ -2794,6 +3052,14 @@ msgstr "Side for kontoinformasjon" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "Velg en" @@ -2834,6 +3100,16 @@ msgstr "Velg en" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "rediger siden" @@ -2874,6 +3150,16 @@ msgstr "rediger siden" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:246 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "vis siden" @@ -2904,6 +3190,13 @@ msgstr "vis siden" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:248 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "Legg til kortkoden (shortcode)" @@ -2912,6 +3205,7 @@ msgstr "Legg til kortkoden (shortcode)" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "Side for fakturaadresse og kredittkort informasjon" @@ -2920,6 +3214,7 @@ msgstr "Side for fakturaadresse og kredittkort informasjon" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "Side for å avslutte medlemsskapet" @@ -2928,6 +3223,7 @@ msgstr "Side for å avslutte medlemsskapet" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "Side for betalinger" @@ -2936,6 +3232,7 @@ msgstr "Side for betalinger" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "Side for betalingsbekreftelse" @@ -2944,6 +3241,7 @@ msgstr "Side for betalingsbekreftelse" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "Side for fakturaer" @@ -2952,6 +3250,7 @@ msgstr "Side for fakturaer" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "Side for medlemsnivåer" @@ -2959,6 +3258,7 @@ msgstr "Side for medlemsnivåer" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "Ekstra sideinnstillinger" @@ -2972,6 +3272,9 @@ msgstr "Ekstra sideinnstillinger" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "Automatisk oppretting av siden" @@ -2988,6 +3291,7 @@ msgstr "Dine innstillinger for innbetalinger er herved oppdatert" #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "Betalingsbehandlingsportal" @@ -2996,6 +3300,7 @@ msgstr "Betalingsbehandlingsportal" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "Innstillinger for SSL" @@ -3007,12 +3312,14 @@ msgstr "Lær mer om If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "Stripe krever ikke at man oppgir en fakturaadresse. Velg “Nei” for å ikke vise disse feltene på bestillingssiden.
Dersom du velger “nei”, pass på at du ikke har addresseverifisering slått på i kontoinnstillingene dine på Stripe sine websider." @@ -4331,6 +4745,7 @@ msgstr "For å fullføre integreringen av Stripe sine betalingstjenester, pass p #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "Abonnementsoppdateringer" @@ -4364,6 +4779,7 @@ msgstr "Abonnementsoppdateringer, lar deg endre abonnementsverdiene for brukeren #: classes/gateways/class.pmprogateway_stripe.php:2653 #: classes/gateways/class.pmprogateway_stripe.php:2649 #: pages/billing.php:441 +#: classes/gateways/class.pmprogateway_stripe.php:3106 msgid "Update" msgstr "Oppdater" @@ -4376,6 +4792,7 @@ msgstr "Oppdater" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "Klarte ikke å avslutte det gamle abonnementet. Nye oppdateringer ble ikke behandlet." @@ -4413,6 +4830,8 @@ msgstr "Feil: Kunne ikke opprette en kundekonto hos Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "Feil: Fant ikke abonnementet hos Stripe" @@ -4434,6 +4853,8 @@ msgstr "Feil: Fant ikke abonnementet hos Stripe" #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "Feil: Kunne ikke opprette en betalingsplan med Stripe" @@ -4455,6 +4876,8 @@ msgstr "Feil: Kunne ikke opprette en betalingsplan med Stripe" #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "Feil: Kunne ikke lenke kunden til abonnementet hos Stripe" @@ -4465,6 +4888,7 @@ msgstr "Feil: Kunne ikke lenke kunden til abonnementet hos Stripe" #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "Kunne ikke avslutte det gamle abonnementet." @@ -4475,58 +4899,69 @@ msgstr "Kunne ikke avslutte det gamle abonnementet." #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "Fant ikke kunden" #: classes/gateways/class.pmprogateway_twocheckout.php:59 #: paid-memberships-pro.php:134 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "2Checkout" #: classes/gateways/class.pmprogateway_twocheckout.php:114 #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "Innstillinger for 2Checkout" #: classes/gateways/class.pmprogateway_twocheckout.php:123 #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "Gå til kontoen din, så “User Management” i 2Checkout for å opprette en bruker med API-tilgang og API baserte oppdateringer." #: classes/gateways/class.pmprogateway_twocheckout.php:132 #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "Opprettet passord for API brukeren" #: classes/gateways/class.pmprogateway_twocheckout.php:141 #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "Klikk på profilikonet til 2Checkout for å finne ditt kontonummer." # @ pmpro #: classes/gateways/class.pmprogateway_twocheckout.php:146 #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "“Secret Word”" #: classes/gateways/class.pmprogateway_twocheckout.php:150 #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "Gå til kontoen din, så “Site Management”. Finn “Checkout Options” for så å lokalisere ditt “Secret Word”" # @ pmpro #: classes/gateways/class.pmprogateway_twocheckout.php:155 #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "2Checkout INS URL" #: classes/gateways/class.pmprogateway_twocheckout.php:158 #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "For å fullføre integrasjonen med betalingstjenesten til 2Checkout, pass på å bruke følgende som din INS URL og “Approved URL”" #: classes/gateways/class.pmprogateway_twocheckout.php:203 #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "Betal med 2Checkout" @@ -5019,6 +5454,7 @@ msgstr "og" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "Registrer deg for !!name!! i dag" @@ -5043,6 +5479,9 @@ msgstr "Oppgi id for nivået" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "Ingen" @@ -5054,6 +5493,7 @@ msgstr "Lisenskoden din har blitt godkjent." #: includes/license.php:81 #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "Paid Membership Pro brukerstøttelisens" @@ -5070,6 +5510,7 @@ msgstr "Legg inn lisensnøkkelen for brukerstøtte. " #: adminpages/license.php:49 #: adminpages/dashboard.php:178 #: adminpages/license.php:41 +#: adminpages/license.php:53 msgid "Your license is invalid or expired." msgstr "Brukerstøttelisense er ugyldig, eller så har den utgått." @@ -5086,6 +5527,7 @@ msgstr "

Tusen takk! En gyldig %s lisensnøk #: adminpages/license.php:59 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "Legg inn lisensnøkkelen din her…" @@ -5193,6 +5635,8 @@ msgstr "Gjeldende medlemsnivå" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "Ikkebetalende" @@ -5276,6 +5720,9 @@ msgstr "Logg ut" #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "Kurs" @@ -5325,6 +5772,7 @@ msgstr "Din innbetaling blir håndtert av PayPal. Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -6548,93 +7042,111 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -6660,6 +7172,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -6730,6 +7243,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -6835,6 +7349,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -6873,6 +7388,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -6885,31 +7401,39 @@ msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 msgid "%d discount codes found." msgstr "" @@ -6935,6 +7459,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -6953,6 +7484,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -6961,15 +7498,18 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -7010,192 +7550,241 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:960 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:170 #: includes/privacy.php:363 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -7213,6 +7802,7 @@ msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -7220,14 +7810,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -7244,27 +7837,34 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -7274,6 +7874,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -7281,6 +7883,7 @@ msgstr "" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -7288,6 +7891,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -7295,6 +7899,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -7302,6 +7907,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -7309,6 +7915,7 @@ msgstr "" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "" @@ -7316,6 +7923,7 @@ msgstr "" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "" @@ -7323,6 +7931,7 @@ msgstr "" #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "" @@ -7330,6 +7939,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -7337,6 +7947,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -7344,6 +7955,7 @@ msgstr "" #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "" @@ -7382,78 +7994,91 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -7463,12 +8088,15 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -7476,18 +8104,21 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" @@ -7497,26 +8128,31 @@ msgstr "" #: adminpages/paymentsettings.php:122 #: adminpages/paymentsettings.php:127 +#: adminpages/paymentsettings.php:125 msgid "Choose a Gateway" msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" #: adminpages/paymentsettings.php:194 #: adminpages/paymentsettings.php:201 +#: adminpages/paymentsettings.php:199 msgid "Currency and Tax Settings" msgstr "" #: adminpages/paymentsettings.php:239 #: adminpages/paymentsettings.php:246 +#: adminpages/paymentsettings.php:244 msgid "Tax Rate" msgstr "" @@ -7526,11 +8162,13 @@ msgstr "" #: adminpages/paymentsettings.php:260 #: adminpages/paymentsettings.php:273 +#: adminpages/paymentsettings.php:271 msgid "Your Site URL starts with https:// and so PMPro will allow your entire site to be served over HTTPS." msgstr "" #: adminpages/paymentsettings.php:270 #: adminpages/paymentsettings.php:283 +#: adminpages/paymentsettings.php:281 msgid "Recommended: Yes. Try the JavaScript redirects setting if you are having issues with infinite redirect loops." msgstr "" @@ -7562,6 +8200,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -7572,6 +8211,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -7629,27 +8269,32 @@ msgid "Logins All Time" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/memberships.php:385 #: adminpages/reports/sales.php:342 #: adminpages/reports/sales.php:360 +#: adminpages/reports/memberships.php:384 msgid "Generate Report" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -7808,51 +8453,63 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:962 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -7865,30 +8522,36 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -7900,14 +8563,17 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:91 #: classes/gateways/class.pmprogateway_stripe.php:97 #: classes/gateways/class.pmprogateway_stripe.php:1353 +#: classes/gateways/class.pmprogateway_stripe.php:1478 msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" @@ -7921,21 +8587,30 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:750 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -7943,11 +8618,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -8225,17 +8903,20 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:185 #: classes/gateways/class.pmprogateway_paypalexpress.php:194 #: classes/gateways/class.pmprogateway_paypalexpress.php:204 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 msgid "Confirmation Step" msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -8244,6 +8925,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -8252,6 +8934,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -8267,6 +8950,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -8275,6 +8959,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -8286,6 +8971,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -8297,6 +8983,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -8308,6 +8995,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -8316,6 +9004,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -8327,6 +9016,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -8338,6 +9028,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -8346,6 +9037,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -8357,6 +9049,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -8365,6 +9058,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -8388,6 +9082,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -8404,6 +9100,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -8412,6 +9110,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -8420,6 +9119,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -8428,6 +9128,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -8435,6 +9136,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -8443,6 +9145,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -8456,6 +9159,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -8464,6 +9169,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -8472,6 +9178,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -8481,6 +9188,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -8498,6 +9207,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -8506,6 +9217,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -8527,6 +9239,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -8535,6 +9249,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -8543,6 +9258,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -8551,6 +9267,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -8559,6 +9276,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -8567,6 +9285,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -8575,6 +9294,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -8583,6 +9303,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -8591,6 +9312,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -8599,6 +9321,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -8607,6 +9330,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -8619,6 +9343,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -8627,6 +9352,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -8635,6 +9361,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -8643,6 +9370,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -8651,6 +9379,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -8694,6 +9423,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "" @@ -8705,6 +9436,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 msgid "Error: Unkown error while refunding charge #%s" msgstr "" @@ -8714,6 +9446,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -8734,6 +9467,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -8742,6 +9479,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -8751,6 +9489,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -8760,6 +9499,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -8771,6 +9511,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -8782,6 +9523,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -8793,6 +9535,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -8804,6 +9547,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" @@ -8838,6 +9582,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -8850,6 +9595,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -8862,6 +9608,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -10652,14 +11399,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -10668,18 +11418,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -10691,6 +11445,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -10823,6 +11578,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -10936,6 +11692,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -10943,6 +11700,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -10974,6 +11732,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -10983,6 +11742,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -10990,6 +11750,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -11089,6 +11850,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -11096,6 +11859,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -11103,6 +11867,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -11110,6 +11875,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -11181,126 +11947,148 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -11312,6 +12100,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -11409,6 +12200,7 @@ msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -11434,6 +12226,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -11472,6 +12265,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -11487,6 +12295,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -11502,6 +12311,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -11534,6 +12344,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -11546,6 +12357,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -11571,11 +12383,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -11583,6 +12400,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -11590,6 +12408,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -11612,6 +12431,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -11637,6 +12457,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -11644,6 +12465,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -11676,6 +12498,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -11698,6 +12521,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -11708,11 +12532,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -11732,6 +12567,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -11745,6 +12581,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -11754,6 +12591,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -11763,10 +12601,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -11777,6 +12617,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -11784,6 +12625,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -11793,6 +12635,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -11802,12 +12645,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -11815,6 +12661,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -11823,6 +12671,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -11830,6 +12679,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -11837,27 +12687,32 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: paid-memberships-pro.php:194 #: paid-memberships-pro.php:195 +#: paid-memberships-pro.php:201 msgid "Once a month" msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -11915,12 +12770,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -11930,6 +12787,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -11939,6 +12797,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -11948,54 +12807,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -12006,42 +12875,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -12056,51 +12935,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -12108,6 +12999,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -12115,6 +13007,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -12122,6 +13015,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -12130,6 +13024,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -12143,6 +13039,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -12163,19 +13060,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -12185,31 +13086,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -12235,21 +13144,25 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" @@ -12319,26 +13232,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -12347,41 +13266,50 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -12395,19 +13323,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -12438,3 +13370,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-nl_NL.mo b/languages/paid-memberships-pro-nl_NL.mo index e914644ad..3561377ee 100644 Binary files a/languages/paid-memberships-pro-nl_NL.mo and b/languages/paid-memberships-pro-nl_NL.mo differ diff --git a/languages/paid-memberships-pro-nl_NL.po b/languages/paid-memberships-pro-nl_NL.po index 81f2e61e4..a42022198 100644 --- a/languages/paid-memberships-pro-nl_NL.po +++ b/languages/paid-memberships-pro-nl_NL.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:21:00+00:00\n" +"POT-Creation-Date: 2022-05-05T20:37:40+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -195,6 +195,11 @@ msgstr "Payment Gateway & SSL" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "E-mail" @@ -221,6 +226,7 @@ msgstr "Add Ons" #: adminpages/advancedsettings.php:35 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "Je geavanceerde instellingen zijn opgeslagen." @@ -238,6 +244,7 @@ msgstr "Log in om deze inhoud te bekijken. (Re #: adminpages/advancedsettings.php:116 #: includes/updates/upgrade_1.php:13 #: adminpages/advancedsettings.php:118 +#: adminpages/advancedsettings.php:126 msgid "This content is for members only. Visit the site and log in/register to read." msgstr "Deze inhoud is alleen voor leden. Bezoek de site en log in/registreer je om de inhoud te lezen." @@ -251,6 +258,7 @@ msgstr "Deze inhoud is alleen voor leden. Bezoek de site en log in/registreer je #: adminpages/advancedsettings.php:132 #: includes/adminpages.php:73 #: adminpages/advancedsettings.php:134 +#: adminpages/advancedsettings.php:142 msgid "Advanced Settings" msgstr "Geavanceerde instellingen" @@ -258,6 +266,7 @@ msgstr "Geavanceerde instellingen" #: adminpages/advancedsettings.php:85 #: adminpages/advancedsettings.php:164 #: adminpages/advancedsettings.php:166 +#: adminpages/advancedsettings.php:173 msgid "Message for Logged-in Non-members" msgstr "Bericht voor Niet-Leden" @@ -265,6 +274,7 @@ msgstr "Bericht voor Niet-Leden" #: adminpages/advancedsettings.php:89 #: adminpages/advancedsettings.php:168 #: adminpages/advancedsettings.php:170 +#: adminpages/advancedsettings.php:177 msgid "This message replaces the post content for non-members. Available variables" msgstr "Dit bericht vervangt de inhoud van berichten voor niet-leden. Beschikbare variabelen" @@ -272,6 +282,7 @@ msgstr "Dit bericht vervangt de inhoud van berichten voor niet-leden. Beschikbar #: adminpages/advancedsettings.php:94 #: adminpages/advancedsettings.php:173 #: adminpages/advancedsettings.php:175 +#: adminpages/advancedsettings.php:182 msgid "Message for Logged-out Users" msgstr "Bericht voor uitgelogde gebruikers" @@ -279,6 +290,7 @@ msgstr "Bericht voor uitgelogde gebruikers" #: adminpages/advancedsettings.php:98 #: adminpages/advancedsettings.php:177 #: adminpages/advancedsettings.php:179 +#: adminpages/advancedsettings.php:186 msgid "This message replaces the post content for logged-out visitors." msgstr "Dit bericht vervangt de inhoud van berichten voor uitgelogde bezoekers." @@ -286,6 +298,7 @@ msgstr "Dit bericht vervangt de inhoud van berichten voor uitgelogde bezoekers." #: adminpages/advancedsettings.php:103 #: adminpages/advancedsettings.php:182 #: adminpages/advancedsettings.php:184 +#: adminpages/advancedsettings.php:191 msgid "Message for RSS Feed" msgstr "Bericht voor RSS Feed" @@ -293,6 +306,7 @@ msgstr "Bericht voor RSS Feed" #: adminpages/advancedsettings.php:107 #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "This message replaces the post content in RSS feeds." msgstr "Dit bericht vervangt de inhoud van berichten in RSS feeds." @@ -300,6 +314,7 @@ msgstr "Dit bericht vervangt de inhoud van berichten in RSS feeds." #: adminpages/advancedsettings.php:113 #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:212 +#: adminpages/advancedsettings.php:219 msgid "Show Excerpts to Non-Members?" msgstr "Toon fragmenten aan niet-leden?" @@ -307,6 +322,7 @@ msgstr "Toon fragmenten aan niet-leden?" #: adminpages/advancedsettings.php:117 #: adminpages/advancedsettings.php:214 #: adminpages/advancedsettings.php:216 +#: adminpages/advancedsettings.php:223 msgid "No - Hide excerpts." msgstr "Nee - verberg fragmenten." @@ -314,6 +330,7 @@ msgstr "Nee - verberg fragmenten." #: adminpages/advancedsettings.php:118 #: adminpages/advancedsettings.php:215 #: adminpages/advancedsettings.php:217 +#: adminpages/advancedsettings.php:224 msgid "Yes - Show excerpts." msgstr "Ja - Toon fragmenten." @@ -362,6 +379,16 @@ msgstr "Ja - Toon fragmenten." #: classes/gateways/class.pmprogateway_stripe.php:404 #: classes/gateways/class.pmprogateway_stripe.php:418 #: adminpages/paymentsettings.php:279 +#: adminpages/advancedsettings.php:254 +#: adminpages/advancedsettings.php:267 +#: adminpages/advancedsettings.php:359 +#: adminpages/advancedsettings.php:418 +#: adminpages/advancedsettings.php:526 +#: adminpages/membershiplevels.php:939 +#: adminpages/paymentsettings.php:277 +#: classes/gateways/class.pmprogateway_stripe.php:430 +#: classes/gateways/class.pmprogateway_stripe.php:444 +#: includes/profile.php:78 msgid "No" msgstr "Nee" @@ -369,6 +396,7 @@ msgstr "Nee" #: adminpages/advancedsettings.php:129 #: adminpages/advancedsettings.php:338 #: adminpages/advancedsettings.php:353 +#: adminpages/advancedsettings.php:360 msgid "Hide Ads From All Members" msgstr "Verberg advertenties voor alle leden" @@ -376,6 +404,7 @@ msgstr "Verberg advertenties voor alle leden" #: adminpages/advancedsettings.php:130 #: adminpages/advancedsettings.php:339 #: adminpages/advancedsettings.php:354 +#: adminpages/advancedsettings.php:361 msgid "Hide Ads From Certain Members" msgstr "Verberg advertenties voor specifieke leden" @@ -388,6 +417,7 @@ msgstr "Advertenties van de volgende plugins worden automatisch uitgeschakeld" #: adminpages/advancedsettings.php:138 #: adminpages/advancedsettings.php:346 #: adminpages/advancedsettings.php:361 +#: adminpages/advancedsettings.php:368 msgid "To hide ads in your template code, use code like the following" msgstr "Om de advertenties in je template code te verbergen gebruik je de volgende code" @@ -395,6 +425,7 @@ msgstr "Om de advertenties in je template code te verbergen gebruik je de volgen #: adminpages/advancedsettings.php:149 #: adminpages/advancedsettings.php:355 #: adminpages/advancedsettings.php:370 +#: adminpages/advancedsettings.php:377 msgid "Choose Levels to Hide Ads From" msgstr "Kies de niveaus waarin de advertenties verborgen moeten blijven" @@ -411,6 +442,7 @@ msgstr "Stuur alle bezoekers van de registratie pagina naar /subscription/?" #: adminpages/advancedsettings.php:390 #: adminpages/advancedsettings.php:392 #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "multisite only" msgstr "Alleen voor multisite" @@ -450,6 +482,12 @@ msgstr "Alleen voor multisite" #: classes/gateways/class.pmprogateway_stripe.php:406 #: classes/gateways/class.pmprogateway_stripe.php:420 #: adminpages/paymentsettings.php:280 +#: adminpages/advancedsettings.php:419 +#: adminpages/membershiplevels.php:934 +#: adminpages/paymentsettings.php:278 +#: classes/gateways/class.pmprogateway_stripe.php:432 +#: classes/gateways/class.pmprogateway_stripe.php:446 +#: includes/profile.php:79 msgid "Yes" msgstr "Ja" @@ -457,6 +495,7 @@ msgstr "Ja" #: adminpages/advancedsettings.php:195 #: adminpages/advancedsettings.php:241 #: adminpages/advancedsettings.php:256 +#: adminpages/advancedsettings.php:263 msgid "Use reCAPTCHA?" msgstr "gebruik reCAPTCHA?" @@ -470,6 +509,7 @@ msgstr "Ja - Alleen voor gratis lidmaatschappen" #: adminpages/advancedsettings.php:201 #: adminpages/advancedsettings.php:247 #: adminpages/advancedsettings.php:262 +#: adminpages/advancedsettings.php:269 msgid "Yes - All memberships." msgstr "Ja voor alle lidmaatschappen" @@ -477,6 +517,7 @@ msgstr "Ja voor alle lidmaatschappen" #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "A free reCAPTCHA key is required." msgstr "Een gratis reCAPTCHA is vereist." @@ -484,6 +525,7 @@ msgstr "Een gratis reCAPTCHA is vereist." #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "Click here to signup for reCAPTCHA" msgstr "Klik hier om je aan te melden voor reCAPTCHA" @@ -501,6 +543,7 @@ msgstr "reCAPTCHA persoonlijke sleutel" #: adminpages/advancedsettings.php:218 #: adminpages/advancedsettings.php:229 #: adminpages/advancedsettings.php:231 +#: adminpages/advancedsettings.php:238 msgid "Require Terms of Service on signups?" msgstr "Zijn Algemene Voorwaarden vereist bij inschrijving?" @@ -508,6 +551,7 @@ msgstr "Zijn Algemene Voorwaarden vereist bij inschrijving?" #: adminpages/advancedsettings.php:225 #: adminpages/advancedsettings.php:236 #: adminpages/advancedsettings.php:238 +#: adminpages/advancedsettings.php:245 msgid "If yes, create a WordPress page containing your TOS agreement and assign it using the dropdown above." msgstr "Bij Ja, maak dan een Wordpress pagina aan waarin de algemene voorwaarden staan en selecteer de pagina in de dropdownlijst hierboven." @@ -531,6 +575,9 @@ msgstr "geselecteerd" #: adminpages/pagesettings.php:508 #: adminpages/pagesettings.php:512 #: adminpages/paymentsettings.php:316 +#: adminpages/advancedsettings.php:574 +#: adminpages/pagesettings.php:511 +#: adminpages/paymentsettings.php:314 msgid "Save Settings" msgstr "Bewaar instellingen" @@ -599,6 +646,7 @@ msgstr "Fout bij het verwijderen van de code. Probeer opnieuw." #: adminpages/discountcodes.php:796 #: adminpages/discountcodes.php:354 #: adminpages/discountcodes.php:798 +#: adminpages/discountcodes.php:799 msgid "Code not found." msgstr "Code niet gevonden" @@ -617,6 +665,7 @@ msgstr "Bewerk de kortingscode" #: adminpages/discountcodes.php:735 #: adminpages/discountcodes.php:377 #: adminpages/discountcodes.php:737 +#: adminpages/discountcodes.php:738 msgid "Add New Discount Code" msgstr "Voeg nieuwe kortingscode toe" @@ -651,6 +700,8 @@ msgstr "Voeg nieuwe kortingscode toe" #: adminpages/reports/login.php:182 #: adminpages/templates/orders-email.php:49 #: adminpages/templates/orders-print.php:78 +#: adminpages/membershiplevels.php:345 +#: adminpages/membershiplevels.php:805 msgid "ID" msgstr "ID" @@ -688,6 +739,9 @@ msgstr "Dit wordt gegenereerd bij het opslaan." #: adminpages/dashboard.php:292 #: adminpages/orders.php:429 #: adminpages/orders.php:1333 +#: adminpages/discountcodes.php:787 +#: adminpages/orders.php:475 +#: adminpages/orders.php:1426 msgid "Code" msgstr "Code" @@ -700,6 +754,7 @@ msgstr "Code" #: adminpages/discountcodes.php:489 #: includes/profile.php:501 #: includes/profile.php:497 +#: includes/profile.php:537 msgid "Start Date" msgstr "Startdatum" @@ -721,6 +776,8 @@ msgstr "Startdatum" #: classes/gateways/class.pmprogateway_stripe.php:1326 #: classes/gateways/class.pmprogateway_stripe.php:785 #: pages/billing.php:381 +#: classes/gateways/class.pmprogateway_braintree.php:486 +#: classes/gateways/class.pmprogateway_stripe.php:893 msgid "Expiration Date" msgstr "Verloopdatum" @@ -732,6 +789,7 @@ msgstr "Verloopdatum" #: adminpages/discountcodes.php:787 #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:789 +#: adminpages/discountcodes.php:790 msgid "Uses" msgstr "Gebruik" @@ -753,6 +811,7 @@ msgstr "Laat leeg voor ongelimiteerd gebruik." #: adminpages/discountcodes.php:574 #: adminpages/membershiplevels.php:401 #: adminpages/discountcodes.php:576 +#: adminpages/membershiplevels.php:399 msgid "Initial Payment" msgstr "Eerste betaling" @@ -763,6 +822,7 @@ msgstr "Eerste betaling" #: adminpages/discountcodes.php:585 #: adminpages/membershiplevels.php:412 #: adminpages/discountcodes.php:587 +#: adminpages/membershiplevels.php:410 msgid "The initial amount collected at registration." msgstr "Bij registratie zal de eerste betaling plaatsvinden." @@ -773,6 +833,7 @@ msgstr "Bij registratie zal de eerste betaling plaatsvinden." #: adminpages/discountcodes.php:590 #: adminpages/membershiplevels.php:417 #: adminpages/discountcodes.php:592 +#: adminpages/membershiplevels.php:415 msgid "Recurring Subscription" msgstr "Terugkerende abonnementsgelden" @@ -783,6 +844,7 @@ msgstr "Terugkerende abonnementsgelden" #: adminpages/discountcodes.php:591 #: adminpages/membershiplevels.php:418 #: adminpages/discountcodes.php:593 +#: adminpages/membershiplevels.php:416 msgid "Check if this level has a recurring subscription payment." msgstr "Controleer of dit nivea terugkerende abonnementsgelden heeft." @@ -792,6 +854,7 @@ msgstr "Controleer of dit nivea terugkerende abonnementsgelden heeft." #: adminpages/discountcodes.php:595 #: adminpages/membershiplevels.php:422 #: adminpages/discountcodes.php:597 +#: adminpages/membershiplevels.php:420 msgid "Billing Amount" msgstr "Kosten" @@ -814,6 +877,10 @@ msgstr "Kosten" #: classes/gateways/class.pmprogateway_stripe.php:2637 #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2635 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3092 msgid "Day(s)" msgstr "Dag(en)" @@ -836,6 +903,10 @@ msgstr "Dag(en)" #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2641 #: classes/gateways/class.pmprogateway_stripe.php:2637 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3094 msgid "Month(s)" msgstr "Maand(en)" @@ -858,6 +929,10 @@ msgstr "Maand(en)" #: classes/gateways/class.pmprogateway_stripe.php:2638 #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2636 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3093 msgid "Week(s)" msgstr "Week(weken)" @@ -880,6 +955,10 @@ msgstr "Week(weken)" #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2642 #: classes/gateways/class.pmprogateway_stripe.php:2638 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3095 msgid "Year(s)" msgstr "Jaar(jaren)" @@ -890,6 +969,7 @@ msgstr "Jaar(jaren)" #: adminpages/discountcodes.php:618 #: adminpages/membershiplevels.php:446 #: adminpages/discountcodes.php:620 +#: adminpages/membershiplevels.php:444 msgid "The amount to be billed one cycle after the initial payment." msgstr "Het te factureren bedrag één periode na de eerste betaling" @@ -900,6 +980,7 @@ msgstr "Het te factureren bedrag één periode na de eerste betaling" #: adminpages/discountcodes.php:628 #: adminpages/membershiplevels.php:465 #: adminpages/discountcodes.php:630 +#: adminpages/membershiplevels.php:463 msgid "Billing Cycle Limit" msgstr "Limiet betaalperioden" @@ -910,6 +991,7 @@ msgstr "Limiet betaalperioden" #: adminpages/discountcodes.php:632 #: adminpages/membershiplevels.php:469 #: adminpages/discountcodes.php:634 +#: adminpages/membershiplevels.php:467 msgid "The total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "Het totaal aantal periodes die gefactureerd worden, inclusief de testperiode (indien van toepassing), maar zonder de initiele betaling. Zet op nul als het lidmaatschap oneindig is." @@ -920,6 +1002,8 @@ msgstr "Het totaal aantal periodes die gefactureerd worden, inc #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "Standaard testperiode" @@ -931,6 +1015,8 @@ msgstr "Standaard testperiode" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "Selecteer om een standaard testperiode toe te voegen" @@ -942,6 +1028,7 @@ msgstr "Selecteer om een standaard testperiode toe te voegen" #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "Kosten testperiode" @@ -953,6 +1040,7 @@ msgstr "Kosten testperiode" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "voor de eerste" @@ -964,6 +1052,7 @@ msgstr "voor de eerste" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "inschrijfkosten" @@ -975,6 +1064,7 @@ msgstr "inschrijfkosten" #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "Verlopen Lidmaatschap" @@ -985,6 +1075,7 @@ msgstr "Verlopen Lidmaatschap" #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "Selecteer dit om aan te geven wanneer het lidmaatschap verloopt." @@ -997,6 +1088,8 @@ msgstr "Selecteer dit om aan te geven wanneer het lidmaatschap verloopt." #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "Verloopt in" @@ -1007,6 +1100,8 @@ msgstr "Verloopt in" #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "Bepaal de duur van het liddmaatschap. Alle toekomstige betalingen (ook periodieke betalingen, als aanwezig) zullen worden geannuleerd als het lidmaatschap verloopt." @@ -1014,6 +1109,7 @@ msgstr "Bepaal de duur van het liddmaatschap. Alle toekomstige betalingen (ook p #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "Lidmaatschap kortingscode" @@ -1021,6 +1117,7 @@ msgstr "Lidmaatschap kortingscode" #: adminpages/discountcodes.php:535 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "Zoek kortingscodes" @@ -1029,6 +1126,7 @@ msgstr "Zoek kortingscodes" #: adminpages/discountcodes.php:538 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "Zoek" @@ -1036,6 +1134,7 @@ msgstr "Zoek" #: adminpages/discountcodes.php:549 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "Begint" @@ -1056,6 +1155,8 @@ msgstr "Begint" #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "Verloopt" @@ -1064,6 +1165,7 @@ msgstr "Verloopt" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "Soorten" @@ -1089,6 +1191,7 @@ msgstr "Met kortingscodes kun je lidmaatschappen met korting aanbieden aan speci #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "wijzigen" @@ -1127,6 +1230,7 @@ msgstr "E-mail instellingen" #: adminpages/emailsettings.php:70 #: adminpages/emailsettings.php:61 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "Standaard worden door het systeem gegenereerde e-mails verstuurd vanuit wordpress@jouwdomein.com. je kunt dit 'van' adres aanpassen in de onderstaande velden." @@ -1138,17 +1242,20 @@ msgstr "Om het uiterlijk van de systeem gegenereerde e-mails aan te passen, voeg #: adminpages/emailsettings.php:78 #: adminpages/emailsettings.php:69 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "Van e-mail" #: adminpages/emailsettings.php:86 #: adminpages/emailsettings.php:77 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "Van Naam" #: adminpages/emailsettings.php:94 #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "Filter alleen PMPro e-mails?" @@ -1302,6 +1409,8 @@ msgstr "Voeg soort lidmaatschap toe" #: adminpages/reports/history.php:184 #: adminpages/reports/login.php:181 #: adminpages/reports/login.php:184 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 msgid "Name" msgstr "Naam" @@ -1309,12 +1418,14 @@ msgstr "Naam" #: adminpages/membershiplevels.php:296 #: adminpages/addons.php:111 #: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "Omschrijving" #: adminpages/membershiplevels.php:316 #: adminpages/membershiplevels.php:314 #: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "Bevestigingsbericht" @@ -1322,6 +1433,8 @@ msgstr "Bevestigingsbericht" #: adminpages/membershiplevels.php:333 #: adminpages/membershiplevels.php:397 #: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "Betalingsdetails" @@ -1338,6 +1451,8 @@ msgstr "Betalingsdetails" #: classes/gateways/class.pmprogateway_stripe.php:2696 #: classes/gateways/class.pmprogateway_stripe.php:2698 #: classes/gateways/class.pmprogateway_stripe.php:2694 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "per" @@ -1350,6 +1465,7 @@ msgstr "Stripe integratie is op dit moment alleen mogelijk met periodes van \"We #: adminpages/discountcodes.php:620 #: adminpages/membershiplevels.php:448 #: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:446 msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." msgstr "Braintree integratie is op dit moment alleen mogelijk met periodes van \"Month\" or \"Year\"." @@ -1361,6 +1477,7 @@ msgstr "Payflow integratie is op dit moment alleen mogelijk met een frequentie v #: adminpages/membershiplevels.php:374 #: adminpages/membershiplevels.php:372 #: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." msgstr "Na het bewaren van dit niveau, noteer je de ID en creëer je een \"Plan\" in je Braintree dashboard met dezelfde instellingen en de \"Plan ID\" ingesteld op pmpro_#, waar # is het niveau ID." @@ -1373,6 +1490,8 @@ msgstr "Na het bewaren van dit niveau, noteer je de ID en creëer je een \"Plan #: adminpages/membershiplevels.php:454 #: adminpages/membershiplevels.php:459 #: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 msgid "Note" msgstr "Opmerking" @@ -1386,6 +1505,7 @@ msgstr "Je dient een \"Plan\" te creëeren in je Braintree dashboard met dezelf #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "Stripe ondersteunt op dit moment geen betalingslimieten. Je kunt hieronder wel een verloopdatum invullen" @@ -1394,6 +1514,8 @@ msgstr "Stripe ondersteunt op dit moment geen betalingslimieten. Je kunt hierond #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "2Checkout integratie ondersteunt geen testperiodes. Je kunt een testperiode instellen door het intiële bedrag af te laten wijken van het periodieke bedrag." @@ -1403,6 +1525,7 @@ msgstr "2Checkout integratie ondersteunt geen testperiodes. Je kunt een testperi #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "Stripe integratie ondersteunt op dit moment geen testbedragen groter dan $0,-" @@ -1412,6 +1535,7 @@ msgstr "Stripe integratie ondersteunt op dit moment geen testbedragen groter dan #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "Braintree integratie ondersteunt op dit moment geen testbedragen groter dan $0,-" @@ -1421,6 +1545,7 @@ msgstr "Braintree integratie ondersteunt op dit moment geen testbedragen groter #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "Payflow integratie ondersteunt op dit moment geen testbedragen groter dan $0,-" @@ -1431,6 +1556,7 @@ msgstr "Payflow integratie ondersteunt op dit moment geen testbedragen groter da #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "Overige instellingen" @@ -1454,6 +1580,8 @@ msgstr "Selecteer om dit lidmaatschap te verbergen op de lidmaatschapspagina en #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "Inhoud instellingen" @@ -1461,6 +1589,7 @@ msgstr "Inhoud instellingen" #: adminpages/membershiplevels.php:461 #: adminpages/membershiplevels.php:467 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "Categorieën" @@ -1508,6 +1637,8 @@ msgstr "Testperiode" #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "Verloop" @@ -1515,6 +1646,7 @@ msgstr "Verloop" #: adminpages/membershiplevels.php:511 #: adminpages/membershiplevels.php:517 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "Sta inschrijvingen toe." @@ -1523,6 +1655,7 @@ msgstr "Sta inschrijvingen toe." #: adminpages/membershiplevels.php:540 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "GRATIS" @@ -1551,6 +1684,8 @@ msgstr "alle" #: adminpages/reports/sales.php:314 #: adminpages/reports/sales.php:321 #: adminpages/reports/sales.php:332 +#: adminpages/reports/memberships.php:341 +#: adminpages/reports/memberships.php:352 msgid "for" msgstr "voor" @@ -1559,6 +1694,7 @@ msgstr "voor" #: adminpages/membershiplevels.php:566 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "Na" @@ -1586,6 +1722,7 @@ msgstr "Weet je zeker dat je het lidmaatschap%s wilt verwijderen? Alle inschrijv #: includes/adminpages.php:15 #: includes/adminpages.php:74 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "Ledenlijst" @@ -1597,6 +1734,8 @@ msgstr "Ledenlijst" #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "Exporteer naar CSV" @@ -1619,6 +1758,8 @@ msgstr "Exporteer naar CSV" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "Toon" @@ -1642,6 +1783,8 @@ msgstr "Toon" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "Alle soorten" @@ -1663,6 +1806,8 @@ msgstr "Oud-leden" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "Zoek leden" @@ -1690,6 +1835,8 @@ msgstr "%d leden gevonden." #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "Gebruikersnaam" @@ -1721,6 +1868,7 @@ msgstr "Achternaam" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "factuuradres" @@ -1761,6 +1909,8 @@ msgstr "beëindigd" #: includes/profile.php:515 #: includes/profile.php:511 #: adminpages/advancedsettings.php:331 +#: adminpages/advancedsettings.php:338 +#: includes/profile.php:551 msgid "Never" msgstr "Nooit" @@ -1809,6 +1959,7 @@ msgstr "fout tijdens het verwijderen van de bestelling." #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "Bestelling succesvol bewaard." @@ -1822,6 +1973,7 @@ msgstr "Fout tijden het updaten van de bestellings datum en tijd." #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "Fout tijdens het bewaren van de bestelling." @@ -1833,6 +1985,7 @@ msgstr "Fout tijdens het bewaren van de bestelling." #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "Bestellingen" @@ -1841,6 +1994,7 @@ msgstr "Bestellingen" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "Nieuwe bestelling" @@ -1849,6 +2003,7 @@ msgstr "Nieuwe bestelling" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "Willekeurig voor je gegenereerd." @@ -1857,6 +2012,7 @@ msgstr "Willekeurig voor je gegenereerd." #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "Gebruikers ID" @@ -1866,6 +2022,8 @@ msgstr "Gebruikers ID" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "Soort Lidmaatschap ID" @@ -1875,6 +2033,7 @@ msgstr "Soort Lidmaatschap ID" #: includes/privacy.php:245 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "Naam" @@ -1884,6 +2043,7 @@ msgstr "Naam" #: includes/privacy.php:249 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "Straat" @@ -1894,6 +2054,7 @@ msgstr "Straat" #: includes/privacy.php:358 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "Plaatsnaam" @@ -1903,6 +2064,7 @@ msgstr "Plaatsnaam" #: includes/privacy.php:257 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "Staat" @@ -1914,6 +2076,7 @@ msgstr "Staat" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "Postcode" @@ -1925,6 +2088,7 @@ msgstr "Postcode" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "Land" @@ -1935,6 +2099,7 @@ msgstr "Land" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "Telefoon" @@ -1945,6 +2110,7 @@ msgstr "Telefoon" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "Subtotaal" @@ -1960,6 +2126,8 @@ msgstr "Subtotaal" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "BTW" @@ -1970,6 +2138,7 @@ msgstr "BTW" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "kortingsbedrag" @@ -1994,6 +2163,9 @@ msgstr "kortingsbedrag" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "Totaal" @@ -2009,6 +2181,7 @@ msgstr "Moet zijn subtotaal + BTW -kortingsbedrag" #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "Betalingstype" @@ -2018,6 +2191,7 @@ msgstr "Betalingstype" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "bijv. PayPal Express, PayPal Standard, Credit Card." @@ -2042,6 +2216,9 @@ msgstr "bijv. PayPal Express, PayPal Standard, Credit Card." #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "Type kaart" @@ -2051,6 +2228,7 @@ msgstr "Type kaart" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "bijv. Visa, MasterCard, AMEX, etc." @@ -2064,6 +2242,8 @@ msgstr "bijv. Visa, MasterCard, AMEX, etc." #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "Account nummer" @@ -2072,6 +2252,7 @@ msgstr "Account nummer" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "Verberg alles behalve de laatste 4 cijfers." @@ -2084,6 +2265,7 @@ msgstr "Verberg alles behalve de laatste 4 cijfers." #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "Verloopmaand" @@ -2119,6 +2301,10 @@ msgstr "verloopjaar" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "Status" @@ -2136,6 +2322,9 @@ msgstr "Status" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "Gateway" @@ -2144,6 +2333,7 @@ msgstr "Gateway" #: paid-memberships-pro.php:157 #: paid-memberships-pro.php:159 #: paid-memberships-pro.php:160 +#: paid-memberships-pro.php:166 msgid "Testing Only" msgstr "Alleen testen" @@ -2155,6 +2345,7 @@ msgstr "Alleen testen" #: paid-memberships-pro.php:158 #: paid-memberships-pro.php:160 #: paid-memberships-pro.php:161 +#: paid-memberships-pro.php:167 msgid "Pay by Check" msgstr "Betaal met factuur" @@ -2169,6 +2360,8 @@ msgstr "Betaal met factuur" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "Gateway omgeving" @@ -2186,6 +2379,9 @@ msgstr "Gateway omgeving" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "Sandbox/Testen" @@ -2203,6 +2399,9 @@ msgstr "Sandbox/Testen" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "Live/Productie" @@ -2212,6 +2411,7 @@ msgstr "Live/Productie" #: includes/privacy.php:321 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "Payment Transactie ID" @@ -2220,6 +2420,7 @@ msgstr "Payment Transactie ID" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "Gegenereerd door de gateway. Nuttig voor cross reference tussen bestellingen" @@ -2231,6 +2432,8 @@ msgstr "Gegenereerd door de gateway. Nuttig voor cross reference tussen bestell #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "Aanmelding ID" @@ -2240,6 +2443,7 @@ msgstr "Aanmelding ID" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "Gegenereerd door de gateway. Nuttig voor cross reference tussen inschrijvingen." @@ -2264,6 +2468,8 @@ msgstr "Gegenereerd door de gateway. Nuttig voor cross reference tussen inschri #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "Datum" @@ -2273,6 +2479,7 @@ msgstr "Datum" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "Affiliate ID" @@ -2282,6 +2489,7 @@ msgstr "Affiliate ID" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "Affiliate SubID" @@ -2291,6 +2499,7 @@ msgstr "Affiliate SubID" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "Notities" @@ -2300,6 +2509,7 @@ msgstr "Notities" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "Bewaar bestelling" @@ -2326,6 +2536,11 @@ msgstr "Bewaar bestelling" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "Annuleren" @@ -2347,6 +2562,8 @@ msgstr "Annuleren" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "Bestellingen" @@ -2356,6 +2573,7 @@ msgstr "Bestellingen" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "Voeg nieuwe bestellling toe" @@ -2366,6 +2584,7 @@ msgstr "Voeg nieuwe bestellling toe" #: adminpages/orders.php:1014 #: includes/metaboxes.php:19 #: adminpages/orders.php:1015 +#: adminpages/orders.php:1103 msgid "All" msgstr "Alles" @@ -2374,6 +2593,7 @@ msgstr "Alles" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "Binnen een periode" @@ -2382,6 +2602,7 @@ msgstr "Binnen een periode" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "Voorgedefinieerde periode" @@ -2390,6 +2611,7 @@ msgstr "Voorgedefinieerde periode" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "Binnen een niveau" @@ -2398,6 +2620,7 @@ msgstr "Binnen een niveau" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "Binnen een status" @@ -2406,6 +2629,7 @@ msgstr "Binnen een status" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "Van" @@ -2414,6 +2638,7 @@ msgstr "Van" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "Naar" @@ -2422,6 +2647,7 @@ msgstr "Naar" #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "Filter op" @@ -2430,6 +2656,7 @@ msgstr "Filter op" #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "Filter" @@ -2445,6 +2672,8 @@ msgstr "Filter" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "Zoekvolgorde" @@ -2454,6 +2683,8 @@ msgstr "Zoekvolgorde" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "%d bestellingen gevonden." @@ -2472,6 +2703,7 @@ msgstr "%d bestellingen gevonden." #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "Gebruiker" @@ -2503,6 +2735,8 @@ msgstr "Gebruiker" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "Soort lidmaatschap" @@ -2518,6 +2752,7 @@ msgstr "Soort lidmaatschap" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "betaling" @@ -2527,6 +2762,7 @@ msgstr "betaling" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "Transactie ID's" @@ -2547,6 +2783,8 @@ msgstr "Transactie ID's" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "verwijderd" @@ -2556,6 +2794,7 @@ msgstr "verwijderd" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "Inschrijving" @@ -2566,6 +2805,7 @@ msgstr "Inschrijving" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "Bestellingen worden permanent verwijderd en kan effect hebben op actieve gebruiker. Weet je zeker dat je de bestelling %s wilt verwijderen?" @@ -2580,6 +2820,7 @@ msgstr "Bestellingen worden permanent verwijderd en kan effect hebben op actieve #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "Geen bestellingen gevonden." @@ -2643,6 +2884,7 @@ msgstr "De volgende pagina's zijn voor je aangemaakt" #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "Manage de wordpress pagina's die zijn toegewezen aan alle verplichte paid Membership Pro pagina's" @@ -2651,6 +2893,7 @@ msgstr "Manage de wordpress pagina's die zijn toegewezen aan alle verplichte pai #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "Wijs de Wordpress pagina's voor elke verplichte Paid Membership Pro pagina toe of" @@ -2659,6 +2902,7 @@ msgstr "Wijs de Wordpress pagina's voor elke verplichte Paid Membership Pro pagi #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "Klik hier om ze door ons te laten genereren" @@ -2667,6 +2911,7 @@ msgstr "Klik hier om ze door ons te laten genereren" #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "Account pagina" @@ -2718,6 +2963,16 @@ msgstr "Account pagina" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "Wijzig pagina" @@ -2762,6 +3017,16 @@ msgstr "Wijzig pagina" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:246 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "Bekijk pagina" @@ -2805,6 +3070,13 @@ msgstr "Bekijk pagina" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:248 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "Voeg shortcode toe" @@ -2814,6 +3086,7 @@ msgstr "Voeg shortcode toe" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "Betalingsinformatie pagina" @@ -2823,6 +3096,7 @@ msgstr "Betalingsinformatie pagina" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "Annuleringspagina" @@ -2832,6 +3106,7 @@ msgstr "Annuleringspagina" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "Inschrijvingspagina" @@ -2841,6 +3116,7 @@ msgstr "Inschrijvingspagina" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "Bevestigingspagina" @@ -2850,6 +3126,7 @@ msgstr "Bevestigingspagina" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "Factuurpagina" @@ -2859,6 +3136,7 @@ msgstr "Factuurpagina" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "Niveaus pagina" @@ -2876,6 +3154,7 @@ msgstr "Je betalingsinstellingen zijn geuppdate." #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "Payment Gateway" @@ -2884,6 +3163,7 @@ msgstr "Payment Gateway" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "SSL instellingen" @@ -2931,6 +3211,7 @@ msgstr "Wachtwoord" #: classes/gateways/class.pmprogateway_paypalexpress.php:162 #: classes/gateways/class.pmprogateway_paypalstandard.php:154 #: classes/gateways/class.pmprogateway_paypalexpress.php:172 +#: classes/gateways/class.pmprogateway_paypalexpress.php:173 msgid "Gateway Account Email" msgstr "gateway Account E-mail" @@ -2944,6 +3225,8 @@ msgstr "gateway Account E-mail" #: classes/gateways/class.pmprogateway_paypalstandard.php:162 #: classes/gateways/class.pmprogateway_twocheckout.php:120 #: classes/gateways/class.pmprogateway_paypalexpress.php:180 +#: classes/gateways/class.pmprogateway_paypalexpress.php:181 +#: classes/gateways/class.pmprogateway_twocheckout.php:127 msgid "API Username" msgstr "API gebruikersnaam" @@ -2957,6 +3240,8 @@ msgstr "API gebruikersnaam" #: classes/gateways/class.pmprogateway_paypalstandard.php:170 #: classes/gateways/class.pmprogateway_twocheckout.php:129 #: classes/gateways/class.pmprogateway_paypalexpress.php:188 +#: classes/gateways/class.pmprogateway_paypalexpress.php:189 +#: classes/gateways/class.pmprogateway_twocheckout.php:136 msgid "API Password" msgstr "API wachtwoord" @@ -2967,6 +3252,7 @@ msgstr "API wachtwoord" #: classes/gateways/class.pmprogateway_paypalexpress.php:186 #: classes/gateways/class.pmprogateway_paypalstandard.php:178 #: classes/gateways/class.pmprogateway_paypalexpress.php:196 +#: classes/gateways/class.pmprogateway_paypalexpress.php:197 msgid "API Signature" msgstr "API handtekening" @@ -2992,6 +3278,7 @@ msgstr "Transactie sleutel" #: classes/gateways/class.pmprogateway_stripe.php:570 #: classes/gateways/class.pmprogateway_stripe.php:576 #: classes/gateways/class.pmprogateway_stripe.php:340 +#: classes/gateways/class.pmprogateway_stripe.php:366 msgid "Secret Key" msgstr "Geheime sleutel" @@ -3003,6 +3290,7 @@ msgstr "Geheime sleutel" #: classes/gateways/class.pmprogateway_stripe.php:554 #: classes/gateways/class.pmprogateway_stripe.php:560 #: classes/gateways/class.pmprogateway_stripe.php:324 +#: classes/gateways/class.pmprogateway_stripe.php:350 msgid "Publishable Key" msgstr "Publiceerbare sleutel" @@ -3013,6 +3301,7 @@ msgstr "Publiceerbare sleutel" #: adminpages/paymentsettings.php:364 #: classes/gateways/class.pmprogateway_braintree.php:313 #: classes/gateways/class.pmprogateway_cybersource.php:94 +#: classes/gateways/class.pmprogateway_braintree.php:320 msgid "Merchant ID" msgstr "Verkoper ID" @@ -3020,6 +3309,7 @@ msgstr "Verkoper ID" #: adminpages/paymentsettings.php:302 #: adminpages/paymentsettings.php:306 #: classes/gateways/class.pmprogateway_braintree.php:321 +#: classes/gateways/class.pmprogateway_braintree.php:328 msgid "Public Key" msgstr "Openbare sleutel" @@ -3027,6 +3317,7 @@ msgstr "Openbare sleutel" #: adminpages/paymentsettings.php:310 #: adminpages/paymentsettings.php:314 #: classes/gateways/class.pmprogateway_braintree.php:329 +#: classes/gateways/class.pmprogateway_braintree.php:336 msgid "Private Key" msgstr "Persoonlijke sleutel" @@ -3034,12 +3325,14 @@ msgstr "Persoonlijke sleutel" #: adminpages/paymentsettings.php:318 #: adminpages/paymentsettings.php:322 #: classes/gateways/class.pmprogateway_braintree.php:337 +#: classes/gateways/class.pmprogateway_braintree.php:344 msgid "Client-Side Encryption Key" msgstr "Client-Side Encryption Sleutel" #: adminpages/paymentsettings.php:360 #: adminpages/paymentsettings.php:355 #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "Geheim woord" @@ -3056,12 +3349,14 @@ msgstr "Transaction Security Sleutel" #: adminpages/paymentsettings.php:381 #: adminpages/paymentsettings.php:199 #: adminpages/paymentsettings.php:206 +#: adminpages/paymentsettings.php:204 msgid "Currency" msgstr "Valuta" #: adminpages/paymentsettings.php:400 #: adminpages/paymentsettings.php:215 #: adminpages/paymentsettings.php:222 +#: adminpages/paymentsettings.php:220 msgid "Not all currencies will be supported by every gateway. Please check with your gateway." msgstr "Niet alle valuta wordt ondersteund door elke gateway. Controleer dit bij je gateway. " @@ -3070,6 +3365,7 @@ msgstr "Niet alle valuta wordt ondersteund door elke gateway. Controleer dit bij #: adminpages/paymentsettings.php:401 #: adminpages/paymentsettings.php:220 #: adminpages/paymentsettings.php:227 +#: adminpages/paymentsettings.php:225 msgid "Accepted Credit Card Types" msgstr "Geaccepteerde Credit Card types" @@ -3094,6 +3390,8 @@ msgstr "Aan wie moet betaald worden, Waar naar te versturen. getoond op de insch #: classes/gateways/class.pmprogateway_stripe.php:629 #: classes/gateways/class.pmprogateway_stripe.php:635 #: classes/gateways/class.pmprogateway_stripe.php:399 +#: adminpages/orders.php:570 +#: classes/gateways/class.pmprogateway_stripe.php:425 msgid "Show Billing Address Fields" msgstr "Toon factuuradres velden" @@ -3103,6 +3401,7 @@ msgstr "Toon factuuradres velden" #: classes/gateways/class.pmprogateway_stripe.php:638 #: classes/gateways/class.pmprogateway_stripe.php:644 #: classes/gateways/class.pmprogateway_stripe.php:408 +#: classes/gateways/class.pmprogateway_stripe.php:434 msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.
If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "Stripe heeft geen factuuradres velden nodig. Kies 'Nee' om ze te verbergen op de inschrijfpagina.
Als Nee, zorg er dan voor dat de adresverificatie in de Stripe Dashboard instellingen uit staat." @@ -3111,6 +3410,7 @@ msgstr "Stripe heeft geen factuuradres velden nodig. Kies 'Nee' om ze te verberg #: adminpages/paymentsettings.php:438 #: adminpages/paymentsettings.php:234 #: adminpages/paymentsettings.php:241 +#: adminpages/paymentsettings.php:239 msgid "Sales Tax" msgstr "BTW" @@ -3123,6 +3423,7 @@ msgstr "BTW" #: pages/billing.php:179 #: adminpages/paymentsettings.php:241 #: pages/billing.php:181 +#: adminpages/paymentsettings.php:239 msgid "optional" msgstr "optioneel" @@ -3131,6 +3432,7 @@ msgstr "optioneel" #: adminpages/paymentsettings.php:441 #: adminpages/paymentsettings.php:237 #: adminpages/paymentsettings.php:244 +#: adminpages/paymentsettings.php:242 msgid "Tax State" msgstr "Staat BTW" @@ -3139,6 +3441,7 @@ msgstr "Staat BTW" #: adminpages/paymentsettings.php:442 #: adminpages/paymentsettings.php:238 #: adminpages/paymentsettings.php:245 +#: adminpages/paymentsettings.php:243 msgid "abbreviation, e.g. \"PA\"" msgstr "afkorting, bijv. \"PA\"" @@ -3147,6 +3450,7 @@ msgstr "afkorting, bijv. \"PA\"" #: adminpages/paymentsettings.php:444 #: adminpages/paymentsettings.php:240 #: adminpages/paymentsettings.php:247 +#: adminpages/paymentsettings.php:245 msgid "decimal, e.g. \"0.06\"" msgstr "decimaal, bijv. \"0.06\"" @@ -3158,6 +3462,7 @@ msgstr "Alleen US. Als waarden zijn opgegeven zal de BTW worden toegepast voor a #: adminpages/paymentsettings.php:450 #: adminpages/paymentsettings.php:253 #: adminpages/paymentsettings.php:266 +#: adminpages/paymentsettings.php:264 msgid "Force SSL" msgstr "Forceer SSL" @@ -3165,6 +3470,7 @@ msgstr "Forceer SSL" #: adminpages/paymentsettings.php:456 #: adminpages/paymentsettings.php:268 #: adminpages/paymentsettings.php:281 +#: adminpages/paymentsettings.php:279 msgid "Yes (with JavaScript redirects)" msgstr "Ja (met JavaScript redirects)" @@ -3173,6 +3479,7 @@ msgstr "Ja (met JavaScript redirects)" #: adminpages/paymentsettings.php:463 #: adminpages/paymentsettings.php:278 #: adminpages/paymentsettings.php:291 +#: adminpages/paymentsettings.php:289 msgid "SSL Seal Code" msgstr "SSL Seal Code" @@ -3195,6 +3502,7 @@ msgstr "Gebruik de \"Nuclear Option\" om beveiligde (HTTPS) URL's op je beveilgd #: classes/gateways/class.pmprogateway_paypalexpress.php:205 #: classes/gateways/class.pmprogateway_paypalstandard.php:186 #: classes/gateways/class.pmprogateway_paypalexpress.php:215 +#: classes/gateways/class.pmprogateway_paypalexpress.php:216 msgid "IPN Handler URL" msgstr "IPN Handler URL" @@ -3204,12 +3512,14 @@ msgstr "IPN Handler URL" #: classes/gateways/class.pmprogateway_paypal.php:199 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 #: classes/gateways/class.pmprogateway_paypalexpress.php:218 +#: classes/gateways/class.pmprogateway_paypalexpress.php:219 msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to " msgstr "Voor volledige integratie met PayPal, stel je de IPN Handler URL in op " #: adminpages/paymentsettings.php:493 #: adminpages/paymentsettings.php:487 #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "TwoCheckout INS URL" @@ -3239,6 +3549,7 @@ msgstr "Voor volledige integratie met Authorize.net, stel je de Silent Post in o #: adminpages/paymentsettings.php:503 #: adminpages/paymentsettings.php:511 #: classes/gateways/class.pmprogateway_braintree.php:345 +#: classes/gateways/class.pmprogateway_braintree.php:352 msgid "Web Hook URL" msgstr "Web Hook URL" @@ -3252,6 +3563,7 @@ msgstr "Voor volledige integratie met stripe, stel je de Web Hook URL in op " #: adminpages/paymentsettings.php:474 #: adminpages/paymentsettings.php:515 #: classes/gateways/class.pmprogateway_braintree.php:348 +#: classes/gateways/class.pmprogateway_braintree.php:355 msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to" msgstr "Voor volledige integratie met Braintree, stel je de Web Hook in op " @@ -3332,6 +3644,7 @@ msgstr "Visits, Views, and Logins Rapportage" #: classes/class-pmpro-members-list-table.php:234 #: classes/class-pmpro-members-list-table.php:233 #: adminpages/reports/login.php:105 +#: adminpages/reports/login.php:111 msgid "All Users" msgstr "Alle gebruikers" @@ -3377,6 +3690,7 @@ msgstr "Inschrijvingen" #: adminpages/reports/memberships.php:52 #: adminpages/reports/sales.php:53 #: adminpages/reports/sales.php:542 +#: adminpages/reports/sales.php:543 msgid "All Time" msgstr "Altijd" @@ -3388,6 +3702,7 @@ msgstr "Altijd" #: adminpages/orders.php:1081 #: adminpages/orders.php:1073 #: adminpages/orders.php:1074 +#: adminpages/orders.php:1162 msgid "This Year" msgstr "Dit jaar" @@ -3400,6 +3715,7 @@ msgstr "Dit jaar" #: adminpages/orders.php:1077 #: adminpages/orders.php:1069 #: adminpages/orders.php:1070 +#: adminpages/orders.php:1158 msgid "This Month" msgstr "Deze maand" @@ -3440,6 +3756,8 @@ msgstr "Lifetime Value (LTV)" #: adminpages/reports/sales.php:295 #: adminpages/advancedsettings.php:322 #: adminpages/reports/sales.php:313 +#: adminpages/advancedsettings.php:329 +#: adminpages/reports/memberships.php:332 msgid "Daily" msgstr "Dagelijks" @@ -3452,6 +3770,8 @@ msgstr "Dagelijks" #: adminpages/reports/sales.php:296 #: adminpages/advancedsettings.php:328 #: adminpages/reports/sales.php:314 +#: adminpages/advancedsettings.php:335 +#: adminpages/reports/memberships.php:333 msgid "Monthly" msgstr "Maandelijks" @@ -3462,11 +3782,13 @@ msgstr "Maandelijks" #: adminpages/reports/memberships.php:335 #: adminpages/reports/sales.php:297 #: adminpages/reports/sales.php:315 +#: adminpages/reports/memberships.php:334 msgid "Annual" msgstr "Jaarlijks" #: adminpages/reports/memberships.php:299 #: adminpages/reports/memberships.php:339 +#: adminpages/reports/memberships.php:338 msgid "Signups vs. Cancellations" msgstr "Inschrijvingen vs. Annuleringen" @@ -3477,6 +3799,7 @@ msgstr "Inschrijvingen vs. Annuleringen" #: adminpages/reports/memberships.php:385 #: adminpages/reports/sales.php:342 #: adminpages/reports/sales.php:360 +#: adminpages/reports/memberships.php:384 msgid "Generate Report" msgstr "Genereer rapportage" @@ -3518,6 +3841,7 @@ msgstr "Verkopen" #: includes/cleanup.php:24 #: classes/class.memberorder.php:959 #: classes/class.memberorder.php:1001 +#: classes/class.memberorder.php:1010 #, php-format msgid "There was an error canceling the subscription for user with ID=%s. You will want to check your payment gateway to see if their subscription is still active." msgstr "Er was een fout bij het annulering voor de gebruiker met ID=%s. Controleer je payment gateway om te zien of de betalingsinstellingen nog actief zijn." @@ -3549,6 +3873,7 @@ msgstr "Lidmaatschap voor %s bij %s is GEANNULEERD" #: classes/class.pmproemail.php:173 #: classes/class.pmproemail.php:269 #: classes/class.pmproemail.php:262 +#: classes/class.pmproemail.php:395 #, php-format msgid "Your membership confirmation for %s" msgstr "Je lidmaatschap bevestiging voor %s" @@ -3622,6 +3947,18 @@ msgstr "Je lidmaatschap bevestiging voor %s" #: classes/class.pmproemail.php:764 #: adminpages/orders.php:576 #: adminpages/orders.php:1343 +#: adminpages/orders.php:697 +#: adminpages/orders.php:1437 +#: classes/class.pmproemail.php:465 +#: classes/class.pmproemail.php:471 +#: classes/class.pmproemail.php:477 +#: classes/class.pmproemail.php:567 +#: classes/class.pmproemail.php:573 +#: classes/class.pmproemail.php:895 +#: classes/class.pmproemail.php:897 +#: classes/gateways/class.pmprogateway_braintree.php:516 +#: classes/gateways/class.pmprogateway_stripe.php:906 +#: includes/profile.php:454 msgid "Discount Code" msgstr "kortingscode" @@ -3655,6 +3992,11 @@ msgstr "kortingscode" #: classes/class.pmproemail.php:771 #: classes/class.pmproemail.php:905 #: classes/class.pmproemail.php:950 +#: classes/class.pmproemail.php:485 +#: classes/class.pmproemail.php:583 +#: classes/class.pmproemail.php:904 +#: classes/class.pmproemail.php:1038 +#: classes/class.pmproemail.php:1083 #, php-format msgid "This membership will expire on %s." msgstr "Dit lidmaatschap verloopt op %s." @@ -3713,6 +4055,7 @@ msgstr "FACTUUR voor %s lidmaatschap" #: classes/class.pmproemail.php:794 #: classes/class.pmproemail.php:806 #: classes/class.pmproemail.php:799 +#: classes/class.pmproemail.php:932 #, php-format msgid "Your trial at %s is ending soon" msgstr "Je testperiode bij %s verloopt binnenkort" @@ -3723,6 +4066,7 @@ msgstr "Je testperiode bij %s verloopt binnenkort" #: classes/class.pmproemail.php:831 #: classes/class.pmproemail.php:843 #: classes/class.pmproemail.php:836 +#: classes/class.pmproemail.php:969 #, php-format msgid "Your membership at %s has ended" msgstr "Je lidmaatschao bij %s is beëindigd" @@ -3733,6 +4077,7 @@ msgstr "Je lidmaatschao bij %s is beëindigd" #: classes/class.pmproemail.php:858 #: classes/class.pmproemail.php:870 #: classes/class.pmproemail.php:863 +#: classes/class.pmproemail.php:996 #, php-format msgid "Your membership at %s will end soon" msgstr "Je lidmaatschap bij %s verloopt binnenkort" @@ -3743,6 +4088,7 @@ msgstr "Je lidmaatschap bij %s verloopt binnenkort" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:900 #: classes/class.pmproemail.php:893 +#: classes/class.pmproemail.php:1026 #, php-format msgid "Your membership at %s has been changed" msgstr "Je lidmaatschao bij %s is aangepast" @@ -3757,6 +4103,8 @@ msgstr "Je lidmaatschao bij %s is aangepast" #: includes/email.php:465 #: classes/class.pmproemail.php:898 #: classes/class.pmproemail.php:943 +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 #, php-format msgid "The new level is %s." msgstr "Je nieuwe type lidmaatschap is %s." @@ -3792,6 +4140,7 @@ msgstr "Dit lidmaatschap verloopt niet" #: classes/class.pmproemail.php:933 #: classes/class.pmproemail.php:945 #: classes/class.pmproemail.php:938 +#: classes/class.pmproemail.php:1071 #, php-format msgid "Membership for %s at %s has been changed" msgstr "Lidmaatschao voor %s bij %s is aangepast" @@ -3876,36 +4225,42 @@ msgstr "Kon geen verbinding maken met Authorize.net" #: classes/gateways/class.pmprogateway_braintree.php:61 #: classes/gateways/class.pmprogateway_stripe.php:53 #: classes/gateways/class.pmprogateway_braintree.php:574 +#: classes/gateways/class.pmprogateway_braintree.php:581 msgid "Unknown error: Initial payment failed." msgstr "Onbekende fout: Initiële betaling is niet gelukt." #: classes/gateways/class.pmprogateway_braintree.php:120 #: classes/gateways/class.pmprogateway_braintree.php:650 #: classes/gateways/class.pmprogateway_braintree.php:653 +#: classes/gateways/class.pmprogateway_braintree.php:660 msgid "Error during settlement:" msgstr "Fout tijdens afsluiten" #: classes/gateways/class.pmprogateway_braintree.php:129 #: classes/gateways/class.pmprogateway_braintree.php:659 #: classes/gateways/class.pmprogateway_braintree.php:662 +#: classes/gateways/class.pmprogateway_braintree.php:669 msgid "Error during charge:" msgstr "Fout tijdens incasso:" #: classes/gateways/class.pmprogateway_braintree.php:198 #: classes/gateways/class.pmprogateway_braintree.php:762 #: classes/gateways/class.pmprogateway_braintree.php:765 +#: classes/gateways/class.pmprogateway_braintree.php:772 msgid "Failed to update customer." msgstr "Update van klant is niet gelukt" #: classes/gateways/class.pmprogateway_braintree.php:246 #: classes/gateways/class.pmprogateway_braintree.php:810 #: classes/gateways/class.pmprogateway_braintree.php:813 +#: classes/gateways/class.pmprogateway_braintree.php:820 msgid "Failed to create customer." msgstr "Aanmaken van klant is niet gelukt." #: classes/gateways/class.pmprogateway_braintree.php:253 #: classes/gateways/class.pmprogateway_braintree.php:817 #: classes/gateways/class.pmprogateway_braintree.php:820 +#: classes/gateways/class.pmprogateway_braintree.php:827 msgid "Error creating customer record with Braintree:" msgstr "Fout tijdens het maken van een klantrecord met Braintree:" @@ -3934,6 +4289,7 @@ msgstr "Inschrijven met Braintree is niet gelukt:" #: classes/gateways/class.pmprogateway_stripe.php:361 #: classes/gateways/class.pmprogateway_braintree.php:1036 #: classes/gateways/class.pmprogateway_braintree.php:1039 +#: classes/gateways/class.pmprogateway_braintree.php:1046 msgid "Could not find the subscription." msgstr "Kon de inschrijving niet vinden." @@ -3955,6 +4311,7 @@ msgstr "Een gedeeltelijke betaling heeft plaatsgevonden die we niet konden terug #: classes/gateways/class.pmprogateway_paypalexpress.php:854 #: classes/gateways/class.pmprogateway_paypal.php:726 #: classes/gateways/class.pmprogateway_paypalexpress.php:865 +#: classes/gateways/class.pmprogateway_paypalexpress.php:866 msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward." msgstr "Neem contact op met de eigenaar van de site of annuleer je inschrijving vanuit PayPal om ervoor te zorgen dat er geen betaling plaatsvindt." @@ -3996,6 +4353,8 @@ msgstr "Fout tijdens het maken van een klantrecord met Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "Fout tijdens het aanmaken van plan met Stripe" @@ -4019,6 +4378,8 @@ msgstr "Fout tijdens het aanmaken van plan met Stripe" #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "Fout tijdens subscribing customer to plan met Stripe:" @@ -4029,6 +4390,7 @@ msgstr "Fout tijdens subscribing customer to plan met Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "Kon oude inschrijving niet annuleren." @@ -4532,6 +4894,7 @@ msgstr "en" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "Schrijf je nu in voor !!name!!" @@ -4602,6 +4965,9 @@ msgstr "Huidig lidmaatschap" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "Geen" @@ -4657,6 +5023,9 @@ msgstr "Je lidmaatschao is actief." #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "Lidmaatschap" @@ -4737,12 +5106,15 @@ msgstr "Wijzig Profiel" #: includes/profile.php:921 #: includes/profile.php:880 #: includes/profile.php:917 +#: includes/profile.php:920 +#: includes/profile.php:957 msgid "Change Password" msgstr "Wijzig wachtwoord" #: pages/account.php:91 #: pages/account.php:87 #: adminpages/emailtemplates.php:156 +#: adminpages/emailtemplates.php:149 msgid "Billing Information" msgstr "Betaalinformatie" @@ -4826,6 +5198,7 @@ msgstr "Je betalingen worden gemanaged door PayPal.
Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -6149,113 +6584,135 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:199 #: adminpages/advancedsettings.php:201 +#: adminpages/advancedsettings.php:208 msgid "Filter searches and archives?" msgstr "" #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:205 +#: adminpages/advancedsettings.php:212 msgid "No - Non-members will see restricted posts/pages in searches and archives." msgstr "" #: adminpages/advancedsettings.php:204 #: adminpages/advancedsettings.php:206 +#: adminpages/advancedsettings.php:213 msgid "Yes - Only members will see restricted posts/pages in searches and archives." msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:333 #: adminpages/advancedsettings.php:348 +#: adminpages/advancedsettings.php:355 msgid "Hide Ads From Members?" msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -6281,6 +6738,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -6344,6 +6802,7 @@ msgstr "" #: adminpages/license.php:49 #: adminpages/dashboard.php:178 #: adminpages/license.php:41 +#: adminpages/license.php:53 msgid "Your license is invalid or expired." msgstr "" @@ -6358,6 +6817,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -6463,6 +6923,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -6506,6 +6967,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -6518,31 +6980,39 @@ msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 msgid "%d discount codes found." msgstr "" @@ -6568,6 +7038,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -6586,6 +7063,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -6603,6 +7086,11 @@ msgstr "" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "" @@ -6611,19 +7099,23 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -6664,192 +7156,241 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:960 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:170 #: includes/privacy.php:363 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -6879,6 +7420,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "" @@ -6896,12 +7438,14 @@ msgstr "" #: adminpages/license.php:59 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -6909,14 +7453,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -6933,35 +7480,44 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -6971,6 +7527,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -6978,6 +7536,7 @@ msgstr "" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -6985,6 +7544,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -6992,6 +7552,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -6999,6 +7560,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -7006,6 +7568,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -7013,6 +7576,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -7057,24 +7621,28 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" @@ -7101,60 +7669,77 @@ msgstr "" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -7164,6 +7749,8 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" @@ -7176,12 +7763,16 @@ msgstr "" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -7189,24 +7780,28 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "" @@ -7216,26 +7811,31 @@ msgstr "" #: adminpages/paymentsettings.php:122 #: adminpages/paymentsettings.php:127 +#: adminpages/paymentsettings.php:125 msgid "Choose a Gateway" msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" #: adminpages/paymentsettings.php:194 #: adminpages/paymentsettings.php:201 +#: adminpages/paymentsettings.php:199 msgid "Currency and Tax Settings" msgstr "" #: adminpages/paymentsettings.php:239 #: adminpages/paymentsettings.php:246 +#: adminpages/paymentsettings.php:244 msgid "Tax Rate" msgstr "" @@ -7245,11 +7845,13 @@ msgstr "" #: adminpages/paymentsettings.php:260 #: adminpages/paymentsettings.php:273 +#: adminpages/paymentsettings.php:271 msgid "Your Site URL starts with https:// and so PMPro will allow your entire site to be served over HTTPS." msgstr "" #: adminpages/paymentsettings.php:270 #: adminpages/paymentsettings.php:283 +#: adminpages/paymentsettings.php:281 msgid "Recommended: Yes. Try the JavaScript redirects setting if you are having issues with infinite redirect loops." msgstr "" @@ -7259,16 +7861,19 @@ msgstr "" #: adminpages/paymentsettings.php:287 #: adminpages/paymentsettings.php:306 +#: adminpages/paymentsettings.php:304 msgid "Extra HTTPS URL Filter" msgstr "" #: adminpages/paymentsettings.php:290 #: adminpages/paymentsettings.php:309 +#: adminpages/paymentsettings.php:307 msgid "Pass all generated HTML through a URL filter to add HTTPS to URLs used on secure pages. Check this if you are using SSL and have warnings on your checkout pages." msgstr "" #: adminpages/reports.php:19 #: adminpages/reports.php:18 +#: adminpages/reports.php:21 msgid "Back to Reports Dashboard" msgstr "" @@ -7296,6 +7901,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -7306,6 +7912,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -7364,29 +7971,35 @@ msgid "All Cancellations" msgstr "" #: adminpages/reports/memberships.php:338 +#: adminpages/reports/memberships.php:337 msgid "Signups vs. All Cancellations" msgstr "" #: adminpages/reports/memberships.php:340 +#: adminpages/reports/memberships.php:339 msgid "Signups vs. Expirations" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -7597,63 +8210,77 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:962 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:463 #: classes/class.pmproemail.php:475 #: classes/class.pmproemail.php:468 +#: classes/class.pmproemail.php:601 msgid "Your billing information has been updated at %s" msgstr "" #: classes/class.pmproemail.php:513 #: classes/class.pmproemail.php:525 #: classes/class.pmproemail.php:518 +#: classes/class.pmproemail.php:651 msgid "Billing information has been updated for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -7666,30 +8293,36 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -7697,6 +8330,7 @@ msgstr "" #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:167 +#: paid-memberships-pro.php:173 msgid "Authorize.net" msgstr "" @@ -7712,14 +8346,17 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:91 #: classes/gateways/class.pmprogateway_stripe.php:97 #: classes/gateways/class.pmprogateway_stripe.php:1353 +#: classes/gateways/class.pmprogateway_stripe.php:1478 msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" @@ -7727,10 +8364,13 @@ msgstr "" #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:167 #: paid-memberships-pro.php:168 +#: classes/gateways/class.pmprogateway_braintree.php:258 +#: paid-memberships-pro.php:174 msgid "Braintree Payments" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:308 +#: classes/gateways/class.pmprogateway_braintree.php:315 msgid "Braintree Settings" msgstr "" @@ -7744,21 +8384,30 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:750 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -7766,11 +8415,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -8072,6 +8724,7 @@ msgstr "" #: paid-memberships-pro.php:161 #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:164 +#: paid-memberships-pro.php:170 msgid "PayPal Website Payments Pro" msgstr "" @@ -8079,6 +8732,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:141 #: classes/gateways/class.pmprogateway_paypalstandard.php:133 #: classes/gateways/class.pmprogateway_paypalexpress.php:151 +#: classes/gateways/class.pmprogateway_paypalexpress.php:152 msgid "PayPal Settings" msgstr "" @@ -8086,12 +8740,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:185 #: classes/gateways/class.pmprogateway_paypalexpress.php:194 #: classes/gateways/class.pmprogateway_paypalexpress.php:204 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 msgid "Confirmation Step" msgstr "" @@ -8100,11 +8756,14 @@ msgstr "" #: paid-memberships-pro.php:162 #: classes/gateways/class.pmprogateway_paypalexpress.php:94 #: paid-memberships-pro.php:163 +#: classes/gateways/class.pmprogateway_paypalexpress.php:95 +#: paid-memberships-pro.php:169 msgid "PayPal Express" msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -8113,6 +8772,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -8121,6 +8781,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -8128,6 +8789,7 @@ msgstr "" #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:166 +#: paid-memberships-pro.php:172 msgid "PayPal Standard" msgstr "" @@ -8145,6 +8807,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:258 #: classes/gateways/class.pmprogateway_stripe.php:216 #: paid-memberships-pro.php:162 +#: classes/gateways/class.pmprogateway_stripe.php:234 +#: paid-memberships-pro.php:168 msgid "Stripe" msgstr "" @@ -8156,6 +8820,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -8164,6 +8829,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -8175,6 +8841,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -8186,6 +8853,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -8197,6 +8865,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -8205,6 +8874,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -8216,6 +8886,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -8227,6 +8898,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -8235,6 +8907,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -8246,6 +8919,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -8254,6 +8928,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -8277,6 +8952,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -8293,6 +8970,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -8301,6 +8980,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -8309,6 +8989,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -8317,6 +8998,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -8324,6 +9006,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -8332,6 +9015,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -8345,6 +9029,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -8353,6 +9039,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -8361,6 +9048,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -8370,6 +9058,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -8387,6 +9077,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -8395,6 +9087,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -8416,6 +9109,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -8424,6 +9119,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -8432,6 +9128,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -8440,6 +9137,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -8448,6 +9146,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -8456,6 +9155,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -8464,6 +9164,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -8472,6 +9173,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -8480,6 +9182,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -8488,6 +9191,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -8496,6 +9200,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -8508,6 +9213,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -8516,6 +9222,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -8524,6 +9231,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -8532,6 +9240,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -8540,6 +9249,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -8558,6 +9268,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "" @@ -8610,6 +9321,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "" @@ -8621,6 +9334,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "" @@ -8630,6 +9344,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "" @@ -8647,6 +9362,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "" @@ -8658,6 +9375,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 msgid "Error: Unkown error while refunding charge #%s" msgstr "" @@ -8667,6 +9385,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -8687,6 +9406,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -8695,6 +9418,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -8704,6 +9428,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -8713,6 +9438,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -8724,6 +9450,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -8735,6 +9462,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -8746,6 +9474,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -8757,34 +9486,42 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:59 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "" @@ -8827,6 +9564,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -8839,6 +9577,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -8851,6 +9590,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -10088,6 +10828,7 @@ msgstr "" #: includes/email-templates.php:68 #: shortcodes/pmpro_account.php:43 +#: adminpages/orders.php:1431 msgid "Billing" msgstr "" @@ -10678,14 +11419,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -10694,18 +11438,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -10717,6 +11465,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -10855,6 +11604,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -10984,6 +11734,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -10991,6 +11742,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -11022,6 +11774,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -11031,6 +11784,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -11038,6 +11792,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -11142,6 +11897,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -11149,6 +11906,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -11156,6 +11914,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -11163,6 +11922,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -11234,6 +11994,7 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" @@ -11242,6 +12003,8 @@ msgstr "" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "" @@ -11252,121 +12015,142 @@ msgstr "" #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -11378,6 +12162,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -11506,18 +12293,21 @@ msgstr "" #: paid-memberships-pro.php:162 #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:165 +#: paid-memberships-pro.php:171 msgid "PayPal Payflow Pro/PayPal Pro" msgstr "" #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:168 #: paid-memberships-pro.php:169 +#: paid-memberships-pro.php:175 msgid "Cybersource" msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -11567,6 +12357,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -11605,6 +12396,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -11620,6 +12426,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -11635,6 +12442,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -11667,6 +12475,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -11679,6 +12488,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -11704,11 +12514,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -11716,6 +12531,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -11723,6 +12539,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -11745,6 +12562,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -11770,6 +12588,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -11777,6 +12596,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -11809,6 +12629,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -11831,6 +12652,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -11841,11 +12663,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -11865,6 +12698,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -11878,6 +12712,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -11887,6 +12722,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -11896,10 +12732,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -11910,6 +12748,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -11917,6 +12756,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -11926,6 +12766,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -11935,12 +12776,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -11948,6 +12792,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -11956,6 +12802,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -11963,6 +12810,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -11970,27 +12818,32 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: paid-memberships-pro.php:194 #: paid-memberships-pro.php:195 +#: paid-memberships-pro.php:201 msgid "Once a month" msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -12048,12 +12901,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -12063,6 +12918,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -12072,6 +12928,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -12081,54 +12938,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -12139,42 +13006,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -12189,51 +13066,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -12241,6 +13130,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -12248,6 +13138,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -12255,6 +13146,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -12263,6 +13155,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -12276,6 +13170,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -12296,19 +13191,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -12318,31 +13217,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -12372,25 +13279,30 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "" @@ -12460,26 +13372,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -12488,51 +13406,62 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -12546,19 +13475,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -12589,3 +13522,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-pt_BR.mo b/languages/paid-memberships-pro-pt_BR.mo index 35c237657..bc03b0ecf 100644 Binary files a/languages/paid-memberships-pro-pt_BR.mo and b/languages/paid-memberships-pro-pt_BR.mo differ diff --git a/languages/paid-memberships-pro-pt_BR.po b/languages/paid-memberships-pro-pt_BR.po index a66f1c0dc..cb7aa63fd 100644 --- a/languages/paid-memberships-pro-pt_BR.po +++ b/languages/paid-memberships-pro-pt_BR.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:21:03+00:00\n" +"POT-Creation-Date: 2022-05-05T20:37:42+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -93,6 +93,7 @@ msgstr "Verifique Novamente" #: adminpages/orders.php:1014 #: includes/metaboxes.php:19 #: adminpages/orders.php:1015 +#: adminpages/orders.php:1103 msgid "All" msgstr "Tudo" @@ -136,6 +137,7 @@ msgstr "Tipo" #: adminpages/membershiplevels.php:296 #: adminpages/membershiplevels.php:298 #: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "Descrição" @@ -218,6 +220,11 @@ msgstr "Ativado %s" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "Apagar" @@ -286,6 +293,18 @@ msgstr "" #: adminpages/orders.php:913 #: adminpages/orders.php:1537 #: adminpages/orders.php:1546 +#: adminpages/orders.php:704 +#: adminpages/orders.php:996 +#: adminpages/orders.php:1689 +#: adminpages/orders.php:1698 +#: classes/class.pmproemail.php:261 +#: classes/class.pmproemail.php:327 +#: includes/profile.php:167 +#: includes/profile.php:483 +#: includes/profile.php:484 +#: includes/profile.php:556 +#: includes/profile.php:557 +#: includes/profile.php:558 msgid "N/A" msgstr "N/A" @@ -481,6 +500,11 @@ msgstr "Gateway de Pagamentos & SSL" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "E-mail" @@ -496,6 +520,7 @@ msgstr "Avançado" #: adminpages/advancedsettings.php:42 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "Suas opções avançadas foram atualizadas." @@ -516,6 +541,7 @@ msgstr "" #: adminpages/advancedsettings.php:116 #: includes/updates/upgrade_1.php:13 #: adminpages/advancedsettings.php:118 +#: adminpages/advancedsettings.php:126 msgid "This content is for members only. Visit the site and log in/register to read." msgstr "" @@ -534,6 +560,7 @@ msgstr "" #: adminpages/advancedsettings.php:132 #: includes/adminpages.php:73 #: adminpages/advancedsettings.php:134 +#: adminpages/advancedsettings.php:142 msgid "Advanced Settings" msgstr "Configurações Avançadas" @@ -542,6 +569,7 @@ msgstr "Configurações Avançadas" #: adminpages/advancedsettings.php:92 #: adminpages/advancedsettings.php:164 #: adminpages/advancedsettings.php:166 +#: adminpages/advancedsettings.php:173 msgid "Message for Logged-in Non-members" msgstr "Mensagem para usuários não logados" @@ -550,6 +578,7 @@ msgstr "Mensagem para usuários não logados" #: adminpages/advancedsettings.php:96 #: adminpages/advancedsettings.php:168 #: adminpages/advancedsettings.php:170 +#: adminpages/advancedsettings.php:177 msgid "This message replaces the post content for non-members. Available variables" msgstr "Essa mensagem substitui a postagem para não membros. Variáveis disponíveis" @@ -558,6 +587,7 @@ msgstr "Essa mensagem substitui a postagem para não membros. Variáveis dispon #: adminpages/advancedsettings.php:101 #: adminpages/advancedsettings.php:173 #: adminpages/advancedsettings.php:175 +#: adminpages/advancedsettings.php:182 msgid "Message for Logged-out Users" msgstr "Mensagem para usuários deslogados" @@ -566,6 +596,7 @@ msgstr "Mensagem para usuários deslogados" #: adminpages/advancedsettings.php:105 #: adminpages/advancedsettings.php:177 #: adminpages/advancedsettings.php:179 +#: adminpages/advancedsettings.php:186 msgid "This message replaces the post content for logged-out visitors." msgstr "Esta mensagem substitui o conteúdo para visitantes não logados" @@ -574,6 +605,7 @@ msgstr "Esta mensagem substitui o conteúdo para visitantes não logados" #: adminpages/advancedsettings.php:110 #: adminpages/advancedsettings.php:182 #: adminpages/advancedsettings.php:184 +#: adminpages/advancedsettings.php:191 msgid "Message for RSS Feed" msgstr "Mensagem para Feed RSS" @@ -582,24 +614,28 @@ msgstr "Mensagem para Feed RSS" #: adminpages/advancedsettings.php:114 #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "This message replaces the post content in RSS feeds." msgstr "Esta mensagem substitui o conteúdo do post nos Feeds RSS." #: adminpages/advancedsettings.php:122 #: adminpages/advancedsettings.php:199 #: adminpages/advancedsettings.php:201 +#: adminpages/advancedsettings.php:208 msgid "Filter searches and archives?" msgstr "Filtrar buscas e arquivamentos?" #: adminpages/advancedsettings.php:126 #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:205 +#: adminpages/advancedsettings.php:212 msgid "No - Non-members will see restricted posts/pages in searches and archives." msgstr "Não - Não-membros verão posts/páginas resstritas nas buscas e arquivos." #: adminpages/advancedsettings.php:127 #: adminpages/advancedsettings.php:204 #: adminpages/advancedsettings.php:206 +#: adminpages/advancedsettings.php:213 msgid "Yes - Only members will see restricted posts/pages in searches and archives." msgstr "Sim - Apenas assinantes verão posts/páginas restritas em buscas e arquivamentos." @@ -608,6 +644,7 @@ msgstr "Sim - Apenas assinantes verão posts/páginas restritas em buscas e arqu #: adminpages/advancedsettings.php:120 #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:212 +#: adminpages/advancedsettings.php:219 msgid "Show Excerpts to Non-Members?" msgstr "Mostrar resumo para não membros?" @@ -616,6 +653,7 @@ msgstr "Mostrar resumo para não membros?" #: adminpages/advancedsettings.php:124 #: adminpages/advancedsettings.php:214 #: adminpages/advancedsettings.php:216 +#: adminpages/advancedsettings.php:223 msgid "No - Hide excerpts." msgstr "Não - Esconder resumos." @@ -624,12 +662,14 @@ msgstr "Não - Esconder resumos." #: adminpages/advancedsettings.php:125 #: adminpages/advancedsettings.php:215 #: adminpages/advancedsettings.php:217 +#: adminpages/advancedsettings.php:224 msgid "Yes - Show excerpts." msgstr "Sim - Mostrar resumos." #: adminpages/advancedsettings.php:144 #: adminpages/advancedsettings.php:333 #: adminpages/advancedsettings.php:348 +#: adminpages/advancedsettings.php:355 msgid "Hide Ads From Members?" msgstr "Esconder Ads nas Assinaturas?" @@ -696,6 +736,16 @@ msgstr "Esconder Ads nas Assinaturas?" #: classes/gateways/class.pmprogateway_stripe.php:404 #: classes/gateways/class.pmprogateway_stripe.php:418 #: adminpages/paymentsettings.php:279 +#: adminpages/advancedsettings.php:254 +#: adminpages/advancedsettings.php:267 +#: adminpages/advancedsettings.php:359 +#: adminpages/advancedsettings.php:418 +#: adminpages/advancedsettings.php:526 +#: adminpages/membershiplevels.php:939 +#: adminpages/paymentsettings.php:277 +#: classes/gateways/class.pmprogateway_stripe.php:430 +#: classes/gateways/class.pmprogateway_stripe.php:444 +#: includes/profile.php:78 msgid "No" msgstr "Não" @@ -704,6 +754,7 @@ msgstr "Não" #: adminpages/advancedsettings.php:136 #: adminpages/advancedsettings.php:338 #: adminpages/advancedsettings.php:353 +#: adminpages/advancedsettings.php:360 msgid "Hide Ads From All Members" msgstr "Esconder anuncios para todos os membros" @@ -712,6 +763,7 @@ msgstr "Esconder anuncios para todos os membros" #: adminpages/advancedsettings.php:137 #: adminpages/advancedsettings.php:339 #: adminpages/advancedsettings.php:354 +#: adminpages/advancedsettings.php:361 msgid "Hide Ads From Certain Members" msgstr "Esconder anuncios para certos membros" @@ -726,6 +778,7 @@ msgstr "Anuncios dos seguintes plugins serão desligados" #: adminpages/advancedsettings.php:145 #: adminpages/advancedsettings.php:346 #: adminpages/advancedsettings.php:361 +#: adminpages/advancedsettings.php:368 msgid "To hide ads in your template code, use code like the following" msgstr "Para esconder propagandas em seus templates, use o seguinte código" @@ -734,6 +787,7 @@ msgstr "Para esconder propagandas em seus templates, use o seguinte código" #: adminpages/advancedsettings.php:156 #: adminpages/advancedsettings.php:355 #: adminpages/advancedsettings.php:370 +#: adminpages/advancedsettings.php:377 msgid "Choose Levels to Hide Ads From" msgstr "Selecione os Níveis que não irão ver propagandas" @@ -752,6 +806,7 @@ msgstr "Redirecionar todo o tráfego da página para /subscription/?" #: adminpages/advancedsettings.php:390 #: adminpages/advancedsettings.php:392 #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "multisite only" msgstr "apenas multisite" @@ -807,6 +862,12 @@ msgstr "apenas multisite" #: classes/gateways/class.pmprogateway_stripe.php:406 #: classes/gateways/class.pmprogateway_stripe.php:420 #: adminpages/paymentsettings.php:280 +#: adminpages/advancedsettings.php:419 +#: adminpages/membershiplevels.php:934 +#: adminpages/paymentsettings.php:278 +#: classes/gateways/class.pmprogateway_stripe.php:432 +#: classes/gateways/class.pmprogateway_stripe.php:446 +#: includes/profile.php:79 msgid "Yes" msgstr "Sim" @@ -815,6 +876,7 @@ msgstr "Sim" #: adminpages/advancedsettings.php:202 #: adminpages/advancedsettings.php:241 #: adminpages/advancedsettings.php:256 +#: adminpages/advancedsettings.php:263 msgid "Use reCAPTCHA?" msgstr "Usar reCAPTCHA?" @@ -830,6 +892,7 @@ msgstr "Sim - Apenas assinaturas gratuitas." #: adminpages/advancedsettings.php:208 #: adminpages/advancedsettings.php:247 #: adminpages/advancedsettings.php:262 +#: adminpages/advancedsettings.php:269 msgid "Yes - All memberships." msgstr "Sim - Todas as assinaturas." @@ -838,6 +901,7 @@ msgstr "Sim - Todas as assinaturas." #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "A free reCAPTCHA key is required." msgstr "Uma chave gratuita reCAPTCHA é requerida." @@ -846,6 +910,7 @@ msgstr "Uma chave gratuita reCAPTCHA é requerida." #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "Click here to signup for reCAPTCHA" msgstr "Clique aqui para registrar no reCAPTCHA" @@ -903,6 +968,9 @@ msgstr "selecionado" #: adminpages/pagesettings.php:508 #: adminpages/pagesettings.php:512 #: adminpages/paymentsettings.php:316 +#: adminpages/advancedsettings.php:574 +#: adminpages/pagesettings.php:511 +#: adminpages/paymentsettings.php:314 msgid "Save Settings" msgstr "Salvar Configurações" @@ -978,6 +1046,7 @@ msgstr "Erro ao deletar o cupom. Por favor tente outra vez." #: adminpages/discountcodes.php:796 #: adminpages/discountcodes.php:354 #: adminpages/discountcodes.php:798 +#: adminpages/discountcodes.php:799 msgid "Code not found." msgstr "Cupom não encontrado." @@ -1000,6 +1069,7 @@ msgstr "Edite o cupom de desconto." #: adminpages/discountcodes.php:735 #: adminpages/discountcodes.php:377 #: adminpages/discountcodes.php:737 +#: adminpages/discountcodes.php:738 msgid "Add New Discount Code" msgstr "Adicionar Cupom de Desconto." @@ -1050,6 +1120,8 @@ msgstr "Adicionar Cupom de Desconto." #: adminpages/reports/login.php:182 #: adminpages/templates/orders-email.php:49 #: adminpages/templates/orders-print.php:78 +#: adminpages/membershiplevels.php:345 +#: adminpages/membershiplevels.php:805 msgid "ID" msgstr "ID" @@ -1098,6 +1170,9 @@ msgstr "Isso será gerado ao salvar." #: adminpages/dashboard.php:292 #: adminpages/orders.php:429 #: adminpages/orders.php:1333 +#: adminpages/discountcodes.php:787 +#: adminpages/orders.php:475 +#: adminpages/orders.php:1426 msgid "Code" msgstr "Código" @@ -1111,6 +1186,7 @@ msgstr "Código" #: adminpages/discountcodes.php:489 #: includes/profile.php:501 #: includes/profile.php:497 +#: includes/profile.php:537 msgid "Start Date" msgstr "Data de Início" @@ -1148,6 +1224,8 @@ msgstr "Data de Início" #: classes/gateways/class.pmprogateway_stripe.php:1326 #: classes/gateways/class.pmprogateway_stripe.php:785 #: pages/billing.php:381 +#: classes/gateways/class.pmprogateway_braintree.php:486 +#: classes/gateways/class.pmprogateway_stripe.php:893 msgid "Expiration Date" msgstr "Date de Expiração" @@ -1162,6 +1240,7 @@ msgstr "Date de Expiração" #: adminpages/discountcodes.php:787 #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:789 +#: adminpages/discountcodes.php:790 msgid "Uses" msgstr "Usa" @@ -1195,6 +1274,7 @@ msgstr "Que níveis este código aplica-se à?" #: adminpages/discountcodes.php:574 #: adminpages/membershiplevels.php:401 #: adminpages/discountcodes.php:576 +#: adminpages/membershiplevels.php:399 msgid "Initial Payment" msgstr "Pagamento Inicial" @@ -1210,6 +1290,7 @@ msgstr "Pagamento Inicial" #: adminpages/discountcodes.php:585 #: adminpages/membershiplevels.php:412 #: adminpages/discountcodes.php:587 +#: adminpages/membershiplevels.php:410 msgid "The initial amount collected at registration." msgstr "Quantidade recolhida no cadastro." @@ -1225,6 +1306,7 @@ msgstr "Quantidade recolhida no cadastro." #: adminpages/discountcodes.php:590 #: adminpages/membershiplevels.php:417 #: adminpages/discountcodes.php:592 +#: adminpages/membershiplevels.php:415 msgid "Recurring Subscription" msgstr "Pagamento Recorrente" @@ -1240,6 +1322,7 @@ msgstr "Pagamento Recorrente" #: adminpages/discountcodes.php:591 #: adminpages/membershiplevels.php:418 #: adminpages/discountcodes.php:593 +#: adminpages/membershiplevels.php:416 msgid "Check if this level has a recurring subscription payment." msgstr "Verifique se esse nível tem pagamento recorrente." @@ -1254,6 +1337,7 @@ msgstr "Verifique se esse nível tem pagamento recorrente." #: adminpages/discountcodes.php:595 #: adminpages/membershiplevels.php:422 #: adminpages/discountcodes.php:597 +#: adminpages/membershiplevels.php:420 msgid "Billing Amount" msgstr "Quantidade a Faturar" @@ -1292,6 +1376,10 @@ msgstr "Quantidade a Faturar" #: classes/gateways/class.pmprogateway_stripe.php:2637 #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2635 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3092 msgid "Day(s)" msgstr "Dia(s)" @@ -1330,6 +1418,10 @@ msgstr "Dia(s)" #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2641 #: classes/gateways/class.pmprogateway_stripe.php:2637 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3094 msgid "Month(s)" msgstr "Mes(es)" @@ -1368,6 +1460,10 @@ msgstr "Mes(es)" #: classes/gateways/class.pmprogateway_stripe.php:2638 #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2636 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3093 msgid "Week(s)" msgstr "Semana(s)" @@ -1406,6 +1502,10 @@ msgstr "Semana(s)" #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2642 #: classes/gateways/class.pmprogateway_stripe.php:2638 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3095 msgid "Year(s)" msgstr "Ano(s)" @@ -1421,6 +1521,7 @@ msgstr "Ano(s)" #: adminpages/discountcodes.php:618 #: adminpages/membershiplevels.php:446 #: adminpages/discountcodes.php:620 +#: adminpages/membershiplevels.php:444 msgid "The amount to be billed one cycle after the initial payment." msgstr "Quantidade a ser cobrada um ciclo após o primeiro pagamento." @@ -1436,6 +1537,7 @@ msgstr "Quantidade a ser cobrada um ciclo após o primeiro pagamento." #: adminpages/discountcodes.php:628 #: adminpages/membershiplevels.php:465 #: adminpages/discountcodes.php:630 +#: adminpages/membershiplevels.php:463 msgid "Billing Cycle Limit" msgstr "Limite de Ciclos de Faturamento" @@ -1451,6 +1553,7 @@ msgstr "Limite de Ciclos de Faturamento" #: adminpages/discountcodes.php:632 #: adminpages/membershiplevels.php:469 #: adminpages/discountcodes.php:634 +#: adminpages/membershiplevels.php:467 msgid "The total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "O número totalde ciclos recorrentes para este nível, incluindo o período de degustação (se aplicável), mas sem incluir o Pagamento Inicial. Preencha com 0 caso a assinatura é indefinida" @@ -1466,6 +1569,8 @@ msgstr "O número totalde ciclos recorrentes para este nível, #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "Período de Degustação" @@ -1482,6 +1587,8 @@ msgstr "Período de Degustação" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "Selecione para adicionar um período de degustação." @@ -1498,6 +1605,7 @@ msgstr "Selecione para adicionar um período de degustação." #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "Quantidade a faturar para o período de degustação" @@ -1514,6 +1622,7 @@ msgstr "Quantidade a faturar para o período de degustação" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "para o primeiro" @@ -1530,6 +1639,7 @@ msgstr "para o primeiro" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "pagamentos de assinatura" @@ -1547,6 +1657,7 @@ msgstr "pagamentos de assinatura" #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "Expiração da Assinatura" @@ -1563,6 +1674,7 @@ msgstr "Expiração da Assinatura" #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "Marque esta opção para configurar quando a assinatura expira." @@ -1581,6 +1693,8 @@ msgstr "Marque esta opção para configurar quando a assinatura expira." #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "Expira em" @@ -1597,6 +1711,8 @@ msgstr "Expira em" #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "Configure a duração da assinatura. Atente-se que qualquer pagamento futuro e assinatura recorrente, se existir alguma, serão cancelados quando a assinatura expirar." @@ -1606,6 +1722,7 @@ msgstr "Configure a duração da assinatura. Atente-se que qualquer pagamento fu #: adminpages/discountcodes.php:556 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "Cupons de Desconto de Assinatura" @@ -1615,6 +1732,7 @@ msgstr "Cupons de Desconto de Assinatura" #: adminpages/discountcodes.php:566 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "Pesquisar Cupons de Desconto" @@ -1627,6 +1745,7 @@ msgstr "Pesquisar Cupons de Desconto" #: adminpages/reports/login.php:83 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "Procurar" @@ -1636,6 +1755,7 @@ msgstr "Procurar" #: adminpages/discountcodes.php:587 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "Começa" @@ -1665,6 +1785,8 @@ msgstr "Começa" #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "Expira" @@ -1675,6 +1797,7 @@ msgstr "Expira" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "Níveis" @@ -1717,6 +1840,7 @@ msgstr "Os cupons de desconto permitem que você ofereça suas assinaturas com d #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "editar" @@ -1775,6 +1899,7 @@ msgstr "Configurações de E-mail" #: adminpages/emailsettings.php:70 #: adminpages/emailsettings.php:61 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "Por padrão, emails gerados pelo sistema são enviados pelo wordpress@seu_dominio.com. Você pode atualizar essa configuração utilizando os campos abaixo." @@ -1786,22 +1911,26 @@ msgstr "Para modificar a aparência dos emails gerados pelo sistema, adicione os #: adminpages/emailsettings.php:78 #: adminpages/emailsettings.php:69 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "Email do Remetente" #: adminpages/emailsettings.php:86 #: adminpages/emailsettings.php:77 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "Nome do Remetente" #: adminpages/emailsettings.php:94 #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "Filtrar somente Emails do PMPro?" #: adminpages/emailsettings.php:98 #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 #, php-format msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "" @@ -1971,6 +2100,8 @@ msgstr "Adicione um novo Nível de Assinatura" #: adminpages/reports/history.php:184 #: adminpages/reports/login.php:181 #: adminpages/reports/login.php:184 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 msgid "Name" msgstr "Nome" @@ -1978,6 +2109,7 @@ msgstr "Nome" #: adminpages/membershiplevels.php:314 #: adminpages/membershiplevels.php:316 #: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "Mensagem de Confirmação" @@ -1991,6 +2123,8 @@ msgstr "Mensagem de Confirmação" #: adminpages/membershiplevels.php:639 #: adminpages/membershiplevels.php:397 #: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "Detalhes de Faturamento" @@ -2015,6 +2149,8 @@ msgstr "Detalhes de Faturamento" #: classes/gateways/class.pmprogateway_stripe.php:2696 #: classes/gateways/class.pmprogateway_stripe.php:2698 #: classes/gateways/class.pmprogateway_stripe.php:2694 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "por" @@ -2033,6 +2169,7 @@ msgstr "" #: adminpages/discountcodes.php:620 #: adminpages/membershiplevels.php:448 #: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:446 msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." msgstr "A integração com o Braintree atualmente apenas suporta recorrência de pagamento para \"Month\" ou \"Year\"." @@ -2050,6 +2187,7 @@ msgstr "A integração com o Braintree atualmente apenas suporta recorrência de #: adminpages/membershiplevels.php:393 #: adminpages/membershiplevels.php:396 #: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." msgstr "Após salvar esse nível, atente-se ao ID e crie um \"Plan\" em seu dashboard do Braintree com as mesmas configurações e o campo \"Plan ID\" deve ser configurado como pmpro_# onde # é o ID do Nível de assinatura." @@ -2072,6 +2210,8 @@ msgstr "Após salvar esse nível, atente-se ao ID e crie um \"Plan\" em seu dash #: adminpages/membershiplevels.php:454 #: adminpages/membershiplevels.php:459 #: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 msgid "Note" msgstr "Nota" @@ -2091,6 +2231,7 @@ msgstr "Você precisa criar um \"Plan\" em seu dashboard do Braintree com as mes #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "A integração com o Stripe atualmente não aceita limite de recorrência. Você pode configurar uma data de expiração abaixo." @@ -2102,6 +2243,8 @@ msgstr "A integração com o Stripe atualmente não aceita limite de recorrênci #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "A integração com 2Checkout não permite trials personalizados. Você pode fazer trials por período fazendo um pagamento inicial diferente do valor de pagamento." @@ -2114,6 +2257,7 @@ msgstr "A integração com 2Checkout não permite trials personalizados. Você p #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "O Stripe atualmente não aceita periodos de degustação com preços maiores que $0." @@ -2126,6 +2270,7 @@ msgstr "O Stripe atualmente não aceita periodos de degustação com preços mai #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "O Braintree atualmente não suporta períodos de degustação com preços maiores que $0." @@ -2138,6 +2283,7 @@ msgstr "O Braintree atualmente não suporta períodos de degustação com preço #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "A integração com o Payflow atualmente não aceita período de degustação com valor maior que $0." @@ -2152,6 +2298,7 @@ msgstr "A integração com o Payflow atualmente não aceita período de degusta #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "Outras Configurações" @@ -2187,6 +2334,8 @@ msgstr "Marque esta opção para esconder este nível de assinatura e desativar #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "Configurações de Conteúdo" @@ -2198,12 +2347,14 @@ msgstr "Configurações de Conteúdo" #: adminpages/membershiplevels.php:497 #: adminpages/membershiplevels.php:500 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "Categorias" #: adminpages/membershiplevels.php:516 #: adminpages/membershiplevels.php:517 #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "Salvar Nível" @@ -2241,6 +2392,11 @@ msgstr "Salvar Nível" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "Cancelar" @@ -2281,6 +2437,7 @@ msgstr "Pesquisar Níveis" #: adminpages/membershiplevels.php:579 #: adminpages/membershiplevels.php:631 #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "Drag and drop os níveis de assinatura para reordená-los na página de Níveis." @@ -2306,6 +2463,8 @@ msgstr "Drag and drop os níveis de assinatura para reordená-los na página de #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "Expiração" @@ -2318,6 +2477,7 @@ msgstr "Expiração" #: adminpages/membershiplevels.php:587 #: adminpages/membershiplevels.php:641 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "Permitir cadastros" @@ -2331,6 +2491,7 @@ msgstr "Permitir cadastros" #: adminpages/membershiplevels.php:656 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "GRATUITO" @@ -2344,6 +2505,7 @@ msgstr "GRATUITO" #: adminpages/membershiplevels.php:665 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "Depois" @@ -2389,6 +2551,7 @@ msgstr "cópia" #: includes/adminpages.php:149 #: includes/adminpages.php:153 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "Lista de Membros" @@ -2402,6 +2565,8 @@ msgstr "Lista de Membros" #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "Exportar para CSV" @@ -2431,6 +2596,8 @@ msgstr "Exportar para CSV" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "Mostrar" @@ -2459,6 +2626,8 @@ msgstr "Mostrar" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "Todos os Níveis" @@ -2502,6 +2671,8 @@ msgstr "Membros antigos" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "Pesquisar Membros" @@ -2540,6 +2711,8 @@ msgstr "%d membros encontrados." #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "Nome de Usuário" @@ -2583,6 +2756,7 @@ msgstr "Sobrenome" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "Endereço de Faturamento" @@ -2694,6 +2868,7 @@ msgstr "Erro ao deletar o pedido." #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "Pedido salvo com sucesso." @@ -2709,6 +2884,7 @@ msgstr "Erro ao atualizar o timestamp do Pedido." #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "Erro ao salvar o pedido." @@ -2722,6 +2898,7 @@ msgstr "Erro ao salvar o pedido." #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "Pedidos" @@ -2732,6 +2909,7 @@ msgstr "Pedidos" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "Novo Pedido" @@ -2742,6 +2920,7 @@ msgstr "Novo Pedido" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "Gerado aleatoriamente para você." @@ -2752,6 +2931,7 @@ msgstr "Gerado aleatoriamente para você." #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "ID de Usuário" @@ -2763,6 +2943,8 @@ msgstr "ID de Usuário" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "ID de Nível de Assinatura" @@ -2774,6 +2956,7 @@ msgstr "ID de Nível de Assinatura" #: includes/privacy.php:245 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "Nome (faturamento)" @@ -2785,6 +2968,7 @@ msgstr "Nome (faturamento)" #: includes/privacy.php:249 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "Rua (faturamento)" @@ -2797,6 +2981,7 @@ msgstr "Rua (faturamento)" #: includes/privacy.php:358 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "Cidade (faturamento)" @@ -2808,6 +2993,7 @@ msgstr "Cidade (faturamento)" #: includes/privacy.php:257 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "Estado (faturamento)" @@ -2821,6 +3007,7 @@ msgstr "Estado (faturamento)" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "Código Postal (faturamento)" @@ -2834,6 +3021,7 @@ msgstr "Código Postal (faturamento)" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "País (faturamento)" @@ -2846,6 +3034,7 @@ msgstr "País (faturamento)" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "Telefone (faturamento)" @@ -2858,6 +3047,7 @@ msgstr "Telefone (faturamento)" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "Subtotal" @@ -2877,6 +3067,8 @@ msgstr "Subtotal" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "Impostos" @@ -2889,6 +3081,7 @@ msgstr "Impostos" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "Desconto" @@ -2920,6 +3113,9 @@ msgstr "Desconto" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "Total" @@ -2939,6 +3135,7 @@ msgstr "Deveria ser igual a subtotal + impostos - desconto" #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "Tipo de Pagamento" @@ -2950,6 +3147,7 @@ msgstr "Tipo de Pagamento" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "ex: PayPal Express, PayPal Standard, Cartão de Crédito." @@ -2990,6 +3188,9 @@ msgstr "ex: PayPal Express, PayPal Standard, Cartão de Crédito." #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "Bandeira do Cartão" @@ -3001,6 +3202,7 @@ msgstr "Bandeira do Cartão" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "ex: Visa, MasterCard, AMEX, etc" @@ -3019,6 +3221,8 @@ msgstr "ex: Visa, MasterCard, AMEX, etc" #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "Número da Conta" @@ -3029,6 +3233,7 @@ msgstr "Número da Conta" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "Esconde tudo menos os últimos 4 dígitos" @@ -3043,6 +3248,7 @@ msgstr "Esconde tudo menos os últimos 4 dígitos" #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "Mês de expiração" @@ -3085,6 +3291,10 @@ msgstr "Ano de Expiração" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "Status" @@ -3107,6 +3317,9 @@ msgstr "Status" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "Gateway" @@ -3125,6 +3338,8 @@ msgstr "Gateway" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "Gateway Environment" @@ -3146,6 +3361,9 @@ msgstr "Gateway Environment" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "Sandbox/Testes" @@ -3167,6 +3385,9 @@ msgstr "Sandbox/Testes" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "Ambiente de Produção" @@ -3179,6 +3400,7 @@ msgstr "Ambiente de Produção" #: includes/privacy.php:321 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "ID de transação de pagamento" @@ -3190,6 +3412,7 @@ msgstr "ID de transação de pagamento" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "Gerado pelo gateway. Útil para comparar os pagamentos/assinaturas." @@ -3204,6 +3427,8 @@ msgstr "Gerado pelo gateway. Útil para comparar os pagamentos/assinaturas." #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "ID da transação" @@ -3216,6 +3441,7 @@ msgstr "ID da transação" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "Gerado pelo Gateway. Útil para comparar os pagamentos/assinaturas." @@ -3249,6 +3475,8 @@ msgstr "Gerado pelo Gateway. Útil para comparar os pagamentos/assinaturas." #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "Data" @@ -3260,6 +3488,7 @@ msgstr "Data" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "ID de afiliado" @@ -3271,6 +3500,7 @@ msgstr "ID de afiliado" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "SubID de afiliado" @@ -3282,6 +3512,7 @@ msgstr "SubID de afiliado" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "Notas" @@ -3293,6 +3524,7 @@ msgstr "Notas" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "Salvar Pedido" @@ -3338,6 +3570,8 @@ msgstr "Enviar Email" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "Pedidos" @@ -3349,6 +3583,7 @@ msgstr "Pedidos" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "Adicionar Pedido" @@ -3359,6 +3594,7 @@ msgstr "Adicionar Pedido" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "Dentro do intervalo de data" @@ -3369,6 +3605,7 @@ msgstr "Dentro do intervalo de data" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "Intervalo pré-definido de data" @@ -3379,6 +3616,7 @@ msgstr "Intervalo pré-definido de data" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "Dentro do nível" @@ -3389,6 +3627,7 @@ msgstr "Dentro do nível" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "Dentro do Status" @@ -3399,6 +3638,7 @@ msgstr "Dentro do Status" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "De" @@ -3409,6 +3649,7 @@ msgstr "De" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "Para" @@ -3419,6 +3660,7 @@ msgstr "Para" #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "filtro por" @@ -3429,6 +3671,7 @@ msgstr "filtro por" #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "Filtro" @@ -3448,6 +3691,8 @@ msgstr "Filtro" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "Pesquisar Pedidos" @@ -3460,6 +3705,8 @@ msgstr "Pesquisar Pedidos" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "%d pedidos encontrados." @@ -3484,6 +3731,7 @@ msgstr "%d pedidos encontrados." #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "Usuário" @@ -3527,6 +3775,8 @@ msgstr "Usuário" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "Nível de Assinatura" @@ -3548,6 +3798,7 @@ msgstr "Nível de Assinatura" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "Pagamento" @@ -3560,6 +3811,7 @@ msgstr "Pagamento" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "IDs das transações" @@ -3583,6 +3835,8 @@ msgstr "IDs das transações" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "deletado" @@ -3596,6 +3850,7 @@ msgstr "deletado" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "Assinatura" @@ -3611,6 +3866,7 @@ msgstr "Assinatura" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "Deletar um pedido é uma ação permanente e pode afetar os usuários ativos. Quer mesmo deletar o pedido %s?" @@ -3640,6 +3896,7 @@ msgstr "email" #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "Não foram encontrados pedidos." @@ -3712,6 +3969,7 @@ msgstr "As seguintes páginas foram criadas para você" #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "Gerencie as páginas do WordPress associadas a cada uma das páginas exigidas pelo Paid Memberships Pro." @@ -3721,6 +3979,7 @@ msgstr "Gerencie as páginas do WordPress associadas a cada uma das páginas exi #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "Associe as páginas WordPress para cada página exigida pelo Paid Memberships Pro ou" @@ -3730,6 +3989,7 @@ msgstr "Associe as páginas WordPress para cada página exigida pelo Paid Member #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "clique aqui que geraremos novas páginas automaticamente." @@ -3739,6 +3999,7 @@ msgstr "clique aqui que geraremos novas páginas automaticamente." #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "Página da Conta" @@ -3785,6 +4046,14 @@ msgstr "Página da Conta" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "Escolha Um" @@ -3845,6 +4114,16 @@ msgstr "Escolha Um" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "editar página" @@ -3902,6 +4181,15 @@ msgstr "editar página" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "ver página" @@ -3955,6 +4243,12 @@ msgstr "ver página" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "Inclua o shortcode" @@ -3966,6 +4260,7 @@ msgstr "Inclua o shortcode" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "Página de Informações de Faturamento" @@ -3977,6 +4272,7 @@ msgstr "Página de Informações de Faturamento" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "Página de Cancelamento" @@ -3988,6 +4284,7 @@ msgstr "Página de Cancelamento" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "Página de Checkout" @@ -3999,6 +4296,7 @@ msgstr "Página de Checkout" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "Página de Confirmação" @@ -4010,6 +4308,7 @@ msgstr "Página de Confirmação" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "Página de Fatura" @@ -4021,6 +4320,7 @@ msgstr "Página de Fatura" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "Página de Níveis de Assinatura" @@ -4028,6 +4328,7 @@ msgstr "Página de Níveis de Assinatura" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "Configurações adicionais da página" @@ -4041,6 +4342,9 @@ msgstr "Configurações adicionais da página" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "Gerar página" @@ -4061,6 +4365,7 @@ msgstr "As opções de pagamento foram atualizadas." #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "Gateway de Pagamento" @@ -4071,6 +4376,7 @@ msgstr "Gateway de Pagamento" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "Opções de SSL" @@ -4082,12 +4388,14 @@ msgstr "" #: adminpages/paymentsettings.php:101 #: adminpages/paymentsettings.php:122 #: adminpages/paymentsettings.php:127 +#: adminpages/paymentsettings.php:125 msgid "Choose a Gateway" msgstr "Escolha um Gateway" #: adminpages/paymentsettings.php:148 #: adminpages/paymentsettings.php:194 #: adminpages/paymentsettings.php:201 +#: adminpages/paymentsettings.php:199 msgid "Currency and Tax Settings" msgstr "Configurações de Moedas e Impostos" @@ -4099,6 +4407,7 @@ msgstr "Configurações de Moedas e Impostos" #: adminpages/paymentsettings.php:386 #: adminpages/paymentsettings.php:199 #: adminpages/paymentsettings.php:206 +#: adminpages/paymentsettings.php:204 msgid "Currency" msgstr "Moeda" @@ -4107,6 +4416,7 @@ msgstr "Moeda" #: adminpages/paymentsettings.php:402 #: adminpages/paymentsettings.php:215 #: adminpages/paymentsettings.php:222 +#: adminpages/paymentsettings.php:220 msgid "Not all currencies will be supported by every gateway. Please check with your gateway." msgstr "Nem todas as moedas serão suportadas por gateway. Por favor, verifique com seu gateway." @@ -4117,6 +4427,7 @@ msgstr "Nem todas as moedas serão suportadas por gateway. Por favor, verifique #: adminpages/paymentsettings.php:408 #: adminpages/paymentsettings.php:220 #: adminpages/paymentsettings.php:227 +#: adminpages/paymentsettings.php:225 msgid "Accepted Credit Card Types" msgstr "Operadoras de Cartão Aceitas" @@ -4127,6 +4438,7 @@ msgstr "Operadoras de Cartão Aceitas" #: adminpages/paymentsettings.php:445 #: adminpages/paymentsettings.php:234 #: adminpages/paymentsettings.php:241 +#: adminpages/paymentsettings.php:239 msgid "Sales Tax" msgstr "Imposto Sobre Vendas" @@ -4142,6 +4454,7 @@ msgstr "Imposto Sobre Vendas" #: pages/billing.php:179 #: adminpages/paymentsettings.php:241 #: pages/billing.php:181 +#: adminpages/paymentsettings.php:239 msgid "optional" msgstr "opcional" @@ -4152,6 +4465,7 @@ msgstr "opcional" #: adminpages/paymentsettings.php:448 #: adminpages/paymentsettings.php:237 #: adminpages/paymentsettings.php:244 +#: adminpages/paymentsettings.php:242 msgid "Tax State" msgstr "Imposto Estadual" @@ -4162,12 +4476,14 @@ msgstr "Imposto Estadual" #: adminpages/paymentsettings.php:449 #: adminpages/paymentsettings.php:238 #: adminpages/paymentsettings.php:245 +#: adminpages/paymentsettings.php:243 msgid "abbreviation, e.g. \"PA\"" msgstr "abreviação, ex: \"PA\"" #: adminpages/paymentsettings.php:193 #: adminpages/paymentsettings.php:239 #: adminpages/paymentsettings.php:246 +#: adminpages/paymentsettings.php:244 msgid "Tax Rate" msgstr "Taxa do imposto" @@ -4178,6 +4494,7 @@ msgstr "Taxa do imposto" #: adminpages/paymentsettings.php:451 #: adminpages/paymentsettings.php:240 #: adminpages/paymentsettings.php:247 +#: adminpages/paymentsettings.php:245 msgid "decimal, e.g. \"0.06\"" msgstr "decimal, ex: \"0.06\"" @@ -4193,6 +4510,7 @@ msgstr "" #: adminpages/paymentsettings.php:457 #: adminpages/paymentsettings.php:253 #: adminpages/paymentsettings.php:266 +#: adminpages/paymentsettings.php:264 msgid "Force SSL" msgstr "Forçar SSL" @@ -4202,12 +4520,14 @@ msgstr "Forçar SSL" #: adminpages/paymentsettings.php:463 #: adminpages/paymentsettings.php:268 #: adminpages/paymentsettings.php:281 +#: adminpages/paymentsettings.php:279 msgid "Yes (with JavaScript redirects)" msgstr "Sim (com redirecionamento JavaScript)" #: adminpages/paymentsettings.php:214 #: adminpages/paymentsettings.php:270 #: adminpages/paymentsettings.php:283 +#: adminpages/paymentsettings.php:281 msgid "Recommended: Yes. Try the JavaScript redirects setting if you are having issues with infinite redirect loops." msgstr "Recomendado: Sim. Tente redirecionamentos por JavaScript se você tiver problemas de loop infinito nos redirecionamentos." @@ -4218,6 +4538,7 @@ msgstr "Recomendado: Sim. Tente redirecionamentos por JavaScript se você tiver #: adminpages/paymentsettings.php:470 #: adminpages/paymentsettings.php:278 #: adminpages/paymentsettings.php:291 +#: adminpages/paymentsettings.php:289 msgid "SSL Seal Code" msgstr "SSL Seal Code (Código SSL)" @@ -4228,12 +4549,14 @@ msgstr "" #: adminpages/paymentsettings.php:228 #: adminpages/paymentsettings.php:287 #: adminpages/paymentsettings.php:306 +#: adminpages/paymentsettings.php:304 msgid "Extra HTTPS URL Filter" msgstr "Filtro de URL HTTPS extra" #: adminpages/paymentsettings.php:231 #: adminpages/paymentsettings.php:290 #: adminpages/paymentsettings.php:309 +#: adminpages/paymentsettings.php:307 msgid "Pass all generated HTML through a URL filter to add HTTPS to URLs used on secure pages. Check this if you are using SSL and have warnings on your checkout pages." msgstr "" @@ -4251,6 +4574,7 @@ msgstr "Detalhes" #: adminpages/reports.php:61 #: adminpages/reports.php:19 #: adminpages/reports.php:18 +#: adminpages/reports.php:21 msgid "Back to Reports Dashboard" msgstr "Voltar ao painel de relatórios" @@ -4293,6 +4617,7 @@ msgstr "Hoje" #: adminpages/orders.php:1077 #: adminpages/orders.php:1069 #: adminpages/orders.php:1070 +#: adminpages/orders.php:1158 msgid "This Month" msgstr "Este mês" @@ -4305,6 +4630,7 @@ msgstr "Este mês" #: adminpages/reports/memberships.php:52 #: adminpages/reports/sales.php:53 #: adminpages/reports/sales.php:542 +#: adminpages/reports/sales.php:543 msgid "All Time" msgstr "Todo o tempo" @@ -4322,6 +4648,7 @@ msgstr "Relatório de visitas, views, e logins" #: classes/class-pmpro-members-list-table.php:234 #: classes/class-pmpro-members-list-table.php:233 #: adminpages/reports/login.php:105 +#: adminpages/reports/login.php:111 msgid "All Users" msgstr "Todos os Usuários" @@ -4419,6 +4746,7 @@ msgstr "Todos os Cancelamentos" #: adminpages/orders.php:1081 #: adminpages/orders.php:1073 #: adminpages/orders.php:1074 +#: adminpages/orders.php:1162 msgid "This Year" msgstr "Este Ano" @@ -4434,6 +4762,8 @@ msgstr "Este Ano" #: adminpages/reports/sales.php:295 #: adminpages/advancedsettings.php:322 #: adminpages/reports/sales.php:313 +#: adminpages/advancedsettings.php:329 +#: adminpages/reports/memberships.php:332 msgid "Daily" msgstr "Diário" @@ -4449,6 +4779,8 @@ msgstr "Diário" #: adminpages/reports/sales.php:296 #: adminpages/advancedsettings.php:328 #: adminpages/reports/sales.php:314 +#: adminpages/advancedsettings.php:335 +#: adminpages/reports/memberships.php:333 msgid "Monthly" msgstr "Mensal" @@ -4462,11 +4794,13 @@ msgstr "Mensal" #: adminpages/reports/memberships.php:335 #: adminpages/reports/sales.php:297 #: adminpages/reports/sales.php:315 +#: adminpages/reports/memberships.php:334 msgid "Annual" msgstr "Anual" #: adminpages/reports/memberships.php:270 #: adminpages/reports/memberships.php:338 +#: adminpages/reports/memberships.php:337 msgid "Signups vs. All Cancellations" msgstr "Assinaturas vs. Todos os cancelamentos" @@ -4474,11 +4808,13 @@ msgstr "Assinaturas vs. Todos os cancelamentos" #: adminpages/reports/memberships.php:263 #: adminpages/reports/memberships.php:299 #: adminpages/reports/memberships.php:339 +#: adminpages/reports/memberships.php:338 msgid "Signups vs. Cancellations" msgstr "Assinaturas vs. Cancelamentos" #: adminpages/reports/memberships.php:272 #: adminpages/reports/memberships.php:340 +#: adminpages/reports/memberships.php:339 msgid "Signups vs. Expirations" msgstr "Assinaturas vs. Expirações" @@ -4509,6 +4845,8 @@ msgstr "Assinaturas vs. Expirações" #: adminpages/reports/sales.php:314 #: adminpages/reports/sales.php:321 #: adminpages/reports/sales.php:332 +#: adminpages/reports/memberships.php:341 +#: adminpages/reports/memberships.php:352 msgid "for" msgstr "para" @@ -4522,6 +4860,7 @@ msgstr "para" #: adminpages/reports/memberships.php:385 #: adminpages/reports/sales.php:342 #: adminpages/reports/sales.php:360 +#: adminpages/reports/memberships.php:384 msgid "Generate Report" msgstr "Gerar Relatório" @@ -4605,6 +4944,7 @@ msgstr "Preço" #: includes/functions.php:2842 #: includes/functions.php:2873 #: includes/functions.php:2895 +#: includes/functions.php:2897 msgid "Subtotal" msgstr "Subtotal" @@ -4632,6 +4972,7 @@ msgstr "Atualização completa." #: includes/cleanup.php:24 #: classes/class.memberorder.php:959 #: classes/class.memberorder.php:1001 +#: classes/class.memberorder.php:1010 #, php-format msgid "There was an error canceling the subscription for user with ID=%s. You will want to check your payment gateway to see if their subscription is still active." msgstr "Aconteceu um erro ao cancelar a assinatura para o usuário com ID=%s. Você deve comprovar o gateway de pagamentos e ver se sua assinatura continua ativa." @@ -4669,6 +5010,7 @@ msgstr "Sua assinatura para %s no %s foi cancelada" #: classes/class.pmproemail.php:178 #: classes/class.pmproemail.php:269 #: classes/class.pmproemail.php:262 +#: classes/class.pmproemail.php:395 #, php-format msgid "Your membership confirmation for %s" msgstr "Confirmação de assinatura no %s" @@ -4769,6 +5111,18 @@ msgstr "Confirmação de assinatura no %s" #: classes/class.pmproemail.php:764 #: adminpages/orders.php:576 #: adminpages/orders.php:1343 +#: adminpages/orders.php:697 +#: adminpages/orders.php:1437 +#: classes/class.pmproemail.php:465 +#: classes/class.pmproemail.php:471 +#: classes/class.pmproemail.php:477 +#: classes/class.pmproemail.php:567 +#: classes/class.pmproemail.php:573 +#: classes/class.pmproemail.php:895 +#: classes/class.pmproemail.php:897 +#: classes/gateways/class.pmprogateway_braintree.php:516 +#: classes/gateways/class.pmprogateway_stripe.php:906 +#: includes/profile.php:454 msgid "Discount Code" msgstr "Código de Desconto" @@ -4808,6 +5162,11 @@ msgstr "Código de Desconto" #: classes/class.pmproemail.php:771 #: classes/class.pmproemail.php:905 #: classes/class.pmproemail.php:950 +#: classes/class.pmproemail.php:485 +#: classes/class.pmproemail.php:583 +#: classes/class.pmproemail.php:904 +#: classes/class.pmproemail.php:1038 +#: classes/class.pmproemail.php:1083 #, php-format msgid "This membership will expire on %s." msgstr "Esta assinatura vai expirar em %s." @@ -4825,6 +5184,7 @@ msgstr "Checkout para %s em %s" #: classes/class.pmproemail.php:463 #: classes/class.pmproemail.php:475 #: classes/class.pmproemail.php:468 +#: classes/class.pmproemail.php:601 #, php-format msgid "Your billing information has been updated at %s" msgstr "Sua informação de pagamento foi atualizada em %s." @@ -4833,6 +5193,7 @@ msgstr "Sua informação de pagamento foi atualizada em %s." #: classes/class.pmproemail.php:513 #: classes/class.pmproemail.php:525 #: classes/class.pmproemail.php:518 +#: classes/class.pmproemail.php:651 #, php-format msgid "Billing information has been updated for %s at %s" msgstr "Informações de pagamento foram atualizadas para %s em %s" @@ -4880,6 +5241,7 @@ msgstr "Fatura para assinatura no %s" #: classes/class.pmproemail.php:794 #: classes/class.pmproemail.php:806 #: classes/class.pmproemail.php:799 +#: classes/class.pmproemail.php:932 #, php-format msgid "Your trial at %s is ending soon" msgstr "Seu período de degustação no %s acabará em breve" @@ -4892,6 +5254,7 @@ msgstr "Seu período de degustação no %s acabará em breve" #: classes/class.pmproemail.php:831 #: classes/class.pmproemail.php:843 #: classes/class.pmproemail.php:836 +#: classes/class.pmproemail.php:969 #, php-format msgid "Your membership at %s has ended" msgstr "Sua assinatura no %s terminou" @@ -4904,6 +5267,7 @@ msgstr "Sua assinatura no %s terminou" #: classes/class.pmproemail.php:858 #: classes/class.pmproemail.php:870 #: classes/class.pmproemail.php:863 +#: classes/class.pmproemail.php:996 #, php-format msgid "Your membership at %s will end soon" msgstr "Sua assinatura no %s acabará em breve" @@ -4916,6 +5280,7 @@ msgstr "Sua assinatura no %s acabará em breve" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:900 #: classes/class.pmproemail.php:893 +#: classes/class.pmproemail.php:1026 #, php-format msgid "Your membership at %s has been changed" msgstr "Sua assinatura no %s foi modificada" @@ -4972,6 +5337,7 @@ msgstr "Esta assinatura não expira" #: classes/class.pmproemail.php:933 #: classes/class.pmproemail.php:945 #: classes/class.pmproemail.php:938 +#: classes/class.pmproemail.php:1071 #, php-format msgid "Membership for %s at %s has been changed" msgstr "A assinatura para %s no %s foi modificada" @@ -5075,6 +5441,7 @@ msgstr "Um pagamento parcial foi realizado. Não conseguimos evitar. Por favor c #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:167 +#: paid-memberships-pro.php:173 msgid "Authorize.net" msgstr "Authorize.net" @@ -5141,12 +5508,15 @@ msgstr "Não conseguimos conectar com o Authorize.net" #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:167 #: paid-memberships-pro.php:168 +#: classes/gateways/class.pmprogateway_braintree.php:258 +#: paid-memberships-pro.php:174 msgid "Braintree Payments" msgstr "Pagamentos Braintree" #: classes/gateways/class.pmprogateway_braintree.php:132 #: classes/gateways/class.pmprogateway_braintree.php:119 #: classes/gateways/class.pmprogateway_braintree.php:308 +#: classes/gateways/class.pmprogateway_braintree.php:315 msgid "Braintree Settings" msgstr "Configurações o Braintree" @@ -5160,6 +5530,7 @@ msgstr "Configurações o Braintree" #: classes/gateways/class.pmprogateway_braintree.php:124 #: classes/gateways/class.pmprogateway_braintree.php:313 #: classes/gateways/class.pmprogateway_cybersource.php:94 +#: classes/gateways/class.pmprogateway_braintree.php:320 msgid "Merchant ID" msgstr "Merchant ID" @@ -5169,6 +5540,7 @@ msgstr "Merchant ID" #: adminpages/paymentsettings.php:311 #: classes/gateways/class.pmprogateway_braintree.php:132 #: classes/gateways/class.pmprogateway_braintree.php:321 +#: classes/gateways/class.pmprogateway_braintree.php:328 msgid "Public Key" msgstr "Public Key (Chave Pública)" @@ -5178,6 +5550,7 @@ msgstr "Public Key (Chave Pública)" #: adminpages/paymentsettings.php:319 #: classes/gateways/class.pmprogateway_braintree.php:140 #: classes/gateways/class.pmprogateway_braintree.php:329 +#: classes/gateways/class.pmprogateway_braintree.php:336 msgid "Private Key" msgstr "Private Key (Chave Privada)" @@ -5187,6 +5560,7 @@ msgstr "Private Key (Chave Privada)" #: adminpages/paymentsettings.php:327 #: classes/gateways/class.pmprogateway_braintree.php:148 #: classes/gateways/class.pmprogateway_braintree.php:337 +#: classes/gateways/class.pmprogateway_braintree.php:344 msgid "Client-Side Encryption Key" msgstr "Client-Side Encryption Key" @@ -5204,6 +5578,7 @@ msgstr "Client-Side Encryption Key" #: classes/gateways/class.pmprogateway_stripe.php:182 #: classes/gateways/class.pmprogateway_stripe.php:192 #: classes/gateways/class.pmprogateway_braintree.php:345 +#: classes/gateways/class.pmprogateway_braintree.php:352 msgid "Web Hook URL" msgstr "Web Hook URL" @@ -5214,6 +5589,7 @@ msgstr "Web Hook URL" #: adminpages/paymentsettings.php:523 #: classes/gateways/class.pmprogateway_braintree.php:160 #: classes/gateways/class.pmprogateway_braintree.php:348 +#: classes/gateways/class.pmprogateway_braintree.php:355 msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to" msgstr "Para integrar completamente com o Braintree, assegure-se de apontar o seu Web Hook URL para" @@ -5240,6 +5616,9 @@ msgstr "Para integrar completamente com o Braintree, assegure-se de apontar o se #: classes/gateways/class.pmprogateway_stripe.php:1282 #: classes/gateways/class.pmprogateway_stripe.php:1288 #: classes/gateways/class.pmprogateway_stripe.php:747 +#: adminpages/orders.php:676 +#: classes/gateways/class.pmprogateway_braintree.php:461 +#: classes/gateways/class.pmprogateway_stripe.php:855 msgid "Payment Information" msgstr "Informações de Pagamento" @@ -5266,6 +5645,8 @@ msgstr "Informações de Pagamento" #: classes/gateways/class.pmprogateway_stripe.php:1283 #: classes/gateways/class.pmprogateway_stripe.php:1289 #: classes/gateways/class.pmprogateway_stripe.php:748 +#: classes/gateways/class.pmprogateway_braintree.php:462 +#: classes/gateways/class.pmprogateway_stripe.php:856 #, php-format msgid "We Accept %s" msgstr "Aceitamos %s" @@ -5299,6 +5680,8 @@ msgstr "Aceitamos %s" #: classes/gateways/class.pmprogateway_stripe.php:1322 #: classes/gateways/class.pmprogateway_stripe.php:781 #: pages/billing.php:377 +#: classes/gateways/class.pmprogateway_braintree.php:482 +#: classes/gateways/class.pmprogateway_stripe.php:889 msgid "Card Number" msgstr "Número do Cartão" @@ -5325,6 +5708,7 @@ msgstr "Número do Cartão" #: classes/gateways/class.pmprogateway_braintree.php:503 #: pages/billing.php:410 #: pages/billing.php:417 +#: classes/gateways/class.pmprogateway_braintree.php:510 msgid "CVV" msgstr "CVV" @@ -5352,6 +5736,7 @@ msgstr "CVV" #: pages/billing.php:411 #: pages/checkout.php:425 #: pages/billing.php:418 +#: classes/gateways/class.pmprogateway_braintree.php:511 msgid "what's this?" msgstr "o que é isso?" @@ -5384,6 +5769,8 @@ msgstr "o que é isso?" #: classes/gateways/class.pmprogateway_stripe.php:1338 #: classes/gateways/class.pmprogateway_stripe.php:1344 #: classes/gateways/class.pmprogateway_stripe.php:803 +#: classes/gateways/class.pmprogateway_braintree.php:518 +#: classes/gateways/class.pmprogateway_stripe.php:911 msgid "Apply" msgstr "Aplicar" @@ -5399,6 +5786,7 @@ msgstr "Aplicar" #: classes/gateways/class.pmprogateway_stripe.php:1036 #: classes/gateways/class.pmprogateway_stripe.php:1040 #: classes/gateways/class.pmprogateway_braintree.php:574 +#: classes/gateways/class.pmprogateway_braintree.php:581 msgid "Unknown error: Initial payment failed." msgstr "Erro desconhecido: O pagamento inicial falhou." @@ -5408,6 +5796,7 @@ msgstr "Erro desconhecido: O pagamento inicial falhou." #: classes/gateways/class.pmprogateway_braintree.php:478 #: classes/gateways/class.pmprogateway_braintree.php:650 #: classes/gateways/class.pmprogateway_braintree.php:653 +#: classes/gateways/class.pmprogateway_braintree.php:660 msgid "Error during settlement:" msgstr "Erro durante a resolução de pagamento:" @@ -5417,6 +5806,7 @@ msgstr "Erro durante a resolução de pagamento:" #: classes/gateways/class.pmprogateway_braintree.php:487 #: classes/gateways/class.pmprogateway_braintree.php:659 #: classes/gateways/class.pmprogateway_braintree.php:662 +#: classes/gateways/class.pmprogateway_braintree.php:669 msgid "Error during charge:" msgstr "Erro durante a cobrança:" @@ -5427,6 +5817,7 @@ msgstr "Erro durante a cobrança:" #: classes/gateways/class.pmprogateway_braintree.php:579 #: classes/gateways/class.pmprogateway_braintree.php:762 #: classes/gateways/class.pmprogateway_braintree.php:765 +#: classes/gateways/class.pmprogateway_braintree.php:772 msgid "Failed to update customer." msgstr "A atualização de cliente falhou." @@ -5437,6 +5828,7 @@ msgstr "A atualização de cliente falhou." #: classes/gateways/class.pmprogateway_braintree.php:627 #: classes/gateways/class.pmprogateway_braintree.php:810 #: classes/gateways/class.pmprogateway_braintree.php:813 +#: classes/gateways/class.pmprogateway_braintree.php:820 msgid "Failed to create customer." msgstr "Erro ao criar o novo cliente." @@ -5447,6 +5839,7 @@ msgstr "Erro ao criar o novo cliente." #: classes/gateways/class.pmprogateway_braintree.php:634 #: classes/gateways/class.pmprogateway_braintree.php:817 #: classes/gateways/class.pmprogateway_braintree.php:820 +#: classes/gateways/class.pmprogateway_braintree.php:827 msgid "Error creating customer record with Braintree:" msgstr "Erro ao criar cliente no Braintree:" @@ -5496,6 +5889,7 @@ msgstr "Erro na assinatura no Braintree:" #: classes/gateways/class.pmprogateway_stripe.php:423 #: classes/gateways/class.pmprogateway_braintree.php:1036 #: classes/gateways/class.pmprogateway_braintree.php:1039 +#: classes/gateways/class.pmprogateway_braintree.php:1046 msgid "Could not find the subscription." msgstr "Não foi possível encontrar a assinatura." @@ -5513,6 +5907,7 @@ msgstr "Não foi possível encontrar a assinatura." #: paid-memberships-pro.php:158 #: paid-memberships-pro.php:160 #: paid-memberships-pro.php:161 +#: paid-memberships-pro.php:167 msgid "Pay by Check" msgstr "Pagar com Cheque" @@ -5632,6 +6027,7 @@ msgstr "Foi realizado um pagamento parcial que não conseguimos extornar. Contac #: paid-memberships-pro.php:161 #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:164 +#: paid-memberships-pro.php:170 msgid "PayPal Website Payments Pro" msgstr "" @@ -5643,6 +6039,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:141 #: classes/gateways/class.pmprogateway_paypalstandard.php:133 #: classes/gateways/class.pmprogateway_paypalexpress.php:151 +#: classes/gateways/class.pmprogateway_paypalexpress.php:152 msgid "PayPal Settings" msgstr "Configurações do PayPal" @@ -5665,6 +6062,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:162 #: classes/gateways/class.pmprogateway_paypalstandard.php:154 #: classes/gateways/class.pmprogateway_paypalexpress.php:172 +#: classes/gateways/class.pmprogateway_paypalexpress.php:173 msgid "Gateway Account Email" msgstr "E-mail da conta do Gateway de Pagamento" @@ -5685,6 +6083,8 @@ msgstr "E-mail da conta do Gateway de Pagamento" #: classes/gateways/class.pmprogateway_paypalstandard.php:162 #: classes/gateways/class.pmprogateway_twocheckout.php:120 #: classes/gateways/class.pmprogateway_paypalexpress.php:180 +#: classes/gateways/class.pmprogateway_paypalexpress.php:181 +#: classes/gateways/class.pmprogateway_twocheckout.php:127 msgid "API Username" msgstr "API Username (Nome de Usuário no API)" @@ -5705,6 +6105,8 @@ msgstr "API Username (Nome de Usuário no API)" #: classes/gateways/class.pmprogateway_paypalstandard.php:170 #: classes/gateways/class.pmprogateway_twocheckout.php:129 #: classes/gateways/class.pmprogateway_paypalexpress.php:188 +#: classes/gateways/class.pmprogateway_paypalexpress.php:189 +#: classes/gateways/class.pmprogateway_twocheckout.php:136 msgid "API Password" msgstr "API Password (Senha no API)" @@ -5719,6 +6121,7 @@ msgstr "API Password (Senha no API)" #: classes/gateways/class.pmprogateway_paypalexpress.php:186 #: classes/gateways/class.pmprogateway_paypalstandard.php:178 #: classes/gateways/class.pmprogateway_paypalexpress.php:196 +#: classes/gateways/class.pmprogateway_paypalexpress.php:197 msgid "API Signature" msgstr "API Signature (Assinatura no API)" @@ -5734,6 +6137,7 @@ msgstr "API Signature (Assinatura no API)" #: classes/gateways/class.pmprogateway_paypalexpress.php:205 #: classes/gateways/class.pmprogateway_paypalstandard.php:186 #: classes/gateways/class.pmprogateway_paypalexpress.php:215 +#: classes/gateways/class.pmprogateway_paypalexpress.php:216 msgid "IPN Handler URL" msgstr "IPN Handler URL" @@ -5761,6 +6165,7 @@ msgstr "" #: pages/checkout.php:218 #: classes/gateways/class.pmprogateway_paypalexpress.php:498 #: classes/gateways/class.pmprogateway_paypalexpress.php:502 +#: classes/gateways/class.pmprogateway_paypalexpress.php:503 msgid "Check Out with PayPal" msgstr "Pagar pelo PayPal" @@ -5783,6 +6188,7 @@ msgstr "Pagar pelo PayPal" #: classes/gateways/class.pmprogateway_paypalexpress.php:503 #: classes/gateways/class.pmprogateway_paypalexpress.php:507 #: pages/checkout.php:538 +#: classes/gateways/class.pmprogateway_paypalexpress.php:508 msgid "Submit and Check Out" msgstr "Fazer Checkout" @@ -5809,6 +6215,8 @@ msgstr "Fazer Checkout" #: classes/gateways/class.pmprogateway_paypalexpress.php:503 #: classes/gateways/class.pmprogateway_paypalexpress.php:507 #: pages/checkout.php:538 +#: classes/gateways/class.pmprogateway_paypalexpress.php:508 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Submit and Confirm" msgstr "Enviar e Confirmar" @@ -5835,6 +6243,7 @@ msgstr "Enviar e Confirmar" #: classes/gateways/class.pmprogateway_paypalexpress.php:854 #: classes/gateways/class.pmprogateway_paypal.php:726 #: classes/gateways/class.pmprogateway_paypalexpress.php:865 +#: classes/gateways/class.pmprogateway_paypalexpress.php:866 msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward." msgstr "Por favor, entre em contato com o site ou cancele sua subscrição pelo PayPal para assegurar que não haverá cobranças futuras." @@ -5850,6 +6259,8 @@ msgstr "Por favor, entre em contato com o site ou cancele sua subscrição pelo #: paid-memberships-pro.php:162 #: classes/gateways/class.pmprogateway_paypalexpress.php:94 #: paid-memberships-pro.php:163 +#: classes/gateways/class.pmprogateway_paypalexpress.php:95 +#: paid-memberships-pro.php:169 msgid "PayPal Express" msgstr "" @@ -5862,6 +6273,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:199 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 #: classes/gateways/class.pmprogateway_paypalexpress.php:218 +#: classes/gateways/class.pmprogateway_paypalexpress.php:219 msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to " msgstr "Para integrar completamente con o Paypal, assegure-se de apontar o seu IPN Handler URL para" @@ -5885,6 +6297,8 @@ msgstr "Para integrar completamente con o Paypal, assegure-se de apontar o seu I #: classes/gateways/class.pmprogateway_paypalexpress.php:401 #: classes/gateways/class.pmprogateway_paypalexpress.php:352 #: classes/gateways/class.pmprogateway_paypalexpress.php:411 +#: classes/gateways/class.pmprogateway_paypalexpress.php:353 +#: classes/gateways/class.pmprogateway_paypalexpress.php:412 msgid "The PayPal Token was lost." msgstr "O Token do PayPal foi perdido." @@ -5898,6 +6312,7 @@ msgstr "O Token do PayPal foi perdido." #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:166 +#: paid-memberships-pro.php:172 msgid "PayPal Standard" msgstr "" @@ -5926,6 +6341,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:258 #: classes/gateways/class.pmprogateway_stripe.php:216 #: paid-memberships-pro.php:162 +#: classes/gateways/class.pmprogateway_stripe.php:234 +#: paid-memberships-pro.php:168 msgid "Stripe" msgstr "" @@ -5948,6 +6365,7 @@ msgstr "Configurações do Stripe" #: classes/gateways/class.pmprogateway_stripe.php:570 #: classes/gateways/class.pmprogateway_stripe.php:576 #: classes/gateways/class.pmprogateway_stripe.php:340 +#: classes/gateways/class.pmprogateway_stripe.php:366 msgid "Secret Key" msgstr "Secret Key (Chave Secreta)" @@ -5963,6 +6381,7 @@ msgstr "Secret Key (Chave Secreta)" #: classes/gateways/class.pmprogateway_stripe.php:554 #: classes/gateways/class.pmprogateway_stripe.php:560 #: classes/gateways/class.pmprogateway_stripe.php:324 +#: classes/gateways/class.pmprogateway_stripe.php:350 msgid "Publishable Key" msgstr "Publishable Key (Chave Publicável)" @@ -5978,6 +6397,8 @@ msgstr "Publishable Key (Chave Publicável)" #: classes/gateways/class.pmprogateway_stripe.php:629 #: classes/gateways/class.pmprogateway_stripe.php:635 #: classes/gateways/class.pmprogateway_stripe.php:399 +#: adminpages/orders.php:570 +#: classes/gateways/class.pmprogateway_stripe.php:425 msgid "Show Billing Address Fields" msgstr "Mostrar campos de endereço do faturamento" @@ -5992,6 +6413,7 @@ msgstr "Mostrar campos de endereço do faturamento" #: classes/gateways/class.pmprogateway_stripe.php:638 #: classes/gateways/class.pmprogateway_stripe.php:644 #: classes/gateways/class.pmprogateway_stripe.php:408 +#: classes/gateways/class.pmprogateway_stripe.php:434 msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.
If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "" @@ -6019,6 +6441,7 @@ msgstr "Para integrar completamente com o Stripe, assegure-se de apontar o seu W #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "Atualizações de subscrições" @@ -6068,6 +6491,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2653 #: classes/gateways/class.pmprogateway_stripe.php:2649 #: pages/billing.php:441 +#: classes/gateways/class.pmprogateway_stripe.php:3106 msgid "Update" msgstr "Atualizar" @@ -6084,6 +6508,7 @@ msgstr "Atualizar" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "Não foi possível cancelar a assinatura antiga. Atualizações não foram processadas." @@ -6132,6 +6557,8 @@ msgstr "Erro ao criar o cliente no Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "Erro ao fazer subscrição com o Stripe:" @@ -6171,6 +6598,8 @@ msgstr "Erro ao fazer subscrição com o Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "Erro ao criar o plano no Stripe:" @@ -6205,6 +6634,8 @@ msgstr "Erro ao criar o plano no Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "Erro ao associar cliente ao plano no Stripe:" @@ -6226,6 +6657,7 @@ msgstr "Erro ao associar cliente ao plano no Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "Não foi possível cancelar a assinatura antiga." @@ -6244,6 +6676,7 @@ msgstr "Não foi possível cancelar a assinatura antiga." #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "Cliente não encontrado." @@ -6255,6 +6688,7 @@ msgstr "Cliente não encontrado." #: paid-memberships-pro.php:125 #: paid-memberships-pro.php:132 #: paid-memberships-pro.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "2Checkout" @@ -6262,24 +6696,28 @@ msgstr "2Checkout" #: classes/gateways/class.pmprogateway_twocheckout.php:108 #: classes/gateways/class.pmprogateway_twocheckout.php:116 #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "Configurações do 2Checkout" #: classes/gateways/class.pmprogateway_twocheckout.php:123 #: classes/gateways/class.pmprogateway_twocheckout.php:125 #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:132 #: classes/gateways/class.pmprogateway_twocheckout.php:134 #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "Senha criada para o usuário de API." #: classes/gateways/class.pmprogateway_twocheckout.php:141 #: classes/gateways/class.pmprogateway_twocheckout.php:152 #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "" @@ -6289,12 +6727,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:137 #: classes/gateways/class.pmprogateway_twocheckout.php:157 #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "Palavra Secreta" #: classes/gateways/class.pmprogateway_twocheckout.php:150 #: classes/gateways/class.pmprogateway_twocheckout.php:161 #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "" @@ -6305,12 +6745,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:145 #: classes/gateways/class.pmprogateway_twocheckout.php:166 #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:158 #: classes/gateways/class.pmprogateway_twocheckout.php:169 #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "" @@ -6318,6 +6760,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:192 #: classes/gateways/class.pmprogateway_twocheckout.php:214 #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "" @@ -7298,6 +7741,7 @@ msgstr "e" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "Cadastre-se no !!name!! já" @@ -7344,6 +7788,9 @@ msgstr "Por favor, especifique um id de nível de assinatura." #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "Nenhum" @@ -7355,6 +7802,7 @@ msgstr "Sua chave de licença foi validada." #: includes/license.php:81 #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "Licença de suporte do Paid Memberships Pro" @@ -7375,6 +7823,7 @@ msgstr "" #: adminpages/license.php:49 #: adminpages/dashboard.php:178 #: adminpages/license.php:41 +#: adminpages/license.php:53 msgid "Your license is invalid or expired." msgstr "Sua licença está inválida ou expirada." @@ -7387,6 +7836,7 @@ msgstr "

Obrigado! Uma %s licença válida f #: adminpages/license.php:59 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "Entre com a chave de licença aqui..." @@ -7500,6 +7950,8 @@ msgstr "Nivel Atual" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "Sem pagamento." @@ -7604,6 +8056,9 @@ msgstr "sair" #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "Nível" @@ -7670,6 +8125,7 @@ msgstr "Os pagamentos recorrentes são controlados pelo Paypal. Por favor Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -9466,93 +9963,111 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -9578,6 +10093,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -9648,6 +10164,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -9753,6 +10270,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -9791,6 +10309,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -9803,31 +10322,39 @@ msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 msgid "%d discount codes found." msgstr "" @@ -9853,6 +10380,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -9871,6 +10405,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -9879,15 +10419,18 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -9928,192 +10471,241 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:960 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:170 #: includes/privacy.php:363 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -10131,6 +10723,7 @@ msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -10138,14 +10731,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -10162,27 +10758,34 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -10192,6 +10795,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -10199,6 +10804,7 @@ msgstr "" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -10206,6 +10812,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -10213,6 +10820,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -10220,6 +10828,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -10227,6 +10836,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -10234,6 +10844,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -10272,78 +10883,91 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -10353,12 +10977,15 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -10366,18 +10993,21 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" @@ -10387,11 +11017,13 @@ msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" @@ -10401,6 +11033,7 @@ msgstr "" #: adminpages/paymentsettings.php:260 #: adminpages/paymentsettings.php:273 +#: adminpages/paymentsettings.php:271 msgid "Your Site URL starts with https:// and so PMPro will allow your entire site to be served over HTTPS." msgstr "" @@ -10432,6 +11065,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -10442,6 +11076,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -10484,21 +11119,25 @@ msgid "Logins This Year" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -10657,51 +11296,63 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:962 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -10714,6 +11365,8 @@ msgstr "" #: includes/email.php:465 #: classes/class.pmproemail.php:898 #: classes/class.pmproemail.php:943 +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 msgid "The new level is %s." msgstr "" @@ -10726,30 +11379,36 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -10761,14 +11420,17 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:91 #: classes/gateways/class.pmprogateway_stripe.php:97 #: classes/gateways/class.pmprogateway_stripe.php:1353 +#: classes/gateways/class.pmprogateway_stripe.php:1478 msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" @@ -10782,21 +11444,30 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:750 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -10804,11 +11475,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -11086,17 +11760,20 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:185 #: classes/gateways/class.pmprogateway_paypalexpress.php:194 #: classes/gateways/class.pmprogateway_paypalexpress.php:204 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 msgid "Confirmation Step" msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -11105,6 +11782,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -11113,6 +11791,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -11128,6 +11807,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -11136,6 +11816,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -11147,6 +11828,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -11158,6 +11840,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -11169,6 +11852,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -11177,6 +11861,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -11188,6 +11873,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -11199,6 +11885,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -11207,6 +11894,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -11218,6 +11906,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -11226,6 +11915,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -11249,6 +11939,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -11265,6 +11957,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -11273,6 +11967,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -11281,6 +11976,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -11289,6 +11985,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -11296,6 +11993,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -11304,6 +12002,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -11317,6 +12016,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -11325,6 +12026,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -11333,6 +12035,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -11342,6 +12045,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -11359,6 +12064,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -11367,6 +12074,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -11388,6 +12096,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -11396,6 +12106,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -11404,6 +12115,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -11412,6 +12124,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -11420,6 +12133,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -11428,6 +12142,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -11436,6 +12151,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -11444,6 +12160,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -11452,6 +12169,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -11460,6 +12178,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -11468,6 +12187,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -11480,6 +12200,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -11488,6 +12209,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -11496,6 +12218,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -11504,6 +12227,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -11512,6 +12236,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -11555,6 +12280,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "" @@ -11566,6 +12293,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 msgid "Error: Unkown error while refunding charge #%s" msgstr "" @@ -11575,6 +12303,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -11595,6 +12324,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -11603,6 +12336,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -11612,6 +12346,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -11621,6 +12356,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -11632,6 +12368,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -11643,6 +12380,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -11654,6 +12392,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -11665,6 +12404,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" @@ -11699,6 +12439,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -11711,6 +12452,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -11723,6 +12465,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -13513,14 +14256,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -13529,18 +14275,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -13552,6 +14302,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -13684,6 +14435,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -13797,6 +14549,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -13804,6 +14557,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -13835,6 +14589,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -13844,6 +14599,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -13851,6 +14607,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -13950,6 +14707,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -13957,6 +14716,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -13964,6 +14724,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -13971,6 +14732,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -14042,126 +14804,148 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -14173,6 +14957,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -14270,6 +15057,7 @@ msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -14295,6 +15083,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -14333,6 +15122,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -14348,6 +15152,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -14363,6 +15168,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -14395,6 +15201,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -14407,6 +15214,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -14432,11 +15240,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -14444,6 +15257,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -14451,6 +15265,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -14473,6 +15288,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -14498,6 +15314,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -14505,6 +15322,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -14537,6 +15355,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -14559,6 +15378,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -14569,11 +15389,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -14593,6 +15424,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -14606,6 +15438,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -14615,6 +15448,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -14624,10 +15458,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -14638,6 +15474,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -14645,6 +15482,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -14654,6 +15492,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -14663,12 +15502,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -14676,6 +15518,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -14684,6 +15528,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -14691,6 +15536,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -14698,22 +15544,26 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -14771,12 +15621,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -14786,6 +15638,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -14795,6 +15648,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -14804,54 +15658,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -14862,42 +15726,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -14912,51 +15786,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -14964,6 +15850,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -14971,6 +15858,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -14978,6 +15866,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -14986,6 +15875,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -14999,6 +15890,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -15019,19 +15911,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -15041,31 +15937,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -15091,21 +15995,25 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" @@ -15175,26 +16083,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -15203,51 +16117,62 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -15261,19 +16186,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -15304,3 +16233,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-pt_PT.mo b/languages/paid-memberships-pro-pt_PT.mo index d1dac43ce..27bf910c2 100644 Binary files a/languages/paid-memberships-pro-pt_PT.mo and b/languages/paid-memberships-pro-pt_PT.mo differ diff --git a/languages/paid-memberships-pro-pt_PT.po b/languages/paid-memberships-pro-pt_PT.po index fa8a739c5..32bc26fac 100644 --- a/languages/paid-memberships-pro-pt_PT.po +++ b/languages/paid-memberships-pro-pt_PT.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:21:06+00:00\n" +"POT-Creation-Date: 2022-05-05T20:37:44+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -93,6 +93,7 @@ msgstr "Verifique Novamente" #: adminpages/orders.php:1014 #: includes/metaboxes.php:19 #: adminpages/orders.php:1015 +#: adminpages/orders.php:1103 msgid "All" msgstr "Tudo" @@ -136,6 +137,7 @@ msgstr "Tipo" #: adminpages/membershiplevels.php:296 #: adminpages/membershiplevels.php:298 #: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "Descrição" @@ -218,6 +220,11 @@ msgstr "Ativado %s" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "Apagar" @@ -286,6 +293,18 @@ msgstr "" #: adminpages/orders.php:913 #: adminpages/orders.php:1537 #: adminpages/orders.php:1546 +#: adminpages/orders.php:704 +#: adminpages/orders.php:996 +#: adminpages/orders.php:1689 +#: adminpages/orders.php:1698 +#: classes/class.pmproemail.php:261 +#: classes/class.pmproemail.php:327 +#: includes/profile.php:167 +#: includes/profile.php:483 +#: includes/profile.php:484 +#: includes/profile.php:556 +#: includes/profile.php:557 +#: includes/profile.php:558 msgid "N/A" msgstr "N/A" @@ -481,6 +500,11 @@ msgstr "Gateway de Pagamentos & SSL" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "E-mail" @@ -496,6 +520,7 @@ msgstr "Avançado" #: adminpages/advancedsettings.php:42 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "Suas opções avançadas foram atualizadas." @@ -516,6 +541,7 @@ msgstr "Por favor, é necessário Entrar como assinante para #: adminpages/advancedsettings.php:116 #: includes/updates/upgrade_1.php:13 #: adminpages/advancedsettings.php:118 +#: adminpages/advancedsettings.php:126 msgid "This content is for members only. Visit the site and log in/register to read." msgstr "Este conteúdo é reservado para assinantes com assinatura em dia. Visite o site e Inicie Sessão/Faça a sua Inscrição." @@ -534,6 +560,7 @@ msgstr "Este conteúdo é reservado para assinantes com assinatura em dia. Visit #: adminpages/advancedsettings.php:132 #: includes/adminpages.php:73 #: adminpages/advancedsettings.php:134 +#: adminpages/advancedsettings.php:142 msgid "Advanced Settings" msgstr "Configurações Avançadas" @@ -542,6 +569,7 @@ msgstr "Configurações Avançadas" #: adminpages/advancedsettings.php:92 #: adminpages/advancedsettings.php:164 #: adminpages/advancedsettings.php:166 +#: adminpages/advancedsettings.php:173 msgid "Message for Logged-in Non-members" msgstr "Mensagem para utilizadores com sessão iniciada" @@ -550,6 +578,7 @@ msgstr "Mensagem para utilizadores com sessão iniciada" #: adminpages/advancedsettings.php:96 #: adminpages/advancedsettings.php:168 #: adminpages/advancedsettings.php:170 +#: adminpages/advancedsettings.php:177 msgid "This message replaces the post content for non-members. Available variables" msgstr "Esta mensagem substitui o conteúdo do artigo para não assinantes. Variáveis dispotipos" @@ -558,6 +587,7 @@ msgstr "Esta mensagem substitui o conteúdo do artigo para não assinantes. Vari #: adminpages/advancedsettings.php:101 #: adminpages/advancedsettings.php:173 #: adminpages/advancedsettings.php:175 +#: adminpages/advancedsettings.php:182 msgid "Message for Logged-out Users" msgstr "Mensagens para utilizadores sem sessão iniciada" @@ -566,6 +596,7 @@ msgstr "Mensagens para utilizadores sem sessão iniciada" #: adminpages/advancedsettings.php:105 #: adminpages/advancedsettings.php:177 #: adminpages/advancedsettings.php:179 +#: adminpages/advancedsettings.php:186 msgid "This message replaces the post content for logged-out visitors." msgstr "Esta mensagem substitui o conteúdo para visitantes sem sessão iniciada" @@ -574,6 +605,7 @@ msgstr "Esta mensagem substitui o conteúdo para visitantes sem sessão iniciada #: adminpages/advancedsettings.php:110 #: adminpages/advancedsettings.php:182 #: adminpages/advancedsettings.php:184 +#: adminpages/advancedsettings.php:191 msgid "Message for RSS Feed" msgstr "Mensagem para Feed RSS" @@ -582,24 +614,28 @@ msgstr "Mensagem para Feed RSS" #: adminpages/advancedsettings.php:114 #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "This message replaces the post content in RSS feeds." msgstr "Esta mensagem substitui o conteúdo do artigo nos Feeds RSS." #: adminpages/advancedsettings.php:122 #: adminpages/advancedsettings.php:199 #: adminpages/advancedsettings.php:201 +#: adminpages/advancedsettings.php:208 msgid "Filter searches and archives?" msgstr "Filtrar Pesquisa e Arquivo?" #: adminpages/advancedsettings.php:126 #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:205 +#: adminpages/advancedsettings.php:212 msgid "No - Non-members will see restricted posts/pages in searches and archives." msgstr "Não - Não-assinantes verão artigos/páginas restritas nas pesquisas e arquivos." #: adminpages/advancedsettings.php:127 #: adminpages/advancedsettings.php:204 #: adminpages/advancedsettings.php:206 +#: adminpages/advancedsettings.php:213 msgid "Yes - Only members will see restricted posts/pages in searches and archives." msgstr "Sim - Apenas assinantes verão artigos/páginas restritas em pesquisas e arquivos." @@ -608,6 +644,7 @@ msgstr "Sim - Apenas assinantes verão artigos/páginas restritas em pesquisas e #: adminpages/advancedsettings.php:120 #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:212 +#: adminpages/advancedsettings.php:219 msgid "Show Excerpts to Non-Members?" msgstr "Mostrar resumo para não assinantes?" @@ -616,6 +653,7 @@ msgstr "Mostrar resumo para não assinantes?" #: adminpages/advancedsettings.php:124 #: adminpages/advancedsettings.php:214 #: adminpages/advancedsettings.php:216 +#: adminpages/advancedsettings.php:223 msgid "No - Hide excerpts." msgstr "Não - Esconder resumos." @@ -624,12 +662,14 @@ msgstr "Não - Esconder resumos." #: adminpages/advancedsettings.php:125 #: adminpages/advancedsettings.php:215 #: adminpages/advancedsettings.php:217 +#: adminpages/advancedsettings.php:224 msgid "Yes - Show excerpts." msgstr "Sim - Mostrar resumos." #: adminpages/advancedsettings.php:144 #: adminpages/advancedsettings.php:333 #: adminpages/advancedsettings.php:348 +#: adminpages/advancedsettings.php:355 msgid "Hide Ads From Members?" msgstr "Esconder Ads nas Assinaturas?" @@ -696,6 +736,16 @@ msgstr "Esconder Ads nas Assinaturas?" #: classes/gateways/class.pmprogateway_stripe.php:404 #: classes/gateways/class.pmprogateway_stripe.php:418 #: adminpages/paymentsettings.php:279 +#: adminpages/advancedsettings.php:254 +#: adminpages/advancedsettings.php:267 +#: adminpages/advancedsettings.php:359 +#: adminpages/advancedsettings.php:418 +#: adminpages/advancedsettings.php:526 +#: adminpages/membershiplevels.php:939 +#: adminpages/paymentsettings.php:277 +#: classes/gateways/class.pmprogateway_stripe.php:430 +#: classes/gateways/class.pmprogateway_stripe.php:444 +#: includes/profile.php:78 msgid "No" msgstr "Não" @@ -704,6 +754,7 @@ msgstr "Não" #: adminpages/advancedsettings.php:136 #: adminpages/advancedsettings.php:338 #: adminpages/advancedsettings.php:353 +#: adminpages/advancedsettings.php:360 msgid "Hide Ads From All Members" msgstr "Esconder anúncios para todos os assinantes" @@ -712,6 +763,7 @@ msgstr "Esconder anúncios para todos os assinantes" #: adminpages/advancedsettings.php:137 #: adminpages/advancedsettings.php:339 #: adminpages/advancedsettings.php:354 +#: adminpages/advancedsettings.php:361 msgid "Hide Ads From Certain Members" msgstr "Esconder anúncios para certos assinantes" @@ -726,6 +778,7 @@ msgstr "Anúncios dos seguintes plugins serão desligados" #: adminpages/advancedsettings.php:145 #: adminpages/advancedsettings.php:346 #: adminpages/advancedsettings.php:361 +#: adminpages/advancedsettings.php:368 msgid "To hide ads in your template code, use code like the following" msgstr "Para esconder anúncios em seus templates, use o seguinte código" @@ -734,6 +787,7 @@ msgstr "Para esconder anúncios em seus templates, use o seguinte código" #: adminpages/advancedsettings.php:156 #: adminpages/advancedsettings.php:355 #: adminpages/advancedsettings.php:370 +#: adminpages/advancedsettings.php:377 msgid "Choose Levels to Hide Ads From" msgstr "Selecione os Tipos que não irão ver anúncios" @@ -752,6 +806,7 @@ msgstr "Redirecionar todo o tráfego da página para /subscription/?" #: adminpages/advancedsettings.php:390 #: adminpages/advancedsettings.php:392 #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "multisite only" msgstr "apenas multisite" @@ -807,6 +862,12 @@ msgstr "apenas multisite" #: classes/gateways/class.pmprogateway_stripe.php:406 #: classes/gateways/class.pmprogateway_stripe.php:420 #: adminpages/paymentsettings.php:280 +#: adminpages/advancedsettings.php:419 +#: adminpages/membershiplevels.php:934 +#: adminpages/paymentsettings.php:278 +#: classes/gateways/class.pmprogateway_stripe.php:432 +#: classes/gateways/class.pmprogateway_stripe.php:446 +#: includes/profile.php:79 msgid "Yes" msgstr "Sim" @@ -815,6 +876,7 @@ msgstr "Sim" #: adminpages/advancedsettings.php:202 #: adminpages/advancedsettings.php:241 #: adminpages/advancedsettings.php:256 +#: adminpages/advancedsettings.php:263 msgid "Use reCAPTCHA?" msgstr "Usar reCAPTCHA?" @@ -830,6 +892,7 @@ msgstr "Sim - Apenas assinaturas gratuitas." #: adminpages/advancedsettings.php:208 #: adminpages/advancedsettings.php:247 #: adminpages/advancedsettings.php:262 +#: adminpages/advancedsettings.php:269 msgid "Yes - All memberships." msgstr "Sim - Todas as assinaturas." @@ -838,6 +901,7 @@ msgstr "Sim - Todas as assinaturas." #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "A free reCAPTCHA key is required." msgstr "Uma chave gratuita reCAPTCHA é requerida." @@ -846,6 +910,7 @@ msgstr "Uma chave gratuita reCAPTCHA é requerida." #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "Click here to signup for reCAPTCHA" msgstr "Clique aqui para registrar no reCAPTCHA" @@ -903,6 +968,9 @@ msgstr "selecionado" #: adminpages/pagesettings.php:508 #: adminpages/pagesettings.php:512 #: adminpages/paymentsettings.php:316 +#: adminpages/advancedsettings.php:574 +#: adminpages/pagesettings.php:511 +#: adminpages/paymentsettings.php:314 msgid "Save Settings" msgstr "Gravar Configurações" @@ -978,6 +1046,7 @@ msgstr "Erro ao eliminar o código. Por favor tente outra vez." #: adminpages/discountcodes.php:796 #: adminpages/discountcodes.php:354 #: adminpages/discountcodes.php:798 +#: adminpages/discountcodes.php:799 msgid "Code not found." msgstr "Código não encontrado." @@ -1000,6 +1069,7 @@ msgstr "Edite o código de desconto." #: adminpages/discountcodes.php:735 #: adminpages/discountcodes.php:377 #: adminpages/discountcodes.php:737 +#: adminpages/discountcodes.php:738 msgid "Add New Discount Code" msgstr "Adicionar Código de Desconto." @@ -1050,6 +1120,8 @@ msgstr "Adicionar Código de Desconto." #: adminpages/reports/login.php:182 #: adminpages/templates/orders-email.php:49 #: adminpages/templates/orders-print.php:78 +#: adminpages/membershiplevels.php:345 +#: adminpages/membershiplevels.php:805 msgid "ID" msgstr "ID" @@ -1098,6 +1170,9 @@ msgstr "Isso será gerado ao gravar." #: adminpages/dashboard.php:292 #: adminpages/orders.php:429 #: adminpages/orders.php:1333 +#: adminpages/discountcodes.php:787 +#: adminpages/orders.php:475 +#: adminpages/orders.php:1426 msgid "Code" msgstr "Código" @@ -1111,6 +1186,7 @@ msgstr "Código" #: adminpages/discountcodes.php:489 #: includes/profile.php:501 #: includes/profile.php:497 +#: includes/profile.php:537 msgid "Start Date" msgstr "Data de Início" @@ -1148,6 +1224,8 @@ msgstr "Data de Início" #: classes/gateways/class.pmprogateway_stripe.php:1326 #: classes/gateways/class.pmprogateway_stripe.php:785 #: pages/billing.php:381 +#: classes/gateways/class.pmprogateway_braintree.php:486 +#: classes/gateways/class.pmprogateway_stripe.php:893 msgid "Expiration Date" msgstr "Data de Expiração" @@ -1162,6 +1240,7 @@ msgstr "Data de Expiração" #: adminpages/discountcodes.php:787 #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:789 +#: adminpages/discountcodes.php:790 msgid "Uses" msgstr "Usa" @@ -1195,6 +1274,7 @@ msgstr "Este código irá aplicar-se a que tipos?" #: adminpages/discountcodes.php:574 #: adminpages/membershiplevels.php:401 #: adminpages/discountcodes.php:576 +#: adminpages/membershiplevels.php:399 msgid "Initial Payment" msgstr "Pagamento Inicial" @@ -1210,6 +1290,7 @@ msgstr "Pagamento Inicial" #: adminpages/discountcodes.php:585 #: adminpages/membershiplevels.php:412 #: adminpages/discountcodes.php:587 +#: adminpages/membershiplevels.php:410 msgid "The initial amount collected at registration." msgstr "Pagamento inicial na altura do Registo." @@ -1225,6 +1306,7 @@ msgstr "Pagamento inicial na altura do Registo." #: adminpages/discountcodes.php:590 #: adminpages/membershiplevels.php:417 #: adminpages/discountcodes.php:592 +#: adminpages/membershiplevels.php:415 msgid "Recurring Subscription" msgstr "Pagamento Recorrente" @@ -1240,6 +1322,7 @@ msgstr "Pagamento Recorrente" #: adminpages/discountcodes.php:591 #: adminpages/membershiplevels.php:418 #: adminpages/discountcodes.php:593 +#: adminpages/membershiplevels.php:416 msgid "Check if this level has a recurring subscription payment." msgstr "Verifique se esse tipo tem pagamento recorrente." @@ -1254,6 +1337,7 @@ msgstr "Verifique se esse tipo tem pagamento recorrente." #: adminpages/discountcodes.php:595 #: adminpages/membershiplevels.php:422 #: adminpages/discountcodes.php:597 +#: adminpages/membershiplevels.php:420 msgid "Billing Amount" msgstr "Quantia a Faturar" @@ -1292,6 +1376,10 @@ msgstr "Quantia a Faturar" #: classes/gateways/class.pmprogateway_stripe.php:2637 #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2635 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3092 msgid "Day(s)" msgstr "Dia(s)" @@ -1330,6 +1418,10 @@ msgstr "Dia(s)" #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2641 #: classes/gateways/class.pmprogateway_stripe.php:2637 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3094 msgid "Month(s)" msgstr "Mes(es)" @@ -1368,6 +1460,10 @@ msgstr "Mes(es)" #: classes/gateways/class.pmprogateway_stripe.php:2638 #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2636 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3093 msgid "Week(s)" msgstr "Semana(s)" @@ -1406,6 +1502,10 @@ msgstr "Semana(s)" #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2642 #: classes/gateways/class.pmprogateway_stripe.php:2638 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3095 msgid "Year(s)" msgstr "Ano(s)" @@ -1421,6 +1521,7 @@ msgstr "Ano(s)" #: adminpages/discountcodes.php:618 #: adminpages/membershiplevels.php:446 #: adminpages/discountcodes.php:620 +#: adminpages/membershiplevels.php:444 msgid "The amount to be billed one cycle after the initial payment." msgstr "Quantia a ser cobrada por período após o primeiro pagamento." @@ -1436,6 +1537,7 @@ msgstr "Quantia a ser cobrada por período após o primeiro pagamento." #: adminpages/discountcodes.php:628 #: adminpages/membershiplevels.php:465 #: adminpages/discountcodes.php:630 +#: adminpages/membershiplevels.php:463 msgid "Billing Cycle Limit" msgstr "Limite do Período de Faturação" @@ -1451,6 +1553,7 @@ msgstr "Limite do Período de Faturação" #: adminpages/discountcodes.php:632 #: adminpages/membershiplevels.php:469 #: adminpages/discountcodes.php:634 +#: adminpages/membershiplevels.php:467 msgid "The total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "O número totalde períodos recorrentes para este tipo, incluindo o período experimental (se aplicável), mas sem incluir o Pagamento Inicial. Preencha com 0 caso a assinatura seja por tempo indeterminado." @@ -1466,6 +1569,8 @@ msgstr "O número totalde períodos recorrentes para este tipo, #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "Período Experimental" @@ -1482,6 +1587,8 @@ msgstr "Período Experimental" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "Selecione para adicionar um período experimental." @@ -1498,6 +1605,7 @@ msgstr "Selecione para adicionar um período experimental." #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "Quantia a faturar para o período experimental" @@ -1514,6 +1622,7 @@ msgstr "Quantia a faturar para o período experimental" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "para o primeiro" @@ -1530,6 +1639,7 @@ msgstr "para o primeiro" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "pagamentos de assinatura" @@ -1547,6 +1657,7 @@ msgstr "pagamentos de assinatura" #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "Expiração da Assinatura" @@ -1563,6 +1674,7 @@ msgstr "Expiração da Assinatura" #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "Marque esta opção para configurar quando a assinatura expira." @@ -1581,6 +1693,8 @@ msgstr "Marque esta opção para configurar quando a assinatura expira." #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "Expira em" @@ -1597,6 +1711,8 @@ msgstr "Expira em" #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "Configure a duração da assinatura. Tenha em atenção que qualquer pagamento futuro e assinatura recorrente, se existir alguma, serão cancelados quando a assinatura expirar." @@ -1606,6 +1722,7 @@ msgstr "Configure a duração da assinatura. Tenha em atenção que qualquer pag #: adminpages/discountcodes.php:556 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "Códigos de Desconto de Assinatura" @@ -1615,6 +1732,7 @@ msgstr "Códigos de Desconto de Assinatura" #: adminpages/discountcodes.php:566 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "Pesquisar Códigos de Desconto" @@ -1627,6 +1745,7 @@ msgstr "Pesquisar Códigos de Desconto" #: adminpages/reports/login.php:83 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "Pesquisar" @@ -1636,6 +1755,7 @@ msgstr "Pesquisar" #: adminpages/discountcodes.php:587 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "Começa" @@ -1665,6 +1785,8 @@ msgstr "Começa" #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "Expira" @@ -1675,6 +1797,7 @@ msgstr "Expira" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "Tipos" @@ -1717,6 +1840,7 @@ msgstr "Os códigos de desconto permitem oferecer assinaturas com desconto." #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "editar" @@ -1775,6 +1899,7 @@ msgstr "Configurações de E-mail" #: adminpages/emailsettings.php:70 #: adminpages/emailsettings.php:61 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "Por padrão, e-mails gerados pelo sistema são enviados pelo wordpress@seu_dominio.com. Você pode atualizar essa configuração utilizando os campos abaixo." @@ -1786,22 +1911,26 @@ msgstr "Para modificar a aparência dos emails gerados pelo sistema, adicione os #: adminpages/emailsettings.php:78 #: adminpages/emailsettings.php:69 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "E-mail do Remetente" #: adminpages/emailsettings.php:86 #: adminpages/emailsettings.php:77 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "Nome do Remetente" #: adminpages/emailsettings.php:94 #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "Filtrar somente E-mails do PMPro?" #: adminpages/emailsettings.php:98 #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 #, php-format msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "Se desmarcado, todos os emails de \"WordPress <%s>\" serão filtradas utilizando as configurações acima." @@ -1971,6 +2100,8 @@ msgstr "Adicione um novo Tipo de Assinatura" #: adminpages/reports/history.php:184 #: adminpages/reports/login.php:181 #: adminpages/reports/login.php:184 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 msgid "Name" msgstr "Nome" @@ -1978,6 +2109,7 @@ msgstr "Nome" #: adminpages/membershiplevels.php:314 #: adminpages/membershiplevels.php:316 #: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "Mensagem de Confirmação" @@ -1991,6 +2123,8 @@ msgstr "Mensagem de Confirmação" #: adminpages/membershiplevels.php:639 #: adminpages/membershiplevels.php:397 #: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "Detalhes de Faturação" @@ -2015,6 +2149,8 @@ msgstr "Detalhes de Faturação" #: classes/gateways/class.pmprogateway_stripe.php:2696 #: classes/gateways/class.pmprogateway_stripe.php:2698 #: classes/gateways/class.pmprogateway_stripe.php:2694 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "por" @@ -2033,6 +2169,7 @@ msgstr "" #: adminpages/discountcodes.php:620 #: adminpages/membershiplevels.php:448 #: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:446 msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." msgstr "A integração com o Braintree atualmente apenas suporta recorrência de pagamento para \"Month\" ou \"Year\"." @@ -2050,6 +2187,7 @@ msgstr "A integração com o Braintree atualmente apenas suporta recorrência de #: adminpages/membershiplevels.php:393 #: adminpages/membershiplevels.php:396 #: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." msgstr "" @@ -2072,6 +2210,8 @@ msgstr "" #: adminpages/membershiplevels.php:454 #: adminpages/membershiplevels.php:459 #: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 msgid "Note" msgstr "Nota" @@ -2091,6 +2231,7 @@ msgstr "" #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "A integração com o Stripe atualmente não aceita limite de recorrência. Pode configurar uma data de expiração abaixo." @@ -2102,6 +2243,8 @@ msgstr "A integração com o Stripe atualmente não aceita limite de recorrênci #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "" @@ -2114,6 +2257,7 @@ msgstr "" #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "" @@ -2126,6 +2270,7 @@ msgstr "" #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "" @@ -2138,6 +2283,7 @@ msgstr "" #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "" @@ -2152,6 +2298,7 @@ msgstr "" #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "Outras Configurações" @@ -2187,6 +2334,8 @@ msgstr "Marque esta opção para esconder este tipo de assinatura e desativar re #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "Configurações de Conteúdo" @@ -2198,12 +2347,14 @@ msgstr "Configurações de Conteúdo" #: adminpages/membershiplevels.php:497 #: adminpages/membershiplevels.php:500 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "Categorias" #: adminpages/membershiplevels.php:516 #: adminpages/membershiplevels.php:517 #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "Gravar Tipo" @@ -2241,6 +2392,11 @@ msgstr "Gravar Tipo" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "Cancelar" @@ -2281,6 +2437,7 @@ msgstr "Pesquisar Tipos" #: adminpages/membershiplevels.php:579 #: adminpages/membershiplevels.php:631 #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "Clicar e Arrastar os tipos de assinatura para reordená-los na página de Tipos." @@ -2306,6 +2463,8 @@ msgstr "Clicar e Arrastar os tipos de assinatura para reordená-los na página d #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "Expiração" @@ -2318,6 +2477,7 @@ msgstr "Expiração" #: adminpages/membershiplevels.php:587 #: adminpages/membershiplevels.php:641 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "Permitir registos" @@ -2331,6 +2491,7 @@ msgstr "Permitir registos" #: adminpages/membershiplevels.php:656 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "GRATUITO" @@ -2344,6 +2505,7 @@ msgstr "GRATUITO" #: adminpages/membershiplevels.php:665 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "Depois" @@ -2389,6 +2551,7 @@ msgstr "copiar" #: includes/adminpages.php:149 #: includes/adminpages.php:153 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "Lista de Assinantes" @@ -2402,6 +2565,8 @@ msgstr "Lista de Assinantes" #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "Exportar para CSV" @@ -2431,6 +2596,8 @@ msgstr "Exportar para CSV" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "Mostrar" @@ -2459,6 +2626,8 @@ msgstr "Mostrar" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "Todos os Tipos" @@ -2502,6 +2671,8 @@ msgstr "Assinantes Antigos" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "Pesquisar Assinantes" @@ -2540,6 +2711,8 @@ msgstr "%d assinantes encontrados." #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "Nome de Utilizador" @@ -2583,6 +2756,7 @@ msgstr "Apelido" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "Endereço de Faturação" @@ -2694,6 +2868,7 @@ msgstr "Erro ao eliminar o pedido." #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "Pedido gravado com sucesso." @@ -2709,6 +2884,7 @@ msgstr "Erro ao atualizar o timestamp do Pedido." #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "Erro ao gravar o pedido." @@ -2722,6 +2898,7 @@ msgstr "Erro ao gravar o pedido." #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "Pedidos" @@ -2732,6 +2909,7 @@ msgstr "Pedidos" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "Novo Pedido" @@ -2742,6 +2920,7 @@ msgstr "Novo Pedido" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "Gerada aleatoriamente." @@ -2752,6 +2931,7 @@ msgstr "Gerada aleatoriamente." #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "ID de Utilizador" @@ -2763,6 +2943,8 @@ msgstr "ID de Utilizador" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "ID de Tipo de Assinatura" @@ -2774,6 +2956,7 @@ msgstr "ID de Tipo de Assinatura" #: includes/privacy.php:245 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "Nome (faturação)" @@ -2785,6 +2968,7 @@ msgstr "Nome (faturação)" #: includes/privacy.php:249 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "Rua (faturação)" @@ -2797,6 +2981,7 @@ msgstr "Rua (faturação)" #: includes/privacy.php:358 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "Cidade (faturação)" @@ -2808,6 +2993,7 @@ msgstr "Cidade (faturação)" #: includes/privacy.php:257 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "Distrito (faturação)" @@ -2821,6 +3007,7 @@ msgstr "Distrito (faturação)" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "Código Postal (faturação)" @@ -2834,6 +3021,7 @@ msgstr "Código Postal (faturação)" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "País (faturação)" @@ -2846,6 +3034,7 @@ msgstr "País (faturação)" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "Telefone (faturação)" @@ -2858,6 +3047,7 @@ msgstr "Telefone (faturação)" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "Subtotal" @@ -2877,6 +3067,8 @@ msgstr "Subtotal" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "Impostos" @@ -2889,6 +3081,7 @@ msgstr "Impostos" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "Desconto" @@ -2920,6 +3113,9 @@ msgstr "Desconto" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "Total" @@ -2939,6 +3135,7 @@ msgstr "Deveria ser igual a subtotal + impostos - desconto" #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "Tipo de Pagamento" @@ -2950,6 +3147,7 @@ msgstr "Tipo de Pagamento" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "ex: PayPal Express, PayPal Standard, Cartão de Crédito." @@ -2990,6 +3188,9 @@ msgstr "ex: PayPal Express, PayPal Standard, Cartão de Crédito." #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "Tipo do Cartão" @@ -3001,6 +3202,7 @@ msgstr "Tipo do Cartão" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "ex: Visa, MasterCard, AMEX, etc" @@ -3019,6 +3221,8 @@ msgstr "ex: Visa, MasterCard, AMEX, etc" #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "Número da Conta" @@ -3029,6 +3233,7 @@ msgstr "Número da Conta" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "Esconder tudo menos os últimos 4 dígitos" @@ -3043,6 +3248,7 @@ msgstr "Esconder tudo menos os últimos 4 dígitos" #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "Mês de expiração" @@ -3085,6 +3291,10 @@ msgstr "Ano de Expiração" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "Estado" @@ -3107,6 +3317,9 @@ msgstr "Estado" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "Gateway" @@ -3125,6 +3338,8 @@ msgstr "Gateway" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "Gateway Environment" @@ -3146,6 +3361,9 @@ msgstr "Gateway Environment" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "Sandbox/Testes" @@ -3167,6 +3385,9 @@ msgstr "Sandbox/Testes" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "Ambiente de Produção" @@ -3179,6 +3400,7 @@ msgstr "Ambiente de Produção" #: includes/privacy.php:321 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "ID de transação de pagamento" @@ -3190,6 +3412,7 @@ msgstr "ID de transação de pagamento" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "Gerado pelo gateway. Útil para comparar os pagamentos/assinaturas." @@ -3204,6 +3427,8 @@ msgstr "Gerado pelo gateway. Útil para comparar os pagamentos/assinaturas." #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "ID da transação" @@ -3216,6 +3441,7 @@ msgstr "ID da transação" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "Gerado pelo Gateway. Útil para comparar os pagamentos/assinaturas." @@ -3249,6 +3475,8 @@ msgstr "Gerado pelo Gateway. Útil para comparar os pagamentos/assinaturas." #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "Data" @@ -3260,6 +3488,7 @@ msgstr "Data" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "ID de afiliado" @@ -3271,6 +3500,7 @@ msgstr "ID de afiliado" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "SubID de afiliado" @@ -3282,6 +3512,7 @@ msgstr "SubID de afiliado" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "Notas" @@ -3293,6 +3524,7 @@ msgstr "Notas" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "Gravar Pedido" @@ -3338,6 +3570,8 @@ msgstr "Enviar E-mail" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "Pedidos" @@ -3349,6 +3583,7 @@ msgstr "Pedidos" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "Adicionar Pedido" @@ -3359,6 +3594,7 @@ msgstr "Adicionar Pedido" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "Dentro do intervalo de data" @@ -3369,6 +3605,7 @@ msgstr "Dentro do intervalo de data" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "Intervalo pré-definido de data" @@ -3379,6 +3616,7 @@ msgstr "Intervalo pré-definido de data" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "Dentro do tipo" @@ -3389,6 +3627,7 @@ msgstr "Dentro do tipo" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "Dentro do Estado" @@ -3399,6 +3638,7 @@ msgstr "Dentro do Estado" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "De" @@ -3409,6 +3649,7 @@ msgstr "De" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "Para" @@ -3419,6 +3660,7 @@ msgstr "Para" #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "filtrar por" @@ -3429,6 +3671,7 @@ msgstr "filtrar por" #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "Filtro" @@ -3448,6 +3691,8 @@ msgstr "Filtro" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "Pesquisar Pedidos" @@ -3460,6 +3705,8 @@ msgstr "Pesquisar Pedidos" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "%d pedidos encontrados." @@ -3484,6 +3731,7 @@ msgstr "%d pedidos encontrados." #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "Utilizador" @@ -3527,6 +3775,8 @@ msgstr "Utilizador" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "Tipo de Assinatura" @@ -3548,6 +3798,7 @@ msgstr "Tipo de Assinatura" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "Pagamento" @@ -3560,6 +3811,7 @@ msgstr "Pagamento" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "IDs das transações" @@ -3583,6 +3835,8 @@ msgstr "IDs das transações" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "eliminado" @@ -3596,6 +3850,7 @@ msgstr "eliminado" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "Assinatura" @@ -3611,6 +3866,7 @@ msgstr "Assinatura" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "Eliminar um pedido é uma ação permanente e pode afetar os utilizadores ativos. Quer mesmo eliminar o pedido %s?" @@ -3640,6 +3896,7 @@ msgstr "email" #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "Não foram encontrados pedidos." @@ -3712,6 +3969,7 @@ msgstr "As seguintes páginas foram criadas para você" #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "Gerencie as páginas do WordPress associadas a cada uma das páginas exigidas pelo Paid Memberships Pro." @@ -3721,6 +3979,7 @@ msgstr "Gerencie as páginas do WordPress associadas a cada uma das páginas exi #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "Associe as páginas WordPress para cada página exigida pelo Paid Memberships Pro ou" @@ -3730,6 +3989,7 @@ msgstr "Associe as páginas WordPress para cada página exigida pelo Paid Member #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "clique aqui que criaremos novas páginas automaticamente." @@ -3739,6 +3999,7 @@ msgstr "clique aqui que criaremos novas páginas automaticamente." #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "Página da Conta" @@ -3785,6 +4046,14 @@ msgstr "Página da Conta" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "Escolha Um" @@ -3845,6 +4114,16 @@ msgstr "Escolha Um" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "editar página" @@ -3902,6 +4181,15 @@ msgstr "editar página" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "ver página" @@ -3955,6 +4243,12 @@ msgstr "ver página" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "Inclua o shortcode" @@ -3966,6 +4260,7 @@ msgstr "Inclua o shortcode" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "Página de Informações de Faturação" @@ -3977,6 +4272,7 @@ msgstr "Página de Informações de Faturação" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "Página de Cancelamento" @@ -3988,6 +4284,7 @@ msgstr "Página de Cancelamento" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "Página de Checkout" @@ -3999,6 +4296,7 @@ msgstr "Página de Checkout" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "Página de Confirmação" @@ -4010,6 +4308,7 @@ msgstr "Página de Confirmação" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "Página de Fatura" @@ -4021,6 +4320,7 @@ msgstr "Página de Fatura" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "Página de Tipos de Assinatura" @@ -4028,6 +4328,7 @@ msgstr "Página de Tipos de Assinatura" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "Configurações adicionais da página" @@ -4041,6 +4342,9 @@ msgstr "Configurações adicionais da página" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "Gerar página" @@ -4061,6 +4365,7 @@ msgstr "As opções de pagamento foram atualizadas." #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "Gateway de Pagamento" @@ -4071,6 +4376,7 @@ msgstr "Gateway de Pagamento" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "Opções de SSL" @@ -4082,12 +4388,14 @@ msgstr "" #: adminpages/paymentsettings.php:101 #: adminpages/paymentsettings.php:122 #: adminpages/paymentsettings.php:127 +#: adminpages/paymentsettings.php:125 msgid "Choose a Gateway" msgstr "Escolha um Gateway" #: adminpages/paymentsettings.php:148 #: adminpages/paymentsettings.php:194 #: adminpages/paymentsettings.php:201 +#: adminpages/paymentsettings.php:199 msgid "Currency and Tax Settings" msgstr "Configurações de Moedas e Impostos" @@ -4099,6 +4407,7 @@ msgstr "Configurações de Moedas e Impostos" #: adminpages/paymentsettings.php:386 #: adminpages/paymentsettings.php:199 #: adminpages/paymentsettings.php:206 +#: adminpages/paymentsettings.php:204 msgid "Currency" msgstr "Moeda" @@ -4107,6 +4416,7 @@ msgstr "Moeda" #: adminpages/paymentsettings.php:402 #: adminpages/paymentsettings.php:215 #: adminpages/paymentsettings.php:222 +#: adminpages/paymentsettings.php:220 msgid "Not all currencies will be supported by every gateway. Please check with your gateway." msgstr "Nem todas as moedas são suportadas por cada gateway. Por favor, verifique com seu gateway." @@ -4117,6 +4427,7 @@ msgstr "Nem todas as moedas são suportadas por cada gateway. Por favor, verifiq #: adminpages/paymentsettings.php:408 #: adminpages/paymentsettings.php:220 #: adminpages/paymentsettings.php:227 +#: adminpages/paymentsettings.php:225 msgid "Accepted Credit Card Types" msgstr "Operadores de Cartão Aceites" @@ -4127,6 +4438,7 @@ msgstr "Operadores de Cartão Aceites" #: adminpages/paymentsettings.php:445 #: adminpages/paymentsettings.php:234 #: adminpages/paymentsettings.php:241 +#: adminpages/paymentsettings.php:239 msgid "Sales Tax" msgstr "Imposto Sobre Vendas" @@ -4142,6 +4454,7 @@ msgstr "Imposto Sobre Vendas" #: pages/billing.php:179 #: adminpages/paymentsettings.php:241 #: pages/billing.php:181 +#: adminpages/paymentsettings.php:239 msgid "optional" msgstr "opcional" @@ -4152,6 +4465,7 @@ msgstr "opcional" #: adminpages/paymentsettings.php:448 #: adminpages/paymentsettings.php:237 #: adminpages/paymentsettings.php:244 +#: adminpages/paymentsettings.php:242 msgid "Tax State" msgstr "Imposto Estadual" @@ -4162,12 +4476,14 @@ msgstr "Imposto Estadual" #: adminpages/paymentsettings.php:449 #: adminpages/paymentsettings.php:238 #: adminpages/paymentsettings.php:245 +#: adminpages/paymentsettings.php:243 msgid "abbreviation, e.g. \"PA\"" msgstr "abreviatura, ex: \"PA\"" #: adminpages/paymentsettings.php:193 #: adminpages/paymentsettings.php:239 #: adminpages/paymentsettings.php:246 +#: adminpages/paymentsettings.php:244 msgid "Tax Rate" msgstr "Taxa do imposto" @@ -4178,6 +4494,7 @@ msgstr "Taxa do imposto" #: adminpages/paymentsettings.php:451 #: adminpages/paymentsettings.php:240 #: adminpages/paymentsettings.php:247 +#: adminpages/paymentsettings.php:245 msgid "decimal, e.g. \"0.06\"" msgstr "decimal, ex: \"0.23\"" @@ -4193,6 +4510,7 @@ msgstr "" #: adminpages/paymentsettings.php:457 #: adminpages/paymentsettings.php:253 #: adminpages/paymentsettings.php:266 +#: adminpages/paymentsettings.php:264 msgid "Force SSL" msgstr "Forçar SSL" @@ -4202,12 +4520,14 @@ msgstr "Forçar SSL" #: adminpages/paymentsettings.php:463 #: adminpages/paymentsettings.php:268 #: adminpages/paymentsettings.php:281 +#: adminpages/paymentsettings.php:279 msgid "Yes (with JavaScript redirects)" msgstr "Sim (com redirecionamento JavaScript)" #: adminpages/paymentsettings.php:214 #: adminpages/paymentsettings.php:270 #: adminpages/paymentsettings.php:283 +#: adminpages/paymentsettings.php:281 msgid "Recommended: Yes. Try the JavaScript redirects setting if you are having issues with infinite redirect loops." msgstr "Recomendado: Sim. Tente redirecionamentos por JavaScript se você tiver problemas de loop infinito nos redirecionamentos." @@ -4218,6 +4538,7 @@ msgstr "Recomendado: Sim. Tente redirecionamentos por JavaScript se você tiver #: adminpages/paymentsettings.php:470 #: adminpages/paymentsettings.php:278 #: adminpages/paymentsettings.php:291 +#: adminpages/paymentsettings.php:289 msgid "SSL Seal Code" msgstr "SSL Seal Code (Código SSL)" @@ -4228,12 +4549,14 @@ msgstr "" #: adminpages/paymentsettings.php:228 #: adminpages/paymentsettings.php:287 #: adminpages/paymentsettings.php:306 +#: adminpages/paymentsettings.php:304 msgid "Extra HTTPS URL Filter" msgstr "Filtro de URL HTTPS extra" #: adminpages/paymentsettings.php:231 #: adminpages/paymentsettings.php:290 #: adminpages/paymentsettings.php:309 +#: adminpages/paymentsettings.php:307 msgid "Pass all generated HTML through a URL filter to add HTTPS to URLs used on secure pages. Check this if you are using SSL and have warnings on your checkout pages." msgstr "" @@ -4251,6 +4574,7 @@ msgstr "Detalhes" #: adminpages/reports.php:61 #: adminpages/reports.php:19 #: adminpages/reports.php:18 +#: adminpages/reports.php:21 msgid "Back to Reports Dashboard" msgstr "Voltar ao Painel de Relatórios" @@ -4293,6 +4617,7 @@ msgstr "Hoje" #: adminpages/orders.php:1077 #: adminpages/orders.php:1069 #: adminpages/orders.php:1070 +#: adminpages/orders.php:1158 msgid "This Month" msgstr "Este mês" @@ -4305,6 +4630,7 @@ msgstr "Este mês" #: adminpages/reports/memberships.php:52 #: adminpages/reports/sales.php:53 #: adminpages/reports/sales.php:542 +#: adminpages/reports/sales.php:543 msgid "All Time" msgstr "Desde sempre" @@ -4322,6 +4648,7 @@ msgstr "Relatório de Visitas, Visualizações, e Sessões" #: classes/class-pmpro-members-list-table.php:234 #: classes/class-pmpro-members-list-table.php:233 #: adminpages/reports/login.php:105 +#: adminpages/reports/login.php:111 msgid "All Users" msgstr "Todos os Utilizadors" @@ -4419,6 +4746,7 @@ msgstr "Todos os Cancelamentos" #: adminpages/orders.php:1081 #: adminpages/orders.php:1073 #: adminpages/orders.php:1074 +#: adminpages/orders.php:1162 msgid "This Year" msgstr "Este Ano" @@ -4434,6 +4762,8 @@ msgstr "Este Ano" #: adminpages/reports/sales.php:295 #: adminpages/advancedsettings.php:322 #: adminpages/reports/sales.php:313 +#: adminpages/advancedsettings.php:329 +#: adminpages/reports/memberships.php:332 msgid "Daily" msgstr "Diário" @@ -4449,6 +4779,8 @@ msgstr "Diário" #: adminpages/reports/sales.php:296 #: adminpages/advancedsettings.php:328 #: adminpages/reports/sales.php:314 +#: adminpages/advancedsettings.php:335 +#: adminpages/reports/memberships.php:333 msgid "Monthly" msgstr "Mensal" @@ -4462,11 +4794,13 @@ msgstr "Mensal" #: adminpages/reports/memberships.php:335 #: adminpages/reports/sales.php:297 #: adminpages/reports/sales.php:315 +#: adminpages/reports/memberships.php:334 msgid "Annual" msgstr "Anual" #: adminpages/reports/memberships.php:270 #: adminpages/reports/memberships.php:338 +#: adminpages/reports/memberships.php:337 msgid "Signups vs. All Cancellations" msgstr "Assinaturas vs. Todos os cancelamentos" @@ -4474,11 +4808,13 @@ msgstr "Assinaturas vs. Todos os cancelamentos" #: adminpages/reports/memberships.php:263 #: adminpages/reports/memberships.php:299 #: adminpages/reports/memberships.php:339 +#: adminpages/reports/memberships.php:338 msgid "Signups vs. Cancellations" msgstr "Assinaturas vs. Cancelamentos" #: adminpages/reports/memberships.php:272 #: adminpages/reports/memberships.php:340 +#: adminpages/reports/memberships.php:339 msgid "Signups vs. Expirations" msgstr "Assinaturas vs. Expirações" @@ -4509,6 +4845,8 @@ msgstr "Assinaturas vs. Expirações" #: adminpages/reports/sales.php:314 #: adminpages/reports/sales.php:321 #: adminpages/reports/sales.php:332 +#: adminpages/reports/memberships.php:341 +#: adminpages/reports/memberships.php:352 msgid "for" msgstr "para" @@ -4522,6 +4860,7 @@ msgstr "para" #: adminpages/reports/memberships.php:385 #: adminpages/reports/sales.php:342 #: adminpages/reports/sales.php:360 +#: adminpages/reports/memberships.php:384 msgid "Generate Report" msgstr "Gerar Relatório" @@ -4605,6 +4944,7 @@ msgstr "Preço" #: includes/functions.php:2842 #: includes/functions.php:2873 #: includes/functions.php:2895 +#: includes/functions.php:2897 msgid "Subtotal" msgstr "Subtotal" @@ -4632,6 +4972,7 @@ msgstr "Atualização completa." #: includes/cleanup.php:24 #: classes/class.memberorder.php:959 #: classes/class.memberorder.php:1001 +#: classes/class.memberorder.php:1010 #, php-format msgid "There was an error canceling the subscription for user with ID=%s. You will want to check your payment gateway to see if their subscription is still active." msgstr "Aconteceu um erro ao cancelar a assinatura para o utilizador com ID=%s. Por favor, verifique no gateway de pagamentos se sua assinatura continua ativa." @@ -4669,6 +5010,7 @@ msgstr "A sua assinatura para %s no %s foi CANCELADA" #: classes/class.pmproemail.php:178 #: classes/class.pmproemail.php:269 #: classes/class.pmproemail.php:262 +#: classes/class.pmproemail.php:395 #, php-format msgid "Your membership confirmation for %s" msgstr "Confirmação de assinatura para %s" @@ -4769,6 +5111,18 @@ msgstr "Confirmação de assinatura para %s" #: classes/class.pmproemail.php:764 #: adminpages/orders.php:576 #: adminpages/orders.php:1343 +#: adminpages/orders.php:697 +#: adminpages/orders.php:1437 +#: classes/class.pmproemail.php:465 +#: classes/class.pmproemail.php:471 +#: classes/class.pmproemail.php:477 +#: classes/class.pmproemail.php:567 +#: classes/class.pmproemail.php:573 +#: classes/class.pmproemail.php:895 +#: classes/class.pmproemail.php:897 +#: classes/gateways/class.pmprogateway_braintree.php:516 +#: classes/gateways/class.pmprogateway_stripe.php:906 +#: includes/profile.php:454 msgid "Discount Code" msgstr "Código de Desconto" @@ -4808,6 +5162,11 @@ msgstr "Código de Desconto" #: classes/class.pmproemail.php:771 #: classes/class.pmproemail.php:905 #: classes/class.pmproemail.php:950 +#: classes/class.pmproemail.php:485 +#: classes/class.pmproemail.php:583 +#: classes/class.pmproemail.php:904 +#: classes/class.pmproemail.php:1038 +#: classes/class.pmproemail.php:1083 #, php-format msgid "This membership will expire on %s." msgstr "Esta assinatura vai expirar em %s." @@ -4825,6 +5184,7 @@ msgstr "Checkout para %s em %s" #: classes/class.pmproemail.php:463 #: classes/class.pmproemail.php:475 #: classes/class.pmproemail.php:468 +#: classes/class.pmproemail.php:601 #, php-format msgid "Your billing information has been updated at %s" msgstr "Sua informação de pagamento foi atualizada em %s." @@ -4833,6 +5193,7 @@ msgstr "Sua informação de pagamento foi atualizada em %s." #: classes/class.pmproemail.php:513 #: classes/class.pmproemail.php:525 #: classes/class.pmproemail.php:518 +#: classes/class.pmproemail.php:651 #, php-format msgid "Billing information has been updated for %s at %s" msgstr "Informações de pagamento foram atualizadas para %s em %s" @@ -4880,6 +5241,7 @@ msgstr "Fatura para assinatura no %s" #: classes/class.pmproemail.php:794 #: classes/class.pmproemail.php:806 #: classes/class.pmproemail.php:799 +#: classes/class.pmproemail.php:932 #, php-format msgid "Your trial at %s is ending soon" msgstr "Seu período experimental no %s acabará em breve" @@ -4892,6 +5254,7 @@ msgstr "Seu período experimental no %s acabará em breve" #: classes/class.pmproemail.php:831 #: classes/class.pmproemail.php:843 #: classes/class.pmproemail.php:836 +#: classes/class.pmproemail.php:969 #, php-format msgid "Your membership at %s has ended" msgstr "Sua assinatura no %s terminou" @@ -4904,6 +5267,7 @@ msgstr "Sua assinatura no %s terminou" #: classes/class.pmproemail.php:858 #: classes/class.pmproemail.php:870 #: classes/class.pmproemail.php:863 +#: classes/class.pmproemail.php:996 #, php-format msgid "Your membership at %s will end soon" msgstr "Sua assinatura no %s acabará em breve" @@ -4916,6 +5280,7 @@ msgstr "Sua assinatura no %s acabará em breve" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:900 #: classes/class.pmproemail.php:893 +#: classes/class.pmproemail.php:1026 #, php-format msgid "Your membership at %s has been changed" msgstr "Sua assinatura no %s foi modificada" @@ -4972,6 +5337,7 @@ msgstr "Esta assinatura não expira" #: classes/class.pmproemail.php:933 #: classes/class.pmproemail.php:945 #: classes/class.pmproemail.php:938 +#: classes/class.pmproemail.php:1071 #, php-format msgid "Membership for %s at %s has been changed" msgstr "A assinatura para %s no %s foi modificada" @@ -5075,6 +5441,7 @@ msgstr "Um pagamento parcial foi realizado. Não conseguimos evitar. Por favor c #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:167 +#: paid-memberships-pro.php:173 msgid "Authorize.net" msgstr "Authorize.net" @@ -5141,12 +5508,15 @@ msgstr "Não conseguimos conectar com o Authorize.net" #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:167 #: paid-memberships-pro.php:168 +#: classes/gateways/class.pmprogateway_braintree.php:258 +#: paid-memberships-pro.php:174 msgid "Braintree Payments" msgstr "Pagamentos Braintree" #: classes/gateways/class.pmprogateway_braintree.php:132 #: classes/gateways/class.pmprogateway_braintree.php:119 #: classes/gateways/class.pmprogateway_braintree.php:308 +#: classes/gateways/class.pmprogateway_braintree.php:315 msgid "Braintree Settings" msgstr "Configurações do Braintree" @@ -5160,6 +5530,7 @@ msgstr "Configurações do Braintree" #: classes/gateways/class.pmprogateway_braintree.php:124 #: classes/gateways/class.pmprogateway_braintree.php:313 #: classes/gateways/class.pmprogateway_cybersource.php:94 +#: classes/gateways/class.pmprogateway_braintree.php:320 msgid "Merchant ID" msgstr "Merchant ID (ID de Comerciante)" @@ -5169,6 +5540,7 @@ msgstr "Merchant ID (ID de Comerciante)" #: adminpages/paymentsettings.php:311 #: classes/gateways/class.pmprogateway_braintree.php:132 #: classes/gateways/class.pmprogateway_braintree.php:321 +#: classes/gateways/class.pmprogateway_braintree.php:328 msgid "Public Key" msgstr "Public Key (Chave Pública)" @@ -5178,6 +5550,7 @@ msgstr "Public Key (Chave Pública)" #: adminpages/paymentsettings.php:319 #: classes/gateways/class.pmprogateway_braintree.php:140 #: classes/gateways/class.pmprogateway_braintree.php:329 +#: classes/gateways/class.pmprogateway_braintree.php:336 msgid "Private Key" msgstr "Private Key (Chave Privada)" @@ -5187,6 +5560,7 @@ msgstr "Private Key (Chave Privada)" #: adminpages/paymentsettings.php:327 #: classes/gateways/class.pmprogateway_braintree.php:148 #: classes/gateways/class.pmprogateway_braintree.php:337 +#: classes/gateways/class.pmprogateway_braintree.php:344 msgid "Client-Side Encryption Key" msgstr "Client-Side Encryption Key" @@ -5204,6 +5578,7 @@ msgstr "Client-Side Encryption Key" #: classes/gateways/class.pmprogateway_stripe.php:182 #: classes/gateways/class.pmprogateway_stripe.php:192 #: classes/gateways/class.pmprogateway_braintree.php:345 +#: classes/gateways/class.pmprogateway_braintree.php:352 msgid "Web Hook URL" msgstr "Web Hook URL" @@ -5214,6 +5589,7 @@ msgstr "Web Hook URL" #: adminpages/paymentsettings.php:523 #: classes/gateways/class.pmprogateway_braintree.php:160 #: classes/gateways/class.pmprogateway_braintree.php:348 +#: classes/gateways/class.pmprogateway_braintree.php:355 msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to" msgstr "Para integrar completamente com o Braintree, assegure-se de apontar o seu Web Hook URL para" @@ -5240,6 +5616,9 @@ msgstr "Para integrar completamente com o Braintree, assegure-se de apontar o se #: classes/gateways/class.pmprogateway_stripe.php:1282 #: classes/gateways/class.pmprogateway_stripe.php:1288 #: classes/gateways/class.pmprogateway_stripe.php:747 +#: adminpages/orders.php:676 +#: classes/gateways/class.pmprogateway_braintree.php:461 +#: classes/gateways/class.pmprogateway_stripe.php:855 msgid "Payment Information" msgstr "Informações de Pagamento" @@ -5266,6 +5645,8 @@ msgstr "Informações de Pagamento" #: classes/gateways/class.pmprogateway_stripe.php:1283 #: classes/gateways/class.pmprogateway_stripe.php:1289 #: classes/gateways/class.pmprogateway_stripe.php:748 +#: classes/gateways/class.pmprogateway_braintree.php:462 +#: classes/gateways/class.pmprogateway_stripe.php:856 #, php-format msgid "We Accept %s" msgstr "Aceitamos %s" @@ -5299,6 +5680,8 @@ msgstr "Aceitamos %s" #: classes/gateways/class.pmprogateway_stripe.php:1322 #: classes/gateways/class.pmprogateway_stripe.php:781 #: pages/billing.php:377 +#: classes/gateways/class.pmprogateway_braintree.php:482 +#: classes/gateways/class.pmprogateway_stripe.php:889 msgid "Card Number" msgstr "Número do Cartão" @@ -5325,6 +5708,7 @@ msgstr "Número do Cartão" #: classes/gateways/class.pmprogateway_braintree.php:503 #: pages/billing.php:410 #: pages/billing.php:417 +#: classes/gateways/class.pmprogateway_braintree.php:510 msgid "CVV" msgstr "CVV" @@ -5352,6 +5736,7 @@ msgstr "CVV" #: pages/billing.php:411 #: pages/checkout.php:425 #: pages/billing.php:418 +#: classes/gateways/class.pmprogateway_braintree.php:511 msgid "what's this?" msgstr "o que é isso?" @@ -5384,6 +5769,8 @@ msgstr "o que é isso?" #: classes/gateways/class.pmprogateway_stripe.php:1338 #: classes/gateways/class.pmprogateway_stripe.php:1344 #: classes/gateways/class.pmprogateway_stripe.php:803 +#: classes/gateways/class.pmprogateway_braintree.php:518 +#: classes/gateways/class.pmprogateway_stripe.php:911 msgid "Apply" msgstr "Aplicar" @@ -5399,6 +5786,7 @@ msgstr "Aplicar" #: classes/gateways/class.pmprogateway_stripe.php:1036 #: classes/gateways/class.pmprogateway_stripe.php:1040 #: classes/gateways/class.pmprogateway_braintree.php:574 +#: classes/gateways/class.pmprogateway_braintree.php:581 msgid "Unknown error: Initial payment failed." msgstr "Erro desconhecido: O pagamento inicial falhou." @@ -5408,6 +5796,7 @@ msgstr "Erro desconhecido: O pagamento inicial falhou." #: classes/gateways/class.pmprogateway_braintree.php:478 #: classes/gateways/class.pmprogateway_braintree.php:650 #: classes/gateways/class.pmprogateway_braintree.php:653 +#: classes/gateways/class.pmprogateway_braintree.php:660 msgid "Error during settlement:" msgstr "Erro durante o processamento do pagamento:" @@ -5417,6 +5806,7 @@ msgstr "Erro durante o processamento do pagamento:" #: classes/gateways/class.pmprogateway_braintree.php:487 #: classes/gateways/class.pmprogateway_braintree.php:659 #: classes/gateways/class.pmprogateway_braintree.php:662 +#: classes/gateways/class.pmprogateway_braintree.php:669 msgid "Error during charge:" msgstr "Erro durante a cobrança:" @@ -5427,6 +5817,7 @@ msgstr "Erro durante a cobrança:" #: classes/gateways/class.pmprogateway_braintree.php:579 #: classes/gateways/class.pmprogateway_braintree.php:762 #: classes/gateways/class.pmprogateway_braintree.php:765 +#: classes/gateways/class.pmprogateway_braintree.php:772 msgid "Failed to update customer." msgstr "A atualização de cliente falhou." @@ -5437,6 +5828,7 @@ msgstr "A atualização de cliente falhou." #: classes/gateways/class.pmprogateway_braintree.php:627 #: classes/gateways/class.pmprogateway_braintree.php:810 #: classes/gateways/class.pmprogateway_braintree.php:813 +#: classes/gateways/class.pmprogateway_braintree.php:820 msgid "Failed to create customer." msgstr "Erro ao criar o novo cliente." @@ -5447,6 +5839,7 @@ msgstr "Erro ao criar o novo cliente." #: classes/gateways/class.pmprogateway_braintree.php:634 #: classes/gateways/class.pmprogateway_braintree.php:817 #: classes/gateways/class.pmprogateway_braintree.php:820 +#: classes/gateways/class.pmprogateway_braintree.php:827 msgid "Error creating customer record with Braintree:" msgstr "Erro ao criar cliente no Braintree:" @@ -5496,6 +5889,7 @@ msgstr "Erro na assinatura no Braintree:" #: classes/gateways/class.pmprogateway_stripe.php:423 #: classes/gateways/class.pmprogateway_braintree.php:1036 #: classes/gateways/class.pmprogateway_braintree.php:1039 +#: classes/gateways/class.pmprogateway_braintree.php:1046 msgid "Could not find the subscription." msgstr "Não foi possível encontrar a assinatura." @@ -5513,6 +5907,7 @@ msgstr "Não foi possível encontrar a assinatura." #: paid-memberships-pro.php:158 #: paid-memberships-pro.php:160 #: paid-memberships-pro.php:161 +#: paid-memberships-pro.php:167 msgid "Pay by Check" msgstr "Pagar com Cheque" @@ -5632,6 +6027,7 @@ msgstr "Foi realizado um pagamento parcial que não conseguimos extornar. Contac #: paid-memberships-pro.php:161 #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:164 +#: paid-memberships-pro.php:170 msgid "PayPal Website Payments Pro" msgstr "" @@ -5643,6 +6039,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:141 #: classes/gateways/class.pmprogateway_paypalstandard.php:133 #: classes/gateways/class.pmprogateway_paypalexpress.php:151 +#: classes/gateways/class.pmprogateway_paypalexpress.php:152 msgid "PayPal Settings" msgstr "Configurações do PayPal" @@ -5665,6 +6062,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:162 #: classes/gateways/class.pmprogateway_paypalstandard.php:154 #: classes/gateways/class.pmprogateway_paypalexpress.php:172 +#: classes/gateways/class.pmprogateway_paypalexpress.php:173 msgid "Gateway Account Email" msgstr "E-mail da conta do Gateway de Pagamento" @@ -5685,6 +6083,8 @@ msgstr "E-mail da conta do Gateway de Pagamento" #: classes/gateways/class.pmprogateway_paypalstandard.php:162 #: classes/gateways/class.pmprogateway_twocheckout.php:120 #: classes/gateways/class.pmprogateway_paypalexpress.php:180 +#: classes/gateways/class.pmprogateway_paypalexpress.php:181 +#: classes/gateways/class.pmprogateway_twocheckout.php:127 msgid "API Username" msgstr "API Username (Nome de Utilizador no API)" @@ -5705,6 +6105,8 @@ msgstr "API Username (Nome de Utilizador no API)" #: classes/gateways/class.pmprogateway_paypalstandard.php:170 #: classes/gateways/class.pmprogateway_twocheckout.php:129 #: classes/gateways/class.pmprogateway_paypalexpress.php:188 +#: classes/gateways/class.pmprogateway_paypalexpress.php:189 +#: classes/gateways/class.pmprogateway_twocheckout.php:136 msgid "API Password" msgstr "API Password (Senha no API)" @@ -5719,6 +6121,7 @@ msgstr "API Password (Senha no API)" #: classes/gateways/class.pmprogateway_paypalexpress.php:186 #: classes/gateways/class.pmprogateway_paypalstandard.php:178 #: classes/gateways/class.pmprogateway_paypalexpress.php:196 +#: classes/gateways/class.pmprogateway_paypalexpress.php:197 msgid "API Signature" msgstr "API Signature (Assinatura no API)" @@ -5734,6 +6137,7 @@ msgstr "API Signature (Assinatura no API)" #: classes/gateways/class.pmprogateway_paypalexpress.php:205 #: classes/gateways/class.pmprogateway_paypalstandard.php:186 #: classes/gateways/class.pmprogateway_paypalexpress.php:215 +#: classes/gateways/class.pmprogateway_paypalexpress.php:216 msgid "IPN Handler URL" msgstr "IPN Handler URL" @@ -5761,6 +6165,7 @@ msgstr "" #: pages/checkout.php:218 #: classes/gateways/class.pmprogateway_paypalexpress.php:498 #: classes/gateways/class.pmprogateway_paypalexpress.php:502 +#: classes/gateways/class.pmprogateway_paypalexpress.php:503 msgid "Check Out with PayPal" msgstr "Pagar pelo PayPal" @@ -5783,6 +6188,7 @@ msgstr "Pagar pelo PayPal" #: classes/gateways/class.pmprogateway_paypalexpress.php:503 #: classes/gateways/class.pmprogateway_paypalexpress.php:507 #: pages/checkout.php:538 +#: classes/gateways/class.pmprogateway_paypalexpress.php:508 msgid "Submit and Check Out" msgstr "Enviar e Fazer Checkout" @@ -5809,6 +6215,8 @@ msgstr "Enviar e Fazer Checkout" #: classes/gateways/class.pmprogateway_paypalexpress.php:503 #: classes/gateways/class.pmprogateway_paypalexpress.php:507 #: pages/checkout.php:538 +#: classes/gateways/class.pmprogateway_paypalexpress.php:508 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Submit and Confirm" msgstr "Enviar e Confirmar" @@ -5835,6 +6243,7 @@ msgstr "Enviar e Confirmar" #: classes/gateways/class.pmprogateway_paypalexpress.php:854 #: classes/gateways/class.pmprogateway_paypal.php:726 #: classes/gateways/class.pmprogateway_paypalexpress.php:865 +#: classes/gateways/class.pmprogateway_paypalexpress.php:866 msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward." msgstr "Por favor, entre em contacto com o site ou cancele sua subscrição pelo PayPal para assegurar que não haverá cobranças futuras." @@ -5850,6 +6259,8 @@ msgstr "Por favor, entre em contacto com o site ou cancele sua subscrição pelo #: paid-memberships-pro.php:162 #: classes/gateways/class.pmprogateway_paypalexpress.php:94 #: paid-memberships-pro.php:163 +#: classes/gateways/class.pmprogateway_paypalexpress.php:95 +#: paid-memberships-pro.php:169 msgid "PayPal Express" msgstr "" @@ -5862,6 +6273,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:199 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 #: classes/gateways/class.pmprogateway_paypalexpress.php:218 +#: classes/gateways/class.pmprogateway_paypalexpress.php:219 msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to " msgstr "Para integrar completamente com o Paypal, assegure-se de apontar o seu IPN Handler URL para" @@ -5885,6 +6297,8 @@ msgstr "Para integrar completamente com o Paypal, assegure-se de apontar o seu I #: classes/gateways/class.pmprogateway_paypalexpress.php:401 #: classes/gateways/class.pmprogateway_paypalexpress.php:352 #: classes/gateways/class.pmprogateway_paypalexpress.php:411 +#: classes/gateways/class.pmprogateway_paypalexpress.php:353 +#: classes/gateways/class.pmprogateway_paypalexpress.php:412 msgid "The PayPal Token was lost." msgstr "O Token do PayPal foi perdido." @@ -5898,6 +6312,7 @@ msgstr "O Token do PayPal foi perdido." #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:166 +#: paid-memberships-pro.php:172 msgid "PayPal Standard" msgstr "" @@ -5926,6 +6341,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:258 #: classes/gateways/class.pmprogateway_stripe.php:216 #: paid-memberships-pro.php:162 +#: classes/gateways/class.pmprogateway_stripe.php:234 +#: paid-memberships-pro.php:168 msgid "Stripe" msgstr "" @@ -5948,6 +6365,7 @@ msgstr "Configurações do Stripe" #: classes/gateways/class.pmprogateway_stripe.php:570 #: classes/gateways/class.pmprogateway_stripe.php:576 #: classes/gateways/class.pmprogateway_stripe.php:340 +#: classes/gateways/class.pmprogateway_stripe.php:366 msgid "Secret Key" msgstr "Secret Key (Chave Secreta)" @@ -5963,6 +6381,7 @@ msgstr "Secret Key (Chave Secreta)" #: classes/gateways/class.pmprogateway_stripe.php:554 #: classes/gateways/class.pmprogateway_stripe.php:560 #: classes/gateways/class.pmprogateway_stripe.php:324 +#: classes/gateways/class.pmprogateway_stripe.php:350 msgid "Publishable Key" msgstr "Publishable Key (Chave Publica)" @@ -5978,6 +6397,8 @@ msgstr "Publishable Key (Chave Publica)" #: classes/gateways/class.pmprogateway_stripe.php:629 #: classes/gateways/class.pmprogateway_stripe.php:635 #: classes/gateways/class.pmprogateway_stripe.php:399 +#: adminpages/orders.php:570 +#: classes/gateways/class.pmprogateway_stripe.php:425 msgid "Show Billing Address Fields" msgstr "Mostrar Campos de Endereço da Faturação" @@ -5992,6 +6413,7 @@ msgstr "Mostrar Campos de Endereço da Faturação" #: classes/gateways/class.pmprogateway_stripe.php:638 #: classes/gateways/class.pmprogateway_stripe.php:644 #: classes/gateways/class.pmprogateway_stripe.php:408 +#: classes/gateways/class.pmprogateway_stripe.php:434 msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.
If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "" @@ -6019,6 +6441,7 @@ msgstr "Para integrar completamente com o Stripe, assegure-se de apontar o seu W #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "Atualizações de subscrições" @@ -6068,6 +6491,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2653 #: classes/gateways/class.pmprogateway_stripe.php:2649 #: pages/billing.php:441 +#: classes/gateways/class.pmprogateway_stripe.php:3106 msgid "Update" msgstr "Atualizar" @@ -6084,6 +6508,7 @@ msgstr "Atualizar" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "Não foi possível cancelar a assinatura antiga. Atualizações não foram processadas." @@ -6132,6 +6557,8 @@ msgstr "Erro ao criar o cliente no Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "Erro ao fazer subscrição com o Stripe:" @@ -6171,6 +6598,8 @@ msgstr "Erro ao fazer subscrição com o Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "Erro ao criar o plano no Stripe:" @@ -6205,6 +6634,8 @@ msgstr "Erro ao criar o plano no Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "Erro ao associar cliente ao plano no Stripe:" @@ -6226,6 +6657,7 @@ msgstr "Erro ao associar cliente ao plano no Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "Não foi possível cancelar a assinatura antiga." @@ -6244,6 +6676,7 @@ msgstr "Não foi possível cancelar a assinatura antiga." #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "Cliente não encontrado." @@ -6255,6 +6688,7 @@ msgstr "Cliente não encontrado." #: paid-memberships-pro.php:125 #: paid-memberships-pro.php:132 #: paid-memberships-pro.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "2Checkout" @@ -6262,24 +6696,28 @@ msgstr "2Checkout" #: classes/gateways/class.pmprogateway_twocheckout.php:108 #: classes/gateways/class.pmprogateway_twocheckout.php:116 #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "Configurações do 2Checkout" #: classes/gateways/class.pmprogateway_twocheckout.php:123 #: classes/gateways/class.pmprogateway_twocheckout.php:125 #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:132 #: classes/gateways/class.pmprogateway_twocheckout.php:134 #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "Senha criada para o utilizador de API." #: classes/gateways/class.pmprogateway_twocheckout.php:141 #: classes/gateways/class.pmprogateway_twocheckout.php:152 #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "" @@ -6289,12 +6727,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:137 #: classes/gateways/class.pmprogateway_twocheckout.php:157 #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "Palavra Secreta" #: classes/gateways/class.pmprogateway_twocheckout.php:150 #: classes/gateways/class.pmprogateway_twocheckout.php:161 #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "" @@ -6305,12 +6745,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:145 #: classes/gateways/class.pmprogateway_twocheckout.php:166 #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:158 #: classes/gateways/class.pmprogateway_twocheckout.php:169 #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "" @@ -6318,6 +6760,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:192 #: classes/gateways/class.pmprogateway_twocheckout.php:214 #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "" @@ -7298,6 +7741,7 @@ msgstr "e" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "Registe-se em !!name!!" @@ -7344,6 +7788,9 @@ msgstr "Por favor, especifique um id de tipo de assinatura." #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "Nenhum" @@ -7355,6 +7802,7 @@ msgstr "Sua chave de licença foi validada." #: includes/license.php:81 #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "Licença de suporte do Paid Memberships Pro" @@ -7375,6 +7823,7 @@ msgstr "" #: adminpages/license.php:49 #: adminpages/dashboard.php:178 #: adminpages/license.php:41 +#: adminpages/license.php:53 msgid "Your license is invalid or expired." msgstr "Sua licença está inválida ou expirada." @@ -7387,6 +7836,7 @@ msgstr "

Obrigado! Uma %s licença válida f #: adminpages/license.php:59 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "Entre com a chave de licença aqui..." @@ -7500,6 +7950,8 @@ msgstr "Tipo Atual" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "Sem pagamento." @@ -7604,6 +8056,9 @@ msgstr "SAIR" #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "Tipo" @@ -7670,6 +8125,7 @@ msgstr "Os pagamentos recorrentes são controlados pelo Paypal. Por favor Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -9466,93 +9963,111 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -9578,6 +10093,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -9648,6 +10164,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -9753,6 +10270,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -9791,6 +10309,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -9803,31 +10322,39 @@ msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 msgid "%d discount codes found." msgstr "" @@ -9853,6 +10380,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -9871,6 +10405,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -9879,15 +10419,18 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -9928,192 +10471,241 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:960 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:170 #: includes/privacy.php:363 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -10131,6 +10723,7 @@ msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -10138,14 +10731,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -10162,27 +10758,34 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -10192,6 +10795,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -10199,6 +10804,7 @@ msgstr "" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -10206,6 +10812,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -10213,6 +10820,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -10220,6 +10828,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -10227,6 +10836,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -10234,6 +10844,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -10272,78 +10883,91 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -10353,12 +10977,15 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -10366,18 +10993,21 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" @@ -10387,11 +11017,13 @@ msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" @@ -10401,6 +11033,7 @@ msgstr "" #: adminpages/paymentsettings.php:260 #: adminpages/paymentsettings.php:273 +#: adminpages/paymentsettings.php:271 msgid "Your Site URL starts with https:// and so PMPro will allow your entire site to be served over HTTPS." msgstr "" @@ -10432,6 +11065,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -10442,6 +11076,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -10484,21 +11119,25 @@ msgid "Logins This Year" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -10657,51 +11296,63 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:962 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -10714,6 +11365,8 @@ msgstr "" #: includes/email.php:465 #: classes/class.pmproemail.php:898 #: classes/class.pmproemail.php:943 +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 msgid "The new level is %s." msgstr "" @@ -10726,30 +11379,36 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -10761,14 +11420,17 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:91 #: classes/gateways/class.pmprogateway_stripe.php:97 #: classes/gateways/class.pmprogateway_stripe.php:1353 +#: classes/gateways/class.pmprogateway_stripe.php:1478 msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" @@ -10782,21 +11444,30 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:750 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -10804,11 +11475,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -11086,17 +11760,20 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:185 #: classes/gateways/class.pmprogateway_paypalexpress.php:194 #: classes/gateways/class.pmprogateway_paypalexpress.php:204 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 msgid "Confirmation Step" msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -11105,6 +11782,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -11113,6 +11791,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -11128,6 +11807,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -11136,6 +11816,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -11147,6 +11828,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -11158,6 +11840,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -11169,6 +11852,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -11177,6 +11861,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -11188,6 +11873,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -11199,6 +11885,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -11207,6 +11894,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -11218,6 +11906,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -11226,6 +11915,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -11249,6 +11939,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -11265,6 +11957,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -11273,6 +11967,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -11281,6 +11976,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -11289,6 +11985,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -11296,6 +11993,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -11304,6 +12002,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -11317,6 +12016,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -11325,6 +12026,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -11333,6 +12035,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -11342,6 +12045,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -11359,6 +12064,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -11367,6 +12074,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -11388,6 +12096,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -11396,6 +12106,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -11404,6 +12115,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -11412,6 +12124,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -11420,6 +12133,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -11428,6 +12142,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -11436,6 +12151,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -11444,6 +12160,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -11452,6 +12169,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -11460,6 +12178,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -11468,6 +12187,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -11480,6 +12200,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -11488,6 +12209,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -11496,6 +12218,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -11504,6 +12227,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -11512,6 +12236,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -11555,6 +12280,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "" @@ -11566,6 +12293,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 msgid "Error: Unkown error while refunding charge #%s" msgstr "" @@ -11575,6 +12303,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -11595,6 +12324,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -11603,6 +12336,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -11612,6 +12346,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -11621,6 +12356,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -11632,6 +12368,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -11643,6 +12380,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -11654,6 +12392,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -11665,6 +12404,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" @@ -11699,6 +12439,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -11711,6 +12452,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -11723,6 +12465,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -13513,14 +14256,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -13529,18 +14275,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -13552,6 +14302,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -13684,6 +14435,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -13797,6 +14549,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -13804,6 +14557,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -13835,6 +14589,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -13844,6 +14599,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -13851,6 +14607,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -13950,6 +14707,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -13957,6 +14716,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -13964,6 +14724,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -13971,6 +14732,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -14042,126 +14804,148 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -14173,6 +14957,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -14270,6 +15057,7 @@ msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -14295,6 +15083,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -14333,6 +15122,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -14348,6 +15152,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -14363,6 +15168,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -14395,6 +15201,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -14407,6 +15214,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -14432,11 +15240,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -14444,6 +15257,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -14451,6 +15265,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -14473,6 +15288,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -14498,6 +15314,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -14505,6 +15322,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -14537,6 +15355,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -14559,6 +15378,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -14569,11 +15389,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -14593,6 +15424,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -14606,6 +15438,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -14615,6 +15448,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -14624,10 +15458,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -14638,6 +15474,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -14645,6 +15482,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -14654,6 +15492,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -14663,12 +15502,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -14676,6 +15518,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -14684,6 +15528,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -14691,6 +15536,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -14698,22 +15544,26 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -14771,12 +15621,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -14786,6 +15638,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -14795,6 +15648,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -14804,54 +15658,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -14862,42 +15726,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -14912,51 +15786,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -14964,6 +15850,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -14971,6 +15858,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -14978,6 +15866,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -14986,6 +15875,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -14999,6 +15890,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -15019,19 +15911,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -15041,31 +15937,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -15091,21 +15995,25 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" @@ -15175,26 +16083,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -15203,51 +16117,62 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -15261,19 +16186,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -15304,3 +16233,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-sk_SK.mo b/languages/paid-memberships-pro-sk_SK.mo index 6ec2c677d..c9380dbe0 100644 Binary files a/languages/paid-memberships-pro-sk_SK.mo and b/languages/paid-memberships-pro-sk_SK.mo differ diff --git a/languages/paid-memberships-pro-sk_SK.po b/languages/paid-memberships-pro-sk_SK.po index 6c34826a8..2461a33b0 100644 --- a/languages/paid-memberships-pro-sk_SK.po +++ b/languages/paid-memberships-pro-sk_SK.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:21:09+00:00\n" +"POT-Creation-Date: 2022-05-05T20:37:46+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -216,6 +216,11 @@ msgstr "" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "" @@ -243,6 +248,7 @@ msgstr "" #: adminpages/advancedsettings.php:35 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "" @@ -260,6 +266,7 @@ msgstr "" #: adminpages/advancedsettings.php:116 #: includes/updates/upgrade_1.php:13 #: adminpages/advancedsettings.php:118 +#: adminpages/advancedsettings.php:126 msgid "This content is for members only. Visit the site and log in/register to read." msgstr "" @@ -272,6 +279,7 @@ msgstr "" #: adminpages/advancedsettings.php:132 #: includes/adminpages.php:73 #: adminpages/advancedsettings.php:134 +#: adminpages/advancedsettings.php:142 msgid "Advanced Settings" msgstr "" @@ -280,6 +288,7 @@ msgstr "" #: adminpages/advancedsettings.php:85 #: adminpages/advancedsettings.php:164 #: adminpages/advancedsettings.php:166 +#: adminpages/advancedsettings.php:173 msgid "Message for Logged-in Non-members" msgstr "" @@ -288,6 +297,7 @@ msgstr "" #: adminpages/advancedsettings.php:89 #: adminpages/advancedsettings.php:168 #: adminpages/advancedsettings.php:170 +#: adminpages/advancedsettings.php:177 msgid "This message replaces the post content for non-members. Available variables" msgstr "" @@ -296,6 +306,7 @@ msgstr "" #: adminpages/advancedsettings.php:94 #: adminpages/advancedsettings.php:173 #: adminpages/advancedsettings.php:175 +#: adminpages/advancedsettings.php:182 msgid "Message for Logged-out Users" msgstr "" @@ -304,6 +315,7 @@ msgstr "" #: adminpages/advancedsettings.php:98 #: adminpages/advancedsettings.php:177 #: adminpages/advancedsettings.php:179 +#: adminpages/advancedsettings.php:186 msgid "This message replaces the post content for logged-out visitors." msgstr "" @@ -312,6 +324,7 @@ msgstr "" #: adminpages/advancedsettings.php:103 #: adminpages/advancedsettings.php:182 #: adminpages/advancedsettings.php:184 +#: adminpages/advancedsettings.php:191 msgid "Message for RSS Feed" msgstr "" @@ -320,6 +333,7 @@ msgstr "" #: adminpages/advancedsettings.php:107 #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "This message replaces the post content in RSS feeds." msgstr "" @@ -328,6 +342,7 @@ msgstr "" #: adminpages/advancedsettings.php:113 #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:212 +#: adminpages/advancedsettings.php:219 msgid "Show Excerpts to Non-Members?" msgstr "" @@ -336,6 +351,7 @@ msgstr "" #: adminpages/advancedsettings.php:117 #: adminpages/advancedsettings.php:214 #: adminpages/advancedsettings.php:216 +#: adminpages/advancedsettings.php:223 msgid "No - Hide excerpts." msgstr "" @@ -344,6 +360,7 @@ msgstr "" #: adminpages/advancedsettings.php:118 #: adminpages/advancedsettings.php:215 #: adminpages/advancedsettings.php:217 +#: adminpages/advancedsettings.php:224 msgid "Yes - Show excerpts." msgstr "" @@ -393,6 +410,16 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:404 #: classes/gateways/class.pmprogateway_stripe.php:418 #: adminpages/paymentsettings.php:279 +#: adminpages/advancedsettings.php:254 +#: adminpages/advancedsettings.php:267 +#: adminpages/advancedsettings.php:359 +#: adminpages/advancedsettings.php:418 +#: adminpages/advancedsettings.php:526 +#: adminpages/membershiplevels.php:939 +#: adminpages/paymentsettings.php:277 +#: classes/gateways/class.pmprogateway_stripe.php:430 +#: classes/gateways/class.pmprogateway_stripe.php:444 +#: includes/profile.php:78 msgid "No" msgstr "" @@ -401,6 +428,7 @@ msgstr "" #: adminpages/advancedsettings.php:129 #: adminpages/advancedsettings.php:338 #: adminpages/advancedsettings.php:353 +#: adminpages/advancedsettings.php:360 msgid "Hide Ads From All Members" msgstr "" @@ -409,6 +437,7 @@ msgstr "" #: adminpages/advancedsettings.php:130 #: adminpages/advancedsettings.php:339 #: adminpages/advancedsettings.php:354 +#: adminpages/advancedsettings.php:361 msgid "Hide Ads From Certain Members" msgstr "" @@ -423,6 +452,7 @@ msgstr "" #: adminpages/advancedsettings.php:138 #: adminpages/advancedsettings.php:346 #: adminpages/advancedsettings.php:361 +#: adminpages/advancedsettings.php:368 msgid "To hide ads in your template code, use code like the following" msgstr "" @@ -431,6 +461,7 @@ msgstr "" #: adminpages/advancedsettings.php:149 #: adminpages/advancedsettings.php:355 #: adminpages/advancedsettings.php:370 +#: adminpages/advancedsettings.php:377 msgid "Choose Levels to Hide Ads From" msgstr "" @@ -449,6 +480,7 @@ msgstr "" #: adminpages/advancedsettings.php:390 #: adminpages/advancedsettings.php:392 #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "multisite only" msgstr "" @@ -489,6 +521,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:406 #: classes/gateways/class.pmprogateway_stripe.php:420 #: adminpages/paymentsettings.php:280 +#: adminpages/advancedsettings.php:419 +#: adminpages/membershiplevels.php:934 +#: adminpages/paymentsettings.php:278 +#: classes/gateways/class.pmprogateway_stripe.php:432 +#: classes/gateways/class.pmprogateway_stripe.php:446 +#: includes/profile.php:79 msgid "Yes" msgstr "" @@ -497,6 +535,7 @@ msgstr "" #: adminpages/advancedsettings.php:195 #: adminpages/advancedsettings.php:241 #: adminpages/advancedsettings.php:256 +#: adminpages/advancedsettings.php:263 msgid "Use reCAPTCHA?" msgstr "" @@ -512,6 +551,7 @@ msgstr "" #: adminpages/advancedsettings.php:201 #: adminpages/advancedsettings.php:247 #: adminpages/advancedsettings.php:262 +#: adminpages/advancedsettings.php:269 msgid "Yes - All memberships." msgstr "" @@ -520,6 +560,7 @@ msgstr "" #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "A free reCAPTCHA key is required." msgstr "" @@ -528,6 +569,7 @@ msgstr "" #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "Click here to signup for reCAPTCHA" msgstr "" @@ -548,6 +590,7 @@ msgstr "" #: adminpages/advancedsettings.php:218 #: adminpages/advancedsettings.php:229 #: adminpages/advancedsettings.php:231 +#: adminpages/advancedsettings.php:238 msgid "Require Terms of Service on signups?" msgstr "" @@ -556,6 +599,7 @@ msgstr "" #: adminpages/advancedsettings.php:225 #: adminpages/advancedsettings.php:236 #: adminpages/advancedsettings.php:238 +#: adminpages/advancedsettings.php:245 msgid "If yes, create a WordPress page containing your TOS agreement and assign it using the dropdown above." msgstr "" @@ -581,6 +625,9 @@ msgstr "Vybraté" #: adminpages/pagesettings.php:508 #: adminpages/pagesettings.php:512 #: adminpages/paymentsettings.php:316 +#: adminpages/advancedsettings.php:574 +#: adminpages/pagesettings.php:511 +#: adminpages/paymentsettings.php:314 msgid "Save Settings" msgstr "" @@ -659,6 +706,7 @@ msgstr "" #: adminpages/discountcodes.php:796 #: adminpages/discountcodes.php:354 #: adminpages/discountcodes.php:798 +#: adminpages/discountcodes.php:799 msgid "Code not found." msgstr "" @@ -679,6 +727,7 @@ msgstr "" #: adminpages/discountcodes.php:735 #: adminpages/discountcodes.php:377 #: adminpages/discountcodes.php:737 +#: adminpages/discountcodes.php:738 msgid "Add New Discount Code" msgstr "" @@ -714,6 +763,8 @@ msgstr "" #: adminpages/reports/login.php:182 #: adminpages/templates/orders-email.php:49 #: adminpages/templates/orders-print.php:78 +#: adminpages/membershiplevels.php:345 +#: adminpages/membershiplevels.php:805 msgid "ID" msgstr "" @@ -753,6 +804,9 @@ msgstr "" #: adminpages/dashboard.php:292 #: adminpages/orders.php:429 #: adminpages/orders.php:1333 +#: adminpages/discountcodes.php:787 +#: adminpages/orders.php:475 +#: adminpages/orders.php:1426 msgid "Code" msgstr "" @@ -766,6 +820,7 @@ msgstr "" #: adminpages/discountcodes.php:489 #: includes/profile.php:501 #: includes/profile.php:497 +#: includes/profile.php:537 msgid "Start Date" msgstr "" @@ -788,6 +843,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1326 #: classes/gateways/class.pmprogateway_stripe.php:785 #: pages/billing.php:381 +#: classes/gateways/class.pmprogateway_braintree.php:486 +#: classes/gateways/class.pmprogateway_stripe.php:893 msgid "Expiration Date" msgstr "" @@ -800,6 +857,7 @@ msgstr "" #: adminpages/discountcodes.php:787 #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:789 +#: adminpages/discountcodes.php:790 msgid "Uses" msgstr "" @@ -823,6 +881,7 @@ msgstr "" #: adminpages/discountcodes.php:574 #: adminpages/membershiplevels.php:401 #: adminpages/discountcodes.php:576 +#: adminpages/membershiplevels.php:399 msgid "Initial Payment" msgstr "Úvodná platba" @@ -834,6 +893,7 @@ msgstr "Úvodná platba" #: adminpages/discountcodes.php:585 #: adminpages/membershiplevels.php:412 #: adminpages/discountcodes.php:587 +#: adminpages/membershiplevels.php:410 msgid "The initial amount collected at registration." msgstr "" @@ -845,6 +905,7 @@ msgstr "" #: adminpages/discountcodes.php:590 #: adminpages/membershiplevels.php:417 #: adminpages/discountcodes.php:592 +#: adminpages/membershiplevels.php:415 msgid "Recurring Subscription" msgstr "" @@ -856,6 +917,7 @@ msgstr "" #: adminpages/discountcodes.php:591 #: adminpages/membershiplevels.php:418 #: adminpages/discountcodes.php:593 +#: adminpages/membershiplevels.php:416 msgid "Check if this level has a recurring subscription payment." msgstr "" @@ -866,6 +928,7 @@ msgstr "" #: adminpages/discountcodes.php:595 #: adminpages/membershiplevels.php:422 #: adminpages/discountcodes.php:597 +#: adminpages/membershiplevels.php:420 msgid "Billing Amount" msgstr "" @@ -889,6 +952,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2637 #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2635 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3092 msgid "Day(s)" msgstr "" @@ -912,6 +979,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2641 #: classes/gateways/class.pmprogateway_stripe.php:2637 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3094 msgid "Month(s)" msgstr "" @@ -935,6 +1006,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2638 #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2636 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3093 msgid "Week(s)" msgstr "" @@ -958,6 +1033,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2642 #: classes/gateways/class.pmprogateway_stripe.php:2638 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3095 msgid "Year(s)" msgstr "" @@ -969,6 +1048,7 @@ msgstr "" #: adminpages/discountcodes.php:618 #: adminpages/membershiplevels.php:446 #: adminpages/discountcodes.php:620 +#: adminpages/membershiplevels.php:444 msgid "The amount to be billed one cycle after the initial payment." msgstr "" @@ -980,6 +1060,7 @@ msgstr "" #: adminpages/discountcodes.php:628 #: adminpages/membershiplevels.php:465 #: adminpages/discountcodes.php:630 +#: adminpages/membershiplevels.php:463 msgid "Billing Cycle Limit" msgstr "" @@ -991,6 +1072,7 @@ msgstr "" #: adminpages/discountcodes.php:632 #: adminpages/membershiplevels.php:469 #: adminpages/discountcodes.php:634 +#: adminpages/membershiplevels.php:467 msgid "The total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "" @@ -1002,6 +1084,8 @@ msgstr "" #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "" @@ -1014,6 +1098,8 @@ msgstr "" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "" @@ -1026,6 +1112,7 @@ msgstr "" #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "" @@ -1038,6 +1125,7 @@ msgstr "" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "" @@ -1050,6 +1138,7 @@ msgstr "" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "" @@ -1062,6 +1151,7 @@ msgstr "" #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "" @@ -1073,6 +1163,7 @@ msgstr "" #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "" @@ -1086,6 +1177,8 @@ msgstr "" #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "" @@ -1097,6 +1190,8 @@ msgstr "" #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "" @@ -1105,6 +1200,7 @@ msgstr "" #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "" @@ -1113,6 +1209,7 @@ msgstr "" #: adminpages/discountcodes.php:535 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "" @@ -1122,6 +1219,7 @@ msgstr "" #: adminpages/discountcodes.php:538 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "" @@ -1130,6 +1228,7 @@ msgstr "" #: adminpages/discountcodes.php:549 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "" @@ -1151,6 +1250,8 @@ msgstr "" #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "" @@ -1160,6 +1261,7 @@ msgstr "" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "" @@ -1188,6 +1290,7 @@ msgstr "" #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "" @@ -1228,6 +1331,7 @@ msgstr "" #: adminpages/emailsettings.php:70 #: adminpages/emailsettings.php:61 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "" @@ -1241,6 +1345,7 @@ msgstr "" #: adminpages/emailsettings.php:78 #: adminpages/emailsettings.php:69 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "" @@ -1248,11 +1353,13 @@ msgstr "" #: adminpages/emailsettings.php:86 #: adminpages/emailsettings.php:77 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "" #: adminpages/emailsettings.php:94 #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "" @@ -1417,6 +1524,8 @@ msgstr "" #: adminpages/reports/history.php:184 #: adminpages/reports/login.php:181 #: adminpages/reports/login.php:184 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 msgid "Name" msgstr "" @@ -1425,6 +1534,7 @@ msgstr "" #: adminpages/membershiplevels.php:296 #: adminpages/addons.php:111 #: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "" @@ -1432,6 +1542,7 @@ msgstr "" #: adminpages/membershiplevels.php:316 #: adminpages/membershiplevels.php:314 #: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "" @@ -1440,6 +1551,8 @@ msgstr "" #: adminpages/membershiplevels.php:333 #: adminpages/membershiplevels.php:397 #: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "" @@ -1457,6 +1570,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2696 #: classes/gateways/class.pmprogateway_stripe.php:2698 #: classes/gateways/class.pmprogateway_stripe.php:2694 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "za" @@ -1471,6 +1586,7 @@ msgstr "" #: adminpages/discountcodes.php:620 #: adminpages/membershiplevels.php:448 #: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:446 msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." msgstr "" @@ -1484,6 +1600,7 @@ msgstr "" #: adminpages/membershiplevels.php:374 #: adminpages/membershiplevels.php:372 #: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." msgstr "" @@ -1497,6 +1614,8 @@ msgstr "" #: adminpages/membershiplevels.php:454 #: adminpages/membershiplevels.php:459 #: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 msgid "Note" msgstr "" @@ -1512,6 +1631,7 @@ msgstr "" #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "" @@ -1521,6 +1641,8 @@ msgstr "" #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "" @@ -1531,6 +1653,7 @@ msgstr "" #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "" @@ -1541,6 +1664,7 @@ msgstr "" #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "" @@ -1551,6 +1675,7 @@ msgstr "" #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "" @@ -1562,6 +1687,7 @@ msgstr "" #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "" @@ -1588,6 +1714,8 @@ msgstr "" #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "" @@ -1596,6 +1724,7 @@ msgstr "" #: adminpages/membershiplevels.php:461 #: adminpages/membershiplevels.php:467 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "" @@ -1648,6 +1777,8 @@ msgstr "" #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "" @@ -1656,6 +1787,7 @@ msgstr "" #: adminpages/membershiplevels.php:511 #: adminpages/membershiplevels.php:517 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "" @@ -1665,6 +1797,7 @@ msgstr "" #: adminpages/membershiplevels.php:540 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "" @@ -1695,6 +1828,8 @@ msgstr "" #: adminpages/reports/sales.php:314 #: adminpages/reports/sales.php:321 #: adminpages/reports/sales.php:332 +#: adminpages/reports/memberships.php:341 +#: adminpages/reports/memberships.php:352 msgid "for" msgstr "" @@ -1704,6 +1839,7 @@ msgstr "" #: adminpages/membershiplevels.php:566 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "" @@ -1732,6 +1868,7 @@ msgstr "" #: includes/adminpages.php:15 #: includes/adminpages.php:74 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "" @@ -1744,6 +1881,8 @@ msgstr "" #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "" @@ -1767,6 +1906,8 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "" @@ -1791,6 +1932,8 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "" @@ -1814,6 +1957,8 @@ msgstr "" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "" @@ -1843,6 +1988,8 @@ msgstr "" #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "Používateľské meno" @@ -1877,6 +2024,7 @@ msgstr "" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "" @@ -1922,6 +2070,8 @@ msgstr "" #: includes/profile.php:515 #: includes/profile.php:511 #: adminpages/advancedsettings.php:331 +#: adminpages/advancedsettings.php:338 +#: includes/profile.php:551 msgid "Never" msgstr "" @@ -1975,6 +2125,7 @@ msgstr "" #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "" @@ -1990,6 +2141,7 @@ msgstr "" #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "" @@ -2002,6 +2154,7 @@ msgstr "" #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "" @@ -2011,6 +2164,7 @@ msgstr "" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "" @@ -2020,6 +2174,7 @@ msgstr "" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "" @@ -2029,6 +2184,7 @@ msgstr "" #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "" @@ -2039,6 +2195,8 @@ msgstr "" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "" @@ -2049,6 +2207,7 @@ msgstr "" #: includes/privacy.php:245 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "" @@ -2059,6 +2218,7 @@ msgstr "" #: includes/privacy.php:249 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "" @@ -2070,6 +2230,7 @@ msgstr "" #: includes/privacy.php:358 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "" @@ -2080,6 +2241,7 @@ msgstr "" #: includes/privacy.php:257 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "" @@ -2092,6 +2254,7 @@ msgstr "" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "" @@ -2104,6 +2267,7 @@ msgstr "" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "" @@ -2115,6 +2279,7 @@ msgstr "" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "" @@ -2126,6 +2291,7 @@ msgstr "" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "" @@ -2142,6 +2308,8 @@ msgstr "" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "" @@ -2153,6 +2321,7 @@ msgstr "" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "" @@ -2178,6 +2347,9 @@ msgstr "" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "" @@ -2195,6 +2367,7 @@ msgstr "" #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "" @@ -2205,6 +2378,7 @@ msgstr "" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "" @@ -2230,6 +2404,9 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "" @@ -2240,6 +2417,7 @@ msgstr "" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "" @@ -2254,6 +2432,8 @@ msgstr "" #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "" @@ -2263,6 +2443,7 @@ msgstr "" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "" @@ -2276,6 +2457,7 @@ msgstr "" #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "" @@ -2313,6 +2495,10 @@ msgstr "" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "" @@ -2331,6 +2517,9 @@ msgstr "" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "" @@ -2340,6 +2529,7 @@ msgstr "" #: paid-memberships-pro.php:157 #: paid-memberships-pro.php:159 #: paid-memberships-pro.php:160 +#: paid-memberships-pro.php:166 msgid "Testing Only" msgstr "" @@ -2352,6 +2542,7 @@ msgstr "" #: paid-memberships-pro.php:158 #: paid-memberships-pro.php:160 #: paid-memberships-pro.php:161 +#: paid-memberships-pro.php:167 msgid "Pay by Check" msgstr "" @@ -2367,6 +2558,8 @@ msgstr "" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "" @@ -2385,6 +2578,9 @@ msgstr "" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "" @@ -2403,6 +2599,9 @@ msgstr "" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "" @@ -2413,6 +2612,7 @@ msgstr "" #: includes/privacy.php:321 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "" @@ -2422,6 +2622,7 @@ msgstr "" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "" @@ -2434,6 +2635,8 @@ msgstr "" #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "" @@ -2444,6 +2647,7 @@ msgstr "" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "" @@ -2469,6 +2673,8 @@ msgstr "" #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "" @@ -2479,6 +2685,7 @@ msgstr "" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "" @@ -2489,6 +2696,7 @@ msgstr "" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "" @@ -2499,6 +2707,7 @@ msgstr "" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "" @@ -2509,6 +2718,7 @@ msgstr "" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "" @@ -2535,6 +2745,11 @@ msgstr "" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "" @@ -2555,6 +2770,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "" @@ -2565,6 +2782,7 @@ msgstr "" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "" @@ -2575,6 +2793,7 @@ msgstr "" #: adminpages/orders.php:1014 #: includes/metaboxes.php:19 #: adminpages/orders.php:1015 +#: adminpages/orders.php:1103 msgid "All" msgstr "" @@ -2583,6 +2802,7 @@ msgstr "" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "" @@ -2591,6 +2811,7 @@ msgstr "" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "" @@ -2599,6 +2820,7 @@ msgstr "" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "" @@ -2607,6 +2829,7 @@ msgstr "" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "" @@ -2615,6 +2838,7 @@ msgstr "" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "" @@ -2623,6 +2847,7 @@ msgstr "" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "" @@ -2631,6 +2856,7 @@ msgstr "" #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "" @@ -2639,6 +2865,7 @@ msgstr "" #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "" @@ -2655,6 +2882,8 @@ msgstr "" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "" @@ -2665,6 +2894,8 @@ msgstr "" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "" @@ -2684,6 +2915,7 @@ msgstr "" #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "" @@ -2716,6 +2948,8 @@ msgstr "" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "Úroveň členstva" @@ -2732,6 +2966,7 @@ msgstr "Úroveň členstva" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "" @@ -2742,6 +2977,7 @@ msgstr "" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "" @@ -2763,6 +2999,8 @@ msgstr "" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "" @@ -2773,6 +3011,7 @@ msgstr "" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "" @@ -2784,6 +3023,7 @@ msgstr "" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "" @@ -2799,6 +3039,7 @@ msgstr "" #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "" @@ -2871,6 +3112,7 @@ msgstr "" #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "" @@ -2880,6 +3122,7 @@ msgstr "" #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "" @@ -2889,6 +3132,7 @@ msgstr "" #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "" @@ -2898,6 +3142,7 @@ msgstr "" #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "" @@ -2950,6 +3195,16 @@ msgstr "" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "" @@ -2995,6 +3250,16 @@ msgstr "" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:246 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "" @@ -3039,6 +3304,13 @@ msgstr "" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:248 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "" @@ -3049,6 +3321,7 @@ msgstr "" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "" @@ -3059,6 +3332,7 @@ msgstr "" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "" @@ -3069,6 +3343,7 @@ msgstr "" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "" @@ -3079,6 +3354,7 @@ msgstr "" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "" @@ -3089,6 +3365,7 @@ msgstr "" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "" @@ -3099,6 +3376,7 @@ msgstr "" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "" @@ -3118,6 +3396,7 @@ msgstr "" #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "" @@ -3127,6 +3406,7 @@ msgstr "" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "" @@ -3180,6 +3460,7 @@ msgstr "Heslo" #: classes/gateways/class.pmprogateway_paypalexpress.php:162 #: classes/gateways/class.pmprogateway_paypalstandard.php:154 #: classes/gateways/class.pmprogateway_paypalexpress.php:172 +#: classes/gateways/class.pmprogateway_paypalexpress.php:173 msgid "Gateway Account Email" msgstr "" @@ -3194,6 +3475,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalstandard.php:162 #: classes/gateways/class.pmprogateway_twocheckout.php:120 #: classes/gateways/class.pmprogateway_paypalexpress.php:180 +#: classes/gateways/class.pmprogateway_paypalexpress.php:181 +#: classes/gateways/class.pmprogateway_twocheckout.php:127 msgid "API Username" msgstr "" @@ -3208,6 +3491,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalstandard.php:170 #: classes/gateways/class.pmprogateway_twocheckout.php:129 #: classes/gateways/class.pmprogateway_paypalexpress.php:188 +#: classes/gateways/class.pmprogateway_paypalexpress.php:189 +#: classes/gateways/class.pmprogateway_twocheckout.php:136 msgid "API Password" msgstr "" @@ -3219,6 +3504,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:186 #: classes/gateways/class.pmprogateway_paypalstandard.php:178 #: classes/gateways/class.pmprogateway_paypalexpress.php:196 +#: classes/gateways/class.pmprogateway_paypalexpress.php:197 msgid "API Signature" msgstr "" @@ -3247,6 +3533,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:570 #: classes/gateways/class.pmprogateway_stripe.php:576 #: classes/gateways/class.pmprogateway_stripe.php:340 +#: classes/gateways/class.pmprogateway_stripe.php:366 msgid "Secret Key" msgstr "" @@ -3259,6 +3546,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:554 #: classes/gateways/class.pmprogateway_stripe.php:560 #: classes/gateways/class.pmprogateway_stripe.php:324 +#: classes/gateways/class.pmprogateway_stripe.php:350 msgid "Publishable Key" msgstr "" @@ -3270,6 +3558,7 @@ msgstr "" #: adminpages/paymentsettings.php:364 #: classes/gateways/class.pmprogateway_braintree.php:313 #: classes/gateways/class.pmprogateway_cybersource.php:94 +#: classes/gateways/class.pmprogateway_braintree.php:320 msgid "Merchant ID" msgstr "" @@ -3278,6 +3567,7 @@ msgstr "" #: adminpages/paymentsettings.php:302 #: adminpages/paymentsettings.php:306 #: classes/gateways/class.pmprogateway_braintree.php:321 +#: classes/gateways/class.pmprogateway_braintree.php:328 msgid "Public Key" msgstr "" @@ -3286,6 +3576,7 @@ msgstr "" #: adminpages/paymentsettings.php:310 #: adminpages/paymentsettings.php:314 #: classes/gateways/class.pmprogateway_braintree.php:329 +#: classes/gateways/class.pmprogateway_braintree.php:336 msgid "Private Key" msgstr "" @@ -3294,6 +3585,7 @@ msgstr "" #: adminpages/paymentsettings.php:318 #: adminpages/paymentsettings.php:322 #: classes/gateways/class.pmprogateway_braintree.php:337 +#: classes/gateways/class.pmprogateway_braintree.php:344 msgid "Client-Side Encryption Key" msgstr "" @@ -3301,6 +3593,7 @@ msgstr "" #: adminpages/paymentsettings.php:360 #: adminpages/paymentsettings.php:355 #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "" @@ -3319,12 +3612,14 @@ msgstr "" #: adminpages/paymentsettings.php:381 #: adminpages/paymentsettings.php:199 #: adminpages/paymentsettings.php:206 +#: adminpages/paymentsettings.php:204 msgid "Currency" msgstr "" #: adminpages/paymentsettings.php:400 #: adminpages/paymentsettings.php:215 #: adminpages/paymentsettings.php:222 +#: adminpages/paymentsettings.php:220 msgid "Not all currencies will be supported by every gateway. Please check with your gateway." msgstr "" @@ -3334,6 +3629,7 @@ msgstr "" #: adminpages/paymentsettings.php:401 #: adminpages/paymentsettings.php:220 #: adminpages/paymentsettings.php:227 +#: adminpages/paymentsettings.php:225 msgid "Accepted Credit Card Types" msgstr "" @@ -3361,6 +3657,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:629 #: classes/gateways/class.pmprogateway_stripe.php:635 #: classes/gateways/class.pmprogateway_stripe.php:399 +#: adminpages/orders.php:570 +#: classes/gateways/class.pmprogateway_stripe.php:425 msgid "Show Billing Address Fields" msgstr "" @@ -3371,6 +3669,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:638 #: classes/gateways/class.pmprogateway_stripe.php:644 #: classes/gateways/class.pmprogateway_stripe.php:408 +#: classes/gateways/class.pmprogateway_stripe.php:434 msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.
If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "" @@ -3380,6 +3679,7 @@ msgstr "" #: adminpages/paymentsettings.php:438 #: adminpages/paymentsettings.php:234 #: adminpages/paymentsettings.php:241 +#: adminpages/paymentsettings.php:239 msgid "Sales Tax" msgstr "" @@ -3393,6 +3693,7 @@ msgstr "" #: pages/billing.php:179 #: adminpages/paymentsettings.php:241 #: pages/billing.php:181 +#: adminpages/paymentsettings.php:239 msgid "optional" msgstr "" @@ -3402,6 +3703,7 @@ msgstr "" #: adminpages/paymentsettings.php:441 #: adminpages/paymentsettings.php:237 #: adminpages/paymentsettings.php:244 +#: adminpages/paymentsettings.php:242 msgid "Tax State" msgstr "" @@ -3411,6 +3713,7 @@ msgstr "" #: adminpages/paymentsettings.php:442 #: adminpages/paymentsettings.php:238 #: adminpages/paymentsettings.php:245 +#: adminpages/paymentsettings.php:243 msgid "abbreviation, e.g. \"PA\"" msgstr "" @@ -3420,6 +3723,7 @@ msgstr "" #: adminpages/paymentsettings.php:444 #: adminpages/paymentsettings.php:240 #: adminpages/paymentsettings.php:247 +#: adminpages/paymentsettings.php:245 msgid "decimal, e.g. \"0.06\"" msgstr "" @@ -3433,6 +3737,7 @@ msgstr "" #: adminpages/paymentsettings.php:450 #: adminpages/paymentsettings.php:253 #: adminpages/paymentsettings.php:266 +#: adminpages/paymentsettings.php:264 msgid "Force SSL" msgstr "" @@ -3441,6 +3746,7 @@ msgstr "" #: adminpages/paymentsettings.php:456 #: adminpages/paymentsettings.php:268 #: adminpages/paymentsettings.php:281 +#: adminpages/paymentsettings.php:279 msgid "Yes (with JavaScript redirects)" msgstr "" @@ -3450,6 +3756,7 @@ msgstr "" #: adminpages/paymentsettings.php:463 #: adminpages/paymentsettings.php:278 #: adminpages/paymentsettings.php:291 +#: adminpages/paymentsettings.php:289 msgid "SSL Seal Code" msgstr "" @@ -3475,6 +3782,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:205 #: classes/gateways/class.pmprogateway_paypalstandard.php:186 #: classes/gateways/class.pmprogateway_paypalexpress.php:215 +#: classes/gateways/class.pmprogateway_paypalexpress.php:216 msgid "IPN Handler URL" msgstr "" @@ -3485,6 +3793,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:199 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 #: classes/gateways/class.pmprogateway_paypalexpress.php:218 +#: classes/gateways/class.pmprogateway_paypalexpress.php:219 msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to " msgstr "" @@ -3492,6 +3801,7 @@ msgstr "" #: adminpages/paymentsettings.php:493 #: adminpages/paymentsettings.php:487 #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "" @@ -3525,6 +3835,7 @@ msgstr "" #: adminpages/paymentsettings.php:503 #: adminpages/paymentsettings.php:511 #: classes/gateways/class.pmprogateway_braintree.php:345 +#: classes/gateways/class.pmprogateway_braintree.php:352 msgid "Web Hook URL" msgstr "" @@ -3540,6 +3851,7 @@ msgstr "" #: adminpages/paymentsettings.php:474 #: adminpages/paymentsettings.php:515 #: classes/gateways/class.pmprogateway_braintree.php:348 +#: classes/gateways/class.pmprogateway_braintree.php:355 msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to" msgstr "" @@ -3632,6 +3944,7 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:234 #: classes/class-pmpro-members-list-table.php:233 #: adminpages/reports/login.php:105 +#: adminpages/reports/login.php:111 msgid "All Users" msgstr "" @@ -3682,6 +3995,8 @@ msgstr "" #: adminpages/reports/sales.php:295 #: adminpages/advancedsettings.php:322 #: adminpages/reports/sales.php:313 +#: adminpages/advancedsettings.php:329 +#: adminpages/reports/memberships.php:332 msgid "Daily" msgstr "" @@ -3695,6 +4010,8 @@ msgstr "" #: adminpages/reports/sales.php:296 #: adminpages/advancedsettings.php:328 #: adminpages/reports/sales.php:314 +#: adminpages/advancedsettings.php:335 +#: adminpages/reports/memberships.php:333 msgid "Monthly" msgstr "" @@ -3706,12 +4023,14 @@ msgstr "" #: adminpages/reports/memberships.php:335 #: adminpages/reports/sales.php:297 #: adminpages/reports/sales.php:315 +#: adminpages/reports/memberships.php:334 msgid "Annual" msgstr "" # @ pmpro #: adminpages/reports/memberships.php:299 #: adminpages/reports/memberships.php:339 +#: adminpages/reports/memberships.php:338 msgid "Signups vs. Cancellations" msgstr "" @@ -3722,6 +4041,7 @@ msgstr "" #: adminpages/reports/memberships.php:385 #: adminpages/reports/sales.php:342 #: adminpages/reports/sales.php:360 +#: adminpages/reports/memberships.php:384 msgid "Generate Report" msgstr "" @@ -3767,6 +4087,7 @@ msgstr "" #: includes/cleanup.php:24 #: classes/class.memberorder.php:959 #: classes/class.memberorder.php:1001 +#: classes/class.memberorder.php:1010 #, php-format msgid "There was an error canceling the subscription for user with ID=%s. You will want to check your payment gateway to see if their subscription is still active." msgstr "" @@ -3802,6 +4123,7 @@ msgstr "Členstvo pre %s v %s bolo ZRUŠENÉ" #: classes/class.pmproemail.php:173 #: classes/class.pmproemail.php:269 #: classes/class.pmproemail.php:262 +#: classes/class.pmproemail.php:395 #, php-format msgid "Your membership confirmation for %s" msgstr "Potvrdenie vášho členstva v %s" @@ -3876,6 +4198,18 @@ msgstr "Potvrdenie vášho členstva v %s" #: classes/class.pmproemail.php:764 #: adminpages/orders.php:576 #: adminpages/orders.php:1343 +#: adminpages/orders.php:697 +#: adminpages/orders.php:1437 +#: classes/class.pmproemail.php:465 +#: classes/class.pmproemail.php:471 +#: classes/class.pmproemail.php:477 +#: classes/class.pmproemail.php:567 +#: classes/class.pmproemail.php:573 +#: classes/class.pmproemail.php:895 +#: classes/class.pmproemail.php:897 +#: classes/gateways/class.pmprogateway_braintree.php:516 +#: classes/gateways/class.pmprogateway_stripe.php:906 +#: includes/profile.php:454 msgid "Discount Code" msgstr "Zľavový kód" @@ -3910,6 +4244,11 @@ msgstr "Zľavový kód" #: classes/class.pmproemail.php:771 #: classes/class.pmproemail.php:905 #: classes/class.pmproemail.php:950 +#: classes/class.pmproemail.php:485 +#: classes/class.pmproemail.php:583 +#: classes/class.pmproemail.php:904 +#: classes/class.pmproemail.php:1038 +#: classes/class.pmproemail.php:1083 #, php-format msgid "This membership will expire on %s." msgstr "Toto členstvo skončí o %s" @@ -3976,6 +4315,7 @@ msgstr "FAKTÚRA pre %s členstvo" #: classes/class.pmproemail.php:794 #: classes/class.pmproemail.php:806 #: classes/class.pmproemail.php:799 +#: classes/class.pmproemail.php:932 #, php-format msgid "Your trial at %s is ending soon" msgstr "Váš trial prístup %s čoskoro skončí" @@ -3987,6 +4327,7 @@ msgstr "Váš trial prístup %s čoskoro skončí" #: classes/class.pmproemail.php:831 #: classes/class.pmproemail.php:843 #: classes/class.pmproemail.php:836 +#: classes/class.pmproemail.php:969 #, php-format msgid "Your membership at %s has ended" msgstr "Vaše členstvo %s skončilo" @@ -3998,6 +4339,7 @@ msgstr "Vaše členstvo %s skončilo" #: classes/class.pmproemail.php:858 #: classes/class.pmproemail.php:870 #: classes/class.pmproemail.php:863 +#: classes/class.pmproemail.php:996 #, php-format msgid "Your membership at %s will end soon" msgstr "Vaše členstvo v %s bude končiť čoskoro" @@ -4009,6 +4351,7 @@ msgstr "Vaše členstvo v %s bude končiť čoskoro" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:900 #: classes/class.pmproemail.php:893 +#: classes/class.pmproemail.php:1026 #, php-format msgid "Your membership at %s has been changed" msgstr "Vaše členstvo v %s bolo zmenené" @@ -4024,6 +4367,8 @@ msgstr "Vaše členstvo v %s bolo zmenené" #: includes/email.php:465 #: classes/class.pmproemail.php:898 #: classes/class.pmproemail.php:943 +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 #, php-format msgid "The new level is %s." msgstr "" @@ -4063,6 +4408,7 @@ msgstr "Toto členstvo nezaniká" #: classes/class.pmproemail.php:933 #: classes/class.pmproemail.php:945 #: classes/class.pmproemail.php:938 +#: classes/class.pmproemail.php:1071 #, php-format msgid "Membership for %s at %s has been changed" msgstr "členstvo pre %s v %s bolo zmenené" @@ -4154,6 +4500,7 @@ msgstr "Nie je možné pripojenie k Authorize.net" #: classes/gateways/class.pmprogateway_braintree.php:61 #: classes/gateways/class.pmprogateway_stripe.php:53 #: classes/gateways/class.pmprogateway_braintree.php:574 +#: classes/gateways/class.pmprogateway_braintree.php:581 msgid "Unknown error: Initial payment failed." msgstr "Neznáma chyba: Počiatočná platba zlyhala." @@ -4161,6 +4508,7 @@ msgstr "Neznáma chyba: Počiatočná platba zlyhala." #: classes/gateways/class.pmprogateway_braintree.php:120 #: classes/gateways/class.pmprogateway_braintree.php:650 #: classes/gateways/class.pmprogateway_braintree.php:653 +#: classes/gateways/class.pmprogateway_braintree.php:660 msgid "Error during settlement:" msgstr "Chyba pri vyrovnaní:" @@ -4168,6 +4516,7 @@ msgstr "Chyba pri vyrovnaní:" #: classes/gateways/class.pmprogateway_braintree.php:129 #: classes/gateways/class.pmprogateway_braintree.php:659 #: classes/gateways/class.pmprogateway_braintree.php:662 +#: classes/gateways/class.pmprogateway_braintree.php:669 msgid "Error during charge:" msgstr "Chyba počas poplatku:" @@ -4175,6 +4524,7 @@ msgstr "Chyba počas poplatku:" #: classes/gateways/class.pmprogateway_braintree.php:198 #: classes/gateways/class.pmprogateway_braintree.php:762 #: classes/gateways/class.pmprogateway_braintree.php:765 +#: classes/gateways/class.pmprogateway_braintree.php:772 msgid "Failed to update customer." msgstr "Nepodarilo sa aktualizovať zákazníka." @@ -4182,6 +4532,7 @@ msgstr "Nepodarilo sa aktualizovať zákazníka." #: classes/gateways/class.pmprogateway_braintree.php:246 #: classes/gateways/class.pmprogateway_braintree.php:810 #: classes/gateways/class.pmprogateway_braintree.php:813 +#: classes/gateways/class.pmprogateway_braintree.php:820 msgid "Failed to create customer." msgstr "Nepodarilo sa vytvoriť zákazníka." @@ -4189,6 +4540,7 @@ msgstr "Nepodarilo sa vytvoriť zákazníka." #: classes/gateways/class.pmprogateway_braintree.php:253 #: classes/gateways/class.pmprogateway_braintree.php:817 #: classes/gateways/class.pmprogateway_braintree.php:820 +#: classes/gateways/class.pmprogateway_braintree.php:827 msgid "Error creating customer record with Braintree:" msgstr "Chyba pri vytváraní záznamu zákazníka s Braintree:" @@ -4219,6 +4571,7 @@ msgstr "Nepodarilo sa prihlásiť s Braintree:" #: classes/gateways/class.pmprogateway_stripe.php:354 #: classes/gateways/class.pmprogateway_braintree.php:1036 #: classes/gateways/class.pmprogateway_braintree.php:1039 +#: classes/gateways/class.pmprogateway_braintree.php:1046 msgid "Could not find the subscription." msgstr "Nemožno nájsť predplatné." @@ -4269,6 +4622,8 @@ msgstr "Chyba pri vytváraní záznamu zákazníka so Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "Chyba pri vytváraní plánu so Stripe" @@ -4292,6 +4647,8 @@ msgstr "Chyba pri vytváraní plánu so Stripe" #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "Chyba prihlásenia zákazníka s plánom Stripe:" @@ -4836,6 +5193,7 @@ msgstr "a" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "" @@ -4914,6 +5272,9 @@ msgstr "Aktuálna úroveň" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "Žiadny" @@ -4972,6 +5333,9 @@ msgstr "Vaše členstvo je aktívne." #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "Úroveň" @@ -5062,6 +5426,8 @@ msgstr "Upraviť profil" #: includes/profile.php:921 #: includes/profile.php:880 #: includes/profile.php:917 +#: includes/profile.php:920 +#: includes/profile.php:957 msgid "Change Password" msgstr "Zmeniť heslo" @@ -5069,6 +5435,7 @@ msgstr "Zmeniť heslo" #: pages/account.php:91 #: pages/account.php:87 #: adminpages/emailtemplates.php:156 +#: adminpages/emailtemplates.php:149 msgid "Billing Information" msgstr "Fakturačné údaje" @@ -5164,6 +5531,7 @@ msgstr "Vaša platba predplatného je spravovaná PayPal-om. Prosím Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -6591,113 +7021,135 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:199 #: adminpages/advancedsettings.php:201 +#: adminpages/advancedsettings.php:208 msgid "Filter searches and archives?" msgstr "" #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:205 +#: adminpages/advancedsettings.php:212 msgid "No - Non-members will see restricted posts/pages in searches and archives." msgstr "" #: adminpages/advancedsettings.php:204 #: adminpages/advancedsettings.php:206 +#: adminpages/advancedsettings.php:213 msgid "Yes - Only members will see restricted posts/pages in searches and archives." msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:333 #: adminpages/advancedsettings.php:348 +#: adminpages/advancedsettings.php:355 msgid "Hide Ads From Members?" msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -6723,6 +7175,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -6786,6 +7239,7 @@ msgstr "" #: adminpages/license.php:49 #: adminpages/dashboard.php:178 #: adminpages/license.php:41 +#: adminpages/license.php:53 msgid "Your license is invalid or expired." msgstr "" @@ -6800,6 +7254,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -6905,6 +7360,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -6948,6 +7404,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -6960,31 +7417,39 @@ msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 msgid "%d discount codes found." msgstr "" @@ -7010,6 +7475,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -7028,6 +7500,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -7045,6 +7523,11 @@ msgstr "" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "" @@ -7053,19 +7536,23 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -7106,192 +7593,241 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:960 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:170 #: includes/privacy.php:363 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -7321,6 +7857,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "" @@ -7338,12 +7875,14 @@ msgstr "" #: adminpages/license.php:59 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -7351,14 +7890,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -7375,35 +7917,44 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -7413,6 +7964,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -7420,6 +7973,7 @@ msgstr "" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -7427,6 +7981,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -7434,6 +7989,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -7441,6 +7997,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -7451,6 +8008,7 @@ msgstr "" #: adminpages/orders.php:1077 #: adminpages/orders.php:1069 #: adminpages/orders.php:1070 +#: adminpages/orders.php:1158 msgid "This Month" msgstr "" @@ -7458,6 +8016,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -7467,6 +8026,7 @@ msgstr "" #: adminpages/orders.php:1081 #: adminpages/orders.php:1073 #: adminpages/orders.php:1074 +#: adminpages/orders.php:1162 msgid "This Year" msgstr "" @@ -7474,6 +8034,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -7518,24 +8079,28 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" @@ -7562,60 +8127,77 @@ msgstr "" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -7625,6 +8207,8 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" @@ -7637,12 +8221,16 @@ msgstr "" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -7650,24 +8238,28 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "" @@ -7677,26 +8269,31 @@ msgstr "" #: adminpages/paymentsettings.php:122 #: adminpages/paymentsettings.php:127 +#: adminpages/paymentsettings.php:125 msgid "Choose a Gateway" msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" #: adminpages/paymentsettings.php:194 #: adminpages/paymentsettings.php:201 +#: adminpages/paymentsettings.php:199 msgid "Currency and Tax Settings" msgstr "" #: adminpages/paymentsettings.php:239 #: adminpages/paymentsettings.php:246 +#: adminpages/paymentsettings.php:244 msgid "Tax Rate" msgstr "" @@ -7706,11 +8303,13 @@ msgstr "" #: adminpages/paymentsettings.php:260 #: adminpages/paymentsettings.php:273 +#: adminpages/paymentsettings.php:271 msgid "Your Site URL starts with https:// and so PMPro will allow your entire site to be served over HTTPS." msgstr "" #: adminpages/paymentsettings.php:270 #: adminpages/paymentsettings.php:283 +#: adminpages/paymentsettings.php:281 msgid "Recommended: Yes. Try the JavaScript redirects setting if you are having issues with infinite redirect loops." msgstr "" @@ -7720,16 +8319,19 @@ msgstr "" #: adminpages/paymentsettings.php:287 #: adminpages/paymentsettings.php:306 +#: adminpages/paymentsettings.php:304 msgid "Extra HTTPS URL Filter" msgstr "" #: adminpages/paymentsettings.php:290 #: adminpages/paymentsettings.php:309 +#: adminpages/paymentsettings.php:307 msgid "Pass all generated HTML through a URL filter to add HTTPS to URLs used on secure pages. Check this if you are using SSL and have warnings on your checkout pages." msgstr "" #: adminpages/reports.php:19 #: adminpages/reports.php:18 +#: adminpages/reports.php:21 msgid "Back to Reports Dashboard" msgstr "" @@ -7757,6 +8359,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -7767,6 +8370,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -7800,6 +8404,7 @@ msgstr "" #: adminpages/reports/memberships.php:52 #: adminpages/reports/sales.php:53 #: adminpages/reports/sales.php:542 +#: adminpages/reports/sales.php:543 msgid "All Time" msgstr "" @@ -7842,29 +8447,35 @@ msgid "All Cancellations" msgstr "" #: adminpages/reports/memberships.php:338 +#: adminpages/reports/memberships.php:337 msgid "Signups vs. All Cancellations" msgstr "" #: adminpages/reports/memberships.php:340 +#: adminpages/reports/memberships.php:339 msgid "Signups vs. Expirations" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -8075,63 +8686,77 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:962 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:463 #: classes/class.pmproemail.php:475 #: classes/class.pmproemail.php:468 +#: classes/class.pmproemail.php:601 msgid "Your billing information has been updated at %s" msgstr "" #: classes/class.pmproemail.php:513 #: classes/class.pmproemail.php:525 #: classes/class.pmproemail.php:518 +#: classes/class.pmproemail.php:651 msgid "Billing information has been updated for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -8144,30 +8769,36 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -8175,6 +8806,7 @@ msgstr "" #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:167 +#: paid-memberships-pro.php:173 msgid "Authorize.net" msgstr "" @@ -8190,14 +8822,17 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:91 #: classes/gateways/class.pmprogateway_stripe.php:97 #: classes/gateways/class.pmprogateway_stripe.php:1353 +#: classes/gateways/class.pmprogateway_stripe.php:1478 msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" @@ -8205,10 +8840,13 @@ msgstr "" #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:167 #: paid-memberships-pro.php:168 +#: classes/gateways/class.pmprogateway_braintree.php:258 +#: paid-memberships-pro.php:174 msgid "Braintree Payments" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:308 +#: classes/gateways/class.pmprogateway_braintree.php:315 msgid "Braintree Settings" msgstr "" @@ -8222,21 +8860,30 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:750 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -8244,11 +8891,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -8550,6 +9200,7 @@ msgstr "" #: paid-memberships-pro.php:161 #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:164 +#: paid-memberships-pro.php:170 msgid "PayPal Website Payments Pro" msgstr "" @@ -8557,6 +9208,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:141 #: classes/gateways/class.pmprogateway_paypalstandard.php:133 #: classes/gateways/class.pmprogateway_paypalexpress.php:151 +#: classes/gateways/class.pmprogateway_paypalexpress.php:152 msgid "PayPal Settings" msgstr "" @@ -8564,12 +9216,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:185 #: classes/gateways/class.pmprogateway_paypalexpress.php:194 #: classes/gateways/class.pmprogateway_paypalexpress.php:204 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 msgid "Confirmation Step" msgstr "" @@ -8581,6 +9235,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:854 #: classes/gateways/class.pmprogateway_paypal.php:726 #: classes/gateways/class.pmprogateway_paypalexpress.php:865 +#: classes/gateways/class.pmprogateway_paypalexpress.php:866 msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward." msgstr "" @@ -8589,11 +9244,14 @@ msgstr "" #: paid-memberships-pro.php:162 #: classes/gateways/class.pmprogateway_paypalexpress.php:94 #: paid-memberships-pro.php:163 +#: classes/gateways/class.pmprogateway_paypalexpress.php:95 +#: paid-memberships-pro.php:169 msgid "PayPal Express" msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -8602,6 +9260,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -8610,6 +9269,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -8617,6 +9277,7 @@ msgstr "" #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:166 +#: paid-memberships-pro.php:172 msgid "PayPal Standard" msgstr "" @@ -8634,6 +9295,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:258 #: classes/gateways/class.pmprogateway_stripe.php:216 #: paid-memberships-pro.php:162 +#: classes/gateways/class.pmprogateway_stripe.php:234 +#: paid-memberships-pro.php:168 msgid "Stripe" msgstr "" @@ -8645,6 +9308,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -8653,6 +9317,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -8664,6 +9329,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -8675,6 +9341,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -8686,6 +9353,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -8694,6 +9362,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -8705,6 +9374,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -8716,6 +9386,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -8724,6 +9395,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -8735,6 +9407,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -8743,6 +9416,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -8766,6 +9440,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -8782,6 +9458,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -8790,6 +9468,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -8798,6 +9477,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -8806,6 +9486,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -8813,6 +9494,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -8821,6 +9503,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -8834,6 +9517,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -8842,6 +9527,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -8850,6 +9536,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -8859,6 +9546,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -8876,6 +9565,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -8884,6 +9575,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -8905,6 +9597,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -8913,6 +9607,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -8921,6 +9616,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -8929,6 +9625,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -8937,6 +9634,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -8945,6 +9643,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -8953,6 +9652,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -8961,6 +9661,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -8969,6 +9670,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -8977,6 +9679,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -8985,6 +9688,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -8997,6 +9701,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -9005,6 +9710,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -9013,6 +9719,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -9021,6 +9728,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -9029,6 +9737,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -9047,6 +9756,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "" @@ -9099,6 +9809,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "" @@ -9110,6 +9822,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "" @@ -9119,6 +9832,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "" @@ -9128,6 +9842,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "" @@ -9145,6 +9860,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "" @@ -9156,6 +9873,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 msgid "Error: Unkown error while refunding charge #%s" msgstr "" @@ -9165,6 +9883,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -9185,6 +9904,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -9193,6 +9916,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -9202,6 +9926,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -9211,6 +9936,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -9222,6 +9948,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -9233,6 +9960,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -9244,6 +9972,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -9255,34 +9984,42 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:59 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "" @@ -9325,6 +10062,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -9337,6 +10075,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -9349,6 +10088,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -10586,6 +11326,7 @@ msgstr "" #: includes/email-templates.php:68 #: shortcodes/pmpro_account.php:43 +#: adminpages/orders.php:1431 msgid "Billing" msgstr "" @@ -11176,14 +11917,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -11192,18 +11936,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -11215,6 +11963,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -11353,6 +12102,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -11482,6 +12232,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -11489,6 +12240,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -11520,6 +12272,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -11529,6 +12282,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -11536,6 +12290,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -11640,6 +12395,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -11647,6 +12404,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -11654,6 +12412,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -11661,6 +12420,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -11732,6 +12492,7 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" @@ -11740,6 +12501,8 @@ msgstr "" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "" @@ -11750,121 +12513,142 @@ msgstr "" #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -11876,6 +12660,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -12004,18 +12791,21 @@ msgstr "" #: paid-memberships-pro.php:162 #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:165 +#: paid-memberships-pro.php:171 msgid "PayPal Payflow Pro/PayPal Pro" msgstr "" #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:168 #: paid-memberships-pro.php:169 +#: paid-memberships-pro.php:175 msgid "Cybersource" msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -12065,6 +12855,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -12103,6 +12894,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -12118,6 +12924,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -12133,6 +12940,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -12165,6 +12973,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -12177,6 +12986,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -12202,11 +13012,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -12214,6 +13029,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -12221,6 +13037,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -12243,6 +13060,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -12268,6 +13086,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -12275,6 +13094,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -12307,6 +13127,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -12329,6 +13150,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -12339,11 +13161,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -12363,6 +13196,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -12376,6 +13210,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -12385,6 +13220,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -12394,10 +13230,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -12408,6 +13246,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -12415,6 +13254,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -12424,6 +13264,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -12433,12 +13274,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -12446,6 +13290,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -12454,6 +13300,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -12461,6 +13308,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -12468,27 +13316,32 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: paid-memberships-pro.php:194 #: paid-memberships-pro.php:195 +#: paid-memberships-pro.php:201 msgid "Once a month" msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -12546,12 +13399,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -12561,6 +13416,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -12570,6 +13426,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -12579,54 +13436,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -12637,42 +13504,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -12687,51 +13564,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -12739,6 +13628,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -12746,6 +13636,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -12753,6 +13644,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -12761,6 +13653,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -12774,6 +13668,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -12794,19 +13689,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -12816,31 +13715,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -12870,25 +13777,30 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "" @@ -12958,26 +13870,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -12986,51 +13904,62 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -13044,19 +13973,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -13087,3 +14020,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-sr_RS.mo b/languages/paid-memberships-pro-sr_RS.mo index a324aa72e..4607c726f 100644 Binary files a/languages/paid-memberships-pro-sr_RS.mo and b/languages/paid-memberships-pro-sr_RS.mo differ diff --git a/languages/paid-memberships-pro-sr_RS.po b/languages/paid-memberships-pro-sr_RS.po index b933fd610..20633fdc6 100644 --- a/languages/paid-memberships-pro-sr_RS.po +++ b/languages/paid-memberships-pro-sr_RS.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:21:12+00:00\n" +"POT-Creation-Date: 2022-05-05T20:37:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -246,6 +246,7 @@ msgstr "Email postavke" #: adminpages/advancedsettings.php:132 #: includes/adminpages.php:73 #: adminpages/advancedsettings.php:134 +#: adminpages/advancedsettings.php:142 msgid "Advanced Settings" msgstr "Napredne Postavke" @@ -263,6 +264,7 @@ msgstr "Dodaci" #: includes/adminpages.php:74 #: adminpages/memberslist.php:25 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "Lista Članova" @@ -289,6 +291,8 @@ msgstr "Izvještaji" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "Narudžbe" @@ -335,6 +339,8 @@ msgstr "Nivoi Članstva" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "Nivo Članstva" @@ -357,6 +363,9 @@ msgstr "Trenutni Nivo" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "Nijedan" @@ -378,6 +387,8 @@ msgstr "Korisnik ne plaća." #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "Ističe" @@ -417,6 +428,16 @@ msgstr "Ističe" #: classes/gateways/class.pmprogateway_stripe.php:404 #: classes/gateways/class.pmprogateway_stripe.php:418 #: adminpages/paymentsettings.php:279 +#: adminpages/advancedsettings.php:254 +#: adminpages/advancedsettings.php:267 +#: adminpages/advancedsettings.php:359 +#: adminpages/advancedsettings.php:418 +#: adminpages/advancedsettings.php:526 +#: adminpages/membershiplevels.php:939 +#: adminpages/paymentsettings.php:277 +#: classes/gateways/class.pmprogateway_stripe.php:430 +#: classes/gateways/class.pmprogateway_stripe.php:444 +#: includes/profile.php:78 msgid "No" msgstr "Ne" @@ -448,6 +469,12 @@ msgstr "Ne" #: classes/gateways/class.pmprogateway_stripe.php:406 #: classes/gateways/class.pmprogateway_stripe.php:420 #: adminpages/paymentsettings.php:280 +#: adminpages/advancedsettings.php:419 +#: adminpages/membershiplevels.php:934 +#: adminpages/paymentsettings.php:278 +#: classes/gateways/class.pmprogateway_stripe.php:432 +#: classes/gateways/class.pmprogateway_stripe.php:446 +#: includes/profile.php:79 msgid "Yes" msgstr "Da" @@ -616,6 +643,7 @@ msgstr "i" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "Prijavite Se za !!name!! Sada" @@ -698,6 +726,18 @@ msgstr "Članstvo ističe" #: classes/class.pmproemail.php:764 #: adminpages/orders.php:576 #: adminpages/orders.php:1343 +#: adminpages/orders.php:697 +#: adminpages/orders.php:1437 +#: classes/class.pmproemail.php:465 +#: classes/class.pmproemail.php:471 +#: classes/class.pmproemail.php:477 +#: classes/class.pmproemail.php:567 +#: classes/class.pmproemail.php:573 +#: classes/class.pmproemail.php:895 +#: classes/class.pmproemail.php:897 +#: classes/gateways/class.pmprogateway_braintree.php:516 +#: classes/gateways/class.pmprogateway_stripe.php:906 +#: includes/profile.php:454 msgid "Discount Code" msgstr "Kod za Popust" @@ -712,6 +752,7 @@ msgstr "Kod za Popust" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "Adresa za naplatu" @@ -733,6 +774,7 @@ msgstr "Metoda plaćanja" #: pages/invoice.php:97 #: pages/invoice.php:125 #: includes/profile.php:413 +#: includes/profile.php:453 msgid "Total Billed" msgstr "Ukupno naplaćeno" @@ -755,6 +797,8 @@ msgstr "Ističe za" #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "Isticanje" @@ -762,6 +806,7 @@ msgstr "Isticanje" #: includes/functions.php:2842 #: includes/functions.php:2873 #: includes/functions.php:2895 +#: includes/functions.php:2897 msgid "Subtotal" msgstr "Suma stavke" @@ -775,6 +820,8 @@ msgstr "Suma stavke" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "Porez" @@ -782,6 +829,7 @@ msgstr "Porez" #: includes/functions.php:2857 #: includes/functions.php:2888 #: includes/functions.php:2910 +#: includes/functions.php:2912 msgid "Coupon" msgstr "Kupon" @@ -803,6 +851,9 @@ msgstr "Kupon" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "Ukupno" @@ -824,6 +875,9 @@ msgstr "Ukupno" #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:492 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "Datum" @@ -890,6 +944,9 @@ msgstr "Vaše članstvo je aktivno." #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "Nivo" @@ -936,6 +993,8 @@ msgstr "Moj Nalog" #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "Korisničko Ime" @@ -958,6 +1017,11 @@ msgstr "Korisničko Ime" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "" @@ -974,11 +1038,14 @@ msgstr "Uredi Profil" #: includes/profile.php:921 #: includes/profile.php:880 #: includes/profile.php:917 +#: includes/profile.php:920 +#: includes/profile.php:957 msgid "Change Password" msgstr "Promijnite Lozinku" #: pages/account.php:87 #: adminpages/emailtemplates.php:156 +#: adminpages/emailtemplates.php:149 msgid "Billing Information" msgstr "Informacije o Plaćanju" @@ -1060,6 +1127,8 @@ msgstr "Kliknite ovdje da unestete Vaš kod za popust." #: classes/gateways/class.pmprogateway_stripe.php:1338 #: classes/gateways/class.pmprogateway_stripe.php:1344 #: classes/gateways/class.pmprogateway_stripe.php:803 +#: classes/gateways/class.pmprogateway_braintree.php:518 +#: classes/gateways/class.pmprogateway_stripe.php:911 msgid "Apply" msgstr "Primijeniti" @@ -1146,6 +1215,7 @@ msgstr "Platite sa Kreditnom Karticom Ovdje" #: pages/checkout.php:218 #: classes/gateways/class.pmprogateway_paypalexpress.php:498 #: classes/gateways/class.pmprogateway_paypalexpress.php:502 +#: classes/gateways/class.pmprogateway_paypalexpress.php:503 msgid "Check Out with PayPal" msgstr "Platite sa Paypal" @@ -1157,6 +1227,7 @@ msgstr "Platite sa Paypal" #: includes/profile.php:759 #: includes/profile.php:755 #: pages/billing.php:166 +#: includes/profile.php:795 msgid "First Name" msgstr "Ime" @@ -1168,6 +1239,7 @@ msgstr "Ime" #: includes/profile.php:760 #: includes/profile.php:756 #: pages/billing.php:170 +#: includes/profile.php:796 msgid "Last Name" msgstr "Prezime" @@ -1251,6 +1323,8 @@ msgstr "Potvrdite E-mail" #: classes/gateways/class.pmprogateway_stripe.php:1283 #: classes/gateways/class.pmprogateway_stripe.php:1289 #: classes/gateways/class.pmprogateway_stripe.php:748 +#: classes/gateways/class.pmprogateway_braintree.php:462 +#: classes/gateways/class.pmprogateway_stripe.php:856 #, php-format msgid "We Accept %s" msgstr "Mi Prihvatamo %s" @@ -1263,6 +1337,9 @@ msgstr "Mi Prihvatamo %s" #: classes/gateways/class.pmprogateway_stripe.php:1282 #: classes/gateways/class.pmprogateway_stripe.php:1288 #: classes/gateways/class.pmprogateway_stripe.php:747 +#: adminpages/orders.php:676 +#: classes/gateways/class.pmprogateway_braintree.php:461 +#: classes/gateways/class.pmprogateway_stripe.php:855 msgid "Payment Information" msgstr "Informacije o Plaćanju" @@ -1283,6 +1360,9 @@ msgstr "Informacije o Plaćanju" #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "Tip Kartice" @@ -1297,6 +1377,8 @@ msgstr "Tip Kartice" #: classes/gateways/class.pmprogateway_stripe.php:1322 #: classes/gateways/class.pmprogateway_stripe.php:781 #: pages/billing.php:377 +#: classes/gateways/class.pmprogateway_braintree.php:482 +#: classes/gateways/class.pmprogateway_stripe.php:889 msgid "Card Number" msgstr "Broj Kartice" @@ -1314,6 +1396,8 @@ msgstr "Broj Kartice" #: classes/gateways/class.pmprogateway_stripe.php:1326 #: classes/gateways/class.pmprogateway_stripe.php:785 #: pages/billing.php:381 +#: classes/gateways/class.pmprogateway_braintree.php:486 +#: classes/gateways/class.pmprogateway_stripe.php:893 msgid "Expiration Date" msgstr "Datum Isteka" @@ -1322,6 +1406,7 @@ msgstr "Datum Isteka" #: classes/gateways/class.pmprogateway_braintree.php:503 #: pages/billing.php:410 #: pages/billing.php:417 +#: classes/gateways/class.pmprogateway_braintree.php:510 msgid "CVV" msgstr "CVV (Sigurnosni broj)" @@ -1331,6 +1416,7 @@ msgstr "CVV (Sigurnosni broj)" #: pages/billing.php:411 #: pages/checkout.php:425 #: pages/billing.php:418 +#: classes/gateways/class.pmprogateway_braintree.php:511 msgid "what's this?" msgstr "šta je to?" @@ -1352,6 +1438,7 @@ msgstr "Podnesite i Platite sa 2CheckOut" #: classes/gateways/class.pmprogateway_paypalexpress.php:503 #: classes/gateways/class.pmprogateway_paypalexpress.php:507 #: pages/checkout.php:538 +#: classes/gateways/class.pmprogateway_paypalexpress.php:508 msgid "Submit and Check Out" msgstr "Podnesite i Platite" @@ -1364,6 +1451,8 @@ msgstr "Podnesite i Platite" #: classes/gateways/class.pmprogateway_paypalexpress.php:503 #: classes/gateways/class.pmprogateway_paypalexpress.php:507 #: pages/checkout.php:538 +#: classes/gateways/class.pmprogateway_paypalexpress.php:508 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Submit and Confirm" msgstr "Podnesite i Potvrdite" @@ -1423,6 +1512,10 @@ msgstr "Ispod su detalji o Vašem nalogu i račun za Vašu prvu člansku fakturu #: adminpages/orders.php:391 #: adminpages/orders.php:1424 #: adminpages/orders.php:1434 +#: adminpages/orders.php:439 +#: adminpages/orders.php:1539 +#: adminpages/orders.php:1549 +#: includes/profile.php:473 msgid "Print" msgstr "Štampaj" @@ -1434,6 +1527,7 @@ msgstr "Ispod su detalji o vašem nalogu. Email dobrodošlice je poslat na %s." #: pages/confirmation.php:105 #: pages/confirmation.php:138 #: shortcodes/pmpro_account.php:247 +#: pages/confirmation.php:65 msgid "Pending" msgstr "Na čekanju" @@ -1465,6 +1559,7 @@ msgstr "Vašom pretplatom upravlja PayPal. Molim Vas pmpro_#
, where # is the level ID." msgstr "" @@ -2279,6 +2441,7 @@ msgstr "" #: adminpages/discountcodes.php:628 #: adminpages/membershiplevels.php:465 #: adminpages/discountcodes.php:630 +#: adminpages/membershiplevels.php:463 msgid "Billing Cycle Limit" msgstr "Granica Ciklusa Plaćanja" @@ -2287,6 +2450,7 @@ msgstr "Granica Ciklusa Plaćanja" #: adminpages/discountcodes.php:632 #: adminpages/membershiplevels.php:469 #: adminpages/discountcodes.php:634 +#: adminpages/membershiplevels.php:467 msgid "The total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "" @@ -2294,6 +2458,7 @@ msgstr "" #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "Stripe integracija trenutno ne pordržava granice plaćanja. Međutim možete da podesite datum isteka ispod." @@ -2302,6 +2467,8 @@ msgstr "Stripe integracija trenutno ne pordržava granice plaćanja. Međutim mo #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "Custom Proba" @@ -2310,6 +2477,8 @@ msgstr "Custom Proba" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "Potvrdite da dodate poseban probni period" @@ -2317,6 +2486,8 @@ msgstr "Potvrdite da dodate poseban probni period" #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "2Checkout integracija ne podržaava posebne probne periode. Možete dodati jednokratne probne periode tako što ćete postaviti prvobitnu naplatu različitu od obične naplate." @@ -2325,6 +2496,7 @@ msgstr "2Checkout integracija ne podržaava posebne probne periode. Možete doda #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "Iznos Naplat Za Probni Period" @@ -2333,6 +2505,7 @@ msgstr "Iznos Naplat Za Probni Period" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "za prvi" @@ -2341,6 +2514,7 @@ msgstr "za prvi" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "plaćanje pretplate" @@ -2348,6 +2522,7 @@ msgstr "plaćanje pretplate" #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "Stripe integracija trenutno ne podržava probne periode veće od $0." @@ -2355,6 +2530,7 @@ msgstr "Stripe integracija trenutno ne podržava probne periode veće od $0." #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "Braintree integracija trenutno ne podržava probne periode veće od $0." @@ -2362,6 +2538,7 @@ msgstr "Braintree integracija trenutno ne podržava probne periode veće od $0." #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "Payflow integracija trenutno ne podržava probne periode veće od $0." @@ -2370,6 +2547,7 @@ msgstr "Payflow integracija trenutno ne podržava probne periode veće od $0." #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "Druge Postavke" @@ -2388,6 +2566,7 @@ msgstr "Potvrdi da sakrijete nivo sa strane nivoa članstva i onesposobite regis #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "Isticanje Članstva" @@ -2396,6 +2575,7 @@ msgstr "Isticanje Članstva" #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "Potvrdite ovo da postavite kada ističe članstvo." @@ -2405,6 +2585,8 @@ msgstr "Potvrdite ovo da postavite kada ističe članstvo." #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "Ističe za" @@ -2413,6 +2595,8 @@ msgstr "Ističe za" #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "Postavite trajanje članstva. Sva buduća plaćanja (pretplate ili drugo) će biti otkazana kada članstvo istekne." @@ -2420,11 +2604,14 @@ msgstr "Postavite trajanje članstva. Sva buduća plaćanja (pretplate ili drugo #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "Postavke Sadržaja" #: adminpages/membershiplevels.php:467 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "Kategorije" @@ -2450,12 +2637,14 @@ msgstr "Ciklus Probe" #: adminpages/membershiplevels.php:517 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "Dopusti Registracije" #: adminpages/membershiplevels.php:540 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "BESPLATNO" @@ -2475,12 +2664,15 @@ msgstr "svaki" #: adminpages/reports/sales.php:314 #: adminpages/reports/sales.php:321 #: adminpages/reports/sales.php:332 +#: adminpages/reports/memberships.php:341 +#: adminpages/reports/memberships.php:352 msgid "for" msgstr "za" #: adminpages/membershiplevels.php:566 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "Poslije" @@ -2492,6 +2684,7 @@ msgstr "Poslije" #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "uredi" @@ -2531,6 +2724,7 @@ msgstr "Greška prilikom brisanja narudžbe." #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "Narudžba je uspješno sačuvana." @@ -2542,6 +2736,7 @@ msgstr "Greška prilikom ažuriranja vremenske oznake." #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "Greška prilikom saviranja narudžbe." @@ -2552,6 +2747,7 @@ msgstr "Greška prilikom saviranja narudžbe." #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "Narudžba" @@ -2559,6 +2755,7 @@ msgstr "Narudžba" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "Nova Narudžba" @@ -2590,6 +2787,9 @@ msgstr "Ovo će da generiše kada sačuvate." #: adminpages/dashboard.php:292 #: adminpages/orders.php:429 #: adminpages/orders.php:1333 +#: adminpages/discountcodes.php:787 +#: adminpages/orders.php:475 +#: adminpages/orders.php:1426 msgid "Code" msgstr "Kod" @@ -2597,6 +2797,7 @@ msgstr "Kod" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "Nasumično generisan za Vas." @@ -2604,6 +2805,7 @@ msgstr "Nasumično generisan za Vas." #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "Korisnički ID" @@ -2612,6 +2814,8 @@ msgstr "Korisnički ID" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "ID Nivoa Članstva" @@ -2620,6 +2824,7 @@ msgstr "ID Nivoa Članstva" #: includes/privacy.php:245 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "Ime za Naplatu" @@ -2628,6 +2833,7 @@ msgstr "Ime za Naplatu" #: includes/privacy.php:249 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "Ime Ulice za Naplatu" @@ -2637,6 +2843,7 @@ msgstr "Ime Ulice za Naplatu" #: includes/privacy.php:358 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "Ime Grada za Naplatu" @@ -2645,6 +2852,7 @@ msgstr "Ime Grada za Naplatu" #: includes/privacy.php:257 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "Ime Oblasti za Naplatu" @@ -2655,6 +2863,7 @@ msgstr "Ime Oblasti za Naplatu" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "Poštanski broj" @@ -2665,6 +2874,7 @@ msgstr "Poštanski broj" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "Ime Države za Naplatu" @@ -2674,6 +2884,7 @@ msgstr "Ime Države za Naplatu" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "Broj Telefona za Naplatu" @@ -2683,6 +2894,7 @@ msgstr "Broj Telefona za Naplatu" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "Ukupna Suma" @@ -2692,6 +2904,7 @@ msgstr "Ukupna Suma" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "Iznos Kupona" @@ -2705,6 +2918,7 @@ msgstr "Trebalo bi da bude ukupna suma + porez - iznoskupona" #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "Tip Plaćanja" @@ -2713,6 +2927,7 @@ msgstr "Tip Plaćanja" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "npr. PayPal Express, PayPal Standard, Credit Card." @@ -2721,6 +2936,7 @@ msgstr "npr. PayPal Express, PayPal Standard, Credit Card." #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "npr. Visa, MasterCard, AMEX, etc" @@ -2732,6 +2948,8 @@ msgstr "npr. Visa, MasterCard, AMEX, etc" #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "Broj Računa" @@ -2739,6 +2957,7 @@ msgstr "Broj Računa" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "Sve nejasno sem posljednje 4 cifre." @@ -2750,6 +2969,7 @@ msgstr "Sve nejasno sem posljednje 4 cifre." #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "Mjesec Isteka" @@ -2782,6 +3002,10 @@ msgstr "Godina Isteka" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "Status" @@ -2797,6 +3021,9 @@ msgstr "Status" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "Prolaz za Plaćanje" @@ -2804,6 +3031,7 @@ msgstr "Prolaz za Plaćanje" #: paid-memberships-pro.php:157 #: paid-memberships-pro.php:159 #: paid-memberships-pro.php:160 +#: paid-memberships-pro.php:166 msgid "Testing Only" msgstr "Samo Testiram" @@ -2813,6 +3041,7 @@ msgstr "Samo Testiram" #: paid-memberships-pro.php:158 #: paid-memberships-pro.php:160 #: paid-memberships-pro.php:161 +#: paid-memberships-pro.php:167 msgid "Pay by Check" msgstr "Plati Čekom" @@ -2824,6 +3053,8 @@ msgstr "Plati Čekom" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "Okruženje Prolaza za Ppla ćanje" @@ -2838,6 +3069,9 @@ msgstr "Okruženje Prolaza za Ppla ćanje" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "Sandbox/Testiranje" @@ -2852,6 +3086,9 @@ msgstr "Sandbox/Testiranje" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "Uživo/Produkcija" @@ -2860,6 +3097,7 @@ msgstr "Uživo/Produkcija" #: includes/privacy.php:321 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "ID Transakcije za Plaćanje" @@ -2867,6 +3105,7 @@ msgstr "ID Transakcije za Plaćanje" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "Generisano..." @@ -2877,6 +3116,8 @@ msgstr "Generisano..." #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "ID Transakcije za Pretplatu" @@ -2885,6 +3126,7 @@ msgstr "ID Transakcije za Pretplatu" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "" @@ -2893,6 +3135,7 @@ msgstr "" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "ID Partnera (Affiliate)" @@ -2901,6 +3144,7 @@ msgstr "ID Partnera (Affiliate)" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "SubID Partnera ( Affiliate)" @@ -2909,6 +3153,7 @@ msgstr "SubID Partnera ( Affiliate)" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "Belješke" @@ -2917,6 +3162,7 @@ msgstr "Belješke" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "Sačuvaj Narudžbu" @@ -2925,6 +3171,7 @@ msgstr "Sačuvaj Narudžbu" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "Dodaj Novu Narudžbu" @@ -2935,6 +3182,8 @@ msgstr "Dodaj Novu Narudžbu" #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "Izvedi do CSV" @@ -2948,6 +3197,8 @@ msgstr "Izvedi do CSV" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "Pretraži Narudžbe" @@ -2956,6 +3207,8 @@ msgstr "Pretraži Narudžbe" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "%d pronađene narudžbe" @@ -2971,6 +3224,7 @@ msgstr "%d pronađene narudžbe" #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "Korisnik" @@ -2984,6 +3238,7 @@ msgstr "Korisnik" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "Plaćanje" @@ -2992,6 +3247,7 @@ msgstr "Plaćanje" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "Transakcijski ID" @@ -3011,6 +3267,8 @@ msgstr "Transakcijski ID" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "obrisano" @@ -3019,6 +3277,7 @@ msgstr "obrisano" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "Pretplata" @@ -3028,6 +3287,7 @@ msgstr "Pretplata" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "Brisanje narudžbi je trajno i može da utiče na aktivne korisnike. Da li ste sigurni da želite da obrišete narudžbu %s?" @@ -3041,6 +3301,7 @@ msgstr "Brisanje narudžbi je trajno i može da utiče na aktivne korisnike. Da #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "Nijedna narudžba nije pronađena" @@ -3060,6 +3321,8 @@ msgstr "Nijedna narudžba nije pronađena" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "Prikaži" @@ -3081,6 +3344,8 @@ msgstr "Prikaži" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "Svi Nivoi" @@ -3100,6 +3365,8 @@ msgstr "Stari Članovi" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "Pretraži Članove" @@ -3143,6 +3410,8 @@ msgstr "Završen" #: includes/profile.php:515 #: includes/profile.php:511 #: adminpages/advancedsettings.php:331 +#: adminpages/advancedsettings.php:338 +#: includes/profile.php:551 msgid "Never" msgstr "Nikad" @@ -3180,6 +3449,7 @@ msgstr "Vaše informacije o plaćanju su ažurirane." #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "Prolazi za Plaćanje (npr. PayPal)" @@ -3187,6 +3457,7 @@ msgstr "Prolazi za Plaćanje (npr. PayPal)" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "SSL Postavke" @@ -3214,6 +3485,7 @@ msgstr "Prodavač" #: classes/gateways/class.pmprogateway_paypalexpress.php:162 #: classes/gateways/class.pmprogateway_paypalstandard.php:154 #: classes/gateways/class.pmprogateway_paypalexpress.php:172 +#: classes/gateways/class.pmprogateway_paypalexpress.php:173 msgid "Gateway Account Email" msgstr "Email Prolaza za Plaćanje (npr. Email Paypal)" @@ -3224,6 +3496,8 @@ msgstr "Email Prolaza za Plaćanje (npr. Email Paypal)" #: classes/gateways/class.pmprogateway_paypalstandard.php:162 #: classes/gateways/class.pmprogateway_twocheckout.php:120 #: classes/gateways/class.pmprogateway_paypalexpress.php:180 +#: classes/gateways/class.pmprogateway_paypalexpress.php:181 +#: classes/gateways/class.pmprogateway_twocheckout.php:127 msgid "API Username" msgstr "API Korisničko Ime" @@ -3234,6 +3508,8 @@ msgstr "API Korisničko Ime" #: classes/gateways/class.pmprogateway_paypalstandard.php:170 #: classes/gateways/class.pmprogateway_twocheckout.php:129 #: classes/gateways/class.pmprogateway_paypalexpress.php:188 +#: classes/gateways/class.pmprogateway_paypalexpress.php:189 +#: classes/gateways/class.pmprogateway_twocheckout.php:136 msgid "API Password" msgstr "API Lozinka" @@ -3242,6 +3518,7 @@ msgstr "API Lozinka" #: classes/gateways/class.pmprogateway_paypalexpress.php:186 #: classes/gateways/class.pmprogateway_paypalstandard.php:178 #: classes/gateways/class.pmprogateway_paypalexpress.php:196 +#: classes/gateways/class.pmprogateway_paypalexpress.php:197 msgid "API Signature" msgstr "API Potpis" @@ -3261,6 +3538,7 @@ msgstr "Ključ za Transakciju" #: classes/gateways/class.pmprogateway_stripe.php:570 #: classes/gateways/class.pmprogateway_stripe.php:576 #: classes/gateways/class.pmprogateway_stripe.php:340 +#: classes/gateways/class.pmprogateway_stripe.php:366 msgid "Secret Key" msgstr "Tajni Ključ" @@ -3270,6 +3548,7 @@ msgstr "Tajni Ključ" #: classes/gateways/class.pmprogateway_stripe.php:554 #: classes/gateways/class.pmprogateway_stripe.php:560 #: classes/gateways/class.pmprogateway_stripe.php:324 +#: classes/gateways/class.pmprogateway_stripe.php:350 msgid "Publishable Key" msgstr "Ključ koji se može objaviti" @@ -3277,26 +3556,31 @@ msgstr "Ključ koji se može objaviti" #: adminpages/paymentsettings.php:374 #: classes/gateways/class.pmprogateway_braintree.php:313 #: classes/gateways/class.pmprogateway_cybersource.php:94 +#: classes/gateways/class.pmprogateway_braintree.php:320 msgid "Merchant ID" msgstr "ID Trgovca" #: adminpages/paymentsettings.php:316 #: classes/gateways/class.pmprogateway_braintree.php:321 +#: classes/gateways/class.pmprogateway_braintree.php:328 msgid "Public Key" msgstr "Javni Ključ" #: adminpages/paymentsettings.php:324 #: classes/gateways/class.pmprogateway_braintree.php:329 +#: classes/gateways/class.pmprogateway_braintree.php:336 msgid "Private Key" msgstr "Privatni Ključ" #: adminpages/paymentsettings.php:332 #: classes/gateways/class.pmprogateway_braintree.php:337 +#: classes/gateways/class.pmprogateway_braintree.php:344 msgid "Client-Side Encryption Key" msgstr "" #: adminpages/paymentsettings.php:365 #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "Tajna Riječ" @@ -3312,12 +3596,14 @@ msgstr "" #: adminpages/paymentsettings.php:400 #: adminpages/paymentsettings.php:199 #: adminpages/paymentsettings.php:206 +#: adminpages/paymentsettings.php:204 msgid "Currency" msgstr "Valuta" #: adminpages/paymentsettings.php:420 #: adminpages/paymentsettings.php:220 #: adminpages/paymentsettings.php:227 +#: adminpages/paymentsettings.php:225 msgid "Accepted Credit Card Types" msgstr "Odobreni Tipovi Kreditnih kartica" @@ -3337,6 +3623,8 @@ msgstr "Na koga osloviti ček. Gdje ga poslati. Prikaži na strani za provjeru, #: classes/gateways/class.pmprogateway_stripe.php:629 #: classes/gateways/class.pmprogateway_stripe.php:635 #: classes/gateways/class.pmprogateway_stripe.php:399 +#: adminpages/orders.php:570 +#: classes/gateways/class.pmprogateway_stripe.php:425 msgid "Show Billing Address Fields" msgstr "Prikaži Polja Adrese za Plaćanje" @@ -3346,30 +3634,35 @@ msgstr "Prikaži Polja Adrese za Plaćanje" #: classes/gateways/class.pmprogateway_stripe.php:638 #: classes/gateways/class.pmprogateway_stripe.php:644 #: classes/gateways/class.pmprogateway_stripe.php:408 +#: classes/gateways/class.pmprogateway_stripe.php:434 msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.
If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "Stripe nije potrbna polja za adresu za plaćanje" #: adminpages/paymentsettings.php:457 #: adminpages/paymentsettings.php:234 #: adminpages/paymentsettings.php:241 +#: adminpages/paymentsettings.php:239 msgid "Sales Tax" msgstr "Porez Na Prodaju" #: adminpages/paymentsettings.php:460 #: adminpages/paymentsettings.php:237 #: adminpages/paymentsettings.php:244 +#: adminpages/paymentsettings.php:242 msgid "Tax State" msgstr "Stanje Poreza" #: adminpages/paymentsettings.php:461 #: adminpages/paymentsettings.php:238 #: adminpages/paymentsettings.php:245 +#: adminpages/paymentsettings.php:243 msgid "abbreviation, e.g. \"PA\"" msgstr "" #: adminpages/paymentsettings.php:463 #: adminpages/paymentsettings.php:240 #: adminpages/paymentsettings.php:247 +#: adminpages/paymentsettings.php:245 msgid "decimal, e.g. \"0.06\"" msgstr "" @@ -3380,18 +3673,21 @@ msgstr "" #: adminpages/paymentsettings.php:469 #: adminpages/paymentsettings.php:253 #: adminpages/paymentsettings.php:266 +#: adminpages/paymentsettings.php:264 msgid "Force SSL" msgstr "" #: adminpages/paymentsettings.php:475 #: adminpages/paymentsettings.php:268 #: adminpages/paymentsettings.php:281 +#: adminpages/paymentsettings.php:279 msgid "Yes (with JavaScript redirects)" msgstr "" #: adminpages/paymentsettings.php:482 #: adminpages/paymentsettings.php:278 #: adminpages/paymentsettings.php:291 +#: adminpages/paymentsettings.php:289 msgid "SSL Seal Code" msgstr "" @@ -3408,6 +3704,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:205 #: classes/gateways/class.pmprogateway_paypalstandard.php:186 #: classes/gateways/class.pmprogateway_paypalexpress.php:215 +#: classes/gateways/class.pmprogateway_paypalexpress.php:216 msgid "IPN Handler URL" msgstr "" @@ -3415,11 +3712,13 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:199 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 #: classes/gateways/class.pmprogateway_paypalexpress.php:218 +#: classes/gateways/class.pmprogateway_paypalexpress.php:219 msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to " msgstr "" #: adminpages/paymentsettings.php:507 #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "" @@ -3440,6 +3739,7 @@ msgstr "" #: adminpages/paymentsettings.php:523 #: adminpages/paymentsettings.php:531 #: classes/gateways/class.pmprogateway_braintree.php:345 +#: classes/gateways/class.pmprogateway_braintree.php:352 msgid "Web Hook URL" msgstr "" @@ -3449,6 +3749,7 @@ msgstr "" #: adminpages/paymentsettings.php:535 #: classes/gateways/class.pmprogateway_braintree.php:348 +#: classes/gateways/class.pmprogateway_braintree.php:355 msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to" msgstr "" @@ -3463,6 +3764,9 @@ msgstr "" #: adminpages/pagesettings.php:508 #: adminpages/pagesettings.php:512 #: adminpages/paymentsettings.php:316 +#: adminpages/advancedsettings.php:574 +#: adminpages/pagesettings.php:511 +#: adminpages/paymentsettings.php:314 msgid "Save Settings" msgstr "Sačuvaj promijene" @@ -3584,6 +3888,7 @@ msgstr "Naredne stranice su kreirane za Vas" #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "Upravljaj stranicama dodeljenim za svaku potrebnu Paid Membership Pro stranicu." @@ -3591,6 +3896,7 @@ msgstr "Upravljaj stranicama dodeljenim za svaku potrebnu Paid Membership Pro st #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "Dodjeli svaku Wordpress stranicu za svaku potrebnu Paid Membership Pro stranicu ili" @@ -3598,6 +3904,7 @@ msgstr "Dodjeli svaku Wordpress stranicu za svaku potrebnu Paid Membership Pro s #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "Kliknite ovdje dami generišemo stranice za vas" @@ -3605,6 +3912,7 @@ msgstr "Kliknite ovdje dami generišemo stranice za vas" #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "Stranica Naloga" @@ -3643,6 +3951,16 @@ msgstr "Stranica Naloga" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "uredi stranicu" @@ -3681,6 +3999,16 @@ msgstr "uredi stranicu" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:246 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "prikaži stranicu" @@ -3711,6 +4039,13 @@ msgstr "prikaži stranicu" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:248 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "Obuhvati i shortcode" @@ -3718,6 +4053,7 @@ msgstr "Obuhvati i shortcode" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "Stranica Za Informacije o Palćanju" @@ -3725,6 +4061,7 @@ msgstr "Stranica Za Informacije o Palćanju" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "Zatvori Stranicu" @@ -3732,6 +4069,7 @@ msgstr "Zatvori Stranicu" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "" @@ -3739,6 +4077,7 @@ msgstr "" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "Stranica za Potvrdu" @@ -3746,6 +4085,7 @@ msgstr "Stranica za Potvrdu" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "Stranica Za Frakturu" @@ -3753,6 +4093,7 @@ msgstr "Stranica Za Frakturu" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "Stranica za Nivoe" @@ -3817,6 +4158,7 @@ msgstr "Greška prilikom brisanja koda. Pokušajte ponovo." #: adminpages/discountcodes.php:796 #: adminpages/discountcodes.php:354 #: adminpages/discountcodes.php:798 +#: adminpages/discountcodes.php:799 msgid "Code not found." msgstr "Kod nije pronađen." @@ -3832,6 +4174,7 @@ msgstr "Uredi Kod Za Popust" #: adminpages/discountcodes.php:735 #: adminpages/discountcodes.php:377 #: adminpages/discountcodes.php:737 +#: adminpages/discountcodes.php:738 msgid "Add New Discount Code" msgstr "Dodaj Novi Kod Za Popust" @@ -3843,6 +4186,7 @@ msgstr "Dodaj Novi Kod Za Popust" #: adminpages/discountcodes.php:489 #: includes/profile.php:501 #: includes/profile.php:497 +#: includes/profile.php:537 msgid "Start Date" msgstr "Datum Početka" @@ -3852,6 +4196,7 @@ msgstr "Datum Početka" #: adminpages/discountcodes.php:787 #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:789 +#: adminpages/discountcodes.php:790 msgid "Uses" msgstr "Korisnici" @@ -3868,12 +4213,14 @@ msgstr "Iznos Naplate" #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "Kodovi za Popust Itnosa Članstva" #: adminpages/discountcodes.php:535 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "Pretraži kodove za popust" @@ -3881,12 +4228,14 @@ msgstr "Pretraži kodove za popust" #: adminpages/reports/login.php:81 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "Pretraga" #: adminpages/discountcodes.php:549 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "Početak" @@ -3894,6 +4243,7 @@ msgstr "Početak" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "Nivoi" @@ -3924,6 +4274,7 @@ msgstr "Onemogućeno" #: adminpages/emailsettings.php:61 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "" @@ -3933,11 +4284,13 @@ msgstr "" #: adminpages/emailsettings.php:69 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "" #: adminpages/emailsettings.php:77 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "" @@ -3993,72 +4346,84 @@ msgstr "Zadan WP email notifikacija" #: adminpages/advancedsettings.php:35 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "Vaše napredne postavke su ažurirane." #: adminpages/advancedsettings.php:85 #: adminpages/advancedsettings.php:164 #: adminpages/advancedsettings.php:166 +#: adminpages/advancedsettings.php:173 msgid "Message for Logged-in Non-members" msgstr "Poruka za neprijavljene korisnike." #: adminpages/advancedsettings.php:89 #: adminpages/advancedsettings.php:168 #: adminpages/advancedsettings.php:170 +#: adminpages/advancedsettings.php:177 msgid "This message replaces the post content for non-members. Available variables" msgstr "Ova poruka zamijenjuje sadržaj posta za neprijavljene korisnike" #: adminpages/advancedsettings.php:94 #: adminpages/advancedsettings.php:173 #: adminpages/advancedsettings.php:175 +#: adminpages/advancedsettings.php:182 msgid "Message for Logged-out Users" msgstr "Poruka za odjavljene korisnike" #: adminpages/advancedsettings.php:98 #: adminpages/advancedsettings.php:177 #: adminpages/advancedsettings.php:179 +#: adminpages/advancedsettings.php:186 msgid "This message replaces the post content for logged-out visitors." msgstr "Ova poruka zamijnjuje sadržaj posta za odjavljene korisnike" #: adminpages/advancedsettings.php:103 #: adminpages/advancedsettings.php:182 #: adminpages/advancedsettings.php:184 +#: adminpages/advancedsettings.php:191 msgid "Message for RSS Feed" msgstr "" #: adminpages/advancedsettings.php:107 #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "This message replaces the post content in RSS feeds." msgstr "" #: adminpages/advancedsettings.php:113 #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:212 +#: adminpages/advancedsettings.php:219 msgid "Show Excerpts to Non-Members?" msgstr "" #: adminpages/advancedsettings.php:117 #: adminpages/advancedsettings.php:214 #: adminpages/advancedsettings.php:216 +#: adminpages/advancedsettings.php:223 msgid "No - Hide excerpts." msgstr "" #: adminpages/advancedsettings.php:118 #: adminpages/advancedsettings.php:215 #: adminpages/advancedsettings.php:217 +#: adminpages/advancedsettings.php:224 msgid "Yes - Show excerpts." msgstr "" #: adminpages/advancedsettings.php:129 #: adminpages/advancedsettings.php:338 #: adminpages/advancedsettings.php:353 +#: adminpages/advancedsettings.php:360 msgid "Hide Ads From All Members" msgstr "Sakrij Reklame Od Svih Članova" #: adminpages/advancedsettings.php:130 #: adminpages/advancedsettings.php:339 #: adminpages/advancedsettings.php:354 +#: adminpages/advancedsettings.php:361 msgid "Hide Ads From Certain Members" msgstr "Sakrij Reklame od Određenih Korisnika" @@ -4069,12 +4434,14 @@ msgstr "Reklame od sljedećih dodataka če automatski biti isključene" #: adminpages/advancedsettings.php:138 #: adminpages/advancedsettings.php:346 #: adminpages/advancedsettings.php:361 +#: adminpages/advancedsettings.php:368 msgid "To hide ads in your template code, use code like the following" msgstr "Da bi sakrili reklame u vašem html kodu koristite sljedeći kod" #: adminpages/advancedsettings.php:149 #: adminpages/advancedsettings.php:355 #: adminpages/advancedsettings.php:370 +#: adminpages/advancedsettings.php:377 msgid "Choose Levels to Hide Ads From" msgstr "Izaberi nivo od kojih da saktiješ reklame" @@ -4089,12 +4456,14 @@ msgstr "Preusmjeri sav saobraćaj na stranice za registraciju na stranicu za pre #: adminpages/advancedsettings.php:390 #: adminpages/advancedsettings.php:392 #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "multisite only" msgstr "" #: adminpages/advancedsettings.php:195 #: adminpages/advancedsettings.php:241 #: adminpages/advancedsettings.php:256 +#: adminpages/advancedsettings.php:263 msgid "Use reCAPTCHA?" msgstr "Koristi reCAPTCHA?" @@ -4106,18 +4475,21 @@ msgstr "Da- samo besplatni korisnici." #: adminpages/advancedsettings.php:201 #: adminpages/advancedsettings.php:247 #: adminpages/advancedsettings.php:262 +#: adminpages/advancedsettings.php:269 msgid "Yes - All memberships." msgstr "Da - Svi korisnici" #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "A free reCAPTCHA key is required." msgstr "Besplatni reCAPTCHA kod je potreban." #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "Click here to signup for reCAPTCHA" msgstr "Klikni ovdje da se prijaviš za reCPATCHA" @@ -4132,12 +4504,14 @@ msgstr "" #: adminpages/advancedsettings.php:218 #: adminpages/advancedsettings.php:229 #: adminpages/advancedsettings.php:231 +#: adminpages/advancedsettings.php:238 msgid "Require Terms of Service on signups?" msgstr "Potrebni uslovi korišćenja na registaciji?" #: adminpages/advancedsettings.php:225 #: adminpages/advancedsettings.php:236 #: adminpages/advancedsettings.php:238 +#: adminpages/advancedsettings.php:245 msgid "If yes, create a WordPress page containing your TOS agreement and assign it using the dropdown above." msgstr "Ako da, onda kreiraj WP stranicu na kojoj ćete prikazati vaše uslove korišćenja." @@ -4155,6 +4529,8 @@ msgstr "Status Pretplate" #: adminpages/reports/sales.php:295 #: adminpages/advancedsettings.php:322 #: adminpages/reports/sales.php:313 +#: adminpages/advancedsettings.php:329 +#: adminpages/reports/memberships.php:332 msgid "Daily" msgstr "Dnevni" @@ -4165,6 +4541,8 @@ msgstr "Dnevni" #: adminpages/reports/sales.php:296 #: adminpages/advancedsettings.php:328 #: adminpages/reports/sales.php:314 +#: adminpages/advancedsettings.php:335 +#: adminpages/reports/memberships.php:333 msgid "Monthly" msgstr "Mjesečni" @@ -4173,11 +4551,13 @@ msgstr "Mjesečni" #: adminpages/reports/memberships.php:335 #: adminpages/reports/sales.php:297 #: adminpages/reports/sales.php:315 +#: adminpages/reports/memberships.php:334 msgid "Annual" msgstr "Godišnji" #: adminpages/reports/memberships.php:299 #: adminpages/reports/memberships.php:339 +#: adminpages/reports/memberships.php:338 msgid "Signups vs. Cancellations" msgstr "Prijave vs. Otkazivanja" @@ -4186,6 +4566,7 @@ msgstr "Prijave vs. Otkazivanja" #: adminpages/reports/memberships.php:385 #: adminpages/reports/sales.php:342 #: adminpages/reports/sales.php:360 +#: adminpages/reports/memberships.php:384 msgid "Generate Report" msgstr "Generiši Izvještaj" @@ -4255,6 +4636,7 @@ msgstr "Posjete, Pregledi, i Izvještaji Prijava" #: classes/class-pmpro-members-list-table.php:234 #: classes/class-pmpro-members-list-table.php:233 #: adminpages/reports/login.php:105 +#: adminpages/reports/login.php:111 msgid "All Users" msgstr "Svi Korisnici" @@ -4464,6 +4846,8 @@ msgstr "Nepoznata greška. Molmo kontaktirajte nas da vam uspostavimo račun man #: classes/gateways/class.pmprogateway_paypalexpress.php:401 #: classes/gateways/class.pmprogateway_paypalexpress.php:352 #: classes/gateways/class.pmprogateway_paypalexpress.php:411 +#: classes/gateways/class.pmprogateway_paypalexpress.php:353 +#: classes/gateways/class.pmprogateway_paypalexpress.php:412 msgid "The PayPal Token was lost." msgstr "" @@ -4514,6 +4898,7 @@ msgstr "Prolaz za Plaćanje mora biti uspostavljen prije nego što ijedna naplat #: classes/class.pmproemail.php:907 #: includes/email.php:459 #: classes/class.pmproemail.php:900 +#: classes/class.pmproemail.php:1033 msgid "Your membership has been cancelled." msgstr "Vaša pretplata je otkazana." @@ -4572,6 +4957,18 @@ msgstr "Greška prilikom ažuriranja informacija o plaćanju." #: js/blocks.build.js:1342 #: js/blocks.build.js:1502 #: classes/class-pmpro-admin-activity-email.php:349 +#: blocks/account-invoices-section/block.js:47 +#: blocks/account-links-section/block.js:47 +#: blocks/account-membership-section/block.js:45 +#: blocks/account-page/block.js:72 +#: blocks/account-profile-section/block.js:45 +#: blocks/billing-page/block.js:44 +#: blocks/cancel-page/block.js:44 +#: blocks/checkout-page/block.js:58 +#: blocks/confirmation-page/block.js:46 +#: blocks/invoice-page/block.js:45 +#: blocks/levels-page/block.js:44 +#: blocks/member-profile-edit/block.js:37 msgid "Paid Memberships Pro" msgstr "" @@ -4606,6 +5003,7 @@ msgstr "" #: adminpages/orders.php:1014 #: includes/metaboxes.php:19 #: adminpages/orders.php:1015 +#: adminpages/orders.php:1103 msgid "All" msgstr "" @@ -4704,6 +5102,18 @@ msgstr "" #: adminpages/orders.php:913 #: adminpages/orders.php:1537 #: adminpages/orders.php:1546 +#: adminpages/orders.php:704 +#: adminpages/orders.php:996 +#: adminpages/orders.php:1689 +#: adminpages/orders.php:1698 +#: classes/class.pmproemail.php:261 +#: classes/class.pmproemail.php:327 +#: includes/profile.php:167 +#: includes/profile.php:483 +#: includes/profile.php:484 +#: includes/profile.php:556 +#: includes/profile.php:557 +#: includes/profile.php:558 msgid "N/A" msgstr "" @@ -4732,6 +5142,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:76 #: classes/gateways/class.pmprogateway_stripe.php:82 #: classes/gateways/class.pmprogateway_stripe.php:1338 +#: classes/gateways/class.pmprogateway_stripe.php:1463 msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade." msgstr "" @@ -4772,6 +5183,7 @@ msgstr "" #: includes/adminpages.php:52 #: includes/adminpages.php:158 #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Members" msgstr "" @@ -4816,47 +5228,56 @@ msgstr "" #: adminpages/advancedsettings.php:106 #: includes/updates/upgrade_1.php:7 #: adminpages/advancedsettings.php:108 +#: adminpages/advancedsettings.php:116 msgid "This content is for !!levels!! members only.
Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:116 #: includes/updates/upgrade_1.php:13 #: adminpages/advancedsettings.php:118 +#: adminpages/advancedsettings.php:126 msgid "This content is for members only. Visit the site and log in/register to read." msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -4864,113 +5285,135 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:199 #: adminpages/advancedsettings.php:201 +#: adminpages/advancedsettings.php:208 msgid "Filter searches and archives?" msgstr "" #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:205 +#: adminpages/advancedsettings.php:212 msgid "No - Non-members will see restricted posts/pages in searches and archives." msgstr "" #: adminpages/advancedsettings.php:204 #: adminpages/advancedsettings.php:206 +#: adminpages/advancedsettings.php:213 msgid "Yes - Only members will see restricted posts/pages in searches and archives." msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:333 #: adminpages/advancedsettings.php:348 +#: adminpages/advancedsettings.php:355 msgid "Hide Ads From Members?" msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -4996,6 +5439,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -5059,6 +5503,7 @@ msgstr "" #: adminpages/license.php:49 #: adminpages/dashboard.php:178 #: adminpages/license.php:41 +#: adminpages/license.php:53 msgid "Your license is invalid or expired." msgstr "" @@ -5073,6 +5518,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -5178,6 +5624,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -5221,6 +5668,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -5233,31 +5681,39 @@ msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 msgid "%d discount codes found." msgstr "" @@ -5283,6 +5739,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -5301,6 +5764,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -5318,6 +5787,11 @@ msgstr "" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "" @@ -5326,23 +5800,28 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "" #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -5383,192 +5862,241 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:960 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:170 #: includes/privacy.php:363 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -5598,6 +6126,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "" @@ -5615,12 +6144,14 @@ msgstr "" #: adminpages/license.php:59 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -5628,14 +6159,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -5652,35 +6186,44 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -5690,6 +6233,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -5697,6 +6242,7 @@ msgstr "" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -5704,6 +6250,7 @@ msgstr "" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "" @@ -5711,6 +6258,7 @@ msgstr "" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "" @@ -5718,6 +6266,7 @@ msgstr "" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "" @@ -5725,6 +6274,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -5732,6 +6282,7 @@ msgstr "" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "" @@ -5739,6 +6290,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -5746,6 +6298,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -5753,6 +6306,7 @@ msgstr "" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "" @@ -5760,6 +6314,7 @@ msgstr "" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "" @@ -5767,6 +6322,7 @@ msgstr "" #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "" @@ -5777,6 +6333,7 @@ msgstr "" #: adminpages/orders.php:1077 #: adminpages/orders.php:1069 #: adminpages/orders.php:1070 +#: adminpages/orders.php:1158 msgid "This Month" msgstr "" @@ -5784,6 +6341,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -5793,6 +6351,7 @@ msgstr "" #: adminpages/orders.php:1081 #: adminpages/orders.php:1073 #: adminpages/orders.php:1074 +#: adminpages/orders.php:1162 msgid "This Year" msgstr "" @@ -5800,6 +6359,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -5807,6 +6367,7 @@ msgstr "" #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "" @@ -5887,24 +6448,28 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" @@ -5931,60 +6496,77 @@ msgstr "" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -5994,6 +6576,8 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" @@ -6006,12 +6590,16 @@ msgstr "" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -6019,24 +6607,28 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "" @@ -6046,31 +6638,37 @@ msgstr "" #: adminpages/paymentsettings.php:122 #: adminpages/paymentsettings.php:127 +#: adminpages/paymentsettings.php:125 msgid "Choose a Gateway" msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" #: adminpages/paymentsettings.php:194 #: adminpages/paymentsettings.php:201 +#: adminpages/paymentsettings.php:199 msgid "Currency and Tax Settings" msgstr "" #: adminpages/paymentsettings.php:215 #: adminpages/paymentsettings.php:222 +#: adminpages/paymentsettings.php:220 msgid "Not all currencies will be supported by every gateway. Please check with your gateway." msgstr "" #: adminpages/paymentsettings.php:239 #: adminpages/paymentsettings.php:246 +#: adminpages/paymentsettings.php:244 msgid "Tax Rate" msgstr "" @@ -6080,11 +6678,13 @@ msgstr "" #: adminpages/paymentsettings.php:260 #: adminpages/paymentsettings.php:273 +#: adminpages/paymentsettings.php:271 msgid "Your Site URL starts with https:// and so PMPro will allow your entire site to be served over HTTPS." msgstr "" #: adminpages/paymentsettings.php:270 #: adminpages/paymentsettings.php:283 +#: adminpages/paymentsettings.php:281 msgid "Recommended: Yes. Try the JavaScript redirects setting if you are having issues with infinite redirect loops." msgstr "" @@ -6094,16 +6694,19 @@ msgstr "" #: adminpages/paymentsettings.php:287 #: adminpages/paymentsettings.php:306 +#: adminpages/paymentsettings.php:304 msgid "Extra HTTPS URL Filter" msgstr "" #: adminpages/paymentsettings.php:290 #: adminpages/paymentsettings.php:309 +#: adminpages/paymentsettings.php:307 msgid "Pass all generated HTML through a URL filter to add HTTPS to URLs used on secure pages. Check this if you are using SSL and have warnings on your checkout pages." msgstr "" #: adminpages/reports.php:19 #: adminpages/reports.php:18 +#: adminpages/reports.php:21 msgid "Back to Reports Dashboard" msgstr "" @@ -6131,6 +6734,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -6141,6 +6745,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -6174,6 +6779,7 @@ msgstr "" #: adminpages/reports/memberships.php:52 #: adminpages/reports/sales.php:53 #: adminpages/reports/sales.php:542 +#: adminpages/reports/sales.php:543 msgid "All Time" msgstr "" @@ -6216,29 +6822,35 @@ msgid "All Cancellations" msgstr "" #: adminpages/reports/memberships.php:338 +#: adminpages/reports/memberships.php:337 msgid "Signups vs. All Cancellations" msgstr "" #: adminpages/reports/memberships.php:340 +#: adminpages/reports/memberships.php:339 msgid "Signups vs. Expirations" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -6457,63 +7069,77 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:962 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:463 #: classes/class.pmproemail.php:475 #: classes/class.pmproemail.php:468 +#: classes/class.pmproemail.php:601 msgid "Your billing information has been updated at %s" msgstr "" #: classes/class.pmproemail.php:513 #: classes/class.pmproemail.php:525 #: classes/class.pmproemail.php:518 +#: classes/class.pmproemail.php:651 msgid "Billing information has been updated for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -6526,30 +7152,36 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -6557,6 +7189,7 @@ msgstr "" #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:167 +#: paid-memberships-pro.php:173 msgid "Authorize.net" msgstr "" @@ -6572,14 +7205,17 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:91 #: classes/gateways/class.pmprogateway_stripe.php:97 #: classes/gateways/class.pmprogateway_stripe.php:1353 +#: classes/gateways/class.pmprogateway_stripe.php:1478 msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" @@ -6587,10 +7223,13 @@ msgstr "" #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:167 #: paid-memberships-pro.php:168 +#: classes/gateways/class.pmprogateway_braintree.php:258 +#: paid-memberships-pro.php:174 msgid "Braintree Payments" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:308 +#: classes/gateways/class.pmprogateway_braintree.php:315 msgid "Braintree Settings" msgstr "" @@ -6604,21 +7243,30 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:750 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -6626,11 +7274,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -6932,6 +7583,7 @@ msgstr "" #: paid-memberships-pro.php:161 #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:164 +#: paid-memberships-pro.php:170 msgid "PayPal Website Payments Pro" msgstr "" @@ -6939,6 +7591,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:141 #: classes/gateways/class.pmprogateway_paypalstandard.php:133 #: classes/gateways/class.pmprogateway_paypalexpress.php:151 +#: classes/gateways/class.pmprogateway_paypalexpress.php:152 msgid "PayPal Settings" msgstr "" @@ -6946,12 +7599,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:185 #: classes/gateways/class.pmprogateway_paypalexpress.php:194 #: classes/gateways/class.pmprogateway_paypalexpress.php:204 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 msgid "Confirmation Step" msgstr "" @@ -6963,6 +7618,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:854 #: classes/gateways/class.pmprogateway_paypal.php:726 #: classes/gateways/class.pmprogateway_paypalexpress.php:865 +#: classes/gateways/class.pmprogateway_paypalexpress.php:866 msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward." msgstr "" @@ -6971,11 +7627,14 @@ msgstr "" #: paid-memberships-pro.php:162 #: classes/gateways/class.pmprogateway_paypalexpress.php:94 #: paid-memberships-pro.php:163 +#: classes/gateways/class.pmprogateway_paypalexpress.php:95 +#: paid-memberships-pro.php:169 msgid "PayPal Express" msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -6984,6 +7643,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -6992,6 +7652,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -6999,6 +7660,7 @@ msgstr "" #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:166 +#: paid-memberships-pro.php:172 msgid "PayPal Standard" msgstr "" @@ -7016,6 +7678,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:258 #: classes/gateways/class.pmprogateway_stripe.php:216 #: paid-memberships-pro.php:162 +#: classes/gateways/class.pmprogateway_stripe.php:234 +#: paid-memberships-pro.php:168 msgid "Stripe" msgstr "" @@ -7027,6 +7691,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -7035,6 +7700,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -7046,6 +7712,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -7057,6 +7724,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -7068,6 +7736,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -7076,6 +7745,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -7087,6 +7757,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -7098,6 +7769,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -7106,6 +7778,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -7117,6 +7790,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -7125,6 +7799,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -7148,6 +7823,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -7164,6 +7841,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -7172,6 +7851,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -7180,6 +7860,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -7188,6 +7869,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -7195,6 +7877,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -7203,6 +7886,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -7216,6 +7900,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -7224,6 +7910,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -7232,6 +7919,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -7241,6 +7929,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -7258,6 +7948,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -7266,6 +7958,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -7287,6 +7980,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -7295,6 +7990,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -7303,6 +7999,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -7311,6 +8008,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -7319,6 +8017,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -7327,6 +8026,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -7335,6 +8035,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -7343,6 +8044,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -7351,6 +8053,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -7359,6 +8062,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -7367,6 +8071,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -7379,6 +8084,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -7387,6 +8093,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -7395,6 +8102,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -7403,6 +8111,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -7411,6 +8120,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -7429,6 +8139,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "" @@ -7481,6 +8192,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "" @@ -7492,6 +8205,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "" @@ -7501,6 +8215,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "" @@ -7510,6 +8225,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "" @@ -7527,6 +8243,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "" @@ -7538,6 +8256,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 msgid "Error: Unkown error while refunding charge #%s" msgstr "" @@ -7547,6 +8266,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -7567,6 +8287,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -7575,6 +8299,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -7584,6 +8309,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -7593,6 +8319,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -7604,6 +8331,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -7615,6 +8343,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -7626,6 +8355,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -7637,34 +8367,42 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:59 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "" @@ -7707,6 +8445,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -7719,6 +8458,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -7731,6 +8471,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -8968,6 +9709,7 @@ msgstr "" #: includes/email-templates.php:68 #: shortcodes/pmpro_account.php:43 +#: adminpages/orders.php:1431 msgid "Billing" msgstr "" @@ -9558,14 +10300,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -9574,18 +10319,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -9597,6 +10346,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -9742,6 +10492,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -9871,6 +10622,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -9878,6 +10630,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -9909,6 +10662,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -9918,6 +10672,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -9925,6 +10680,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -10029,6 +10785,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -10036,6 +10794,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -10043,6 +10802,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -10050,6 +10810,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -10121,6 +10882,7 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" @@ -10129,6 +10891,8 @@ msgstr "" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "" @@ -10139,121 +10903,142 @@ msgstr "" #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -10265,6 +11050,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -10393,18 +11181,21 @@ msgstr "" #: paid-memberships-pro.php:162 #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:165 +#: paid-memberships-pro.php:171 msgid "PayPal Payflow Pro/PayPal Pro" msgstr "" #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:168 #: paid-memberships-pro.php:169 +#: paid-memberships-pro.php:175 msgid "Cybersource" msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -10454,6 +11245,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -10492,6 +11284,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -10507,6 +11314,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -10522,6 +11330,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -10554,6 +11363,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -10566,6 +11376,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -10591,11 +11402,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -10603,6 +11419,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -10610,6 +11427,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -10632,6 +11450,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -10657,6 +11476,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -10664,6 +11484,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -10696,6 +11517,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -10718,6 +11540,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -10728,11 +11551,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -10752,6 +11586,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -10765,6 +11600,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -10774,6 +11610,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -10783,10 +11620,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -10797,6 +11636,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -10804,6 +11644,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -10813,6 +11654,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -10822,12 +11664,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -10835,6 +11680,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -10843,6 +11690,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -10850,6 +11698,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -10857,27 +11706,32 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: paid-memberships-pro.php:194 #: paid-memberships-pro.php:195 +#: paid-memberships-pro.php:201 msgid "Once a month" msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -10935,12 +11789,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -10950,6 +11806,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -10959,6 +11816,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -10968,54 +11826,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -11026,42 +11894,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -11076,51 +11954,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -11128,6 +12018,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -11135,6 +12026,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -11142,6 +12034,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -11150,6 +12043,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -11163,6 +12058,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -11183,19 +12079,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -11205,31 +12105,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -11259,25 +12167,30 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "" @@ -11347,26 +12260,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -11375,51 +12294,62 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -11433,19 +12363,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -11476,3 +12410,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-sv_SE.mo b/languages/paid-memberships-pro-sv_SE.mo index ac0849227..6813576ab 100644 Binary files a/languages/paid-memberships-pro-sv_SE.mo and b/languages/paid-memberships-pro-sv_SE.mo differ diff --git a/languages/paid-memberships-pro-sv_SE.po b/languages/paid-memberships-pro-sv_SE.po index e7ddab480..dcd5af61b 100644 --- a/languages/paid-memberships-pro-sv_SE.po +++ b/languages/paid-memberships-pro-sv_SE.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:21:15+00:00\n" +"POT-Creation-Date: 2022-05-05T20:37:51+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -100,6 +100,7 @@ msgstr "Kontrollera igen" #: adminpages/orders.php:1014 #: includes/metaboxes.php:19 #: adminpages/orders.php:1015 +#: adminpages/orders.php:1103 msgid "All" msgstr "Alla" @@ -151,6 +152,7 @@ msgstr "Typ" #: adminpages/membershiplevels.php:298 #: adminpages/membershiplevels.php:300 #: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "Beskrivning" @@ -248,6 +250,11 @@ msgstr "Aktivera %s" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "Radera" @@ -324,6 +331,18 @@ msgstr "WordPress.org" #: adminpages/orders.php:913 #: adminpages/orders.php:1537 #: adminpages/orders.php:1546 +#: adminpages/orders.php:704 +#: adminpages/orders.php:996 +#: adminpages/orders.php:1689 +#: adminpages/orders.php:1698 +#: classes/class.pmproemail.php:261 +#: classes/class.pmproemail.php:327 +#: includes/profile.php:167 +#: includes/profile.php:483 +#: includes/profile.php:484 +#: includes/profile.php:556 +#: includes/profile.php:557 +#: includes/profile.php:558 msgid "N/A" msgstr "N/A" @@ -542,6 +561,11 @@ msgstr "Betal-gateway & SSL" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "E-post" @@ -558,6 +582,7 @@ msgstr "Avancerat" #: adminpages/advancedsettings.php:42 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "Dina avancerade inställningar har uppdaterats." @@ -578,6 +603,7 @@ msgstr "Vänligen logga in för att visa detta innehåll. ( #: adminpages/advancedsettings.php:116 #: includes/updates/upgrade_1.php:13 #: adminpages/advancedsettings.php:118 +#: adminpages/advancedsettings.php:126 msgid "This content is for members only. Visit the site and log in/register to read." msgstr "Detta innehåll är endast för medlemmar. Besök webbplatsen och logga in/registrera för att läsa innehållet." @@ -596,6 +622,7 @@ msgstr "Detta innehåll är endast för medlemmar. Besök webbplatsen och logga #: adminpages/advancedsettings.php:132 #: includes/adminpages.php:73 #: adminpages/advancedsettings.php:134 +#: adminpages/advancedsettings.php:142 msgid "Advanced Settings" msgstr "Avancerade inställningar" @@ -604,6 +631,7 @@ msgstr "Avancerade inställningar" #: adminpages/advancedsettings.php:92 #: adminpages/advancedsettings.php:164 #: adminpages/advancedsettings.php:166 +#: adminpages/advancedsettings.php:173 msgid "Message for Logged-in Non-members" msgstr "Meddelande för inloggade, icke medlemmar" @@ -612,6 +640,7 @@ msgstr "Meddelande för inloggade, icke medlemmar" #: adminpages/advancedsettings.php:96 #: adminpages/advancedsettings.php:168 #: adminpages/advancedsettings.php:170 +#: adminpages/advancedsettings.php:177 msgid "This message replaces the post content for non-members. Available variables" msgstr "Detta meddelande ersätter tidigare innehåll för de som inte är medlemmar. Tillgängliga variationer" @@ -620,6 +649,7 @@ msgstr "Detta meddelande ersätter tidigare innehåll för de som inte är medle #: adminpages/advancedsettings.php:101 #: adminpages/advancedsettings.php:173 #: adminpages/advancedsettings.php:175 +#: adminpages/advancedsettings.php:182 msgid "Message for Logged-out Users" msgstr "Meddelande för utloggade användare" @@ -628,6 +658,7 @@ msgstr "Meddelande för utloggade användare" #: adminpages/advancedsettings.php:105 #: adminpages/advancedsettings.php:177 #: adminpages/advancedsettings.php:179 +#: adminpages/advancedsettings.php:186 msgid "This message replaces the post content for logged-out visitors." msgstr "Detta meddelande ersätter innehåll för utloggade besökare." @@ -636,6 +667,7 @@ msgstr "Detta meddelande ersätter innehåll för utloggade besökare." #: adminpages/advancedsettings.php:110 #: adminpages/advancedsettings.php:182 #: adminpages/advancedsettings.php:184 +#: adminpages/advancedsettings.php:191 msgid "Message for RSS Feed" msgstr "Meddelande för RSS flöde" @@ -644,24 +676,28 @@ msgstr "Meddelande för RSS flöde" #: adminpages/advancedsettings.php:114 #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "This message replaces the post content in RSS feeds." msgstr "Detta meddelande ersätter publicerat innehåll i RSS-flöden." #: adminpages/advancedsettings.php:122 #: adminpages/advancedsettings.php:199 #: adminpages/advancedsettings.php:201 +#: adminpages/advancedsettings.php:208 msgid "Filter searches and archives?" msgstr "Filtrera sökningar och arkiv?" #: adminpages/advancedsettings.php:126 #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:205 +#: adminpages/advancedsettings.php:212 msgid "No - Non-members will see restricted posts/pages in searches and archives." msgstr "Nej - Personer som inte är medlemmar kan se begränsade inlägg/sidor vid sökning och i arkiv." #: adminpages/advancedsettings.php:127 #: adminpages/advancedsettings.php:204 #: adminpages/advancedsettings.php:206 +#: adminpages/advancedsettings.php:213 msgid "Yes - Only members will see restricted posts/pages in searches and archives." msgstr "Ja - Bara personer som är medlemmar kan se begränsade inlägg/sidor vid sökning och i arkiv." @@ -670,6 +706,7 @@ msgstr "Ja - Bara personer som är medlemmar kan se begränsade inlägg/sidor vi #: adminpages/advancedsettings.php:120 #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:212 +#: adminpages/advancedsettings.php:219 msgid "Show Excerpts to Non-Members?" msgstr "Visa utdrag för icke-medlemmar?" @@ -678,6 +715,7 @@ msgstr "Visa utdrag för icke-medlemmar?" #: adminpages/advancedsettings.php:124 #: adminpages/advancedsettings.php:214 #: adminpages/advancedsettings.php:216 +#: adminpages/advancedsettings.php:223 msgid "No - Hide excerpts." msgstr "Nej - Dölj utdrag." @@ -686,12 +724,14 @@ msgstr "Nej - Dölj utdrag." #: adminpages/advancedsettings.php:125 #: adminpages/advancedsettings.php:215 #: adminpages/advancedsettings.php:217 +#: adminpages/advancedsettings.php:224 msgid "Yes - Show excerpts." msgstr "Ja - Visa utdrag." #: adminpages/advancedsettings.php:144 #: adminpages/advancedsettings.php:333 #: adminpages/advancedsettings.php:348 +#: adminpages/advancedsettings.php:355 msgid "Hide Ads From Members?" msgstr "Göm annonser för medlemmar?" @@ -769,6 +809,16 @@ msgstr "Göm annonser för medlemmar?" #: classes/gateways/class.pmprogateway_stripe.php:404 #: classes/gateways/class.pmprogateway_stripe.php:418 #: adminpages/paymentsettings.php:279 +#: adminpages/advancedsettings.php:254 +#: adminpages/advancedsettings.php:267 +#: adminpages/advancedsettings.php:359 +#: adminpages/advancedsettings.php:418 +#: adminpages/advancedsettings.php:526 +#: adminpages/membershiplevels.php:939 +#: adminpages/paymentsettings.php:277 +#: classes/gateways/class.pmprogateway_stripe.php:430 +#: classes/gateways/class.pmprogateway_stripe.php:444 +#: includes/profile.php:78 msgid "No" msgstr "Nej" @@ -777,6 +827,7 @@ msgstr "Nej" #: adminpages/advancedsettings.php:136 #: adminpages/advancedsettings.php:338 #: adminpages/advancedsettings.php:353 +#: adminpages/advancedsettings.php:360 msgid "Hide Ads From All Members" msgstr "Dölj annonser för alla medlemmar" @@ -785,6 +836,7 @@ msgstr "Dölj annonser för alla medlemmar" #: adminpages/advancedsettings.php:137 #: adminpages/advancedsettings.php:339 #: adminpages/advancedsettings.php:354 +#: adminpages/advancedsettings.php:361 msgid "Hide Ads From Certain Members" msgstr "Dölj annonser från vissa medlemmar" @@ -799,6 +851,7 @@ msgstr "Annonser från följande tillägg kommer automatiskt stängas av" #: adminpages/advancedsettings.php:145 #: adminpages/advancedsettings.php:346 #: adminpages/advancedsettings.php:361 +#: adminpages/advancedsettings.php:368 msgid "To hide ads in your template code, use code like the following" msgstr "För att dölja annonser i din tema-kod, använd kod som den här" @@ -807,6 +860,7 @@ msgstr "För att dölja annonser i din tema-kod, använd kod som den här" #: adminpages/advancedsettings.php:156 #: adminpages/advancedsettings.php:355 #: adminpages/advancedsettings.php:370 +#: adminpages/advancedsettings.php:377 msgid "Choose Levels to Hide Ads From" msgstr "Välj nivåer du vill dölja annonser för" @@ -825,6 +879,7 @@ msgstr "Omdirigera all trafik från registreringssidan till /prenumeration/?" #: adminpages/advancedsettings.php:390 #: adminpages/advancedsettings.php:392 #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "multisite only" msgstr "Enbart multisite" @@ -891,6 +946,12 @@ msgstr "Enbart multisite" #: classes/gateways/class.pmprogateway_stripe.php:406 #: classes/gateways/class.pmprogateway_stripe.php:420 #: adminpages/paymentsettings.php:280 +#: adminpages/advancedsettings.php:419 +#: adminpages/membershiplevels.php:934 +#: adminpages/paymentsettings.php:278 +#: classes/gateways/class.pmprogateway_stripe.php:432 +#: classes/gateways/class.pmprogateway_stripe.php:446 +#: includes/profile.php:79 msgid "Yes" msgstr "Ja" @@ -899,6 +960,7 @@ msgstr "Ja" #: adminpages/advancedsettings.php:202 #: adminpages/advancedsettings.php:241 #: adminpages/advancedsettings.php:256 +#: adminpages/advancedsettings.php:263 msgid "Use reCAPTCHA?" msgstr "Använd reCAPTCHA?" @@ -914,6 +976,7 @@ msgstr "Ja - Endast gratismedlemskap." #: adminpages/advancedsettings.php:208 #: adminpages/advancedsettings.php:247 #: adminpages/advancedsettings.php:262 +#: adminpages/advancedsettings.php:269 msgid "Yes - All memberships." msgstr "Ja - Alla medlemskap" @@ -922,6 +985,7 @@ msgstr "Ja - Alla medlemskap" #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "A free reCAPTCHA key is required." msgstr "En gratis reCAPTCHA-nyckel krävs." @@ -930,6 +994,7 @@ msgstr "En gratis reCAPTCHA-nyckel krävs." #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "Click here to signup for reCAPTCHA" msgstr "Klicka här för att registrera dig för reCAPTCHA" @@ -988,6 +1053,9 @@ msgstr "Valda" #: adminpages/pagesettings.php:508 #: adminpages/pagesettings.php:512 #: adminpages/paymentsettings.php:316 +#: adminpages/advancedsettings.php:574 +#: adminpages/pagesettings.php:511 +#: adminpages/paymentsettings.php:314 msgid "Save Settings" msgstr "Spara inställningarna" @@ -1083,6 +1151,7 @@ msgstr "Ett fel inträffade när koden skulle raderas. Vänligen försök igen." #: adminpages/discountcodes.php:796 #: adminpages/discountcodes.php:354 #: adminpages/discountcodes.php:798 +#: adminpages/discountcodes.php:799 msgid "Code not found." msgstr "Koden hittades inte." @@ -1111,6 +1180,7 @@ msgstr "Redigera rabattkod" #: adminpages/discountcodes.php:735 #: adminpages/discountcodes.php:377 #: adminpages/discountcodes.php:737 +#: adminpages/discountcodes.php:738 msgid "Add New Discount Code" msgstr "Lägg till ny rabattkod" @@ -1172,6 +1242,8 @@ msgstr "Lägg till ny rabattkod" #: adminpages/reports/login.php:182 #: adminpages/templates/orders-email.php:49 #: adminpages/templates/orders-print.php:78 +#: adminpages/membershiplevels.php:345 +#: adminpages/membershiplevels.php:805 msgid "ID" msgstr "ID" @@ -1232,6 +1304,9 @@ msgstr "Detta kommer genereras när du sparar." #: adminpages/dashboard.php:292 #: adminpages/orders.php:429 #: adminpages/orders.php:1333 +#: adminpages/discountcodes.php:787 +#: adminpages/orders.php:475 +#: adminpages/orders.php:1426 msgid "Code" msgstr "Kod" @@ -1247,6 +1322,7 @@ msgstr "Kod" #: adminpages/discountcodes.php:489 #: includes/profile.php:501 #: includes/profile.php:497 +#: includes/profile.php:537 msgid "Start Date" msgstr "Startdatum" @@ -1301,6 +1377,8 @@ msgstr "Startdatum" #: classes/gateways/class.pmprogateway_stripe.php:1326 #: classes/gateways/class.pmprogateway_stripe.php:785 #: pages/billing.php:381 +#: classes/gateways/class.pmprogateway_braintree.php:486 +#: classes/gateways/class.pmprogateway_stripe.php:893 msgid "Expiration Date" msgstr "Utgångsdatum" @@ -1319,6 +1397,7 @@ msgstr "Utgångsdatum" #: adminpages/discountcodes.php:787 #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:789 +#: adminpages/discountcodes.php:790 msgid "Uses" msgstr "Användningar" @@ -1359,6 +1438,7 @@ msgstr "Vilka nivåer kommer denna kod gälla för?" #: adminpages/discountcodes.php:574 #: adminpages/membershiplevels.php:401 #: adminpages/discountcodes.php:576 +#: adminpages/membershiplevels.php:399 msgid "Initial Payment" msgstr "Första betalning" @@ -1377,6 +1457,7 @@ msgstr "Första betalning" #: adminpages/discountcodes.php:585 #: adminpages/membershiplevels.php:412 #: adminpages/discountcodes.php:587 +#: adminpages/membershiplevels.php:410 msgid "The initial amount collected at registration." msgstr "Det första inbetalade beloppet vid registrering." @@ -1395,6 +1476,7 @@ msgstr "Det första inbetalade beloppet vid registrering." #: adminpages/discountcodes.php:590 #: adminpages/membershiplevels.php:417 #: adminpages/discountcodes.php:592 +#: adminpages/membershiplevels.php:415 msgid "Recurring Subscription" msgstr "Återkommande prenumeration" @@ -1413,6 +1495,7 @@ msgstr "Återkommande prenumeration" #: adminpages/discountcodes.php:591 #: adminpages/membershiplevels.php:418 #: adminpages/discountcodes.php:593 +#: adminpages/membershiplevels.php:416 msgid "Check if this level has a recurring subscription payment." msgstr "Kryssa i för återkommande prenumerationsbetalning." @@ -1430,6 +1513,7 @@ msgstr "Kryssa i för återkommande prenumerationsbetalning." #: adminpages/discountcodes.php:595 #: adminpages/membershiplevels.php:422 #: adminpages/discountcodes.php:597 +#: adminpages/membershiplevels.php:420 msgid "Billing Amount" msgstr "Faktureringsbelopp" @@ -1480,6 +1564,10 @@ msgstr "Faktureringsbelopp" #: classes/gateways/class.pmprogateway_stripe.php:2637 #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2635 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3092 msgid "Day(s)" msgstr "Dag(ar)" @@ -1530,6 +1618,10 @@ msgstr "Dag(ar)" #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2641 #: classes/gateways/class.pmprogateway_stripe.php:2637 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3094 msgid "Month(s)" msgstr "Månad(er)" @@ -1580,6 +1672,10 @@ msgstr "Månad(er)" #: classes/gateways/class.pmprogateway_stripe.php:2638 #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2636 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3093 msgid "Week(s)" msgstr "vecka/veckor" @@ -1630,6 +1726,10 @@ msgstr "vecka/veckor" #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2642 #: classes/gateways/class.pmprogateway_stripe.php:2638 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3095 msgid "Year(s)" msgstr "År" @@ -1648,6 +1748,7 @@ msgstr "År" #: adminpages/discountcodes.php:618 #: adminpages/membershiplevels.php:446 #: adminpages/discountcodes.php:620 +#: adminpages/membershiplevels.php:444 msgid "The amount to be billed one cycle after the initial payment." msgstr "Belopp som debiteras en period efter den första betalningen." @@ -1666,6 +1767,7 @@ msgstr "Belopp som debiteras en period efter den första betalningen." #: adminpages/discountcodes.php:628 #: adminpages/membershiplevels.php:465 #: adminpages/discountcodes.php:630 +#: adminpages/membershiplevels.php:463 msgid "Billing Cycle Limit" msgstr "Begränsning av betalningsperiod" @@ -1684,6 +1786,7 @@ msgstr "Begränsning av betalningsperiod" #: adminpages/discountcodes.php:632 #: adminpages/membershiplevels.php:469 #: adminpages/discountcodes.php:634 +#: adminpages/membershiplevels.php:467 msgid "The total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "Totala antalet av återkommande betalningscykler för denna nivå, inklusive testperioden (om tillämpbart), men exklusive den första betalningen. Ange 0 om medlemskapet är obegränsat." @@ -1702,6 +1805,8 @@ msgstr "Totala antalet av återkommande betalningscykler för d #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "Anpassad testperiod" @@ -1721,6 +1826,8 @@ msgstr "Anpassad testperiod" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "Kryssa i för att lägga till en anpassad testperiod." @@ -1740,6 +1847,7 @@ msgstr "Kryssa i för att lägga till en anpassad testperiod." #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "Faktureringsbelopp för testperiod" @@ -1759,6 +1867,7 @@ msgstr "Faktureringsbelopp för testperiod" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "För de första" @@ -1778,6 +1887,7 @@ msgstr "För de första" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "prenumerationssbetalningar" @@ -1798,6 +1908,7 @@ msgstr "prenumerationssbetalningar" #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "Förfallodatum medlemskap" @@ -1817,6 +1928,7 @@ msgstr "Förfallodatum medlemskap" #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "Kryssa i för att ange när medlemskapet går ut" @@ -1838,6 +1950,8 @@ msgstr "Kryssa i för att ange när medlemskapet går ut" #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "Förfaller om" @@ -1857,6 +1971,8 @@ msgstr "Förfaller om" #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "Ange perioden för medlemskap. Notera att framtida betalningar (upprepade prenumerationer, om det finns) kommer att avslutas när medlemskapet går ut." @@ -1868,6 +1984,7 @@ msgstr "Ange perioden för medlemskap. Notera att framtida betalningar (upprepad #: adminpages/discountcodes.php:558 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "Rabattkoder för medlemskap" @@ -1879,6 +1996,7 @@ msgstr "Rabattkoder för medlemskap" #: adminpages/discountcodes.php:568 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "Sök rabattkoder" @@ -1893,6 +2011,7 @@ msgstr "Sök rabattkoder" #: adminpages/reports/login.php:83 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "Sök" @@ -1904,6 +2023,7 @@ msgstr "Sök" #: adminpages/discountcodes.php:589 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "Startar" @@ -1937,6 +2057,8 @@ msgstr "Startar" #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "Förfallodatum" @@ -1949,6 +2071,7 @@ msgstr "Förfallodatum" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "Nivåer" @@ -2003,6 +2126,7 @@ msgstr "Med rabattkoder kan du erbjuda rabatterat pris för medlemskapen till ut #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "Ändra" @@ -2071,6 +2195,7 @@ msgstr "Inställningar för e-post" #: adminpages/emailsettings.php:70 #: adminpages/emailsettings.php:61 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "Som standard, systemgenererade e-postmeddelanden skickas från wordpress@yourdomain.com. Du kan uppdatera adressen i fälten nedan." @@ -2082,22 +2207,26 @@ msgstr "För att uppdatera systemgenererade e-postmeddelanden, lägg till filen #: adminpages/emailsettings.php:78 #: adminpages/emailsettings.php:69 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "Från e-post" #: adminpages/emailsettings.php:86 #: adminpages/emailsettings.php:77 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "Från namn" #: adminpages/emailsettings.php:94 #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "Filtrera endast PMPro e-post?" #: adminpages/emailsettings.php:98 #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 #, php-format msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "Om den är omarkerad filtreras alla e-postmeddelanden från “WordPress <%s>” till att använda ovanstående inställningar." @@ -2283,6 +2412,8 @@ msgstr "Lägg till en ny Medlemskapsnivå" #: adminpages/reports/history.php:184 #: adminpages/reports/login.php:181 #: adminpages/reports/login.php:184 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 msgid "Name" msgstr "Namn" @@ -2291,6 +2422,7 @@ msgstr "Namn" #: adminpages/membershiplevels.php:316 #: adminpages/membershiplevels.php:318 #: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "Bekräftelsemeddelande" @@ -2309,6 +2441,8 @@ msgstr "Bekräftelsemeddelande" #: adminpages/membershiplevels.php:643 #: adminpages/membershiplevels.php:397 #: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "Betalningsuppgifter" @@ -2340,6 +2474,8 @@ msgstr "Betalningsuppgifter" #: classes/gateways/class.pmprogateway_stripe.php:2696 #: classes/gateways/class.pmprogateway_stripe.php:2698 #: classes/gateways/class.pmprogateway_stripe.php:2694 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "per" @@ -2360,6 +2496,7 @@ msgstr "Stripeintegration erbjuder för närvarande endast stöd för periodsfak #: adminpages/discountcodes.php:620 #: adminpages/membershiplevels.php:448 #: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:446 msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." msgstr "Braintreeintegration erbjuder för närvarande endast stöd för periodsfakturering av \"Månad\" eller \"År\"." @@ -2370,6 +2507,7 @@ msgstr "Braintreeintegration erbjuder för närvarande endast stöd för periods #: adminpages/membershiplevels.php:395 #: adminpages/membershiplevels.php:396 #: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." msgstr "Efter att ha sparat den här nivån, anteckna ID och skapa en \"Plan\" i Braintree kontrollpanel med samma inställningar och \"Plan ID\" inställt på pmpro_ #, där # är nivåns ID." @@ -2396,6 +2534,8 @@ msgstr "Efter att ha sparat den här nivån, anteckna ID och skapa en \"Plan\" i #: adminpages/membershiplevels.php:454 #: adminpages/membershiplevels.php:459 #: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 msgid "Note" msgstr "Anteckning" @@ -2417,6 +2557,7 @@ msgstr "Du måste skapa en \"Plan\" i Braintree kontrollpanel med samma inställ #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "Stripe integration har för närvarande inte stöd för faktureringsgränser. Du kan fortfarande ställa in ett förfallodatum nedan." @@ -2429,6 +2570,8 @@ msgstr "Stripe integration har för närvarande inte stöd för faktureringsgrä #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "2Checkout integration stöder för närvarande inte anpassade \"Prova-på-erbjudanden\". Du kan göra ett \"Prova-på-erbjudande\" genom att sätta en första betalning som skiljer sig från faktureringsbeloppet." @@ -2442,6 +2585,7 @@ msgstr "2Checkout integration stöder för närvarande inte anpassade \"Prova-p #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "Stripe integration stöder för närvarande inte \"Prova-på-peroder\" på en summa större än 0 SEK." @@ -2455,6 +2599,7 @@ msgstr "Stripe integration stöder för närvarande inte \"Prova-på-peroder\" p #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "Braintree integration stöder för närvarande inte \"Prova-på-peroder\" på en summa större än 0 SEK." @@ -2468,6 +2613,7 @@ msgstr "Braintree integration stöder för närvarande inte \"Prova-på-peroder\ #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "Payflow integration stöder för närvarande inte \"Prova-på-peroder\" på en summa större än 0 SEK." @@ -2483,6 +2629,7 @@ msgstr "Payflow integration stöder för närvarande inte \"Prova-på-peroder\" #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "Andra inställningar" @@ -2521,6 +2668,8 @@ msgstr "Kryssa i för att dölja denna nivå från medlemssidan och inaktivera r #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "Innehållsinställningar" @@ -2533,6 +2682,7 @@ msgstr "Innehållsinställningar" #: adminpages/membershiplevels.php:499 #: adminpages/membershiplevels.php:500 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "Kategorier" @@ -2542,6 +2692,7 @@ msgstr "Kategorier" #: adminpages/membershiplevels.php:516 #: adminpages/membershiplevels.php:517 #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "Spara nivå" @@ -2592,6 +2743,11 @@ msgstr "Spara nivå" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "Avbryt" @@ -2644,6 +2800,7 @@ msgstr "Sök nivåer" #: adminpages/membershiplevels.php:630 #: adminpages/membershiplevels.php:631 #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "Dra och släpp medlemskapsnivåer för att ändra ordning på Nivå sidan." @@ -2677,6 +2834,8 @@ msgstr "Dra och släpp medlemskapsnivåer för att ändra ordning på Nivå sida #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "Utgång" @@ -2693,6 +2852,7 @@ msgstr "Utgång" #: adminpages/membershiplevels.php:641 #: adminpages/membershiplevels.php:645 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "Tillåt registreringar" @@ -2710,6 +2870,7 @@ msgstr "Tillåt registreringar" #: adminpages/membershiplevels.php:660 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "GRATIS" @@ -2727,6 +2888,7 @@ msgstr "GRATIS" #: adminpages/membershiplevels.php:669 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "Efter" @@ -2783,6 +2945,7 @@ msgstr "kopia" #: includes/adminpages.php:149 #: includes/adminpages.php:153 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "Medlemslista" @@ -2798,6 +2961,8 @@ msgstr "Medlemslista" #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "Exportera till CSV" @@ -2831,6 +2996,8 @@ msgstr "Exportera till CSV" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "Visa" @@ -2863,6 +3030,8 @@ msgstr "Visa" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "Alla nivåer" @@ -2906,6 +3075,8 @@ msgstr "Gamla medlemmar" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "Sök Medlemmar" @@ -2946,6 +3117,8 @@ msgstr "%d medlemmar hittades." #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "Användarnamn" @@ -2995,6 +3168,7 @@ msgstr "Efter Namn" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "Fakturaadress" @@ -3114,6 +3288,7 @@ msgstr "Ett fel uppstod när beställning skulle tas bort." #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "Beställning sparad." @@ -3133,6 +3308,7 @@ msgstr "Fel vid uppdatering för beställningens tidstämpel." #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "Fel vid sparande av beställning." @@ -3148,6 +3324,7 @@ msgstr "Fel vid sparande av beställning." #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "Beställning" @@ -3160,6 +3337,7 @@ msgstr "Beställning" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "Ny beställning" @@ -3172,6 +3350,7 @@ msgstr "Ny beställning" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "Slumpmässigt genererad för dig." @@ -3184,6 +3363,7 @@ msgstr "Slumpmässigt genererad för dig." #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "Användar-ID" @@ -3197,6 +3377,8 @@ msgstr "Användar-ID" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "Medlemskapsnivå ID" @@ -3210,6 +3392,7 @@ msgstr "Medlemskapsnivå ID" #: includes/privacy.php:245 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "Namn på betalare" @@ -3223,6 +3406,7 @@ msgstr "Namn på betalare" #: includes/privacy.php:249 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "Faktureringsadress" @@ -3237,6 +3421,7 @@ msgstr "Faktureringsadress" #: includes/privacy.php:358 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "Ort" @@ -3250,6 +3435,7 @@ msgstr "Ort" #: includes/privacy.php:257 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "län" @@ -3265,6 +3451,7 @@ msgstr "län" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "Postnummer" @@ -3280,6 +3467,7 @@ msgstr "Postnummer" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "Land" @@ -3294,6 +3482,7 @@ msgstr "Land" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "Telefon" @@ -3308,6 +3497,7 @@ msgstr "Telefon" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "Delsumma" @@ -3329,6 +3519,8 @@ msgstr "Delsumma" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "Skatt" @@ -3343,6 +3535,7 @@ msgstr "Skatt" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "Kupongbelopp" @@ -3378,6 +3571,9 @@ msgstr "Kupongbelopp" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "Totalt" @@ -3401,6 +3597,7 @@ msgstr "Bör vara delsumma + moms - kupongbelopp" #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "Betalningstyp" @@ -3414,6 +3611,7 @@ msgstr "Betalningstyp" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "t.ex. PayPal Express, PayPal Standard, kreditkort." @@ -3471,6 +3669,9 @@ msgstr "t.ex. PayPal Express, PayPal Standard, kreditkort." #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "Korttyp" @@ -3484,6 +3685,7 @@ msgstr "Korttyp" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "t.ex. Visa, MasterCard, AMEX, etc" @@ -3504,6 +3706,8 @@ msgstr "t.ex. Visa, MasterCard, AMEX, etc" #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "Kontonummer" @@ -3516,6 +3720,7 @@ msgstr "Kontonummer" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "Dölj alla förutom de 4 sista siffrorna." @@ -3532,6 +3737,7 @@ msgstr "Dölj alla förutom de 4 sista siffrorna." #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "Utgångsmånad" @@ -3580,6 +3786,10 @@ msgstr "Utgångsår" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "Status" @@ -3606,6 +3816,9 @@ msgstr "Status" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "Betal-gateway" @@ -3626,6 +3839,8 @@ msgstr "Betal-gateway" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "Betal-gateway-miljö" @@ -3649,6 +3864,9 @@ msgstr "Betal-gateway-miljö" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "Sandlåda / Test" @@ -3672,6 +3890,9 @@ msgstr "Sandlåda / Test" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "Live/Produktion" @@ -3686,6 +3907,7 @@ msgstr "Live/Produktion" #: includes/privacy.php:321 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "Betalningens transaktions-ID" @@ -3699,6 +3921,7 @@ msgstr "Betalningens transaktions-ID" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "Genereras av Betal-gateway. Användbar för korshänvisning av ordrar." @@ -3715,6 +3938,8 @@ msgstr "Genereras av Betal-gateway. Användbar för korshänvisning av ordrar." #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "Prenumerationstransaktions-ID" @@ -3729,6 +3954,7 @@ msgstr "Prenumerationstransaktions-ID" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "Genereras av Betal-gateway. Användbar för korshänvisning av ordrar." @@ -3767,6 +3993,8 @@ msgstr "Genereras av Betal-gateway. Användbar för korshänvisning av ordrar." #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "Datum" @@ -3780,6 +4008,7 @@ msgstr "Datum" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "Affiliate ID" @@ -3793,6 +4022,7 @@ msgstr "Affiliate ID" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "Affiliate SubID" @@ -3806,6 +4036,7 @@ msgstr "Affiliate SubID" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "Anteckningar" @@ -3819,6 +4050,7 @@ msgstr "Anteckningar" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "Spara beställning" @@ -3872,6 +4104,8 @@ msgstr "Skicka e-post" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "Beställningar" @@ -3885,6 +4119,7 @@ msgstr "Beställningar" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "Lägg till ny order" @@ -3897,6 +4132,7 @@ msgstr "Lägg till ny order" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "Inom ett datumintervall" @@ -3909,6 +4145,7 @@ msgstr "Inom ett datumintervall" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "Fördefinierade datumintervall" @@ -3921,6 +4158,7 @@ msgstr "Fördefinierade datumintervall" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "Inom en nivå" @@ -3933,6 +4171,7 @@ msgstr "Inom en nivå" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "Inom en Status" @@ -3945,6 +4184,7 @@ msgstr "Inom en Status" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "Från" @@ -3957,6 +4197,7 @@ msgstr "Från" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "Till" @@ -3969,6 +4210,7 @@ msgstr "Till" #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "filtrera enligt" @@ -3981,6 +4223,7 @@ msgstr "filtrera enligt" #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "Filter" @@ -4004,6 +4247,8 @@ msgstr "Filter" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "Sök beställningar" @@ -4018,6 +4263,8 @@ msgstr "Sök beställningar" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "%d beställningar hittades." @@ -4044,6 +4291,7 @@ msgstr "%d beställningar hittades." #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "Användare" @@ -4096,6 +4344,8 @@ msgstr "Användare" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "Medlemskapsnivå" @@ -4121,6 +4371,7 @@ msgstr "Medlemskapsnivå" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "Betalning" @@ -4135,6 +4386,7 @@ msgstr "Betalning" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "Transaktions-ID" @@ -4160,6 +4412,8 @@ msgstr "Transaktions-ID" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "raderat" @@ -4175,6 +4429,7 @@ msgstr "raderat" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "Prenumeration" @@ -4192,6 +4447,7 @@ msgstr "Prenumeration" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "Radera beställningar är permanent och kan påverka aktiva användare. Är du säker på att du vill radera beställningen %s?" @@ -4227,6 +4483,7 @@ msgstr "e-post" #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "Inga beställningar hittades." @@ -4299,6 +4556,7 @@ msgstr "Följande sidor har skapats för dig" #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "Hantera Wordpress sidor som tilldelats varje föreskriven Paid Memberships Pro sida." @@ -4308,6 +4566,7 @@ msgstr "Hantera Wordpress sidor som tilldelats varje föreskriven Paid Membershi #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "Tilldela Wordpress-sidor för varje föreskriven Paid Memberships Pro-sida eller" @@ -4317,6 +4576,7 @@ msgstr "Tilldela Wordpress-sidor för varje föreskriven Paid Memberships Pro-si #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "klicka här för att få dem generade åt dig" @@ -4326,6 +4586,7 @@ msgstr "klicka här för att få dem generade åt dig" #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "Kontosida" @@ -4372,6 +4633,14 @@ msgstr "Kontosida" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "Välj en" @@ -4432,6 +4701,16 @@ msgstr "Välj en" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "Redigera sida" @@ -4489,6 +4768,15 @@ msgstr "Redigera sida" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "Visa sida" @@ -4542,6 +4830,12 @@ msgstr "Visa sida" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "Inkludera shortcode" @@ -4553,6 +4847,7 @@ msgstr "Inkludera shortcode" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "Sida för faktureringsinformation" @@ -4564,6 +4859,7 @@ msgstr "Sida för faktureringsinformation" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "Avbrytsida" @@ -4575,6 +4871,7 @@ msgstr "Avbrytsida" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "Kassasida" @@ -4586,6 +4883,7 @@ msgstr "Kassasida" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "Bekräftelsesida" @@ -4597,6 +4895,7 @@ msgstr "Bekräftelsesida" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "Fakturasida" @@ -4608,6 +4907,7 @@ msgstr "Fakturasida" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "Nivåsida" @@ -4615,6 +4915,7 @@ msgstr "Nivåsida" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "Ytterligare sidinställningar" @@ -4628,6 +4929,9 @@ msgstr "Ytterligare sidinställningar" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "Generera sida" @@ -4648,6 +4952,7 @@ msgstr "Dina betalningsinställningar har uppdaterats." #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "Betalningsgateway" @@ -4658,6 +4963,7 @@ msgstr "Betalningsgateway" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "SSL-inställningar" @@ -4669,12 +4975,14 @@ msgstr "Läs mer om If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "Stripe kräver inte faktureringsadressfält. Välj 'Nej' för att dölja dem i kassan.
Om du väljer \"Nej\", se till att du inaktiverar adresskontroll i inställningarna i Stripes kontrollpanel." @@ -7003,6 +7428,7 @@ msgstr "För att integrera fullt ut med Stripe, måste du ange din webhook URL t #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "Prenumerationsuppdateringar" @@ -7075,6 +7501,7 @@ msgstr "Uppdateringar av prenumeration ger möjlighet att ändra medlemsprenumer #: classes/gateways/class.pmprogateway_stripe.php:2653 #: classes/gateways/class.pmprogateway_stripe.php:2649 #: pages/billing.php:441 +#: classes/gateways/class.pmprogateway_stripe.php:3106 msgid "Update" msgstr "Uppdatera" @@ -7097,6 +7524,7 @@ msgstr "Uppdatera" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "Kunde inte avbryta den gamla prenumerationen. Uppdateringar har inte bearbetats." @@ -7161,6 +7589,8 @@ msgstr "Fel vid skapande av kundpost med Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "Fel vid att få preunumeration med Stripe:" @@ -7208,6 +7638,8 @@ msgstr "Fel vid att få preunumeration med Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "Fel vid att skapa plan med Stripe:" @@ -7250,6 +7682,8 @@ msgstr "Fel vid att skapa plan med Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "Fel i att registrera kund till plan med Stripe:" @@ -7279,6 +7713,7 @@ msgstr "Fel i att registrera kund till plan med Stripe:" #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "Kunde inte avbryta gammal prenumeration." @@ -7305,6 +7740,7 @@ msgstr "Kunde inte avbryta gammal prenumeration." #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "Kunde inte hitta kunden." @@ -7326,6 +7762,8 @@ msgstr "Kunde inte hitta kunden." #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "Fel:" @@ -7341,6 +7779,7 @@ msgstr "Fel:" #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 #, php-format msgid "Error: Unkown error while refunding charge #%s" msgstr "Fel: Okänt fel vid återbetalning av avgiften #%s" @@ -7355,6 +7794,7 @@ msgstr "Fel: Okänt fel vid återbetalning av avgiften #%s" #: paid-memberships-pro.php:133 #: paid-memberships-pro.php:135 #: paid-memberships-pro.php:137 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "2Checkout" @@ -7362,24 +7802,28 @@ msgstr "2Checkout" #: classes/gateways/class.pmprogateway_twocheckout.php:108 #: classes/gateways/class.pmprogateway_twocheckout.php:116 #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "2Checkout Inställningar" #: classes/gateways/class.pmprogateway_twocheckout.php:123 #: classes/gateways/class.pmprogateway_twocheckout.php:125 #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "Gå till konto » Användarhantering i 2Checkout och skapa en användare med API-åtkomst och uppdatering av API." #: classes/gateways/class.pmprogateway_twocheckout.php:132 #: classes/gateways/class.pmprogateway_twocheckout.php:134 #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "Lösenord för API användaren skapas." #: classes/gateways/class.pmprogateway_twocheckout.php:141 #: classes/gateways/class.pmprogateway_twocheckout.php:152 #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "Klicka på ikonen under profilen i 2Checkout för att hitta ditt kontonummer." @@ -7389,12 +7833,14 @@ msgstr "Klicka på ikonen under profilen i 2Checkout för att hitta ditt kontonu #: classes/gateways/class.pmprogateway_twocheckout.php:137 #: classes/gateways/class.pmprogateway_twocheckout.php:157 #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "Hemligt ord" #: classes/gateways/class.pmprogateway_twocheckout.php:150 #: classes/gateways/class.pmprogateway_twocheckout.php:161 #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "Gå till Konto » webbplatshantering. Titta under Kassa-alternativ för att hitta hemligt ord." @@ -7405,12 +7851,14 @@ msgstr "Gå till Konto » webbplatshantering. Titta under Kassa-alternativ #: classes/gateways/class.pmprogateway_twocheckout.php:145 #: classes/gateways/class.pmprogateway_twocheckout.php:166 #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "TwoCheckout INS URL" #: classes/gateways/class.pmprogateway_twocheckout.php:158 #: classes/gateways/class.pmprogateway_twocheckout.php:169 #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "För att helt integreras med 2Checkout, vara noga med att använda följande för din INS URL och godkänd URL" @@ -7418,6 +7866,7 @@ msgstr "För att helt integreras med 2Checkout, vara noga med att använda följ #: classes/gateways/class.pmprogateway_twocheckout.php:192 #: classes/gateways/class.pmprogateway_twocheckout.php:214 #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "Betala med 2Checkout" @@ -8596,6 +9045,7 @@ msgstr "och" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "Registrera dig för !!namn!! nu" @@ -8651,6 +9101,9 @@ msgstr "Vänligen ange nivå-ID." #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "Ingen" @@ -8662,6 +9115,7 @@ msgstr "Din licensnyckel har godkänts utan problem." #: includes/license.php:81 #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "Paid Memberships Pro Support Licens" @@ -8682,6 +9136,7 @@ msgstr "Besök PMPro
Tack! En giltigt %s licensnyckel ha #: adminpages/license.php:59 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "Ange licensnyckel här ..." @@ -8815,6 +9271,8 @@ msgstr "Nuvarande nivå" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "Icke betalande." @@ -8945,6 +9403,9 @@ msgstr "logga ut" #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "Nivå" @@ -9031,6 +9492,7 @@ msgstr "Din betalning hanteras av PayPal. Vänligen Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -11078,93 +11581,111 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -11190,6 +11711,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -11260,6 +11782,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -11365,6 +11888,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -11403,6 +11927,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -11415,31 +11940,39 @@ msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 msgid "%d discount codes found." msgstr "" @@ -11465,6 +11998,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -11483,6 +12023,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -11491,15 +12037,18 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -11540,192 +12089,241 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:960 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:170 #: includes/privacy.php:363 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -11743,6 +12341,7 @@ msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -11750,14 +12349,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -11774,27 +12376,34 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -11804,6 +12413,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -11811,6 +12422,7 @@ msgstr "" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -11818,6 +12430,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -11825,6 +12438,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -11832,6 +12446,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -11839,6 +12454,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -11846,6 +12462,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -11884,78 +12501,91 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -11965,12 +12595,15 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -11978,18 +12611,21 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" @@ -11999,11 +12635,13 @@ msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" @@ -12039,6 +12677,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -12049,6 +12688,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -12091,21 +12731,25 @@ msgid "Logins This Year" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -12264,51 +12908,63 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:962 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -12321,6 +12977,8 @@ msgstr "" #: includes/email.php:465 #: classes/class.pmproemail.php:898 #: classes/class.pmproemail.php:943 +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 msgid "The new level is %s." msgstr "" @@ -12333,30 +12991,36 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -12365,10 +13029,12 @@ msgid "Attempting to load Braintree gateway: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" @@ -12382,21 +13048,30 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:750 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -12404,11 +13079,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -12686,11 +13364,13 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -12699,6 +13379,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -12707,6 +13388,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -12722,6 +13404,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -12730,6 +13413,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -12741,6 +13425,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -12752,6 +13437,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -12763,6 +13449,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -12771,6 +13458,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -12782,6 +13470,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -12793,6 +13482,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -12801,6 +13491,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -12812,6 +13503,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -12820,6 +13512,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -12843,6 +13536,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -12859,6 +13554,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -12867,6 +13564,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -12875,6 +13573,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -12883,6 +13582,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -12890,6 +13590,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -12898,6 +13599,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -12911,6 +13613,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -12919,6 +13623,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -12927,6 +13632,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -12936,6 +13642,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -12953,6 +13661,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -12961,6 +13671,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -12982,6 +13693,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -12990,6 +13703,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -12998,6 +13712,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -13006,6 +13721,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -13014,6 +13730,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -13022,6 +13739,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -13030,6 +13748,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -13038,6 +13757,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -13046,6 +13766,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -13054,6 +13775,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -13062,6 +13784,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -13074,6 +13797,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -13082,6 +13806,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -13090,6 +13815,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -13098,6 +13824,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -13106,6 +13833,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -13141,6 +13869,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -13161,6 +13890,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -13169,6 +13902,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -13178,6 +13912,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -13187,6 +13922,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -13198,6 +13934,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -13209,6 +13946,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -13220,6 +13958,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -13231,6 +13970,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" @@ -13265,6 +14005,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -13277,6 +14018,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -13289,6 +14031,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -15079,14 +15822,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -15095,18 +15841,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -15118,6 +15868,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -15245,6 +15996,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -15358,6 +16110,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -15365,6 +16118,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -15396,6 +16150,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -15405,6 +16160,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -15412,6 +16168,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -15511,6 +16268,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -15518,6 +16277,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -15525,6 +16285,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -15532,6 +16293,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -15603,126 +16365,148 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -15734,6 +16518,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -15819,6 +16606,7 @@ msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -15844,6 +16632,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -15882,6 +16671,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -15897,6 +16701,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -15912,6 +16717,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -15944,6 +16750,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -15956,6 +16763,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -15981,11 +16789,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -15993,6 +16806,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -16000,6 +16814,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -16022,6 +16837,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -16047,6 +16863,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -16054,6 +16871,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -16086,6 +16904,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -16108,6 +16927,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -16118,11 +16938,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -16142,6 +16973,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -16155,6 +16987,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -16164,6 +16997,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -16173,10 +17007,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -16187,6 +17023,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -16194,6 +17031,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -16203,6 +17041,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -16212,12 +17051,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -16225,6 +17067,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -16233,6 +17077,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -16240,6 +17085,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -16247,22 +17093,26 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -16320,12 +17170,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -16335,6 +17187,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -16344,6 +17197,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -16353,54 +17207,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -16411,42 +17275,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -16461,51 +17335,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -16513,6 +17399,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -16520,6 +17407,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -16527,6 +17415,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -16535,6 +17424,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -16548,6 +17439,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -16568,19 +17460,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -16590,31 +17486,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -16640,21 +17544,25 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" @@ -16724,26 +17632,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -16752,51 +17666,62 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -16810,19 +17735,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -16853,3 +17782,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-tr_TR.mo b/languages/paid-memberships-pro-tr_TR.mo index ddf73c7df..acb1f07a6 100644 Binary files a/languages/paid-memberships-pro-tr_TR.mo and b/languages/paid-memberships-pro-tr_TR.mo differ diff --git a/languages/paid-memberships-pro-tr_TR.po b/languages/paid-memberships-pro-tr_TR.po index 1a8ea98c6..ae7f1441f 100644 --- a/languages/paid-memberships-pro-tr_TR.po +++ b/languages/paid-memberships-pro-tr_TR.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:21:18+00:00\n" +"POT-Creation-Date: 2022-05-05T20:37:53+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -196,6 +196,11 @@ msgstr "Ödeme Kanalı & SSL" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "Email" @@ -223,6 +228,7 @@ msgstr "Eklentiler" #: adminpages/advancedsettings.php:35 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "Gelişmiş ayarlarınız güncellendi." @@ -240,6 +246,7 @@ msgstr "Bu içeriği görüntülemek için giriş yapın(total
number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "Bu düzeyi (varsa) deneme süresi de dahil olmak üzere ancak ilk ödeme hariç, döngüleri yinelenen fatura Toplam sayısı. Üyeliği süresiz ise sıfır olarak ayarlayın." @@ -923,6 +1005,8 @@ msgstr "Bu düzeyi (varsa) deneme süresi de dahil olmak üzere ancak ilk ödeme #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "Özel Deneme" @@ -934,6 +1018,8 @@ msgstr "Özel Deneme" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "Özel bir deneme süresi eklemek için işaretleyin." @@ -945,6 +1031,7 @@ msgstr "Özel bir deneme süresi eklemek için işaretleyin." #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "Deneme Fatura Miktarı" @@ -956,6 +1043,7 @@ msgstr "Deneme Fatura Miktarı" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "ilk" @@ -967,6 +1055,7 @@ msgstr "ilk" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "abonelik ödemeleri" @@ -978,6 +1067,7 @@ msgstr "abonelik ödemeleri" #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "Üyelik Bitiş" @@ -988,6 +1078,7 @@ msgstr "Üyelik Bitiş" #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "Check this to set when membership access expires." @@ -1000,6 +1091,8 @@ msgstr "Check this to set when membership access expires." #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "İçinde Sona Eriyor" @@ -1010,6 +1103,8 @@ msgstr "İçinde Sona Eriyor" #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "Üyelik erişim süresini ayarlayın. Üyelik süresi dolduğunda (varsa yinelenen abonelik) gelecekteki ödemelerin iptal edileceğini unutmayın." @@ -1017,6 +1112,7 @@ msgstr "Üyelik erişim süresini ayarlayın. Üyelik süresi dolduğunda (varsa #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "Üyelik İndirim Kuponları" @@ -1024,6 +1120,7 @@ msgstr "Üyelik İndirim Kuponları" #: adminpages/discountcodes.php:535 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "İndirim Kuponu Ara" @@ -1032,6 +1129,7 @@ msgstr "İndirim Kuponu Ara" #: adminpages/discountcodes.php:538 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "Ara" @@ -1039,6 +1137,7 @@ msgstr "Ara" #: adminpages/discountcodes.php:549 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "Yılzıdlar" @@ -1059,6 +1158,8 @@ msgstr "Yılzıdlar" #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "Bitiş" @@ -1067,6 +1168,7 @@ msgstr "Bitiş" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "Seviyeler" @@ -1092,6 +1194,7 @@ msgstr "İndirim kodları müşterileri seçmek üzere, üyelikleri indirimli fi #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "düzenle" @@ -1131,6 +1234,7 @@ msgstr "Email Ayarları" #: adminpages/emailsettings.php:70 #: adminpages/emailsettings.php:61 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "Varsayılan olarak, sistem tarafından üretilen e-mailler gönderiliyor wordpress@yourdomain.com. Aşağdaki alanı kullanarak güncelleyebilirsin." @@ -1142,17 +1246,20 @@ msgstr "Sistem tarafından oluşturulan e-mail görünümünü değiştirmek iç #: adminpages/emailsettings.php:78 #: adminpages/emailsettings.php:69 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "Kimden Email" #: adminpages/emailsettings.php:86 #: adminpages/emailsettings.php:77 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "Kimden Adı" #: adminpages/emailsettings.php:94 #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "Yalnızca filtre PMPro Emails?" @@ -1306,6 +1413,8 @@ msgstr "Yeni Üyelik Seviyesi Ekle" #: adminpages/reports/history.php:184 #: adminpages/reports/login.php:181 #: adminpages/reports/login.php:184 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 msgid "Name" msgstr "Ad" @@ -1313,12 +1422,14 @@ msgstr "Ad" #: adminpages/membershiplevels.php:296 #: adminpages/addons.php:111 #: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "Açıklama" #: adminpages/membershiplevels.php:316 #: adminpages/membershiplevels.php:314 #: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "Onay Mesajı" @@ -1326,6 +1437,8 @@ msgstr "Onay Mesajı" #: adminpages/membershiplevels.php:333 #: adminpages/membershiplevels.php:397 #: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "Fatura Bilgileri" @@ -1342,6 +1455,8 @@ msgstr "Fatura Bilgileri" #: classes/gateways/class.pmprogateway_stripe.php:2696 #: classes/gateways/class.pmprogateway_stripe.php:2698 #: classes/gateways/class.pmprogateway_stripe.php:2694 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "başına" @@ -1354,6 +1469,7 @@ msgstr "Stripe entegrasyonu şu anda sadece fatura dönemlerini destekler\"Week\ #: adminpages/discountcodes.php:620 #: adminpages/membershiplevels.php:448 #: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:446 msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." msgstr "Braintree entegrasyonu şu anda sadece fatura dönemlerini destekler\"Week\", \"Month\" ya da \"Year\"." @@ -1365,6 +1481,7 @@ msgstr "Payflow entegrasyonu şu anda sadece 1 fatura ve fatura dönemleri freka #: adminpages/membershiplevels.php:374 #: adminpages/membershiplevels.php:372 #: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." msgstr "Bu seviyeyi kayıt ettikten sonra numarayı (ID'yi) kayıt edin. \"Plan ID\" pmpro_# # seviye numarası." @@ -1377,6 +1494,8 @@ msgstr "Bu seviyeyi kayıt ettikten sonra numarayı (ID'yi) kayıt edin. \"Plan #: adminpages/membershiplevels.php:454 #: adminpages/membershiplevels.php:459 #: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 msgid "Note" msgstr "Not" @@ -1390,6 +1509,7 @@ msgstr "\"Plan\" Braintree yönetim panelinden \"Plan ID\" ayarlayın." #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "Stripe entegrasyonu fatura sınırını şu anda desteklemiyor. Hala aşağıdaki geçerlilik bitiş tarihini ayarlayabilirsiniz." @@ -1398,6 +1518,8 @@ msgstr "Stripe entegrasyonu fatura sınırını şu anda desteklemiyor. Hala aş #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "2Checkout entegrasyonu özel denemeleri desteklemiyor. Bir dönem çalışmalarda ilk ödeme fatura tutarından farklı ayarlayarak bunu yapabilirsiniz." @@ -1407,6 +1529,7 @@ msgstr "2Checkout entegrasyonu özel denemeleri desteklemiyor. Bir dönem çalı #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "Stripe entegrasyon şu anda desteklenmiyor $0." @@ -1416,6 +1539,7 @@ msgstr "Stripe entegrasyon şu anda desteklenmiyor $0." #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "Braintree entegrasyon şu anda desteklenmiyor $0." @@ -1425,6 +1549,7 @@ msgstr "Braintree entegrasyon şu anda desteklenmiyor $0." #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "Payflow entegrasyon şu anda desteklenmiyor $0." @@ -1435,6 +1560,7 @@ msgstr "Payflow entegrasyon şu anda desteklenmiyor $0." #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "Diğer Ayarlar" @@ -1458,6 +1584,8 @@ msgstr "Bu düzeydeki üyelik seviyeleri sayfasından gizlemek ve kaydı devre d #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "İçerik Ayarları" @@ -1465,6 +1593,7 @@ msgstr "İçerik Ayarları" #: adminpages/membershiplevels.php:461 #: adminpages/membershiplevels.php:467 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "Kategoriler" @@ -1512,6 +1641,8 @@ msgstr "Deneme Döngüsü" #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "Son erme" @@ -1519,6 +1650,7 @@ msgstr "Son erme" #: adminpages/membershiplevels.php:511 #: adminpages/membershiplevels.php:517 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "Üyeliğe İzin Ver" @@ -1527,6 +1659,7 @@ msgstr "Üyeliğe İzin Ver" #: adminpages/membershiplevels.php:540 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "ÜCRETSİZ" @@ -1555,6 +1688,8 @@ msgstr "her zaman" #: adminpages/reports/sales.php:314 #: adminpages/reports/sales.php:321 #: adminpages/reports/sales.php:332 +#: adminpages/reports/memberships.php:341 +#: adminpages/reports/memberships.php:352 msgid "for" msgstr "dan" @@ -1563,6 +1698,7 @@ msgstr "dan" #: adminpages/membershiplevels.php:566 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "Sonra" @@ -1591,6 +1727,7 @@ msgstr "%s üyelik seviyesini silmek istediğinize emin misiniz? Silerseniz tüm #: includes/adminpages.php:74 #: includes/adminpages.php:142 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "Üye Listesi" @@ -1602,6 +1739,8 @@ msgstr "Üye Listesi" #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "CSV olarak aktar" @@ -1624,6 +1763,8 @@ msgstr "CSV olarak aktar" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "Göster" @@ -1647,6 +1788,8 @@ msgstr "Göster" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "Tüm Seviyeler" @@ -1668,6 +1811,8 @@ msgstr "Eski Üyeler" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "Üye Ara" @@ -1695,6 +1840,8 @@ msgstr "%d üye bulunamadı." #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "Kullanıcı Adı" @@ -1726,6 +1873,7 @@ msgstr "Soyad " #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "Fatura Adresi" @@ -1803,6 +1951,7 @@ msgstr "Sipariş silme hatası." #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "Sipariş başarıyla kaydedildi." @@ -1816,6 +1965,7 @@ msgstr "Sipariş damgası güncelleme hatası" #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "Sipariş kayıt etme hatası" @@ -1827,6 +1977,7 @@ msgstr "Sipariş kayıt etme hatası" #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "Sipariş" @@ -1835,6 +1986,7 @@ msgstr "Sipariş" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "Yeni Sipariş" @@ -1843,6 +1995,7 @@ msgstr "Yeni Sipariş" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "Sizin için rastgele oluşturulmuştur." @@ -1851,6 +2004,7 @@ msgstr "Sizin için rastgele oluşturulmuştur." #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "Kullanıcı Kimliği" @@ -1860,6 +2014,8 @@ msgstr "Kullanıcı Kimliği" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "Üyelik Seviyesi Kimliği" @@ -1869,6 +2025,7 @@ msgstr "Üyelik Seviyesi Kimliği" #: includes/privacy.php:245 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "Fatura Adı" @@ -1878,6 +2035,7 @@ msgstr "Fatura Adı" #: includes/privacy.php:249 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "Fatura Sokak" @@ -1888,6 +2046,7 @@ msgstr "Fatura Sokak" #: includes/privacy.php:358 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "Fatura Şehir" @@ -1897,6 +2056,7 @@ msgstr "Fatura Şehir" #: includes/privacy.php:257 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "Billing County" @@ -1908,6 +2068,7 @@ msgstr "Billing County" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "Fatura Posta Kodu" @@ -1919,6 +2080,7 @@ msgstr "Fatura Posta Kodu" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "Fatura Ülke" @@ -1929,6 +2091,7 @@ msgstr "Fatura Ülke" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "Fatura" @@ -1939,6 +2102,7 @@ msgstr "Fatura" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "Ara Toplam" @@ -1954,6 +2118,8 @@ msgstr "Ara Toplam" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "Vergi" @@ -1964,6 +2130,7 @@ msgstr "Vergi" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "Kupon Tutarı" @@ -1988,6 +2155,9 @@ msgstr "Kupon Tutarı" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "Toplam" @@ -2003,6 +2173,7 @@ msgstr "Ara toplam + vergi + kupon tutarı olmalı" #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "Ödeme Türü" @@ -2012,6 +2183,7 @@ msgstr "Ödeme Türü" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "Örneğin PayPal Express, PayPal standart, kredi kartı." @@ -2036,6 +2208,9 @@ msgstr "Örneğin PayPal Express, PayPal standart, kredi kartı." #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "Kart Türü" @@ -2045,6 +2220,7 @@ msgstr "Kart Türü" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "Örneğin Visa, MasterCard, AMEX, vb" @@ -2058,6 +2234,8 @@ msgstr "Örneğin Visa, MasterCard, AMEX, vb" #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "Hesap Numarası" @@ -2066,6 +2244,7 @@ msgstr "Hesap Numarası" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "Son 4 hane." @@ -2078,6 +2257,7 @@ msgstr "Son 4 hane." #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "Bitiş Ayı" @@ -2113,6 +2293,10 @@ msgstr "Geçerlilik Yılı" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "Durum" @@ -2130,6 +2314,9 @@ msgstr "Durum" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "Ödeme geçidi" @@ -2138,6 +2325,7 @@ msgstr "Ödeme geçidi" #: paid-memberships-pro.php:157 #: paid-memberships-pro.php:159 #: paid-memberships-pro.php:160 +#: paid-memberships-pro.php:166 msgid "Testing Only" msgstr "Sadece test için" @@ -2149,6 +2337,7 @@ msgstr "Sadece test için" #: paid-memberships-pro.php:158 #: paid-memberships-pro.php:160 #: paid-memberships-pro.php:161 +#: paid-memberships-pro.php:167 msgid "Pay by Check" msgstr "Çek ile ödeme" @@ -2163,6 +2352,8 @@ msgstr "Çek ile ödeme" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "Ödeme Kanalı Türü" @@ -2180,6 +2371,9 @@ msgstr "Ödeme Kanalı Türü" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "Sandbox/Test" @@ -2197,6 +2391,9 @@ msgstr "Sandbox/Test" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "Canlı/Üretim" @@ -2206,6 +2403,7 @@ msgstr "Canlı/Üretim" #: includes/privacy.php:321 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "Ödeme Dönüşüm Numarası" @@ -2214,6 +2412,7 @@ msgstr "Ödeme Dönüşüm Numarası" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "Ağ geçidi tarafından oluşturulan. Çapraz sipariş referansları." @@ -2225,6 +2424,8 @@ msgstr "Ağ geçidi tarafından oluşturulan. Çapraz sipariş referansları." #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "Abonelik Dönüşüm Numarası" @@ -2234,6 +2435,7 @@ msgstr "Abonelik Dönüşüm Numarası" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "Ağ geçidi tarafından oluşturulan. Çapraz sipariş referansları." @@ -2258,6 +2460,8 @@ msgstr "Ağ geçidi tarafından oluşturulan. Çapraz sipariş referansları." #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "Tarih" @@ -2267,6 +2471,7 @@ msgstr "Tarih" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "Affiliate ID" @@ -2276,6 +2481,7 @@ msgstr "Affiliate ID" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "Affiliate SubID" @@ -2285,6 +2491,7 @@ msgstr "Affiliate SubID" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "Notlar" @@ -2294,6 +2501,7 @@ msgstr "Notlar" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "Siparişi kaydet" @@ -2320,6 +2528,11 @@ msgstr "Siparişi kaydet" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "Vazgeç" @@ -2342,6 +2555,8 @@ msgstr "Vazgeç" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "Siparişler" @@ -2351,6 +2566,7 @@ msgstr "Siparişler" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "Yeni sipariş ekle" @@ -2361,6 +2577,7 @@ msgstr "Yeni sipariş ekle" #: adminpages/orders.php:1014 #: includes/metaboxes.php:19 #: adminpages/orders.php:1015 +#: adminpages/orders.php:1103 msgid "All" msgstr "Tümü" @@ -2369,6 +2586,7 @@ msgstr "Tümü" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "Bir tarih aralığı içinde" @@ -2377,6 +2595,7 @@ msgstr "Bir tarih aralığı içinde" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "Önceden tanımlanmış tarih aralığı" @@ -2385,6 +2604,7 @@ msgstr "Önceden tanımlanmış tarih aralığı" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "Bir Level içinde" @@ -2393,6 +2613,7 @@ msgstr "Bir Level içinde" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "Bir durum içinde" @@ -2401,6 +2622,7 @@ msgstr "Bir durum içinde" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "Kimden " @@ -2409,6 +2631,7 @@ msgstr "Kimden " #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "Kime" @@ -2417,6 +2640,7 @@ msgstr "Kime" #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "filtrele" @@ -2425,6 +2649,7 @@ msgstr "filtrele" #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "Filtreler" @@ -2440,6 +2665,8 @@ msgstr "Filtreler" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "Siparişleri Ara" @@ -2449,6 +2676,8 @@ msgstr "Siparişleri Ara" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "%d sipariş bulunamadı." @@ -2467,6 +2696,7 @@ msgstr "%d sipariş bulunamadı." #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "Kullanıcı" @@ -2498,6 +2728,8 @@ msgstr "Kullanıcı" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "Üyelik Seviyesi" @@ -2513,6 +2745,7 @@ msgstr "Üyelik Seviyesi" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "Ödeme" @@ -2522,6 +2755,7 @@ msgstr "Ödeme" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "Transaction IDs" @@ -2542,6 +2776,8 @@ msgstr "Transaction IDs" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "silindi" @@ -2551,6 +2787,7 @@ msgstr "silindi" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "Abonelik" @@ -2561,6 +2798,7 @@ msgstr "Abonelik" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "Siparişleri silme kalıcıdır ve etkin kullanıcıları etkileyebilir. Sipariş %s silmek istediğinizden emin misiniz?" @@ -2575,6 +2813,7 @@ msgstr "Siparişleri silme kalıcıdır ve etkin kullanıcıları etkileyebilir. #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "Sipariş bulunamadı" @@ -2638,6 +2877,7 @@ msgstr "Aşağıdaki sayfalar sizin için oluşturuldu" #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "Gerekli her Paid Memberships Pro sayfaya atanmış WordPress sayfaları yönetebilirsiniz." @@ -2646,6 +2886,7 @@ msgstr "Gerekli her Paid Memberships Pro sayfaya atanmış WordPress sayfaları #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "WordPress gerekli her Paid Memberships Pro sayfası için sayfaları veya atama" @@ -2654,6 +2895,7 @@ msgstr "WordPress gerekli her Paid Memberships Pro sayfası için sayfaları vey #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "oluşturmak için buraya tıklayın" @@ -2662,6 +2904,7 @@ msgstr "oluşturmak için buraya tıklayın" #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "Hesap Sayfası" @@ -2713,6 +2956,16 @@ msgstr "Hesap Sayfası" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "sayfa düzenle" @@ -2757,6 +3010,16 @@ msgstr "sayfa düzenle" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:246 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "sayfa görüntüle" @@ -2800,6 +3063,13 @@ msgstr "sayfa görüntüle" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:248 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "Shortcode dahil" @@ -2809,6 +3079,7 @@ msgstr "Shortcode dahil" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "Fatura Bilgi Sayfası" @@ -2818,6 +3089,7 @@ msgstr "Fatura Bilgi Sayfası" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "İptal Sayfası" @@ -2827,6 +3099,7 @@ msgstr "İptal Sayfası" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "Ödeme Sayfası" @@ -2836,6 +3109,7 @@ msgstr "Ödeme Sayfası" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "Onay Sayfası" @@ -2845,6 +3119,7 @@ msgstr "Onay Sayfası" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "Fatura Sayfası" @@ -2854,6 +3129,7 @@ msgstr "Fatura Sayfası" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "Seviye Sayfası" @@ -2871,6 +3147,7 @@ msgstr "Ödeme ayarları güncellendi." #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "Ödeme kanalı" @@ -2879,6 +3156,7 @@ msgstr "Ödeme kanalı" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "SSL Ayarları" @@ -2926,6 +3204,7 @@ msgstr "Parola" #: classes/gateways/class.pmprogateway_paypalexpress.php:162 #: classes/gateways/class.pmprogateway_paypalstandard.php:154 #: classes/gateways/class.pmprogateway_paypalexpress.php:172 +#: classes/gateways/class.pmprogateway_paypalexpress.php:173 msgid "Gateway Account Email" msgstr "Email" @@ -2939,6 +3218,8 @@ msgstr "Email" #: classes/gateways/class.pmprogateway_paypalstandard.php:162 #: classes/gateways/class.pmprogateway_twocheckout.php:120 #: classes/gateways/class.pmprogateway_paypalexpress.php:180 +#: classes/gateways/class.pmprogateway_paypalexpress.php:181 +#: classes/gateways/class.pmprogateway_twocheckout.php:127 msgid "API Username" msgstr "API Kullanıcı adı" @@ -2952,6 +3233,8 @@ msgstr "API Kullanıcı adı" #: classes/gateways/class.pmprogateway_paypalstandard.php:170 #: classes/gateways/class.pmprogateway_twocheckout.php:129 #: classes/gateways/class.pmprogateway_paypalexpress.php:188 +#: classes/gateways/class.pmprogateway_paypalexpress.php:189 +#: classes/gateways/class.pmprogateway_twocheckout.php:136 msgid "API Password" msgstr "API Parola" @@ -2962,6 +3245,7 @@ msgstr "API Parola" #: classes/gateways/class.pmprogateway_paypalexpress.php:186 #: classes/gateways/class.pmprogateway_paypalstandard.php:178 #: classes/gateways/class.pmprogateway_paypalexpress.php:196 +#: classes/gateways/class.pmprogateway_paypalexpress.php:197 msgid "API Signature" msgstr "API İmza" @@ -2987,6 +3271,7 @@ msgstr "Transaction Key" #: classes/gateways/class.pmprogateway_stripe.php:570 #: classes/gateways/class.pmprogateway_stripe.php:576 #: classes/gateways/class.pmprogateway_stripe.php:340 +#: classes/gateways/class.pmprogateway_stripe.php:366 msgid "Secret Key" msgstr "Secret Key" @@ -2998,6 +3283,7 @@ msgstr "Secret Key" #: classes/gateways/class.pmprogateway_stripe.php:554 #: classes/gateways/class.pmprogateway_stripe.php:560 #: classes/gateways/class.pmprogateway_stripe.php:324 +#: classes/gateways/class.pmprogateway_stripe.php:350 msgid "Publishable Key" msgstr "Publishable Key" @@ -3008,6 +3294,7 @@ msgstr "Publishable Key" #: adminpages/paymentsettings.php:364 #: classes/gateways/class.pmprogateway_braintree.php:313 #: classes/gateways/class.pmprogateway_cybersource.php:94 +#: classes/gateways/class.pmprogateway_braintree.php:320 msgid "Merchant ID" msgstr "Satıcı Numarası" @@ -3015,6 +3302,7 @@ msgstr "Satıcı Numarası" #: adminpages/paymentsettings.php:302 #: adminpages/paymentsettings.php:306 #: classes/gateways/class.pmprogateway_braintree.php:321 +#: classes/gateways/class.pmprogateway_braintree.php:328 msgid "Public Key" msgstr "Public Key" @@ -3022,6 +3310,7 @@ msgstr "Public Key" #: adminpages/paymentsettings.php:310 #: adminpages/paymentsettings.php:314 #: classes/gateways/class.pmprogateway_braintree.php:329 +#: classes/gateways/class.pmprogateway_braintree.php:336 msgid "Private Key" msgstr "Private Key" @@ -3029,12 +3318,14 @@ msgstr "Private Key" #: adminpages/paymentsettings.php:318 #: adminpages/paymentsettings.php:322 #: classes/gateways/class.pmprogateway_braintree.php:337 +#: classes/gateways/class.pmprogateway_braintree.php:344 msgid "Client-Side Encryption Key" msgstr "Client-Side Encryption Key" #: adminpages/paymentsettings.php:360 #: adminpages/paymentsettings.php:355 #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "Gizli Kelime" @@ -3051,12 +3342,14 @@ msgstr "Transaction Security Key" #: adminpages/paymentsettings.php:381 #: adminpages/paymentsettings.php:199 #: adminpages/paymentsettings.php:206 +#: adminpages/paymentsettings.php:204 msgid "Currency" msgstr "Para Birimi" #: adminpages/paymentsettings.php:400 #: adminpages/paymentsettings.php:215 #: adminpages/paymentsettings.php:222 +#: adminpages/paymentsettings.php:220 msgid "Not all currencies will be supported by every gateway. Please check with your gateway." msgstr "Tüm para birimleri her ağ geçidi tarafından desteklenecektir. Lütfen ağ geçidi ile kontrol edin." @@ -3065,6 +3358,7 @@ msgstr "Tüm para birimleri her ağ geçidi tarafından desteklenecektir. Lütfe #: adminpages/paymentsettings.php:401 #: adminpages/paymentsettings.php:220 #: adminpages/paymentsettings.php:227 +#: adminpages/paymentsettings.php:225 msgid "Accepted Credit Card Types" msgstr "Kabul Edilen Kredi Kartı Tipleri" @@ -3089,6 +3383,8 @@ msgstr "Kim için check out yazmak. Nereden postalayacaksın. Kullanıma alma, o #: classes/gateways/class.pmprogateway_stripe.php:629 #: classes/gateways/class.pmprogateway_stripe.php:635 #: classes/gateways/class.pmprogateway_stripe.php:399 +#: adminpages/orders.php:570 +#: classes/gateways/class.pmprogateway_stripe.php:425 msgid "Show Billing Address Fields" msgstr "Fatura adresi alanlarını göster" @@ -3098,6 +3394,7 @@ msgstr "Fatura adresi alanlarını göster" #: classes/gateways/class.pmprogateway_stripe.php:638 #: classes/gateways/class.pmprogateway_stripe.php:644 #: classes/gateways/class.pmprogateway_stripe.php:408 +#: classes/gateways/class.pmprogateway_stripe.php:434 msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.
If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "Stripe fatura adresi alanları gerekmez. Ödeme sayfasında gizlemek için Hayır'ı işaretleyin." @@ -3106,6 +3403,7 @@ msgstr "Stripe fatura adresi alanları gerekmez. Ödeme sayfasında gizlemek iç #: adminpages/paymentsettings.php:438 #: adminpages/paymentsettings.php:234 #: adminpages/paymentsettings.php:241 +#: adminpages/paymentsettings.php:239 msgid "Sales Tax" msgstr "Satış vergisi" @@ -3118,6 +3416,7 @@ msgstr "Satış vergisi" #: pages/billing.php:179 #: adminpages/paymentsettings.php:241 #: pages/billing.php:181 +#: adminpages/paymentsettings.php:239 msgid "optional" msgstr "isteğe bağlı" @@ -3126,6 +3425,7 @@ msgstr "isteğe bağlı" #: adminpages/paymentsettings.php:441 #: adminpages/paymentsettings.php:237 #: adminpages/paymentsettings.php:244 +#: adminpages/paymentsettings.php:242 msgid "Tax State" msgstr "Devlet Vergisi" @@ -3134,6 +3434,7 @@ msgstr "Devlet Vergisi" #: adminpages/paymentsettings.php:442 #: adminpages/paymentsettings.php:238 #: adminpages/paymentsettings.php:245 +#: adminpages/paymentsettings.php:243 msgid "abbreviation, e.g. \"PA\"" msgstr "kısaltma, örn. \"PA\"" @@ -3142,6 +3443,7 @@ msgstr "kısaltma, örn. \"PA\"" #: adminpages/paymentsettings.php:444 #: adminpages/paymentsettings.php:240 #: adminpages/paymentsettings.php:247 +#: adminpages/paymentsettings.php:245 msgid "decimal, e.g. \"0.06\"" msgstr "ondalık, örn. \"0.06\"" @@ -3153,6 +3455,7 @@ msgstr "Sadece ABD. Eğer verilen değerler, vergi uygulanacak herhangi bir üye #: adminpages/paymentsettings.php:450 #: adminpages/paymentsettings.php:253 #: adminpages/paymentsettings.php:266 +#: adminpages/paymentsettings.php:264 msgid "Force SSL" msgstr "SSL zorunlu kıl" @@ -3160,6 +3463,7 @@ msgstr "SSL zorunlu kıl" #: adminpages/paymentsettings.php:456 #: adminpages/paymentsettings.php:268 #: adminpages/paymentsettings.php:281 +#: adminpages/paymentsettings.php:279 msgid "Yes (with JavaScript redirects)" msgstr "Evet (JavaScript yönlendirmeleri ile)" @@ -3168,6 +3472,7 @@ msgstr "Evet (JavaScript yönlendirmeleri ile)" #: adminpages/paymentsettings.php:463 #: adminpages/paymentsettings.php:278 #: adminpages/paymentsettings.php:291 +#: adminpages/paymentsettings.php:289 msgid "SSL Seal Code" msgstr "SSL mühür kodu" @@ -3190,6 +3495,7 @@ msgstr "Lütfen güvenli sayfalarda güvenli (HTTPS) URL'leri \"Nuclear Option\" #: classes/gateways/class.pmprogateway_paypalexpress.php:205 #: classes/gateways/class.pmprogateway_paypalstandard.php:186 #: classes/gateways/class.pmprogateway_paypalexpress.php:215 +#: classes/gateways/class.pmprogateway_paypalexpress.php:216 msgid "IPN Handler URL" msgstr "IPN Handler URL" @@ -3199,12 +3505,14 @@ msgstr "IPN Handler URL" #: classes/gateways/class.pmprogateway_paypal.php:199 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 #: classes/gateways/class.pmprogateway_paypalexpress.php:218 +#: classes/gateways/class.pmprogateway_paypalexpress.php:219 msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to " msgstr "PayPal ile tam entegre ederek, IPN Handler URL kümesinden emin olun." #: adminpages/paymentsettings.php:493 #: adminpages/paymentsettings.php:487 #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "TwoCheckout INS URL" @@ -3234,6 +3542,7 @@ msgstr "Authorize.net ile tam entegre ederek, Silent Post URL kümesinden emin o #: adminpages/paymentsettings.php:503 #: adminpages/paymentsettings.php:511 #: classes/gateways/class.pmprogateway_braintree.php:345 +#: classes/gateways/class.pmprogateway_braintree.php:352 msgid "Web Hook URL" msgstr "Web Hook URL" @@ -3247,6 +3556,7 @@ msgstr "Stripe ile tam entegre ederek, Web Hook URL kümesinden emin olun." #: adminpages/paymentsettings.php:474 #: adminpages/paymentsettings.php:515 #: classes/gateways/class.pmprogateway_braintree.php:348 +#: classes/gateways/class.pmprogateway_braintree.php:355 msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to" msgstr "Braintree ile tam entegre ederek, Web Hook URL kümesinden emin olun." @@ -3327,6 +3637,7 @@ msgstr "Ziyaret, Görüntüleme ve Giriş Raporları" #: classes/class-pmpro-members-list-table.php:234 #: classes/class-pmpro-members-list-table.php:233 #: adminpages/reports/login.php:105 +#: adminpages/reports/login.php:111 msgid "All Users" msgstr "Tüm Kullanıcılar" @@ -3372,6 +3683,7 @@ msgstr "Üyelik" #: adminpages/reports/memberships.php:52 #: adminpages/reports/sales.php:53 #: adminpages/reports/sales.php:542 +#: adminpages/reports/sales.php:543 msgid "All Time" msgstr "Tüm Zamanlar" @@ -3383,6 +3695,7 @@ msgstr "Tüm Zamanlar" #: adminpages/orders.php:1081 #: adminpages/orders.php:1073 #: adminpages/orders.php:1074 +#: adminpages/orders.php:1162 msgid "This Year" msgstr "Bu Yıl" @@ -3395,6 +3708,7 @@ msgstr "Bu Yıl" #: adminpages/orders.php:1077 #: adminpages/orders.php:1069 #: adminpages/orders.php:1070 +#: adminpages/orders.php:1158 msgid "This Month" msgstr "Bu Ay" @@ -3435,6 +3749,8 @@ msgstr "Yaşam süresi değeri (LTV)" #: adminpages/reports/sales.php:295 #: adminpages/advancedsettings.php:322 #: adminpages/reports/sales.php:313 +#: adminpages/advancedsettings.php:329 +#: adminpages/reports/memberships.php:332 msgid "Daily" msgstr "Günlük" @@ -3447,6 +3763,8 @@ msgstr "Günlük" #: adminpages/reports/sales.php:296 #: adminpages/advancedsettings.php:328 #: adminpages/reports/sales.php:314 +#: adminpages/advancedsettings.php:335 +#: adminpages/reports/memberships.php:333 msgid "Monthly" msgstr "Aylık" @@ -3457,11 +3775,13 @@ msgstr "Aylık" #: adminpages/reports/memberships.php:335 #: adminpages/reports/sales.php:297 #: adminpages/reports/sales.php:315 +#: adminpages/reports/memberships.php:334 msgid "Annual" msgstr "Yıllık" #: adminpages/reports/memberships.php:299 #: adminpages/reports/memberships.php:339 +#: adminpages/reports/memberships.php:338 msgid "Signups vs. Cancellations" msgstr "Üyelik ve İptaller" @@ -3472,6 +3792,7 @@ msgstr "Üyelik ve İptaller" #: adminpages/reports/memberships.php:385 #: adminpages/reports/sales.php:342 #: adminpages/reports/sales.php:360 +#: adminpages/reports/memberships.php:384 msgid "Generate Report" msgstr "Rapor Oluştur" @@ -3513,6 +3834,7 @@ msgstr "Satış" #: includes/cleanup.php:24 #: classes/class.memberorder.php:959 #: classes/class.memberorder.php:1001 +#: classes/class.memberorder.php:1010 #, php-format msgid "There was an error canceling the subscription for user with ID=%s. You will want to check your payment gateway to see if their subscription is still active." msgstr "ID=%s abonelik iptali için hata oluştu. Aboneliğin hata aktif olup olmadığını kontrol edin." @@ -3544,6 +3866,7 @@ msgstr "%s üyeliğiniz %s tarihinde İPTAL edildi." #: classes/class.pmproemail.php:173 #: classes/class.pmproemail.php:269 #: classes/class.pmproemail.php:262 +#: classes/class.pmproemail.php:395 #, php-format msgid "Your membership confirmation for %s" msgstr " %s üyeliğinizi onaylamak için" @@ -3617,6 +3940,18 @@ msgstr " %s üyeliğinizi onaylamak için" #: classes/class.pmproemail.php:764 #: adminpages/orders.php:576 #: adminpages/orders.php:1343 +#: adminpages/orders.php:697 +#: adminpages/orders.php:1437 +#: classes/class.pmproemail.php:465 +#: classes/class.pmproemail.php:471 +#: classes/class.pmproemail.php:477 +#: classes/class.pmproemail.php:567 +#: classes/class.pmproemail.php:573 +#: classes/class.pmproemail.php:895 +#: classes/class.pmproemail.php:897 +#: classes/gateways/class.pmprogateway_braintree.php:516 +#: classes/gateways/class.pmprogateway_stripe.php:906 +#: includes/profile.php:454 msgid "Discount Code" msgstr "İndirim Kodu" @@ -3650,6 +3985,11 @@ msgstr "İndirim Kodu" #: classes/class.pmproemail.php:771 #: classes/class.pmproemail.php:905 #: classes/class.pmproemail.php:950 +#: classes/class.pmproemail.php:485 +#: classes/class.pmproemail.php:583 +#: classes/class.pmproemail.php:904 +#: classes/class.pmproemail.php:1038 +#: classes/class.pmproemail.php:1083 #, php-format msgid "This membership will expire on %s." msgstr "Bu üyelik %s tarihinde sona erecek." @@ -3708,6 +4048,7 @@ msgstr "%s üyeliği için FATURA" #: classes/class.pmproemail.php:794 #: classes/class.pmproemail.php:806 #: classes/class.pmproemail.php:799 +#: classes/class.pmproemail.php:932 #, php-format msgid "Your trial at %s is ending soon" msgstr "Deneme süresi %s tarihinde sona eriyor." @@ -3718,6 +4059,7 @@ msgstr "Deneme süresi %s tarihinde sona eriyor." #: classes/class.pmproemail.php:831 #: classes/class.pmproemail.php:843 #: classes/class.pmproemail.php:836 +#: classes/class.pmproemail.php:969 #, php-format msgid "Your membership at %s has ended" msgstr "Üyeliğinizi %s sona erdi" @@ -3728,6 +4070,7 @@ msgstr "Üyeliğinizi %s sona erdi" #: classes/class.pmproemail.php:858 #: classes/class.pmproemail.php:870 #: classes/class.pmproemail.php:863 +#: classes/class.pmproemail.php:996 #, php-format msgid "Your membership at %s will end soon" msgstr "%s üyeliğiniz yakında sona erecek" @@ -3738,6 +4081,7 @@ msgstr "%s üyeliğiniz yakında sona erecek" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:900 #: classes/class.pmproemail.php:893 +#: classes/class.pmproemail.php:1026 #, php-format msgid "Your membership at %s has been changed" msgstr "Üyeliğinizi %s değiştirildi" @@ -3752,6 +4096,8 @@ msgstr "Üyeliğinizi %s değiştirildi" #: includes/email.php:465 #: classes/class.pmproemail.php:898 #: classes/class.pmproemail.php:943 +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 #, php-format msgid "The new level is %s." msgstr "Yeni seviye bir %s." @@ -3787,6 +4133,7 @@ msgstr "Bu üyelik sona eremez" #: classes/class.pmproemail.php:933 #: classes/class.pmproemail.php:945 #: classes/class.pmproemail.php:938 +#: classes/class.pmproemail.php:1071 #, php-format msgid "Membership for %s at %s has been changed" msgstr "%s üyelik %s tarihinde değiştirildi." @@ -3869,36 +4216,42 @@ msgstr "Authorize.net ile ağlantı kurulamadı" #: classes/gateways/class.pmprogateway_braintree.php:61 #: classes/gateways/class.pmprogateway_stripe.php:53 #: classes/gateways/class.pmprogateway_braintree.php:574 +#: classes/gateways/class.pmprogateway_braintree.php:581 msgid "Unknown error: Initial payment failed." msgstr "Bilinmeyen Hata: İlk ödeme başarısız." #: classes/gateways/class.pmprogateway_braintree.php:120 #: classes/gateways/class.pmprogateway_braintree.php:650 #: classes/gateways/class.pmprogateway_braintree.php:653 +#: classes/gateways/class.pmprogateway_braintree.php:660 msgid "Error during settlement:" msgstr "Ödeme sırasında hata." #: classes/gateways/class.pmprogateway_braintree.php:129 #: classes/gateways/class.pmprogateway_braintree.php:659 #: classes/gateways/class.pmprogateway_braintree.php:662 +#: classes/gateways/class.pmprogateway_braintree.php:669 msgid "Error during charge:" msgstr "Üyelik sırasında hata meydana geldi." #: classes/gateways/class.pmprogateway_braintree.php:198 #: classes/gateways/class.pmprogateway_braintree.php:762 #: classes/gateways/class.pmprogateway_braintree.php:765 +#: classes/gateways/class.pmprogateway_braintree.php:772 msgid "Failed to update customer." msgstr "Müşteri bilgileri güncellemedi." #: classes/gateways/class.pmprogateway_braintree.php:246 #: classes/gateways/class.pmprogateway_braintree.php:810 #: classes/gateways/class.pmprogateway_braintree.php:813 +#: classes/gateways/class.pmprogateway_braintree.php:820 msgid "Failed to create customer." msgstr "Müşteri oluşturma sırasında hata meydana geldi." #: classes/gateways/class.pmprogateway_braintree.php:253 #: classes/gateways/class.pmprogateway_braintree.php:817 #: classes/gateways/class.pmprogateway_braintree.php:820 +#: classes/gateways/class.pmprogateway_braintree.php:827 msgid "Error creating customer record with Braintree:" msgstr "Braintree ile üyelik sırasında hata meydana geldi." @@ -3927,6 +4280,7 @@ msgstr "Braintree aboneliği geçersiz." #: classes/gateways/class.pmprogateway_stripe.php:361 #: classes/gateways/class.pmprogateway_braintree.php:1036 #: classes/gateways/class.pmprogateway_braintree.php:1039 +#: classes/gateways/class.pmprogateway_braintree.php:1046 msgid "Could not find the subscription." msgstr "Abonelik bulunamadı." @@ -3950,6 +4304,7 @@ msgstr "Kısmi ödeme için iade işlemi yapılamadı. Lütfen bizimle iletişim #: classes/gateways/class.pmprogateway_paypalexpress.php:854 #: classes/gateways/class.pmprogateway_paypal.php:726 #: classes/gateways/class.pmprogateway_paypalexpress.php:865 +#: classes/gateways/class.pmprogateway_paypalexpress.php:866 msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward." msgstr "Site sahibine başvurun ya da ileri giderek ücret olmadığından emin olmak için PayPal içinde aboneliğinizi iptal edebilirsiniz." @@ -3991,6 +4346,8 @@ msgstr "Stripe ile müşteri oluşturma hatası." #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "Stripe ile plan oluşturma hatası." @@ -4014,6 +4371,8 @@ msgstr "Stripe ile plan oluşturma hatası." #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "Stripe ile abonelik planı hatası" @@ -4024,6 +4383,7 @@ msgstr "Stripe ile abonelik planı hatası" #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "Eski abonelik iptal edilemedi." @@ -4562,6 +4922,7 @@ msgstr "ve" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "!!name!! Şimdi Üye Ol" @@ -4633,6 +4994,9 @@ msgstr "Mevcut Seviye" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "Yok" @@ -4691,6 +5055,9 @@ msgstr "Üyeliğiniz aktif." #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "Seviye" @@ -4771,12 +5138,15 @@ msgstr "Profili Düzenle" #: includes/profile.php:921 #: includes/profile.php:880 #: includes/profile.php:917 +#: includes/profile.php:920 +#: includes/profile.php:957 msgid "Change Password" msgstr "Parola Değiştir" #: pages/account.php:91 #: pages/account.php:87 #: adminpages/emailtemplates.php:156 +#: adminpages/emailtemplates.php:149 msgid "Billing Information" msgstr "Ödeme Bilgisi" @@ -4860,6 +5230,7 @@ msgstr "Abonelik ödemeniz PayPal tarafından sağlanmıştır. Fatura bilgileri #: includes/profile.php:759 #: includes/profile.php:755 #: pages/billing.php:166 +#: includes/profile.php:795 msgid "First Name" msgstr "Ad" @@ -4874,6 +5245,7 @@ msgstr "Ad" #: includes/profile.php:760 #: includes/profile.php:756 #: pages/billing.php:170 +#: includes/profile.php:796 msgid "Last Name" msgstr "Soyad" @@ -5019,6 +5391,8 @@ msgstr " %s Kabul ediyoruz" #: classes/gateways/class.pmprogateway_stripe.php:1322 #: classes/gateways/class.pmprogateway_stripe.php:781 #: pages/billing.php:377 +#: classes/gateways/class.pmprogateway_braintree.php:482 +#: classes/gateways/class.pmprogateway_stripe.php:889 msgid "Card Number" msgstr "Kart Numarası" @@ -5030,6 +5404,7 @@ msgstr "Kart Numarası" #: classes/gateways/class.pmprogateway_braintree.php:503 #: pages/billing.php:410 #: pages/billing.php:417 +#: classes/gateways/class.pmprogateway_braintree.php:510 msgid "CVV" msgstr "CVV" @@ -5042,6 +5417,7 @@ msgstr "CVV" #: pages/billing.php:411 #: pages/checkout.php:425 #: pages/billing.php:418 +#: classes/gateways/class.pmprogateway_braintree.php:511 msgid "what's this?" msgstr "bu nedir?" @@ -5059,6 +5435,7 @@ msgstr "bu nedir?" #: classes/gateways/class.pmprogateway_stripe.php:2653 #: classes/gateways/class.pmprogateway_stripe.php:2649 #: pages/billing.php:441 +#: classes/gateways/class.pmprogateway_stripe.php:3106 msgid "Update" msgstr "Güncelle" @@ -5147,6 +5524,8 @@ msgstr "İndirim kuponunuz var mı?" #: classes/gateways/class.pmprogateway_stripe.php:1338 #: classes/gateways/class.pmprogateway_stripe.php:1344 #: classes/gateways/class.pmprogateway_stripe.php:803 +#: classes/gateways/class.pmprogateway_braintree.php:518 +#: classes/gateways/class.pmprogateway_stripe.php:911 msgid "Apply" msgstr "Uygula" @@ -5225,6 +5604,7 @@ msgstr "Kredi Kartı İle Ödeme Yap" #: pages/checkout.php:218 #: classes/gateways/class.pmprogateway_paypalexpress.php:498 #: classes/gateways/class.pmprogateway_paypalexpress.php:502 +#: classes/gateways/class.pmprogateway_paypalexpress.php:503 msgid "Check Out with PayPal" msgstr "PayPal İle Ödeme Yap" @@ -5238,6 +5618,9 @@ msgstr "PayPal İle Ödeme Yap" #: classes/gateways/class.pmprogateway_stripe.php:1282 #: classes/gateways/class.pmprogateway_stripe.php:1288 #: classes/gateways/class.pmprogateway_stripe.php:747 +#: adminpages/orders.php:676 +#: classes/gateways/class.pmprogateway_braintree.php:461 +#: classes/gateways/class.pmprogateway_stripe.php:855 msgid "Payment Information" msgstr "Ödeme Bilgisi" @@ -5251,6 +5634,8 @@ msgstr "Ödeme Bilgisi" #: classes/gateways/class.pmprogateway_stripe.php:1283 #: classes/gateways/class.pmprogateway_stripe.php:1289 #: classes/gateways/class.pmprogateway_stripe.php:748 +#: classes/gateways/class.pmprogateway_braintree.php:462 +#: classes/gateways/class.pmprogateway_stripe.php:856 #, php-format msgid "We Accept %s" msgstr "%s Kabul ediyoruz" @@ -5282,6 +5667,7 @@ msgstr "Ödemeyi Tamamla" #: classes/gateways/class.pmprogateway_paypalexpress.php:503 #: classes/gateways/class.pmprogateway_paypalexpress.php:507 #: pages/checkout.php:538 +#: classes/gateways/class.pmprogateway_paypalexpress.php:508 msgid "Submit and Check Out" msgstr "Gönder ve Öde" @@ -5296,6 +5682,8 @@ msgstr "Gönder ve Öde" #: classes/gateways/class.pmprogateway_paypalexpress.php:503 #: classes/gateways/class.pmprogateway_paypalexpress.php:507 #: pages/checkout.php:538 +#: classes/gateways/class.pmprogateway_paypalexpress.php:508 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Submit and Confirm" msgstr "Gönder ve Onayla" @@ -5352,6 +5740,10 @@ msgstr "Fatura #%s %s" #: adminpages/orders.php:391 #: adminpages/orders.php:1424 #: adminpages/orders.php:1434 +#: adminpages/orders.php:439 +#: adminpages/orders.php:1539 +#: adminpages/orders.php:1549 +#: includes/profile.php:473 msgid "Print" msgstr "Yazdır" @@ -5378,6 +5770,7 @@ msgstr "Hesap" #: pages/invoice.php:97 #: pages/invoice.php:125 #: includes/profile.php:413 +#: includes/profile.php:453 msgid "Total Billed" msgstr "Toplam Faturalı" @@ -5402,6 +5795,7 @@ msgstr "Aşağıda detayları bulunana üyeliğinizde ilgili bir hoş geldiniz e #: pages/confirmation.php:103 #: pages/confirmation.php:138 #: shortcodes/pmpro_account.php:247 +#: pages/confirmation.php:65 msgid "Pending" msgstr "Bekleniyor" @@ -5429,6 +5823,7 @@ msgstr "Eğer hesabınız birkaç dakika içinde aktif olmazsa bizimle iletişim #: includes/functions.php:2842 #: includes/functions.php:2873 #: includes/functions.php:2895 +#: includes/functions.php:2897 msgid "Subtotal" msgstr "Ara-toplam" @@ -5437,6 +5832,7 @@ msgstr "Ara-toplam" #: includes/functions.php:2857 #: includes/functions.php:2888 #: includes/functions.php:2910 +#: includes/functions.php:2912 msgid "Coupon" msgstr "Kupon" @@ -5586,6 +5982,7 @@ msgstr "Fatura bilgileri güncelleme hatası" #: classes/class.pmproemail.php:907 #: includes/email.php:459 #: classes/class.pmproemail.php:900 +#: classes/class.pmproemail.php:1033 msgid "Your membership has been cancelled." msgstr "Üyeliğiniz iptal edilmiştir." @@ -5676,6 +6073,8 @@ msgstr "Bilinmeye hesap oluşturma hatası. Üyelik için bizimle iletişime ge #: classes/gateways/class.pmprogateway_paypalexpress.php:401 #: classes/gateways/class.pmprogateway_paypalexpress.php:352 #: classes/gateways/class.pmprogateway_paypalexpress.php:411 +#: classes/gateways/class.pmprogateway_paypalexpress.php:353 +#: classes/gateways/class.pmprogateway_paypalexpress.php:412 msgid "The PayPal Token was lost." msgstr "PayPal Token kaybedildi." @@ -5810,6 +6209,8 @@ msgstr "2Checkout entegrasyonu özel denemeleri şu anda desteklemiyor. Bir dön #: includes/profile.php:515 #: includes/profile.php:511 #: adminpages/advancedsettings.php:331 +#: adminpages/advancedsettings.php:338 +#: includes/profile.php:551 msgid "Never" msgstr "Asla" @@ -5919,6 +6320,18 @@ msgstr "%s sonra %d %s." #: js/blocks.build.js:1342 #: js/blocks.build.js:1502 #: classes/class-pmpro-admin-activity-email.php:349 +#: blocks/account-invoices-section/block.js:47 +#: blocks/account-links-section/block.js:47 +#: blocks/account-membership-section/block.js:45 +#: blocks/account-page/block.js:72 +#: blocks/account-profile-section/block.js:45 +#: blocks/billing-page/block.js:44 +#: blocks/cancel-page/block.js:44 +#: blocks/checkout-page/block.js:58 +#: blocks/confirmation-page/block.js:46 +#: blocks/invoice-page/block.js:45 +#: blocks/levels-page/block.js:44 +#: blocks/member-profile-edit/block.js:37 msgid "Paid Memberships Pro" msgstr "" @@ -6042,6 +6455,18 @@ msgstr "" #: adminpages/orders.php:913 #: adminpages/orders.php:1537 #: adminpages/orders.php:1546 +#: adminpages/orders.php:704 +#: adminpages/orders.php:996 +#: adminpages/orders.php:1689 +#: adminpages/orders.php:1698 +#: classes/class.pmproemail.php:261 +#: classes/class.pmproemail.php:327 +#: includes/profile.php:167 +#: includes/profile.php:483 +#: includes/profile.php:484 +#: includes/profile.php:556 +#: includes/profile.php:557 +#: includes/profile.php:558 msgid "N/A" msgstr "" @@ -6078,6 +6503,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:76 #: classes/gateways/class.pmprogateway_stripe.php:82 #: classes/gateways/class.pmprogateway_stripe.php:1338 +#: classes/gateways/class.pmprogateway_stripe.php:1463 msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade." msgstr "" @@ -6118,6 +6544,7 @@ msgstr "" #: includes/adminpages.php:52 #: includes/adminpages.php:158 #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Members" msgstr "" @@ -6162,41 +6589,49 @@ msgstr "" #: adminpages/advancedsettings.php:106 #: includes/updates/upgrade_1.php:7 #: adminpages/advancedsettings.php:108 +#: adminpages/advancedsettings.php:116 msgid "This content is for !!levels!! members only.
Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -6204,113 +6639,135 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:199 #: adminpages/advancedsettings.php:201 +#: adminpages/advancedsettings.php:208 msgid "Filter searches and archives?" msgstr "" #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:205 +#: adminpages/advancedsettings.php:212 msgid "No - Non-members will see restricted posts/pages in searches and archives." msgstr "" #: adminpages/advancedsettings.php:204 #: adminpages/advancedsettings.php:206 +#: adminpages/advancedsettings.php:213 msgid "Yes - Only members will see restricted posts/pages in searches and archives." msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:333 #: adminpages/advancedsettings.php:348 +#: adminpages/advancedsettings.php:355 msgid "Hide Ads From Members?" msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -6336,6 +6793,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -6399,6 +6857,7 @@ msgstr "" #: adminpages/license.php:49 #: adminpages/dashboard.php:178 #: adminpages/license.php:41 +#: adminpages/license.php:53 msgid "Your license is invalid or expired." msgstr "" @@ -6413,6 +6872,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -6518,6 +6978,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -6561,6 +7022,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -6573,31 +7035,39 @@ msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 msgid "%d discount codes found." msgstr "" @@ -6623,6 +7093,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -6641,6 +7118,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -6658,6 +7141,11 @@ msgstr "" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "" @@ -6666,19 +7154,23 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -6719,192 +7211,241 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:960 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:170 #: includes/privacy.php:363 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -6934,6 +7475,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "" @@ -6951,12 +7493,14 @@ msgstr "" #: adminpages/license.php:59 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -6964,14 +7508,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -6988,35 +7535,44 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -7026,6 +7582,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -7033,6 +7591,7 @@ msgstr "" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -7040,6 +7599,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -7047,6 +7607,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -7054,6 +7615,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -7061,6 +7623,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -7068,6 +7631,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -7112,24 +7676,28 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" @@ -7156,60 +7724,77 @@ msgstr "" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -7219,6 +7804,8 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" @@ -7231,12 +7818,16 @@ msgstr "" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -7244,24 +7835,28 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "" @@ -7271,26 +7866,31 @@ msgstr "" #: adminpages/paymentsettings.php:122 #: adminpages/paymentsettings.php:127 +#: adminpages/paymentsettings.php:125 msgid "Choose a Gateway" msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" #: adminpages/paymentsettings.php:194 #: adminpages/paymentsettings.php:201 +#: adminpages/paymentsettings.php:199 msgid "Currency and Tax Settings" msgstr "" #: adminpages/paymentsettings.php:239 #: adminpages/paymentsettings.php:246 +#: adminpages/paymentsettings.php:244 msgid "Tax Rate" msgstr "" @@ -7300,11 +7900,13 @@ msgstr "" #: adminpages/paymentsettings.php:260 #: adminpages/paymentsettings.php:273 +#: adminpages/paymentsettings.php:271 msgid "Your Site URL starts with https:// and so PMPro will allow your entire site to be served over HTTPS." msgstr "" #: adminpages/paymentsettings.php:270 #: adminpages/paymentsettings.php:283 +#: adminpages/paymentsettings.php:281 msgid "Recommended: Yes. Try the JavaScript redirects setting if you are having issues with infinite redirect loops." msgstr "" @@ -7314,16 +7916,19 @@ msgstr "" #: adminpages/paymentsettings.php:287 #: adminpages/paymentsettings.php:306 +#: adminpages/paymentsettings.php:304 msgid "Extra HTTPS URL Filter" msgstr "" #: adminpages/paymentsettings.php:290 #: adminpages/paymentsettings.php:309 +#: adminpages/paymentsettings.php:307 msgid "Pass all generated HTML through a URL filter to add HTTPS to URLs used on secure pages. Check this if you are using SSL and have warnings on your checkout pages." msgstr "" #: adminpages/reports.php:19 #: adminpages/reports.php:18 +#: adminpages/reports.php:21 msgid "Back to Reports Dashboard" msgstr "" @@ -7351,6 +7956,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -7361,6 +7967,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -7419,29 +8026,35 @@ msgid "All Cancellations" msgstr "" #: adminpages/reports/memberships.php:338 +#: adminpages/reports/memberships.php:337 msgid "Signups vs. All Cancellations" msgstr "" #: adminpages/reports/memberships.php:340 +#: adminpages/reports/memberships.php:339 msgid "Signups vs. Expirations" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -7652,63 +8265,77 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:962 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:463 #: classes/class.pmproemail.php:475 #: classes/class.pmproemail.php:468 +#: classes/class.pmproemail.php:601 msgid "Your billing information has been updated at %s" msgstr "" #: classes/class.pmproemail.php:513 #: classes/class.pmproemail.php:525 #: classes/class.pmproemail.php:518 +#: classes/class.pmproemail.php:651 msgid "Billing information has been updated for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -7721,30 +8348,36 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -7752,6 +8385,7 @@ msgstr "" #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:167 +#: paid-memberships-pro.php:173 msgid "Authorize.net" msgstr "" @@ -7767,14 +8401,17 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:91 #: classes/gateways/class.pmprogateway_stripe.php:97 #: classes/gateways/class.pmprogateway_stripe.php:1353 +#: classes/gateways/class.pmprogateway_stripe.php:1478 msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" @@ -7782,10 +8419,13 @@ msgstr "" #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:167 #: paid-memberships-pro.php:168 +#: classes/gateways/class.pmprogateway_braintree.php:258 +#: paid-memberships-pro.php:174 msgid "Braintree Payments" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:308 +#: classes/gateways/class.pmprogateway_braintree.php:315 msgid "Braintree Settings" msgstr "" @@ -7799,21 +8439,30 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:750 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -7821,11 +8470,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -8127,6 +8779,7 @@ msgstr "" #: paid-memberships-pro.php:161 #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:164 +#: paid-memberships-pro.php:170 msgid "PayPal Website Payments Pro" msgstr "" @@ -8134,6 +8787,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:141 #: classes/gateways/class.pmprogateway_paypalstandard.php:133 #: classes/gateways/class.pmprogateway_paypalexpress.php:151 +#: classes/gateways/class.pmprogateway_paypalexpress.php:152 msgid "PayPal Settings" msgstr "" @@ -8141,12 +8795,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:185 #: classes/gateways/class.pmprogateway_paypalexpress.php:194 #: classes/gateways/class.pmprogateway_paypalexpress.php:204 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 msgid "Confirmation Step" msgstr "" @@ -8155,11 +8811,14 @@ msgstr "" #: paid-memberships-pro.php:162 #: classes/gateways/class.pmprogateway_paypalexpress.php:94 #: paid-memberships-pro.php:163 +#: classes/gateways/class.pmprogateway_paypalexpress.php:95 +#: paid-memberships-pro.php:169 msgid "PayPal Express" msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -8168,6 +8827,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -8176,6 +8836,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -8183,6 +8844,7 @@ msgstr "" #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:166 +#: paid-memberships-pro.php:172 msgid "PayPal Standard" msgstr "" @@ -8200,6 +8862,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:258 #: classes/gateways/class.pmprogateway_stripe.php:216 #: paid-memberships-pro.php:162 +#: classes/gateways/class.pmprogateway_stripe.php:234 +#: paid-memberships-pro.php:168 msgid "Stripe" msgstr "" @@ -8211,6 +8875,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -8219,6 +8884,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -8230,6 +8896,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -8241,6 +8908,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -8252,6 +8920,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -8260,6 +8929,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -8271,6 +8941,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -8282,6 +8953,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -8290,6 +8962,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -8301,6 +8974,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -8309,6 +8983,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -8332,6 +9007,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -8348,6 +9025,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -8356,6 +9035,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -8364,6 +9044,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -8372,6 +9053,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -8379,6 +9061,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -8387,6 +9070,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -8400,6 +9084,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -8408,6 +9094,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -8416,6 +9103,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -8425,6 +9113,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -8442,6 +9132,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -8450,6 +9142,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -8471,6 +9164,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -8479,6 +9174,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -8487,6 +9183,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -8495,6 +9192,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -8503,6 +9201,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -8511,6 +9210,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -8519,6 +9219,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -8527,6 +9228,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -8535,6 +9237,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -8543,6 +9246,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -8551,6 +9255,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -8563,6 +9268,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -8571,6 +9277,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -8579,6 +9286,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -8587,6 +9295,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -8595,6 +9304,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -8613,6 +9323,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "" @@ -8665,6 +9376,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "" @@ -8676,6 +9389,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "" @@ -8685,6 +9399,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "" @@ -8702,6 +9417,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "" @@ -8713,6 +9430,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 msgid "Error: Unkown error while refunding charge #%s" msgstr "" @@ -8722,6 +9440,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -8742,6 +9461,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -8750,6 +9473,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -8759,6 +9483,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -8768,6 +9493,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -8779,6 +9505,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -8790,6 +9517,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -8801,6 +9529,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -8812,34 +9541,42 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:59 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "" @@ -8882,6 +9619,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -8894,6 +9632,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -8906,6 +9645,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -10143,6 +10883,7 @@ msgstr "" #: includes/email-templates.php:68 #: shortcodes/pmpro_account.php:43 +#: adminpages/orders.php:1431 msgid "Billing" msgstr "" @@ -10733,14 +11474,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -10749,18 +11493,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -10772,6 +11520,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -10910,6 +11659,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -11039,6 +11789,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -11046,6 +11797,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -11077,6 +11829,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -11086,6 +11839,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -11093,6 +11847,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -11197,6 +11952,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -11204,6 +11961,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -11211,6 +11969,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -11218,6 +11977,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -11289,6 +12049,7 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" @@ -11297,6 +12058,8 @@ msgstr "" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "" @@ -11307,121 +12070,142 @@ msgstr "" #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -11433,6 +12217,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -11561,18 +12348,21 @@ msgstr "" #: paid-memberships-pro.php:162 #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:165 +#: paid-memberships-pro.php:171 msgid "PayPal Payflow Pro/PayPal Pro" msgstr "" #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:168 #: paid-memberships-pro.php:169 +#: paid-memberships-pro.php:175 msgid "Cybersource" msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -11641,6 +12431,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -11679,6 +12470,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -11694,6 +12500,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -11709,6 +12516,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -11741,6 +12549,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -11753,6 +12562,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -11778,11 +12588,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -11790,6 +12605,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -11797,6 +12613,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -11819,6 +12636,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -11844,6 +12662,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -11851,6 +12670,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -11883,6 +12703,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -11905,6 +12726,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -11915,11 +12737,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -11939,6 +12772,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -11952,6 +12786,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -11961,6 +12796,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -11970,10 +12806,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -11984,6 +12822,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -11991,6 +12830,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -12000,6 +12840,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -12009,12 +12850,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -12022,6 +12866,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -12030,6 +12876,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -12037,6 +12884,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -12044,27 +12892,32 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: paid-memberships-pro.php:194 #: paid-memberships-pro.php:195 +#: paid-memberships-pro.php:201 msgid "Once a month" msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -12122,12 +12975,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -12137,6 +12992,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -12146,6 +13002,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -12155,54 +13012,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -12213,42 +13080,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -12263,51 +13140,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -12315,6 +13204,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -12322,6 +13212,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -12329,6 +13220,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -12337,6 +13229,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -12350,6 +13244,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -12370,19 +13265,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -12392,31 +13291,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -12446,25 +13353,30 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "" @@ -12534,26 +13446,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -12562,51 +13480,62 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -12620,19 +13549,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -12663,3 +13596,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-vi.mo b/languages/paid-memberships-pro-vi.mo index 6e49e03bd..23f348f63 100644 Binary files a/languages/paid-memberships-pro-vi.mo and b/languages/paid-memberships-pro-vi.mo differ diff --git a/languages/paid-memberships-pro-vi.po b/languages/paid-memberships-pro-vi.po index 5e74e40eb..1b975cd2c 100644 --- a/languages/paid-memberships-pro-vi.po +++ b/languages/paid-memberships-pro-vi.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:21:21+00:00\n" +"POT-Creation-Date: 2022-05-05T20:37:56+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -85,6 +85,7 @@ msgstr "" #: adminpages/orders.php:1014 #: includes/metaboxes.php:19 #: adminpages/orders.php:1015 +#: adminpages/orders.php:1103 msgid "All" msgstr "" @@ -121,6 +122,7 @@ msgstr "" #: adminpages/membershiplevels.php:296 #: adminpages/membershiplevels.php:298 #: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "" @@ -189,6 +191,11 @@ msgstr "" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "" @@ -251,6 +258,18 @@ msgstr "" #: adminpages/orders.php:913 #: adminpages/orders.php:1537 #: adminpages/orders.php:1546 +#: adminpages/orders.php:704 +#: adminpages/orders.php:996 +#: adminpages/orders.php:1689 +#: adminpages/orders.php:1698 +#: classes/class.pmproemail.php:261 +#: classes/class.pmproemail.php:327 +#: includes/profile.php:167 +#: includes/profile.php:483 +#: includes/profile.php:484 +#: includes/profile.php:556 +#: includes/profile.php:557 +#: includes/profile.php:558 msgid "N/A" msgstr "" @@ -433,6 +452,11 @@ msgstr "" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "" @@ -448,6 +472,7 @@ msgstr "" #: adminpages/advancedsettings.php:42 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "" @@ -468,6 +493,7 @@ msgstr "" #: adminpages/advancedsettings.php:116 #: includes/updates/upgrade_1.php:13 #: adminpages/advancedsettings.php:118 +#: adminpages/advancedsettings.php:126 msgid "This content is for members only. Visit the site and log in/register to read." msgstr "" @@ -484,6 +510,7 @@ msgstr "" #: adminpages/advancedsettings.php:132 #: includes/adminpages.php:73 #: adminpages/advancedsettings.php:134 +#: adminpages/advancedsettings.php:142 msgid "Advanced Settings" msgstr "" @@ -492,6 +519,7 @@ msgstr "" #: adminpages/advancedsettings.php:92 #: adminpages/advancedsettings.php:164 #: adminpages/advancedsettings.php:166 +#: adminpages/advancedsettings.php:173 msgid "Message for Logged-in Non-members" msgstr "" @@ -500,6 +528,7 @@ msgstr "" #: adminpages/advancedsettings.php:96 #: adminpages/advancedsettings.php:168 #: adminpages/advancedsettings.php:170 +#: adminpages/advancedsettings.php:177 msgid "This message replaces the post content for non-members. Available variables" msgstr "" @@ -508,6 +537,7 @@ msgstr "" #: adminpages/advancedsettings.php:101 #: adminpages/advancedsettings.php:173 #: adminpages/advancedsettings.php:175 +#: adminpages/advancedsettings.php:182 msgid "Message for Logged-out Users" msgstr "" @@ -516,6 +546,7 @@ msgstr "" #: adminpages/advancedsettings.php:105 #: adminpages/advancedsettings.php:177 #: adminpages/advancedsettings.php:179 +#: adminpages/advancedsettings.php:186 msgid "This message replaces the post content for logged-out visitors." msgstr "" @@ -524,6 +555,7 @@ msgstr "" #: adminpages/advancedsettings.php:110 #: adminpages/advancedsettings.php:182 #: adminpages/advancedsettings.php:184 +#: adminpages/advancedsettings.php:191 msgid "Message for RSS Feed" msgstr "" @@ -532,24 +564,28 @@ msgstr "" #: adminpages/advancedsettings.php:114 #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "This message replaces the post content in RSS feeds." msgstr "" #: adminpages/advancedsettings.php:122 #: adminpages/advancedsettings.php:199 #: adminpages/advancedsettings.php:201 +#: adminpages/advancedsettings.php:208 msgid "Filter searches and archives?" msgstr "" #: adminpages/advancedsettings.php:126 #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:205 +#: adminpages/advancedsettings.php:212 msgid "No - Non-members will see restricted posts/pages in searches and archives." msgstr "" #: adminpages/advancedsettings.php:127 #: adminpages/advancedsettings.php:204 #: adminpages/advancedsettings.php:206 +#: adminpages/advancedsettings.php:213 msgid "Yes - Only members will see restricted posts/pages in searches and archives." msgstr "" @@ -558,6 +594,7 @@ msgstr "" #: adminpages/advancedsettings.php:120 #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:212 +#: adminpages/advancedsettings.php:219 msgid "Show Excerpts to Non-Members?" msgstr "" @@ -566,6 +603,7 @@ msgstr "" #: adminpages/advancedsettings.php:124 #: adminpages/advancedsettings.php:214 #: adminpages/advancedsettings.php:216 +#: adminpages/advancedsettings.php:223 msgid "No - Hide excerpts." msgstr "" @@ -574,12 +612,14 @@ msgstr "" #: adminpages/advancedsettings.php:125 #: adminpages/advancedsettings.php:215 #: adminpages/advancedsettings.php:217 +#: adminpages/advancedsettings.php:224 msgid "Yes - Show excerpts." msgstr "" #: adminpages/advancedsettings.php:144 #: adminpages/advancedsettings.php:333 #: adminpages/advancedsettings.php:348 +#: adminpages/advancedsettings.php:355 msgid "Hide Ads From Members?" msgstr "" @@ -642,6 +682,16 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:404 #: classes/gateways/class.pmprogateway_stripe.php:418 #: adminpages/paymentsettings.php:279 +#: adminpages/advancedsettings.php:254 +#: adminpages/advancedsettings.php:267 +#: adminpages/advancedsettings.php:359 +#: adminpages/advancedsettings.php:418 +#: adminpages/advancedsettings.php:526 +#: adminpages/membershiplevels.php:939 +#: adminpages/paymentsettings.php:277 +#: classes/gateways/class.pmprogateway_stripe.php:430 +#: classes/gateways/class.pmprogateway_stripe.php:444 +#: includes/profile.php:78 msgid "No" msgstr "" @@ -650,6 +700,7 @@ msgstr "" #: adminpages/advancedsettings.php:136 #: adminpages/advancedsettings.php:338 #: adminpages/advancedsettings.php:353 +#: adminpages/advancedsettings.php:360 msgid "Hide Ads From All Members" msgstr "" @@ -658,6 +709,7 @@ msgstr "" #: adminpages/advancedsettings.php:137 #: adminpages/advancedsettings.php:339 #: adminpages/advancedsettings.php:354 +#: adminpages/advancedsettings.php:361 msgid "Hide Ads From Certain Members" msgstr "" @@ -672,6 +724,7 @@ msgstr "" #: adminpages/advancedsettings.php:145 #: adminpages/advancedsettings.php:346 #: adminpages/advancedsettings.php:361 +#: adminpages/advancedsettings.php:368 msgid "To hide ads in your template code, use code like the following" msgstr "" @@ -680,6 +733,7 @@ msgstr "" #: adminpages/advancedsettings.php:156 #: adminpages/advancedsettings.php:355 #: adminpages/advancedsettings.php:370 +#: adminpages/advancedsettings.php:377 msgid "Choose Levels to Hide Ads From" msgstr "" @@ -698,6 +752,7 @@ msgstr "" #: adminpages/advancedsettings.php:390 #: adminpages/advancedsettings.php:392 #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "multisite only" msgstr "" @@ -749,6 +804,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:406 #: classes/gateways/class.pmprogateway_stripe.php:420 #: adminpages/paymentsettings.php:280 +#: adminpages/advancedsettings.php:419 +#: adminpages/membershiplevels.php:934 +#: adminpages/paymentsettings.php:278 +#: classes/gateways/class.pmprogateway_stripe.php:432 +#: classes/gateways/class.pmprogateway_stripe.php:446 +#: includes/profile.php:79 msgid "Yes" msgstr "" @@ -757,6 +818,7 @@ msgstr "" #: adminpages/advancedsettings.php:202 #: adminpages/advancedsettings.php:241 #: adminpages/advancedsettings.php:256 +#: adminpages/advancedsettings.php:263 msgid "Use reCAPTCHA?" msgstr "" @@ -772,6 +834,7 @@ msgstr "" #: adminpages/advancedsettings.php:208 #: adminpages/advancedsettings.php:247 #: adminpages/advancedsettings.php:262 +#: adminpages/advancedsettings.php:269 msgid "Yes - All memberships." msgstr "" @@ -780,6 +843,7 @@ msgstr "" #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "A free reCAPTCHA key is required." msgstr "" @@ -788,6 +852,7 @@ msgstr "" #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "Click here to signup for reCAPTCHA" msgstr "" @@ -844,6 +909,9 @@ msgstr "" #: adminpages/pagesettings.php:508 #: adminpages/pagesettings.php:512 #: adminpages/paymentsettings.php:316 +#: adminpages/advancedsettings.php:574 +#: adminpages/pagesettings.php:511 +#: adminpages/paymentsettings.php:314 msgid "Save Settings" msgstr "" @@ -919,6 +987,7 @@ msgstr "" #: adminpages/discountcodes.php:796 #: adminpages/discountcodes.php:354 #: adminpages/discountcodes.php:798 +#: adminpages/discountcodes.php:799 msgid "Code not found." msgstr "" @@ -941,6 +1010,7 @@ msgstr "" #: adminpages/discountcodes.php:735 #: adminpages/discountcodes.php:377 #: adminpages/discountcodes.php:737 +#: adminpages/discountcodes.php:738 msgid "Add New Discount Code" msgstr "" @@ -987,6 +1057,8 @@ msgstr "" #: adminpages/reports/login.php:182 #: adminpages/templates/orders-email.php:49 #: adminpages/templates/orders-print.php:78 +#: adminpages/membershiplevels.php:345 +#: adminpages/membershiplevels.php:805 msgid "ID" msgstr "" @@ -1029,6 +1101,9 @@ msgstr "" #: adminpages/dashboard.php:292 #: adminpages/orders.php:429 #: adminpages/orders.php:1333 +#: adminpages/discountcodes.php:787 +#: adminpages/orders.php:475 +#: adminpages/orders.php:1426 msgid "Code" msgstr "" @@ -1042,6 +1117,7 @@ msgstr "" #: adminpages/discountcodes.php:489 #: includes/profile.php:501 #: includes/profile.php:497 +#: includes/profile.php:537 msgid "Start Date" msgstr "" @@ -1072,6 +1148,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1326 #: classes/gateways/class.pmprogateway_stripe.php:785 #: pages/billing.php:381 +#: classes/gateways/class.pmprogateway_braintree.php:486 +#: classes/gateways/class.pmprogateway_stripe.php:893 msgid "Expiration Date" msgstr "" @@ -1086,6 +1164,7 @@ msgstr "" #: adminpages/discountcodes.php:787 #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:789 +#: adminpages/discountcodes.php:790 msgid "Uses" msgstr "" @@ -1119,6 +1198,7 @@ msgstr "" #: adminpages/discountcodes.php:574 #: adminpages/membershiplevels.php:401 #: adminpages/discountcodes.php:576 +#: adminpages/membershiplevels.php:399 msgid "Initial Payment" msgstr "" @@ -1134,6 +1214,7 @@ msgstr "" #: adminpages/discountcodes.php:585 #: adminpages/membershiplevels.php:412 #: adminpages/discountcodes.php:587 +#: adminpages/membershiplevels.php:410 msgid "The initial amount collected at registration." msgstr "" @@ -1149,6 +1230,7 @@ msgstr "" #: adminpages/discountcodes.php:590 #: adminpages/membershiplevels.php:417 #: adminpages/discountcodes.php:592 +#: adminpages/membershiplevels.php:415 msgid "Recurring Subscription" msgstr "" @@ -1164,6 +1246,7 @@ msgstr "" #: adminpages/discountcodes.php:591 #: adminpages/membershiplevels.php:418 #: adminpages/discountcodes.php:593 +#: adminpages/membershiplevels.php:416 msgid "Check if this level has a recurring subscription payment." msgstr "" @@ -1178,6 +1261,7 @@ msgstr "" #: adminpages/discountcodes.php:595 #: adminpages/membershiplevels.php:422 #: adminpages/discountcodes.php:597 +#: adminpages/membershiplevels.php:420 msgid "Billing Amount" msgstr "" @@ -1213,6 +1297,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2637 #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2635 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3092 msgid "Day(s)" msgstr "" @@ -1248,6 +1336,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2641 #: classes/gateways/class.pmprogateway_stripe.php:2637 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3094 msgid "Month(s)" msgstr "" @@ -1283,6 +1375,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2638 #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2636 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3093 msgid "Week(s)" msgstr "" @@ -1318,6 +1414,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2642 #: classes/gateways/class.pmprogateway_stripe.php:2638 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3095 msgid "Year(s)" msgstr "" @@ -1333,6 +1433,7 @@ msgstr "" #: adminpages/discountcodes.php:618 #: adminpages/membershiplevels.php:446 #: adminpages/discountcodes.php:620 +#: adminpages/membershiplevels.php:444 msgid "The amount to be billed one cycle after the initial payment." msgstr "" @@ -1348,6 +1449,7 @@ msgstr "" #: adminpages/discountcodes.php:628 #: adminpages/membershiplevels.php:465 #: adminpages/discountcodes.php:630 +#: adminpages/membershiplevels.php:463 msgid "Billing Cycle Limit" msgstr "" @@ -1363,6 +1465,7 @@ msgstr "" #: adminpages/discountcodes.php:632 #: adminpages/membershiplevels.php:469 #: adminpages/discountcodes.php:634 +#: adminpages/membershiplevels.php:467 msgid "The total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "" @@ -1378,6 +1481,8 @@ msgstr "" #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "" @@ -1394,6 +1499,8 @@ msgstr "" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "" @@ -1410,6 +1517,7 @@ msgstr "" #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "" @@ -1426,6 +1534,7 @@ msgstr "" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "" @@ -1442,6 +1551,7 @@ msgstr "" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "" @@ -1459,6 +1569,7 @@ msgstr "" #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "" @@ -1475,6 +1586,7 @@ msgstr "" #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "" @@ -1493,6 +1605,8 @@ msgstr "" #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "" @@ -1509,6 +1623,8 @@ msgstr "" #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "" @@ -1518,6 +1634,7 @@ msgstr "" #: adminpages/discountcodes.php:556 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "" @@ -1527,6 +1644,7 @@ msgstr "" #: adminpages/discountcodes.php:566 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "" @@ -1538,6 +1656,7 @@ msgstr "" #: adminpages/reports/login.php:81 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "" @@ -1547,6 +1666,7 @@ msgstr "" #: adminpages/discountcodes.php:587 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "" @@ -1574,6 +1694,8 @@ msgstr "" #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "" @@ -1584,6 +1706,7 @@ msgstr "" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "" @@ -1623,6 +1746,7 @@ msgstr "" #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "" @@ -1676,6 +1800,7 @@ msgstr "" #: adminpages/emailsettings.php:70 #: adminpages/emailsettings.php:61 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "" @@ -1687,17 +1812,20 @@ msgstr "" #: adminpages/emailsettings.php:78 #: adminpages/emailsettings.php:69 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "" #: adminpages/emailsettings.php:86 #: adminpages/emailsettings.php:77 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "" #: adminpages/emailsettings.php:94 #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "" @@ -1868,6 +1996,8 @@ msgstr "" #: adminpages/reports/history.php:184 #: adminpages/reports/login.php:181 #: adminpages/reports/login.php:184 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 msgid "Name" msgstr "" @@ -1875,6 +2005,7 @@ msgstr "" #: adminpages/membershiplevels.php:314 #: adminpages/membershiplevels.php:316 #: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "" @@ -1887,6 +2018,8 @@ msgstr "" #: adminpages/membershiplevels.php:585 #: adminpages/membershiplevels.php:397 #: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "" @@ -1908,6 +2041,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2696 #: classes/gateways/class.pmprogateway_stripe.php:2698 #: classes/gateways/class.pmprogateway_stripe.php:2694 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "" @@ -1926,6 +2061,7 @@ msgstr "" #: adminpages/discountcodes.php:620 #: adminpages/membershiplevels.php:448 #: adminpages/discountcodes.php:622 +#: adminpages/membershiplevels.php:446 msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." msgstr "" @@ -1943,6 +2079,7 @@ msgstr "" #: adminpages/membershiplevels.php:393 #: adminpages/membershiplevels.php:395 #: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." msgstr "" @@ -1965,6 +2102,8 @@ msgstr "" #: adminpages/membershiplevels.php:454 #: adminpages/membershiplevels.php:459 #: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 msgid "Note" msgstr "" @@ -1984,6 +2123,7 @@ msgstr "" #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "" @@ -1995,6 +2135,8 @@ msgstr "" #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "" @@ -2007,6 +2149,7 @@ msgstr "" #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "" @@ -2019,6 +2162,7 @@ msgstr "" #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "" @@ -2031,6 +2175,7 @@ msgstr "" #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "" @@ -2045,6 +2190,7 @@ msgstr "" #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "" @@ -2080,6 +2226,8 @@ msgstr "" #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "" @@ -2091,12 +2239,14 @@ msgstr "" #: adminpages/membershiplevels.php:497 #: adminpages/membershiplevels.php:499 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "" #: adminpages/membershiplevels.php:517 #: adminpages/membershiplevels.php:516 #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "" @@ -2129,6 +2279,11 @@ msgstr "" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "" @@ -2165,6 +2320,7 @@ msgstr "" #: adminpages/membershiplevels.php:631 #: adminpages/membershiplevels.php:579 #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "" @@ -2189,6 +2345,8 @@ msgstr "" #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "" @@ -2200,6 +2358,7 @@ msgstr "" #: adminpages/membershiplevels.php:546 #: adminpages/membershiplevels.php:587 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "" @@ -2212,6 +2371,7 @@ msgstr "" #: adminpages/membershiplevels.php:646 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "" @@ -2224,6 +2384,7 @@ msgstr "" #: adminpages/membershiplevels.php:655 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "" @@ -2250,6 +2411,7 @@ msgstr "" #: includes/adminpages.php:142 #: includes/adminpages.php:149 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "" @@ -2261,6 +2423,8 @@ msgstr "" #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "" @@ -2284,6 +2448,8 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "" @@ -2308,6 +2474,8 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "" @@ -2351,6 +2519,8 @@ msgstr "" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "" @@ -2386,6 +2556,8 @@ msgstr "" #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "" @@ -2427,6 +2599,7 @@ msgstr "" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "" @@ -2521,6 +2694,7 @@ msgstr "" #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "" @@ -2534,6 +2708,7 @@ msgstr "" #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "" @@ -2545,6 +2720,7 @@ msgstr "" #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "" @@ -2553,6 +2729,7 @@ msgstr "" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "" @@ -2561,6 +2738,7 @@ msgstr "" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "" @@ -2569,6 +2747,7 @@ msgstr "" #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "" @@ -2578,6 +2757,8 @@ msgstr "" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "" @@ -2587,6 +2768,7 @@ msgstr "" #: includes/privacy.php:245 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "" @@ -2596,6 +2778,7 @@ msgstr "" #: includes/privacy.php:249 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "" @@ -2606,6 +2789,7 @@ msgstr "" #: includes/privacy.php:358 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "" @@ -2615,6 +2799,7 @@ msgstr "" #: includes/privacy.php:257 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "" @@ -2626,6 +2811,7 @@ msgstr "" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "" @@ -2637,6 +2823,7 @@ msgstr "" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "" @@ -2647,6 +2834,7 @@ msgstr "" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "" @@ -2657,6 +2845,7 @@ msgstr "" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "" @@ -2672,6 +2861,8 @@ msgstr "" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "" @@ -2682,6 +2873,7 @@ msgstr "" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "" @@ -2707,6 +2899,9 @@ msgstr "" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "" @@ -2722,6 +2917,7 @@ msgstr "" #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "" @@ -2731,6 +2927,7 @@ msgstr "" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "" @@ -2762,6 +2959,9 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "" @@ -2771,6 +2971,7 @@ msgstr "" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "" @@ -2786,6 +2987,8 @@ msgstr "" #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "" @@ -2794,6 +2997,7 @@ msgstr "" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "" @@ -2806,6 +3010,7 @@ msgstr "" #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "" @@ -2842,6 +3047,10 @@ msgstr "" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "" @@ -2860,6 +3069,9 @@ msgstr "" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "" @@ -2876,6 +3088,8 @@ msgstr "" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "" @@ -2895,6 +3109,9 @@ msgstr "" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "" @@ -2914,6 +3131,9 @@ msgstr "" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "" @@ -2924,6 +3144,7 @@ msgstr "" #: includes/privacy.php:321 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "" @@ -2933,6 +3154,7 @@ msgstr "" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "" @@ -2945,6 +3167,8 @@ msgstr "" #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "" @@ -2955,6 +3179,7 @@ msgstr "" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "" @@ -2983,6 +3208,8 @@ msgstr "" #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "" @@ -2992,6 +3219,7 @@ msgstr "" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "" @@ -3001,6 +3229,7 @@ msgstr "" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "" @@ -3010,6 +3239,7 @@ msgstr "" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "" @@ -3019,6 +3249,7 @@ msgstr "" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "" @@ -3042,6 +3273,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "" @@ -3051,6 +3284,7 @@ msgstr "" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "" @@ -3059,6 +3293,7 @@ msgstr "" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "" @@ -3067,6 +3302,7 @@ msgstr "" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "" @@ -3075,6 +3311,7 @@ msgstr "" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "" @@ -3083,6 +3320,7 @@ msgstr "" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "" @@ -3091,6 +3329,7 @@ msgstr "" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "" @@ -3099,6 +3338,7 @@ msgstr "" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "" @@ -3107,6 +3347,7 @@ msgstr "" #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "" @@ -3115,6 +3356,7 @@ msgstr "" #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "" @@ -3130,6 +3372,8 @@ msgstr "" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "" @@ -3140,6 +3384,8 @@ msgstr "" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "" @@ -3161,6 +3407,7 @@ msgstr "" #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "" @@ -3200,6 +3447,8 @@ msgstr "" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "" @@ -3218,6 +3467,7 @@ msgstr "" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "" @@ -3228,6 +3478,7 @@ msgstr "" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "" @@ -3249,6 +3500,8 @@ msgstr "" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "" @@ -3260,6 +3513,7 @@ msgstr "" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "" @@ -3273,6 +3527,7 @@ msgstr "" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "" @@ -3290,6 +3545,7 @@ msgstr "" #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "" @@ -3353,6 +3609,7 @@ msgstr "" #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "" @@ -3361,6 +3618,7 @@ msgstr "" #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "" @@ -3369,6 +3627,7 @@ msgstr "" #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "" @@ -3377,6 +3636,7 @@ msgstr "" #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "" @@ -3416,6 +3676,14 @@ msgstr "" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "" @@ -3471,6 +3739,16 @@ msgstr "" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "" @@ -3520,6 +3798,15 @@ msgstr "" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "" @@ -3568,6 +3855,12 @@ msgstr "" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "" @@ -3578,6 +3871,7 @@ msgstr "" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "" @@ -3588,6 +3882,7 @@ msgstr "" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "" @@ -3598,6 +3893,7 @@ msgstr "" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "" @@ -3608,6 +3904,7 @@ msgstr "" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "" @@ -3618,6 +3915,7 @@ msgstr "" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "" @@ -3628,6 +3926,7 @@ msgstr "" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "" @@ -3648,6 +3947,7 @@ msgstr "" #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "" @@ -3657,6 +3957,7 @@ msgstr "" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "" @@ -3673,6 +3974,7 @@ msgstr "" #: adminpages/paymentsettings.php:386 #: adminpages/paymentsettings.php:199 #: adminpages/paymentsettings.php:206 +#: adminpages/paymentsettings.php:204 msgid "Currency" msgstr "" @@ -3681,6 +3983,7 @@ msgstr "" #: adminpages/paymentsettings.php:402 #: adminpages/paymentsettings.php:215 #: adminpages/paymentsettings.php:222 +#: adminpages/paymentsettings.php:220 msgid "Not all currencies will be supported by every gateway. Please check with your gateway." msgstr "" @@ -3691,6 +3994,7 @@ msgstr "" #: adminpages/paymentsettings.php:408 #: adminpages/paymentsettings.php:220 #: adminpages/paymentsettings.php:227 +#: adminpages/paymentsettings.php:225 msgid "Accepted Credit Card Types" msgstr "" @@ -3701,6 +4005,7 @@ msgstr "" #: adminpages/paymentsettings.php:445 #: adminpages/paymentsettings.php:234 #: adminpages/paymentsettings.php:241 +#: adminpages/paymentsettings.php:239 msgid "Sales Tax" msgstr "" @@ -3716,6 +4021,7 @@ msgstr "" #: pages/billing.php:179 #: adminpages/paymentsettings.php:241 #: pages/billing.php:181 +#: adminpages/paymentsettings.php:239 msgid "optional" msgstr "" @@ -3726,6 +4032,7 @@ msgstr "" #: adminpages/paymentsettings.php:448 #: adminpages/paymentsettings.php:237 #: adminpages/paymentsettings.php:244 +#: adminpages/paymentsettings.php:242 msgid "Tax State" msgstr "" @@ -3736,6 +4043,7 @@ msgstr "" #: adminpages/paymentsettings.php:449 #: adminpages/paymentsettings.php:238 #: adminpages/paymentsettings.php:245 +#: adminpages/paymentsettings.php:243 msgid "abbreviation, e.g. \"PA\"" msgstr "" @@ -3746,6 +4054,7 @@ msgstr "" #: adminpages/paymentsettings.php:451 #: adminpages/paymentsettings.php:240 #: adminpages/paymentsettings.php:247 +#: adminpages/paymentsettings.php:245 msgid "decimal, e.g. \"0.06\"" msgstr "" @@ -3761,6 +4070,7 @@ msgstr "" #: adminpages/paymentsettings.php:457 #: adminpages/paymentsettings.php:253 #: adminpages/paymentsettings.php:266 +#: adminpages/paymentsettings.php:264 msgid "Force SSL" msgstr "" @@ -3770,6 +4080,7 @@ msgstr "" #: adminpages/paymentsettings.php:463 #: adminpages/paymentsettings.php:268 #: adminpages/paymentsettings.php:281 +#: adminpages/paymentsettings.php:279 msgid "Yes (with JavaScript redirects)" msgstr "" @@ -3780,18 +4091,21 @@ msgstr "" #: adminpages/paymentsettings.php:470 #: adminpages/paymentsettings.php:278 #: adminpages/paymentsettings.php:291 +#: adminpages/paymentsettings.php:289 msgid "SSL Seal Code" msgstr "" #: adminpages/paymentsettings.php:228 #: adminpages/paymentsettings.php:287 #: adminpages/paymentsettings.php:306 +#: adminpages/paymentsettings.php:304 msgid "Extra HTTPS URL Filter" msgstr "" #: adminpages/paymentsettings.php:231 #: adminpages/paymentsettings.php:290 #: adminpages/paymentsettings.php:309 +#: adminpages/paymentsettings.php:307 msgid "Pass all generated HTML through a URL filter to add HTTPS to URLs used on secure pages. Check this if you are using SSL and have warnings on your checkout pages." msgstr "" @@ -3886,6 +4200,7 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:234 #: classes/class-pmpro-members-list-table.php:233 #: adminpages/reports/login.php:105 +#: adminpages/reports/login.php:111 msgid "All Users" msgstr "" @@ -3936,6 +4251,7 @@ msgstr "" #: adminpages/reports/memberships.php:52 #: adminpages/reports/sales.php:53 #: adminpages/reports/sales.php:542 +#: adminpages/reports/sales.php:543 msgid "All Time" msgstr "" @@ -3947,6 +4263,7 @@ msgstr "" #: adminpages/orders.php:1081 #: adminpages/orders.php:1073 #: adminpages/orders.php:1074 +#: adminpages/orders.php:1162 msgid "This Year" msgstr "" @@ -3959,6 +4276,7 @@ msgstr "" #: adminpages/orders.php:1077 #: adminpages/orders.php:1069 #: adminpages/orders.php:1070 +#: adminpages/orders.php:1158 msgid "This Month" msgstr "" @@ -3999,6 +4317,8 @@ msgstr "" #: adminpages/reports/sales.php:295 #: adminpages/advancedsettings.php:322 #: adminpages/reports/sales.php:313 +#: adminpages/advancedsettings.php:329 +#: adminpages/reports/memberships.php:332 msgid "Daily" msgstr "" @@ -4011,6 +4331,8 @@ msgstr "" #: adminpages/reports/sales.php:296 #: adminpages/advancedsettings.php:328 #: adminpages/reports/sales.php:314 +#: adminpages/advancedsettings.php:335 +#: adminpages/reports/memberships.php:333 msgid "Monthly" msgstr "" @@ -4021,11 +4343,13 @@ msgstr "" #: adminpages/reports/memberships.php:335 #: adminpages/reports/sales.php:297 #: adminpages/reports/sales.php:315 +#: adminpages/reports/memberships.php:334 msgid "Annual" msgstr "" #: adminpages/reports/memberships.php:299 #: adminpages/reports/memberships.php:339 +#: adminpages/reports/memberships.php:338 msgid "Signups vs. Cancellations" msgstr "" @@ -4050,6 +4374,8 @@ msgstr "" #: adminpages/reports/sales.php:314 #: adminpages/reports/sales.php:321 #: adminpages/reports/sales.php:332 +#: adminpages/reports/memberships.php:341 +#: adminpages/reports/memberships.php:352 msgid "for" msgstr "" @@ -4060,6 +4386,7 @@ msgstr "" #: adminpages/reports/memberships.php:385 #: adminpages/reports/sales.php:342 #: adminpages/reports/sales.php:360 +#: adminpages/reports/memberships.php:384 msgid "Generate Report" msgstr "" @@ -4103,6 +4430,7 @@ msgstr "" #: includes/cleanup.php:24 #: classes/class.memberorder.php:959 #: classes/class.memberorder.php:1001 +#: classes/class.memberorder.php:1010 #, php-format msgid "There was an error canceling the subscription for user with ID=%s. You will want to check your payment gateway to see if their subscription is still active." msgstr "" @@ -4140,6 +4468,7 @@ msgstr "" #: classes/class.pmproemail.php:178 #: classes/class.pmproemail.php:269 #: classes/class.pmproemail.php:262 +#: classes/class.pmproemail.php:395 #, php-format msgid "Your membership confirmation for %s" msgstr "" @@ -4233,6 +4562,18 @@ msgstr "" #: classes/class.pmproemail.php:764 #: adminpages/orders.php:576 #: adminpages/orders.php:1343 +#: adminpages/orders.php:697 +#: adminpages/orders.php:1437 +#: classes/class.pmproemail.php:465 +#: classes/class.pmproemail.php:471 +#: classes/class.pmproemail.php:477 +#: classes/class.pmproemail.php:567 +#: classes/class.pmproemail.php:573 +#: classes/class.pmproemail.php:895 +#: classes/class.pmproemail.php:897 +#: classes/gateways/class.pmprogateway_braintree.php:516 +#: classes/gateways/class.pmprogateway_stripe.php:906 +#: includes/profile.php:454 msgid "Discount Code" msgstr "" @@ -4272,6 +4613,11 @@ msgstr "" #: classes/class.pmproemail.php:771 #: classes/class.pmproemail.php:905 #: classes/class.pmproemail.php:950 +#: classes/class.pmproemail.php:485 +#: classes/class.pmproemail.php:583 +#: classes/class.pmproemail.php:904 +#: classes/class.pmproemail.php:1038 +#: classes/class.pmproemail.php:1083 #, php-format msgid "This membership will expire on %s." msgstr "" @@ -4346,6 +4692,7 @@ msgstr "" #: classes/class.pmproemail.php:794 #: classes/class.pmproemail.php:806 #: classes/class.pmproemail.php:799 +#: classes/class.pmproemail.php:932 #, php-format msgid "Your trial at %s is ending soon" msgstr "" @@ -4358,6 +4705,7 @@ msgstr "" #: classes/class.pmproemail.php:831 #: classes/class.pmproemail.php:843 #: classes/class.pmproemail.php:836 +#: classes/class.pmproemail.php:969 #, php-format msgid "Your membership at %s has ended" msgstr "" @@ -4370,6 +4718,7 @@ msgstr "" #: classes/class.pmproemail.php:858 #: classes/class.pmproemail.php:870 #: classes/class.pmproemail.php:863 +#: classes/class.pmproemail.php:996 #, php-format msgid "Your membership at %s will end soon" msgstr "" @@ -4382,6 +4731,7 @@ msgstr "" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:900 #: classes/class.pmproemail.php:893 +#: classes/class.pmproemail.php:1026 #, php-format msgid "Your membership at %s has been changed" msgstr "" @@ -4438,6 +4788,7 @@ msgstr "" #: classes/class.pmproemail.php:933 #: classes/class.pmproemail.php:945 #: classes/class.pmproemail.php:938 +#: classes/class.pmproemail.php:1071 #, php-format msgid "Membership for %s at %s has been changed" msgstr "" @@ -4530,6 +4881,7 @@ msgstr "" #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:167 +#: paid-memberships-pro.php:173 msgid "Authorize.net" msgstr "" @@ -4593,12 +4945,15 @@ msgstr "" #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:167 #: paid-memberships-pro.php:168 +#: classes/gateways/class.pmprogateway_braintree.php:258 +#: paid-memberships-pro.php:174 msgid "Braintree Payments" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:132 #: classes/gateways/class.pmprogateway_braintree.php:119 #: classes/gateways/class.pmprogateway_braintree.php:308 +#: classes/gateways/class.pmprogateway_braintree.php:315 msgid "Braintree Settings" msgstr "" @@ -4612,6 +4967,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:124 #: classes/gateways/class.pmprogateway_braintree.php:313 #: classes/gateways/class.pmprogateway_cybersource.php:94 +#: classes/gateways/class.pmprogateway_braintree.php:320 msgid "Merchant ID" msgstr "" @@ -4621,6 +4977,7 @@ msgstr "" #: adminpages/paymentsettings.php:311 #: classes/gateways/class.pmprogateway_braintree.php:132 #: classes/gateways/class.pmprogateway_braintree.php:321 +#: classes/gateways/class.pmprogateway_braintree.php:328 msgid "Public Key" msgstr "" @@ -4630,6 +4987,7 @@ msgstr "" #: adminpages/paymentsettings.php:319 #: classes/gateways/class.pmprogateway_braintree.php:140 #: classes/gateways/class.pmprogateway_braintree.php:329 +#: classes/gateways/class.pmprogateway_braintree.php:336 msgid "Private Key" msgstr "" @@ -4639,6 +4997,7 @@ msgstr "" #: adminpages/paymentsettings.php:327 #: classes/gateways/class.pmprogateway_braintree.php:148 #: classes/gateways/class.pmprogateway_braintree.php:337 +#: classes/gateways/class.pmprogateway_braintree.php:344 msgid "Client-Side Encryption Key" msgstr "" @@ -4654,6 +5013,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:156 #: classes/gateways/class.pmprogateway_stripe.php:181 #: classes/gateways/class.pmprogateway_braintree.php:345 +#: classes/gateways/class.pmprogateway_braintree.php:352 msgid "Web Hook URL" msgstr "" @@ -4664,6 +5024,7 @@ msgstr "" #: adminpages/paymentsettings.php:523 #: classes/gateways/class.pmprogateway_braintree.php:160 #: classes/gateways/class.pmprogateway_braintree.php:348 +#: classes/gateways/class.pmprogateway_braintree.php:355 msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to" msgstr "" @@ -4684,6 +5045,9 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1282 #: classes/gateways/class.pmprogateway_stripe.php:1288 #: classes/gateways/class.pmprogateway_stripe.php:747 +#: adminpages/orders.php:676 +#: classes/gateways/class.pmprogateway_braintree.php:461 +#: classes/gateways/class.pmprogateway_stripe.php:855 msgid "Payment Information" msgstr "" @@ -4704,6 +5068,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1283 #: classes/gateways/class.pmprogateway_stripe.php:1289 #: classes/gateways/class.pmprogateway_stripe.php:748 +#: classes/gateways/class.pmprogateway_braintree.php:462 +#: classes/gateways/class.pmprogateway_stripe.php:856 #, php-format msgid "We Accept %s" msgstr "" @@ -4730,6 +5096,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1322 #: classes/gateways/class.pmprogateway_stripe.php:781 #: pages/billing.php:377 +#: classes/gateways/class.pmprogateway_braintree.php:482 +#: classes/gateways/class.pmprogateway_stripe.php:889 msgid "Card Number" msgstr "" @@ -4749,6 +5117,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:503 #: pages/billing.php:410 #: pages/billing.php:417 +#: classes/gateways/class.pmprogateway_braintree.php:510 msgid "CVV" msgstr "" @@ -4769,6 +5138,7 @@ msgstr "" #: pages/billing.php:411 #: pages/checkout.php:425 #: pages/billing.php:418 +#: classes/gateways/class.pmprogateway_braintree.php:511 msgid "what's this?" msgstr "" @@ -4794,6 +5164,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1338 #: classes/gateways/class.pmprogateway_stripe.php:1344 #: classes/gateways/class.pmprogateway_stripe.php:803 +#: classes/gateways/class.pmprogateway_braintree.php:518 +#: classes/gateways/class.pmprogateway_stripe.php:911 msgid "Apply" msgstr "" @@ -4805,6 +5177,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1011 #: classes/gateways/class.pmprogateway_stripe.php:1025 #: classes/gateways/class.pmprogateway_braintree.php:574 +#: classes/gateways/class.pmprogateway_braintree.php:581 msgid "Unknown error: Initial payment failed." msgstr "" @@ -4813,6 +5186,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:465 #: classes/gateways/class.pmprogateway_braintree.php:650 #: classes/gateways/class.pmprogateway_braintree.php:653 +#: classes/gateways/class.pmprogateway_braintree.php:660 msgid "Error during settlement:" msgstr "" @@ -4821,6 +5195,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:474 #: classes/gateways/class.pmprogateway_braintree.php:659 #: classes/gateways/class.pmprogateway_braintree.php:662 +#: classes/gateways/class.pmprogateway_braintree.php:669 msgid "Error during charge:" msgstr "" @@ -4830,6 +5205,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:566 #: classes/gateways/class.pmprogateway_braintree.php:762 #: classes/gateways/class.pmprogateway_braintree.php:765 +#: classes/gateways/class.pmprogateway_braintree.php:772 msgid "Failed to update customer." msgstr "" @@ -4839,6 +5215,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:614 #: classes/gateways/class.pmprogateway_braintree.php:810 #: classes/gateways/class.pmprogateway_braintree.php:813 +#: classes/gateways/class.pmprogateway_braintree.php:820 msgid "Failed to create customer." msgstr "" @@ -4848,6 +5225,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:621 #: classes/gateways/class.pmprogateway_braintree.php:817 #: classes/gateways/class.pmprogateway_braintree.php:820 +#: classes/gateways/class.pmprogateway_braintree.php:827 msgid "Error creating customer record with Braintree:" msgstr "" @@ -4892,6 +5270,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:423 #: classes/gateways/class.pmprogateway_braintree.php:1036 #: classes/gateways/class.pmprogateway_braintree.php:1039 +#: classes/gateways/class.pmprogateway_braintree.php:1046 msgid "Could not find the subscription." msgstr "" @@ -4907,6 +5286,7 @@ msgstr "" #: paid-memberships-pro.php:158 #: paid-memberships-pro.php:160 #: paid-memberships-pro.php:161 +#: paid-memberships-pro.php:167 msgid "Pay by Check" msgstr "" @@ -5021,6 +5401,7 @@ msgstr "" #: paid-memberships-pro.php:161 #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:164 +#: paid-memberships-pro.php:170 msgid "PayPal Website Payments Pro" msgstr "" @@ -5032,6 +5413,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:141 #: classes/gateways/class.pmprogateway_paypalstandard.php:133 #: classes/gateways/class.pmprogateway_paypalexpress.php:151 +#: classes/gateways/class.pmprogateway_paypalexpress.php:152 msgid "PayPal Settings" msgstr "" @@ -5054,6 +5436,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:162 #: classes/gateways/class.pmprogateway_paypalstandard.php:154 #: classes/gateways/class.pmprogateway_paypalexpress.php:172 +#: classes/gateways/class.pmprogateway_paypalexpress.php:173 msgid "Gateway Account Email" msgstr "" @@ -5073,6 +5456,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalstandard.php:162 #: classes/gateways/class.pmprogateway_twocheckout.php:120 #: classes/gateways/class.pmprogateway_paypalexpress.php:180 +#: classes/gateways/class.pmprogateway_paypalexpress.php:181 +#: classes/gateways/class.pmprogateway_twocheckout.php:127 msgid "API Username" msgstr "" @@ -5092,6 +5477,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalstandard.php:170 #: classes/gateways/class.pmprogateway_twocheckout.php:129 #: classes/gateways/class.pmprogateway_paypalexpress.php:188 +#: classes/gateways/class.pmprogateway_paypalexpress.php:189 +#: classes/gateways/class.pmprogateway_twocheckout.php:136 msgid "API Password" msgstr "" @@ -5106,6 +5493,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:186 #: classes/gateways/class.pmprogateway_paypalstandard.php:178 #: classes/gateways/class.pmprogateway_paypalexpress.php:196 +#: classes/gateways/class.pmprogateway_paypalexpress.php:197 msgid "API Signature" msgstr "" @@ -5121,6 +5509,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:205 #: classes/gateways/class.pmprogateway_paypalstandard.php:186 #: classes/gateways/class.pmprogateway_paypalexpress.php:215 +#: classes/gateways/class.pmprogateway_paypalexpress.php:216 msgid "IPN Handler URL" msgstr "" @@ -5147,6 +5536,7 @@ msgstr "" #: pages/checkout.php:218 #: classes/gateways/class.pmprogateway_paypalexpress.php:498 #: classes/gateways/class.pmprogateway_paypalexpress.php:502 +#: classes/gateways/class.pmprogateway_paypalexpress.php:503 msgid "Check Out with PayPal" msgstr "" @@ -5167,6 +5557,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:503 #: classes/gateways/class.pmprogateway_paypalexpress.php:507 #: pages/checkout.php:538 +#: classes/gateways/class.pmprogateway_paypalexpress.php:508 msgid "Submit and Check Out" msgstr "" @@ -5190,6 +5581,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:503 #: classes/gateways/class.pmprogateway_paypalexpress.php:507 #: pages/checkout.php:538 +#: classes/gateways/class.pmprogateway_paypalexpress.php:508 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Submit and Confirm" msgstr "" @@ -5214,6 +5607,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:854 #: classes/gateways/class.pmprogateway_paypal.php:726 #: classes/gateways/class.pmprogateway_paypalexpress.php:865 +#: classes/gateways/class.pmprogateway_paypalexpress.php:866 msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward." msgstr "" @@ -5227,6 +5621,8 @@ msgstr "" #: paid-memberships-pro.php:162 #: classes/gateways/class.pmprogateway_paypalexpress.php:94 #: paid-memberships-pro.php:163 +#: classes/gateways/class.pmprogateway_paypalexpress.php:95 +#: paid-memberships-pro.php:169 msgid "PayPal Express" msgstr "" @@ -5239,6 +5635,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:199 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 #: classes/gateways/class.pmprogateway_paypalexpress.php:218 +#: classes/gateways/class.pmprogateway_paypalexpress.php:219 msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to " msgstr "" @@ -5262,6 +5659,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:401 #: classes/gateways/class.pmprogateway_paypalexpress.php:352 #: classes/gateways/class.pmprogateway_paypalexpress.php:411 +#: classes/gateways/class.pmprogateway_paypalexpress.php:353 +#: classes/gateways/class.pmprogateway_paypalexpress.php:412 msgid "The PayPal Token was lost." msgstr "" @@ -5273,6 +5672,7 @@ msgstr "" #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:166 +#: paid-memberships-pro.php:172 msgid "PayPal Standard" msgstr "" @@ -5292,6 +5692,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:258 #: classes/gateways/class.pmprogateway_stripe.php:216 #: paid-memberships-pro.php:162 +#: classes/gateways/class.pmprogateway_stripe.php:234 +#: paid-memberships-pro.php:168 msgid "Stripe" msgstr "" @@ -5310,6 +5712,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:570 #: classes/gateways/class.pmprogateway_stripe.php:576 #: classes/gateways/class.pmprogateway_stripe.php:340 +#: classes/gateways/class.pmprogateway_stripe.php:366 msgid "Secret Key" msgstr "" @@ -5323,6 +5726,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:554 #: classes/gateways/class.pmprogateway_stripe.php:560 #: classes/gateways/class.pmprogateway_stripe.php:324 +#: classes/gateways/class.pmprogateway_stripe.php:350 msgid "Publishable Key" msgstr "" @@ -5336,6 +5740,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:629 #: classes/gateways/class.pmprogateway_stripe.php:635 #: classes/gateways/class.pmprogateway_stripe.php:399 +#: adminpages/orders.php:570 +#: classes/gateways/class.pmprogateway_stripe.php:425 msgid "Show Billing Address Fields" msgstr "" @@ -5348,6 +5754,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:638 #: classes/gateways/class.pmprogateway_stripe.php:644 #: classes/gateways/class.pmprogateway_stripe.php:408 +#: classes/gateways/class.pmprogateway_stripe.php:434 msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.
If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "" @@ -5370,6 +5777,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "" @@ -5408,6 +5816,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2653 #: classes/gateways/class.pmprogateway_stripe.php:2649 #: pages/billing.php:441 +#: classes/gateways/class.pmprogateway_stripe.php:3106 msgid "Update" msgstr "" @@ -5421,6 +5830,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "" @@ -5480,6 +5890,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "" @@ -5511,6 +5923,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "" @@ -5529,6 +5943,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "" @@ -5544,6 +5959,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "" @@ -5553,22 +5969,26 @@ msgstr "" #: paid-memberships-pro.php:124 #: paid-memberships-pro.php:125 #: classes/gateways/class.pmprogateway_twocheckout.php:59 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:116 #: classes/gateways/class.pmprogateway_twocheckout.php:108 #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:125 #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:134 #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "" @@ -5582,6 +6002,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:152 #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "" @@ -5590,11 +6011,13 @@ msgstr "" #: adminpages/paymentsettings.php:360 #: classes/gateways/class.pmprogateway_twocheckout.php:137 #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:161 #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "" @@ -5604,17 +6027,20 @@ msgstr "" #: adminpages/paymentsettings.php:495 #: classes/gateways/class.pmprogateway_twocheckout.php:145 #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:169 #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:214 #: classes/gateways/class.pmprogateway_twocheckout.php:192 #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "" @@ -6473,6 +6899,7 @@ msgstr "và" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "Đăng ký ngay cho !!name!!" @@ -6514,6 +6941,9 @@ msgstr "Hay chỉ rõ kiểu thành viên7" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "Không" @@ -6525,6 +6955,7 @@ msgstr "" #: includes/license.php:81 #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "" @@ -6545,6 +6976,7 @@ msgstr "" #: adminpages/license.php:49 #: adminpages/dashboard.php:178 #: adminpages/license.php:41 +#: adminpages/license.php:53 msgid "Your license is invalid or expired." msgstr "" @@ -6557,6 +6989,7 @@ msgstr "" #: adminpages/license.php:59 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "" @@ -6655,6 +7088,8 @@ msgstr "Kiểu Thành Viên Hiện Tại" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "Chưa trả phí." @@ -6733,6 +7168,9 @@ msgstr "đăng xuất" #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "Kiểu/Cấp độ" @@ -6797,6 +7235,7 @@ msgstr "Đăng ký thanh toán của bạn được quản lý bằng PayPal. H #: includes/profile.php:759 #: includes/profile.php:755 #: pages/billing.php:166 +#: includes/profile.php:795 msgid "First Name" msgstr "Tên" @@ -6815,6 +7254,7 @@ msgstr "Tên" #: includes/profile.php:760 #: includes/profile.php:756 #: pages/billing.php:170 +#: includes/profile.php:796 msgid "Last Name" msgstr "Họ" @@ -7261,6 +7701,10 @@ msgstr "Hóa đơn số#%s trên %s" #: adminpages/orders.php:391 #: adminpages/orders.php:1424 #: adminpages/orders.php:1434 +#: adminpages/orders.php:439 +#: adminpages/orders.php:1539 +#: adminpages/orders.php:1549 +#: includes/profile.php:473 msgid "Print" msgstr "In ấn" @@ -7311,6 +7755,7 @@ msgstr "Phương thức thanh toán " #: pages/invoice.php:97 #: pages/invoice.php:125 #: includes/profile.php:413 +#: includes/profile.php:453 msgid "Total Billed" msgstr "Tổng thanh toán " @@ -7335,6 +7780,7 @@ msgstr "Dưới đây là chi tiết về tài khoản thành viên của bạn. #: pages/confirmation.php:103 #: pages/confirmation.php:138 #: shortcodes/pmpro_account.php:247 +#: pages/confirmation.php:65 msgid "Pending" msgstr "Đang xử lý" @@ -7362,6 +7808,7 @@ msgstr "Nếu tài khoản của bạn chưa được kích hoạt trong vòng m #: includes/functions.php:2842 #: includes/functions.php:2873 #: includes/functions.php:2895 +#: includes/functions.php:2897 msgid "Subtotal" msgstr "Tổng phụ" @@ -7370,6 +7817,7 @@ msgstr "Tổng phụ" #: includes/functions.php:2857 #: includes/functions.php:2888 #: includes/functions.php:2910 +#: includes/functions.php:2912 msgid "Coupon" msgstr "Mã khuyến mại" @@ -7453,6 +7901,7 @@ msgstr "← Trở lại trang chủ" #: paid-memberships-pro.php:157 #: paid-memberships-pro.php:159 #: paid-memberships-pro.php:160 +#: paid-memberships-pro.php:166 msgid "Testing Only" msgstr "Thủ nghiệm" @@ -7462,6 +7911,7 @@ msgstr "Thủ nghiệm" #: paid-memberships-pro.php:162 #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:165 +#: paid-memberships-pro.php:171 msgid "PayPal Payflow Pro/PayPal Pro" msgstr "" @@ -7471,6 +7921,7 @@ msgstr "" #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:168 #: paid-memberships-pro.php:169 +#: paid-memberships-pro.php:175 msgid "Cybersource" msgstr "" @@ -7588,6 +8039,7 @@ msgstr "Lỗi cập nhật thông tin thanh toán." #: classes/class.pmproemail.php:907 #: includes/email.php:459 #: classes/class.pmproemail.php:900 +#: classes/class.pmproemail.php:1033 msgid "Your membership has been cancelled." msgstr "Thành viên của bạn đã bị hủy." @@ -7886,6 +8338,7 @@ msgstr "" #: pages/account.php:19 #: includes/email-templates.php:68 #: shortcodes/pmpro_account.php:43 +#: adminpages/orders.php:1431 msgid "Billing" msgstr "Thông tin thanh toán " @@ -7934,6 +8387,8 @@ msgstr "Sửa thông tin cá nhân" #: includes/profile.php:921 #: includes/profile.php:880 #: includes/profile.php:917 +#: includes/profile.php:920 +#: includes/profile.php:957 msgid "Change Password" msgstr "Đổi mật khẩu" @@ -8037,6 +8492,8 @@ msgstr "Bạn có chắc chắn muốn xóa cấp thành viên %s? Tất cả c #: includes/profile.php:515 #: includes/profile.php:511 #: adminpages/advancedsettings.php:331 +#: adminpages/advancedsettings.php:338 +#: includes/profile.php:551 msgid "Never" msgstr "Không bao giờ" @@ -8122,6 +8579,7 @@ msgstr "Khoản thanh toán đầu tiên %d là %s." #: pages/account.php:87 #: pages/account.php:91 #: adminpages/emailtemplates.php:156 +#: adminpages/emailtemplates.php:149 msgid "Billing Information" msgstr "Thông tin thanh toán" @@ -8238,6 +8696,18 @@ msgstr "Thiết lập tài khoản" #: js/blocks.build.js:1342 #: js/blocks.build.js:1502 #: classes/class-pmpro-admin-activity-email.php:349 +#: blocks/account-invoices-section/block.js:47 +#: blocks/account-links-section/block.js:47 +#: blocks/account-membership-section/block.js:45 +#: blocks/account-page/block.js:72 +#: blocks/account-profile-section/block.js:45 +#: blocks/billing-page/block.js:44 +#: blocks/cancel-page/block.js:44 +#: blocks/checkout-page/block.js:58 +#: blocks/confirmation-page/block.js:46 +#: blocks/invoice-page/block.js:45 +#: blocks/levels-page/block.js:44 +#: blocks/member-profile-edit/block.js:37 msgid "Paid Memberships Pro" msgstr "" @@ -8283,6 +8753,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:76 #: classes/gateways/class.pmprogateway_stripe.php:82 #: classes/gateways/class.pmprogateway_stripe.php:1338 +#: classes/gateways/class.pmprogateway_stripe.php:1463 msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade." msgstr "" @@ -8323,6 +8794,7 @@ msgstr "" #: includes/adminpages.php:52 #: includes/adminpages.php:158 #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Members" msgstr "" @@ -8367,41 +8839,49 @@ msgstr "" #: adminpages/advancedsettings.php:106 #: includes/updates/upgrade_1.php:7 #: adminpages/advancedsettings.php:108 +#: adminpages/advancedsettings.php:116 msgid "This content is for !!levels!! members only.
Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -8409,93 +8889,111 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -8521,6 +9019,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -8591,6 +9090,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -8696,6 +9196,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -8734,6 +9235,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -8746,31 +9248,39 @@ msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 msgid "%d discount codes found." msgstr "" @@ -8796,6 +9306,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -8814,6 +9331,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -8822,19 +9345,23 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -8875,192 +9402,241 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:960 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:170 #: includes/privacy.php:363 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -9098,6 +9674,7 @@ msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -9105,14 +9682,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -9129,27 +9709,34 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -9159,6 +9746,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -9166,6 +9755,7 @@ msgstr "" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -9173,6 +9763,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -9180,6 +9771,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -9187,6 +9779,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -9194,6 +9787,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -9201,6 +9795,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -9245,78 +9840,91 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -9326,6 +9934,8 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" @@ -9338,12 +9948,16 @@ msgstr "" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -9351,24 +9965,28 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "" @@ -9378,26 +9996,31 @@ msgstr "" #: adminpages/paymentsettings.php:122 #: adminpages/paymentsettings.php:127 +#: adminpages/paymentsettings.php:125 msgid "Choose a Gateway" msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" #: adminpages/paymentsettings.php:194 #: adminpages/paymentsettings.php:201 +#: adminpages/paymentsettings.php:199 msgid "Currency and Tax Settings" msgstr "" #: adminpages/paymentsettings.php:239 #: adminpages/paymentsettings.php:246 +#: adminpages/paymentsettings.php:244 msgid "Tax Rate" msgstr "" @@ -9407,11 +10030,13 @@ msgstr "" #: adminpages/paymentsettings.php:260 #: adminpages/paymentsettings.php:273 +#: adminpages/paymentsettings.php:271 msgid "Your Site URL starts with https:// and so PMPro will allow your entire site to be served over HTTPS." msgstr "" #: adminpages/paymentsettings.php:270 #: adminpages/paymentsettings.php:283 +#: adminpages/paymentsettings.php:281 msgid "Recommended: Yes. Try the JavaScript redirects setting if you are having issues with infinite redirect loops." msgstr "" @@ -9421,6 +10046,7 @@ msgstr "" #: adminpages/reports.php:19 #: adminpages/reports.php:18 +#: adminpages/reports.php:21 msgid "Back to Reports Dashboard" msgstr "" @@ -9448,6 +10074,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -9458,6 +10085,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -9516,29 +10144,35 @@ msgid "All Cancellations" msgstr "" #: adminpages/reports/memberships.php:338 +#: adminpages/reports/memberships.php:337 msgid "Signups vs. All Cancellations" msgstr "" #: adminpages/reports/memberships.php:340 +#: adminpages/reports/memberships.php:339 msgid "Signups vs. Expirations" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -9731,63 +10365,77 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:962 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:463 #: classes/class.pmproemail.php:475 #: classes/class.pmproemail.php:468 +#: classes/class.pmproemail.php:601 msgid "Your billing information has been updated at %s" msgstr "" #: classes/class.pmproemail.php:513 #: classes/class.pmproemail.php:525 #: classes/class.pmproemail.php:518 +#: classes/class.pmproemail.php:651 msgid "Billing information has been updated for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -9800,6 +10448,8 @@ msgstr "" #: includes/email.php:465 #: classes/class.pmproemail.php:898 #: classes/class.pmproemail.php:943 +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 msgid "The new level is %s." msgstr "" @@ -9812,30 +10462,36 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -9847,14 +10503,17 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:91 #: classes/gateways/class.pmprogateway_stripe.php:97 #: classes/gateways/class.pmprogateway_stripe.php:1353 +#: classes/gateways/class.pmprogateway_stripe.php:1478 msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" @@ -9868,21 +10527,30 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:750 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -9890,11 +10558,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -10172,17 +10843,20 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:185 #: classes/gateways/class.pmprogateway_paypalexpress.php:194 #: classes/gateways/class.pmprogateway_paypalexpress.php:204 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 msgid "Confirmation Step" msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -10191,6 +10865,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -10199,6 +10874,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -10214,6 +10890,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -10222,6 +10899,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -10233,6 +10911,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -10244,6 +10923,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -10255,6 +10935,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -10263,6 +10944,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -10274,6 +10956,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -10285,6 +10968,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -10293,6 +10977,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -10304,6 +10989,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -10312,6 +10998,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -10335,6 +11022,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -10351,6 +11040,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -10359,6 +11050,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -10367,6 +11059,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -10375,6 +11068,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -10382,6 +11076,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -10390,6 +11085,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -10403,6 +11099,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -10411,6 +11109,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -10419,6 +11118,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -10428,6 +11128,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -10445,6 +11147,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -10453,6 +11157,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -10474,6 +11179,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -10482,6 +11189,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -10490,6 +11198,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -10498,6 +11207,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -10506,6 +11216,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -10514,6 +11225,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -10522,6 +11234,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -10530,6 +11243,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -10538,6 +11252,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -10546,6 +11261,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -10554,6 +11270,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -10566,6 +11283,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -10574,6 +11292,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -10582,6 +11301,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -10590,6 +11310,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -10598,6 +11319,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -10643,6 +11365,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "" @@ -10660,6 +11384,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "" @@ -10671,6 +11397,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 msgid "Error: Unkown error while refunding charge #%s" msgstr "" @@ -10680,6 +11407,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -10700,6 +11428,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -10708,6 +11440,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -10717,6 +11450,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -10726,6 +11460,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -10737,6 +11472,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -10748,6 +11484,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -10759,6 +11496,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -10770,6 +11508,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" @@ -10808,6 +11547,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -10820,6 +11560,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -10832,6 +11573,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -12630,14 +13372,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -12646,18 +13391,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -12669,6 +13418,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -12801,6 +13551,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -12914,6 +13665,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -12921,6 +13673,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -12952,6 +13705,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -12961,6 +13715,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -12968,6 +13723,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -13072,6 +13828,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -13079,6 +13837,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -13086,6 +13845,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -13093,6 +13853,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -13164,126 +13925,148 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -13295,6 +14078,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -13400,6 +14186,7 @@ msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -13425,6 +14212,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -13463,6 +14251,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -13478,6 +14281,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -13493,6 +14297,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -13525,6 +14330,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -13537,6 +14343,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -13562,11 +14369,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -13574,6 +14386,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -13581,6 +14394,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -13603,6 +14417,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -13628,6 +14443,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -13635,6 +14451,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -13667,6 +14484,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -13689,6 +14507,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -13699,11 +14518,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -13723,6 +14553,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -13736,6 +14567,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -13745,6 +14577,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -13754,10 +14587,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -13768,6 +14603,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -13775,6 +14611,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -13784,6 +14621,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -13793,12 +14631,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -13806,6 +14647,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -13814,6 +14657,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -13821,6 +14665,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -13828,27 +14673,32 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: paid-memberships-pro.php:194 #: paid-memberships-pro.php:195 +#: paid-memberships-pro.php:201 msgid "Once a month" msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -13906,12 +14756,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -13921,6 +14773,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -13930,6 +14783,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -13939,54 +14793,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -13997,42 +14861,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -14047,51 +14921,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -14099,6 +14985,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -14106,6 +14993,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -14113,6 +15001,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -14121,6 +15010,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -14134,6 +15025,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -14154,19 +15046,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -14176,31 +15072,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -14230,21 +15134,25 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" @@ -14314,26 +15222,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -14342,51 +15256,62 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -14400,19 +15325,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -14443,3 +15372,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro-zh_HK.mo b/languages/paid-memberships-pro-zh_HK.mo index 65530bfb8..01cbfc0a4 100644 Binary files a/languages/paid-memberships-pro-zh_HK.mo and b/languages/paid-memberships-pro-zh_HK.mo differ diff --git a/languages/paid-memberships-pro-zh_HK.po b/languages/paid-memberships-pro-zh_HK.po index 2be066f03..197bbc34e 100644 --- a/languages/paid-memberships-pro-zh_HK.po +++ b/languages/paid-memberships-pro-zh_HK.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:21:24+00:00\n" +"POT-Creation-Date: 2022-05-05T20:37:58+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -100,6 +100,7 @@ msgstr "再檢查" #: adminpages/orders.php:1014 #: includes/metaboxes.php:19 #: adminpages/orders.php:1015 +#: adminpages/orders.php:1103 msgid "All" msgstr "所有的" @@ -151,6 +152,7 @@ msgstr "類型" #: adminpages/membershiplevels.php:298 #: adminpages/membershiplevels.php:300 #: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "描述" @@ -248,6 +250,11 @@ msgstr "啟用 %s" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "刪除" @@ -324,6 +331,18 @@ msgstr "WordPress.org" #: adminpages/orders.php:913 #: adminpages/orders.php:1537 #: adminpages/orders.php:1546 +#: adminpages/orders.php:704 +#: adminpages/orders.php:996 +#: adminpages/orders.php:1689 +#: adminpages/orders.php:1698 +#: classes/class.pmproemail.php:261 +#: classes/class.pmproemail.php:327 +#: includes/profile.php:167 +#: includes/profile.php:483 +#: includes/profile.php:484 +#: includes/profile.php:556 +#: includes/profile.php:557 +#: includes/profile.php:558 msgid "N/A" msgstr "N/A" @@ -542,6 +561,11 @@ msgstr "付款通道(payment gateway) & SSL" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "電郵" @@ -558,6 +582,7 @@ msgstr "高等/深入" #: adminpages/advancedsettings.php:42 #: adminpages/advancedsettings.php:68 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "您的深入設定以升級好." @@ -578,6 +603,7 @@ msgstr "請 登入 後能讀內容. (請參加 #: adminpages/advancedsettings.php:116 #: includes/updates/upgrade_1.php:13 #: adminpages/advancedsettings.php:118 +#: adminpages/advancedsettings.php:126 msgid "This content is for members only. Visit the site and log in/register to read." msgstr "這些內容是給會員的. 請登入/登記我們的網站就能讀." @@ -596,6 +622,7 @@ msgstr "這些內容是給會員的. 請登入/登記我們的網站就能讀." #: adminpages/advancedsettings.php:132 #: includes/adminpages.php:73 #: adminpages/advancedsettings.php:134 +#: adminpages/advancedsettings.php:142 msgid "Advanced Settings" msgstr "深入的設定" @@ -604,6 +631,7 @@ msgstr "深入的設定" #: adminpages/advancedsettings.php:92 #: adminpages/advancedsettings.php:164 #: adminpages/advancedsettings.php:166 +#: adminpages/advancedsettings.php:173 msgid "Message for Logged-in Non-members" msgstr "有登入後的非會員訊息" @@ -612,6 +640,7 @@ msgstr "有登入後的非會員訊息" #: adminpages/advancedsettings.php:96 #: adminpages/advancedsettings.php:168 #: adminpages/advancedsettings.php:170 +#: adminpages/advancedsettings.php:177 msgid "This message replaces the post content for non-members. Available variables" msgstr "這個訊息是代替文章的內容給非會員的. 可用的變量" @@ -620,6 +649,7 @@ msgstr "這個訊息是代替文章的內容給非會員的. 可用的變量" #: adminpages/advancedsettings.php:101 #: adminpages/advancedsettings.php:173 #: adminpages/advancedsettings.php:175 +#: adminpages/advancedsettings.php:182 msgid "Message for Logged-out Users" msgstr "這個訊息給登出的會員" @@ -628,6 +658,7 @@ msgstr "這個訊息給登出的會員" #: adminpages/advancedsettings.php:105 #: adminpages/advancedsettings.php:177 #: adminpages/advancedsettings.php:179 +#: adminpages/advancedsettings.php:186 msgid "This message replaces the post content for logged-out visitors." msgstr "這個訊息是代替文章的內容給登出的會員." @@ -636,6 +667,7 @@ msgstr "這個訊息是代替文章的內容給登出的會員." #: adminpages/advancedsettings.php:110 #: adminpages/advancedsettings.php:182 #: adminpages/advancedsettings.php:184 +#: adminpages/advancedsettings.php:191 msgid "Message for RSS Feed" msgstr "這個訊息是給RSS Feed" @@ -644,24 +676,28 @@ msgstr "這個訊息是給RSS Feed" #: adminpages/advancedsettings.php:114 #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "This message replaces the post content in RSS feeds." msgstr "這個訊息是代替RSS feed的內容." #: adminpages/advancedsettings.php:122 #: adminpages/advancedsettings.php:199 #: adminpages/advancedsettings.php:201 +#: adminpages/advancedsettings.php:208 msgid "Filter searches and archives?" msgstr "過濾搜查和造檔案?" #: adminpages/advancedsettings.php:126 #: adminpages/advancedsettings.php:203 #: adminpages/advancedsettings.php:205 +#: adminpages/advancedsettings.php:212 msgid "No - Non-members will see restricted posts/pages in searches and archives." msgstr "不是 – 在搜查和洛檔案時非會員就只能讀有限制性的文章/網頁內容." #: adminpages/advancedsettings.php:127 #: adminpages/advancedsettings.php:204 #: adminpages/advancedsettings.php:206 +#: adminpages/advancedsettings.php:213 msgid "Yes - Only members will see restricted posts/pages in searches and archives." msgstr "正是 – 在搜查和洛檔案時會員就能讀有限制性的文章/網頁內容." @@ -670,6 +706,7 @@ msgstr "正是 – 在搜查和洛檔案時會員就能讀有限制性的文章/ #: adminpages/advancedsettings.php:120 #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:212 +#: adminpages/advancedsettings.php:219 msgid "Show Excerpts to Non-Members?" msgstr "可出示, 但不能出示給非會員?" @@ -678,6 +715,7 @@ msgstr "可出示, 但不能出示給非會員?" #: adminpages/advancedsettings.php:124 #: adminpages/advancedsettings.php:214 #: adminpages/advancedsettings.php:216 +#: adminpages/advancedsettings.php:223 msgid "No - Hide excerpts." msgstr "不是 – 藏起摘錄." @@ -686,12 +724,14 @@ msgstr "不是 – 藏起摘錄." #: adminpages/advancedsettings.php:125 #: adminpages/advancedsettings.php:215 #: adminpages/advancedsettings.php:217 +#: adminpages/advancedsettings.php:224 msgid "Yes - Show excerpts." msgstr "正是 - 可出示, 但不能出示." #: adminpages/advancedsettings.php:144 #: adminpages/advancedsettings.php:333 #: adminpages/advancedsettings.php:348 +#: adminpages/advancedsettings.php:355 msgid "Hide Ads From Members?" msgstr "對會員藏起廣告?" @@ -769,6 +809,16 @@ msgstr "對會員藏起廣告?" #: classes/gateways/class.pmprogateway_stripe.php:404 #: classes/gateways/class.pmprogateway_stripe.php:418 #: adminpages/paymentsettings.php:279 +#: adminpages/advancedsettings.php:254 +#: adminpages/advancedsettings.php:267 +#: adminpages/advancedsettings.php:359 +#: adminpages/advancedsettings.php:418 +#: adminpages/advancedsettings.php:526 +#: adminpages/membershiplevels.php:939 +#: adminpages/paymentsettings.php:277 +#: classes/gateways/class.pmprogateway_stripe.php:430 +#: classes/gateways/class.pmprogateway_stripe.php:444 +#: includes/profile.php:78 msgid "No" msgstr "不是" @@ -777,6 +827,7 @@ msgstr "不是" #: adminpages/advancedsettings.php:136 #: adminpages/advancedsettings.php:338 #: adminpages/advancedsettings.php:353 +#: adminpages/advancedsettings.php:360 msgid "Hide Ads From All Members" msgstr "對所有會員藏起廣告" @@ -785,6 +836,7 @@ msgstr "對所有會員藏起廣告" #: adminpages/advancedsettings.php:137 #: adminpages/advancedsettings.php:339 #: adminpages/advancedsettings.php:354 +#: adminpages/advancedsettings.php:361 msgid "Hide Ads From Certain Members" msgstr "對有些會員藏起廣告" @@ -799,6 +851,7 @@ msgstr "廣告在這個插件會自動關閉" #: adminpages/advancedsettings.php:145 #: adminpages/advancedsettings.php:346 #: adminpages/advancedsettings.php:361 +#: adminpages/advancedsettings.php:368 msgid "To hide ads in your template code, use code like the following" msgstr "如果要藏起在樣板密碼程式的廣告, 就用這些密碼程式" @@ -807,6 +860,7 @@ msgstr "如果要藏起在樣板密碼程式的廣告, 就用這些密碼程式" #: adminpages/advancedsettings.php:156 #: adminpages/advancedsettings.php:355 #: adminpages/advancedsettings.php:370 +#: adminpages/advancedsettings.php:377 msgid "Choose Levels to Hide Ads From" msgstr "選擇藏起廣告程度" @@ -825,6 +879,7 @@ msgstr "改變從電子登記registration交通的方向去到/訂閱subscriptio #: adminpages/advancedsettings.php:390 #: adminpages/advancedsettings.php:392 #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "multisite only" msgstr "只能是複數網站" @@ -891,6 +946,12 @@ msgstr "只能是複數網站" #: classes/gateways/class.pmprogateway_stripe.php:406 #: classes/gateways/class.pmprogateway_stripe.php:420 #: adminpages/paymentsettings.php:280 +#: adminpages/advancedsettings.php:419 +#: adminpages/membershiplevels.php:934 +#: adminpages/paymentsettings.php:278 +#: classes/gateways/class.pmprogateway_stripe.php:432 +#: classes/gateways/class.pmprogateway_stripe.php:446 +#: includes/profile.php:79 msgid "Yes" msgstr "正是" @@ -899,6 +960,7 @@ msgstr "正是" #: adminpages/advancedsettings.php:202 #: adminpages/advancedsettings.php:241 #: adminpages/advancedsettings.php:256 +#: adminpages/advancedsettings.php:263 msgid "Use reCAPTCHA?" msgstr "用 reCAPTCHA?" @@ -914,6 +976,7 @@ msgstr "正是 – 只能是免費會籍." #: adminpages/advancedsettings.php:208 #: adminpages/advancedsettings.php:247 #: adminpages/advancedsettings.php:262 +#: adminpages/advancedsettings.php:269 msgid "Yes - All memberships." msgstr "正是 – 是所有會籍." @@ -922,6 +985,7 @@ msgstr "正是 – 是所有會籍." #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "A free reCAPTCHA key is required." msgstr "需要免費reCAPTCHA 鎖匙." @@ -930,6 +994,7 @@ msgstr "需要免費reCAPTCHA 鎖匙." #: adminpages/advancedsettings.php:210 #: adminpages/advancedsettings.php:249 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "Click here to signup for reCAPTCHA" msgstr "點擊以下就能報名加入 reCAPTCHA" @@ -988,6 +1053,9 @@ msgstr "選擇" #: adminpages/pagesettings.php:508 #: adminpages/pagesettings.php:512 #: adminpages/paymentsettings.php:316 +#: adminpages/advancedsettings.php:574 +#: adminpages/pagesettings.php:511 +#: adminpages/paymentsettings.php:314 msgid "Save Settings" msgstr "保存設定" @@ -1083,6 +1151,7 @@ msgstr "清除密碼有錯誤. 請再次試下." #: adminpages/discountcodes.php:796 #: adminpages/discountcodes.php:354 #: adminpages/discountcodes.php:798 +#: adminpages/discountcodes.php:799 msgid "Code not found." msgstr "密碼找不到." @@ -1111,6 +1180,7 @@ msgstr "編輯改變减價密碼" #: adminpages/discountcodes.php:735 #: adminpages/discountcodes.php:377 #: adminpages/discountcodes.php:737 +#: adminpages/discountcodes.php:738 msgid "Add New Discount Code" msgstr "加新减價密碼" @@ -1172,6 +1242,8 @@ msgstr "加新减價密碼" #: adminpages/reports/login.php:182 #: adminpages/templates/orders-email.php:49 #: adminpages/templates/orders-print.php:78 +#: adminpages/membershiplevels.php:345 +#: adminpages/membershiplevels.php:805 msgid "ID" msgstr "ID" @@ -1232,6 +1304,9 @@ msgstr "當保存時會産生造成的." #: adminpages/dashboard.php:292 #: adminpages/orders.php:429 #: adminpages/orders.php:1333 +#: adminpages/discountcodes.php:787 +#: adminpages/orders.php:475 +#: adminpages/orders.php:1426 msgid "Code" msgstr "密碼/程式密碼" @@ -1247,6 +1322,7 @@ msgstr "密碼/程式密碼" #: adminpages/discountcodes.php:489 #: includes/profile.php:501 #: includes/profile.php:497 +#: includes/profile.php:537 msgid "Start Date" msgstr "開始日期" @@ -1301,6 +1377,8 @@ msgstr "開始日期" #: classes/gateways/class.pmprogateway_stripe.php:1326 #: classes/gateways/class.pmprogateway_stripe.php:785 #: pages/billing.php:381 +#: classes/gateways/class.pmprogateway_braintree.php:486 +#: classes/gateways/class.pmprogateway_stripe.php:893 msgid "Expiration Date" msgstr "到期日期" @@ -1319,6 +1397,7 @@ msgstr "到期日期" #: adminpages/discountcodes.php:787 #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:789 +#: adminpages/discountcodes.php:790 msgid "Uses" msgstr "用" @@ -1359,6 +1438,7 @@ msgstr "這個程度會著下怎麼密碼?" #: adminpages/discountcodes.php:574 #: adminpages/membershiplevels.php:401 #: adminpages/discountcodes.php:576 +#: adminpages/membershiplevels.php:399 msgid "Initial Payment" msgstr "首期付款" @@ -1377,6 +1457,7 @@ msgstr "首期付款" #: adminpages/discountcodes.php:585 #: adminpages/membershiplevels.php:412 #: adminpages/discountcodes.php:587 +#: adminpages/membershiplevels.php:410 msgid "The initial amount collected at registration." msgstr "首期會在登記時收集." @@ -1395,6 +1476,7 @@ msgstr "首期會在登記時收集." #: adminpages/discountcodes.php:590 #: adminpages/membershiplevels.php:417 #: adminpages/discountcodes.php:592 +#: adminpages/membershiplevels.php:415 msgid "Recurring Subscription" msgstr "定期訂閱" @@ -1413,6 +1495,7 @@ msgstr "定期訂閱" #: adminpages/discountcodes.php:591 #: adminpages/membershiplevels.php:418 #: adminpages/discountcodes.php:593 +#: adminpages/membershiplevels.php:416 msgid "Check if this level has a recurring subscription payment." msgstr "請檢查這個會籍程度有不有定期訂閱費." @@ -1430,6 +1513,7 @@ msgstr "請檢查這個會籍程度有不有定期訂閱費." #: adminpages/discountcodes.php:595 #: adminpages/membershiplevels.php:422 #: adminpages/discountcodes.php:597 +#: adminpages/membershiplevels.php:420 msgid "Billing Amount" msgstr "付款帳單數量" @@ -1480,6 +1564,10 @@ msgstr "付款帳單數量" #: classes/gateways/class.pmprogateway_stripe.php:2637 #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2635 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3092 msgid "Day(s)" msgstr "日(s)" @@ -1530,6 +1618,10 @@ msgstr "日(s)" #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2641 #: classes/gateways/class.pmprogateway_stripe.php:2637 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3094 msgid "Month(s)" msgstr "月(s)" @@ -1580,6 +1672,10 @@ msgstr "月(s)" #: classes/gateways/class.pmprogateway_stripe.php:2638 #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2636 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3093 msgid "Week(s)" msgstr "星期(s)" @@ -1630,6 +1726,10 @@ msgstr "星期(s)" #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2642 #: classes/gateways/class.pmprogateway_stripe.php:2638 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3095 msgid "Year(s)" msgstr "年(s)" @@ -1648,6 +1748,7 @@ msgstr "年(s)" #: adminpages/discountcodes.php:618 #: adminpages/membershiplevels.php:446 #: adminpages/discountcodes.php:620 +#: adminpages/membershiplevels.php:444 msgid "The amount to be billed one cycle after the initial payment." msgstr "交完首期付款後一個週期後的付款數量." @@ -1666,6 +1767,7 @@ msgstr "交完首期付款後一個週期後的付款數量." #: adminpages/discountcodes.php:628 #: adminpages/membershiplevels.php:465 #: adminpages/discountcodes.php:630 +#: adminpages/membershiplevels.php:463 msgid "Billing Cycle Limit" msgstr "結算週期限期" @@ -1684,6 +1786,7 @@ msgstr "結算週期限期" #: adminpages/discountcodes.php:632 #: adminpages/membershiplevels.php:469 #: adminpages/discountcodes.php:634 +#: adminpages/membershiplevels.php:467 msgid "The total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "在這個會籍程度結算週期的總數量, (如果適合就)包含試用期, 但是不包含首期付款. 無限期的會籍就既定是零." @@ -1702,6 +1805,8 @@ msgstr "在這個會籍程度結算週期的總數量, (如果 #: adminpages/discountcodes.php:651 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "專門設計試用期" @@ -1721,6 +1826,8 @@ msgstr "專門設計試用期" #: adminpages/discountcodes.php:653 #: adminpages/membershiplevels.php:490 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "檢查再加專門設計試用期." @@ -1740,6 +1847,7 @@ msgstr "檢查再加專門設計試用期." #: adminpages/discountcodes.php:661 #: adminpages/membershiplevels.php:510 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "試用付款帳單數量" @@ -1759,6 +1867,7 @@ msgstr "試用付款帳單數量" #: adminpages/discountcodes.php:672 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "是開始的" @@ -1778,6 +1887,7 @@ msgstr "是開始的" #: adminpages/discountcodes.php:674 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "訂閱費" @@ -1798,6 +1908,7 @@ msgstr "訂閱費" #: adminpages/discountcodes.php:686 #: adminpages/membershiplevels.php:559 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "會籍到期" @@ -1817,6 +1928,7 @@ msgstr "會籍到期" #: adminpages/discountcodes.php:687 #: adminpages/membershiplevels.php:560 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "檢查這個會籍甚麼時候到期, 來設定會籍到期日." @@ -1838,6 +1950,8 @@ msgstr "檢查這個會籍甚麼時候到期, 來設定會籍到期日." #: adminpages/membershiplevels.php:575 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "到期日是" @@ -1857,6 +1971,8 @@ msgstr "到期日是" #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "設置會籍讀取期限. 注意在會籍到期時任何付款(如果有定期訂閱費)都會在會籍到期時取消." @@ -1868,6 +1984,7 @@ msgstr "設置會籍讀取期限. 注意在會籍到期時任何付款(如果有 #: adminpages/discountcodes.php:558 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "會籍减價密碼" @@ -1879,6 +1996,7 @@ msgstr "會籍减價密碼" #: adminpages/discountcodes.php:568 #: adminpages/discountcodes.php:771 #: adminpages/discountcodes.php:773 +#: adminpages/discountcodes.php:768 msgid "Search Discount Codes" msgstr "搜查减價密碼" @@ -1893,6 +2011,7 @@ msgstr "搜查减價密碼" #: adminpages/reports/login.php:83 #: adminpages/discountcodes.php:774 #: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "搜查" @@ -1904,6 +2023,7 @@ msgstr "搜查" #: adminpages/discountcodes.php:589 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "開始" @@ -1937,6 +2057,8 @@ msgstr "開始" #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "到期日" @@ -1949,6 +2071,7 @@ msgstr "到期日" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "程度" @@ -2003,6 +2126,7 @@ msgstr "减價密碼可以提供你給有些客戶有减價會籍費." #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "編輯改變" @@ -2071,6 +2195,7 @@ msgstr "電郵設定" #: adminpages/emailsettings.php:70 #: adminpages/emailsettings.php:61 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "從正常預設值, 系統會從wordpress@yourdomain.com生産電郵emails. 您可以更新插入新的地址到以下的欄位." @@ -2082,22 +2207,26 @@ msgstr "修改系統生産的電郵樣子, 文件加入email_header.htmlpmpro_#
, where # is the level ID." msgstr "請記下ID和在您的Braintree控制台板開啓相同設定的新計劃\"Plan\"和\"Plan ID\"設定在 pmpro_#, 以#是會員會籍程度ID." @@ -2396,6 +2534,8 @@ msgstr "請記下ID和在您的Braintree控制台板開啓相同設定的新計 #: adminpages/membershiplevels.php:454 #: adminpages/membershiplevels.php:459 #: classes/gateways/class.pmprogateway_cybersource.php:89 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 msgid "Note" msgstr "注意" @@ -2417,6 +2557,7 @@ msgstr "你需要用相同的設定和計劃ID\"Plan ID\"在Braintree控制台 #: adminpages/discountcodes.php:634 #: adminpages/membershiplevels.php:471 #: adminpages/discountcodes.php:636 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "Stripe 的綜合現在不支持付款帳單限制. 你可以在下面設定有限日期." @@ -2429,6 +2570,8 @@ msgstr "Stripe 的綜合現在不支持付款帳單限制. 你可以在下面設 #: adminpages/discountcodes.php:655 #: adminpages/membershiplevels.php:493 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "2Checkout 的綜合不支持專門設計試用期. 在付款帳單裏的付款, 你可以設定首期付款來造你的一期試用期, 以又是同付款帳單的付款數量不同." @@ -2442,6 +2585,7 @@ msgstr "2Checkout 的綜合不支持專門設計試用期. 在付款帳單裏的 #: adminpages/discountcodes.php:676 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "Stripe的綜合現在不支持試驗付款超個$0." @@ -2455,6 +2599,7 @@ msgstr "Stripe的綜合現在不支持試驗付款超個$0." #: adminpages/discountcodes.php:678 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "Braintree 的綜合現在不支持試用費超個$0." @@ -2468,6 +2613,7 @@ msgstr "Braintree 的綜合現在不支持試用費超個$0." #: adminpages/discountcodes.php:680 #: adminpages/membershiplevels.php:529 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "Payflow 的綜合現在不支持試用費超個$0." @@ -2483,6 +2629,7 @@ msgstr "Payflow 的綜合現在不支持試用費超個$0." #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "其它設定" @@ -2521,6 +2668,8 @@ msgstr "用檢查來藏起這個程度對會籍頁和暫停登記." #: adminpages/advancedsettings.php:194 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "內容設定" @@ -2533,6 +2682,7 @@ msgstr "內容設定" #: adminpages/membershiplevels.php:499 #: adminpages/membershiplevels.php:500 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "種類" @@ -2542,6 +2692,7 @@ msgstr "種類" #: adminpages/membershiplevels.php:516 #: adminpages/membershiplevels.php:517 #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "保存程度" @@ -2592,6 +2743,11 @@ msgstr "保存程度" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "取消" @@ -2644,6 +2800,7 @@ msgstr "搜查程度" #: adminpages/membershiplevels.php:630 #: adminpages/membershiplevels.php:631 #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "在程度頁拉和落下這個會籍程度來再訂購." @@ -2677,6 +2834,8 @@ msgstr "在程度頁拉和落下這個會籍程度來再訂購." #: pages/invoice.php:89 #: shortcodes/pmpro_account.php:44 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "到期" @@ -2693,6 +2852,7 @@ msgstr "到期" #: adminpages/membershiplevels.php:641 #: adminpages/membershiplevels.php:645 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "可以報名" @@ -2710,6 +2870,7 @@ msgstr "可以報名" #: adminpages/membershiplevels.php:660 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "免費" @@ -2727,6 +2888,7 @@ msgstr "免費" #: adminpages/membershiplevels.php:669 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "以後" @@ -2783,6 +2945,7 @@ msgstr "複製" #: includes/adminpages.php:149 #: includes/adminpages.php:153 #: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "會員名單" @@ -2798,6 +2961,8 @@ msgstr "會員名單" #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "輸出到CSV" @@ -2831,6 +2996,8 @@ msgstr "輸出到CSV" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "顯示" @@ -2863,6 +3030,8 @@ msgstr "顯示" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "所有程度" @@ -2906,6 +3075,8 @@ msgstr "舊會員" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "搜查會員" @@ -2946,6 +3117,8 @@ msgstr "%d 會員找到." #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "會員名" @@ -2995,6 +3168,7 @@ msgstr "姓氏" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "付款帳單地址" @@ -3114,6 +3288,7 @@ msgstr "清除訂購有錯." #: adminpages/orders.php:309 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "成功保存訂購." @@ -3133,6 +3308,7 @@ msgstr "訂購時間標志更新有錯." #: adminpages/orders.php:312 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "保存訂購有錯." @@ -3148,6 +3324,7 @@ msgstr "保存訂購有錯." #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "訂購" @@ -3160,6 +3337,7 @@ msgstr "訂購" #: adminpages/orders.php:387 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "新訂購" @@ -3172,6 +3350,7 @@ msgstr "新訂購" #: adminpages/orders.php:433 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "幫助你隨意産生." @@ -3184,6 +3363,7 @@ msgstr "幫助你隨意産生." #: adminpages/orders.php:438 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "會員ID" @@ -3197,6 +3377,8 @@ msgstr "會員ID" #: adminpages/orders.php:451 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "會員會籍程度ID" @@ -3210,6 +3392,7 @@ msgstr "會員會籍程度ID" #: includes/privacy.php:245 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "付款帳名字" @@ -3223,6 +3406,7 @@ msgstr "付款帳名字" #: includes/privacy.php:249 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "付款帳街道名" @@ -3237,6 +3421,7 @@ msgstr "付款帳街道名" #: includes/privacy.php:358 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "付款帳都市名" @@ -3250,6 +3435,7 @@ msgstr "付款帳都市名" #: includes/privacy.php:257 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "付款帳州名" @@ -3265,6 +3451,7 @@ msgstr "付款帳州名" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "付款帳郵政號碼" @@ -3280,6 +3467,7 @@ msgstr "付款帳郵政號碼" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "付款帳" @@ -3294,6 +3482,7 @@ msgstr "付款帳" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "付款帳" @@ -3308,6 +3497,7 @@ msgstr "付款帳" #: adminpages/orders.php:602 #: adminpages/orders.php:597 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "小計部分" @@ -3329,6 +3519,8 @@ msgstr "小計部分" #: adminpages/orders.php:610 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "稅" @@ -3343,6 +3535,7 @@ msgstr "稅" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "禮券數量" @@ -3378,6 +3571,9 @@ msgstr "禮券數量" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "總數" @@ -3401,6 +3597,7 @@ msgstr "應當是小計部分 + 稅 - 禮券數量." #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "付款類型" @@ -3414,6 +3611,7 @@ msgstr "付款類型" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "例如. PayPal Express, PayPal Standard, Credit Card (信用卡)." @@ -3471,6 +3669,9 @@ msgstr "例如. PayPal Express, PayPal Standard, Credit Card (信用卡)." #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "卡類型" @@ -3484,6 +3685,7 @@ msgstr "卡類型" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "例如. Visa, MasterCard, AMEX, etc" @@ -3504,6 +3706,8 @@ msgstr "例如. Visa, MasterCard, AMEX, etc" #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "戶口號碼" @@ -3516,6 +3720,7 @@ msgstr "戶口號碼" #: adminpages/orders.php:698 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "不計最後的4個數字,其也要用少人用的." @@ -3532,6 +3737,7 @@ msgstr "不計最後的4個數字,其也要用少人用的." #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "到期月" @@ -3580,6 +3786,10 @@ msgstr "限期年份" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "狀態" @@ -3606,6 +3816,9 @@ msgstr "狀態" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "網關入口" @@ -3626,6 +3839,8 @@ msgstr "網關入口" #: adminpages/orders.php:787 #: adminpages/orders.php:780 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "網關入口環境" @@ -3649,6 +3864,9 @@ msgstr "網關入口環境" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "沙箱/測試" @@ -3672,6 +3890,9 @@ msgstr "沙箱/測試" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "活起/生產" @@ -3686,6 +3907,7 @@ msgstr "活起/生產" #: includes/privacy.php:321 #: adminpages/orders.php:804 #: adminpages/orders.php:797 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "付款交易身分証明ID" @@ -3699,6 +3921,7 @@ msgstr "付款交易身分証明ID" #: adminpages/orders.php:808 #: adminpages/orders.php:814 #: adminpages/orders.php:807 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "是網關入口生產的. 對訂購有相互參照好處." @@ -3715,6 +3938,8 @@ msgstr "是網關入口生產的. 對訂購有相互參照好處." #: adminpages/orders.php:819 #: adminpages/orders.php:812 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "訂閱交易ID" @@ -3729,6 +3954,7 @@ msgstr "訂閱交易ID" #: adminpages/orders.php:830 #: adminpages/orders.php:822 #: adminpages/orders.php:823 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "是網關入口生產的. 對訂閱有相互參照好處." @@ -3767,6 +3993,8 @@ msgstr "是網關入口生產的. 對訂閱有相互參照好處." #: adminpages/dashboard.php:297 #: adminpages/orders.php:828 #: adminpages/orders.php:1342 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "日期" @@ -3780,6 +4008,7 @@ msgstr "日期" #: adminpages/orders.php:880 #: adminpages/orders.php:872 #: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "聯盟行銷 ID" @@ -3793,6 +4022,7 @@ msgstr "聯盟行銷 ID" #: adminpages/orders.php:893 #: adminpages/orders.php:885 #: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "聯盟行銷輔 ID" @@ -3806,6 +4036,7 @@ msgstr "聯盟行銷輔 ID" #: adminpages/orders.php:929 #: adminpages/orders.php:921 #: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "注意/記錄" @@ -3819,6 +4050,7 @@ msgstr "注意/記錄" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "保存訂購" @@ -3872,6 +4104,8 @@ msgstr "傳送電郵" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "訂購" @@ -3885,6 +4119,7 @@ msgstr "訂購" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "加新訂購" @@ -3897,6 +4132,7 @@ msgstr "加新訂購" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "要在日期價格" @@ -3909,6 +4145,7 @@ msgstr "要在日期價格" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "於先的日期價格" @@ -3921,6 +4158,7 @@ msgstr "於先的日期價格" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "要在程度裏" @@ -3933,6 +4171,7 @@ msgstr "要在程度裏" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "要在狀態裏" @@ -3945,6 +4184,7 @@ msgstr "要在狀態裏" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "從" @@ -3957,6 +4197,7 @@ msgstr "從" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "給向" @@ -3969,6 +4210,7 @@ msgstr "給向" #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "過濾者是 " @@ -3981,6 +4223,7 @@ msgstr "過濾者是 " #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "過濾" @@ -4004,6 +4247,8 @@ msgstr "過濾" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "搜查訂購" @@ -4018,6 +4263,8 @@ msgstr "搜查訂購" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "%d 訂購找到." @@ -4044,6 +4291,7 @@ msgstr "%d 訂購找到." #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "用者" @@ -4096,6 +4344,8 @@ msgstr "用者" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "會員會籍程度" @@ -4121,6 +4371,7 @@ msgstr "會員會籍程度" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "付款" @@ -4135,6 +4386,7 @@ msgstr "付款" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "交易IDs" @@ -4160,6 +4412,8 @@ msgstr "交易IDs" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "清除" @@ -4185,6 +4439,7 @@ msgstr "清除" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "會籍" @@ -4202,6 +4457,7 @@ msgstr "會籍" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "如果進行清除訂購就是永久的, 同時會影響活躍的用者. 你真是要清除訂購 %s?" @@ -4237,6 +4493,7 @@ msgstr "電郵" #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "找不到訂購." @@ -4309,6 +4566,7 @@ msgstr "這個頁昰為你以構造" #: adminpages/pagesettings.php:167 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "要管理WordPress的頁, 就連接在每一個需要的Paid Memberships Pro的頁." @@ -4318,6 +4576,7 @@ msgstr "要管理WordPress的頁, 就連接在每一個需要的Paid Memberships #: adminpages/pagesettings.php:169 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "連接在每一個 WordPress 的頁同需要的Paid Memberships Pro的頁" @@ -4327,6 +4586,7 @@ msgstr "連接在每一個 WordPress 的頁同需要的Paid Memberships Pro的 #: adminpages/pagesettings.php:170 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "點擊這裡我們就可以幫助生產" @@ -4336,6 +4596,7 @@ msgstr "點擊這裡我們就可以幫助生產" #: adminpages/pagesettings.php:186 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "戶口頁" @@ -4382,6 +4643,14 @@ msgstr "戶口頁" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "選擇一個" @@ -4442,6 +4711,16 @@ msgstr "選擇一個" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "編輯改變頁" @@ -4499,6 +4778,15 @@ msgstr "編輯改變頁" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "審視頁面" @@ -4552,6 +4840,12 @@ msgstr "審視頁面" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "包括短密碼" @@ -4563,6 +4857,7 @@ msgstr "包括短密碼" #: adminpages/pagesettings.php:203 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "帳單資料頁面" @@ -4574,6 +4869,7 @@ msgstr "帳單資料頁面" #: adminpages/pagesettings.php:220 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "取消頁面" @@ -4585,6 +4881,7 @@ msgstr "取消頁面" #: adminpages/pagesettings.php:238 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "結帳頁面" @@ -4596,6 +4893,7 @@ msgstr "結帳頁面" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "確認頁面" @@ -4607,6 +4905,7 @@ msgstr "確認頁面" #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "發票頁面" @@ -4618,6 +4917,7 @@ msgstr "發票頁面" #: adminpages/pagesettings.php:292 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "程度頁面" @@ -4625,6 +4925,7 @@ msgstr "程度頁面" #: adminpages/pagesettings.php:391 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "加頁面設定" @@ -4638,6 +4939,9 @@ msgstr "加頁面設定" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "生産頁面" @@ -4658,6 +4962,7 @@ msgstr "您的付款設定以更新了." #: adminpages/paymentsettings.php:127 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "付款網關入口 Gateway" @@ -4668,6 +4973,7 @@ msgstr "付款網關入口 Gateway" #: adminpages/paymentsettings.php:112 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "SSL 設定" @@ -4679,12 +4985,14 @@ msgstr "要學道 If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "Stripe不需要付款帳單地址的欄位. 選擇'No'來藏起這些結帳頁.
如果'No', 你一定要確定在你的Stripe的控制台板設定查証地址是無效的." @@ -7013,6 +7438,7 @@ msgstr "如果要完全配合Stripe, 一定要設定你的Web Hook URL到" #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "訂閱以更新" @@ -7085,6 +7511,7 @@ msgstr "訂閱以更新, 可以允許你在預早時改好你的訂閱數值. #: classes/gateways/class.pmprogateway_stripe.php:2653 #: classes/gateways/class.pmprogateway_stripe.php:2649 #: pages/billing.php:441 +#: classes/gateways/class.pmprogateway_stripe.php:3106 msgid "Update" msgstr "更新" @@ -7107,6 +7534,7 @@ msgstr "更新" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "不可以取消舊訂閱. 不可以取消舊訂閱. 更新没有處理." @@ -7171,6 +7599,8 @@ msgstr "造Stripe的客戶記錄有錯:" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "在Stripe找訂閱有錯:" @@ -7218,6 +7648,8 @@ msgstr "在Stripe找訂閱有錯:" #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "在Stripe建造計劃有錯:" @@ -7260,6 +7692,8 @@ msgstr "在Stripe建造計劃有錯:" #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "在Stripe訂閱客戶到計劃有錯:" @@ -7289,6 +7723,7 @@ msgstr "在Stripe訂閱客戶到計劃有錯:" #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "不可以取消舊訂閱." @@ -7315,6 +7750,7 @@ msgstr "不可以取消舊訂閱." #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "找不到找客戶." @@ -7336,6 +7772,8 @@ msgstr "找不到找客戶." #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "有錯: " @@ -7351,6 +7789,7 @@ msgstr "有錯: " #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 #, php-format msgid "Error: Unkown error while refunding charge #%s" msgstr "提交 #%s退款時有未知的錯誤發生" @@ -7365,6 +7804,7 @@ msgstr "提交 #%s退款時有未知的錯誤發生" #: paid-memberships-pro.php:133 #: paid-memberships-pro.php:135 #: paid-memberships-pro.php:137 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "2Checkout" @@ -7372,24 +7812,28 @@ msgstr "2Checkout" #: classes/gateways/class.pmprogateway_twocheckout.php:108 #: classes/gateways/class.pmprogateway_twocheckout.php:116 #: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "2Checkout 設定" #: classes/gateways/class.pmprogateway_twocheckout.php:123 #: classes/gateways/class.pmprogateway_twocheckout.php:125 #: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "去到Account » 在2Checkout的User Management 然後用API Access造用者和API 更新." #: classes/gateways/class.pmprogateway_twocheckout.php:132 #: classes/gateways/class.pmprogateway_twocheckout.php:134 #: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "API 用者密碼以造好了." #: classes/gateways/class.pmprogateway_twocheckout.php:141 #: classes/gateways/class.pmprogateway_twocheckout.php:152 #: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "在2Checkout要找出你的戶口號碼請點擊檔案圖示." @@ -7399,12 +7843,14 @@ msgstr "在2Checkout要找出你的戶口號碼請點擊檔案圖示." #: classes/gateways/class.pmprogateway_twocheckout.php:137 #: classes/gateways/class.pmprogateway_twocheckout.php:157 #: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "秘密字" #: classes/gateways/class.pmprogateway_twocheckout.php:150 #: classes/gateways/class.pmprogateway_twocheckout.php:161 #: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "去到Account » Site Management. 看下Checkout Options來找秘密字." @@ -7415,12 +7861,14 @@ msgstr "去到Account » Site Management. 看下Checkout Options來找秘 #: classes/gateways/class.pmprogateway_twocheckout.php:145 #: classes/gateways/class.pmprogateway_twocheckout.php:166 #: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "TwoCheckout INS URL" #: classes/gateways/class.pmprogateway_twocheckout.php:158 #: classes/gateways/class.pmprogateway_twocheckout.php:169 #: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "要完全配合2Checkout, 一定要用你的 INS URL 和 Approved URL" @@ -7428,6 +7876,7 @@ msgstr "要完全配合2Checkout, 一定要用你的 INS URL 和 Approved URL" #: classes/gateways/class.pmprogateway_twocheckout.php:192 #: classes/gateways/class.pmprogateway_twocheckout.php:214 #: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "同2Checkout結帳" @@ -8613,6 +9062,7 @@ msgstr "和" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "馬上報名加入到 !!name!!啊" @@ -8668,6 +9118,9 @@ msgstr "請明確指出程度 id." #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "無" @@ -8679,6 +9132,7 @@ msgstr "您的牌照鎖匙已經認可了." #: includes/license.php:81 #: adminpages/license.php:43 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "Paid Memberships Pro 支援牌照" @@ -8699,6 +9153,7 @@ msgstr "參觀PMPro
謝謝您! 在這個網站一個確鑿的 %s #: adminpages/license.php:59 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "輸入牌照鎖匙在這裏..." @@ -8832,6 +9288,8 @@ msgstr "現行的程度" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "不付費." @@ -8962,6 +9420,9 @@ msgstr "登出" #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "程度" @@ -9048,6 +9509,7 @@ msgstr "您的會籍付款是給PayPal管理. 請 Join Now" msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -11161,93 +11664,111 @@ msgstr "" #: adminpages/advancedsettings.php:186 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" #: adminpages/advancedsettings.php:263 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" #: adminpages/advancedsettings.php:267 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" #: adminpages/advancedsettings.php:273 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" #: adminpages/advancedsettings.php:286 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" #: adminpages/advancedsettings.php:290 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" #: adminpages/advancedsettings.php:293 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" #: adminpages/advancedsettings.php:297 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" #: adminpages/advancedsettings.php:473 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" #: adminpages/advancedsettings.php:478 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" @@ -11273,6 +11794,7 @@ msgstr "" #: adminpages/dashboard.php:113 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -11343,6 +11865,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -11448,6 +11971,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -11486,6 +12010,7 @@ msgstr "" #: adminpages/discountcodes.php:622 #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -11498,31 +12023,39 @@ msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 msgid "%d discount codes found." msgstr "" @@ -11548,6 +12081,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -11566,6 +12106,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -11574,15 +12120,18 @@ msgid " View Orders" msgstr "" #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -11623,192 +12172,241 @@ msgid "Recommended: Leave unchecked. Members will still get an email confirmatio msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:960 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:170 #: includes/privacy.php:363 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -11826,6 +12424,7 @@ msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -11833,14 +12432,17 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" #: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" #: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" @@ -11857,27 +12459,34 @@ msgid "WARNING: This level is set with both a recurring billing amount and an ex msgstr "" #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" #: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -11887,6 +12496,8 @@ msgstr "" #: includes/profile.php:85 #: adminpages/orders.php:860 #: adminpages/orders.php:861 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -11894,6 +12505,7 @@ msgstr "" #: adminpages/orders.php:914 #: adminpages/orders.php:906 #: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -11901,6 +12513,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -11908,6 +12521,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -11915,6 +12529,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -11922,6 +12537,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -11929,6 +12545,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -11967,78 +12584,91 @@ msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" #: adminpages/pagesettings.php:199 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" #: adminpages/pagesettings.php:216 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" #: adminpages/pagesettings.php:233 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" #: adminpages/pagesettings.php:251 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" #: adminpages/pagesettings.php:287 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" #: adminpages/pagesettings.php:305 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" #: adminpages/pagesettings.php:315 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -12048,12 +12678,15 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -12061,18 +12694,21 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" @@ -12082,11 +12718,13 @@ msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" #: adminpages/paymentsettings.php:142 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" @@ -12122,6 +12760,7 @@ msgstr "" #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:967 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -12132,6 +12771,7 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" @@ -12174,21 +12814,25 @@ msgid "Logins This Year" msgstr "" #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" #: adminpages/reports/memberships.php:377 #: adminpages/reports/sales.php:334 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -12347,51 +12991,63 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" #: classes/class.memberorder.php:962 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" #: classes/class.memberorder.php:968 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -12404,6 +13060,8 @@ msgstr "" #: includes/email.php:465 #: classes/class.pmproemail.php:898 #: classes/class.pmproemail.php:943 +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 msgid "The new level is %s." msgstr "" @@ -12416,30 +13074,36 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -12448,10 +13112,12 @@ msgid "Attempting to load Braintree gateway: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" @@ -12465,21 +13131,30 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:750 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:933 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:948 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -12487,11 +13162,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1029 #: classes/gateways/class.pmprogateway_braintree.php:1021 #: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -12769,11 +13447,13 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -12782,6 +13462,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -12790,6 +13471,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -12805,6 +13487,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -12813,6 +13496,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -12824,6 +13508,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -12835,6 +13520,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -12846,6 +13532,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -12854,6 +13541,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -12865,6 +13553,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -12876,6 +13565,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -12884,6 +13574,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -12895,6 +13586,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -12903,6 +13595,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -12926,6 +13619,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -12942,6 +13637,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -12950,6 +13647,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -12958,6 +13656,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -12966,6 +13665,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -12973,6 +13673,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -12981,6 +13682,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -12994,6 +13696,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 #: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -13002,6 +13706,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -13010,6 +13715,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -13019,6 +13725,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -13036,6 +13744,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -13044,6 +13754,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -13065,6 +13776,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:378 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -13073,6 +13786,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -13081,6 +13795,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -13089,6 +13804,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -13097,6 +13813,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -13105,6 +13822,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -13113,6 +13831,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -13121,6 +13840,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -13129,6 +13849,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -13137,6 +13858,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -13145,6 +13867,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 #: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -13157,6 +13880,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -13165,6 +13889,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -13173,6 +13898,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -13181,6 +13907,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -13189,6 +13916,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -13224,6 +13952,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -13244,6 +13973,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -13252,6 +13985,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -13261,6 +13995,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -13270,6 +14005,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -13281,6 +14017,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -13292,6 +14029,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -13303,6 +14041,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -13314,6 +14053,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" @@ -13348,6 +14088,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -13360,6 +14101,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -13372,6 +14114,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -15162,14 +15905,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -15178,18 +15924,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -15201,6 +15951,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -15328,6 +16079,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -15441,6 +16193,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -15448,6 +16201,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -15479,6 +16233,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -15488,6 +16243,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -15495,6 +16251,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -15594,6 +16351,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -15601,6 +16360,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -15608,6 +16368,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -15615,6 +16376,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -15686,126 +16448,148 @@ msgstr "" #: includes/profile.php:58 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -15817,6 +16601,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -15902,6 +16689,7 @@ msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -15927,6 +16715,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -15965,6 +16754,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -15980,6 +16784,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -15995,6 +16800,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -16027,6 +16833,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -16039,6 +16846,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -16064,11 +16872,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -16076,6 +16889,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -16083,6 +16897,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -16105,6 +16920,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -16130,6 +16946,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -16137,6 +16954,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -16169,6 +16987,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -16191,6 +17010,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -16201,11 +17021,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -16225,6 +17056,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -16238,6 +17070,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -16247,6 +17080,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -16256,10 +17090,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -16270,6 +17106,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -16277,6 +17114,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -16286,6 +17124,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -16295,12 +17134,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -16308,6 +17150,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -16316,6 +17160,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -16323,6 +17168,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -16330,22 +17176,26 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -16403,12 +17253,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -16418,6 +17270,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -16427,6 +17280,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -16436,54 +17290,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -16494,42 +17358,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -16544,51 +17418,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -16596,6 +17482,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -16603,6 +17490,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -16610,6 +17498,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -16618,6 +17507,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -16631,6 +17522,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -16651,19 +17543,23 @@ msgid "PMPro Builder" msgstr "" #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -16673,31 +17569,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -16723,21 +17627,25 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" @@ -16807,26 +17715,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -16835,51 +17749,62 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -16893,19 +17818,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -16936,3 +17865,762 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro.mo b/languages/paid-memberships-pro.mo index cd8a9463b..68c81b17d 100644 Binary files a/languages/paid-memberships-pro.mo and b/languages/paid-memberships-pro.mo differ diff --git a/languages/paid-memberships-pro.po b/languages/paid-memberships-pro.po index d0654ad6d..2e5f0399f 100644 --- a/languages/paid-memberships-pro.po +++ b/languages/paid-memberships-pro.po @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:20:02+00:00\n" +"POT-Creation-Date: 2022-05-05T20:36:54+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -123,6 +123,7 @@ msgstr "" #: adminpages/orders.php:1014 #: includes/metaboxes.php:19 #: adminpages/orders.php:1015 +#: adminpages/orders.php:1103 msgid "All" msgstr "" @@ -184,6 +185,7 @@ msgstr "" #: adminpages/membershiplevels.php:334 #: adminpages/membershiplevels.php:356 #: adminpages/membershiplevels.php:358 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "" @@ -323,6 +325,11 @@ msgstr "" #: adminpages/orders.php:1419 #: adminpages/orders.php:1418 #: adminpages/orders.php:1420 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "" @@ -438,6 +445,18 @@ msgstr "" #: adminpages/orders.php:583 #: adminpages/orders.php:1537 #: adminpages/orders.php:1546 +#: adminpages/orders.php:704 +#: adminpages/orders.php:996 +#: adminpages/orders.php:1689 +#: adminpages/orders.php:1698 +#: classes/class.pmproemail.php:261 +#: classes/class.pmproemail.php:327 +#: includes/profile.php:167 +#: includes/profile.php:483 +#: includes/profile.php:484 +#: includes/profile.php:556 +#: includes/profile.php:557 +#: includes/profile.php:558 msgid "N/A" msgstr "" @@ -599,6 +618,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:76 #: classes/gateways/class.pmprogateway_stripe.php:82 #: classes/gateways/class.pmprogateway_stripe.php:1338 +#: classes/gateways/class.pmprogateway_stripe.php:1463 #, php-format msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade." msgstr "" @@ -676,6 +696,7 @@ msgstr "" #: includes/adminpages.php:52 #: includes/adminpages.php:158 #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Members" msgstr "" @@ -728,6 +749,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:77 #: adminpages/orders.php:970 #: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 msgid "Orders" msgstr "" @@ -803,6 +826,7 @@ msgstr "" #: adminpages/admin_header.php:253 #: adminpages/discountcodes.php:788 #: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "" @@ -1014,6 +1038,11 @@ msgstr "" #: adminpages/orders.php:392 #: adminpages/orders.php:1438 #: adminpages/orders.php:1441 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 msgid "Email" msgstr "" @@ -1084,6 +1113,7 @@ msgstr "" #: adminpages/admin_header.php:277 #: includes/adminpages.php:73 #: adminpages/advancedsettings.php:134 +#: adminpages/advancedsettings.php:142 msgid "Advanced Settings" msgstr "" @@ -1120,6 +1150,7 @@ msgstr "" #: adminpages/advancedsettings.php:62 #: adminpages/advancedsettings.php:67 #: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "" @@ -1127,6 +1158,7 @@ msgstr "" #: includes/updates/upgrade_1.php:7 #: adminpages/advancedsettings.php:104 #: adminpages/advancedsettings.php:108 +#: adminpages/advancedsettings.php:116 #, php-format msgid "This content is for !!levels!! members only.
Join Now" msgstr "" @@ -1134,6 +1166,7 @@ msgstr "" #: adminpages/advancedsettings.php:111 #: adminpages/advancedsettings.php:109 #: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 #, php-format msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" @@ -1148,40 +1181,47 @@ msgstr "" #: adminpages/advancedsettings.php:99 #: adminpages/advancedsettings.php:114 #: adminpages/advancedsettings.php:118 +#: adminpages/advancedsettings.php:126 msgid "This content is for members only. Visit the site and log in/register to read." msgstr "" #: adminpages/advancedsettings.php:135 #: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:138 #: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" #: adminpages/advancedsettings.php:143 #: adminpages/advancedsettings.php:141 #: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" #: adminpages/advancedsettings.php:148 #: adminpages/advancedsettings.php:146 #: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:149 #: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" #: adminpages/advancedsettings.php:159 #: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" @@ -1195,6 +1235,7 @@ msgstr "" #: adminpages/advancedsettings.php:118 #: adminpages/advancedsettings.php:162 #: adminpages/advancedsettings.php:166 +#: adminpages/advancedsettings.php:173 msgid "Message for Logged-in Non-members" msgstr "" @@ -1208,6 +1249,7 @@ msgstr "" #: adminpages/advancedsettings.php:122 #: adminpages/advancedsettings.php:166 #: adminpages/advancedsettings.php:170 +#: adminpages/advancedsettings.php:177 msgid "This message replaces the post content for non-members. Available variables" msgstr "" @@ -1221,6 +1263,7 @@ msgstr "" #: adminpages/advancedsettings.php:127 #: adminpages/advancedsettings.php:171 #: adminpages/advancedsettings.php:175 +#: adminpages/advancedsettings.php:182 msgid "Message for Logged-out Users" msgstr "" @@ -1230,6 +1273,7 @@ msgstr "" #: adminpages/advancedsettings.php:184 #: adminpages/advancedsettings.php:179 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" @@ -1243,6 +1287,7 @@ msgstr "" #: adminpages/advancedsettings.php:131 #: adminpages/advancedsettings.php:175 #: adminpages/advancedsettings.php:179 +#: adminpages/advancedsettings.php:186 msgid "This message replaces the post content for logged-out visitors." msgstr "" @@ -1256,6 +1301,7 @@ msgstr "" #: adminpages/advancedsettings.php:136 #: adminpages/advancedsettings.php:180 #: adminpages/advancedsettings.php:184 +#: adminpages/advancedsettings.php:191 msgid "Message for RSS Feed" msgstr "" @@ -1269,6 +1315,7 @@ msgstr "" #: adminpages/advancedsettings.php:140 #: adminpages/advancedsettings.php:184 #: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "This message replaces the post content in RSS feeds." msgstr "" @@ -1293,6 +1340,8 @@ msgstr "" #: adminpages/membershiplevels.php:608 #: adminpages/membershiplevels.php:624 #: adminpages/advancedsettings.php:196 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "" @@ -1305,6 +1354,7 @@ msgstr "" #: adminpages/advancedsettings.php:151 #: adminpages/advancedsettings.php:197 #: adminpages/advancedsettings.php:201 +#: adminpages/advancedsettings.php:208 msgid "Filter searches and archives?" msgstr "" @@ -1317,6 +1367,7 @@ msgstr "" #: adminpages/advancedsettings.php:155 #: adminpages/advancedsettings.php:201 #: adminpages/advancedsettings.php:205 +#: adminpages/advancedsettings.php:212 msgid "No - Non-members will see restricted posts/pages in searches and archives." msgstr "" @@ -1329,6 +1380,7 @@ msgstr "" #: adminpages/advancedsettings.php:156 #: adminpages/advancedsettings.php:202 #: adminpages/advancedsettings.php:206 +#: adminpages/advancedsettings.php:213 msgid "Yes - Only members will see restricted posts/pages in searches and archives." msgstr "" @@ -1343,6 +1395,7 @@ msgstr "" #: adminpages/advancedsettings.php:162 #: adminpages/advancedsettings.php:208 #: adminpages/advancedsettings.php:212 +#: adminpages/advancedsettings.php:219 msgid "Show Excerpts to Non-Members?" msgstr "" @@ -1357,6 +1410,7 @@ msgstr "" #: adminpages/advancedsettings.php:166 #: adminpages/advancedsettings.php:212 #: adminpages/advancedsettings.php:216 +#: adminpages/advancedsettings.php:223 msgid "No - Hide excerpts." msgstr "" @@ -1371,11 +1425,13 @@ msgstr "" #: adminpages/advancedsettings.php:167 #: adminpages/advancedsettings.php:213 #: adminpages/advancedsettings.php:217 +#: adminpages/advancedsettings.php:224 msgid "Yes - Show excerpts." msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" @@ -1418,6 +1474,7 @@ msgstr "" #: adminpages/advancedsettings.php:236 #: adminpages/advancedsettings.php:239 #: adminpages/advancedsettings.php:256 +#: adminpages/advancedsettings.php:263 msgid "Use reCAPTCHA?" msgstr "" @@ -1551,6 +1608,16 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:404 #: classes/gateways/class.pmprogateway_stripe.php:418 #: adminpages/paymentsettings.php:279 +#: adminpages/advancedsettings.php:254 +#: adminpages/advancedsettings.php:267 +#: adminpages/advancedsettings.php:359 +#: adminpages/advancedsettings.php:418 +#: adminpages/advancedsettings.php:526 +#: adminpages/membershiplevels.php:939 +#: adminpages/paymentsettings.php:277 +#: classes/gateways/class.pmprogateway_stripe.php:430 +#: classes/gateways/class.pmprogateway_stripe.php:444 +#: includes/profile.php:78 msgid "No" msgstr "" @@ -1578,6 +1645,7 @@ msgstr "" #: adminpages/advancedsettings.php:242 #: adminpages/advancedsettings.php:245 #: adminpages/advancedsettings.php:262 +#: adminpages/advancedsettings.php:269 msgid "Yes - All memberships." msgstr "" @@ -1592,6 +1660,7 @@ msgstr "" #: adminpages/advancedsettings.php:244 #: adminpages/advancedsettings.php:247 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "A free reCAPTCHA key is required." msgstr "" @@ -1606,6 +1675,7 @@ msgstr "" #: adminpages/advancedsettings.php:244 #: adminpages/advancedsettings.php:247 #: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "Click here to signup for reCAPTCHA" msgstr "" @@ -1615,6 +1685,7 @@ msgstr "" #: adminpages/advancedsettings.php:250 #: adminpages/advancedsettings.php:255 #: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" @@ -1624,6 +1695,7 @@ msgstr "" #: adminpages/advancedsettings.php:252 #: adminpages/advancedsettings.php:258 #: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" @@ -1633,6 +1705,7 @@ msgstr "" #: adminpages/advancedsettings.php:253 #: adminpages/advancedsettings.php:259 #: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" @@ -1642,6 +1715,7 @@ msgstr "" #: adminpages/advancedsettings.php:255 #: adminpages/advancedsettings.php:261 #: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" @@ -1652,6 +1726,7 @@ msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:265 #: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" @@ -1662,11 +1737,13 @@ msgstr "" #: adminpages/advancedsettings.php:260 #: adminpages/advancedsettings.php:271 #: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" #: adminpages/advancedsettings.php:283 #: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" @@ -1674,6 +1751,7 @@ msgstr "" #: adminpages/advancedsettings.php:246 #: adminpages/advancedsettings.php:284 #: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" @@ -1681,6 +1759,7 @@ msgstr "" #: adminpages/advancedsettings.php:250 #: adminpages/advancedsettings.php:288 #: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" @@ -1688,6 +1767,7 @@ msgstr "" #: adminpages/advancedsettings.php:253 #: adminpages/advancedsettings.php:291 #: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" @@ -1695,12 +1775,14 @@ msgstr "" #: adminpages/advancedsettings.php:257 #: adminpages/advancedsettings.php:295 #: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" #: adminpages/advancedsettings.php:302 #: adminpages/advancedsettings.php:300 #: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" @@ -1724,12 +1806,15 @@ msgstr "" #: adminpages/reports/sales.php:290 #: adminpages/advancedsettings.php:322 #: adminpages/reports/sales.php:313 +#: adminpages/advancedsettings.php:329 +#: adminpages/reports/memberships.php:332 msgid "Daily" msgstr "" #: adminpages/advancedsettings.php:310 #: adminpages/advancedsettings.php:308 #: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" @@ -1753,6 +1838,8 @@ msgstr "" #: adminpages/reports/sales.php:291 #: adminpages/advancedsettings.php:328 #: adminpages/reports/sales.php:314 +#: adminpages/advancedsettings.php:335 +#: adminpages/reports/memberships.php:333 msgid "Monthly" msgstr "" @@ -1765,12 +1852,15 @@ msgstr "" #: includes/profile.php:515 #: includes/profile.php:511 #: adminpages/advancedsettings.php:331 +#: adminpages/advancedsettings.php:338 +#: includes/profile.php:551 msgid "Never" msgstr "" #: adminpages/advancedsettings.php:320 #: adminpages/advancedsettings.php:318 #: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" @@ -1795,6 +1885,7 @@ msgstr "" #: adminpages/membershiplevels.php:537 #: adminpages/membershiplevels.php:541 #: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 msgid "Other Settings" msgstr "" @@ -1807,6 +1898,7 @@ msgstr "" #: adminpages/advancedsettings.php:224 #: adminpages/advancedsettings.php:331 #: adminpages/advancedsettings.php:348 +#: adminpages/advancedsettings.php:355 msgid "Hide Ads From Members?" msgstr "" @@ -1821,6 +1913,7 @@ msgstr "" #: adminpages/advancedsettings.php:229 #: adminpages/advancedsettings.php:336 #: adminpages/advancedsettings.php:353 +#: adminpages/advancedsettings.php:360 msgid "Hide Ads From All Members" msgstr "" @@ -1835,6 +1928,7 @@ msgstr "" #: adminpages/advancedsettings.php:230 #: adminpages/advancedsettings.php:337 #: adminpages/advancedsettings.php:354 +#: adminpages/advancedsettings.php:361 msgid "Hide Ads From Certain Members" msgstr "" @@ -1849,6 +1943,7 @@ msgstr "" #: adminpages/advancedsettings.php:238 #: adminpages/advancedsettings.php:345 #: adminpages/advancedsettings.php:361 +#: adminpages/advancedsettings.php:368 msgid "To hide ads in your template code, use code like the following" msgstr "" @@ -1863,6 +1958,7 @@ msgstr "" #: adminpages/advancedsettings.php:262 #: adminpages/advancedsettings.php:354 #: adminpages/advancedsettings.php:370 +#: adminpages/advancedsettings.php:377 msgid "Choose Levels to Hide Ads From" msgstr "" @@ -1895,6 +1991,7 @@ msgstr "" #: adminpages/advancedsettings.php:389 #: adminpages/advancedsettings.php:392 #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "multisite only" msgstr "" @@ -2004,6 +2101,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:406 #: classes/gateways/class.pmprogateway_stripe.php:420 #: adminpages/paymentsettings.php:280 +#: adminpages/advancedsettings.php:419 +#: adminpages/membershiplevels.php:934 +#: adminpages/paymentsettings.php:278 +#: classes/gateways/class.pmprogateway_stripe.php:432 +#: classes/gateways/class.pmprogateway_stripe.php:446 +#: includes/profile.php:79 msgid "Yes" msgstr "" @@ -2012,6 +2115,7 @@ msgstr "" #: adminpages/advancedsettings.php:472 #: adminpages/advancedsettings.php:475 #: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" @@ -2020,12 +2124,14 @@ msgstr "" #: adminpages/advancedsettings.php:477 #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" #: adminpages/advancedsettings.php:480 #: adminpages/advancedsettings.php:479 #: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" @@ -2070,6 +2176,9 @@ msgstr "" #: adminpages/pagesettings.php:508 #: adminpages/pagesettings.php:512 #: adminpages/paymentsettings.php:316 +#: adminpages/advancedsettings.php:574 +#: adminpages/pagesettings.php:511 +#: adminpages/paymentsettings.php:314 msgid "Save Settings" msgstr "" @@ -2137,6 +2246,7 @@ msgstr "" #: adminpages/membershiplevels.php:747 #: adminpages/membershiplevels.php:751 #: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -2206,6 +2316,7 @@ msgstr "" #: includes/license.php:94 #: adminpages/dashboard.php:178 #: adminpages/license.php:41 +#: adminpages/license.php:53 msgid "Your license is invalid or expired." msgstr "" @@ -2223,6 +2334,7 @@ msgstr "" #: adminpages/license.php:43 #: adminpages/dashboard.php:183 #: adminpages/license.php:45 +#: adminpages/license.php:57 #, php-format msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -2360,6 +2472,8 @@ msgstr "" #: adminpages/dashboard.php:225 #: classes/class.memberorder.php:1003 #: adminpages/reports/login.php:183 +#: adminpages/emailtemplates.php:122 +#: classes/class.memberorder.php:1012 msgid "Username" msgstr "" @@ -2436,6 +2550,9 @@ msgstr "" #: adminpages/dashboard.php:294 #: adminpages/orders.php:1336 #: adminpages/reports/login.php:185 +#: adminpages/orders.php:1429 +#: includes/profile.php:451 +#: includes/profile.php:536 msgid "Level" msgstr "" @@ -2503,6 +2620,8 @@ msgstr "" #: includes/profile.php:65 #: adminpages/dashboard.php:228 #: adminpages/reports/login.php:187 +#: adminpages/discountcodes.php:789 +#: includes/profile.php:75 msgid "Expires" msgstr "" @@ -2607,6 +2726,9 @@ msgstr "" #: adminpages/dashboard.php:292 #: adminpages/orders.php:429 #: adminpages/orders.php:1333 +#: adminpages/discountcodes.php:787 +#: adminpages/orders.php:475 +#: adminpages/orders.php:1426 msgid "Code" msgstr "" @@ -2640,6 +2762,7 @@ msgstr "" #: adminpages/orders.php:1333 #: adminpages/dashboard.php:293 #: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 msgid "User" msgstr "" @@ -2707,6 +2830,9 @@ msgstr "" #: adminpages/orders.php:646 #: adminpages/orders.php:1337 #: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 msgid "Total" msgstr "" @@ -2766,6 +2892,10 @@ msgstr "" #: adminpages/orders.php:1340 #: adminpages/dashboard.php:296 #: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 +#: includes/profile.php:455 +#: includes/profile.php:541 msgid "Status" msgstr "" @@ -2832,6 +2962,8 @@ msgstr "" #: adminpages/orders.php:1341 #: adminpages/dashboard.php:297 #: adminpages/orders.php:1342 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 msgid "Date" msgstr "" @@ -2862,6 +2994,7 @@ msgstr "" #: adminpages/orders.php:1568 #: adminpages/dashboard.php:304 #: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "" @@ -2902,6 +3035,8 @@ msgstr "" #: adminpages/dashboard.php:336 #: adminpages/orders.php:1476 #: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "" @@ -2934,6 +3069,7 @@ msgstr "" #: adminpages/dashboard.php:338 #: adminpages/orders.php:1478 #: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -3097,6 +3233,7 @@ msgstr "" #: adminpages/discountcodes.php:796 #: adminpages/discountcodes.php:354 #: adminpages/discountcodes.php:798 +#: adminpages/discountcodes.php:799 msgid "Code not found." msgstr "" @@ -3144,6 +3281,7 @@ msgstr "" #: adminpages/discountcodes.php:735 #: adminpages/discountcodes.php:377 #: adminpages/discountcodes.php:737 +#: adminpages/discountcodes.php:738 msgid "Add New Discount Code" msgstr "" @@ -3241,6 +3379,8 @@ msgstr "" #: adminpages/reports/login.php:182 #: adminpages/templates/orders-email.php:49 #: adminpages/templates/orders-print.php:78 +#: adminpages/membershiplevels.php:345 +#: adminpages/membershiplevels.php:805 msgid "ID" msgstr "" @@ -3290,6 +3430,7 @@ msgstr "" #: adminpages/discountcodes.php:489 #: includes/profile.php:501 #: includes/profile.php:497 +#: includes/profile.php:537 msgid "Start Date" msgstr "" @@ -3382,6 +3523,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1326 #: classes/gateways/class.pmprogateway_stripe.php:785 #: pages/billing.php:381 +#: classes/gateways/class.pmprogateway_stripe.php:893 msgid "Expiration Date" msgstr "" @@ -3410,6 +3552,7 @@ msgstr "" #: adminpages/discountcodes.php:787 #: adminpages/discountcodes.php:525 #: adminpages/discountcodes.php:789 +#: adminpages/discountcodes.php:790 msgid "Uses" msgstr "" @@ -3463,6 +3606,7 @@ msgstr "" #: adminpages/membershiplevels.php:542 #: pages/levels.php:14 #: adminpages/discountcodes.php:576 +#: adminpages/membershiplevels.php:399 msgid "Initial Payment" msgstr "" @@ -3488,6 +3632,7 @@ msgstr "" #: adminpages/membershiplevels.php:409 #: adminpages/membershiplevels.php:411 #: adminpages/discountcodes.php:587 +#: adminpages/membershiplevels.php:410 msgid "The initial amount collected at registration." msgstr "" @@ -3616,6 +3761,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2696 #: classes/gateways/class.pmprogateway_stripe.php:2698 #: classes/gateways/class.pmprogateway_stripe.php:2694 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "" @@ -3704,6 +3850,9 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2637 #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2635 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3092 msgid "Day(s)" msgstr "" @@ -3792,6 +3941,9 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2639 #: classes/gateways/class.pmprogateway_stripe.php:2641 #: classes/gateways/class.pmprogateway_stripe.php:2637 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3094 msgid "Month(s)" msgstr "" @@ -3880,6 +4032,9 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2638 #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2636 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3093 msgid "Week(s)" msgstr "" @@ -3968,6 +4123,9 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2640 #: classes/gateways/class.pmprogateway_stripe.php:2642 #: classes/gateways/class.pmprogateway_stripe.php:2638 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3095 msgid "Year(s)" msgstr "" @@ -4018,6 +4176,7 @@ msgstr "" #: adminpages/membershiplevels.php:450 #: adminpages/discountcodes.php:621 #: adminpages/discountcodes.php:624 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" @@ -4133,6 +4292,8 @@ msgstr "" #: adminpages/membershiplevels.php:485 #: adminpages/membershiplevels.php:486 #: adminpages/discountcodes.php:653 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "" @@ -4163,6 +4324,8 @@ msgstr "" #: adminpages/membershiplevels.php:487 #: adminpages/membershiplevels.php:488 #: adminpages/discountcodes.php:655 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "" @@ -4182,6 +4345,8 @@ msgstr "" #: adminpages/membershiplevels.php:490 #: adminpages/membershiplevels.php:491 #: adminpages/discountcodes.php:657 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "" @@ -4213,6 +4378,7 @@ msgstr "" #: adminpages/membershiplevels.php:507 #: adminpages/membershiplevels.php:508 #: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 msgid "Trial Billing Amount" msgstr "" @@ -4244,6 +4410,7 @@ msgstr "" #: adminpages/membershiplevels.php:518 #: adminpages/membershiplevels.php:519 #: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 msgid "for the first" msgstr "" @@ -4275,6 +4442,7 @@ msgstr "" #: adminpages/membershiplevels.php:520 #: adminpages/membershiplevels.php:521 #: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 msgid "subscription payments" msgstr "" @@ -4295,6 +4463,7 @@ msgstr "" #: adminpages/membershiplevels.php:522 #: adminpages/membershiplevels.php:523 #: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "" @@ -4316,6 +4485,7 @@ msgstr "" #: adminpages/membershiplevels.php:524 #: adminpages/membershiplevels.php:525 #: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "" @@ -4337,6 +4507,7 @@ msgstr "" #: adminpages/membershiplevels.php:526 #: adminpages/membershiplevels.php:527 #: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "" @@ -4371,6 +4542,7 @@ msgstr "" #: adminpages/membershiplevels.php:546 #: adminpages/membershiplevels.php:550 #: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 msgid "Membership Expiration" msgstr "" @@ -4404,6 +4576,7 @@ msgstr "" #: adminpages/membershiplevels.php:547 #: adminpages/membershiplevels.php:551 #: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 msgid "Check this to set when membership access expires." msgstr "" @@ -4439,6 +4612,8 @@ msgstr "" #: adminpages/membershiplevels.php:566 #: pages/confirmation.php:140 #: adminpages/discountcodes.php:693 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 msgid "Expires In" msgstr "" @@ -4474,6 +4649,8 @@ msgstr "" #: adminpages/discountcodes.php:707 #: adminpages/membershiplevels.php:586 #: adminpages/discountcodes.php:709 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "" @@ -4490,6 +4667,7 @@ msgstr "" #: adminpages/discountcodes.php:731 #: adminpages/discountcodes.php:734 #: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "" @@ -4497,6 +4675,7 @@ msgstr "" #: adminpages/discountcodes.php:751 #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" @@ -4507,6 +4686,7 @@ msgstr "" #: adminpages/discountcodes.php:752 #: adminpages/discountcodes.php:755 #: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" @@ -4514,6 +4694,7 @@ msgstr "" #: adminpages/discountcodes.php:753 #: adminpages/discountcodes.php:756 #: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" @@ -4521,6 +4702,7 @@ msgstr "" #: adminpages/discountcodes.php:754 #: adminpages/discountcodes.php:757 #: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" @@ -4532,6 +4714,8 @@ msgstr "" #: adminpages/discountcodes.php:763 #: adminpages/discountcodes.php:766 #: adminpages/discountcodes.php:768 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 #, php-format msgid "%d discount codes found." msgstr "" @@ -4593,6 +4777,7 @@ msgstr "" #: adminpages/discountcodes.php:782 #: adminpages/discountcodes.php:785 #: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "" @@ -4643,6 +4828,13 @@ msgstr "" #: adminpages/orders.php:1398 #: adminpages/orders.php:1389 #: adminpages/orders.php:1399 +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" @@ -4684,6 +4876,12 @@ msgstr "" #: adminpages/orders.php:1413 #: adminpages/orders.php:1403 #: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" @@ -4724,6 +4922,7 @@ msgstr "" #: adminpages/emailsettings.php:85 #: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" @@ -4733,6 +4932,7 @@ msgstr "" #: adminpages/emailsettings.php:80 #: adminpages/emailsettings.php:84 #: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "" @@ -4741,6 +4941,7 @@ msgstr "" #: adminpages/emailsettings.php:78 #: adminpages/emailsettings.php:88 #: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "" @@ -4749,6 +4950,7 @@ msgstr "" #: adminpages/emailsettings.php:86 #: adminpages/emailsettings.php:96 #: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "" @@ -4756,6 +4958,7 @@ msgstr "" #: adminpages/emailsettings.php:94 #: adminpages/emailsettings.php:104 #: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "" @@ -4763,6 +4966,7 @@ msgstr "" #: adminpages/emailsettings.php:98 #: adminpages/emailsettings.php:108 #: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 #, php-format msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "" @@ -4771,6 +4975,7 @@ msgstr "" #: adminpages/emailsettings.php:204 #: adminpages/emailsettings.php:119 #: adminpages/emailsettings.php:173 +#: adminpages/emailsettings.php:118 msgid "Save All Settings" msgstr "" @@ -4785,6 +4990,7 @@ msgstr "" #: adminpages/emailsettings.php:134 #: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" @@ -4970,6 +5176,7 @@ msgstr "" #: includes/license.php:83 #: includes/license.php:84 #: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "" @@ -4992,12 +5199,14 @@ msgstr "" #: includes/license.php:103 #: adminpages/license.php:51 #: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "" #: adminpages/license.php:61 #: adminpages/license.php:53 #: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" @@ -5005,6 +5214,7 @@ msgstr "" #: adminpages/license.php:87 #: adminpages/license.php:86 #: adminpages/license.php:92 +#: adminpages/license.php:94 #, php-format msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" @@ -5015,6 +5225,7 @@ msgstr "" #: adminpages/license.php:103 #: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" @@ -5153,6 +5364,8 @@ msgstr "" #: adminpages/membershiplevels.php:808 #: adminpages/reports/history.php:184 #: adminpages/reports/login.php:184 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 msgid "Name" msgstr "" @@ -5164,12 +5377,14 @@ msgstr "" #: adminpages/membershiplevels.php:352 #: adminpages/membershiplevels.php:374 #: adminpages/membershiplevels.php:376 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "" #: adminpages/membershiplevels.php:391 #: adminpages/membershiplevels.php:388 #: adminpages/membershiplevels.php:390 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" @@ -5202,6 +5417,8 @@ msgstr "" #: adminpages/membershiplevels.php:777 #: adminpages/membershiplevels.php:781 #: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "" @@ -5355,6 +5572,7 @@ msgstr "" #: adminpages/membershiplevels.php:620 #: adminpages/membershiplevels.php:624 #: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 #, php-format msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" @@ -5368,6 +5586,7 @@ msgstr "" #: adminpages/membershiplevels.php:624 #: adminpages/membershiplevels.php:628 #: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 #, php-format msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" @@ -5381,6 +5600,7 @@ msgstr "" #: adminpages/membershiplevels.php:627 #: adminpages/membershiplevels.php:631 #: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 #, php-format msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" @@ -5405,6 +5625,7 @@ msgstr "" #: adminpages/membershiplevels.php:634 #: adminpages/membershiplevels.php:638 #: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "" @@ -5425,6 +5646,7 @@ msgstr "" #: adminpages/membershiplevels.php:642 #: adminpages/membershiplevels.php:646 #: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "" @@ -5509,6 +5731,11 @@ msgstr "" #: adminpages/discountcodes.php:729 #: adminpages/orders.php:961 #: pages/billing.php:443 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 +#: includes/profile.php:834 +#: includes/profile.php:958 msgid "Cancel" msgstr "" @@ -5520,6 +5747,8 @@ msgstr "" #: adminpages/membershiplevels.php:791 #: adminpages/membershiplevels.php:778 #: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" @@ -5527,6 +5756,7 @@ msgstr "" #: adminpages/membershiplevels.php:748 #: adminpages/membershiplevels.php:752 #: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" @@ -5621,6 +5851,7 @@ msgstr "" #: adminpages/membershiplevels.php:765 #: adminpages/membershiplevels.php:769 #: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "" @@ -5676,6 +5907,8 @@ msgstr "" #: pages/confirmation.php:99 #: pages/invoice.php:89 #: pages/billing.php:102 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 msgid "Expiration" msgstr "" @@ -5703,6 +5936,7 @@ msgstr "" #: adminpages/membershiplevels.php:779 #: adminpages/membershiplevels.php:783 #: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "" @@ -5762,6 +5996,7 @@ msgstr "" #: adminpages/membershiplevels.php:812 #: adminpages/membershiplevels.php:840 #: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "" @@ -5791,6 +6026,7 @@ msgstr "" #: adminpages/membershiplevels.php:821 #: adminpages/membershiplevels.php:849 #: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "" @@ -5804,6 +6040,7 @@ msgstr "" #: includes/adminpages.php:149 #: includes/adminpages.php:153 #: includes/adminpages.php:158 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "" @@ -5827,6 +6064,8 @@ msgstr "" #: adminpages/orders.php:1000 #: adminpages/orders.php:992 #: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "" @@ -5839,12 +6078,15 @@ msgstr "" #: adminpages/reports/history.php:115 #: adminpages/reports/history.php:119 #: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "" #: adminpages/memberslist.php:41 #: adminpages/memberslist.php:302 #: adminpages/memberslist.php:306 +#: adminpages/memberslist.php:40 #, php-format msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -5887,6 +6129,7 @@ msgstr "" #: adminpages/orders.php:314 #: adminpages/orders.php:315 #: adminpages/orders.php:316 +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "" @@ -5906,6 +6149,7 @@ msgstr "" #: adminpages/orders.php:321 #: adminpages/orders.php:318 #: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "" @@ -5938,6 +6182,7 @@ msgstr "" #: adminpages/orders.php:389 #: classes/class.memberorder.php:1005 #: adminpages/orders.php:390 +#: classes/class.memberorder.php:1014 msgid "Order" msgstr "" @@ -5972,6 +6217,10 @@ msgstr "" #: adminpages/orders.php:391 #: adminpages/orders.php:1424 #: adminpages/orders.php:1434 +#: adminpages/orders.php:439 +#: adminpages/orders.php:1539 +#: adminpages/orders.php:1549 +#: includes/profile.php:473 msgid "Print" msgstr "" @@ -5990,6 +6239,7 @@ msgstr "" #: adminpages/orders.php:386 #: adminpages/orders.php:393 #: adminpages/orders.php:394 +#: adminpages/orders.php:454 msgid "New Order" msgstr "" @@ -6010,6 +6260,7 @@ msgstr "" #: adminpages/orders.php:432 #: adminpages/orders.php:439 #: adminpages/orders.php:440 +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "" @@ -6031,6 +6282,7 @@ msgstr "" #: adminpages/orders.php:437 #: adminpages/orders.php:444 #: adminpages/orders.php:445 +#: adminpages/orders.php:539 msgid "User ID" msgstr "" @@ -6052,6 +6304,8 @@ msgstr "" #: adminpages/emailtemplates.php:130 #: adminpages/orders.php:457 #: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "" @@ -6073,6 +6327,7 @@ msgstr "" #: adminpages/orders.php:465 #: adminpages/orders.php:470 #: adminpages/orders.php:471 +#: adminpages/orders.php:576 msgid "Billing Name" msgstr "" @@ -6094,6 +6349,7 @@ msgstr "" #: adminpages/orders.php:479 #: adminpages/orders.php:484 #: adminpages/orders.php:485 +#: adminpages/orders.php:590 msgid "Billing Street" msgstr "" @@ -6116,6 +6372,7 @@ msgstr "" #: adminpages/orders.php:492 #: adminpages/orders.php:497 #: adminpages/orders.php:496 +#: adminpages/orders.php:602 msgid "Billing City" msgstr "" @@ -6137,6 +6394,7 @@ msgstr "" #: adminpages/orders.php:505 #: adminpages/orders.php:510 #: adminpages/orders.php:509 +#: adminpages/orders.php:615 msgid "Billing State" msgstr "" @@ -6160,6 +6418,7 @@ msgstr "" #: adminpages/orders.php:523 #: adminpages/orders.php:521 #: adminpages/orders.php:522 +#: adminpages/orders.php:627 msgid "Billing Postal Code" msgstr "" @@ -6183,6 +6442,7 @@ msgstr "" #: adminpages/orders.php:536 #: adminpages/orders.php:533 #: adminpages/orders.php:534 +#: adminpages/orders.php:639 msgid "Billing Country" msgstr "" @@ -6205,6 +6465,7 @@ msgstr "" #: adminpages/orders.php:550 #: adminpages/orders.php:546 #: adminpages/orders.php:547 +#: adminpages/orders.php:652 msgid "Billing Phone" msgstr "" @@ -6408,6 +6669,17 @@ msgstr "" #: classes/class.pmproemail.php:764 #: adminpages/orders.php:576 #: adminpages/orders.php:1343 +#: adminpages/orders.php:697 +#: adminpages/orders.php:1437 +#: classes/class.pmproemail.php:465 +#: classes/class.pmproemail.php:471 +#: classes/class.pmproemail.php:477 +#: classes/class.pmproemail.php:567 +#: classes/class.pmproemail.php:573 +#: classes/class.pmproemail.php:895 +#: classes/class.pmproemail.php:897 +#: classes/gateways/class.pmprogateway_stripe.php:906 +#: includes/profile.php:454 msgid "Discount Code" msgstr "" @@ -6458,6 +6730,9 @@ msgstr "" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:933 #: adminpages/orders.php:587 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 msgid "None" msgstr "" @@ -6480,6 +6755,7 @@ msgstr "" #: adminpages/orders.php:597 #: adminpages/orders.php:602 #: adminpages/orders.php:598 +#: adminpages/orders.php:719 msgid "Sub Total" msgstr "" @@ -6522,6 +6798,8 @@ msgstr "" #: includes/functions.php:2880 #: adminpages/orders.php:611 #: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 msgid "Tax" msgstr "" @@ -6544,6 +6822,7 @@ msgstr "" #: adminpages/orders.php:632 #: adminpages/orders.php:627 #: adminpages/orders.php:628 +#: adminpages/orders.php:749 msgid "Coupon Amount" msgstr "" @@ -6567,6 +6846,7 @@ msgstr "" #: adminpages/orders.php:664 #: adminpages/orders.php:659 #: adminpages/orders.php:660 +#: adminpages/orders.php:781 msgid "Payment Type" msgstr "" @@ -6589,6 +6869,7 @@ msgstr "" #: adminpages/orders.php:675 #: adminpages/orders.php:670 #: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "" @@ -6692,6 +6973,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:768 #: adminpages/orders.php:675 #: pages/billing.php:338 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_stripe.php:876 msgid "Card Type" msgstr "" @@ -6714,6 +6997,7 @@ msgstr "" #: adminpages/orders.php:689 #: adminpages/orders.php:684 #: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "" @@ -6743,6 +7027,8 @@ msgstr "" #: adminpages/orders.php:693 #: adminpages/orders.php:688 #: adminpages/orders.php:689 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 msgid "Account Number" msgstr "" @@ -6764,6 +7050,7 @@ msgstr "" #: adminpages/orders.php:697 #: adminpages/orders.php:704 #: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "" @@ -6791,6 +7078,7 @@ msgstr "" #: adminpages/orders.php:724 #: adminpages/orders.php:708 #: adminpages/orders.php:719 +#: adminpages/orders.php:829 msgid "Expiration Month" msgstr "" @@ -6867,6 +7155,9 @@ msgstr "" #: adminpages/orders.php:1338 #: classes/class.memberorder.php:1006 #: adminpages/orders.php:1339 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 msgid "Gateway" msgstr "" @@ -6899,6 +7190,8 @@ msgstr "" #: adminpages/paymentsettings.php:184 #: adminpages/orders.php:787 #: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 msgid "Gateway Environment" msgstr "" @@ -6934,6 +7227,9 @@ msgstr "" #: classes/class-pmpro-site-health.php:210 #: adminpages/paymentsettings.php:159 #: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "" @@ -6969,6 +7265,9 @@ msgstr "" #: classes/class-pmpro-site-health.php:211 #: adminpages/paymentsettings.php:160 #: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "" @@ -6992,6 +7291,7 @@ msgstr "" #: adminpages/orders.php:796 #: adminpages/orders.php:797 #: adminpages/orders.php:804 +#: adminpages/orders.php:916 msgid "Payment Transaction ID" msgstr "" @@ -7013,6 +7313,7 @@ msgstr "" #: adminpages/orders.php:806 #: adminpages/orders.php:807 #: adminpages/orders.php:814 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "" @@ -7048,6 +7349,8 @@ msgstr "" #: classes/class.memberorder.php:955 #: adminpages/orders.php:819 #: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 msgid "Subscription Transaction ID" msgstr "" @@ -7069,6 +7372,7 @@ msgstr "" #: adminpages/orders.php:822 #: adminpages/orders.php:823 #: adminpages/orders.php:830 +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "" @@ -7078,6 +7382,8 @@ msgstr "" #: includes/profile.php:109 #: adminpages/orders.php:868 #: includes/profile.php:85 +#: adminpages/orders.php:525 +#: includes/profile.php:95 msgid "at" msgstr "" @@ -7098,6 +7404,7 @@ msgstr "" #: adminpages/orders.php:872 #: adminpages/orders.php:873 #: adminpages/orders.php:880 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "" @@ -7118,6 +7425,7 @@ msgstr "" #: adminpages/orders.php:885 #: adminpages/orders.php:886 #: adminpages/orders.php:893 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "" @@ -7131,6 +7439,7 @@ msgstr "" #: adminpages/orders.php:906 #: adminpages/orders.php:907 #: adminpages/orders.php:914 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" @@ -7151,6 +7460,7 @@ msgstr "" #: adminpages/orders.php:921 #: adminpages/orders.php:922 #: adminpages/orders.php:929 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "" @@ -7172,6 +7482,7 @@ msgstr "" #: adminpages/orders.php:967 #: adminpages/orders.php:959 #: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "" @@ -7192,6 +7503,7 @@ msgstr "" #: adminpages/orders.php:979 #: adminpages/orders.php:971 #: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "" @@ -7245,6 +7557,8 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:651 #: adminpages/orders.php:1013 #: classes/class-pmpro-members-list-table.php:657 +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 msgid "Show" msgstr "" @@ -7265,6 +7579,7 @@ msgstr "" #: adminpages/orders.php:1024 #: adminpages/orders.php:1016 #: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "" @@ -7285,6 +7600,7 @@ msgstr "" #: adminpages/orders.php:1026 #: adminpages/orders.php:1018 #: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "" @@ -7305,6 +7621,7 @@ msgstr "" #: adminpages/orders.php:1028 #: adminpages/orders.php:1020 #: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "" @@ -7318,6 +7635,7 @@ msgstr "" #: adminpages/orders.php:1030 #: adminpages/orders.php:1022 #: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" @@ -7338,6 +7656,7 @@ msgstr "" #: adminpages/orders.php:1032 #: adminpages/orders.php:1024 #: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "" @@ -7351,6 +7670,7 @@ msgstr "" #: adminpages/orders.php:1034 #: adminpages/orders.php:1026 #: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" @@ -7364,6 +7684,7 @@ msgstr "" #: adminpages/orders.php:1036 #: adminpages/orders.php:1028 #: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" @@ -7385,6 +7706,7 @@ msgstr "" #: adminpages/orders.php:1044 #: adminpages/orders.php:1036 #: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "" @@ -7406,6 +7728,7 @@ msgstr "" #: adminpages/orders.php:1059 #: adminpages/orders.php:1051 #: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "" @@ -7427,6 +7750,7 @@ msgstr "" #: adminpages/orders.php:1072 #: adminpages/orders.php:1064 #: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "" @@ -7449,6 +7773,7 @@ msgstr "" #: adminpages/orders.php:1077 #: adminpages/orders.php:1069 #: adminpages/orders.php:1070 +#: adminpages/orders.php:1158 msgid "This Month" msgstr "" @@ -7458,6 +7783,7 @@ msgstr "" #: adminpages/orders.php:1079 #: adminpages/orders.php:1071 #: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" @@ -7478,6 +7804,7 @@ msgstr "" #: adminpages/orders.php:1081 #: adminpages/orders.php:1073 #: adminpages/orders.php:1074 +#: adminpages/orders.php:1162 msgid "This Year" msgstr "" @@ -7487,6 +7814,7 @@ msgstr "" #: adminpages/orders.php:1083 #: adminpages/orders.php:1075 #: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" @@ -7508,6 +7836,7 @@ msgstr "" #: adminpages/orders.php:1122 #: adminpages/orders.php:1114 #: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "" @@ -7549,6 +7878,8 @@ msgstr "" #: adminpages/orders.php:1251 #: adminpages/orders.php:1249 #: adminpages/orders.php:1252 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 msgid "Search Orders" msgstr "" @@ -7572,6 +7903,8 @@ msgstr "" #: adminpages/orders.php:1332 #: adminpages/orders.php:1324 #: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 #, php-format msgid "%d orders found." msgstr "" @@ -7616,6 +7949,7 @@ msgstr "" #: adminpages/orders.php:1531 #: adminpages/orders.php:1338 #: adminpages/orders.php:1532 +#: adminpages/orders.php:1684 msgid "Payment" msgstr "" @@ -7639,6 +7973,7 @@ msgstr "" #: adminpages/orders.php:1347 #: adminpages/orders.php:1339 #: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "" @@ -7668,6 +8003,7 @@ msgstr "" #: adminpages/orders.php:1375 #: adminpages/orders.php:1367 #: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 #, php-format msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "" @@ -7693,6 +8029,7 @@ msgstr "" #: adminpages/orders.php:1548 #: adminpages/orders.php:1540 #: adminpages/orders.php:1541 +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "" @@ -7745,6 +8082,7 @@ msgstr "" #: adminpages/orders.php:1564 #: adminpages/orders.php:1556 #: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "" @@ -7873,6 +8211,7 @@ msgstr "" #: adminpages/pagesettings.php:126 #: adminpages/pagesettings.php:182 #: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "" @@ -7887,6 +8226,7 @@ msgstr "" #: adminpages/pagesettings.php:132 #: adminpages/pagesettings.php:184 #: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "" @@ -7901,30 +8241,35 @@ msgstr "" #: adminpages/pagesettings.php:132 #: adminpages/pagesettings.php:185 #: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "" #: adminpages/pagesettings.php:174 #: adminpages/pagesettings.php:189 #: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:190 #: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" #: adminpages/pagesettings.php:176 #: adminpages/pagesettings.php:191 #: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" #: adminpages/pagesettings.php:177 #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" @@ -7938,6 +8283,7 @@ msgstr "" #: adminpages/pagesettings.php:145 #: adminpages/pagesettings.php:201 #: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "" @@ -8019,6 +8365,12 @@ msgstr "" #: adminpages/pagesettings.php:335 #: adminpages/pagesettings.php:360 #: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "" @@ -8113,6 +8465,16 @@ msgstr "" #: adminpages/pagesettings.php:405 #: adminpages/pagesettings.php:434 #: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "" @@ -8208,6 +8570,15 @@ msgstr "" #: adminpages/pagesettings.php:408 #: adminpages/pagesettings.php:437 #: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "" @@ -8294,6 +8665,12 @@ msgstr "" #: adminpages/pagesettings.php:323 #: adminpages/pagesettings.php:348 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "" @@ -8302,6 +8679,7 @@ msgstr "" #: adminpages/pagesettings.php:158 #: adminpages/pagesettings.php:221 #: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" @@ -8319,6 +8697,7 @@ msgstr "" #: adminpages/pagesettings.php:162 #: adminpages/pagesettings.php:225 #: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "" @@ -8327,6 +8706,7 @@ msgstr "" #: adminpages/pagesettings.php:175 #: adminpages/pagesettings.php:245 #: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" @@ -8343,6 +8723,7 @@ msgstr "" #: adminpages/pagesettings.php:179 #: adminpages/pagesettings.php:249 #: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "" @@ -8351,6 +8732,7 @@ msgstr "" #: adminpages/pagesettings.php:192 #: adminpages/pagesettings.php:269 #: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" @@ -8367,6 +8749,7 @@ msgstr "" #: adminpages/pagesettings.php:198 #: adminpages/pagesettings.php:274 #: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "" @@ -8375,6 +8758,7 @@ msgstr "" #: adminpages/pagesettings.php:210 #: adminpages/pagesettings.php:294 #: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" @@ -8391,6 +8775,7 @@ msgstr "" #: adminpages/pagesettings.php:217 #: adminpages/pagesettings.php:299 #: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "" @@ -8399,6 +8784,7 @@ msgstr "" #: adminpages/pagesettings.php:228 #: adminpages/pagesettings.php:319 #: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" @@ -8415,6 +8801,7 @@ msgstr "" #: adminpages/pagesettings.php:237 #: adminpages/pagesettings.php:324 #: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "" @@ -8423,6 +8810,7 @@ msgstr "" #: adminpages/pagesettings.php:246 #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" @@ -8440,6 +8828,7 @@ msgstr "" #: adminpages/pagesettings.php:256 #: adminpages/pagesettings.php:349 #: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "" @@ -8448,6 +8837,7 @@ msgstr "" #: adminpages/pagesettings.php:264 #: adminpages/pagesettings.php:369 #: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" @@ -8457,6 +8847,7 @@ msgstr "" #: adminpages/pagesettings.php:280 #: adminpages/pagesettings.php:379 #: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 #, php-format msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" @@ -8464,6 +8855,7 @@ msgstr "" #: adminpages/pagesettings.php:321 #: adminpages/pagesettings.php:385 #: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" @@ -8473,6 +8865,8 @@ msgstr "" #: adminpages/pagesettings.php:421 #: adminpages/pagesettings.php:396 #: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" @@ -8492,12 +8886,16 @@ msgstr "" #: adminpages/pagesettings.php:411 #: adminpages/pagesettings.php:440 #: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "" #: adminpages/pagesettings.php:344 #: adminpages/pagesettings.php:409 #: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 #, php-format msgid "Include the shortcode %s or the Log In Form block." msgstr "" @@ -8507,12 +8905,14 @@ msgstr "" #: includes/adminpages.php:358 #: adminpages/pagesettings.php:414 #: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 msgid "Member Profile Edit Page" msgstr "" #: adminpages/pagesettings.php:372 #: adminpages/pagesettings.php:438 #: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 #, php-format msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" @@ -8520,6 +8920,7 @@ msgstr "" #: adminpages/pagesettings.php:382 #: adminpages/pagesettings.php:448 #: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 #, php-format msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" @@ -8534,6 +8935,7 @@ msgstr "" #: adminpages/pagesettings.php:289 #: adminpages/pagesettings.php:457 #: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "" @@ -8559,6 +8961,7 @@ msgstr "" #: adminpages/paymentsettings.php:154 #: classes/class-pmpro-site-health.php:69 #: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 msgid "Payment Gateway" msgstr "" @@ -8575,6 +8978,7 @@ msgstr "" #: adminpages/paymentsettings.php:239 #: adminpages/paymentsettings.php:248 #: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "" @@ -8590,6 +8994,7 @@ msgstr "" #: adminpages/paymentsettings.php:119 #: adminpages/paymentsettings.php:120 #: adminpages/paymentsettings.php:127 +#: adminpages/paymentsettings.php:125 msgid "Choose a Gateway" msgstr "" @@ -8598,6 +9003,7 @@ msgstr "" #: adminpages/paymentsettings.php:139 #: adminpages/paymentsettings.php:140 #: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" @@ -8606,6 +9012,7 @@ msgstr "" #: adminpages/paymentsettings.php:139 #: adminpages/paymentsettings.php:140 #: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" @@ -8617,6 +9024,7 @@ msgstr "" #: adminpages/paymentsettings.php:185 #: adminpages/paymentsettings.php:194 #: adminpages/paymentsettings.php:201 +#: adminpages/paymentsettings.php:199 msgid "Currency and Tax Settings" msgstr "" @@ -8633,6 +9041,7 @@ msgstr "" #: adminpages/paymentsettings.php:386 #: adminpages/paymentsettings.php:199 #: adminpages/paymentsettings.php:206 +#: adminpages/paymentsettings.php:204 msgid "Currency" msgstr "" @@ -8646,6 +9055,7 @@ msgstr "" #: adminpages/paymentsettings.php:402 #: adminpages/paymentsettings.php:215 #: adminpages/paymentsettings.php:222 +#: adminpages/paymentsettings.php:220 msgid "Not all currencies will be supported by every gateway. Please check with your gateway." msgstr "" @@ -8661,6 +9071,7 @@ msgstr "" #: adminpages/paymentsettings.php:408 #: adminpages/paymentsettings.php:220 #: adminpages/paymentsettings.php:227 +#: adminpages/paymentsettings.php:225 msgid "Accepted Credit Card Types" msgstr "" @@ -8676,6 +9087,7 @@ msgstr "" #: adminpages/paymentsettings.php:445 #: adminpages/paymentsettings.php:234 #: adminpages/paymentsettings.php:241 +#: adminpages/paymentsettings.php:239 msgid "Sales Tax" msgstr "" @@ -8709,6 +9121,7 @@ msgstr "" #: pages/billing.php:179 #: adminpages/paymentsettings.php:241 #: pages/billing.php:181 +#: adminpages/paymentsettings.php:239 msgid "optional" msgstr "" @@ -8724,6 +9137,7 @@ msgstr "" #: adminpages/paymentsettings.php:448 #: adminpages/paymentsettings.php:237 #: adminpages/paymentsettings.php:244 +#: adminpages/paymentsettings.php:242 msgid "Tax State" msgstr "" @@ -8739,6 +9153,7 @@ msgstr "" #: adminpages/paymentsettings.php:449 #: adminpages/paymentsettings.php:238 #: adminpages/paymentsettings.php:245 +#: adminpages/paymentsettings.php:243 msgid "abbreviation, e.g. \"PA\"" msgstr "" @@ -8750,6 +9165,7 @@ msgstr "" #: adminpages/paymentsettings.php:230 #: adminpages/paymentsettings.php:239 #: adminpages/paymentsettings.php:246 +#: adminpages/paymentsettings.php:244 msgid "Tax Rate" msgstr "" @@ -8765,6 +9181,7 @@ msgstr "" #: adminpages/paymentsettings.php:451 #: adminpages/paymentsettings.php:240 #: adminpages/paymentsettings.php:247 +#: adminpages/paymentsettings.php:245 msgid "decimal, e.g. \"0.06\"" msgstr "" @@ -8787,6 +9204,7 @@ msgstr "" #: adminpages/paymentsettings.php:457 #: adminpages/paymentsettings.php:253 #: adminpages/paymentsettings.php:266 +#: adminpages/paymentsettings.php:264 msgid "Force SSL" msgstr "" @@ -8798,6 +9216,7 @@ msgstr "" #: adminpages/paymentsettings.php:251 #: adminpages/paymentsettings.php:260 #: adminpages/paymentsettings.php:273 +#: adminpages/paymentsettings.php:271 msgid "Your Site URL starts with https:// and so PMPro will allow your entire site to be served over HTTPS." msgstr "" @@ -8813,6 +9232,7 @@ msgstr "" #: adminpages/paymentsettings.php:463 #: adminpages/paymentsettings.php:268 #: adminpages/paymentsettings.php:281 +#: adminpages/paymentsettings.php:279 msgid "Yes (with JavaScript redirects)" msgstr "" @@ -8825,6 +9245,7 @@ msgstr "" #: adminpages/paymentsettings.php:261 #: adminpages/paymentsettings.php:270 #: adminpages/paymentsettings.php:283 +#: adminpages/paymentsettings.php:281 msgid "Recommended: Yes. Try the JavaScript redirects setting if you are having issues with infinite redirect loops." msgstr "" @@ -8841,6 +9262,7 @@ msgstr "" #: adminpages/paymentsettings.php:470 #: adminpages/paymentsettings.php:278 #: adminpages/paymentsettings.php:291 +#: adminpages/paymentsettings.php:289 msgid "SSL Seal Code" msgstr "" @@ -8860,6 +9282,7 @@ msgstr "" #: adminpages/paymentsettings.php:278 #: adminpages/paymentsettings.php:287 #: adminpages/paymentsettings.php:306 +#: adminpages/paymentsettings.php:304 msgid "Extra HTTPS URL Filter" msgstr "" @@ -8872,6 +9295,7 @@ msgstr "" #: adminpages/paymentsettings.php:281 #: adminpages/paymentsettings.php:290 #: adminpages/paymentsettings.php:309 +#: adminpages/paymentsettings.php:307 msgid "Pass all generated HTML through a URL filter to add HTTPS to URLs used on secure pages. Check this if you are using SSL and have warnings on your checkout pages." msgstr "" @@ -8879,6 +9303,7 @@ msgstr "" #: adminpages/reports.php:61 #: adminpages/reports.php:63 #: adminpages/reports.php:18 +#: adminpages/reports.php:21 msgid "Back to Reports Dashboard" msgstr "" @@ -8930,6 +9355,7 @@ msgstr "" #: adminpages/reports/sales.php:66 #: adminpages/reports/sales.php:67 #: adminpages/reports/sales.php:542 +#: adminpages/reports/sales.php:543 msgid "All Time" msgstr "" @@ -8966,6 +9392,7 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:265 #: classes/class-pmpro-members-list-table.php:233 #: adminpages/reports/login.php:105 +#: adminpages/reports/login.php:111 msgid "All Users" msgstr "" @@ -9014,6 +9441,8 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:653 #: adminpages/reports/login.php:106 #: classes/class-pmpro-members-list-table.php:659 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 msgid "All Levels" msgstr "" @@ -9191,6 +9620,7 @@ msgstr "" #: adminpages/reports/sales.php:223 #: adminpages/reports/sales.php:292 #: adminpages/reports/sales.php:315 +#: adminpages/reports/memberships.php:334 msgid "Annual" msgstr "" @@ -9200,6 +9630,7 @@ msgstr "" #: adminpages/reports/memberships.php:311 #: adminpages/reports/memberships.php:335 #: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:337 msgid "Signups vs. All Cancellations" msgstr "" @@ -9211,6 +9642,7 @@ msgstr "" #: adminpages/reports/memberships.php:312 #: adminpages/reports/memberships.php:336 #: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:338 msgid "Signups vs. Cancellations" msgstr "" @@ -9220,6 +9652,7 @@ msgstr "" #: adminpages/reports/memberships.php:313 #: adminpages/reports/memberships.php:337 #: adminpages/reports/memberships.php:358 +#: adminpages/reports/memberships.php:339 msgid "Signups vs. Expirations" msgstr "" @@ -9262,16 +9695,20 @@ msgstr "" #: adminpages/reports/sales.php:309 #: adminpages/reports/sales.php:321 #: adminpages/reports/sales.php:332 +#: adminpages/reports/memberships.php:341 +#: adminpages/reports/memberships.php:352 msgid "for" msgstr "" #: adminpages/reports/memberships.php:356 #: adminpages/reports/memberships.php:374 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" #: adminpages/reports/memberships.php:357 #: adminpages/reports/memberships.php:375 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" @@ -9280,6 +9717,7 @@ msgstr "" #: adminpages/reports/memberships.php:394 #: adminpages/reports/sales.php:328 #: adminpages/reports/sales.php:352 +#: adminpages/reports/memberships.php:376 msgid "All Codes" msgstr "" @@ -9300,6 +9738,7 @@ msgstr "" #: adminpages/reports/sales.php:256 #: adminpages/reports/sales.php:336 #: adminpages/reports/sales.php:360 +#: adminpages/reports/memberships.php:384 msgid "Generate Report" msgstr "" @@ -9340,6 +9779,7 @@ msgstr "" #: adminpages/reports/sales.php:345 #: adminpages/reports/sales.php:339 #: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" @@ -9441,6 +9881,18 @@ msgstr "" #: js/blocks.build.js:1342 #: js/blocks.build.js:1502 #: classes/class-pmpro-admin-activity-email.php:349 +#: blocks/account-invoices-section/block.js:47 +#: blocks/account-links-section/block.js:47 +#: blocks/account-membership-section/block.js:45 +#: blocks/account-page/block.js:72 +#: blocks/account-profile-section/block.js:45 +#: blocks/billing-page/block.js:44 +#: blocks/cancel-page/block.js:44 +#: blocks/checkout-page/block.js:58 +#: blocks/confirmation-page/block.js:46 +#: blocks/invoice-page/block.js:45 +#: blocks/levels-page/block.js:44 +#: blocks/member-profile-edit/block.js:37 msgid "Paid Memberships Pro" msgstr "" @@ -9688,6 +10140,9 @@ msgstr "" #: classes/class-pmpro-members-list-table.php:541 #: classes/class-pmpro-members-list-table.php:570 #: classes/class-pmpro-members-list-table.php:576 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 msgid "—" msgstr "" @@ -9716,6 +10171,7 @@ msgstr "" #: classes/class.memberorder.php:949 #: includes/cleanup.php:24 #: classes/class.memberorder.php:1001 +#: classes/class.memberorder.php:1010 #, php-format msgid "There was an error canceling the subscription for user with ID=%s. You will want to check your payment gateway to see if their subscription is still active." msgstr "" @@ -9733,6 +10189,8 @@ msgstr "" #: classes/class.memberorder.php:950 #: adminpages/emailtemplates.php:137 #: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" @@ -9749,6 +10207,7 @@ msgstr "" #: classes/class.memberorder.php:948 #: classes/class.memberorder.php:952 #: classes/class.memberorder.php:1004 +#: classes/class.memberorder.php:1013 msgid "User Display Name" msgstr "" @@ -9761,6 +10220,7 @@ msgstr "" #: classes/class.memberorder.php:957 #: adminpages/reports/history.php:47 #: classes/class.memberorder.php:1009 +#: classes/class.memberorder.php:1018 msgid "Edit User" msgstr "" @@ -9772,6 +10232,8 @@ msgstr "" #: classes/class.memberorder.php:954 #: classes/class.memberorder.php:958 #: classes/class.memberorder.php:1010 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 msgid "Edit Order" msgstr "" @@ -9820,6 +10282,7 @@ msgstr "" #: classes/class.pmproemail.php:226 #: classes/class.pmproemail.php:269 #: classes/class.pmproemail.php:262 +#: classes/class.pmproemail.php:395 #, php-format msgid "Your membership confirmation for %s" msgstr "" @@ -9880,6 +10343,11 @@ msgstr "" #: classes/class.pmproemail.php:771 #: classes/class.pmproemail.php:905 #: classes/class.pmproemail.php:950 +#: classes/class.pmproemail.php:485 +#: classes/class.pmproemail.php:583 +#: classes/class.pmproemail.php:904 +#: classes/class.pmproemail.php:1038 +#: classes/class.pmproemail.php:1083 #, php-format msgid "This membership will expire on %s." msgstr "" @@ -9909,6 +10377,7 @@ msgstr "" #: classes/class.pmproemail.php:463 #: classes/class.pmproemail.php:475 #: classes/class.pmproemail.php:468 +#: classes/class.pmproemail.php:601 #, php-format msgid "Your billing information has been updated at %s" msgstr "" @@ -9923,6 +10392,7 @@ msgstr "" #: classes/class.pmproemail.php:513 #: classes/class.pmproemail.php:525 #: classes/class.pmproemail.php:518 +#: classes/class.pmproemail.php:651 #, php-format msgid "Billing information has been updated for %s at %s" msgstr "" @@ -10007,6 +10477,7 @@ msgstr "" #: classes/class.pmproemail.php:794 #: classes/class.pmproemail.php:806 #: classes/class.pmproemail.php:799 +#: classes/class.pmproemail.php:932 #, php-format msgid "Your trial at %s is ending soon" msgstr "" @@ -10027,6 +10498,7 @@ msgstr "" #: classes/class.pmproemail.php:831 #: classes/class.pmproemail.php:843 #: classes/class.pmproemail.php:836 +#: classes/class.pmproemail.php:969 #, php-format msgid "Your membership at %s has ended" msgstr "" @@ -10047,6 +10519,7 @@ msgstr "" #: classes/class.pmproemail.php:858 #: classes/class.pmproemail.php:870 #: classes/class.pmproemail.php:863 +#: classes/class.pmproemail.php:996 #, php-format msgid "Your membership at %s will end soon" msgstr "" @@ -10068,6 +10541,7 @@ msgstr "" #: classes/class.pmproemail.php:888 #: classes/class.pmproemail.php:900 #: classes/class.pmproemail.php:893 +#: classes/class.pmproemail.php:1026 #, php-format msgid "Your membership at %s has been changed" msgstr "" @@ -10203,6 +10677,7 @@ msgstr "" #: classes/class.pmproemail.php:933 #: classes/class.pmproemail.php:945 #: classes/class.pmproemail.php:938 +#: classes/class.pmproemail.php:1071 #, php-format msgid "Membership for %s at %s has been changed" msgstr "" @@ -10245,6 +10720,7 @@ msgstr "" #: classes/class.pmproemail.php:1030 #: classes/class.pmproemail.php:1042 #: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 #, php-format msgid "Payment action required for your %s membership" msgstr "" @@ -10255,6 +10731,7 @@ msgstr "" #: classes/class.pmproemail.php:1068 #: classes/class.pmproemail.php:1080 #: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 #, php-format msgid "Payment action required: membership for %s at %s" msgstr "" @@ -10401,6 +10878,7 @@ msgstr "" #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:167 +#: paid-memberships-pro.php:173 msgid "Authorize.net" msgstr "" @@ -10485,6 +10963,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:91 #: classes/gateways/class.pmprogateway_stripe.php:97 #: classes/gateways/class.pmprogateway_stripe.php:1353 +#: classes/gateways/class.pmprogateway_stripe.php:1478 #, php-format msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." msgstr "" @@ -10492,6 +10971,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:144 #: classes/gateways/class.pmprogateway_braintree.php:141 #: classes/gateways/class.pmprogateway_braintree.php:142 +#: classes/gateways/class.pmprogateway_braintree.php:151 #, php-format msgid "Problem loading plans: %s" msgstr "" @@ -10499,6 +10979,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:146 #: classes/gateways/class.pmprogateway_braintree.php:143 #: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" @@ -10532,6 +11013,8 @@ msgstr "" #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:167 #: paid-memberships-pro.php:168 +#: classes/gateways/class.pmprogateway_braintree.php:258 +#: paid-memberships-pro.php:174 msgid "Braintree Payments" msgstr "" @@ -10547,6 +11030,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:303 #: classes/gateways/class.pmprogateway_braintree.php:306 #: classes/gateways/class.pmprogateway_braintree.php:307 +#: classes/gateways/class.pmprogateway_braintree.php:315 msgid "Braintree Settings" msgstr "" @@ -10570,6 +11054,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:312 #: classes/gateways/class.pmprogateway_cybersource.php:93 #: classes/gateways/class.pmprogateway_cybersource.php:106 +#: classes/gateways/class.pmprogateway_braintree.php:320 msgid "Merchant ID" msgstr "" @@ -10588,6 +11073,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:316 #: classes/gateways/class.pmprogateway_braintree.php:319 #: classes/gateways/class.pmprogateway_braintree.php:320 +#: classes/gateways/class.pmprogateway_braintree.php:328 msgid "Public Key" msgstr "" @@ -10606,6 +11092,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:324 #: classes/gateways/class.pmprogateway_braintree.php:327 #: classes/gateways/class.pmprogateway_braintree.php:328 +#: classes/gateways/class.pmprogateway_braintree.php:336 msgid "Private Key" msgstr "" @@ -10624,6 +11111,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:332 #: classes/gateways/class.pmprogateway_braintree.php:335 #: classes/gateways/class.pmprogateway_braintree.php:336 +#: classes/gateways/class.pmprogateway_braintree.php:344 msgid "Client-Side Encryption Key" msgstr "" @@ -10664,6 +11152,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:328 #: classes/gateways/class.pmprogateway_stripe.php:329 #: classes/gateways/class.pmprogateway_stripe.php:330 +#: classes/gateways/class.pmprogateway_braintree.php:352 msgid "Web Hook URL" msgstr "" @@ -10682,6 +11171,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:343 #: classes/gateways/class.pmprogateway_braintree.php:344 #: classes/gateways/class.pmprogateway_braintree.php:347 +#: classes/gateways/class.pmprogateway_braintree.php:355 msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to" msgstr "" @@ -10748,6 +11238,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1282 #: classes/gateways/class.pmprogateway_stripe.php:1288 #: classes/gateways/class.pmprogateway_stripe.php:747 +#: adminpages/orders.php:676 +#: classes/gateways/class.pmprogateway_stripe.php:855 msgid "Payment Information" msgstr "" @@ -10814,6 +11306,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1283 #: classes/gateways/class.pmprogateway_stripe.php:1289 #: classes/gateways/class.pmprogateway_stripe.php:748 +#: classes/gateways/class.pmprogateway_stripe.php:856 #, php-format msgid "We Accept %s" msgstr "" @@ -10899,6 +11392,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1322 #: classes/gateways/class.pmprogateway_stripe.php:781 #: pages/billing.php:377 +#: classes/gateways/class.pmprogateway_stripe.php:889 msgid "Card Number" msgstr "" @@ -11109,6 +11603,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1338 #: classes/gateways/class.pmprogateway_stripe.php:1344 #: classes/gateways/class.pmprogateway_stripe.php:803 +#: classes/gateways/class.pmprogateway_stripe.php:911 msgid "Apply" msgstr "" @@ -11163,6 +11658,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:851 #: classes/gateways/class.pmprogateway_braintree.php:960 #: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" @@ -11222,6 +11721,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:656 #: classes/gateways/class.pmprogateway_braintree.php:657 #: classes/gateways/class.pmprogateway_braintree.php:653 +#: classes/gateways/class.pmprogateway_braintree.php:660 msgid "Error during settlement:" msgstr "" @@ -11242,6 +11742,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:665 #: classes/gateways/class.pmprogateway_braintree.php:666 #: classes/gateways/class.pmprogateway_braintree.php:662 +#: classes/gateways/class.pmprogateway_braintree.php:669 msgid "Error during charge:" msgstr "" @@ -11253,6 +11754,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:757 #: classes/gateways/class.pmprogateway_braintree.php:758 #: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 #, php-format msgid "Failed to update customer: %s" msgstr "" @@ -11275,6 +11777,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:769 #: classes/gateways/class.pmprogateway_braintree.php:770 #: classes/gateways/class.pmprogateway_braintree.php:765 +#: classes/gateways/class.pmprogateway_braintree.php:772 msgid "Failed to update customer." msgstr "" @@ -11296,6 +11799,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:817 #: classes/gateways/class.pmprogateway_braintree.php:818 #: classes/gateways/class.pmprogateway_braintree.php:813 +#: classes/gateways/class.pmprogateway_braintree.php:820 msgid "Failed to create customer." msgstr "" @@ -11317,6 +11821,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:824 #: classes/gateways/class.pmprogateway_braintree.php:825 #: classes/gateways/class.pmprogateway_braintree.php:820 +#: classes/gateways/class.pmprogateway_braintree.php:827 msgid "Error creating customer record with Braintree:" msgstr "" @@ -11325,6 +11830,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:935 #: classes/gateways/class.pmprogateway_braintree.php:940 #: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 #, php-format msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" @@ -11334,6 +11840,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:950 #: classes/gateways/class.pmprogateway_braintree.php:955 #: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 #, php-format msgid "Failed to subscribe with Braintree: %s" msgstr "" @@ -11348,6 +11855,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1031 #: classes/gateways/class.pmprogateway_braintree.php:1032 #: classes/gateways/class.pmprogateway_braintree.php:1037 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 #, php-format msgid "Could not find the subscription. %s" msgstr "" @@ -11407,12 +11916,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:396 #: classes/gateways/class.pmprogateway_stripe.php:402 #: classes/gateways/class.pmprogateway_stripe.php:423 +#: classes/gateways/class.pmprogateway_braintree.php:1046 msgid "Could not find the subscription." msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:1082 #: classes/gateways/class.pmprogateway_braintree.php:1083 #: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" @@ -11441,6 +11952,7 @@ msgstr "" #: paid-memberships-pro.php:157 #: paid-memberships-pro.php:160 #: paid-memberships-pro.php:161 +#: paid-memberships-pro.php:167 msgid "Pay by Check" msgstr "" @@ -11936,6 +12448,7 @@ msgstr "" #: paid-memberships-pro.php:160 #: paid-memberships-pro.php:163 #: paid-memberships-pro.php:164 +#: paid-memberships-pro.php:170 msgid "PayPal Website Payments Pro" msgstr "" @@ -11951,6 +12464,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalstandard.php:112 #: classes/gateways/class.pmprogateway_paypalstandard.php:132 #: classes/gateways/class.pmprogateway_paypalexpress.php:151 +#: classes/gateways/class.pmprogateway_paypalexpress.php:152 msgid "PayPal Settings" msgstr "" @@ -11958,6 +12472,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:155 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 #: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 #, php-format msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" @@ -11977,6 +12492,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalstandard.php:122 #: classes/gateways/class.pmprogateway_paypalstandard.php:142 #: classes/gateways/class.pmprogateway_paypalexpress.php:172 +#: classes/gateways/class.pmprogateway_paypalexpress.php:173 msgid "Gateway Account Email" msgstr "" @@ -12001,6 +12517,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:119 #: classes/gateways/class.pmprogateway_twocheckout.php:121 #: classes/gateways/class.pmprogateway_paypalexpress.php:180 +#: classes/gateways/class.pmprogateway_paypalexpress.php:181 +#: classes/gateways/class.pmprogateway_twocheckout.php:127 msgid "API Username" msgstr "" @@ -12025,6 +12543,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:128 #: classes/gateways/class.pmprogateway_twocheckout.php:130 #: classes/gateways/class.pmprogateway_paypalexpress.php:188 +#: classes/gateways/class.pmprogateway_paypalexpress.php:189 +#: classes/gateways/class.pmprogateway_twocheckout.php:136 msgid "API Password" msgstr "" @@ -12043,6 +12563,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalstandard.php:146 #: classes/gateways/class.pmprogateway_paypalstandard.php:166 #: classes/gateways/class.pmprogateway_paypalexpress.php:196 +#: classes/gateways/class.pmprogateway_paypalexpress.php:197 msgid "API Signature" msgstr "" @@ -12052,6 +12573,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:173 #: classes/gateways/class.pmprogateway_paypalexpress.php:182 #: classes/gateways/class.pmprogateway_paypalexpress.php:204 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 msgid "Confirmation Step" msgstr "" @@ -12071,6 +12593,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalstandard.php:154 #: classes/gateways/class.pmprogateway_paypalstandard.php:174 #: classes/gateways/class.pmprogateway_paypalexpress.php:215 +#: classes/gateways/class.pmprogateway_paypalexpress.php:216 msgid "IPN Handler URL" msgstr "" @@ -12084,6 +12607,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:173 #: classes/gateways/class.pmprogateway_paypalexpress.php:196 #: classes/gateways/class.pmprogateway_paypalexpress.php:218 +#: classes/gateways/class.pmprogateway_paypalexpress.php:219 msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to " msgstr "" @@ -12126,6 +12650,7 @@ msgstr "" #: pages/checkout.php:218 #: classes/gateways/class.pmprogateway_paypalexpress.php:498 #: classes/gateways/class.pmprogateway_paypalexpress.php:502 +#: classes/gateways/class.pmprogateway_paypalexpress.php:503 msgid "Check Out with PayPal" msgstr "" @@ -12171,6 +12696,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:503 #: classes/gateways/class.pmprogateway_paypalexpress.php:507 #: pages/checkout.php:538 +#: classes/gateways/class.pmprogateway_paypalexpress.php:508 msgid "Submit and Check Out" msgstr "" @@ -12221,6 +12747,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:503 #: classes/gateways/class.pmprogateway_paypalexpress.php:507 #: pages/checkout.php:538 +#: classes/gateways/class.pmprogateway_paypalexpress.php:508 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Submit and Confirm" msgstr "" @@ -12268,6 +12796,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:854 #: classes/gateways/class.pmprogateway_paypal.php:726 #: classes/gateways/class.pmprogateway_paypalexpress.php:865 +#: classes/gateways/class.pmprogateway_paypalexpress.php:866 msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward." msgstr "" @@ -12294,6 +12823,8 @@ msgstr "" #: paid-memberships-pro.php:162 #: classes/gateways/class.pmprogateway_paypalexpress.php:94 #: paid-memberships-pro.php:163 +#: classes/gateways/class.pmprogateway_paypalexpress.php:95 +#: paid-memberships-pro.php:169 msgid "PayPal Express" msgstr "" @@ -12328,11 +12859,14 @@ msgstr "" #: preheaders/checkout.php:823 #: classes/gateways/class.pmprogateway_paypalexpress.php:352 #: classes/gateways/class.pmprogateway_paypalexpress.php:411 +#: classes/gateways/class.pmprogateway_paypalexpress.php:353 +#: classes/gateways/class.pmprogateway_paypalexpress.php:412 msgid "The PayPal Token was lost." msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:346 #: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" @@ -12341,6 +12875,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:795 #: classes/gateways/class.pmprogateway_paypalexpress.php:804 #: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" @@ -12349,6 +12884,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypalexpress.php:796 #: classes/gateways/class.pmprogateway_paypalexpress.php:805 #: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" @@ -12373,6 +12909,7 @@ msgstr "" #: paid-memberships-pro.php:162 #: paid-memberships-pro.php:165 #: paid-memberships-pro.php:166 +#: paid-memberships-pro.php:172 msgid "PayPal Standard" msgstr "" @@ -12427,6 +12964,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:258 #: classes/gateways/class.pmprogateway_stripe.php:216 #: paid-memberships-pro.php:162 +#: classes/gateways/class.pmprogateway_stripe.php:234 +#: paid-memberships-pro.php:168 msgid "Stripe" msgstr "" @@ -12443,6 +12982,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:624 #: classes/gateways/class.pmprogateway_stripe.php:630 #: classes/gateways/class.pmprogateway_stripe.php:394 +#: classes/gateways/class.pmprogateway_stripe.php:420 msgid "Stripe API Version" msgstr "" @@ -12494,6 +13034,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:554 #: classes/gateways/class.pmprogateway_stripe.php:560 #: classes/gateways/class.pmprogateway_stripe.php:324 +#: classes/gateways/class.pmprogateway_stripe.php:350 msgid "Publishable Key" msgstr "" @@ -12511,6 +13052,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:562 #: classes/gateways/class.pmprogateway_stripe.php:568 #: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" @@ -12541,6 +13083,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:570 #: classes/gateways/class.pmprogateway_stripe.php:576 #: classes/gateways/class.pmprogateway_stripe.php:340 +#: classes/gateways/class.pmprogateway_stripe.php:366 msgid "Secret Key" msgstr "" @@ -12560,6 +13103,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:348 #: classes/gateways/class.pmprogateway_stripe.php:1882 #: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" @@ -12578,6 +13123,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:612 #: classes/gateways/class.pmprogateway_stripe.php:352 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" @@ -12588,6 +13135,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:588 #: classes/gateways/class.pmprogateway_stripe.php:594 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" @@ -12598,6 +13146,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:595 #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "A webhook is set up in Stripe, but it is using an old API version." msgstr "" @@ -12609,6 +13158,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:365 #: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" @@ -12619,6 +13170,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:601 #: classes/gateways/class.pmprogateway_stripe.php:607 #: classes/gateways/class.pmprogateway_stripe.php:371 +#: classes/gateways/class.pmprogateway_stripe.php:397 msgid "Disable Webhook" msgstr "" @@ -12643,6 +13195,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:863 #: classes/gateways/class.pmprogateway_stripe.php:371 #: classes/gateways/class.pmprogateway_stripe.php:503 +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 msgid "Your webhook is enabled." msgstr "" @@ -12674,6 +13228,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:791 #: classes/gateways/class.pmprogateway_stripe.php:825 #: classes/gateways/class.pmprogateway_stripe.php:530 +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." msgstr "" @@ -12691,6 +13247,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:383 #: classes/gateways/class.pmprogateway_stripe.php:1886 #: classes/gateways/class.pmprogateway_stripe.php:1884 +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 msgid "Webhook URL" msgstr "" @@ -12723,6 +13281,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:629 #: classes/gateways/class.pmprogateway_stripe.php:635 #: classes/gateways/class.pmprogateway_stripe.php:399 +#: adminpages/orders.php:570 +#: classes/gateways/class.pmprogateway_stripe.php:425 msgid "Show Billing Address Fields" msgstr "" @@ -12754,6 +13314,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:638 #: classes/gateways/class.pmprogateway_stripe.php:644 #: classes/gateways/class.pmprogateway_stripe.php:408 +#: classes/gateways/class.pmprogateway_stripe.php:434 msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.
If No, make sure you disable address verification in the Stripe dashboard settings." msgstr "" @@ -12764,6 +13325,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:643 #: classes/gateways/class.pmprogateway_stripe.php:649 #: classes/gateways/class.pmprogateway_stripe.php:413 +#: classes/gateways/class.pmprogateway_stripe.php:439 msgid "Enable Payment Request Button" msgstr "" @@ -12774,6 +13336,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:661 #: classes/gateways/class.pmprogateway_stripe.php:667 #: classes/gateways/class.pmprogateway_stripe.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:457 #, php-format msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" msgstr "" @@ -12785,6 +13348,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:674 #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:444 +#: classes/gateways/class.pmprogateway_stripe.php:470 #, php-format msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." msgstr "" @@ -12796,6 +13360,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:676 #: classes/gateways/class.pmprogateway_stripe.php:682 #: classes/gateways/class.pmprogateway_stripe.php:446 +#: classes/gateways/class.pmprogateway_stripe.php:472 #, php-format msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." msgstr "" @@ -12807,6 +13372,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:678 #: classes/gateways/class.pmprogateway_stripe.php:684 #: classes/gateways/class.pmprogateway_stripe.php:448 +#: classes/gateways/class.pmprogateway_stripe.php:474 #, php-format msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." msgstr "" @@ -12818,6 +13384,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:680 #: classes/gateways/class.pmprogateway_stripe.php:686 #: classes/gateways/class.pmprogateway_stripe.php:450 +#: classes/gateways/class.pmprogateway_stripe.php:476 #, php-format msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." msgstr "" @@ -12833,6 +13400,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:705 #: classes/gateways/class.pmprogateway_stripe.php:711 #: classes/gateways/class.pmprogateway_stripe.php:475 +#: classes/gateways/class.pmprogateway_stripe.php:501 #, php-format msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." msgstr "" @@ -12844,6 +13412,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:707 #: classes/gateways/class.pmprogateway_stripe.php:726 #: classes/gateways/class.pmprogateway_stripe.php:732 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" @@ -12861,6 +13430,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:798 #: classes/gateways/class.pmprogateway_stripe.php:872 #: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" @@ -12871,6 +13441,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:842 #: classes/gateways/class.pmprogateway_stripe.php:848 #: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" @@ -12887,6 +13458,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:898 #: classes/gateways/class.pmprogateway_stripe.php:904 #: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" @@ -12896,6 +13468,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1293 #: classes/gateways/class.pmprogateway_stripe.php:1299 #: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" @@ -12912,6 +13485,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1327 #: classes/gateways/class.pmprogateway_stripe.php:1333 #: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" @@ -12972,6 +13546,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2646 #: classes/gateways/class.pmprogateway_stripe.php:2648 #: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "" @@ -13097,6 +13672,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2653 #: classes/gateways/class.pmprogateway_stripe.php:2649 #: pages/billing.php:441 +#: classes/gateways/class.pmprogateway_stripe.php:3106 msgid "Update" msgstr "" @@ -13264,6 +13840,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4067 #: classes/gateways/class.pmprogateway_stripe.php:4058 #: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "" @@ -13335,6 +13913,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4168 #: classes/gateways/class.pmprogateway_stripe.php:4159 #: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "" @@ -13401,6 +13981,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4213 #: classes/gateways/class.pmprogateway_stripe.php:4195 #: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "" @@ -13441,6 +14023,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3041 #: classes/gateways/class.pmprogateway_stripe.php:3043 #: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "" @@ -13488,6 +14071,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2672 #: classes/gateways/class.pmprogateway_stripe.php:1731 #: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "" @@ -13531,6 +14115,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2688 #: classes/gateways/class.pmprogateway_stripe.php:1747 #: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "" @@ -13577,6 +14162,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4327 #: classes/gateways/class.pmprogateway_stripe.php:4333 #: classes/gateways/class.pmprogateway_stripe.php:4323 +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "" @@ -13610,6 +14197,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:4345 #: classes/gateways/class.pmprogateway_stripe.php:4347 #: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 #, php-format msgid "Error: Unkown error while refunding charge #%s" msgstr "" @@ -13630,6 +14218,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3370 #: classes/gateways/class.pmprogateway_stripe.php:3366 #: classes/gateways/class.pmprogateway_stripe.php:3368 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" @@ -13659,6 +14248,10 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2542 #: classes/gateways/class.pmprogateway_stripe.php:2579 #: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" @@ -13682,6 +14275,7 @@ msgstr "" #: paid-memberships-pro.php:156 #: paid-memberships-pro.php:157 #: paid-memberships-pro.php:165 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "" @@ -13689,24 +14283,28 @@ msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:108 #: classes/gateways/class.pmprogateway_twocheckout.php:114 #: classes/gateways/class.pmprogateway_twocheckout.php:116 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:124 #: classes/gateways/class.pmprogateway_twocheckout.php:123 #: classes/gateways/class.pmprogateway_twocheckout.php:125 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:133 #: classes/gateways/class.pmprogateway_twocheckout.php:132 #: classes/gateways/class.pmprogateway_twocheckout.php:134 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:142 #: classes/gateways/class.pmprogateway_twocheckout.php:141 #: classes/gateways/class.pmprogateway_twocheckout.php:152 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "" @@ -13716,12 +14314,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:137 #: classes/gateways/class.pmprogateway_twocheckout.php:146 #: classes/gateways/class.pmprogateway_twocheckout.php:157 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:151 #: classes/gateways/class.pmprogateway_twocheckout.php:150 #: classes/gateways/class.pmprogateway_twocheckout.php:161 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "" @@ -13732,12 +14332,14 @@ msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:145 #: classes/gateways/class.pmprogateway_twocheckout.php:155 #: classes/gateways/class.pmprogateway_twocheckout.php:166 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:159 #: classes/gateways/class.pmprogateway_twocheckout.php:158 #: classes/gateways/class.pmprogateway_twocheckout.php:169 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "" @@ -13746,6 +14348,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_twocheckout.php:203 #: classes/gateways/class.pmprogateway_twocheckout.php:204 #: classes/gateways/class.pmprogateway_twocheckout.php:214 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "" @@ -13855,6 +14458,7 @@ msgstr "" #: blocks/account-page/block.js:59 #: js/blocks.build.js:303 #: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -13879,6 +14483,7 @@ msgstr "" #: blocks/cancel-page/block.js:39 #: js/blocks.build.js:677 #: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -13903,6 +14508,7 @@ msgstr "" #: blocks/confirmation-page/block.js:39 #: js/blocks.build.js:1136 #: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" @@ -16510,6 +17116,7 @@ msgstr "" #: includes/functions.php:2409 #: includes/functions.php:2440 #: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "" @@ -16528,6 +17135,7 @@ msgstr "" #: includes/functions.php:2433 #: includes/functions.php:2464 #: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" @@ -16552,6 +17160,7 @@ msgstr "" #: includes/functions.php:2842 #: includes/functions.php:2873 #: includes/functions.php:2895 +#: includes/functions.php:2897 msgid "Subtotal" msgstr "" @@ -16574,6 +17183,7 @@ msgstr "" #: includes/functions.php:2857 #: includes/functions.php:2888 #: includes/functions.php:2910 +#: includes/functions.php:2912 msgid "Coupon" msgstr "" @@ -16651,6 +17261,8 @@ msgstr "" #: js/blocks.build.js:798 #: js/blocks.build.js:1004 #: js/blocks.build.js:1086 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 msgid "Membership Level" msgstr "" @@ -16933,6 +17545,7 @@ msgstr "" #: includes/profile.php:843 #: includes/profile.php:855 #: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" @@ -16950,6 +17563,7 @@ msgstr "" #: includes/profile.php:839 #: includes/profile.php:851 #: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -17019,6 +17633,7 @@ msgstr "" #: includes/profile.php:891 #: includes/profile.php:903 #: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" @@ -17039,6 +17654,7 @@ msgstr "" #: includes/profile.php:906 #: includes/scripts.php:85 #: includes/profile.php:902 +#: includes/profile.php:942 msgid "Strength Indicator" msgstr "" @@ -17053,6 +17669,7 @@ msgstr "" #: includes/profile.php:898 #: includes/profile.php:910 #: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -17235,6 +17852,8 @@ msgstr "" #: includes/profile.php:499 #: includes/profile.php:412 #: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" @@ -17242,6 +17861,7 @@ msgstr "" #: includes/profile.php:496 #: includes/profile.php:502 #: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" @@ -17249,6 +17869,7 @@ msgstr "" #: includes/profile.php:497 #: includes/profile.php:503 #: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" @@ -17256,6 +17877,7 @@ msgstr "" #: includes/profile.php:498 #: includes/profile.php:504 #: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -17305,6 +17927,7 @@ msgstr "" #: includes/privacy.php:363 #: adminpages/emailtemplates.php:170 +#: adminpages/emailtemplates.php:162 msgid "Credit Card Type" msgstr "" @@ -17363,6 +17986,7 @@ msgstr "" #: shortcodes/pmpro_account.php:224 #: pages/invoice.php:43 #: shortcodes/pmpro_account.php:244 +#: adminpages/orders.php:1705 msgid "Paid" msgstr "" @@ -17384,6 +18008,8 @@ msgstr "" #: includes/profile.php:255 #: includes/profile.php:186 #: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "" @@ -17402,6 +18028,7 @@ msgstr "" #: includes/profile.php:156 #: includes/profile.php:138 #: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" @@ -17410,6 +18037,7 @@ msgstr "" #: includes/profile.php:162 #: includes/profile.php:144 #: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" @@ -17418,6 +18046,7 @@ msgstr "" #: includes/profile.php:176 #: includes/profile.php:158 #: includes/profile.php:134 +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" @@ -17425,6 +18054,7 @@ msgstr "" #: includes/profile.php:644 #: includes/profile.php:656 #: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" @@ -17434,6 +18064,7 @@ msgstr "" #: includes/profile.php:679 #: includes/profile.php:691 #: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" @@ -17443,6 +18074,7 @@ msgstr "" #: includes/profile.php:689 #: includes/profile.php:701 #: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" @@ -17452,6 +18084,7 @@ msgstr "" #: includes/profile.php:691 #: includes/profile.php:703 #: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" @@ -17461,6 +18094,7 @@ msgstr "" #: includes/profile.php:695 #: includes/profile.php:707 #: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" @@ -17471,6 +18105,7 @@ msgstr "" #: includes/profile.php:722 #: includes/profile.php:734 #: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" @@ -17517,6 +18152,7 @@ msgstr "" #: includes/profile.php:759 #: includes/profile.php:755 #: pages/billing.php:166 +#: includes/profile.php:795 msgid "First Name" msgstr "" @@ -17563,6 +18199,7 @@ msgstr "" #: includes/profile.php:760 #: includes/profile.php:756 #: pages/billing.php:170 +#: includes/profile.php:796 msgid "Last Name" msgstr "" @@ -17574,6 +18211,7 @@ msgstr "" #: includes/profile.php:749 #: includes/profile.php:761 #: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" @@ -17581,6 +18219,7 @@ msgstr "" #: includes/profile.php:762 #: includes/profile.php:774 #: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" @@ -17592,6 +18231,7 @@ msgstr "" #: includes/profile.php:785 #: includes/profile.php:797 #: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" @@ -17603,6 +18243,7 @@ msgstr "" #: includes/profile.php:841 #: includes/profile.php:853 #: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" @@ -17614,6 +18255,7 @@ msgstr "" #: includes/profile.php:845 #: includes/profile.php:857 #: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" @@ -17625,6 +18267,7 @@ msgstr "" #: includes/profile.php:856 #: includes/profile.php:868 #: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" @@ -17649,6 +18292,8 @@ msgstr "" #: includes/profile.php:921 #: includes/profile.php:880 #: includes/profile.php:917 +#: includes/profile.php:920 +#: includes/profile.php:957 msgid "Change Password" msgstr "" @@ -17660,6 +18305,7 @@ msgstr "" #: includes/profile.php:886 #: includes/profile.php:898 #: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" @@ -17688,6 +18334,9 @@ msgstr "" #: includes/profile.php:896 #: includes/profile.php:901 #: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -18031,6 +18680,7 @@ msgstr "" #: pages/confirmation.php:78 #: pages/invoice.php:68 #: pages/billing.php:162 +#: adminpages/orders.php:568 msgid "Billing Address" msgstr "" @@ -19041,6 +19691,7 @@ msgstr "" #: pages/invoice.php:97 #: pages/invoice.php:125 #: includes/profile.php:413 +#: includes/profile.php:453 msgid "Total Billed" msgstr "" @@ -19071,6 +19722,7 @@ msgstr "" #: shortcodes/pmpro_account.php:227 #: pages/confirmation.php:138 #: shortcodes/pmpro_account.php:247 +#: pages/confirmation.php:65 msgid "Pending" msgstr "" @@ -19212,6 +19864,7 @@ msgstr "" #: paid-memberships-pro.php:156 #: paid-memberships-pro.php:159 #: paid-memberships-pro.php:160 +#: paid-memberships-pro.php:166 msgid "Testing Only" msgstr "" @@ -19234,6 +19887,7 @@ msgstr "" #: paid-memberships-pro.php:161 #: paid-memberships-pro.php:164 #: paid-memberships-pro.php:165 +#: paid-memberships-pro.php:171 msgid "PayPal Payflow Pro/PayPal Pro" msgstr "" @@ -19256,6 +19910,7 @@ msgstr "" #: paid-memberships-pro.php:166 #: paid-memberships-pro.php:168 #: paid-memberships-pro.php:169 +#: paid-memberships-pro.php:175 msgid "Cybersource" msgstr "" @@ -19265,6 +19920,7 @@ msgstr "" #: paid-memberships-pro.php:170 #: paid-memberships-pro.php:172 #: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" @@ -19283,6 +19939,7 @@ msgstr "" #: paid-memberships-pro.php:192 #: paid-memberships-pro.php:194 #: paid-memberships-pro.php:195 +#: paid-memberships-pro.php:201 msgid "Once a month" msgstr "" @@ -19447,6 +20104,7 @@ msgstr "" #: classes/class.pmproemail.php:907 #: includes/email.php:459 #: classes/class.pmproemail.php:900 +#: classes/class.pmproemail.php:1033 msgid "Your membership has been cancelled." msgstr "" @@ -19887,6 +20545,7 @@ msgstr "" #: shortcodes/pmpro_account.php:44 #: shortcodes/pmpro_account.php:45 #: includes/email-templates.php:68 +#: adminpages/orders.php:1431 msgid "Billing" msgstr "" @@ -21236,6 +21895,7 @@ msgstr "" #: pages/account.php:87 #: pages/account.php:91 #: adminpages/emailtemplates.php:156 +#: adminpages/emailtemplates.php:149 msgid "Billing Information" msgstr "" @@ -21308,6 +21968,7 @@ msgid "Success" msgstr "" #: pages/invoice.php:29 +#: blocks/confirmation-page/block.js:37 msgid "success" msgstr "" @@ -21404,185 +22065,233 @@ msgstr "" #: adminpages/discountcodes.php:697 #: adminpages/membershiplevels.php:580 #: adminpages/discountcodes.php:699 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" #: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" #: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" #: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" #: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" #: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" #: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" #: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" #: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" #: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" #: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" #: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" #: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" #: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" #: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" #: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" #: adminpages/emailtemplates.php:126 #: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" #: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" #: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" #: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" #: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" #: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" #: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" #: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" #: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" #: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" #: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" #: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" #: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" #: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" #: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" #: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" #: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" #: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" #: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" #: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" #: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" #: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" #: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" #: adminpages/emailtemplates.php:176 #: includes/profile.php:423 #: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" #: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" #: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" #: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" #: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" @@ -21614,41 +22323,48 @@ msgstr "" #: adminpages/reports/history.php:188 #: includes/profile.php:411 #: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" #: classes/class.memberorder.php:1141 #: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" #: classes/class.pmproemail.php:371 #: classes/class.pmproemail.php:377 #: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" #: classes/class.pmproemail.php:565 #: classes/class.pmproemail.php:577 #: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" #: classes/class.pmproemail.php:614 #: classes/class.pmproemail.php:626 #: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" #: classes/class.pmproemail.php:663 #: classes/class.pmproemail.php:675 #: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" #: classes/class.pmproemail.php:715 #: classes/class.pmproemail.php:727 #: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" @@ -21661,6 +22377,8 @@ msgstr "" #: includes/email.php:465 #: classes/class.pmproemail.php:898 #: classes/class.pmproemail.php:943 +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 msgid "The new level is %s." msgstr "" @@ -21673,18 +22391,22 @@ msgstr "" #: includes/email.php:475 #: classes/class.pmproemail.php:909 #: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 msgid "This membership does not expire." msgstr "" #: classes/class.pmproemail.php:940 #: classes/class.pmproemail.php:952 #: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" #: classes/class.pmproemail.php:980 #: classes/class.pmproemail.php:992 #: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" @@ -21696,6 +22418,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:450 #: classes/gateways/class.pmprogateway_stripe.php:1790 #: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" @@ -21704,6 +22427,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:362 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" @@ -21715,6 +22439,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:454 #: classes/gateways/class.pmprogateway_stripe.php:1795 #: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" @@ -21726,6 +22451,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:458 #: classes/gateways/class.pmprogateway_stripe.php:1799 #: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" @@ -21737,6 +22463,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:465 #: classes/gateways/class.pmprogateway_stripe.php:1807 #: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" @@ -21745,6 +22472,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:377 #: classes/gateways/class.pmprogateway_stripe.php:1811 #: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" @@ -21756,6 +22484,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:476 #: classes/gateways/class.pmprogateway_stripe.php:1824 #: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" @@ -21767,6 +22496,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:500 #: classes/gateways/class.pmprogateway_stripe.php:1840 #: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" @@ -21775,6 +22505,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:403 #: classes/gateways/class.pmprogateway_stripe.php:1844 #: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" @@ -21786,6 +22517,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:514 #: classes/gateways/class.pmprogateway_stripe.php:1861 #: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" @@ -21794,6 +22526,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:422 #: classes/gateways/class.pmprogateway_stripe.php:1868 #: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" @@ -21809,6 +22542,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:452 #: classes/gateways/class.pmprogateway_stripe.php:1793 #: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" @@ -21817,6 +22551,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:467 #: classes/gateways/class.pmprogateway_stripe.php:1813 #: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" @@ -21825,6 +22560,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:501 #: classes/gateways/class.pmprogateway_stripe.php:1846 #: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" @@ -21832,6 +22568,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:530 #: classes/gateways/class.pmprogateway_stripe.php:536 #: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" @@ -21840,6 +22577,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:620 #: classes/gateways/class.pmprogateway_stripe.php:626 #: classes/gateways/class.pmprogateway_stripe.php:390 +#: classes/gateways/class.pmprogateway_stripe.php:416 msgid "Other Stripe Settings" msgstr "" @@ -21848,6 +22586,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3567 #: classes/gateways/class.pmprogateway_stripe.php:3573 #: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" @@ -21857,6 +22596,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3595 #: classes/gateways/class.pmprogateway_stripe.php:3601 #: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" @@ -21866,6 +22606,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3631 #: classes/gateways/class.pmprogateway_stripe.php:3637 #: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" @@ -21877,6 +22618,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3670 #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" @@ -21888,6 +22630,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3672 #: classes/gateways/class.pmprogateway_stripe.php:3674 #: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" @@ -21899,6 +22642,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3676 #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" @@ -21910,6 +22654,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:3678 #: classes/gateways/class.pmprogateway_stripe.php:3680 #: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" @@ -22616,14 +23361,17 @@ msgid "This email is sent to the member when the trial portion of their membersh msgstr "" #: includes/email-templates.php:508 +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" #: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" #: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -22632,18 +23380,22 @@ msgid "" msgstr "" #: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" #: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" #: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" #: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -22655,6 +23407,7 @@ msgid "" msgstr "" #: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -22680,28 +23433,33 @@ msgstr "" #: includes/profile.php:410 #: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" #: includes/profile.php:413 #: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" #: includes/profile.php:414 #: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" #: includes/profile.php:485 #: includes/profile.php:488 #: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" #: includes/profile.php:537 #: includes/profile.php:546 #: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" @@ -22709,6 +23467,7 @@ msgstr "" #: blocks/account-invoices-section/block.js:39 #: js/blocks.build.js:119 #: js/blocks.build.js:137 +#: blocks/account-invoices-section/block.js:48 msgid "Membership Account: Invoices" msgstr "" @@ -22747,6 +23506,21 @@ msgstr "" #: js/blocks.build.js:1335 #: js/blocks.build.js:1496 #: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" @@ -22762,6 +23536,7 @@ msgstr "" #: blocks/account-links-section/block.js:39 #: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" @@ -22777,6 +23552,7 @@ msgstr "" #: blocks/account-membership-section/block.js:39 #: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" @@ -22809,6 +23585,7 @@ msgstr "" #: blocks/account-profile-section/block.js:40 #: js/blocks.build.js:492 #: js/blocks.build.js:510 +#: blocks/account-profile-section/block.js:46 msgid "Membership Account: Profile" msgstr "" @@ -22821,6 +23598,7 @@ msgstr "" #: blocks/billing-page/block.js:39 #: js/blocks.build.js:549 #: js/blocks.build.js:567 +#: blocks/billing-page/block.js:45 msgid "Membership Billing Page" msgstr "" @@ -22846,11 +23624,16 @@ msgstr "" #: blocks/checkout-button/block.js:41 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" #: blocks/checkout-button/block.js:42 #: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" @@ -22858,6 +23641,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:31 #: js/blocks.build.js:790 #: js/blocks.build.js:891 +#: blocks/checkout-button/block.js:71 msgid "Button Text" msgstr "" @@ -22865,6 +23649,7 @@ msgstr "" #: blocks/checkout-button/inspector.js:48 #: js/blocks.build.js:807 #: js/blocks.build.js:910 +#: blocks/checkout-button/block.js:82 msgid "CSS Class" msgstr "" @@ -22887,6 +23672,7 @@ msgstr "" #: blocks/checkout-page/block.js:52 #: js/blocks.build.js:973 #: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" @@ -22912,6 +23698,7 @@ msgstr "" #: blocks/invoice-page/block.js:39 #: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" @@ -22919,6 +23706,7 @@ msgstr "" #: blocks/levels-page/block.js:39 #: js/blocks.build.js:1263 #: js/blocks.build.js:1281 +#: blocks/levels-page/block.js:45 msgid "Membership Levels List" msgstr "" @@ -22951,6 +23739,7 @@ msgstr "" #: blocks/login/block.js:38 #: js/blocks.build.js:1335 +#: blocks/login/block.js:34 msgid "log in" msgstr "" @@ -22973,6 +23762,7 @@ msgstr "" #: blocks/member-profile-edit/block.js:35 #: js/blocks.build.js:1488 #: js/blocks.build.js:1504 +#: blocks/member-profile-edit/block.js:39 msgid "Member Profile Edit" msgstr "" @@ -22983,11 +23773,22 @@ msgstr "" #: blocks/member-profile-edit/block.js:27 #: js/blocks.build.js:1496 +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 msgid "member" msgstr "" #: blocks/member-profile-edit/block.js:28 #: js/blocks.build.js:1496 +#: blocks/account-page/block.js:41 msgid "profile" msgstr "" @@ -23007,6 +23808,7 @@ msgstr "" #: adminpages/discountcodes.php:871 #: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" @@ -23020,6 +23822,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:456 #: classes/gateways/class.pmprogateway_stripe.php:1797 #: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" @@ -23029,6 +23832,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:466 #: classes/gateways/class.pmprogateway_stripe.php:1808 #: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" @@ -23038,10 +23842,12 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:468 #: classes/gateways/class.pmprogateway_stripe.php:1816 #: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" #: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -23052,6 +23858,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:109 #: classes/class-pmpro-site-health.php:120 #: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" @@ -23059,6 +23866,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:128 #: classes/class-pmpro-site-health.php:139 #: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" @@ -23068,6 +23876,7 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:144 #: classes/class-pmpro-site-health.php:155 #: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" @@ -23077,12 +23886,15 @@ msgstr[1] "" #: classes/class-pmpro-site-health.php:161 #: classes/class-pmpro-site-health.php:172 #: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" #: classes/class-pmpro-site-health.php:174 #: classes/class-pmpro-site-health.php:185 #: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" @@ -23090,6 +23902,8 @@ msgstr "" #: classes/class-pmpro-site-health.php:189 #: classes/class-pmpro-site-health.php:193 #: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" @@ -23098,6 +23912,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:213 #: classes/class-pmpro-site-health.php:217 #: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" @@ -23105,6 +23920,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:268 #: classes/class-pmpro-site-health.php:272 #: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" @@ -23112,22 +23928,26 @@ msgstr "" #: classes/class-pmpro-site-health.php:345 #: classes/class-pmpro-site-health.php:349 #: classes/class-pmpro-site-health.php:346 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:533 #: classes/gateways/class.pmprogateway_stripe.php:539 #: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:534 #: classes/gateways/class.pmprogateway_stripe.php:540 #: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" #: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" @@ -23185,12 +24005,14 @@ msgstr "" #: classes/class-pmpro-site-health.php:365 #: classes/class-pmpro-site-health.php:406 #: classes/class-pmpro-site-health.php:403 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" #: classes/class-pmpro-site-health.php:369 #: classes/class-pmpro-site-health.php:410 #: classes/class-pmpro-site-health.php:407 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" @@ -23200,6 +24022,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:457 #: classes/class-pmpro-site-health.php:420 #: classes/class-pmpro-site-health.php:454 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" @@ -23209,6 +24032,7 @@ msgstr "" #: classes/class-pmpro-site-health.php:461 #: classes/class-pmpro-site-health.php:424 #: classes/class-pmpro-site-health.php:458 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" @@ -23218,54 +24042,64 @@ msgstr "" #: classes/class-pmpro-site-health.php:472 #: classes/class-pmpro-site-health.php:430 #: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" #: classes/class-pmpro-site-health.php:395 #: classes/class-pmpro-site-health.php:436 #: classes/class-pmpro-site-health.php:433 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" #: classes/class-pmpro-site-health.php:426 #: classes/class-pmpro-site-health.php:467 #: classes/class-pmpro-site-health.php:464 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:428 #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:466 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" #: classes/class-pmpro-site-health.php:443 #: classes/class-pmpro-site-health.php:484 #: classes/class-pmpro-site-health.php:481 +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" #: classes/class-pmpro-site-health.php:444 #: classes/class-pmpro-site-health.php:485 #: classes/class-pmpro-site-health.php:482 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" #: classes/class-pmpro-site-health.php:445 #: classes/class-pmpro-site-health.php:486 #: classes/class-pmpro-site-health.php:483 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" #: classes/class-pmpro-site-health.php:450 #: classes/class-pmpro-site-health.php:491 #: classes/class-pmpro-site-health.php:488 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:453 #: classes/class-pmpro-site-health.php:494 #: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" @@ -23276,42 +24110,52 @@ msgstr "" #: classes/class-pmpro-site-health.php:500 #: classes/class-pmpro-site-health.php:503 #: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:465 #: classes/class-pmpro-site-health.php:506 #: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" #: classes/class-pmpro-site-health.php:466 #: classes/class-pmpro-site-health.php:507 #: classes/class-pmpro-site-health.php:504 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" #: classes/class-pmpro-site-health.php:469 #: classes/class-pmpro-site-health.php:510 #: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" #: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" #: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" #: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" #: adminpages/dashboard.php:186 #: adminpages/dashboard.php:188 #: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -23326,51 +24170,63 @@ msgstr "" #: classes/class-pmpro-site-health.php:389 #: classes/class-pmpro-site-health.php:386 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1424 #: classes/gateways/class.pmprogateway_stripe.php:1679 #: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1432 #: classes/gateways/class.pmprogateway_stripe.php:1687 #: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1693 #: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2088 #: classes/gateways/class.pmprogateway_stripe.php:2086 #: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2099 #: classes/gateways/class.pmprogateway_stripe.php:2097 #: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" @@ -23378,6 +24234,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2420 #: classes/gateways/class.pmprogateway_stripe.php:2422 #: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" @@ -23385,6 +24242,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2426 #: classes/gateways/class.pmprogateway_stripe.php:2428 #: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" @@ -23392,6 +24250,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2576 #: classes/gateways/class.pmprogateway_stripe.php:2578 #: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" @@ -23400,6 +24259,8 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2610 #: classes/gateways/class.pmprogateway_stripe.php:2612 #: classes/gateways/class.pmprogateway_stripe.php:2608 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" @@ -23413,6 +24274,7 @@ msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2712 #: classes/gateways/class.pmprogateway_stripe.php:2714 #: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" @@ -23434,10 +24296,12 @@ msgstr "" #: adminpages/dashboard.php:181 #: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" @@ -23447,31 +24311,39 @@ msgid "renewal" msgstr "" #: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" #: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" #: adminpages/reports/sales.php:409 #: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" #: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" #: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" #: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" #: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -23493,21 +24365,25 @@ msgstr "" #: classes/class-pmpro-site-health.php:276 #: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" #: classes/class-pmpro-site-health.php:282 #: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2363 #: classes/gateways/class.pmprogateway_stripe.php:2365 #: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" @@ -23533,26 +24409,32 @@ msgid "Assign the menu under Appearance > Menus." msgstr "" #: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" #: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" #: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" #: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" #: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" #: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -23561,51 +24443,62 @@ msgid "Order %s deleted successfully." msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" #: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. #: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. #: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" #: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. #: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" #: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgctxt "Search form label" msgid "Search" msgstr "" #: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 msgid "Users" msgstr "" @@ -23619,19 +24512,23 @@ msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 #: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 #: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" #: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" @@ -23662,3 +24559,758 @@ msgstr "" #: pages/levels.php:84 msgid "Return to Home" msgstr "" + +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/discountcodes.php:360 +#: adminpages/membershiplevels.php:169 +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgstr "" + +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#. translators: %s is the Order ID. +#: adminpages/discountcodes.php:835 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/emailsettings.php:133 +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgstr "" + +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +msgstr "" + +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." +msgstr "" + +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + +#: adminpages/membershiplevels.php:506 +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgstr "" + +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +msgstr "" + +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +msgstr "" + +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" +msgstr "" + +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:948 +msgid "Additional Order Information" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" +msgstr "" + +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." +msgstr "" + +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" +msgstr "" + +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: blocks/account-invoices-section/block.js:22 +msgid "PMPro Page: Account Invoices" +msgstr "" + +#: blocks/account-invoices-section/block.js:23 +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." +msgstr "" + +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-links-section/block.js:22 +msgid "PMPro Page: Account Links" +msgstr "" + +#: blocks/account-links-section/block.js:23 +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" +msgstr "" + +#: blocks/account-membership-section/block.js:22 +msgid "PMPro Page: Account Memberships" +msgstr "" + +#: blocks/account-membership-section/block.js:23 +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." +msgstr "" + +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + +#: blocks/account-page/block.js:25 +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-profile-section/block.js:23 +msgid "PMPro Page: Account Profile View" +msgstr "" + +#: blocks/account-profile-section/block.js:24 +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/billing-page/block.js:22 +msgid "PMPro Page: Billing" +msgstr "" + +#: blocks/billing-page/block.js:23 +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" +msgstr "" + +#: blocks/cancel-page/block.js:23 +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" +msgstr "" + +#: blocks/checkout-button/block.js:32 +msgid "Inserts a button that links directly to membership checkout for the selected level." +msgstr "" + +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-page/block.js:29 +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" +msgstr "" + +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + +#: blocks/confirmation-page/block.js:23 +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" +msgstr "" + +#: blocks/invoice-page/block.js:23 +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" +msgstr "" + +#: blocks/levels-page/block.js:22 +msgid "Membership Levels and Pricing Table" +msgstr "" + +#: blocks/levels-page/block.js:23 +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." +msgstr "" + +#: blocks/levels-page/block.js:34 +msgid "price" +msgstr "" + +#: blocks/levels-page/block.js:35 +msgid "pricing table" +msgstr "" + +#: blocks/login/block.js:25 +msgid "Login Form" +msgstr "" + +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" +msgstr "" + +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." +msgstr "" + +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" +msgstr "" + +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" +msgstr "" + +#: blocks/membership/block.js:32 +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" +msgstr "" diff --git a/languages/paid-memberships-pro.pot b/languages/paid-memberships-pro.pot index dea36da9d..372c40e8d 100644 --- a/languages/paid-memberships-pro.pot +++ b/languages/paid-memberships-pro.pot @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Paid Memberships Pro plugin. msgid "" msgstr "" -"Project-Id-Version: Paid Memberships Pro 2.7.5\n" +"Project-Id-Version: Paid Memberships Pro 2.8\n" "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n" "Last-Translator: Paid Memberships Pro \n" "Language-Team: Paid Memberships Pro \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-04-19T13:19:59+00:00\n" +"POT-Creation-Date: 2022-05-05T20:36:52+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.6.0\n" "X-Domain: paid-memberships-pro\n" @@ -23,32 +23,19 @@ msgstr "" #: includes/compatibility/elementor/class-pmpro-elementor.php:65 #: includes/menus.php:34 #: includes/menus.php:104 -#: blocks/account-invoices-section/block.js:38 -#: blocks/account-links-section/block.js:38 -#: blocks/account-membership-section/block.js:38 -#: blocks/account-page/block.js:58 -#: blocks/account-profile-section/block.js:39 -#: blocks/billing-page/block.js:38 -#: blocks/cancel-page/block.js:38 -#: blocks/checkout-page/block.js:51 -#: blocks/confirmation-page/block.js:38 -#: blocks/invoice-page/block.js:38 -#: blocks/levels-page/block.js:38 +#: blocks/account-invoices-section/block.js:47 +#: blocks/account-links-section/block.js:47 +#: blocks/account-membership-section/block.js:45 +#: blocks/account-page/block.js:72 +#: blocks/account-profile-section/block.js:45 +#: blocks/billing-page/block.js:44 +#: blocks/cancel-page/block.js:44 +#: blocks/checkout-page/block.js:58 +#: blocks/confirmation-page/block.js:46 +#: blocks/invoice-page/block.js:45 +#: blocks/levels-page/block.js:44 #: blocks/login/block.js:46 -#: blocks/member-profile-edit/block.js:33 -#: js/blocks.build.js:135 -#: js/blocks.build.js:192 -#: js/blocks.build.js:249 -#: js/blocks.build.js:340 -#: js/blocks.build.js:508 -#: js/blocks.build.js:565 -#: js/blocks.build.js:693 -#: js/blocks.build.js:1001 -#: js/blocks.build.js:1152 -#: js/blocks.build.js:1222 -#: js/blocks.build.js:1279 -#: js/blocks.build.js:1342 -#: js/blocks.build.js:1502 +#: blocks/member-profile-edit/block.js:37 msgid "Paid Memberships Pro" msgstr "" @@ -101,7 +88,7 @@ msgid "Check Again" msgstr "" #: adminpages/addons.php:94 -#: adminpages/orders.php:1015 +#: adminpages/orders.php:1103 #: includes/metaboxes.php:19 msgid "All" msgstr "" @@ -131,7 +118,7 @@ msgid "Type" msgstr "" #: adminpages/addons.php:111 -#: adminpages/membershiplevels.php:359 +#: adminpages/membershiplevels.php:357 msgid "Description" msgstr "" @@ -178,20 +165,27 @@ msgid "WordPress.org" msgstr "" #: adminpages/addons.php:250 -#: adminpages/orders.php:583 -#: adminpages/orders.php:913 -#: adminpages/orders.php:1537 -#: adminpages/orders.php:1546 -#: includes/profile.php:151 -#: includes/profile.php:443 -#: includes/profile.php:444 -#: includes/profile.php:516 -#: includes/profile.php:517 -#: includes/profile.php:518 +#: adminpages/orders.php:704 +#: adminpages/orders.php:996 +#: adminpages/orders.php:1689 +#: adminpages/orders.php:1698 +#: classes/class.pmproemail.php:261 +#: classes/class.pmproemail.php:327 +#: includes/profile.php:167 +#: includes/profile.php:483 +#: includes/profile.php:484 +#: includes/profile.php:556 +#: includes/profile.php:557 +#: includes/profile.php:558 #: shortcodes/pmpro_account.php:254 msgid "N/A" msgstr "" +#. translators: $1$s - Paid Memberships Pro plugin name; $2$s - WP.org review link. +#: adminpages/admin_footer.php:6 +msgid "

Please rate us ★★★★★ on WordPress.org to help others find %2$s. Thank you from the %3$s team!

" +msgstr "" + #: adminpages/admin_header.php:25 msgid "Add a membership level to get started." msgstr "" @@ -272,7 +266,7 @@ msgid "Please edit your discount codes" msgstr "" #: adminpages/admin_header.php:152 -#: classes/gateways/class.pmprogateway_stripe.php:1338 +#: classes/gateways/class.pmprogateway_stripe.php:1463 msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade." msgstr "" @@ -309,15 +303,15 @@ msgid "Dashboard" msgstr "" #: adminpages/admin_header.php:226 -#: adminpages/reports/login.php:122 +#: adminpages/reports/login.php:102 #: includes/adminpages.php:52 #: includes/adminpages.php:158 msgid "Members" msgstr "" #: adminpages/admin_header.php:230 -#: adminpages/discountcodes.php:884 -#: adminpages/orders.php:971 +#: adminpages/discountcodes.php:889 +#: adminpages/orders.php:1054 #: classes/class-pmpro-admin-activity-email.php:221 #: classes/class-pmpro-site-health.php:77 #: includes/adminpages.php:53 @@ -352,7 +346,7 @@ msgid "Membership Levels" msgstr "" #: adminpages/admin_header.php:253 -#: adminpages/discountcodes.php:790 +#: adminpages/discountcodes.php:791 msgid "Levels" msgstr "" @@ -393,7 +387,7 @@ msgid "Email Templates" msgstr "" #: adminpages/admin_header.php:277 -#: adminpages/advancedsettings.php:134 +#: adminpages/advancedsettings.php:142 #: includes/adminpages.php:73 msgid "Advanced Settings" msgstr "" @@ -413,296 +407,320 @@ msgstr "" msgid "Are you sure you want to do that? Try again." msgstr "" -#: adminpages/advancedsettings.php:69 +#: adminpages/advancedsettings.php:76 msgid "Your advanced settings have been updated." msgstr "" -#: adminpages/advancedsettings.php:108 +#: adminpages/advancedsettings.php:116 #: includes/updates/upgrade_1.php:7 msgid "This content is for !!levels!! members only.
Join Now" msgstr "" -#: adminpages/advancedsettings.php:113 +#: adminpages/advancedsettings.php:121 msgid "This content is for !!levels!! members only.
Log In Join Now" msgstr "" -#: adminpages/advancedsettings.php:118 +#: adminpages/advancedsettings.php:126 #: includes/updates/upgrade_1.php:13 msgid "This content is for members only. Visit the site and log in/register to read." msgstr "" -#: adminpages/advancedsettings.php:137 +#: adminpages/advancedsettings.php:144 msgid "Restrict Dashboard Access" msgstr "" -#: adminpages/advancedsettings.php:142 +#: adminpages/advancedsettings.php:149 msgid "WordPress Dashboard" msgstr "" -#: adminpages/advancedsettings.php:145 +#: adminpages/advancedsettings.php:152 msgid "Block all users with the Subscriber role from accessing the Dashboard." msgstr "" -#: adminpages/advancedsettings.php:150 +#: adminpages/advancedsettings.php:157 msgid "WordPress Toolbar" msgstr "" -#: adminpages/advancedsettings.php:153 +#: adminpages/advancedsettings.php:160 msgid "Hide the Toolbar from all users with the Subscriber role." msgstr "" -#: adminpages/advancedsettings.php:161 +#: adminpages/advancedsettings.php:168 msgid "Message Settings" msgstr "" -#: adminpages/advancedsettings.php:166 +#: adminpages/advancedsettings.php:173 msgid "Message for Logged-in Non-members" msgstr "" -#: adminpages/advancedsettings.php:170 +#: adminpages/advancedsettings.php:177 msgid "This message replaces the post content for non-members. Available variables" msgstr "" -#: adminpages/advancedsettings.php:175 +#: adminpages/advancedsettings.php:182 msgid "Message for Logged-out Users" msgstr "" -#: adminpages/advancedsettings.php:179 +#: adminpages/advancedsettings.php:186 msgid "This message replaces the post content for logged-out visitors." msgstr "" -#: adminpages/advancedsettings.php:179 -#: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:186 +#: adminpages/advancedsettings.php:195 msgid "Available variables" msgstr "" -#: adminpages/advancedsettings.php:184 +#: adminpages/advancedsettings.php:191 msgid "Message for RSS Feed" msgstr "" -#: adminpages/advancedsettings.php:188 +#: adminpages/advancedsettings.php:195 msgid "This message replaces the post content in RSS feeds." msgstr "" -#: adminpages/advancedsettings.php:196 -#: adminpages/membershiplevels.php:624 +#: adminpages/advancedsettings.php:203 +#: adminpages/membershiplevels.php:625 msgid "Content Settings" msgstr "" -#: adminpages/advancedsettings.php:201 +#: adminpages/advancedsettings.php:208 msgid "Filter searches and archives?" msgstr "" -#: adminpages/advancedsettings.php:205 +#: adminpages/advancedsettings.php:212 msgid "No - Non-members will see restricted posts/pages in searches and archives." msgstr "" -#: adminpages/advancedsettings.php:206 +#: adminpages/advancedsettings.php:213 msgid "Yes - Only members will see restricted posts/pages in searches and archives." msgstr "" -#: adminpages/advancedsettings.php:212 +#: adminpages/advancedsettings.php:219 msgid "Show Excerpts to Non-Members?" msgstr "" -#: adminpages/advancedsettings.php:216 +#: adminpages/advancedsettings.php:223 msgid "No - Hide excerpts." msgstr "" -#: adminpages/advancedsettings.php:217 +#: adminpages/advancedsettings.php:224 msgid "Yes - Show excerpts." msgstr "" -#: adminpages/advancedsettings.php:226 +#: adminpages/advancedsettings.php:233 msgid "Checkout Settings" msgstr "" -#: adminpages/advancedsettings.php:231 +#: adminpages/advancedsettings.php:238 msgid "Require Terms of Service on signups?" msgstr "" -#: adminpages/advancedsettings.php:238 +#: adminpages/advancedsettings.php:245 msgid "If yes, create a WordPress page containing your TOS agreement and assign it using the dropdown above." msgstr "" -#: adminpages/advancedsettings.php:243 +#: adminpages/advancedsettings.php:250 msgid "Enable Spam Protection?" msgstr "" -#: adminpages/advancedsettings.php:247 -#: adminpages/advancedsettings.php:260 -#: adminpages/advancedsettings.php:352 -#: adminpages/advancedsettings.php:411 -#: adminpages/advancedsettings.php:494 -#: adminpages/membershiplevels.php:941 -#: adminpages/paymentsettings.php:279 -#: classes/gateways/class.pmprogateway_stripe.php:404 -#: classes/gateways/class.pmprogateway_stripe.php:418 +#: adminpages/advancedsettings.php:254 +#: adminpages/advancedsettings.php:267 +#: adminpages/advancedsettings.php:359 +#: adminpages/advancedsettings.php:418 +#: adminpages/advancedsettings.php:526 +#: adminpages/membershiplevels.php:939 +#: adminpages/paymentsettings.php:277 +#: classes/gateways/class.pmprogateway_stripe.php:430 +#: classes/gateways/class.pmprogateway_stripe.php:444 #: includes/compatibility/beaver-builder.php:45 #: includes/compatibility/beaver-builder.php:141 -#: includes/profile.php:68 +#: includes/profile.php:78 msgid "No" msgstr "" -#: adminpages/advancedsettings.php:249 +#: adminpages/advancedsettings.php:256 msgid "Yes - Enable Spam Protection" msgstr "" -#: adminpages/advancedsettings.php:251 +#: adminpages/advancedsettings.php:258 msgid "Block IPs from checkout if there are more than %d failures within %d minutes." msgstr "" -#: adminpages/advancedsettings.php:256 +#: adminpages/advancedsettings.php:263 msgid "Use reCAPTCHA?" msgstr "" -#: adminpages/advancedsettings.php:262 +#: adminpages/advancedsettings.php:269 msgid "Yes - All memberships." msgstr "" -#: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "A free reCAPTCHA key is required." msgstr "" -#: adminpages/advancedsettings.php:264 +#: adminpages/advancedsettings.php:271 msgid "Click here to signup for reCAPTCHA" msgstr "" -#: adminpages/advancedsettings.php:272 +#: adminpages/advancedsettings.php:279 msgid "reCAPTCHA Version" msgstr "" -#: adminpages/advancedsettings.php:275 +#: adminpages/advancedsettings.php:282 msgid " v2 - Checkbox" msgstr "" -#: adminpages/advancedsettings.php:276 +#: adminpages/advancedsettings.php:283 msgid "v3 - Invisible" msgstr "" -#: adminpages/advancedsettings.php:278 +#: adminpages/advancedsettings.php:285 msgid "Changing your version will require new API keys." msgstr "" -#: adminpages/advancedsettings.php:282 +#: adminpages/advancedsettings.php:289 msgid "reCAPTCHA Site Key" msgstr "" -#: adminpages/advancedsettings.php:288 +#: adminpages/advancedsettings.php:295 msgid "reCAPTCHA Secret Key" msgstr "" -#: adminpages/advancedsettings.php:298 +#: adminpages/advancedsettings.php:305 msgid "Communication Settings" msgstr "" -#: adminpages/advancedsettings.php:301 +#: adminpages/advancedsettings.php:308 msgid "Notifications" msgstr "" -#: adminpages/advancedsettings.php:305 +#: adminpages/advancedsettings.php:312 msgid "Show all notifications." msgstr "" -#: adminpages/advancedsettings.php:308 +#: adminpages/advancedsettings.php:315 msgid "Show only security notifications." msgstr "" -#: adminpages/advancedsettings.php:312 +#: adminpages/advancedsettings.php:319 msgid "Notifications are occasionally shown on the Paid Memberships Pro settings pages." msgstr "" -#: adminpages/advancedsettings.php:317 +#: adminpages/advancedsettings.php:324 msgid "Activity Email Frequency" msgstr "" -#: adminpages/advancedsettings.php:322 -#: adminpages/reports/memberships.php:333 +#: adminpages/advancedsettings.php:329 +#: adminpages/reports/memberships.php:332 #: adminpages/reports/sales.php:313 msgid "Daily" msgstr "" -#: adminpages/advancedsettings.php:325 +#: adminpages/advancedsettings.php:332 msgid "Weekly" msgstr "" -#: adminpages/advancedsettings.php:328 -#: adminpages/reports/memberships.php:334 +#: adminpages/advancedsettings.php:335 +#: adminpages/reports/memberships.php:333 #: adminpages/reports/sales.php:314 msgid "Monthly" msgstr "" -#: adminpages/advancedsettings.php:331 +#: adminpages/advancedsettings.php:338 #: includes/privacy.php:175 -#: includes/profile.php:511 +#: includes/profile.php:551 msgid "Never" msgstr "" -#: adminpages/advancedsettings.php:335 +#: adminpages/advancedsettings.php:342 msgid "Send periodic sales and revenue updates from this site to the administration email address." msgstr "" -#: adminpages/advancedsettings.php:343 +#: adminpages/advancedsettings.php:350 #: adminpages/dashboard.php:140 #: adminpages/membershiplevels.php:550 msgid "Other Settings" msgstr "" -#: adminpages/advancedsettings.php:348 +#: adminpages/advancedsettings.php:355 msgid "Hide Ads From Members?" msgstr "" -#: adminpages/advancedsettings.php:353 +#: adminpages/advancedsettings.php:360 msgid "Hide Ads From All Members" msgstr "" -#: adminpages/advancedsettings.php:354 +#: adminpages/advancedsettings.php:361 msgid "Hide Ads From Certain Members" msgstr "" -#: adminpages/advancedsettings.php:361 +#: adminpages/advancedsettings.php:368 msgid "To hide ads in your template code, use code like the following" msgstr "" -#: adminpages/advancedsettings.php:370 +#: adminpages/advancedsettings.php:377 msgid "Choose Levels to Hide Ads From" msgstr "" -#: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "Redirect all traffic from registration page to /subscription/?" msgstr "" -#: adminpages/advancedsettings.php:407 +#: adminpages/advancedsettings.php:414 msgid "multisite only" msgstr "" -#: adminpages/advancedsettings.php:412 +#: adminpages/advancedsettings.php:419 +#: adminpages/membershiplevels.php:934 #: adminpages/membershiplevels.php:936 -#: adminpages/membershiplevels.php:938 -#: adminpages/paymentsettings.php:280 -#: classes/gateways/class.pmprogateway_stripe.php:406 -#: classes/gateways/class.pmprogateway_stripe.php:420 +#: adminpages/paymentsettings.php:278 +#: classes/gateways/class.pmprogateway_stripe.php:432 +#: classes/gateways/class.pmprogateway_stripe.php:446 #: includes/compatibility/beaver-builder.php:44 #: includes/compatibility/beaver-builder.php:140 -#: includes/profile.php:69 +#: includes/profile.php:79 msgid "Yes" msgstr "" -#: adminpages/advancedsettings.php:490 +#: adminpages/advancedsettings.php:498 +msgid "Enable Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:505 +msgid "Allow usage of Paid Memberships Pro to be tracked." +msgstr "" + +#: adminpages/advancedsettings.php:511 +msgid "Do not track usage of Paid Memberships Pro on my site." +msgstr "" + +#: adminpages/advancedsettings.php:515 +msgid "Sharing non-sensitive membership site data helps us analyze how our plugin is meeting your needs and identify opportunities to improve. Read about what usage data is tracked:" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "PaidMembershipsPro.com Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:516 +msgid "Paid Memberships Pro Usage Tracking" +msgstr "" + +#: adminpages/advancedsettings.php:522 msgid "Uninstall PMPro on deletion?" msgstr "" -#: adminpages/advancedsettings.php:495 +#: adminpages/advancedsettings.php:527 msgid "Yes - Delete all PMPro Data." msgstr "" -#: adminpages/advancedsettings.php:497 +#: adminpages/advancedsettings.php:529 msgid "To delete all PMPro data from the database, set to Yes, deactivate PMPro, and then click to delete PMPro from the plugins page." msgstr "" -#: adminpages/advancedsettings.php:542 -#: adminpages/pagesettings.php:512 -#: adminpages/paymentsettings.php:316 +#: adminpages/advancedsettings.php:574 +#: adminpages/pagesettings.php:511 +#: adminpages/paymentsettings.php:314 msgid "Save Settings" msgstr "" @@ -745,7 +763,7 @@ msgid "Initial Setup" msgstr "" #: adminpages/dashboard.php:113 -#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:780 msgid "Create a Membership Level" msgstr "" @@ -803,7 +821,7 @@ msgid "Enter your key here »" msgstr "" #: adminpages/dashboard.php:178 -#: adminpages/license.php:41 +#: adminpages/license.php:53 msgid "Your license is invalid or expired." msgstr "" @@ -812,12 +830,12 @@ msgid "View your membership account to verify your license ke msgstr "" #: adminpages/dashboard.php:181 -#: adminpages/license.php:43 +#: adminpages/license.php:55 msgid "Your %1$s key is active. %1$s accounts include access to documentation and free downloads." msgstr "" #: adminpages/dashboard.php:183 -#: adminpages/license.php:45 +#: adminpages/license.php:57 msgid "Thank you! A valid %s license key has been used to activate your support license on this site." msgstr "" @@ -826,7 +844,7 @@ msgid "An annual support license is recommended for websites running Paid Member msgstr "" #: adminpages/dashboard.php:188 -#: adminpages/license.php:64 +#: adminpages/license.php:76 msgid "View Plans and Pricing" msgstr "" @@ -875,9 +893,9 @@ msgid "Translation Dashboard" msgstr "" #: adminpages/dashboard.php:225 -#: adminpages/emailtemplates.php:127 +#: adminpages/emailtemplates.php:122 #: adminpages/reports/login.php:183 -#: classes/class.memberorder.php:1003 +#: classes/class.memberorder.php:1012 #: pages/checkout.php:134 #: shortcodes/pmpro_account.php:173 msgid "Username" @@ -885,11 +903,11 @@ msgstr "" #: adminpages/dashboard.php:226 #: adminpages/dashboard.php:294 -#: adminpages/orders.php:1336 +#: adminpages/orders.php:1429 #: adminpages/reports/login.php:185 #: includes/privacy.php:241 -#: includes/profile.php:411 -#: includes/profile.php:496 +#: includes/profile.php:451 +#: includes/profile.php:536 #: pages/billing.php:70 #: pages/cancel.php:70 #: pages/invoice.php:124 @@ -897,7 +915,6 @@ msgstr "" #: shortcodes/pmpro_account.php:42 #: shortcodes/pmpro_account.php:224 #: blocks/checkout-button/inspector.js:39 -#: js/blocks.build.js:900 msgid "Level" msgstr "" @@ -907,9 +924,9 @@ msgid "Joined" msgstr "" #: adminpages/dashboard.php:228 -#: adminpages/discountcodes.php:788 +#: adminpages/discountcodes.php:789 #: adminpages/reports/login.php:187 -#: includes/profile.php:65 +#: includes/profile.php:75 msgid "Expires" msgstr "" @@ -925,63 +942,62 @@ msgstr "" #: adminpages/dashboard.php:292 #: adminpages/discountcodes.php:451 -#: adminpages/discountcodes.php:786 -#: adminpages/orders.php:429 -#: adminpages/orders.php:1333 +#: adminpages/discountcodes.php:787 +#: adminpages/orders.php:475 +#: adminpages/orders.php:1426 msgid "Code" msgstr "" #: adminpages/dashboard.php:293 -#: adminpages/orders.php:1334 +#: adminpages/orders.php:1427 #: classes/gateways/class.pmprogateway_payflowpro.php:117 msgid "User" msgstr "" #: adminpages/dashboard.php:295 -#: adminpages/orders.php:646 -#: adminpages/orders.php:1337 -#: includes/functions.php:2931 +#: adminpages/orders.php:767 +#: adminpages/orders.php:1430 +#: includes/functions.php:2933 #: includes/privacy.php:285 msgid "Total" msgstr "" #: adminpages/dashboard.php:296 -#: adminpages/orders.php:736 -#: adminpages/orders.php:1341 +#: adminpages/orders.php:849 +#: adminpages/orders.php:1434 #: includes/privacy.php:202 #: includes/privacy.php:309 -#: includes/profile.php:415 -#: includes/profile.php:501 +#: includes/profile.php:455 +#: includes/profile.php:541 #: pages/invoice.php:40 #: shortcodes/pmpro_account.php:226 msgid "Status" msgstr "" #: adminpages/dashboard.php:297 -#: adminpages/orders.php:828 -#: adminpages/orders.php:1342 -#: includes/profile.php:409 +#: adminpages/orders.php:492 +#: adminpages/orders.php:1435 +#: includes/profile.php:449 #: pages/invoice.php:122 #: shortcodes/pmpro_account.php:223 msgid "Date" msgstr "" #: adminpages/dashboard.php:304 -#: adminpages/orders.php:1569 +#: adminpages/orders.php:1741 msgid "No orders found." msgstr "" #: adminpages/dashboard.php:321 #: adminpages/dashboard.php:336 -#: adminpages/orders.php:1476 -#: adminpages/orders.php:1488 +#: adminpages/orders.php:1600 +#: adminpages/orders.php:1612 msgid "deleted" msgstr "" #: adminpages/dashboard.php:323 #: adminpages/dashboard.php:338 -#: adminpages/orders.php:1478 -#: adminpages/orders.php:1490 +#: adminpages/orders.php:1602 msgid "none" msgstr "" @@ -1039,13 +1055,13 @@ msgid "Error deleting code. Please try again." msgstr "" #: adminpages/discountcodes.php:354 -#: adminpages/discountcodes.php:798 +#: adminpages/discountcodes.php:799 msgid "Code not found." msgstr "" #: adminpages/discountcodes.php:360 #: adminpages/membershiplevels.php:169 -msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." +msgid "WARNING: A level was set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a specific time period. For more information, see our post here." msgstr "" #: adminpages/discountcodes.php:375 @@ -1053,15 +1069,13 @@ msgid "Edit Discount Code" msgstr "" #: adminpages/discountcodes.php:377 -#: adminpages/discountcodes.php:737 +#: adminpages/discountcodes.php:738 msgid "Add New Discount Code" msgstr "" #: adminpages/discountcodes.php:446 -#: adminpages/discountcodes.php:785 -#: adminpages/membershiplevels.php:347 -#: adminpages/membershiplevels.php:807 -#: adminpages/orders.php:1332 +#: adminpages/membershiplevels.php:345 +#: adminpages/membershiplevels.php:805 #: adminpages/reports/login.php:182 #: adminpages/templates/orders-email.php:49 #: adminpages/templates/orders-print.php:78 @@ -1069,26 +1083,25 @@ msgid "ID" msgstr "" #: adminpages/discountcodes.php:447 -#: adminpages/orders.php:422 msgid "This will be generated when you save." msgstr "" #: adminpages/discountcodes.php:489 #: includes/privacy.php:186 -#: includes/profile.php:497 +#: includes/profile.php:537 msgid "Start Date" msgstr "" #: adminpages/discountcodes.php:507 -#: classes/gateways/class.pmprogateway_braintree.php:479 -#: classes/gateways/class.pmprogateway_stripe.php:785 +#: classes/gateways/class.pmprogateway_braintree.php:486 +#: classes/gateways/class.pmprogateway_stripe.php:893 #: pages/billing.php:381 #: pages/checkout.php:393 msgid "Expiration Date" msgstr "" #: adminpages/discountcodes.php:525 -#: adminpages/discountcodes.php:789 +#: adminpages/discountcodes.php:790 msgid "Uses" msgstr "" @@ -1101,223 +1114,223 @@ msgid "Which Levels Will This Code Apply To?" msgstr "" #: adminpages/discountcodes.php:576 -#: adminpages/membershiplevels.php:401 +#: adminpages/membershiplevels.php:399 msgid "Initial Payment" msgstr "" #: adminpages/discountcodes.php:587 -#: adminpages/membershiplevels.php:412 +#: adminpages/membershiplevels.php:410 msgid "The initial amount collected at registration." msgstr "" #: adminpages/discountcodes.php:592 -#: adminpages/membershiplevels.php:417 +#: adminpages/membershiplevels.php:415 msgid "Recurring Subscription" msgstr "" #: adminpages/discountcodes.php:593 -#: adminpages/membershiplevels.php:418 +#: adminpages/membershiplevels.php:416 msgid "Check if this level has a recurring subscription payment." msgstr "" #: adminpages/discountcodes.php:597 -#: adminpages/membershiplevels.php:422 +#: adminpages/membershiplevels.php:420 msgid "Billing Amount" msgstr "" #: adminpages/discountcodes.php:608 -#: adminpages/membershiplevels.php:433 -#: classes/gateways/class.pmprogateway_stripe.php:2694 +#: adminpages/membershiplevels.php:431 +#: classes/gateways/class.pmprogateway_stripe.php:3151 msgid "per" msgstr "" #: adminpages/discountcodes.php:612 -#: adminpages/discountcodes.php:699 -#: adminpages/membershiplevels.php:437 -#: adminpages/membershiplevels.php:580 -#: classes/gateways/class.pmprogateway_stripe.php:2635 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3092 msgid "Day(s)" msgstr "" #: adminpages/discountcodes.php:612 -#: adminpages/discountcodes.php:699 -#: adminpages/membershiplevels.php:437 -#: adminpages/membershiplevels.php:580 -#: classes/gateways/class.pmprogateway_stripe.php:2636 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3093 msgid "Week(s)" msgstr "" #: adminpages/discountcodes.php:612 -#: adminpages/discountcodes.php:699 -#: adminpages/membershiplevels.php:437 -#: adminpages/membershiplevels.php:580 -#: classes/gateways/class.pmprogateway_stripe.php:2637 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3094 msgid "Month(s)" msgstr "" #: adminpages/discountcodes.php:612 -#: adminpages/discountcodes.php:699 -#: adminpages/membershiplevels.php:437 -#: adminpages/membershiplevels.php:580 -#: classes/gateways/class.pmprogateway_stripe.php:2638 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:435 +#: adminpages/membershiplevels.php:581 +#: classes/gateways/class.pmprogateway_stripe.php:3095 msgid "Year(s)" msgstr "" #: adminpages/discountcodes.php:620 -#: adminpages/membershiplevels.php:446 +#: adminpages/membershiplevels.php:444 msgid "The amount to be billed one cycle after the initial payment." msgstr "" #: adminpages/discountcodes.php:622 -#: adminpages/membershiplevels.php:448 +#: adminpages/membershiplevels.php:446 msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"." msgstr "" #: adminpages/discountcodes.php:624 -#: adminpages/membershiplevels.php:450 +#: adminpages/membershiplevels.php:448 msgid "Stripe integration does not allow billing periods longer than 1 year." msgstr "" #: adminpages/discountcodes.php:630 -#: adminpages/membershiplevels.php:465 +#: adminpages/membershiplevels.php:463 msgid "Billing Cycle Limit" msgstr "" #: adminpages/discountcodes.php:634 -#: adminpages/membershiplevels.php:469 +#: adminpages/membershiplevels.php:467 msgid "The total number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite." msgstr "" #: adminpages/discountcodes.php:636 -#: adminpages/membershiplevels.php:471 +#: adminpages/membershiplevels.php:469 msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below." msgstr "" -#: adminpages/discountcodes.php:645 -#: adminpages/membershiplevels.php:480 -msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +#: adminpages/discountcodes.php:646 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." msgstr "" -#: adminpages/discountcodes.php:653 -#: adminpages/membershiplevels.php:488 +#: adminpages/discountcodes.php:654 +#: adminpages/membershiplevels.php:487 msgid "Custom Trial" msgstr "" -#: adminpages/discountcodes.php:655 -#: adminpages/membershiplevels.php:490 +#: adminpages/discountcodes.php:656 +#: adminpages/membershiplevels.php:489 msgid "Check to add a custom trial period." msgstr "" -#: adminpages/discountcodes.php:657 -#: adminpages/membershiplevels.php:493 +#: adminpages/discountcodes.php:658 +#: adminpages/membershiplevels.php:492 msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount." msgstr "" -#: adminpages/discountcodes.php:663 +#: adminpages/discountcodes.php:664 #: adminpages/membershiplevels.php:510 msgid "Trial Billing Amount" msgstr "" -#: adminpages/discountcodes.php:674 +#: adminpages/discountcodes.php:675 #: adminpages/membershiplevels.php:521 msgid "for the first" msgstr "" -#: adminpages/discountcodes.php:676 +#: adminpages/discountcodes.php:677 #: adminpages/membershiplevels.php:523 msgid "subscription payments" msgstr "" -#: adminpages/discountcodes.php:678 +#: adminpages/discountcodes.php:679 #: adminpages/membershiplevels.php:525 msgid "Stripe integration currently does not support trial amounts greater than $0." msgstr "" -#: adminpages/discountcodes.php:680 +#: adminpages/discountcodes.php:681 #: adminpages/membershiplevels.php:527 msgid "Braintree integration currently does not support trial amounts greater than $0." msgstr "" -#: adminpages/discountcodes.php:682 +#: adminpages/discountcodes.php:683 #: adminpages/membershiplevels.php:529 msgid "Payflow integration currently does not support trial amounts greater than $0." msgstr "" -#: adminpages/discountcodes.php:688 +#: adminpages/discountcodes.php:689 #: adminpages/membershiplevels.php:559 msgid "Membership Expiration" msgstr "" -#: adminpages/discountcodes.php:689 +#: adminpages/discountcodes.php:690 #: adminpages/membershiplevels.php:560 msgid "Check this to set when membership access expires." msgstr "" -#: adminpages/discountcodes.php:693 -#: adminpages/membershiplevels.php:575 +#: adminpages/discountcodes.php:694 +#: adminpages/membershiplevels.php:576 #: pages/confirmation.php:140 msgid "Expires In" msgstr "" -#: adminpages/discountcodes.php:699 -#: adminpages/membershiplevels.php:580 +#: adminpages/discountcodes.php:700 +#: adminpages/membershiplevels.php:581 msgid "Hour(s)" msgstr "" -#: adminpages/discountcodes.php:709 -#: adminpages/membershiplevels.php:586 +#: adminpages/discountcodes.php:710 +#: adminpages/membershiplevels.php:587 msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires." msgstr "" -#: adminpages/discountcodes.php:728 +#: adminpages/discountcodes.php:729 msgid "Save Code" msgstr "" -#: adminpages/discountcodes.php:729 -#: adminpages/membershiplevels.php:675 -#: adminpages/orders.php:961 +#: adminpages/discountcodes.php:730 +#: adminpages/membershiplevels.php:676 +#: adminpages/orders.php:1044 #: includes/email-templates.php:123 -#: includes/profile.php:794 -#: includes/profile.php:918 +#: includes/profile.php:834 +#: includes/profile.php:958 #: pages/billing.php:443 #: pages/cancel.php:96 #: shortcodes/pmpro_account.php:106 msgid "Cancel" msgstr "" -#: adminpages/discountcodes.php:736 +#: adminpages/discountcodes.php:737 msgid "Memberships Discount Codes" msgstr "" -#: adminpages/discountcodes.php:756 +#: adminpages/discountcodes.php:755 msgid "No Discount Codes Found" msgstr "" -#: adminpages/discountcodes.php:757 +#: adminpages/discountcodes.php:756 msgid "Discount codes allow you to override your membership level's default pricing." msgstr "" -#: adminpages/discountcodes.php:758 +#: adminpages/discountcodes.php:757 msgid "Create a Discount Code" msgstr "" -#: adminpages/discountcodes.php:759 +#: adminpages/discountcodes.php:758 msgid "Documentation: Discount Codes" msgstr "" #: adminpages/discountcodes.php:768 -msgid "%d discount codes found." -msgstr "" - -#: adminpages/discountcodes.php:773 msgid "Search Discount Codes" msgstr "" -#: adminpages/discountcodes.php:776 +#: adminpages/discountcodes.php:771 msgid "Search" msgstr "" -#: adminpages/discountcodes.php:787 +#: adminpages/discountcodes.php:778 +#: adminpages/discountcodes.php:971 +msgid "%d discount codes found." +msgstr "" + +#: adminpages/discountcodes.php:788 msgid "Starts" msgstr "" @@ -1330,73 +1343,79 @@ msgstr "" msgid "Are you sure you want to delete the %s discount code? The subscriptions for existing users will not change, but new users will not be able to use this code anymore." msgstr "" +#. translators: %s is the Order ID. #: adminpages/discountcodes.php:835 -#: adminpages/discountcodes.php:845 -#: adminpages/membershiplevels.php:858 -#: adminpages/membershiplevels.php:868 -#: adminpages/orders.php:1389 -#: adminpages/orders.php:1399 -#: includes/profile.php:430 +#: adminpages/orders.php:1499 +msgid "ID: %s" +msgstr "" + +#: adminpages/discountcodes.php:840 +#: adminpages/discountcodes.php:850 +#: adminpages/membershiplevels.php:856 +#: adminpages/membershiplevels.php:866 +#: adminpages/orders.php:1504 +#: adminpages/orders.php:1514 +#: includes/profile.php:470 msgid "Edit" msgstr "" -#: adminpages/discountcodes.php:849 -#: adminpages/discountcodes.php:860 -#: adminpages/membershiplevels.php:872 -#: adminpages/membershiplevels.php:883 -#: adminpages/orders.php:1403 -#: adminpages/orders.php:1414 +#: adminpages/discountcodes.php:854 +#: adminpages/discountcodes.php:865 +#: adminpages/membershiplevels.php:870 +#: adminpages/membershiplevels.php:881 +#: adminpages/orders.php:1518 +#: adminpages/orders.php:1529 msgid "Copy" msgstr "" -#: adminpages/discountcodes.php:864 -#: adminpages/discountcodes.php:866 +#: adminpages/discountcodes.php:869 +#: adminpages/discountcodes.php:871 +#: adminpages/membershiplevels.php:885 #: adminpages/membershiplevels.php:887 -#: adminpages/membershiplevels.php:889 -#: adminpages/orders.php:1418 -#: adminpages/orders.php:1420 +#: adminpages/orders.php:1533 +#: adminpages/orders.php:1535 msgid "Delete" msgstr "" -#: adminpages/discountcodes.php:873 +#: adminpages/discountcodes.php:878 msgid "View Orders" msgstr "" -#: adminpages/emailsettings.php:87 +#: adminpages/emailsettings.php:86 msgid "Send Emails From" msgstr "" -#: adminpages/emailsettings.php:88 +#: adminpages/emailsettings.php:87 msgid "By default, system generated emails are sent from wordpress@yourdomain.com. You can update this from address using the fields below." msgstr "" -#: adminpages/emailsettings.php:94 +#: adminpages/emailsettings.php:93 msgid "From Email" msgstr "" -#: adminpages/emailsettings.php:102 +#: adminpages/emailsettings.php:101 msgid "From Name" msgstr "" -#: adminpages/emailsettings.php:110 +#: adminpages/emailsettings.php:109 msgid "Only Filter PMPro Emails?" msgstr "" -#: adminpages/emailsettings.php:114 +#: adminpages/emailsettings.php:113 msgid "If unchecked, all emails from \"WordPress <%s>\" will be filtered to use the above settings." msgstr "" -#: adminpages/emailsettings.php:119 +#: adminpages/emailsettings.php:118 #: adminpages/emailsettings.php:173 msgid "Save All Settings" msgstr "" -#: adminpages/emailsettings.php:122 +#: adminpages/emailsettings.php:121 msgid "Email Deliverability" msgstr "" #: adminpages/emailsettings.php:133 -msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." +msgid "If you are having issues with email delivery from your server, please read our email troubleshooting guide. As an alternative, Paid Memberships Pro offers built-in integration for SendWP. Optional: SendWP is a third-party service for transactional email in WordPress. Click here to learn more about SendWP and Paid Memberships Pro." msgstr "" #: adminpages/emailsettings.php:141 @@ -1435,204 +1454,204 @@ msgstr "" msgid "Recommended: Leave unchecked. Members will still get an email confirmation from PMPro after checkout." msgstr "" -#: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Select an email template from the dropdown below to customize the subject and body of emails sent through your membership site. You can also disable a specific email or send a test version through this admin page." msgstr "" -#: adminpages/emailtemplates.php:23 +#: adminpages/emailtemplates.php:21 msgid "Click here for a description of each email sent to your members and admins at different stages of the member experience." msgstr "" -#: adminpages/emailtemplates.php:38 +#: adminpages/emailtemplates.php:36 msgid "Email Template" msgstr "" -#: adminpages/emailtemplates.php:42 +#: adminpages/emailtemplates.php:40 msgid "Select a Template to Edit" msgstr "" -#: adminpages/emailtemplates.php:58 +#: adminpages/emailtemplates.php:56 msgid "Disable this email?" msgstr "" -#: adminpages/emailtemplates.php:61 +#: adminpages/emailtemplates.php:59 msgid "Emails with this template will not be sent." msgstr "" -#: adminpages/emailtemplates.php:66 +#: adminpages/emailtemplates.php:64 msgid "Subject" msgstr "" -#: adminpages/emailtemplates.php:73 +#: adminpages/emailtemplates.php:71 msgid "Body" msgstr "" -#: adminpages/emailtemplates.php:84 +#: adminpages/emailtemplates.php:82 msgid "Send a test email to " msgstr "" -#: adminpages/emailtemplates.php:87 +#: adminpages/emailtemplates.php:85 msgid "Save Template and Send Email" msgstr "" -#: adminpages/emailtemplates.php:92 +#: adminpages/emailtemplates.php:90 msgid "Your current membership will be used for any membership level data." msgstr "" -#: adminpages/emailtemplates.php:101 +#: adminpages/emailtemplates.php:99 msgid "Save Template" msgstr "" -#: adminpages/emailtemplates.php:104 +#: adminpages/emailtemplates.php:102 msgid "Reset Template" msgstr "" -#: adminpages/emailtemplates.php:114 +#: adminpages/emailtemplates.php:112 msgid "Variable Reference" msgstr "" -#: adminpages/emailtemplates.php:116 +#: adminpages/emailtemplates.php:114 msgid "Use the placeholder variables below to customize your member and admin emails with specific user or membership data." msgstr "" -#: adminpages/emailtemplates.php:120 +#: adminpages/emailtemplates.php:116 msgid "General Settings / Membership Info" msgstr "" -#: adminpages/emailtemplates.php:126 -#: adminpages/emailtemplates.php:136 +#: adminpages/emailtemplates.php:121 +#: adminpages/emailtemplates.php:131 msgid "Display Name (Profile/Edit User > Display name publicly as)" msgstr "" -#: adminpages/emailtemplates.php:128 +#: adminpages/emailtemplates.php:123 msgid "Site Title" msgstr "" -#: adminpages/emailtemplates.php:129 +#: adminpages/emailtemplates.php:124 msgid "Site Email Address (General Settings > Email OR Memberships > Settings > Email Settings)" msgstr "" -#: adminpages/emailtemplates.php:130 -#: adminpages/orders.php:458 +#: adminpages/emailtemplates.php:125 +#: adminpages/orders.php:552 msgid "Membership Level ID" msgstr "" -#: adminpages/emailtemplates.php:131 +#: adminpages/emailtemplates.php:126 msgid "Membership Level Name" msgstr "" -#: adminpages/emailtemplates.php:132 +#: adminpages/emailtemplates.php:127 msgid "Membership Level Change" msgstr "" -#: adminpages/emailtemplates.php:133 +#: adminpages/emailtemplates.php:128 msgid "Membership Level Expiration" msgstr "" -#: adminpages/emailtemplates.php:134 +#: adminpages/emailtemplates.php:129 msgid "Membership Start Date" msgstr "" -#: adminpages/emailtemplates.php:135 +#: adminpages/emailtemplates.php:130 msgid "Membership End Date" msgstr "" -#: adminpages/emailtemplates.php:137 -#: classes/class.memberorder.php:1002 +#: adminpages/emailtemplates.php:132 +#: classes/class.memberorder.php:1011 msgid "User Email" msgstr "" -#: adminpages/emailtemplates.php:138 +#: adminpages/emailtemplates.php:133 msgid "Login URL" msgstr "" -#: adminpages/emailtemplates.php:139 +#: adminpages/emailtemplates.php:134 msgid "Membership Levels Page URL" msgstr "" -#: adminpages/emailtemplates.php:156 +#: adminpages/emailtemplates.php:149 msgid "Billing Information" msgstr "" -#: adminpages/emailtemplates.php:162 +#: adminpages/emailtemplates.php:154 msgid "Billing Info Complete Address" msgstr "" -#: adminpages/emailtemplates.php:163 +#: adminpages/emailtemplates.php:155 msgid "Billing Info Name" msgstr "" -#: adminpages/emailtemplates.php:164 +#: adminpages/emailtemplates.php:156 msgid "Billing Info Street Address" msgstr "" -#: adminpages/emailtemplates.php:165 +#: adminpages/emailtemplates.php:157 msgid "Billing Info City" msgstr "" -#: adminpages/emailtemplates.php:166 +#: adminpages/emailtemplates.php:158 msgid "Billing Info State" msgstr "" -#: adminpages/emailtemplates.php:167 +#: adminpages/emailtemplates.php:159 msgid "Billing Info ZIP Code" msgstr "" -#: adminpages/emailtemplates.php:168 +#: adminpages/emailtemplates.php:160 msgid "Billing Info Country" msgstr "" -#: adminpages/emailtemplates.php:169 +#: adminpages/emailtemplates.php:161 msgid "Billing Info Phone #" msgstr "" -#: adminpages/emailtemplates.php:170 +#: adminpages/emailtemplates.php:162 #: includes/privacy.php:363 msgid "Credit Card Type" msgstr "" -#: adminpages/emailtemplates.php:171 +#: adminpages/emailtemplates.php:163 msgid "Credit Card Number (last 4 digits)" msgstr "" -#: adminpages/emailtemplates.php:172 +#: adminpages/emailtemplates.php:164 msgid "Credit Card Expiration Month (mm format)" msgstr "" -#: adminpages/emailtemplates.php:173 +#: adminpages/emailtemplates.php:165 msgid "Credit Card Expiration Year (yyyy format)" msgstr "" -#: adminpages/emailtemplates.php:174 +#: adminpages/emailtemplates.php:166 msgid "Membership Level Cost Text" msgstr "" -#: adminpages/emailtemplates.php:175 +#: adminpages/emailtemplates.php:167 msgid "Payment Instructions (used in Checkout - Email Template)" msgstr "" -#: adminpages/emailtemplates.php:176 -#: includes/profile.php:410 +#: adminpages/emailtemplates.php:168 +#: includes/profile.php:450 msgid "Invoice ID" msgstr "" -#: adminpages/emailtemplates.php:177 +#: adminpages/emailtemplates.php:169 msgid "Invoice Total" msgstr "" -#: adminpages/emailtemplates.php:178 +#: adminpages/emailtemplates.php:170 msgid "Invoice Date" msgstr "" -#: adminpages/emailtemplates.php:179 +#: adminpages/emailtemplates.php:171 msgid "Invoice Page URL" msgstr "" -#: adminpages/emailtemplates.php:180 +#: adminpages/emailtemplates.php:172 msgid "Discount Code Applied" msgstr "" -#: adminpages/emailtemplates.php:181 +#: adminpages/emailtemplates.php:173 msgid "Custom Level Confirmation Message" msgstr "" @@ -1656,56 +1675,56 @@ msgstr "" msgid "Send Email" msgstr "" -#: adminpages/license.php:33 +#: adminpages/license.php:45 msgid "Paid Memberships Pro Support License" msgstr "" -#: adminpages/license.php:37 +#: adminpages/license.php:49 msgid "There was an issue validating your license key: %s" msgstr "" -#: adminpages/license.php:37 -#: adminpages/license.php:41 -msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." +#: adminpages/license.php:49 +#: adminpages/license.php:53 +msgid "Visit the PMPro Membership Account page to confirm that your account is active and to find your license key." msgstr "" -#: adminpages/license.php:39 -msgid "Enter your support license key.
Your license key can be found in your membership email receipt or in your Membership Account." +#: adminpages/license.php:51 +msgid "Enter your support license key. Your license key can be found in your membership email receipt or in your Membership Account." msgstr "" -#: adminpages/license.php:53 +#: adminpages/license.php:65 msgid "Enter license key here..." msgstr "" -#: adminpages/license.php:55 +#: adminpages/license.php:67 msgid "Validate Key" msgstr "" -#: adminpages/license.php:66 +#: adminpages/license.php:78 msgid "Manage My Account" msgstr "" -#: adminpages/license.php:68 +#: adminpages/license.php:80 msgid "Open Support Ticket" msgstr "" -#: adminpages/license.php:70 +#: adminpages/license.php:82 msgid "Upgrade For Support" msgstr "" -#: adminpages/license.php:92 +#: adminpages/license.php:94 msgid "Paid Memberships Pro and our Add Ons are distributed under the GPLv2 license. This means, among other things, that you may use the software on this site or any other site free of charge." msgstr "" -#: adminpages/license.php:96 +#: adminpages/license.php:98 msgid "Paid Memberships Pro offers plans for automatic updates of Add Ons and premium support. These plans include a license key which we recommend for all public websites running Paid Memberships Pro. A license key allows you to automatically install Add Ons included in your plan and update active Add Ons included in your plan when a new security, bug fix, or feature enhancement is released." msgstr "" -#: adminpages/license.php:100 +#: adminpages/license.php:102 msgid "Need help? Your license allows you to open new tickets in our private support area. Purchases are backed by a 30 day, no questions asked refund policy." msgstr "" -#: adminpages/license.php:103 +#: adminpages/license.php:105 msgid "View Support License Options »" msgstr "" @@ -1752,41 +1771,45 @@ msgstr "" msgid "Add New Membership Level" msgstr "" -#: adminpages/membershiplevels.php:354 -#: adminpages/membershiplevels.php:808 +#: adminpages/membershiplevels.php:352 +#: adminpages/membershiplevels.php:806 #: adminpages/reports/login.php:184 msgid "Name" msgstr "" -#: adminpages/membershiplevels.php:377 +#: adminpages/membershiplevels.php:375 msgid "Confirmation Message" msgstr "" -#: adminpages/membershiplevels.php:391 +#: adminpages/membershiplevels.php:389 msgid "Check to include this message in the membership confirmation email." msgstr "" -#: adminpages/membershiplevels.php:397 -#: adminpages/membershiplevels.php:809 +#: adminpages/membershiplevels.php:395 +#: adminpages/membershiplevels.php:807 msgid "Billing Details" msgstr "" -#: adminpages/membershiplevels.php:454 -#: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:452 +#: adminpages/membershiplevels.php:457 #: classes/gateways/class.pmprogateway_cybersource.php:89 msgid "Note" msgstr "" -#: adminpages/membershiplevels.php:454 +#: adminpages/membershiplevels.php:452 msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to pmpro_#, where # is the level ID." msgstr "" -#: adminpages/membershiplevels.php:459 +#: adminpages/membershiplevels.php:457 msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to %s." msgstr "" +#: adminpages/membershiplevels.php:479 +msgid "Optional: Allow billing limits with Stripe using the Stripe Billing Limits Add On." +msgstr "" + #: adminpages/membershiplevels.php:506 -msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." +msgid "Optional: Allow more customizable trial periods and renewal dates using the Subscription Delays Add On." msgstr "" #: adminpages/membershiplevels.php:554 @@ -1797,40 +1820,40 @@ msgstr "" msgid "Check to hide this level from the membership levels page and disable registration." msgstr "" -#: adminpages/membershiplevels.php:571 -msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." +#: adminpages/membershiplevels.php:572 +msgid "Optional: Allow more customizable expiration dates using the Set Expiration Date Add On." msgstr "" -#: adminpages/membershiplevels.php:589 -msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." +#: adminpages/membershiplevels.php:590 +msgid "WARNING: This level is set with both a recurring billing amount and an expiration date. You only need to set one of these unless you really want this membership to expire after a certain number of payments. For more information, see our post here." msgstr "" -#: adminpages/membershiplevels.php:640 +#: adminpages/membershiplevels.php:641 msgid "Non-members will not see posts in these categories. You can update this setting here." msgstr "" -#: adminpages/membershiplevels.php:644 +#: adminpages/membershiplevels.php:645 msgid "Non-members will see the title and excerpt for posts in these categories. You can update this setting here." msgstr "" -#: adminpages/membershiplevels.php:647 +#: adminpages/membershiplevels.php:648 msgid "Non-members will see the title only for posts in these categories. You can update this setting here." msgstr "" -#: adminpages/membershiplevels.php:654 +#: adminpages/membershiplevels.php:655 msgid "Categories" msgstr "" -#: adminpages/membershiplevels.php:674 +#: adminpages/membershiplevels.php:675 msgid "Save Level" msgstr "" -#: adminpages/membershiplevels.php:778 -#: adminpages/membershiplevels.php:819 +#: adminpages/membershiplevels.php:779 +#: adminpages/membershiplevels.php:817 msgid "No Membership Levels Found" msgstr "" -#: adminpages/membershiplevels.php:780 +#: adminpages/membershiplevels.php:781 msgid "Video: Membership Levels" msgstr "" @@ -1843,11 +1866,12 @@ msgstr "" msgid "Add New Level" msgstr "" -#: adminpages/membershiplevels.php:797 +#: adminpages/membershiplevels.php:795 msgid "Drag and drop membership levels to reorder them on the Levels page." msgstr "" -#: adminpages/membershiplevels.php:810 +#: adminpages/membershiplevels.php:808 +#: adminpages/orders.php:838 #: pages/billing.php:102 #: pages/cancel.php:71 #: pages/confirmation.php:99 @@ -1856,38 +1880,38 @@ msgstr "" msgid "Expiration" msgstr "" -#: adminpages/membershiplevels.php:811 +#: adminpages/membershiplevels.php:809 msgid "Allow Signups" msgstr "" #. translators: %s is the Level Name. -#: adminpages/membershiplevels.php:837 +#: adminpages/membershiplevels.php:835 msgid "Are you sure you want to delete membership level %s? All subscriptions will be cancelled." msgstr "" -#: adminpages/membershiplevels.php:921 +#: adminpages/membershiplevels.php:919 msgid "FREE" msgstr "" -#: adminpages/membershiplevels.php:930 +#: adminpages/membershiplevels.php:928 msgid "After" msgstr "" -#: adminpages/memberslist.php:20 +#: adminpages/memberslist.php:21 msgid "Members List" msgstr "" -#: adminpages/memberslist.php:21 -#: adminpages/orders.php:993 +#: adminpages/memberslist.php:22 +#: adminpages/orders.php:1076 msgid "Export to CSV" msgstr "" -#: adminpages/memberslist.php:28 -#: adminpages/reports/login.php:127 +#: adminpages/memberslist.php:27 +#: adminpages/reports/login.php:106 msgid "Search Members" msgstr "" -#: adminpages/memberslist.php:41 +#: adminpages/memberslist.php:40 msgid "Optional: Capture additional member profile fields using the Register Helper Add On." msgstr "" @@ -1899,100 +1923,159 @@ msgstr "" msgid "Error deleting order." msgstr "" -#: adminpages/orders.php:316 +#: adminpages/orders.php:188 +msgid "Order refunded successfully." +msgstr "" + +#: adminpages/orders.php:191 +#: adminpages/orders.php:196 +msgid "Error refunding order. Please check the order notes for more information." +msgstr "" + +#: adminpages/orders.php:342 msgid "Order saved successfully." msgstr "" -#: adminpages/orders.php:319 +#: adminpages/orders.php:345 msgid "Error saving order." msgstr "" -#: adminpages/orders.php:390 -#: classes/class-pmpro-admin-activity-email.php:219 -#: classes/class.memberorder.php:1005 -msgid "Order" +#. translators: %s is the Order Code. +#: adminpages/orders.php:419 +#: adminpages/orders.php:1478 +msgid "Refund order %s at the payment gateway. This action is permanent. The user and admin will receive an email confirmation after the refund is processed. Are you sure you want to refund this order?" msgstr "" -#: adminpages/orders.php:391 -#: adminpages/orders.php:1424 -#: adminpages/orders.php:1434 -#: includes/profile.php:433 +#: adminpages/orders.php:438 +#: classes/class.memberorder.php:1019 +msgid "Edit Order" +msgstr "" + +#: adminpages/orders.php:439 +#: adminpages/orders.php:1539 +#: adminpages/orders.php:1549 +#: includes/profile.php:473 #: pages/confirmation.php:61 #: pages/invoice.php:34 msgid "Print" msgstr "" -#: adminpages/orders.php:392 -#: adminpages/orders.php:1438 -#: adminpages/orders.php:1441 -#: includes/profile.php:438 -#: includes/profile.php:758 +#: adminpages/orders.php:440 +#: adminpages/orders.php:1553 +#: adminpages/orders.php:1556 +#: includes/profile.php:478 +#: includes/profile.php:798 #: shortcodes/pmpro_account.php:174 msgid "Email" msgstr "" -#: adminpages/orders.php:394 +#: adminpages/orders.php:441 +msgid "View" +msgstr "" + +#: adminpages/orders.php:446 +#: adminpages/orders.php:448 +#: adminpages/orders.php:1563 +#: adminpages/orders.php:1565 +#: includes/email-templates.php:503 +msgid "Refund" +msgstr "" + +#: adminpages/orders.php:454 msgid "New Order" msgstr "" -#: adminpages/orders.php:440 +#: adminpages/orders.php:485 +msgid "A randomly generated code that serves as a unique, non-sequential invoice number." +msgstr "" + +#: adminpages/orders.php:487 msgid "Randomly generated for you." msgstr "" -#: adminpages/orders.php:445 +#: adminpages/orders.php:525 +#: includes/profile.php:95 +msgid "at" +msgstr "" + +#: adminpages/orders.php:534 +msgid "Member Information" +msgstr "" + +#: adminpages/orders.php:539 msgid "User ID" msgstr "" -#: adminpages/orders.php:471 +#: adminpages/orders.php:568 +#: pages/billing.php:162 +#: pages/checkout.php:230 +#: pages/confirmation.php:78 +#: pages/invoice.php:68 +msgid "Billing Address" +msgstr "" + +#: adminpages/orders.php:570 +#: classes/gateways/class.pmprogateway_stripe.php:425 +msgid "Show Billing Address Fields" +msgstr "" + +#: adminpages/orders.php:576 #: includes/privacy.php:245 msgid "Billing Name" msgstr "" -#: adminpages/orders.php:485 +#: adminpages/orders.php:590 #: includes/privacy.php:249 msgid "Billing Street" msgstr "" -#: adminpages/orders.php:497 +#: adminpages/orders.php:602 #: includes/privacy.php:253 #: includes/privacy.php:358 msgid "Billing City" msgstr "" -#: adminpages/orders.php:510 +#: adminpages/orders.php:615 #: includes/privacy.php:257 msgid "Billing State" msgstr "" -#: adminpages/orders.php:522 +#: adminpages/orders.php:627 #: includes/privacy.php:261 #: includes/privacy.php:360 msgid "Billing Postal Code" msgstr "" -#: adminpages/orders.php:534 +#: adminpages/orders.php:639 #: includes/privacy.php:265 #: includes/privacy.php:362 msgid "Billing Country" msgstr "" -#: adminpages/orders.php:547 +#: adminpages/orders.php:652 #: includes/privacy.php:269 msgid "Billing Phone" msgstr "" -#: adminpages/orders.php:576 -#: adminpages/orders.php:1343 -#: classes/class.pmproemail.php:332 -#: classes/class.pmproemail.php:338 -#: classes/class.pmproemail.php:344 -#: classes/class.pmproemail.php:434 -#: classes/class.pmproemail.php:440 -#: classes/class.pmproemail.php:762 -#: classes/class.pmproemail.php:764 -#: classes/gateways/class.pmprogateway_braintree.php:509 -#: classes/gateways/class.pmprogateway_stripe.php:798 -#: includes/profile.php:414 +#: adminpages/orders.php:676 +#: classes/gateways/class.pmprogateway_braintree.php:461 +#: classes/gateways/class.pmprogateway_stripe.php:855 +#: pages/checkout.php:366 +msgid "Payment Information" +msgstr "" + +#: adminpages/orders.php:697 +#: adminpages/orders.php:1437 +#: classes/class.pmproemail.php:465 +#: classes/class.pmproemail.php:471 +#: classes/class.pmproemail.php:477 +#: classes/class.pmproemail.php:567 +#: classes/class.pmproemail.php:573 +#: classes/class.pmproemail.php:895 +#: classes/class.pmproemail.php:897 +#: classes/gateways/class.pmprogateway_braintree.php:516 +#: classes/gateways/class.pmprogateway_stripe.php:906 +#: includes/profile.php:454 #: pages/checkout.php:99 #: pages/checkout.php:105 #: pages/checkout.php:430 @@ -2001,251 +2084,282 @@ msgstr "" msgid "Discount Code" msgstr "" -#: adminpages/orders.php:587 -#: classes/class.pmproemail.php:888 -#: classes/class.pmproemail.php:933 +#: adminpages/orders.php:708 +#: classes/class.pmproemail.php:1021 +#: classes/class.pmproemail.php:1066 #: includes/init.php:198 #: includes/metaboxes.php:19 #: includes/profile.php:34 msgid "None" msgstr "" -#: adminpages/orders.php:598 +#: adminpages/orders.php:719 #: includes/privacy.php:273 msgid "Sub Total" msgstr "" -#: adminpages/orders.php:611 -#: includes/functions.php:2902 +#: adminpages/orders.php:732 +#: includes/functions.php:2904 #: includes/privacy.php:277 msgid "Tax" msgstr "" -#: adminpages/orders.php:628 +#: adminpages/orders.php:749 #: includes/privacy.php:281 msgid "Coupon Amount" msgstr "" -#: adminpages/orders.php:660 +#: adminpages/orders.php:781 #: includes/privacy.php:289 msgid "Payment Type" msgstr "" -#: adminpages/orders.php:671 +#: adminpages/orders.php:792 msgid "e.g. PayPal Express, PayPal Standard, Credit Card." msgstr "" -#: adminpages/orders.php:675 -#: classes/gateways/class.pmprogateway_braintree.php:466 -#: classes/gateways/class.pmprogateway_stripe.php:768 +#: adminpages/orders.php:796 +#: classes/gateways/class.pmprogateway_braintree.php:473 +#: classes/gateways/class.pmprogateway_stripe.php:876 #: includes/privacy.php:293 #: pages/billing.php:338 #: pages/checkout.php:378 msgid "Card Type" msgstr "" -#: adminpages/orders.php:685 +#: adminpages/orders.php:806 msgid "e.g. Visa, MasterCard, AMEX, etc" msgstr "" -#: adminpages/orders.php:689 -#: classes/gateways/class.pmprogateway_twocheckout.php:138 +#: adminpages/orders.php:810 +#: classes/gateways/class.pmprogateway_twocheckout.php:145 #: includes/privacy.php:297 msgid "Account Number" msgstr "" -#: adminpages/orders.php:699 +#: adminpages/orders.php:820 msgid "Obscure all but last 4 digits." msgstr "" -#: adminpages/orders.php:708 -#: adminpages/orders.php:719 +#: adminpages/orders.php:829 #: includes/privacy.php:301 msgid "Expiration Month" msgstr "" -#: adminpages/orders.php:727 -#: includes/privacy.php:305 -msgid "Expiration Year" +#: adminpages/orders.php:844 +msgid "MM/YYYY" +msgstr "" + +#: adminpages/orders.php:872 +msgid "Payment Gateway Information" msgstr "" -#: adminpages/orders.php:758 -#: adminpages/orders.php:1339 -#: classes/class.memberorder.php:1006 +#: adminpages/orders.php:876 +#: adminpages/orders.php:1432 +#: classes/class.memberorder.php:1015 #: includes/privacy.php:313 msgid "Gateway" msgstr "" -#: adminpages/orders.php:781 -#: adminpages/paymentsettings.php:155 +#: adminpages/orders.php:899 +#: adminpages/paymentsettings.php:153 #: includes/privacy.php:317 msgid "Gateway Environment" msgstr "" -#: adminpages/orders.php:789 -#: adminpages/paymentsettings.php:159 -#: classes/class-pmpro-site-health.php:213 +#: adminpages/orders.php:907 +#: adminpages/paymentsettings.php:157 +#: classes/class-pmpro-site-health.php:217 msgid "Sandbox/Testing" msgstr "" -#: adminpages/orders.php:790 -#: adminpages/paymentsettings.php:160 -#: classes/class-pmpro-site-health.php:214 +#: adminpages/orders.php:908 +#: adminpages/paymentsettings.php:158 +#: classes/class-pmpro-site-health.php:218 msgid "Live/Production" msgstr "" -#: adminpages/orders.php:798 +#: adminpages/orders.php:916 #: includes/privacy.php:321 msgid "Payment Transaction ID" msgstr "" -#: adminpages/orders.php:808 +#: adminpages/orders.php:926 msgid "Generated by the gateway. Useful to cross reference orders." msgstr "" -#: adminpages/orders.php:813 -#: classes/class.memberorder.php:1007 +#: adminpages/orders.php:931 +#: classes/class.memberorder.php:1016 #: includes/privacy.php:325 msgid "Subscription Transaction ID" msgstr "" -#: adminpages/orders.php:823 +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "View all orders for this subscription" +msgstr "" + +#: adminpages/orders.php:939 +#: adminpages/orders.php:1711 +msgid "Renewal" +msgstr "" + +#: adminpages/orders.php:942 msgid "Generated by the gateway. Useful to cross reference subscriptions." msgstr "" -#: adminpages/orders.php:861 -#: includes/profile.php:85 -msgid "at" +#: adminpages/orders.php:948 +msgid "Additional Order Information" msgstr "" -#: adminpages/orders.php:873 +#: adminpages/orders.php:956 msgid "Affiliate ID" msgstr "" -#: adminpages/orders.php:886 +#: adminpages/orders.php:969 msgid "Affiliate SubID" msgstr "" -#: adminpages/orders.php:907 +#: adminpages/orders.php:990 msgid "TOS Consent" msgstr "" -#: adminpages/orders.php:922 +#: adminpages/orders.php:1005 msgid "Notes" msgstr "" -#: adminpages/orders.php:960 +#: adminpages/orders.php:1043 msgid "Save Order" msgstr "" -#: adminpages/orders.php:972 +#: adminpages/orders.php:1055 msgid "Add New Order" msgstr "" -#: adminpages/orders.php:1013 -#: adminpages/reports/memberships.php:331 +#: adminpages/orders.php:1094 +#: adminpages/orders.php:1097 +msgid "Search Orders" +msgstr "" + +#: adminpages/orders.php:1101 +#: adminpages/reports/memberships.php:330 #: adminpages/reports/sales.php:311 #: classes/class-pmpro-members-list-table.php:657 msgid "Show" msgstr "" -#: adminpages/orders.php:1017 +#: adminpages/orders.php:1105 msgid "Within a Date Range" msgstr "" -#: adminpages/orders.php:1019 +#: adminpages/orders.php:1107 msgid "Predefined Date Range" msgstr "" -#: adminpages/orders.php:1021 +#: adminpages/orders.php:1109 msgid "Within a Level" msgstr "" -#: adminpages/orders.php:1023 +#: adminpages/orders.php:1111 msgid "With a Discount Code" msgstr "" -#: adminpages/orders.php:1025 +#: adminpages/orders.php:1113 msgid "Within a Status" msgstr "" -#: adminpages/orders.php:1027 +#: adminpages/orders.php:1115 msgid "Only Paid Orders" msgstr "" -#: adminpages/orders.php:1029 +#: adminpages/orders.php:1117 msgid "Only Free Orders" msgstr "" -#: adminpages/orders.php:1037 +#: adminpages/orders.php:1125 msgid "From" msgstr "" -#: adminpages/orders.php:1052 +#: adminpages/orders.php:1140 msgid "To" msgstr "" -#: adminpages/orders.php:1065 +#: adminpages/orders.php:1153 msgid "filter by " msgstr "" -#: adminpages/orders.php:1070 +#: adminpages/orders.php:1158 #: adminpages/reports/login.php:50 #: adminpages/reports/memberships.php:50 #: adminpages/reports/sales.php:51 msgid "This Month" msgstr "" -#: adminpages/orders.php:1072 +#: adminpages/orders.php:1160 msgid "Last Month" msgstr "" -#: adminpages/orders.php:1074 +#: adminpages/orders.php:1162 #: adminpages/reports/memberships.php:51 #: adminpages/reports/sales.php:52 msgid "This Year" msgstr "" -#: adminpages/orders.php:1076 +#: adminpages/orders.php:1164 msgid "Last Year" msgstr "" -#: adminpages/orders.php:1115 +#: adminpages/orders.php:1203 msgid "Filter" msgstr "" -#: adminpages/orders.php:1249 -#: adminpages/orders.php:1252 -msgid "Search Orders" -msgstr "" - -#: adminpages/orders.php:1325 +#: adminpages/orders.php:1405 +#: adminpages/orders.php:1752 msgid "%d orders found." msgstr "" -#: adminpages/orders.php:1338 -#: adminpages/orders.php:1532 -msgid "Payment" +#: adminpages/orders.php:1431 +#: includes/email-templates.php:68 +#: shortcodes/pmpro_account.php:43 +msgid "Billing" msgstr "" -#: adminpages/orders.php:1340 +#: adminpages/orders.php:1433 msgid "Transaction IDs" msgstr "" #. translators: %s is the Order Code. -#: adminpages/orders.php:1368 +#: adminpages/orders.php:1457 msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?" msgstr "" -#: adminpages/orders.php:1541 +#: adminpages/orders.php:1614 +#: adminpages/orders.php:1679 +#: adminpages/orders.php:1730 +#: classes/class-pmpro-members-list-table.php:576 +msgid "—" +msgstr "" + +#: adminpages/orders.php:1684 +msgid "Payment" +msgstr "" + +#: adminpages/orders.php:1693 msgid "Subscription" msgstr "" -#: adminpages/orders.php:1550 -msgid "renewal" +#: adminpages/orders.php:1705 +#: pages/invoice.php:43 +#: shortcodes/pmpro_account.php:244 +msgid "Paid" +msgstr "" + +#. translators: %1$s is the date and %2$s is the time. +#: adminpages/orders.php:1718 +msgid "%1$s at %2$s" msgstr "" -#: adminpages/orders.php:1557 +#: adminpages/orders.php:1726 msgid "edit" msgstr "" @@ -2303,174 +2417,174 @@ msgstr "" msgid "The following pages have been created for you" msgstr "" -#: adminpages/pagesettings.php:186 +#: adminpages/pagesettings.php:185 msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page." msgstr "" -#: adminpages/pagesettings.php:188 +#: adminpages/pagesettings.php:187 msgid "Assign the WordPress pages for each required Paid Memberships Pro page or" msgstr "" -#: adminpages/pagesettings.php:189 +#: adminpages/pagesettings.php:188 msgid "click here to let us generate them for you" msgstr "" -#: adminpages/pagesettings.php:193 +#: adminpages/pagesettings.php:192 msgid "Manage Pages" msgstr "" -#: adminpages/pagesettings.php:194 +#: adminpages/pagesettings.php:193 msgid "Several frontend pages are required for your Paid Memberships Pro site." msgstr "" -#: adminpages/pagesettings.php:195 +#: adminpages/pagesettings.php:194 msgid "Generate Pages For Me" msgstr "" -#: adminpages/pagesettings.php:196 +#: adminpages/pagesettings.php:195 msgid "Create Pages Manually" msgstr "" -#: adminpages/pagesettings.php:205 +#: adminpages/pagesettings.php:204 msgid "Account Page" msgstr "" -#: adminpages/pagesettings.php:212 -#: adminpages/pagesettings.php:236 -#: adminpages/pagesettings.php:260 -#: adminpages/pagesettings.php:285 -#: adminpages/pagesettings.php:310 -#: adminpages/pagesettings.php:335 -#: adminpages/pagesettings.php:360 -#: adminpages/pagesettings.php:485 +#: adminpages/pagesettings.php:211 +#: adminpages/pagesettings.php:235 +#: adminpages/pagesettings.php:259 +#: adminpages/pagesettings.php:284 +#: adminpages/pagesettings.php:309 +#: adminpages/pagesettings.php:334 +#: adminpages/pagesettings.php:359 +#: adminpages/pagesettings.php:484 msgid "Choose One" msgstr "" -#: adminpages/pagesettings.php:220 -#: adminpages/pagesettings.php:244 -#: adminpages/pagesettings.php:268 -#: adminpages/pagesettings.php:293 -#: adminpages/pagesettings.php:318 -#: adminpages/pagesettings.php:343 -#: adminpages/pagesettings.php:368 -#: adminpages/pagesettings.php:405 -#: adminpages/pagesettings.php:434 -#: adminpages/pagesettings.php:493 +#: adminpages/pagesettings.php:219 +#: adminpages/pagesettings.php:243 +#: adminpages/pagesettings.php:267 +#: adminpages/pagesettings.php:292 +#: adminpages/pagesettings.php:317 +#: adminpages/pagesettings.php:342 +#: adminpages/pagesettings.php:367 +#: adminpages/pagesettings.php:404 +#: adminpages/pagesettings.php:433 +#: adminpages/pagesettings.php:492 msgid "edit page" msgstr "" -#: adminpages/pagesettings.php:223 -#: adminpages/pagesettings.php:247 -#: adminpages/pagesettings.php:271 -#: adminpages/pagesettings.php:296 -#: adminpages/pagesettings.php:321 -#: adminpages/pagesettings.php:346 -#: adminpages/pagesettings.php:371 -#: adminpages/pagesettings.php:408 -#: adminpages/pagesettings.php:437 -#: adminpages/pagesettings.php:496 +#: adminpages/pagesettings.php:222 +#: adminpages/pagesettings.php:246 +#: adminpages/pagesettings.php:270 +#: adminpages/pagesettings.php:295 +#: adminpages/pagesettings.php:320 +#: adminpages/pagesettings.php:345 +#: adminpages/pagesettings.php:370 +#: adminpages/pagesettings.php:407 +#: adminpages/pagesettings.php:436 +#: adminpages/pagesettings.php:495 msgid "view page" msgstr "" -#: adminpages/pagesettings.php:225 -#: adminpages/pagesettings.php:249 -#: adminpages/pagesettings.php:273 -#: adminpages/pagesettings.php:298 -#: adminpages/pagesettings.php:323 -#: adminpages/pagesettings.php:348 -#: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:224 +#: adminpages/pagesettings.php:248 +#: adminpages/pagesettings.php:272 +#: adminpages/pagesettings.php:297 +#: adminpages/pagesettings.php:322 +#: adminpages/pagesettings.php:347 +#: adminpages/pagesettings.php:372 msgid "Include the shortcode" msgstr "" -#: adminpages/pagesettings.php:225 +#: adminpages/pagesettings.php:224 msgid "or the Membership Account block" msgstr "" -#: adminpages/pagesettings.php:229 +#: adminpages/pagesettings.php:228 msgid "Billing Information Page" msgstr "" -#: adminpages/pagesettings.php:249 +#: adminpages/pagesettings.php:248 msgid "or the Membership Billing block" msgstr "" -#: adminpages/pagesettings.php:253 +#: adminpages/pagesettings.php:252 msgid "Cancel Page" msgstr "" -#: adminpages/pagesettings.php:273 +#: adminpages/pagesettings.php:272 msgid "or the Membership Cancel block" msgstr "" -#: adminpages/pagesettings.php:278 +#: adminpages/pagesettings.php:277 msgid "Checkout Page" msgstr "" -#: adminpages/pagesettings.php:298 +#: adminpages/pagesettings.php:297 msgid "or the Membership Checkout block" msgstr "" -#: adminpages/pagesettings.php:303 +#: adminpages/pagesettings.php:302 msgid "Confirmation Page" msgstr "" -#: adminpages/pagesettings.php:323 +#: adminpages/pagesettings.php:322 msgid "or the Membership Confirmation block" msgstr "" -#: adminpages/pagesettings.php:328 +#: adminpages/pagesettings.php:327 msgid "Invoice Page" msgstr "" -#: adminpages/pagesettings.php:348 +#: adminpages/pagesettings.php:347 msgid "or the Membership Invoice block" msgstr "" -#: adminpages/pagesettings.php:353 +#: adminpages/pagesettings.php:352 msgid "Levels Page" msgstr "" -#: adminpages/pagesettings.php:373 +#: adminpages/pagesettings.php:372 msgid "or the Membership Levels block" msgstr "" -#: adminpages/pagesettings.php:383 +#: adminpages/pagesettings.php:382 msgid "Optional: Customize your Membership Levels page using the Advanced Levels Page Add On." msgstr "" -#: adminpages/pagesettings.php:389 +#: adminpages/pagesettings.php:388 msgid "Log In Page" msgstr "" -#: adminpages/pagesettings.php:396 -#: adminpages/pagesettings.php:425 +#: adminpages/pagesettings.php:395 +#: adminpages/pagesettings.php:424 msgid "Use WordPress Default" msgstr "" -#: adminpages/pagesettings.php:411 -#: adminpages/pagesettings.php:440 -#: adminpages/pagesettings.php:499 +#: adminpages/pagesettings.php:410 +#: adminpages/pagesettings.php:439 +#: adminpages/pagesettings.php:498 msgid "Generate Page" msgstr "" -#: adminpages/pagesettings.php:413 +#: adminpages/pagesettings.php:412 msgid "Include the shortcode %s or the Log In Form block." msgstr "" -#: adminpages/pagesettings.php:418 +#: adminpages/pagesettings.php:417 #: includes/adminpages.php:358 msgid "Member Profile Edit Page" msgstr "" -#: adminpages/pagesettings.php:442 +#: adminpages/pagesettings.php:441 msgid "Include the shortcode %s or the Member Profile Edit block." msgstr "" -#: adminpages/pagesettings.php:452 +#: adminpages/pagesettings.php:451 msgid "Optional: Collect additional member fields at checkout, on the profile, or for admin-use only using the Register Helper Add On." msgstr "" -#: adminpages/pagesettings.php:461 +#: adminpages/pagesettings.php:460 msgid "Additional Page Settings" msgstr "" @@ -2479,133 +2593,133 @@ msgid "Your payment settings have been updated." msgstr "" #: adminpages/paymentsettings.php:112 -#: adminpages/paymentsettings.php:132 +#: adminpages/paymentsettings.php:130 #: classes/class-pmpro-site-health.php:69 msgid "Payment Gateway" msgstr "" #: adminpages/paymentsettings.php:112 -#: adminpages/paymentsettings.php:261 +#: adminpages/paymentsettings.php:259 msgid "SSL Settings" msgstr "" -#: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Paid Memberships Pro - Payment Gateway Settings" msgstr "" -#: adminpages/paymentsettings.php:116 +#: adminpages/paymentsettings.php:114 msgid "Payment Gateway Settings" msgstr "" -#: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "Paid Memberships Pro - SSL Settings" msgstr "" -#: adminpages/paymentsettings.php:117 +#: adminpages/paymentsettings.php:115 msgid "SSL" msgstr "" #. translators: %s and %s: Links to Payment Gateway Settings and SSL Settings docs. -#: adminpages/paymentsettings.php:119 +#: adminpages/paymentsettings.php:117 msgid "Learn more about %s and %s." msgstr "" -#: adminpages/paymentsettings.php:127 +#: adminpages/paymentsettings.php:125 msgid "Choose a Gateway" msgstr "" -#: adminpages/paymentsettings.php:147 +#: adminpages/paymentsettings.php:145 msgid "This gateway is for membership sites with Free levels or for sites that accept payment offline." msgstr "" -#: adminpages/paymentsettings.php:149 +#: adminpages/paymentsettings.php:147 msgid "It is not connected to a live gateway environment and cannot accept payments." msgstr "" -#: adminpages/paymentsettings.php:201 +#: adminpages/paymentsettings.php:199 msgid "Currency and Tax Settings" msgstr "" -#: adminpages/paymentsettings.php:206 +#: adminpages/paymentsettings.php:204 msgid "Currency" msgstr "" -#: adminpages/paymentsettings.php:222 +#: adminpages/paymentsettings.php:220 msgid "Not all currencies will be supported by every gateway. Please check with your gateway." msgstr "" -#: adminpages/paymentsettings.php:227 +#: adminpages/paymentsettings.php:225 msgid "Accepted Credit Card Types" msgstr "" -#: adminpages/paymentsettings.php:241 +#: adminpages/paymentsettings.php:239 msgid "Sales Tax" msgstr "" -#: adminpages/paymentsettings.php:241 +#: adminpages/paymentsettings.php:239 #: pages/billing.php:181 msgid "optional" msgstr "" -#: adminpages/paymentsettings.php:244 +#: adminpages/paymentsettings.php:242 msgid "Tax State" msgstr "" -#: adminpages/paymentsettings.php:245 +#: adminpages/paymentsettings.php:243 msgid "abbreviation, e.g. \"PA\"" msgstr "" -#: adminpages/paymentsettings.php:246 +#: adminpages/paymentsettings.php:244 msgid "Tax Rate" msgstr "" -#: adminpages/paymentsettings.php:247 +#: adminpages/paymentsettings.php:245 msgid "decimal, e.g. \"0.06\"" msgstr "" #. translators: %s: A link to the docs for the pmpro_tax filter. -#: adminpages/paymentsettings.php:252 +#: adminpages/paymentsettings.php:250 msgid "US only. If values are given, tax will be applied for any members ordering from the selected state. For non-US or more complex tax rules, use the %s." msgstr "" -#: adminpages/paymentsettings.php:266 +#: adminpages/paymentsettings.php:264 msgid "Force SSL" msgstr "" -#: adminpages/paymentsettings.php:273 +#: adminpages/paymentsettings.php:271 msgid "Your Site URL starts with https:// and so PMPro will allow your entire site to be served over HTTPS." msgstr "" -#: adminpages/paymentsettings.php:281 +#: adminpages/paymentsettings.php:279 msgid "Yes (with JavaScript redirects)" msgstr "" -#: adminpages/paymentsettings.php:283 +#: adminpages/paymentsettings.php:281 msgid "Recommended: Yes. Try the JavaScript redirects setting if you are having issues with infinite redirect loops." msgstr "" -#: adminpages/paymentsettings.php:291 +#: adminpages/paymentsettings.php:289 msgid "SSL Seal Code" msgstr "" -#: adminpages/paymentsettings.php:297 +#: adminpages/paymentsettings.php:295 msgid "SSL Certificate" msgstr "" #. translators: %s: Link to SSL Certificate docs. -#: adminpages/paymentsettings.php:299 +#: adminpages/paymentsettings.php:297 msgid "Your %s must be installed by your web host. Use this field to display your seal or other trusted merchant images. This field does not accept JavaScript." msgstr "" -#: adminpages/paymentsettings.php:306 +#: adminpages/paymentsettings.php:304 msgid "Extra HTTPS URL Filter" msgstr "" -#: adminpages/paymentsettings.php:309 +#: adminpages/paymentsettings.php:307 msgid "Pass all generated HTML through a URL filter to add HTTPS to URLs used on secure pages. Check this if you are using SSL and have warnings on your checkout pages." msgstr "" -#: adminpages/reports.php:18 +#: adminpages/reports.php:21 msgid "Back to Reports Dashboard" msgstr "" @@ -2638,7 +2752,7 @@ msgstr "" #: adminpages/reports/login.php:62 #: adminpages/reports/memberships.php:52 #: adminpages/reports/sales.php:53 -#: adminpages/reports/sales.php:542 +#: adminpages/reports/sales.php:543 msgid "All Time" msgstr "" @@ -2652,18 +2766,27 @@ msgstr "" msgid "Visits, Views, and Logins Report" msgstr "" -#: adminpages/reports/login.php:103 +#: adminpages/reports/login.php:102 +msgctxt "Search form label" +msgid "Search" +msgstr "" + +#: adminpages/reports/login.php:102 +msgid "Users" +msgstr "" + +#: adminpages/reports/login.php:109 msgctxt "Dropdown label, e.g. Show All Users" msgid "Show" msgstr "" -#: adminpages/reports/login.php:105 +#: adminpages/reports/login.php:111 #: classes/class-pmpro-members-list-table.php:233 msgid "All Users" msgstr "" -#: adminpages/reports/login.php:106 -#: adminpages/reports/memberships.php:355 +#: adminpages/reports/login.php:112 +#: adminpages/reports/memberships.php:354 #: adminpages/reports/sales.php:334 #: classes/class-pmpro-members-list-table.php:659 #: classes/class.pmproemail.php:195 @@ -2671,15 +2794,6 @@ msgstr "" msgid "All Levels" msgstr "" -#: adminpages/reports/login.php:122 -msgctxt "Search form label" -msgid "Search" -msgstr "" - -#: adminpages/reports/login.php:122 -msgid "Users" -msgstr "" - #: adminpages/reports/login.php:188 msgid "Last Visit" msgstr "" @@ -2749,44 +2863,44 @@ msgstr "" msgid "All Cancellations" msgstr "" -#: adminpages/reports/memberships.php:335 +#: adminpages/reports/memberships.php:334 #: adminpages/reports/sales.php:315 msgid "Annual" msgstr "" -#: adminpages/reports/memberships.php:338 +#: adminpages/reports/memberships.php:337 msgid "Signups vs. All Cancellations" msgstr "" -#: adminpages/reports/memberships.php:339 +#: adminpages/reports/memberships.php:338 msgid "Signups vs. Cancellations" msgstr "" -#: adminpages/reports/memberships.php:340 +#: adminpages/reports/memberships.php:339 msgid "Signups vs. Expirations" msgstr "" -#: adminpages/reports/memberships.php:342 -#: adminpages/reports/memberships.php:353 +#: adminpages/reports/memberships.php:341 +#: adminpages/reports/memberships.php:352 #: adminpages/reports/sales.php:321 #: adminpages/reports/sales.php:332 msgid "for" msgstr "" -#: adminpages/reports/memberships.php:356 +#: adminpages/reports/memberships.php:355 msgid "All Paid Levels" msgstr "" -#: adminpages/reports/memberships.php:357 +#: adminpages/reports/memberships.php:356 msgid "All Free Levels" msgstr "" -#: adminpages/reports/memberships.php:377 +#: adminpages/reports/memberships.php:376 #: adminpages/reports/sales.php:352 msgid "All Codes" msgstr "" -#: adminpages/reports/memberships.php:385 +#: adminpages/reports/memberships.php:384 #: adminpages/reports/sales.php:360 msgid "Generate Report" msgstr "" @@ -2805,36 +2919,36 @@ msgstr "" msgid "Revenue" msgstr "" -#: adminpages/reports/sales.php:364 +#: adminpages/reports/sales.php:365 msgid "Average line calculated using data prior to current day, month, or year." msgstr "" -#: adminpages/reports/sales.php:406 +#: adminpages/reports/sales.php:407 msgid "Renewals" msgstr "" -#: adminpages/reports/sales.php:407 +#: adminpages/reports/sales.php:408 msgid "New %s" msgstr "" -#: adminpages/reports/sales.php:409 -#: adminpages/reports/sales.php:411 +#: adminpages/reports/sales.php:410 +#: adminpages/reports/sales.php:412 msgid "Average: %s" msgstr "" -#: adminpages/reports/sales.php:526 +#: adminpages/reports/sales.php:527 msgid "New:" msgstr "" -#: adminpages/reports/sales.php:529 +#: adminpages/reports/sales.php:530 msgid "Renewals:" msgstr "" -#: adminpages/reports/sales.php:532 +#: adminpages/reports/sales.php:533 msgid "Total:" msgstr "" -#: adminpages/reports/sales.php:545 +#: adminpages/reports/sales.php:546 msgid "%s %s for %s" msgstr "" @@ -2879,6 +2993,10 @@ msgstr "" msgid "Update complete." msgstr "" +#: blocks/blocks.php:45 +msgid "Paid Memberships Pro Pages" +msgstr "" + #: blocks/checkout-button/block.php:54 msgid "Buy Now" msgstr "" @@ -2935,6 +3053,11 @@ msgstr "" msgid "%1$d orders used a Discount Code at checkout. Here is a breakdown of your most used codes:" msgstr "" +#: classes/class-pmpro-admin-activity-email.php:219 +#: classes/class.memberorder.php:1014 +msgid "Order" +msgstr "" + #: classes/class-pmpro-admin-activity-email.php:228 msgid "No Discount Codes were used %2$s." msgstr "" @@ -3026,10 +3149,6 @@ msgstr "" msgid "Old Members" msgstr "" -#: classes/class-pmpro-members-list-table.php:576 -msgid "—" -msgstr "" - #: classes/class-pmpro-members-list-table.php:584 msgid " + " msgstr "" @@ -3066,152 +3185,250 @@ msgstr "" msgid "Membership Pages" msgstr "" -#: classes/class-pmpro-site-health.php:124 +#: classes/class-pmpro-site-health.php:105 +msgid "Library Conflicts" +msgstr "" + +#: classes/class-pmpro-site-health.php:128 msgid "No Levels Found" msgstr "" #. translators: %d: The total count of discount codes. -#: classes/class-pmpro-site-health.php:143 +#: classes/class-pmpro-site-health.php:147 msgid "%d discount code" msgid_plural "%d discount codes" msgstr[0] "" msgstr[1] "" #. translators: %d: The total count of orders. -#: classes/class-pmpro-site-health.php:159 +#: classes/class-pmpro-site-health.php:163 msgid "%d order" msgid_plural "%d orders" msgstr[0] "" msgstr[1] "" #. translators: %s: The gateway name that is not registered. -#: classes/class-pmpro-site-health.php:176 +#: classes/class-pmpro-site-health.php:180 msgid "%s (gateway not registered)" msgstr "" -#: classes/class-pmpro-site-health.php:189 +#: classes/class-pmpro-site-health.php:193 +#: classes/class-pmpro-wisdom-integration.php:345 msgid "Legacy Keys" msgstr "" -#: classes/class-pmpro-site-health.php:194 +#: classes/class-pmpro-site-health.php:198 +#: classes/class-pmpro-wisdom-integration.php:350 msgid "Stripe Connect" msgstr "" #. translators: %s: The environment name that is not registered. -#: classes/class-pmpro-site-health.php:220 +#: classes/class-pmpro-site-health.php:224 msgid "%s (environment not registered)" msgstr "" -#: classes/class-pmpro-site-health.php:275 +#: classes/class-pmpro-site-health.php:279 msgid "Unable to verify" msgstr "" -#: classes/class-pmpro-site-health.php:279 +#: classes/class-pmpro-site-health.php:283 msgid "No template overrides" msgstr "" -#: classes/class-pmpro-site-health.php:285 +#: classes/class-pmpro-site-health.php:289 msgid "Empty override folder -- no template overrides" msgstr "" -#: classes/class-pmpro-site-health.php:349 +#: classes/class-pmpro-site-health.php:342 msgid "missing" msgstr "" -#: classes/class-pmpro-site-health.php:389 +#: classes/class-pmpro-site-health.php:382 msgid "No Membership Pages Found" msgstr "" -#: classes/class-pmpro-site-health.php:406 +#: classes/class-pmpro-site-health.php:399 msgid "PMPRO_GETFILE_ENABLED is not set" msgstr "" -#: classes/class-pmpro-site-health.php:410 +#: classes/class-pmpro-site-health.php:403 msgid "PMPRO_GETFILE_ENABLED is off" msgstr "" -#: classes/class-pmpro-site-health.php:423 -#: classes/class-pmpro-site-health.php:457 +#: classes/class-pmpro-site-health.php:416 +#: classes/class-pmpro-site-health.php:450 msgid "Unable to access .htaccess file" msgstr "" -#: classes/class-pmpro-site-health.php:427 -#: classes/class-pmpro-site-health.php:461 +#: classes/class-pmpro-site-health.php:420 +#: classes/class-pmpro-site-health.php:454 msgid "Off - No .htaccess file" msgstr "" -#: classes/class-pmpro-site-health.php:433 -#: classes/class-pmpro-site-health.php:472 +#: classes/class-pmpro-site-health.php:426 +#: classes/class-pmpro-site-health.php:465 msgid "Off" msgstr "" -#: classes/class-pmpro-site-health.php:436 +#: classes/class-pmpro-site-health.php:429 msgid "On - .htaccess contains services/getfile.php usage" msgstr "" -#: classes/class-pmpro-site-health.php:467 +#: classes/class-pmpro-site-health.php:460 msgid "On - Browser cache enabled for HTML (ExpiresByType text/html), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" -#: classes/class-pmpro-site-health.php:469 +#: classes/class-pmpro-site-health.php:462 msgid "On - Browser cache enabled for HTML (ExpiresDefault), this may interfere with Content Restriction after Login. Remove that line from your .htaccess to resolve this problem." msgstr "" -#: classes/class-pmpro-site-health.php:484 +#: classes/class-pmpro-site-health.php:481 +msgid "No library conflicts detected." +msgstr "" + +#: classes/class-pmpro-site-health.php:508 msgid "Cron Limit" msgstr "" -#: classes/class-pmpro-site-health.php:485 +#: classes/class-pmpro-site-health.php:509 msgid "Default Membership Level" msgstr "" -#: classes/class-pmpro-site-health.php:486 +#: classes/class-pmpro-site-health.php:510 msgid "Use Sessions" msgstr "" -#: classes/class-pmpro-site-health.php:491 +#: classes/class-pmpro-site-health.php:515 msgid "Authorize.net Silent Post Debug Mode" msgstr "" -#: classes/class-pmpro-site-health.php:494 +#: classes/class-pmpro-site-health.php:518 msgid "Braintree Webhook Debug Mode" msgstr "" -#: classes/class-pmpro-site-health.php:497 -#: classes/class-pmpro-site-health.php:500 -#: classes/class-pmpro-site-health.php:503 +#: classes/class-pmpro-site-health.php:521 +#: classes/class-pmpro-site-health.php:524 +#: classes/class-pmpro-site-health.php:527 msgid "PayPal IPN Debug Mode" msgstr "" -#: classes/class-pmpro-site-health.php:506 +#: classes/class-pmpro-site-health.php:530 msgid "Stripe Webhook Delay" msgstr "" -#: classes/class-pmpro-site-health.php:507 +#: classes/class-pmpro-site-health.php:531 msgid "Stripe Webhook Debug Mode" msgstr "" -#: classes/class-pmpro-site-health.php:510 +#: classes/class-pmpro-site-health.php:534 msgid "2Checkout INS Debug Mode" msgstr "" -#: classes/class.memberorder.php:1001 -msgid "There was an error canceling the subscription for user with ID=%s. You will want to check your payment gateway to see if their subscription is still active." +#: classes/class-pmpro-wisdom-integration.php:218 +msgid "Share your usage data to help us improve Paid Memberships Pro. We use this data to analyze how our plugin is meeting your needs and identify new opportunities to help you create a thriving membership business. You can always visit the Advanced Settings and change this preference." msgstr "" -#: classes/class.memberorder.php:1004 -msgid "User Display Name" +#: classes/class-pmpro-wisdom-integration.php:219 +msgid "Read more about what data we collect." msgstr "" -#: classes/class.memberorder.php:1009 -msgid "Edit User" +#: classes/class-pmpro-wisdom-tracker.php:313 +msgid "We can't detect any product information. This is most probably because you have not included the code snippet." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:840 +msgid "Thank you for installing our %1$s. We would like to track its usage on your site. We don't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:843 +msgid "Thank you for installing our %1$s. We'd like your permission to track its usage on your site and subscribe you to our newsletter. We won't record any sensitive data, only information regarding the WordPress environment and %1$s settings, which we will use to help us make improvements to the %1$s. Tracking is completely optional." +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:852 +msgid "Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:853 +msgid "Do Not Allow" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:888 +msgid "Thank you for opting in to tracking. Would you like to receive occasional news about this %s, including details of new features and special offers?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:895 +msgid "Yes Please" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:896 +msgid "No Thank You" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:929 +msgid "Sorry to see you go" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:930 +msgid "Before you deactivate the plugin, would you quickly give us your reason for doing so?" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:932 +msgid "Set up is too difficult" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:933 +msgid "Lack of documentation" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:934 +msgid "Not the features I wanted" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:935 +msgid "Found a better plugin" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:936 +msgid "Installed by mistake" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:937 +msgid "Only required temporarily" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:938 +msgid "Didn't work" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:940 +msgid "Details (optional)" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:983 +msgid "Submitting form" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Submit and Deactivate" +msgstr "" + +#: classes/class-pmpro-wisdom-tracker.php:1052 +msgid "Just Deactivate" msgstr "" #: classes/class.memberorder.php:1010 -msgid "Edit Order" +msgid "There was an error canceling the subscription for user with ID=%s. You will want to check your payment gateway to see if their subscription is still active." +msgstr "" + +#: classes/class.memberorder.php:1013 +msgid "User Display Name" msgstr "" -#: classes/class.memberorder.php:1183 +#: classes/class.memberorder.php:1018 +msgid "Edit User" +msgstr "" + +#: classes/class.memberorder.php:1192 msgid "This is a test order used with the PMPro Email Templates addon." msgstr "" @@ -3227,99 +3444,107 @@ msgstr "" msgid "Membership for %s at %s has been CANCELLED" msgstr "" -#: classes/class.pmproemail.php:262 +#: classes/class.pmproemail.php:265 +msgid "Your invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:331 +msgid "Invoice for order #%s at %s has been REFUNDED" +msgstr "" + +#: classes/class.pmproemail.php:395 msgid "Your membership confirmation for %s" msgstr "" -#: classes/class.pmproemail.php:352 -#: classes/class.pmproemail.php:450 -#: classes/class.pmproemail.php:771 -#: classes/class.pmproemail.php:905 -#: classes/class.pmproemail.php:950 +#: classes/class.pmproemail.php:485 +#: classes/class.pmproemail.php:583 +#: classes/class.pmproemail.php:904 +#: classes/class.pmproemail.php:1038 +#: classes/class.pmproemail.php:1083 #: includes/email.php:472 #: includes/email.php:473 msgid "This membership will expire on %s." msgstr "" -#: classes/class.pmproemail.php:370 +#: classes/class.pmproemail.php:503 msgid "Member checkout for %s at %s" msgstr "" -#: classes/class.pmproemail.php:468 +#: classes/class.pmproemail.php:601 msgid "Your billing information has been updated at %s" msgstr "" -#: classes/class.pmproemail.php:518 +#: classes/class.pmproemail.php:651 msgid "Billing information has been updated for %s at %s" msgstr "" -#: classes/class.pmproemail.php:570 +#: classes/class.pmproemail.php:703 msgid "Membership payment failed at %s" msgstr "" -#: classes/class.pmproemail.php:619 +#: classes/class.pmproemail.php:752 msgid "Membership payment failed For %s at %s" msgstr "" -#: classes/class.pmproemail.php:668 +#: classes/class.pmproemail.php:801 msgid "Credit card on file expiring soon at %s" msgstr "" -#: classes/class.pmproemail.php:720 +#: classes/class.pmproemail.php:853 msgid "Invoice for %s membership" msgstr "" -#: classes/class.pmproemail.php:799 +#: classes/class.pmproemail.php:932 msgid "Your trial at %s is ending soon" msgstr "" -#: classes/class.pmproemail.php:836 +#: classes/class.pmproemail.php:969 msgid "Your membership at %s has ended" msgstr "" -#: classes/class.pmproemail.php:863 +#: classes/class.pmproemail.php:996 msgid "Your membership at %s will end soon" msgstr "" -#: classes/class.pmproemail.php:893 +#: classes/class.pmproemail.php:1026 msgid "Your membership at %s has been changed" msgstr "" -#: classes/class.pmproemail.php:898 -#: classes/class.pmproemail.php:943 +#: classes/class.pmproemail.php:1031 +#: classes/class.pmproemail.php:1076 #: includes/email.php:465 msgid "The new level is %s." msgstr "" -#: classes/class.pmproemail.php:900 +#: classes/class.pmproemail.php:1033 #: includes/email.php:459 #: preheaders/cancel.php:77 msgid "Your membership has been cancelled." msgstr "" -#: classes/class.pmproemail.php:909 -#: classes/class.pmproemail.php:954 +#: classes/class.pmproemail.php:1042 +#: classes/class.pmproemail.php:1087 #: includes/email.php:475 msgid "This membership does not expire." msgstr "" -#: classes/class.pmproemail.php:938 +#: classes/class.pmproemail.php:1071 msgid "Membership for %s at %s has been changed" msgstr "" -#: classes/class.pmproemail.php:945 +#: classes/class.pmproemail.php:1078 msgid "Membership has been cancelled." msgstr "" -#: classes/class.pmproemail.php:985 +#: classes/class.pmproemail.php:1118 msgid "Invoice for order #: " msgstr "" -#: classes/class.pmproemail.php:1035 +#: classes/class.pmproemail.php:1168 msgid "Payment action required for your %s membership" msgstr "" -#: classes/class.pmproemail.php:1073 +#: classes/class.pmproemail.php:1206 msgid "Payment action required: membership for %s at %s" msgstr "" @@ -3358,7 +3583,7 @@ msgid "A partial payment was made that we could not void. Please contact the sit msgstr "" #: classes/gateways/class.pmprogateway_authorizenet.php:55 -#: paid-memberships-pro.php:167 +#: paid-memberships-pro.php:173 msgid "Authorize.net" msgstr "" @@ -3392,149 +3617,143 @@ msgid "Attempting to load Braintree gateway: %s" msgstr "" #: classes/gateways/class.pmprogateway_braintree.php:87 -#: classes/gateways/class.pmprogateway_stripe.php:1353 +#: classes/gateways/class.pmprogateway_stripe.php:1478 msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it." msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:144 +#: classes/gateways/class.pmprogateway_braintree.php:151 msgid "Problem loading plans: %s" msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:146 +#: classes/gateways/class.pmprogateway_braintree.php:153 msgid "Problem accessing the Braintree Gateway. Please verify your PMPro Payment Settings (Keys, etc)." msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:251 -#: paid-memberships-pro.php:168 +#: classes/gateways/class.pmprogateway_braintree.php:258 +#: paid-memberships-pro.php:174 msgid "Braintree Payments" msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:308 +#: classes/gateways/class.pmprogateway_braintree.php:315 msgid "Braintree Settings" msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:313 +#: classes/gateways/class.pmprogateway_braintree.php:320 #: classes/gateways/class.pmprogateway_cybersource.php:94 msgid "Merchant ID" msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:321 +#: classes/gateways/class.pmprogateway_braintree.php:328 msgid "Public Key" msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:329 +#: classes/gateways/class.pmprogateway_braintree.php:336 msgid "Private Key" msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:337 +#: classes/gateways/class.pmprogateway_braintree.php:344 msgid "Client-Side Encryption Key" msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:345 +#: classes/gateways/class.pmprogateway_braintree.php:352 msgid "Web Hook URL" msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:348 +#: classes/gateways/class.pmprogateway_braintree.php:355 msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to" msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:454 -#: classes/gateways/class.pmprogateway_stripe.php:747 -#: pages/checkout.php:366 -msgid "Payment Information" -msgstr "" - -#: classes/gateways/class.pmprogateway_braintree.php:455 -#: classes/gateways/class.pmprogateway_stripe.php:748 +#: classes/gateways/class.pmprogateway_braintree.php:462 +#: classes/gateways/class.pmprogateway_stripe.php:856 #: pages/checkout.php:367 msgid "We Accept %s" msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:475 -#: classes/gateways/class.pmprogateway_stripe.php:781 +#: classes/gateways/class.pmprogateway_braintree.php:482 +#: classes/gateways/class.pmprogateway_stripe.php:889 #: pages/billing.php:377 #: pages/checkout.php:389 msgid "Card Number" msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:503 +#: classes/gateways/class.pmprogateway_braintree.php:510 #: pages/billing.php:417 msgid "CVV" msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:504 +#: classes/gateways/class.pmprogateway_braintree.php:511 #: pages/billing.php:418 #: pages/checkout.php:425 msgid "what's this?" msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:511 -#: classes/gateways/class.pmprogateway_stripe.php:803 +#: classes/gateways/class.pmprogateway_braintree.php:518 +#: classes/gateways/class.pmprogateway_stripe.php:911 #: pages/checkout.php:107 #: pages/checkout.php:432 msgid "Apply" msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:570 -#: classes/gateways/class.pmprogateway_braintree.php:587 -#: classes/gateways/class.pmprogateway_braintree.php:680 -#: classes/gateways/class.pmprogateway_braintree.php:851 -#: classes/gateways/class.pmprogateway_braintree.php:960 -#: classes/gateways/class.pmprogateway_braintree.php:987 +#: classes/gateways/class.pmprogateway_braintree.php:577 +#: classes/gateways/class.pmprogateway_braintree.php:594 +#: classes/gateways/class.pmprogateway_braintree.php:687 +#: classes/gateways/class.pmprogateway_braintree.php:858 +#: classes/gateways/class.pmprogateway_braintree.php:967 +#: classes/gateways/class.pmprogateway_braintree.php:994 msgid "Payment error: Please contact the webmaster (braintree-load-error)" msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:574 +#: classes/gateways/class.pmprogateway_braintree.php:581 msgid "Unknown error: Initial payment failed." msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:653 +#: classes/gateways/class.pmprogateway_braintree.php:660 msgid "Error during settlement:" msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:662 +#: classes/gateways/class.pmprogateway_braintree.php:669 msgid "Error during charge:" msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:753 +#: classes/gateways/class.pmprogateway_braintree.php:760 msgid "Failed to update customer: %s" msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:765 +#: classes/gateways/class.pmprogateway_braintree.php:772 msgid "Failed to update customer." msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:813 +#: classes/gateways/class.pmprogateway_braintree.php:820 msgid "Failed to create customer." msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:820 +#: classes/gateways/class.pmprogateway_braintree.php:827 msgid "Error creating customer record with Braintree:" msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:936 +#: classes/gateways/class.pmprogateway_braintree.php:943 msgid "Error subscribing customer to plan with Braintree: %s (%s)" msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:951 +#: classes/gateways/class.pmprogateway_braintree.php:958 msgid "Failed to subscribe with Braintree: %s" msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:1021 -#: classes/gateways/class.pmprogateway_braintree.php:1032 +#: classes/gateways/class.pmprogateway_braintree.php:1028 +#: classes/gateways/class.pmprogateway_braintree.php:1039 msgid "Could not find the subscription. %s" msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:1039 +#: classes/gateways/class.pmprogateway_braintree.php:1046 msgid "Could not find the subscription." msgstr "" -#: classes/gateways/class.pmprogateway_braintree.php:1085 +#: classes/gateways/class.pmprogateway_braintree.php:1092 msgid "Error getting subscription with Braintree:" msgstr "" #: classes/gateways/class.pmprogateway_check.php:49 -#: paid-memberships-pro.php:161 +#: paid-memberships-pro.php:167 msgid "Pay by Check" msgstr "" @@ -3865,126 +4084,137 @@ msgid "A partial payment was made that we could not refund. Please contact the s msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:68 -#: paid-memberships-pro.php:164 +#: paid-memberships-pro.php:170 msgid "PayPal Website Payments Pro" msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:132 -#: classes/gateways/class.pmprogateway_paypalexpress.php:151 +#: classes/gateways/class.pmprogateway_paypalexpress.php:152 #: classes/gateways/class.pmprogateway_paypalstandard.php:133 msgid "PayPal Settings" msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:146 -#: classes/gateways/class.pmprogateway_paypalexpress.php:165 +#: classes/gateways/class.pmprogateway_paypalexpress.php:166 #: classes/gateways/class.pmprogateway_paypalstandard.php:147 msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). More information on why can be found here." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:153 -#: classes/gateways/class.pmprogateway_paypalexpress.php:172 +#: classes/gateways/class.pmprogateway_paypalexpress.php:173 #: classes/gateways/class.pmprogateway_paypalstandard.php:154 msgid "Gateway Account Email" msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:161 -#: classes/gateways/class.pmprogateway_paypalexpress.php:180 +#: classes/gateways/class.pmprogateway_paypalexpress.php:181 #: classes/gateways/class.pmprogateway_paypalstandard.php:162 -#: classes/gateways/class.pmprogateway_twocheckout.php:120 +#: classes/gateways/class.pmprogateway_twocheckout.php:127 msgid "API Username" msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:169 -#: classes/gateways/class.pmprogateway_paypalexpress.php:188 +#: classes/gateways/class.pmprogateway_paypalexpress.php:189 #: classes/gateways/class.pmprogateway_paypalstandard.php:170 -#: classes/gateways/class.pmprogateway_twocheckout.php:129 +#: classes/gateways/class.pmprogateway_twocheckout.php:136 msgid "API Password" msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:177 -#: classes/gateways/class.pmprogateway_paypalexpress.php:196 +#: classes/gateways/class.pmprogateway_paypalexpress.php:197 #: classes/gateways/class.pmprogateway_paypalstandard.php:178 msgid "API Signature" msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:185 -#: classes/gateways/class.pmprogateway_paypalexpress.php:204 +#: classes/gateways/class.pmprogateway_paypalexpress.php:205 msgid "Confirmation Step" msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:189 -#: classes/gateways/class.pmprogateway_paypalexpress.php:208 +#: classes/gateways/class.pmprogateway_paypalexpress.php:209 msgid "Require an extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:190 -#: classes/gateways/class.pmprogateway_paypalexpress.php:209 +#: classes/gateways/class.pmprogateway_paypalexpress.php:210 msgid "Skip the extra confirmation after users return from PayPal." msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:196 -#: classes/gateways/class.pmprogateway_paypalexpress.php:215 +#: classes/gateways/class.pmprogateway_paypalexpress.php:216 #: classes/gateways/class.pmprogateway_paypalstandard.php:186 msgid "IPN Handler URL" msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:199 -#: classes/gateways/class.pmprogateway_paypalexpress.php:218 +#: classes/gateways/class.pmprogateway_paypalexpress.php:219 msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to " msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:281 -#: classes/gateways/class.pmprogateway_paypalexpress.php:502 +#: classes/gateways/class.pmprogateway_paypalexpress.php:503 #: classes/gateways/class.pmprogateway_paypalstandard.php:241 #: pages/checkout.php:218 msgid "Check Out with PayPal" msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:287 -#: classes/gateways/class.pmprogateway_paypalexpress.php:507 +#: classes/gateways/class.pmprogateway_paypalexpress.php:508 #: classes/gateways/class.pmprogateway_paypalstandard.php:246 #: pages/checkout.php:538 msgid "Submit and Check Out" msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:287 -#: classes/gateways/class.pmprogateway_paypalexpress.php:507 +#: classes/gateways/class.pmprogateway_paypalexpress.php:508 #: classes/gateways/class.pmprogateway_paypalstandard.php:246 -#: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 #: pages/checkout.php:538 msgid "Submit and Confirm" msgstr "" #: classes/gateways/class.pmprogateway_paypal.php:726 -#: classes/gateways/class.pmprogateway_paypalexpress.php:865 +#: classes/gateways/class.pmprogateway_paypalexpress.php:866 #: classes/gateways/class.pmprogateway_paypalstandard.php:588 msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward." msgstr "" -#: classes/gateways/class.pmprogateway_paypalexpress.php:94 -#: paid-memberships-pro.php:163 +#: classes/gateways/class.pmprogateway_paypalexpress.php:95 +#: paid-memberships-pro.php:169 msgid "PayPal Express" msgstr "" -#: classes/gateways/class.pmprogateway_paypalexpress.php:352 -#: classes/gateways/class.pmprogateway_paypalexpress.php:411 +#: classes/gateways/class.pmprogateway_paypalexpress.php:353 +#: classes/gateways/class.pmprogateway_paypalexpress.php:412 msgid "The PayPal Token was lost." msgstr "" -#: classes/gateways/class.pmprogateway_paypalexpress.php:356 +#: classes/gateways/class.pmprogateway_paypalexpress.php:357 msgid "Checkout was already processed." msgstr "" -#: classes/gateways/class.pmprogateway_paypalexpress.php:815 +#: classes/gateways/class.pmprogateway_paypalexpress.php:816 msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS." msgstr "" -#: classes/gateways/class.pmprogateway_paypalexpress.php:816 +#: classes/gateways/class.pmprogateway_paypalexpress.php:817 msgid "Error creating plan with PayPal." msgstr "" +#. translators: %1$s is the Transaction ID. %2$s is the user display name that initiated the refund. +#: classes/gateways/class.pmprogateway_paypalexpress.php:1128 +#: classes/gateways/class.pmprogateway_stripe.php:4791 +msgid "Admin: Order successfully refunded on %1$s for transaction ID %2$s by %3$s." +msgstr "" + +#. translators: %1$s is the Transaction ID. %1$s is the Gateway Error +#: classes/gateways/class.pmprogateway_paypalexpress.php:1143 +msgid "Admin: There was a problem processing a refund for transaction ID %1$s. Gateway Error: %2$s." +msgstr "" + #: classes/gateways/class.pmprogateway_paypalstandard.php:71 -#: paid-memberships-pro.php:166 +#: paid-memberships-pro.php:172 msgid "PayPal Standard" msgstr "" @@ -3996,411 +4226,549 @@ msgstr "" msgid "User requested cancellation" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:216 -#: paid-memberships-pro.php:162 +#: classes/gateways/class.pmprogateway_stripe.php:234 +#: paid-memberships-pro.php:168 msgid "Stripe" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:300 +#: classes/gateways/class.pmprogateway_stripe.php:326 msgid "Stripe API Settings (Legacy)" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:303 +#: classes/gateways/class.pmprogateway_stripe.php:329 msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:304 +#: classes/gateways/class.pmprogateway_stripe.php:330 msgid "Click here to use the legacy API settings." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:324 +#: classes/gateways/class.pmprogateway_stripe.php:350 msgid "Publishable Key" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:332 +#: classes/gateways/class.pmprogateway_stripe.php:358 msgid "Your Publishable Key appears incorrect." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:340 +#: classes/gateways/class.pmprogateway_stripe.php:366 msgid "Secret Key" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:348 -#: classes/gateways/class.pmprogateway_stripe.php:1880 +#: classes/gateways/class.pmprogateway_stripe.php:374 +#: classes/gateways/class.pmprogateway_stripe.php:2319 msgid "Webhook" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:352 -#: classes/gateways/class.pmprogateway_stripe.php:376 +#: classes/gateways/class.pmprogateway_stripe.php:378 +#: classes/gateways/class.pmprogateway_stripe.php:402 msgid "Create Webhook" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:358 +#: classes/gateways/class.pmprogateway_stripe.php:384 msgid "A webhook is set up in Stripe, but it is disabled." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:358 -#: classes/gateways/class.pmprogateway_stripe.php:365 +#: classes/gateways/class.pmprogateway_stripe.php:384 +#: classes/gateways/class.pmprogateway_stripe.php:391 msgid "Rebuild Webhook" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:365 -msgid "A webhook is set up in Stripe, but it is using an old API version." +#: classes/gateways/class.pmprogateway_stripe.php:391 +msgid "A webhook is set up in Stripe, but it is using an old API version." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:397 +#: classes/gateways/class.pmprogateway_stripe.php:615 +msgid "Your webhook is enabled." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:397 +msgid "Disable Webhook" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:404 +#: classes/gateways/class.pmprogateway_stripe.php:642 +msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:409 +#: classes/gateways/class.pmprogateway_stripe.php:2323 +msgid "Webhook URL" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:416 +msgid "Other Stripe Settings" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:420 +msgid "Stripe API Version" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:434 +msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.
If No, make sure you disable address verification in the Stripe dashboard settings." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:439 +msgid "Enable Payment Request Button" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:457 +msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:470 +msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:472 +msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:474 +msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:476 +msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:501 +msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:511 +msgid "Stripe Checkout Settings (Beta)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:514 +msgid "Stripe Checkout is currently in beta and not recommended for use on live sites." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:515 +msgid "Stripe Checkout is a secure, Stripe-hosted payment page that lets you collect payments quickly. The offsite, conversion-optimized payment form works across devices, removes friction with real-time card validation, and has built-in error messaging. This gateway option relies heavily on the webhooks sent by Stripe. Your Stripe webhooks must be properly configured before enabling Stripe Checkout." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:522 +msgid "Payment Flow" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:526 +msgid "Accept payments on this site" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:527 +msgid "Accept payments in Stripe (Stripe Checkout)" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:529 +msgid "Embed the payment information fields on your Membership Checkout page or use the Stripe-hosted payment page (Stripe Checkout)." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:534 +msgid "Update Billing Flow" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:371 -#: classes/gateways/class.pmprogateway_stripe.php:503 -msgid "Your webhook is enabled." +#: classes/gateways/class.pmprogateway_stripe.php:538 +msgid "Update billing on this site" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:371 -msgid "Disable Webhook" +#: classes/gateways/class.pmprogateway_stripe.php:539 +msgid "Update billing in the Stripe Customer Portal" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:378 -#: classes/gateways/class.pmprogateway_stripe.php:530 -msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations." +#: classes/gateways/class.pmprogateway_stripe.php:541 +msgid "Embed the billing information fields on your Membership Billing page or use the Stripe Customer Portal hosted by Stripe." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:383 -#: classes/gateways/class.pmprogateway_stripe.php:1884 -msgid "Webhook URL" +#: classes/gateways/class.pmprogateway_stripe.php:546 +msgid "Collect Billing Address in Stripe Checkout" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:390 -msgid "Other Stripe Settings" +#: classes/gateways/class.pmprogateway_stripe.php:550 +msgid "Only when necessary" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:394 -msgid "Stripe API Version" +#: classes/gateways/class.pmprogateway_stripe.php:551 +msgid "Always" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:399 -msgid "Show Billing Address Fields" +#: classes/gateways/class.pmprogateway_stripe.php:557 +msgid "Stripe Tax" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:408 -msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.
If No, make sure you disable address verification in the Stripe dashboard settings." +#: classes/gateways/class.pmprogateway_stripe.php:561 +msgid "Do not calculate tax" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:413 -msgid "Enable Payment Request Button" +#: classes/gateways/class.pmprogateway_stripe.php:562 +msgid "Membership price includes tax" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:431 -msgid "Allow users to pay using Apple Pay, Google Pay, or Microsoft Pay depending on their browser. When enabled, your domain will automatically be registered with Apple and a domain association file will be hosted on your site. More Information »" +#: classes/gateways/class.pmprogateway_stripe.php:563 +msgid "Calculate tax on top of membership price" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:444 -msgid "This webpage is being served over HTTP, but the Stripe Payment Request Button will only work on pages being served over HTTPS. To resolve this, you must set up WordPress to always use HTTPS." +#: classes/gateways/class.pmprogateway_stripe.php:574 +msgid "Stripe Tax is only available when using Stripe Checkout (the Stripe-hosted payment page). You must activate Stripe Tax in your Stripe dashboard. More information about Stripe Tax »" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:446 -msgid "It looks like you are using an older Stripe publishable key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"pk_live_\" or \"pk_test_\". Log in to your Stripe Dashboard to roll your publishable key." +#: classes/gateways/class.pmprogateway_stripe.php:579 +msgid "Collect Tax IDs" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:448 -msgid "It looks like you are using an older Stripe secret key. In order to use the Payment Request Button feature, you will need to update your API key, which will be prefixed with \"sk_live_\" or \"sk_test_\". Log in to your Stripe Dashboard to roll your secret key." +#: classes/gateways/class.pmprogateway_stripe.php:583 +msgid "No, do not collect tax IDs." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:450 -msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try registering your domain manually from the Apple Pay settings page in Stripe." +#: classes/gateways/class.pmprogateway_stripe.php:584 +msgid "Yes, collect tax IDs." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:475 -msgid "Optional: Offer PayPal Express as an option at checkout using the Add PayPal Express Add On." +#: classes/gateways/class.pmprogateway_stripe.php:586 +msgid "Tax IDs are only collected if you have enabled Stripe Tax. Stripe only performs automatic validation for ABN, EU VAT, and GB VAT numbers. You must verify that provided tax IDs are valid during the Session for all other numbers." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:492 +#: classes/gateways/class.pmprogateway_stripe.php:604 msgid "Webhook creation failed. You might already have a webhook set up." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:536 +#: classes/gateways/class.pmprogateway_stripe.php:648 msgid "There was an error deleting the webhook." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:564 +#: classes/gateways/class.pmprogateway_stripe.php:676 msgid "Webhook creation failed. Please refresh and try again." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:592 +#: classes/gateways/class.pmprogateway_stripe.php:704 msgid "Verification steps confirmed. Your payment is processing." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:758 +#: classes/gateways/class.pmprogateway_stripe.php:866 msgid "Pay with Credit Card" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:792 +#: classes/gateways/class.pmprogateway_stripe.php:900 msgid "CVC" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:847 +#: classes/gateways/class.pmprogateway_stripe.php:955 msgid "Edit customer in Stripe" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1199 +#: classes/gateways/class.pmprogateway_stripe.php:1324 msgid "Invalid response from the Stripe Connect server." msgstr "" #. translators: %s Error Message -#: classes/gateways/class.pmprogateway_stripe.php:1227 +#: classes/gateways/class.pmprogateway_stripe.php:1352 msgid "Error: PMPro could not connect to the Stripe API. Reason: %s" msgstr "" #. translators: %s Error Message -#: classes/gateways/class.pmprogateway_stripe.php:1263 +#: classes/gateways/class.pmprogateway_stripe.php:1388 msgid "Error: PMPro could not disconnect from the Stripe API. Reason: %s" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1387 +#: classes/gateways/class.pmprogateway_stripe.php:1539 +msgid "Your previous order has not yet been processed. Submitting your payment again will cause a separate charge to be initiated." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1596 +msgid "Could not get customer. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1605 +msgid "Could not get product ID." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1623 +msgid "Could not get price for initial payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1648 +msgid "Could not get price for recurring payment. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1717 +#: classes/gateways/class.pmprogateway_stripe.php:1721 +msgid "Could not create checkout session. " +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1745 +msgid "Last order was not charged with Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1752 +msgid "Could not get Stripe customer for user." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1762 +msgid "Could not get Customer Portal URL. This feature may not be set up in Stripe." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1767 +msgid "Please contact the site administrator." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:1806 msgid "Error processing setup intent." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1402 +#: classes/gateways/class.pmprogateway_stripe.php:1821 msgid "Error processing payment intent." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1424 -#: classes/gateways/class.pmprogateway_stripe.php:1677 +#: classes/gateways/class.pmprogateway_stripe.php:1843 +#: classes/gateways/class.pmprogateway_stripe.php:2096 msgid "Error retrieving payment method." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1432 -#: classes/gateways/class.pmprogateway_stripe.php:1685 +#: classes/gateways/class.pmprogateway_stripe.php:1851 +#: classes/gateways/class.pmprogateway_stripe.php:2104 msgid "Error updating default payment method." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1460 +#: classes/gateways/class.pmprogateway_stripe.php:1879 msgid "Error creating subscription for customer." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1478 -#: classes/gateways/class.pmprogateway_stripe.php:2542 -#: classes/gateways/class.pmprogateway_stripe.php:2579 -#: classes/gateways/class.pmprogateway_stripe.php:3384 +#: classes/gateways/class.pmprogateway_stripe.php:1897 +#: classes/gateways/class.pmprogateway_stripe.php:2999 +#: classes/gateways/class.pmprogateway_stripe.php:3036 +#: classes/gateways/class.pmprogateway_stripe.php:3849 msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1691 +#: classes/gateways/class.pmprogateway_stripe.php:2110 msgid "Error updating payment method for subscription." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1729 +#: classes/gateways/class.pmprogateway_stripe.php:2148 msgid "Could not cancel old subscription." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1745 +#: classes/gateways/class.pmprogateway_stripe.php:2164 msgid "Could not find the customer." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1788 +#: classes/gateways/class.pmprogateway_stripe.php:2227 msgid "Stripe Connect Settings" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Live Mode:" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1791 +#: classes/gateways/class.pmprogateway_stripe.php:2230 msgid "Test Mode:" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1793 +#: classes/gateways/class.pmprogateway_stripe.php:2232 msgid "Connected" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1795 +#: classes/gateways/class.pmprogateway_stripe.php:2234 msgid "Connected with Legacy Keys" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1797 +#: classes/gateways/class.pmprogateway_stripe.php:2236 msgid "Not Connected" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1805 +#: classes/gateways/class.pmprogateway_stripe.php:2244 msgid "Your site is using legacy API keys to authenticate with Stripe." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1806 +#: classes/gateways/class.pmprogateway_stripe.php:2245 msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1809 +#: classes/gateways/class.pmprogateway_stripe.php:2248 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect. Log in with the current Stripe account used for this site so that existing subscriptions are not affected by the update." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1811 +#: classes/gateways/class.pmprogateway_stripe.php:2250 msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1814 +#: classes/gateways/class.pmprogateway_stripe.php:2253 msgid "Read the documentation on switching to Stripe Connect »" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1822 +#: classes/gateways/class.pmprogateway_stripe.php:2261 msgid "Stripe Connection:" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1838 +#: classes/gateways/class.pmprogateway_stripe.php:2277 msgid "Disconnect From Stripe" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1842 +#: classes/gateways/class.pmprogateway_stripe.php:2281 msgid "This will disconnect your site from Stripe. Users will not be able to complete membership checkout or update their billing information. Existing subscriptions will not be affected at the gateway, but new recurring orders will not be created in this site." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1844 +#: classes/gateways/class.pmprogateway_stripe.php:2283 msgid "This will disconnect your site from Stripe in test mode only." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1859 +#: classes/gateways/class.pmprogateway_stripe.php:2298 msgid "Connect with Stripe" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1866 +#: classes/gateways/class.pmprogateway_stripe.php:2305 msgid "Note: You have a valid license and are not charged additional platform fees for payment processing." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1868 +#: classes/gateways/class.pmprogateway_stripe.php:2307 msgid "Note: You are using the free Stripe payment gateway integration. This includes an additional 1% fee for payment processing. This fee is removed by activating a premium PMPro license." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:1870 +#: classes/gateways/class.pmprogateway_stripe.php:2309 msgid "Learn More »" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:2087 +#: classes/gateways/class.pmprogateway_stripe.php:2526 msgid "Error updating customer record with Stripe." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:2098 +#: classes/gateways/class.pmprogateway_stripe.php:2537 msgid "Error creating customer record with Stripe." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:2361 +#: classes/gateways/class.pmprogateway_stripe.php:2815 msgid "Could not create price." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:2418 +#: classes/gateways/class.pmprogateway_stripe.php:2875 msgid "Cannot find product for membership level." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:2424 +#: classes/gateways/class.pmprogateway_stripe.php:2881 msgid "Cannot get price." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:2574 +#: classes/gateways/class.pmprogateway_stripe.php:3031 msgid "Cannot reuse an old setup intent." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:2608 -#: classes/gateways/class.pmprogateway_stripe.php:2610 +#: classes/gateways/class.pmprogateway_stripe.php:3065 +#: classes/gateways/class.pmprogateway_stripe.php:3067 msgid "Error adding metadata to setup intent." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:2644 +#: classes/gateways/class.pmprogateway_stripe.php:3101 msgid "Subscription Updates" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:2645 +#: classes/gateways/class.pmprogateway_stripe.php:3102 msgid "Subscription updates will be deprecated in a future version of PMPro, though your existing subscription updates will still trigger as expected. We now instead recommend updating the subscription directly in Stripe." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:2649 +#: classes/gateways/class.pmprogateway_stripe.php:3106 #: pages/billing.php:441 msgid "Update" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:2710 +#: classes/gateways/class.pmprogateway_stripe.php:3167 msgid "Remove" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:3039 +#: classes/gateways/class.pmprogateway_stripe.php:3504 msgid "Could not cancel the old subscription. Updates have not been processed." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:3364 +#: classes/gateways/class.pmprogateway_stripe.php:3829 msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:3668 +#: classes/gateways/class.pmprogateway_stripe.php:4132 msgid "Last webhook received at" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:3670 +#: classes/gateways/class.pmprogateway_stripe.php:4134 msgid "No webhooks have been received." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:3674 +#: classes/gateways/class.pmprogateway_stripe.php:4138 msgid "Your webhook may not be working correctly." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:3676 +#: classes/gateways/class.pmprogateway_stripe.php:4140 msgid "Click here for info on setting up your webhook with Stripe." msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:4058 -#: classes/gateways/class.pmprogateway_stripe.php:4063 +#: classes/gateways/class.pmprogateway_stripe.php:4522 +#: classes/gateways/class.pmprogateway_stripe.php:4527 msgid "Error getting subscription with Stripe:" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:4159 -#: classes/gateways/class.pmprogateway_stripe.php:4164 +#: classes/gateways/class.pmprogateway_stripe.php:4623 +#: classes/gateways/class.pmprogateway_stripe.php:4628 msgid "Error creating plan with Stripe:" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:4195 -#: classes/gateways/class.pmprogateway_stripe.php:4209 +#: classes/gateways/class.pmprogateway_stripe.php:4659 +#: classes/gateways/class.pmprogateway_stripe.php:4673 msgid "Error subscribing customer to plan with Stripe:" msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:4323 -#: classes/gateways/class.pmprogateway_stripe.php:4329 +#: classes/gateways/class.pmprogateway_stripe.php:4803 +msgid "Admin: An error occured while attempting to process this refund." +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4807 +#: classes/gateways/class.pmprogateway_stripe.php:4809 +msgid "Admin: There was a problem processing the refund" +msgstr "" + +#: classes/gateways/class.pmprogateway_stripe.php:4872 +#: classes/gateways/class.pmprogateway_stripe.php:4878 msgid "Error: " msgstr "" -#: classes/gateways/class.pmprogateway_stripe.php:4343 +#: classes/gateways/class.pmprogateway_stripe.php:4892 msgid "Error: Unkown error while refunding charge #%s" msgstr "" -#: classes/gateways/class.pmprogateway_twocheckout.php:59 +#: classes/gateways/class.pmprogateway_twocheckout.php:66 msgid "2Checkout" msgstr "" -#: classes/gateways/class.pmprogateway_twocheckout.php:115 +#: classes/gateways/class.pmprogateway_twocheckout.php:122 msgid "2Checkout Settings" msgstr "" -#: classes/gateways/class.pmprogateway_twocheckout.php:124 +#: classes/gateways/class.pmprogateway_twocheckout.php:131 msgid "Go to Account » User Management in 2Checkout and create a user with API Access and API Updating." msgstr "" -#: classes/gateways/class.pmprogateway_twocheckout.php:133 +#: classes/gateways/class.pmprogateway_twocheckout.php:140 msgid "Password for the API user created." msgstr "" -#: classes/gateways/class.pmprogateway_twocheckout.php:142 +#: classes/gateways/class.pmprogateway_twocheckout.php:149 msgid "Click on the profile icon in 2Checkout to find your Account Number." msgstr "" -#: classes/gateways/class.pmprogateway_twocheckout.php:147 +#: classes/gateways/class.pmprogateway_twocheckout.php:154 msgid "Secret Word" msgstr "" -#: classes/gateways/class.pmprogateway_twocheckout.php:151 +#: classes/gateways/class.pmprogateway_twocheckout.php:158 msgid "Go to Account » Site Management. Look under Checkout Options to find the Secret Word." msgstr "" -#: classes/gateways/class.pmprogateway_twocheckout.php:156 +#: classes/gateways/class.pmprogateway_twocheckout.php:163 msgid "TwoCheckout INS URL" msgstr "" -#: classes/gateways/class.pmprogateway_twocheckout.php:159 +#: classes/gateways/class.pmprogateway_twocheckout.php:166 msgid "To fully integrate with 2Checkout, be sure to use the following for your INS URL and Approved URL" msgstr "" -#: classes/gateways/class.pmprogateway_twocheckout.php:205 +#: classes/gateways/class.pmprogateway_twocheckout.php:212 msgid "Check Out with 2Checkout" msgstr "" @@ -4446,10 +4814,7 @@ msgid "Memberships" msgstr "" #: includes/adminpages.php:330 -#: blocks/account-page/block.js:24 -#: blocks/account-page/block.js:59 -#: js/blocks.build.js:303 -#: js/blocks.build.js:342 +#: blocks/account-page/block.js:73 msgid "Membership Account Page" msgstr "" @@ -4458,10 +4823,7 @@ msgid "Membership Billing Information Page" msgstr "" #: includes/adminpages.php:338 -#: blocks/cancel-page/block.js:22 -#: blocks/cancel-page/block.js:39 -#: js/blocks.build.js:677 -#: js/blocks.build.js:695 +#: blocks/cancel-page/block.js:45 msgid "Membership Cancel Page" msgstr "" @@ -4470,16 +4832,11 @@ msgid "Membership Checkout Page" msgstr "" #: includes/adminpages.php:346 -#: blocks/confirmation-page/block.js:22 -#: blocks/confirmation-page/block.js:39 -#: js/blocks.build.js:1136 -#: js/blocks.build.js:1154 +#: blocks/confirmation-page/block.js:47 msgid "Membership Confirmation Page" msgstr "" #: includes/adminpages.php:350 -#: blocks/invoice-page/block.js:22 -#: js/blocks.build.js:1206 msgid "Membership Invoice Page" msgstr "" @@ -5824,11 +6181,6 @@ msgstr "" msgid "Your billing information has been updated at !!sitename!!" msgstr "" -#: includes/email-templates.php:68 -#: shortcodes/pmpro_account.php:43 -msgid "Billing" -msgstr "" - #: includes/email-templates.php:69 msgid "" "

Your billing information at !!sitename!! has been changed.

Account: !!display_name!! (!!user_email!!)

\n" @@ -6415,15 +6767,64 @@ msgstr "" msgid "This email is sent to the member when the trial portion of their membership level is approaching, at an interval based on the term of the trial." msgstr "" -#: includes/email-templates.php:508 +#: includes/email-templates.php:502 +msgid "Your invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:504 +msgid "" +"

Your invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your membership account here: !!login_url!!

\n" +"

To view an online version of this invoice, click here: !!invoice_url!!

\n" +"\n" +"

If you did not request this refund and would like more information please contact us at !!siteemail!!

" +msgstr "" + +#: includes/email-templates.php:516 +msgid "This email is sent to the member as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:519 +msgid "Invoice for order #!!invoice_id!! at !!sitename!! has been REFUNDED" +msgstr "" + +#: includes/email-templates.php:520 +msgid "Refund (admin)" +msgstr "" + +#: includes/email-templates.php:521 +msgid "" +"

The invoice for order #!!invoice_id!! at !!sitename!! has been refunded.

\n" +"\n" +"

Account: !!display_name!! (!!user_email!!)

\n" +"

\n" +"\tInvoice #!!invoice_id!! on !!invoice_date!!
\n" +"\tTotal Refunded: !!invoice_total!!\n" +"

\n" +"\n" +"

Log in to your WordPress admin here: !!login_url!!

" +msgstr "" + +#: includes/email-templates.php:530 +msgid "This email is sent to the admin as confirmation of a refunded payment. The email is sent after your membership site receives notification of a successful payment refund through your gateway." +msgstr "" + +#: includes/email-templates.php:538 msgid "Payment action required for your !!sitename!! membership" msgstr "" -#: includes/email-templates.php:509 +#: includes/email-templates.php:539 msgid "Payment Action Required" msgstr "" -#: includes/email-templates.php:510 +#: includes/email-templates.php:540 msgid "" "

Customer authentication is required to finish setting up your subscription at !!sitename!!.

\n" "\n" @@ -6431,19 +6832,19 @@ msgid "" "

!!invoice_url!!

" msgstr "" -#: includes/email-templates.php:514 +#: includes/email-templates.php:544 msgid "This email is sent to the user when an attempted membership checkout requires additional customer authentication." msgstr "" -#: includes/email-templates.php:517 +#: includes/email-templates.php:547 msgid "Payment action required: membership for !!user_login!! at !!sitename!!" msgstr "" -#: includes/email-templates.php:518 +#: includes/email-templates.php:548 msgid "Payment Action Required (admin)" msgstr "" -#: includes/email-templates.php:519 +#: includes/email-templates.php:549 msgid "" "

A payment at !!sitename!! for !!user_login!! requires additional customer authentication to complete.

\n" "

Below is a copy of the email we sent to !!user_email!! to notify them that they need to complete their payment:

\n" @@ -6454,7 +6855,7 @@ msgid "" "

!!invoice_url!!

" msgstr "" -#: includes/email-templates.php:526 +#: includes/email-templates.php:556 msgid "This email is sent to the site administrator when an attempted membership checkout requires additional customer authentication." msgstr "" @@ -6635,19 +7036,19 @@ msgstr "" msgid "and" msgstr "" -#: includes/functions.php:2460 +#: includes/functions.php:2462 msgid "Sign Up for !!name!! Now" msgstr "" -#: includes/functions.php:2484 +#: includes/functions.php:2486 msgid "Sign Up Now" msgstr "" -#: includes/functions.php:2895 +#: includes/functions.php:2897 msgid "Subtotal" msgstr "" -#: includes/functions.php:2910 +#: includes/functions.php:2912 msgid "Coupon" msgstr "" @@ -6657,12 +7058,9 @@ msgstr "" #: pages/confirmation.php:65 #: pages/confirmation.php:138 #: pages/invoice.php:38 -#: blocks/checkout-button/block.js:73 -#: blocks/checkout-page/block.js:55 +#: blocks/checkout-button/block.js:76 +#: blocks/checkout-page/block.js:62 #: blocks/checkout-page/inspector.js:31 -#: js/blocks.build.js:798 -#: js/blocks.build.js:1004 -#: js/blocks.build.js:1086 msgid "Membership Level" msgstr "" @@ -6825,12 +7223,12 @@ msgid "You've entered an invalid email address." msgstr "" #: includes/login.php:429 -#: includes/profile.php:851 +#: includes/profile.php:891 msgid "New passwords do not match." msgstr "" #: includes/login.php:433 -#: includes/profile.php:847 +#: includes/profile.php:887 msgid "Please complete all fields." msgstr "" @@ -6869,18 +7267,18 @@ msgid "Your password reset link has expired. Please request a new link below." msgstr "" #: includes/login.php:688 -#: includes/profile.php:899 +#: includes/profile.php:939 msgid "New Password" msgstr "" #: includes/login.php:690 -#: includes/profile.php:902 +#: includes/profile.php:942 #: includes/scripts.php:85 msgid "Strength Indicator" msgstr "" #: includes/login.php:694 -#: includes/profile.php:906 +#: includes/profile.php:946 msgid "Confirm New Password" msgstr "" @@ -6944,10 +7342,6 @@ msgstr "" #: includes/metaboxes.php:126 #: includes/metaboxes.php:127 -#: blocks/membership/block.js:89 -#: blocks/membership/block.js:101 -#: js/blocks.build.js:1625 -#: js/blocks.build.js:1634 msgid "Require Membership" msgstr "" @@ -7013,23 +7407,23 @@ msgid "Paid Memberships Pro User Data" msgstr "" #: includes/privacy.php:182 -#: includes/profile.php:412 -#: includes/profile.php:495 +#: includes/profile.php:452 +#: includes/profile.php:535 msgid "Level ID" msgstr "" #: includes/privacy.php:190 -#: includes/profile.php:498 +#: includes/profile.php:538 msgid "Date Modified" msgstr "" #: includes/privacy.php:194 -#: includes/profile.php:499 +#: includes/profile.php:539 msgid "End Date" msgstr "" #: includes/privacy.php:198 -#: includes/profile.php:500 +#: includes/profile.php:540 msgid "Level Cost" msgstr "" @@ -7049,6 +7443,10 @@ msgstr "" msgid "Order Date" msgstr "" +#: includes/privacy.php:305 +msgid "Expiration Year" +msgstr "" + #: includes/privacy.php:333 msgid "Paid Memberships Pro Order History" msgstr "" @@ -7117,127 +7515,131 @@ msgstr "" msgid "This will not change the subscription at the gateway unless the 'Cancel' checkbox is selected below." msgstr "" -#: includes/profile.php:114 +#: includes/profile.php:124 msgid "Send the user an email about this change." msgstr "" -#: includes/profile.php:120 +#: includes/profile.php:130 msgid "Cancel this user's subscription at the gateway." msgstr "" -#: includes/profile.php:134 +#: includes/profile.php:136 +msgid "Refund this user's most recent order." +msgstr "" + +#: includes/profile.php:150 msgid "TOS Consent History" msgstr "" -#: includes/profile.php:186 -#: includes/profile.php:233 +#: includes/profile.php:202 +#: includes/profile.php:249 msgid "Not paying." msgstr "" -#: includes/profile.php:388 +#: includes/profile.php:428 msgid "Member History" msgstr "" -#: includes/profile.php:389 +#: includes/profile.php:429 msgid "Total Paid" msgstr "" -#: includes/profile.php:391 +#: includes/profile.php:431 msgid "Order History" msgstr "" -#: includes/profile.php:392 +#: includes/profile.php:432 msgid "Membership Levels History" msgstr "" -#: includes/profile.php:413 +#: includes/profile.php:453 #: pages/confirmation.php:107 #: pages/invoice.php:97 #: pages/invoice.php:125 msgid "Total Billed" msgstr "" -#: includes/profile.php:475 +#: includes/profile.php:515 msgid "No membership orders found." msgstr "" -#: includes/profile.php:542 +#: includes/profile.php:582 msgid "No membership history found." msgstr "" -#: includes/profile.php:652 +#: includes/profile.php:692 msgid "Log in to edit your profile." msgstr "" -#: includes/profile.php:687 +#: includes/profile.php:727 msgid "Please enter a display name." msgstr "" -#: includes/profile.php:697 +#: includes/profile.php:737 msgid "Please enter an email address." msgstr "" -#: includes/profile.php:699 +#: includes/profile.php:739 msgid "The email address isn’t correct." msgstr "" -#: includes/profile.php:703 +#: includes/profile.php:743 msgid "This email is already registered, please choose another one." msgstr "" -#: includes/profile.php:730 +#: includes/profile.php:770 msgid "Your profile has been updated." msgstr "" -#: includes/profile.php:755 +#: includes/profile.php:795 #: pages/billing.php:166 #: pages/checkout.php:234 msgid "First Name" msgstr "" -#: includes/profile.php:756 +#: includes/profile.php:796 #: pages/billing.php:170 #: pages/checkout.php:238 msgid "Last Name" msgstr "" -#: includes/profile.php:757 +#: includes/profile.php:797 msgid "Display name publicly as" msgstr "" -#: includes/profile.php:770 +#: includes/profile.php:810 msgid "Site administrators must use the WordPress dashboard to update their email address." msgstr "" -#: includes/profile.php:793 +#: includes/profile.php:833 msgid "Update Profile" msgstr "" -#: includes/profile.php:849 +#: includes/profile.php:889 msgid "Please enter your current password." msgstr "" -#: includes/profile.php:853 +#: includes/profile.php:893 msgid "Your current password is incorrect." msgstr "" -#: includes/profile.php:864 +#: includes/profile.php:904 msgid "Your password has been updated." msgstr "" -#: includes/profile.php:880 -#: includes/profile.php:917 +#: includes/profile.php:920 +#: includes/profile.php:957 #: shortcodes/pmpro_account.php:195 msgid "Change Password" msgstr "" -#: includes/profile.php:894 +#: includes/profile.php:934 msgid "Current Password" msgstr "" -#: includes/profile.php:896 -#: includes/profile.php:901 -#: includes/profile.php:908 +#: includes/profile.php:936 +#: includes/profile.php:941 +#: includes/profile.php:948 msgid "Required Field" msgstr "" @@ -7360,13 +7762,6 @@ msgstr "" msgid "Your billing information cannot be updated at this time." msgstr "" -#: pages/billing.php:162 -#: pages/checkout.php:230 -#: pages/confirmation.php:78 -#: pages/invoice.php:68 -msgid "Billing Address" -msgstr "" - #: pages/billing.php:176 #: pages/checkout.php:242 msgid "Address 1" @@ -7583,6 +7978,12 @@ msgstr "" msgid "Account" msgstr "" +#: pages/confirmation.php:65 +#: pages/confirmation.php:138 +#: shortcodes/pmpro_account.php:247 +msgid "Pending" +msgstr "" + #: pages/confirmation.php:67 msgid "Membership Expires" msgstr "" @@ -7591,20 +7992,10 @@ msgstr "" msgid "Below are details about your membership account. A welcome email has been sent to %s." msgstr "" -#: pages/confirmation.php:138 -#: shortcodes/pmpro_account.php:247 -msgid "Pending" -msgstr "" - #: pages/confirmation.php:151 msgid "If your account is not activated within a few minutes, please contact the site owner." msgstr "" -#: pages/invoice.php:43 -#: shortcodes/pmpro_account.php:244 -msgid "Paid" -msgstr "" - #: pages/invoice.php:123 msgid "Invoice #" msgstr "" @@ -7638,23 +8029,23 @@ msgstr "" msgid "Return to Home" msgstr "" -#: paid-memberships-pro.php:160 +#: paid-memberships-pro.php:166 msgid "Testing Only" msgstr "" -#: paid-memberships-pro.php:165 +#: paid-memberships-pro.php:171 msgid "PayPal Payflow Pro/PayPal Pro" msgstr "" -#: paid-memberships-pro.php:169 +#: paid-memberships-pro.php:175 msgid "Cybersource" msgstr "" -#: paid-memberships-pro.php:173 +#: paid-memberships-pro.php:179 msgid "Default" msgstr "" -#: paid-memberships-pro.php:195 +#: paid-memberships-pro.php:201 msgid "Once a month" msgstr "" @@ -7749,19 +8140,19 @@ msgstr "" msgid "Your payment was accepted, but there was an error setting up your account. Please contact us." msgstr "" -#: preheaders/checkout.php:814 +#: preheaders/checkout.php:823 msgid "IMPORTANT: Something went wrong during membership creation. Your credit card authorized, but we cancelled the order immediately. You should not try to submit this form again. Please contact the site owner to fix this issue." msgstr "" -#: preheaders/checkout.php:817 +#: preheaders/checkout.php:826 msgid "IMPORTANT: Something went wrong during membership creation. Your credit card was charged, but we couldn't assign your membership. You should not submit this form again. Please contact the site owner to fix this issue." msgstr "" -#: preheaders/checkout.php:828 +#: preheaders/checkout.php:837 msgid "You must set up a Payment Gateway before any payments will be processed." msgstr "" -#: preheaders/checkout.php:830 +#: preheaders/checkout.php:839 msgid "A Payment Gateway must be set up before any payments will be processed." msgstr "" @@ -7851,302 +8242,460 @@ msgid "Member Links" msgstr "" #: blocks/account-invoices-section/block.js:22 -#: blocks/account-invoices-section/block.js:39 -#: js/blocks.build.js:119 -#: js/blocks.build.js:137 -msgid "Membership Account: Invoices" +msgid "PMPro Page: Account Invoices" msgstr "" #: blocks/account-invoices-section/block.js:23 -#: js/blocks.build.js:120 -msgid "Displays the member's invoices." +msgid "Dynamic page section that displays a list of the last 5 membership invoices for the active member." msgstr "" -#: blocks/account-invoices-section/block.js:30 -#: blocks/account-links-section/block.js:30 -#: blocks/account-membership-section/block.js:30 -#: blocks/account-page/block.js:32 -#: blocks/account-profile-section/block.js:31 -#: blocks/billing-page/block.js:30 -#: blocks/cancel-page/block.js:30 -#: blocks/checkout-button/block.js:40 -#: blocks/checkout-page/block.js:36 -#: blocks/confirmation-page/block.js:30 -#: blocks/invoice-page/block.js:30 -#: blocks/levels-page/block.js:30 -#: blocks/login/block.js:35 -#: blocks/member-profile-edit/block.js:26 -#: blocks/membership/block.js:39 -#: js/blocks.build.js:127 -#: js/blocks.build.js:184 -#: js/blocks.build.js:241 -#: js/blocks.build.js:311 -#: js/blocks.build.js:500 -#: js/blocks.build.js:557 -#: js/blocks.build.js:685 -#: js/blocks.build.js:758 -#: js/blocks.build.js:981 -#: js/blocks.build.js:1144 -#: js/blocks.build.js:1214 -#: js/blocks.build.js:1271 -#: js/blocks.build.js:1335 -#: js/blocks.build.js:1496 -#: js/blocks.build.js:1560 +#: blocks/account-invoices-section/block.js:31 +#: blocks/account-links-section/block.js:32 +#: blocks/account-page/block.js:33 +msgid "account" +msgstr "" + +#: blocks/account-invoices-section/block.js:32 +#: blocks/account-links-section/block.js:34 +#: blocks/account-membership-section/block.js:32 +#: blocks/account-page/block.js:37 +#: blocks/account-profile-section/block.js:33 +#: blocks/billing-page/block.js:32 +#: blocks/cancel-page/block.js:31 +#: blocks/checkout-button/block.js:42 +#: blocks/checkout-page/block.js:37 +#: blocks/confirmation-page/block.js:31 +msgid "member" +msgstr "" + +#: blocks/account-invoices-section/block.js:33 +#: blocks/account-page/block.js:38 +#: blocks/invoice-page/block.js:32 +msgid "order" +msgstr "" + +#: blocks/account-invoices-section/block.js:34 +#: blocks/account-links-section/block.js:35 +#: blocks/account-membership-section/block.js:33 +#: blocks/account-page/block.js:39 +#: blocks/account-profile-section/block.js:34 +#: blocks/billing-page/block.js:33 +#: blocks/cancel-page/block.js:32 +#: blocks/checkout-button/block.js:43 +#: blocks/checkout-page/block.js:38 +#: blocks/confirmation-page/block.js:33 +#: blocks/invoice-page/block.js:33 +#: blocks/levels-page/block.js:32 +#: blocks/login/block.js:36 +#: blocks/member-profile-edit/block.js:30 +#: blocks/membership/block.js:46 +msgid "paid memberships pro" +msgstr "" + +#: blocks/account-invoices-section/block.js:35 +#: blocks/account-links-section/block.js:36 +#: blocks/account-membership-section/block.js:34 +#: blocks/account-page/block.js:40 +#: blocks/account-profile-section/block.js:35 +#: blocks/billing-page/block.js:35 +#: blocks/cancel-page/block.js:34 +#: blocks/checkout-button/block.js:44 +#: blocks/checkout-page/block.js:39 +#: blocks/confirmation-page/block.js:34 +#: blocks/invoice-page/block.js:34 +#: blocks/levels-page/block.js:33 +#: blocks/login/block.js:38 +#: blocks/member-profile-edit/block.js:31 +#: blocks/membership/block.js:47 msgid "pmpro" msgstr "" +#: blocks/account-invoices-section/block.js:36 +#: blocks/account-membership-section/block.js:35 +#: blocks/account-page/block.js:42 +#: blocks/invoice-page/block.js:35 +msgid "purchases" +msgstr "" + +#: blocks/account-invoices-section/block.js:37 +#: blocks/account-page/block.js:44 +#: blocks/confirmation-page/block.js:36 +#: blocks/invoice-page/block.js:36 +msgid "receipt" +msgstr "" + +#: blocks/account-invoices-section/block.js:38 +#: blocks/account-links-section/block.js:38 +#: blocks/account-membership-section/block.js:36 +#: blocks/account-page/block.js:45 +#: blocks/account-profile-section/block.js:36 +msgid "user" +msgstr "" + +#: blocks/account-invoices-section/block.js:48 +msgid "Membership Account: Invoices" +msgstr "" + #: blocks/account-links-section/block.js:22 -#: js/blocks.build.js:176 -msgid "Membership Account: Links" +msgid "PMPro Page: Account Links" msgstr "" #: blocks/account-links-section/block.js:23 -#: js/blocks.build.js:177 -msgid "Displays the member's member links. This block is only visible if other Add Ons or custom code have added links." +msgid "Dynamic page section that displays custom links available for the active member only. This block is only visible if other Add Ons or custom code have added links." +msgstr "" + +#: blocks/account-links-section/block.js:31 +msgid "access" +msgstr "" + +#: blocks/account-links-section/block.js:33 +msgid "link" +msgstr "" + +#: blocks/account-links-section/block.js:37 +#: blocks/account-page/block.js:43 +msgid "quick link" msgstr "" -#: blocks/account-links-section/block.js:39 -#: js/blocks.build.js:194 +#: blocks/account-links-section/block.js:48 msgid "Membership Account: Member Links" msgstr "" #: blocks/account-membership-section/block.js:22 -#: js/blocks.build.js:233 -msgid "Membership Account: Memberships" +msgid "PMPro Page: Account Memberships" msgstr "" #: blocks/account-membership-section/block.js:23 -#: js/blocks.build.js:234 -msgid "Displays the member's membership information." +msgid "Dynamic page section to display the member's active membership information with links to view all membership options, update billing information, and change or cancel membership." msgstr "" -#: blocks/account-membership-section/block.js:39 -#: js/blocks.build.js:251 +#: blocks/account-membership-section/block.js:31 +msgid "active" +msgstr "" + +#: blocks/account-membership-section/block.js:46 msgid "Membership Account: My Memberships" msgstr "" +#: blocks/account-page/block.js:24 +msgid "PMPro Page: Account (Full)" +msgstr "" + #: blocks/account-page/block.js:25 -#: js/blocks.build.js:304 -msgid "Displays the sections of the Membership Account page as selected below." +msgid "Dynamic page section to display the selected sections of the Membership Account page including Memberships, Profile, Invoices, and Member Links. These sections can also be added via separate blocks." +msgstr "" + +#: blocks/account-page/block.js:34 +msgid "billing" +msgstr "" + +#: blocks/account-page/block.js:35 +msgid "invoice" +msgstr "" + +#: blocks/account-page/block.js:36 +msgid "links" +msgstr "" + +#: blocks/account-page/block.js:41 +msgid "profile" msgstr "" #: blocks/account-page/inspector.js:30 -#: js/blocks.build.js:419 msgid "Show 'My Memberships' Section" msgstr "" #: blocks/account-page/inspector.js:37 -#: js/blocks.build.js:427 msgid "Show 'Profile' Section" msgstr "" #: blocks/account-page/inspector.js:44 -#: js/blocks.build.js:435 msgid "Show 'Invoices' Section" msgstr "" #: blocks/account-page/inspector.js:51 -#: js/blocks.build.js:443 msgid "Show 'Member Links' Section" msgstr "" #: blocks/account-profile-section/block.js:23 -#: blocks/account-profile-section/block.js:40 -#: js/blocks.build.js:492 -#: js/blocks.build.js:510 -msgid "Membership Account: Profile" +msgid "PMPro Page: Account Profile View" msgstr "" #: blocks/account-profile-section/block.js:24 -#: js/blocks.build.js:493 -msgid "Displays the member's profile information." +msgid "Dynamic page section that displays the member's profile as read-only information with a link to edit fields or their change password." +msgstr "" + +#: blocks/account-profile-section/block.js:32 +#: blocks/member-profile-edit/block.js:29 +msgid "fields" +msgstr "" + +#: blocks/account-profile-section/block.js:46 +msgid "Membership Account: Profile" msgstr "" #: blocks/billing-page/block.js:22 -#: blocks/billing-page/block.js:39 -#: js/blocks.build.js:549 -#: js/blocks.build.js:567 -msgid "Membership Billing Page" +msgid "PMPro Page: Billing" msgstr "" #: blocks/billing-page/block.js:23 -#: js/blocks.build.js:550 -msgid "Displays the member's billing information and allows them to update the payment method." +msgid "Dynamic page section to display the member's billing information. Members can update their subscription payment method from this form." +msgstr "" + +#: blocks/billing-page/block.js:31 +msgid "credit card" +msgstr "" + +#: blocks/billing-page/block.js:34 +#: blocks/cancel-page/block.js:33 +msgid "payment method" +msgstr "" + +#: blocks/billing-page/block.js:45 +msgid "Membership Billing Page" +msgstr "" + +#: blocks/cancel-page/block.js:22 +msgid "PMPro Page: Cancel" msgstr "" #: blocks/cancel-page/block.js:23 -#: js/blocks.build.js:678 -msgid "Generates the Membership Cancel page." +msgid "Dynamic page section where members can cancel their membership and active subscription if applicable." +msgstr "" + +#: blocks/cancel-page/block.js:35 +msgid "terminate" msgstr "" #: blocks/checkout-button/block.js:31 -#: js/blocks.build.js:750 msgid "Membership Checkout Button" msgstr "" #: blocks/checkout-button/block.js:32 -#: js/blocks.build.js:751 -msgid "Displays a button-styled link to Membership Checkout for the specified level." +msgid "Inserts a button that links directly to membership checkout for the selected level." msgstr "" -#: blocks/checkout-button/block.js:41 -#: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:40 +#: blocks/checkout-page/block.js:40 +#: blocks/confirmation-page/block.js:32 msgid "buy" msgstr "" -#: blocks/checkout-button/block.js:42 -#: js/blocks.build.js:758 +#: blocks/checkout-button/block.js:41 +#: blocks/levels-page/block.js:31 msgid "level" msgstr "" -#: blocks/checkout-button/block.js:68 +#: blocks/checkout-button/block.js:45 +#: blocks/checkout-page/block.js:41 +#: blocks/confirmation-page/block.js:35 +msgid "purchase" +msgstr "" + +#: blocks/checkout-button/block.js:71 #: blocks/checkout-button/inspector.js:31 -#: js/blocks.build.js:790 -#: js/blocks.build.js:891 msgid "Button Text" msgstr "" -#: blocks/checkout-button/block.js:79 +#: blocks/checkout-button/block.js:82 #: blocks/checkout-button/inspector.js:48 -#: js/blocks.build.js:807 -#: js/blocks.build.js:910 msgid "CSS Class" msgstr "" #: blocks/checkout-button/inspector.js:32 -#: js/blocks.build.js:892 msgid "Text for checkout button" msgstr "" #: blocks/checkout-button/inspector.js:40 -#: js/blocks.build.js:901 msgid "The level to link to for checkout button" msgstr "" #: blocks/checkout-button/inspector.js:49 -#: js/blocks.build.js:911 msgid "Additional styling for checkout button" msgstr "" #: blocks/checkout-page/block.js:28 -#: blocks/checkout-page/block.js:52 -#: js/blocks.build.js:973 -#: js/blocks.build.js:1003 +#: blocks/checkout-page/block.js:59 msgid "Membership Checkout Form" msgstr "" #: blocks/checkout-page/block.js:29 -#: js/blocks.build.js:974 -msgid "Displays the Membership Checkout form." +msgid "Dynamic form that allows users to complete free registration or paid checkout for the selected membership level." +msgstr "" + +#: blocks/checkout-page/block.js:42 +msgid "sell" msgstr "" #: blocks/checkout-page/inspector.js:32 -#: js/blocks.build.js:1087 msgid "Choose a default level for Membership Checkout." msgstr "" +#: blocks/confirmation-page/block.js:22 +msgid "PMPro Page: Confirmation" +msgstr "" + #: blocks/confirmation-page/block.js:23 -#: js/blocks.build.js:1137 -msgid "Displays the member's Membership Confirmation after Membership Checkout." +msgid "Dynamic page section that displays a confirmation message and purchase information for the active member immediately after membership registration and checkout." +msgstr "" + +#: blocks/confirmation-page/block.js:37 +msgid "success" +msgstr "" + +#: blocks/invoice-page/block.js:22 +msgid "PMPro Page: Invoice" msgstr "" #: blocks/invoice-page/block.js:23 -#: js/blocks.build.js:1207 -msgid "Displays the member's Membership Invoices." +msgid "Dynamic page section that displays a list of all invoices (purchase history) for the active member. Each invoice can be selected and viewed in full detail." +msgstr "" + +#: blocks/invoice-page/block.js:31 +msgid "history" msgstr "" -#: blocks/invoice-page/block.js:39 -#: js/blocks.build.js:1224 +#: blocks/invoice-page/block.js:46 msgid "Membership Invoices" msgstr "" #: blocks/levels-page/block.js:22 -#: blocks/levels-page/block.js:39 -#: js/blocks.build.js:1263 -#: js/blocks.build.js:1281 -msgid "Membership Levels List" +msgid "Membership Levels and Pricing Table" msgstr "" #: blocks/levels-page/block.js:23 -#: js/blocks.build.js:1264 -msgid "Displays a list of Membership Levels. To change the order, go to Memberships > Settings > Levels." +msgid "Dynamic page section that displays a list of membership levels and pricing, linked to membership checkout. To reorder the display, navigate to Memberships > Settings > Levels." msgstr "" -#: blocks/login/block.js:23 -#: blocks/login/block.js:47 -#: js/blocks.build.js:1327 -#: js/blocks.build.js:1344 -msgid "Log in Form" +#: blocks/levels-page/block.js:34 +msgid "price" msgstr "" -#: blocks/login/block.js:24 -#: js/blocks.build.js:1328 -msgid "Displays a Log In Form for Paid Memberships Pro." +#: blocks/levels-page/block.js:35 +msgid "pricing table" msgstr "" -#: blocks/login/block.js:36 -#: js/blocks.build.js:1335 -msgid "login" +#: blocks/levels-page/block.js:45 +msgid "Membership Levels List" msgstr "" -#: blocks/login/block.js:37 -#: js/blocks.build.js:1335 -msgid "form" +#: blocks/login/block.js:25 +msgid "Login Form" msgstr "" -#: blocks/login/block.js:38 -#: js/blocks.build.js:1335 +#: blocks/login/block.js:26 +msgid "Dynamic form that allows users to log in or recover a loast password. Logged in users can see a welcome message with the selected custom menu." +msgstr "" + +#: blocks/login/block.js:34 msgid "log in" msgstr "" +#: blocks/login/block.js:35 +msgid "lost password" +msgstr "" + +#: blocks/login/block.js:37 +msgid "password reset" +msgstr "" + +#: blocks/login/block.js:47 +msgid "Log in Form" +msgstr "" + #: blocks/login/inspector.js:29 -#: js/blocks.build.js:1424 msgid "Display 'Welcome' content when logged in." msgstr "" #: blocks/login/inspector.js:38 -#: js/blocks.build.js:1432 msgid "Display the 'Log In Widget' menu." msgstr "" #: blocks/login/inspector.js:39 -#: js/blocks.build.js:1433 msgid "Assign the menu under Appearance > Menus." msgstr "" #: blocks/login/inspector.js:48 -#: js/blocks.build.js:1441 msgid "Display a 'Log Out' link." msgstr "" -#: blocks/member-profile-edit/block.js:17 -#: blocks/member-profile-edit/block.js:35 -#: js/blocks.build.js:1488 -#: js/blocks.build.js:1504 -msgid "Member Profile Edit" +#: blocks/member-profile-edit/block.js:19 +msgid "PMPro Page: Account Profile Edit" msgstr "" -#: blocks/member-profile-edit/block.js:18 -#: js/blocks.build.js:1489 -msgid "Allow member profile editing." +#: blocks/member-profile-edit/block.js:20 +msgid "Dynaimc form that allows the current logged in member to edit their default user profile information and any custom user profile fields." msgstr "" -#: blocks/member-profile-edit/block.js:27 -#: js/blocks.build.js:1496 -msgid "member" +#: blocks/member-profile-edit/block.js:28 +msgid "custom field" msgstr "" -#: blocks/member-profile-edit/block.js:28 -#: js/blocks.build.js:1496 -msgid "profile" +#: blocks/member-profile-edit/block.js:32 +msgid "user fields" msgstr "" -#: blocks/membership/block.js:31 -#: js/blocks.build.js:1552 -msgid "Require Membership Block" +#: blocks/member-profile-edit/block.js:39 +msgid "Member Profile Edit" msgstr "" #: blocks/membership/block.js:32 -#: js/blocks.build.js:1553 -msgid "Control the visibility of nested blocks for members or non-members." +msgid "Membership Required Block" +msgstr "" + +#: blocks/membership/block.js:33 +msgid "Nest blocks within this wrapper to control the inner block visibility by membership level or for non-members only." +msgstr "" + +#: blocks/membership/block.js:41 +msgid "block visibility" +msgstr "" + +#: blocks/membership/block.js:42 +msgid "confitional" +msgstr "" + +#: blocks/membership/block.js:43 +msgid "content" +msgstr "" + +#: blocks/membership/block.js:44 +msgid "hide" +msgstr "" + +#: blocks/membership/block.js:45 +msgid "hidden" +msgstr "" + +#: blocks/membership/block.js:48 +msgid "private" +msgstr "" + +#: blocks/membership/block.js:49 +msgid "restrict" +msgstr "" + +#: blocks/membership/block.js:98 +msgid "Which membership levels can view this block?" +msgstr "" + +#: blocks/membership/block.js:103 +msgid "What should users without access see?" +msgstr "" + +#: blocks/membership/block.js:106 +msgid "Modify the 'no access' message on the Memberships > Advanced Settings page." +msgstr "" + +#: blocks/membership/block.js:108 +msgid "Show nothing" +msgstr "" + +#: blocks/membership/block.js:109 +msgid "Show the 'no access' message" +msgstr "" + +#: blocks/membership/block.js:116 +#: blocks/membership/block.js:130 +msgid "Membership Required" msgstr "" diff --git a/pages/checkout.php b/pages/checkout.php index 0828a47a2..048298562 100644 --- a/pages/checkout.php +++ b/pages/checkout.php @@ -482,7 +482,7 @@ * Allow adding text or more checkboxes after the Tos checkbox * This is NOT intended to support multiple Tos checkboxes * - * @since TBD + * @since 2.8 */ do_action( "pmpro_checkout_after_tos" ); ?> diff --git a/pages/confirmation.php b/pages/confirmation.php index 8964f0c39..6d60a9071 100644 --- a/pages/confirmation.php +++ b/pages/confirmation.php @@ -62,8 +62,8 @@
  • : display_name );?> (user_email );?>)
  • -
  • : membership_level->name);?>
  • - membership_level->enddate) { ?> +
  • : membership_level->name);?> status, array( 'pending', 'token' ) ) ) { echo ' (' . esc_html__( 'Pending', 'paid-memberships-pro' ) . ')'; }?>
  • + membership_level->enddate ) && ! in_array( $pmpro_invoice->status, array( 'pending', 'token' ) ) ) { ?>
  • : membership_level->enddate)?>
  • getDiscountCode()) { ?> diff --git a/paid-memberships-pro.php b/paid-memberships-pro.php index 8477452ef..a355b8b80 100644 --- a/paid-memberships-pro.php +++ b/paid-memberships-pro.php @@ -3,7 +3,7 @@ * Plugin Name: Paid Memberships Pro * Plugin URI: https://www.paidmembershipspro.com * Description: The most complete member management and membership subscriptions plugin for WordPress. - * Version: 2.7.5 + * Version: 2.8 * Author: Paid Memberships Pro * Author URI: https://www.paidmembershipspro.com * Text Domain: paid-memberships-pro @@ -16,7 +16,7 @@ */ // version constant -define( 'PMPRO_VERSION', '2.7.5' ); +define( 'PMPRO_VERSION', '2.8' ); define( 'PMPRO_USER_AGENT', 'Paid Memberships Pro v' . PMPRO_VERSION . '; ' . site_url() ); define( 'PMPRO_MIN_PHP_VERSION', '5.6' ); @@ -40,6 +40,7 @@ require_once( PMPRO_DIR . '/includes/license.php' ); // defines location of addons data and licenses } +require_once( PMPRO_DIR . '/includes/crons.php' ); // cron-related functionality require_once( PMPRO_DIR . '/scheduled/crons.php' ); // crons for expiring members, sending expiration emails, etc require_once( PMPRO_DIR . '/classes/class.memberorder.php' ); // class to process and save orders @@ -116,6 +117,11 @@ require_once( PMPRO_DIR . '/includes/lib/stripe-apple-pay/stripe-apple-pay.php' ); // rewrite rules to set up Apple Pay. } +// Set up Wisdom tracking. +require_once PMPRO_DIR . '/classes/class-pmpro-wisdom-integration.php'; +$wisdom_integration = PMPro_Wisdom_Integration::instance(); +$wisdom_integration->setup_wisdom(); + /* Setup the DB and check for upgrades */ @@ -200,25 +206,18 @@ function pmpro_cron_schedules_monthly( $schedules ) { // activation function pmpro_activation() { - // schedule crons - pmpro_maybe_schedule_event( current_time( 'timestamp' ), 'hourly', 'pmpro_cron_expire_memberships' ); - pmpro_maybe_schedule_event( current_time( 'timestamp' ) + 1, 'hourly', 'pmpro_cron_expiration_warnings' ); - pmpro_maybe_schedule_event( current_time( 'timestamp' ), 'monthly', 'pmpro_cron_credit_card_expiring_warnings' ); - pmpro_maybe_schedule_event( strtotime( '10:30:00' ) - ( get_option( 'gmt_offset' ) * HOUR_IN_SECONDS ), 'daily', 'pmpro_cron_admin_activity_email' ); - + pmpro_maybe_schedule_crons(); pmpro_set_capabilities_for_role( 'administrator', 'enable' ); - do_action( 'pmpro_activation' ); } // deactivation -function pmpro_deactivation() { +function pmpro_deactivation() { // remove crons - wp_clear_scheduled_hook( 'pmpro_cron_expiration_warnings' ); - wp_clear_scheduled_hook( 'pmpro_cron_trial_ending_warnings' ); - wp_clear_scheduled_hook( 'pmpro_cron_expire_memberships' ); - wp_clear_scheduled_hook( 'pmpro_cron_credit_card_expiring_warnings' ); - wp_clear_scheduled_hook( 'pmpro_cron_admin_activity_email' ); + $crons = array_keys( pmpro_get_crons() ); + foreach( $crons as $cron ) { + wp_clear_scheduled_hook( $cron ); + } // remove caps from admin role pmpro_set_capabilities_for_role( 'administrator', 'disable' ); diff --git a/preheaders/checkout.php b/preheaders/checkout.php index 0ca127328..ca04a7208 100644 --- a/preheaders/checkout.php +++ b/preheaders/checkout.php @@ -579,7 +579,16 @@ $user_id = $current_user->ID; } - if ( ! empty( $user_id ) && ! is_wp_error( $user_id ) ) { + $is_user_valid = ! empty( $user_id ) && ! is_wp_error( $user_id ); + if( $is_user_valid ) { + // If we have a valid user, perform any necessary actions before the membership is given. + // Currently being used by Stripe and PayPal Standard to send users offsite to pay. + // May set $pmpro_msgt if there's an error sending them to offiste gateway. + do_action( 'pmpro_checkout_before_change_membership_level', $user_id, $morder ); + } + + // User is created and we are ready to give them a membership. + if ( $is_user_valid && 'pmpro_error' !== $pmpro_msgt ) { do_action( 'pmpro_checkout_before_change_membership_level', $user_id, $morder ); //start date is NOW() but filterable below diff --git a/preheaders/confirmation.php b/preheaders/confirmation.php index 50006b42c..e668aef4a 100644 --- a/preheaders/confirmation.php +++ b/preheaders/confirmation.php @@ -18,21 +18,35 @@ $current_user->membership_level = pmpro_getMembershipLevelForUser($current_user->ID); } -/* - Use the filter to add your gateway here if you want to show them a message on the confirmation page while their checkout is pending. - For example, when PayPal Standard is used, we need to wait for PayPal to send a message through IPN that the payment was accepted. - In the meantime, the order is in pending status and the confirmation page shows a message RE waiting. -*/ -$gateways_with_pending_status = apply_filters('pmpro_gateways_with_pending_status', array('paypalstandard', 'twocheckout', 'gourl')); -if ( ! pmpro_hasMembershipLevel() && ! in_array( pmpro_getGateway(), $gateways_with_pending_status ) ) { - // Logged in, but doesn't have a level - $redirect_url = pmpro_url( 'account' ); - wp_redirect( $redirect_url ); - exit; -} +// Get the most recent invoice for the current user. +$pmpro_invoice = new MemberOrder(); +$pmpro_invoice->getLastMemberOrder( $current_user->ID, apply_filters( 'pmpro_confirmation_order_status', array( 'success', 'pending', 'token' ) ) ); -// If membership is a paying one, get invoice from DB -if ( ! empty( $current_user->membership_level ) && ! pmpro_isLevelFree( $current_user->membership_level ) ) { - $pmpro_invoice = new MemberOrder(); - $pmpro_invoice->getLastMemberOrder( $current_user->ID, apply_filters( "pmpro_confirmation_order_status", array( "success", "pending" ) ) ); +if ( ! in_array( $pmpro_invoice->status, array( 'pending', 'token' ) ) && empty( $current_user->membership_level ) ) { + // The user does not have a membership level (including pending checkouts). + // Redirect them to the account page. + $redirect_url = pmpro_url( 'account' ); + wp_redirect( $redirect_url ); + exit; +} elseif ( ! empty( $current_user->membership_level ) && pmpro_isLevelFree( $current_user->membership_level ) ) { + // User checked out for a free level. We are not going to show the invoice on the confirmation page. + $pmpro_invoice = null; +} elseif ( in_array( $pmpro_invoice->status, array( 'pending', 'token' ) ) ) { + // Enqueue PMPro Confirmation script. + wp_register_script( + 'pmpro_confirmation', + plugins_url( 'js/pmpro-confirmation.js', PMPRO_BASE_FILE ), + array( 'jquery' ), + PMPRO_VERSION + ); + wp_localize_script( + 'pmpro_confirmation', + 'pmpro', + array( + 'restUrl' => get_rest_url(), + 'nonce' => wp_create_nonce( 'wp_rest' ), + 'code' => $pmpro_invoice->code, + ) + ); + wp_enqueue_script( 'pmpro_confirmation' ); } diff --git a/readme.txt b/readme.txt index 83d6a1cd6..77c9a6a0f 100644 --- a/readme.txt +++ b/readme.txt @@ -2,9 +2,9 @@ Contributors: strangerstudios, kimannwall, andrewza, dlparker1005, paidmembershipspro Tags: memberships, members, subscriptions, ecommerce, user registration, member, membership, e-commerce, paypal, stripe, braintree, authorize.net, payflow, restrict access, restrict content, directory Requires at least: 5.2 -Tested up to: 5.9.1 +Tested up to: 5.9.3 Requires PHP: 5.6 -Stable tag: 2.7.5 +Stable tag: 2.8 WordPress membership plugin: restrict content, accept member subscriptions with recurring payment. Includes user registration, login, & profile fields @@ -156,6 +156,32 @@ Not sure? You can find out by doing a bit a research. 9. Membership Account page, display all sections or show specific sections using shortcode attributes. == Changelog == += 2.8 - 2022-05-05 = +* FEATURE: Added refunds buttons for Stripe and Paypal Express orders. #1948 (@JarrydLong) +* FEATURE: Released Beta version of Stripe Checkout. Add `define('PMPRO_STRIPE_CHECKOUT_BETA_ENABLED', true);` to your wp-config.php to enable this gateway during the beta. #1923 (@dlparker1005) +* ENHANCEMENT: Introduced a new set of functions that handle cron-related tasks including: `pmpro_get_crons()` to get the list of PMPro registered crons. #1999 (@sc0ttkclark) +* ENHANCEMENT: New filter `pmpro_registered_crons` which you can register new crons to be handled by PMPro. They show up in the PMPro Site Health info and are automatically scheduled when they need to be. #1999 (@sc0ttkclark) +* ENHANCEMENT: Added an opt-in stats collection so we can get better insight on how people use Paid Memberships Pro. (@sc0ttkclark, @ideadude) +* ENHANCEMENT: Added Formal German translation files. #1926 +* ENHANCEMENT: Tracking library conflicts in Site Health, e.g. when other plugins are loading gateway libraries at the same time as PMPro. (@dparker1005) +* ENHANCEMENT: UI/UX improvements to the Orders admin area for list and single edit view. #2017 (@kimcoleman) +* ENHANCEMENT: Improved the UI for email template variables reference on the Settings > Email Templates admin page. #2018 (@kimcoleman) +* ENHANCEMENT: Various other UI improvements to the admin area. #2019 (@kimcoleman) +* ENHANCEMENT: Improved block names, descriptions, keywords, and organization for discover and usability. #2011 (@kimcoleman) +* ENHANCEMENT: Added "show_noaccess" as a setting on the Membership Required block for swapping in the appropriate content message. #2011 (@kimcoleman) +* ENHANCEMENT: Added filter 'pmpro_braintree_transaction_sale_array' to allow adding or adjusting of the sale transaction method. #2006 (@andrewlimaza) +* ENHANCEMENT: Moved the TOS input inside the label to support multiline i18n. #2002 (#mircobabini) +* ENHANCEMENT: Added new action `pmpro_checkout_after_tos` to output content after the TOS. #2003 (@mircobabini) +* ENHANCEMENT: Added filters to change gateway ipn/webhook logfile. #1996 (@mircobabini) +* ENHANCEMENT: Added filter to perform actions during PPHttpPost() method of the PayPal gateways. #1992 (@mircobabini) +* ENHANCEMENT: Added untranslated gateway identifiers to Site Health info. #1989 (@JarrydLong) +* BUG FIX/ENHANCEMENT: Fixed escaping and localization for many strings across the codebase. #1976 (@mircobabini) +* BUG FIX/ENHANCEMENT: Resolve admin area conflicts with other plugins using similar class names. #1991 (@sc0ttkclark) +* BUG FIX: Crons are now automatically rescheduled if they disappear form the cron schedule. #1999 (@sc0ttkclark, @mircobabini) +* BUG FIX: Resolved problems with PHP float precision and prevent passing along faulty floats to the gateway APIs. #1929 (@sc0ttkclark) +* BUG FIX: Fixed issue where TOS setting was not saving when using the PayFast gateway. #1990 (@andrewlimaza) +* BUG FIX: Fixed issue where the is_renewal() method didn't work during the pmpro_added_order hook. (@andrewlimaza) + = 2.7.5 - 2022-03-01 = * ENHANCEMENT: Now sending "name" separate from the "description" when creating customers for Stripe checkouts. (@ideadude) * ENHANCEMENT: You can now search the members list on specific user table columns or user meta fields by using a colon in your search term. These queries are faster than the default queries. The format is meta_key:meta_value (no backticks). You can also use login, nicename, email, url, or display_name as the meta_key and the users table will be searched against the related column. (@ideadude) @@ -645,33 +671,4 @@ BUG FIX: Fixed issue where PMPro would always try to add capabilities to the adm * ENHANCEMENT: Added pmpro_admin_orders_filters and pmpro_admin_orders_query_condition filters to add new filters to the orders page in the dashboard. (Thanks, Mirco Babini) * ENHANCEMENT: Added an SVG icon to the PMPro blocks category. * REFACTOR: Improved the Members List list table code to use a function for each column of data and support the code core WP methods for extending list tables with custom columns. -* REFACTOR: Moved all Theme My Login compatiblity code to includes/compatibility/theme-my-login.php and only loading if plugin is active. - -= 2.2.6 - 2020-02-20 = -* SECURITY: Escaping the post title shown in the Terms of Service section of the checkout page. -* BUG FIX: Fixed issue where the CVV/Security Code was not being passed to Authorize.net when using that gateway. -* BUG FIX: Fixed issues with the update billing page when using Stripe. -* BUG FIX: Fixed issues with the update billing page when using the MMPU Add On. -* BUG FIX: Fixed issue where password fields would disappear when the checkout form was submitted. This behavior was required to address bugs in older versions of iOS that shouldn't be in use any more. -* BUG FIX: No longer sending an extra cancel request to the PayPal API when processing a cancel for a PayPal Express subscription through the IPN handler. -* BUG FIX: The currency option is no longer hidden when using the check gateway. -* BUG FIX: Fixed the comparisons in the pmpro_check_plugin_version function and related notification checks. -* BUG FIX: Avoiding warnings in the sendAdminChangeEmail method if the user doesn't have a level. -* BUG FIX: Fixed some cases where the Members List CSV export wouldn't match the members shown in the table/search. -* BUG FIX: Fixed issue where the Members List may show the wrong count or enddate. -* BUG FIX/ENHANCEMENT: Added support for Elementor. Filtering content later so the builder's filters can run first. Also added the ability to choose which membership levels an element should be visible for. -* BUG FIX/ENHANCEMENT: Fixed the confirmation page formatting when paying by check. Added a div with class "pmpro_payment_instructions" around the payment instructions shown on the confirmation and invoice pages. -* BUG FIX/ENHANCEMENT: Added an Oxford Comma to the the pmpro_implodeToEnglish() function. -* BUG FIX/ENHANCEMENT: Moved the Japanese Yen symbol to the left of the total instead of the right. -* BUG FIX/ENHANCEMENT: Added the pmpro_checkout_login_redirect filter, which filters the url_redirect parameter of the login link on the checkout page. This is used by some Add Ons to make sure you are returned to the checkout page properly after logging in through that link. -* ENHANCEMENT: Added the Ghanian Cedi currency. -* ENHANCEMENT: Added the pmpro_are_levels_recurring() function to help with MMPU. -* ENHANCEMENT: Improved the look and source of the CVV popup. - -= 2.2.5 - 2020-01-05 = -* BUG FIX: Once again loading JavaScript on the update billing page when using Braintree. -* BUG FIX: Loading Braintree JavaScript at checkout for free levels to support the variable pricing and donation add ons. -* BUG FIX: Fixed issues with PayPal orders when using the pmpro_paypal_level_description filter. -* BUG FIX/ENHANCEMENT: Responsive update for smaller device viewports for the Membership Levels table in the dashboard. -* ENHANCEMENT: Added filters: pmpro_is_level_free, pmpro_is_level_trial, and pmpro_is_level_expiring. -* ENHANCEMENT: Updated IPN handler and Stripe Webhook handler to use pmpro_cancelMembershipLevel instead of pmpro_changeMembershipLevele. This improves support for the MMPU addon. +* REFACTOR: Moved all Theme My Login compatiblity code to includes/compatibility/theme-my-login.php and only loading if plugin is active. \ No newline at end of file diff --git a/services/ipnhandler.php b/services/ipnhandler.php index fc74e2358..e0c343dac 100644 --- a/services/ipnhandler.php +++ b/services/ipnhandler.php @@ -36,10 +36,13 @@ $payment_amount = pmpro_getParam( "payment_amount", "POST" ); $payment_currency = pmpro_getParam( "payment_currency", "POST" ); $receiver_email = pmpro_getParam( "receiver_email", "POST", '', 'sanitize_email' ); +$refund_amount = pmpro_getParam( "refund_amount", "POST" ); $business_email = pmpro_getParam( "business", "POST", '', 'sanitize_email' ); $payer_email = pmpro_getParam( "payer_email", "POST", '', 'sanitize_email' ); $recurring_payment_id = pmpro_getParam( "recurring_payment_id", "POST" ); $profile_status = strtolower( pmpro_getParam( "profile_status", "POST" ) ); +$payment_status = strtolower( pmpro_getParam( "payment_status", "POST" ) ); +$parent_txn_id = pmpro_getParam( "parent_txn_id", "POST" ); if ( empty( $subscr_id ) ) { $subscr_id = $recurring_payment_id; @@ -372,11 +375,54 @@ } } -// Order Refunded (PayPal Express) -if( '' === $txn_type && 'Refunded' === $payment_status ) { - ipnlog( 'Refund for this payment: ' . print_r( $_POST, true ) ); +if ( strtolower( $payment_status ) === 'refunded' ) { + $payment_transaction_id = $parent_txn_id; - pmpro_ipnExit(); + if ( $payment_transaction_id ) { + $morder = new MemberOrder(); + $morder->getMemberOrderByPaymentTransactionID( $payment_transaction_id ); + + // Make sure we found a matching order. + if ( empty( $morder ) || empty( $morder->id ) ) { + ipnlog( sprintf( 'IPN: Order refunded on %1$s for transaction ID %2$s at the gateway, but we could not find a matching order.', date_i18n('Y-m-d H:i:s'), $payment_transaction_id ) ); + pmpro_ipnExit(); + } + + // Ignore orders already in refund status. + if( $morder->status == 'refunded' ) { + $logstr .= sprintf( 'IPN: Order ID %1$s with transaction ID %2$s was already in refund status.', $morder->id, $payment_transaction_id ); + pmpro_ipnExit(); + } + + // Handle partial refunds. Only updating the log and notes for now. + if ( abs( (float)$_POST['mc_gross'] ) < (float)$morder->total ) { + ipnlog( sprintf( 'IPN: Order was partially refunded on %1$s for transaction ID %2$s at the gateway. The order will need to be updated in the WP dashboard.', date_i18n('Y-m-d H:i:s'), $payment_transaction_id ) ); + $morder->notes = trim( $morder->notes . ' ' . sprintf( 'IPN: Order was partially refunded on %1$s for transaction ID %2$s at the gateway. The order will need to be updated in the WP dashboard.', date_i18n('Y-m-d H:i:s'), $payment_transaction_id ) ); + $morder->SaveOrder(); + pmpro_ipnExit(); + } + + // Full refund. + $morder->status = 'refunded'; + + // translators: %1$s is the date. %2$s is the transaction ID. + $morder->notes = trim( $morder->notes .' '. sprintf( 'IPN: Order successfully refunded on %1$s for transaction ID %2$s at the gateway.', date_i18n('Y-m-d H:i:s'), $payment_transaction_id ) ); + + ipnlog( sprintf( 'IPN: Order successfully refunded on %1$s for transaction ID %2$s at the gateway.', date_i18n('Y-m-d H:i:s'), $payment_transaction_id ) ); + + $user = get_user_by( 'email', $morder->Email ); + + // Send an email to the member. + $myemail = new PMProEmail(); + $myemail->sendRefundedEmail( $user, $morder ); + + // Send an email to the admin. + $myemail = new PMProEmail(); + $myemail->sendRefundedAdminEmail( $user, $morder ); + + $morder->SaveOrder(); + pmpro_ipnExit(); + } } //Other diff --git a/services/stripe-webhook.php b/services/stripe-webhook.php index cbc516cc3..fc6cf6b1a 100644 --- a/services/stripe-webhook.php +++ b/services/stripe-webhook.php @@ -8,6 +8,7 @@ use Stripe\Event as Stripe_Event; use Stripe\PaymentIntent as Stripe_PaymentIntent; use Stripe\Charge as Stripe_Charge; + use Stripe\PaymentMethod as Stripe_PaymentMethod; global $isapage; $isapage = true; @@ -159,36 +160,19 @@ $morder->gateway = $old_order->gateway; $morder->gateway_environment = $old_order->gateway_environment; - $charge = Stripe_Charge::retrieve( $pmpro_stripe_event->data->object->charge ); - if ( ! empty ( $charge->billing_details->address->line1 ) ) { - // Get order billing details from Stripe. - $morder->billing = $charge->billing_details->address; - $morder->billing->name = $charge->billing_details->name; // Add name. - $morder->billing->phone = $charge->billing_details->phone; // Add phone. - $morder->billing->zip = $morder->billing->postal_code; // Fix zip. - $morder->billing->street = $morder->billing->line1; // Fix street. - - $nameparts = pnp_split_full_name( $morder->billing->name ); - $morder->FirstName = empty( $nameparts['fname'] ) ? '' : $nameparts['fname']; - $morder->LastName = empty( $nameparts['lname'] ) ? '' : $nameparts['lname']; - $morder->Email = $wpdb->get_var("SELECT user_email FROM $wpdb->users WHERE ID = '" . $old_order->user_id . "' LIMIT 1"); - $morder->Address1 = $morder->billing->street; - $morder->City = $morder->billing->city; - $morder->State = $morder->billing->state; - $morder->Zip = $morder->billing->zip; - $morder->PhoneNumber = $morder->billing->phone; - } else { - // Pull from previous order. - $morder->find_billing_address(); + // Update payment method and billing address on order. + $payment_intent_args = array( + 'id' => $invoice->payment_intent, + 'expand' => array( + 'payment_method', + ), + ); + $payment_intent = \Stripe\PaymentIntent::retrieve( $payment_intent_args ); + if ( empty( $payment_intent->payment_method ) ) { + $logstr .= "Could not find payment method for invoice " . $invoice->id; + pmpro_stripeWebhookExit(); } - - //get CC info that is on file - $morder->cardtype = get_user_meta($user_id, "pmpro_CardType", true); - $morder->accountnumber = hideCardNumber(get_user_meta($user_id, "pmpro_AccountNumber", true), false); - $morder->expirationmonth = get_user_meta($user_id, "pmpro_ExpirationMonth", true); - $morder->expirationyear = get_user_meta($user_id, "pmpro_ExpirationYear", true); - $morder->ExpirationDate = $morder->expirationmonth . $morder->expirationyear; - $morder->ExpirationDate_YdashM = $morder->expirationyear . "-" . $morder->expirationmonth; + pmpro_stripe_webhook_populate_order_from_payment( $morder, $payment_intent->payment_method ); //save $morder->status = "success"; @@ -244,28 +228,29 @@ elseif($pmpro_stripe_event->type == "invoice.payment_action_required") { // TODO: Test subs with SCA. $old_order = getOldOrderFromInvoiceEvent($pmpro_stripe_event); - if( ! empty( $old_order ) && ! empty( $old_order->id ) ) { $user_id = $old_order->user_id; $user = get_userdata($user_id); + $invoice = $pmpro_stripe_event->data->object; // Prep order for emails. $morder = new MemberOrder(); $morder->user_id = $user_id; - $morder->billing = new stdClass(); - $morder->billing->name = $old_order->billing->name; - $morder->billing->street = $old_order->billing->street; - $morder->billing->city = $old_order->billing->city; - $morder->billing->state = $old_order->billing->state; - $morder->billing->zip = $old_order->billing->zip; - $morder->billing->country = $old_order->billing->country; - $morder->billing->phone = $old_order->billing->phone; - - //get CC info that is on file - $morder->cardtype = get_user_meta($user_id, "pmpro_CardType", true); - $morder->accountnumber = hideCardNumber(get_user_meta($user_id, "pmpro_AccountNumber", true), false); - $morder->expirationmonth = get_user_meta($user_id, "pmpro_ExpirationMonth", true); - $morder->expirationyear = get_user_meta($user_id, "pmpro_ExpirationYear", true); + + // Update payment method and billing address on order. + $payment_intent_args = array( + 'id' => $invoice->payment_intent, + 'expand' => array( + 'payment_method', + ), + ); + $payment_intent = \Stripe\PaymentIntent::retrieve( $payment_intent_args ); + $payment_method = $payment_intent->charges->data[0]->payment_method_details; + if ( empty( $payment_method ) ) { + $logstr .= "Could not find payment method for invoice " . $invoice->id; + pmpro_stripeWebhookExit(); + } + pmpro_stripe_webhook_populate_order_from_payment( $morder, $payment_method ); // Add invoice link to the order. $morder->invoice_url = $pmpro_stripe_event->data->object->hosted_invoice_url; @@ -289,9 +274,7 @@ $logstr .= " Customer ID #" . $pmpro_stripe_event->data->object->customer . "."; pmpro_stripeWebhookExit(); } - } - elseif($pmpro_stripe_event->type == "charge.failed") - { + } elseif($pmpro_stripe_event->type == "charge.failed") { //last order for this subscription $old_order = getOldOrderFromInvoiceEvent($pmpro_stripe_event); @@ -306,21 +289,20 @@ $morder = new MemberOrder(); $morder->user_id = $user_id; $morder->membership_id = $old_order->membership_id; - - $morder->billing = new stdClass(); - $morder->billing->name = $old_order->billing->name; - $morder->billing->street = $old_order->billing->street; - $morder->billing->city = $old_order->billing->city; - $morder->billing->state = $old_order->billing->state; - $morder->billing->zip = $old_order->billing->zip; - $morder->billing->country = $old_order->billing->country; - $morder->billing->phone = $old_order->billing->phone; - - //get CC info that is on file - $morder->cardtype = get_user_meta($user_id, "pmpro_CardType", true); - $morder->accountnumber = hideCardNumber(get_user_meta($user_id, "pmpro_AccountNumber", true), false); - $morder->expirationmonth = get_user_meta($user_id, "pmpro_ExpirationMonth", true); - $morder->expirationyear = get_user_meta($user_id, "pmpro_ExpirationYear", true); + + // Update payment method and billing address on order. + $payment_intent_args = array( + 'id' => $pmpro_stripe_event->data->object->payment_intent, + 'expand' => array( + 'payment_method', + ), + ); + $payment_intent = \Stripe\PaymentIntent::retrieve( $payment_intent_args ); + if ( empty( $payment_intent->payment_method ) ) { + $logstr .= "Could not find payment method for charge " . $pmpro_stripe_event->data->object->id; + pmpro_stripeWebhookExit(); + } + pmpro_stripe_webhook_populate_order_from_payment( $morder, $payment_intent->payment_method ); // Email the user and ask them to update their credit card information $pmproemail = new PMProEmail(); @@ -421,6 +403,225 @@ pmpro_stripeWebhookExit(); } } + elseif( $pmpro_stripe_event->type == "charge.refunded" ) + { + $payment_transaction_id = $pmpro_stripe_event->data->object->id; + $morder = new MemberOrder(); + $morder->getMemberOrderByPaymentTransactionID( $payment_transaction_id ); + + // Initial payment orders are stored using the invoice ID, so check that value too. + if ( empty( $morder->id ) && ! empty( $pmpro_stripe_event->data->object->invoice ) ) { + $payment_transaction_id = $pmpro_stripe_event->data->object->invoice; + $morder->getMemberOrderByPaymentTransactionID( $payment_transaction_id ); + } + + //We've got the right order + if( !empty( $morder->id ) ) { + // Ingore orders already in refund status. + if( $morder->status == 'refunded' ) { + $logstr .= sprintf( 'Webhook: Order ID %1$s with transaction ID %2$s was already in refund status.', $morder->id, $payment_transaction_id ); + pmpro_stripeWebhookExit(); + } + + // Handle partial refunds. Only updating the log and notes for now. + if ( $pmpro_stripe_event->data->object->amount_refunded < $pmpro_stripe_event->data->object->amount ) { + $logstr .= sprintf( 'Webhook: Order ID %1$s with transaction ID %2$s was partially refunded. The order will need to be updated in the WP dashboard.', $morder->id, $payment_transaction_id ); + $morder->notes = trim( $morder->notes . ' ' . sprintf( 'Webhook: Order ID %1$s was partially refunded on %2$s for transaction ID %3$s at the gateway.', $morder->id, date_i18n('Y-m-d H:i:s'), $payment_transaction_id ) ); + $morder->SaveOrder(); + pmpro_stripeWebhookExit(); + } + + // Full refund. + $morder->status = 'refunded'; + + $logstr .= sprintf( 'Webhook: Order ID %1$s successfully refunded on %2$s for transaction ID %3$s at the gateway.', $morder->id, date_i18n('Y-m-d H:i:s'), $payment_transaction_id ); + + // Add to order notes. + $morder->notes = trim( $morder->notes . ' ' . sprintf( 'Webhook: Order ID %1$s successfully refunded on %2$s for transaction ID %3$s at the gateway.', $morder->id, date_i18n('Y-m-d H:i:s'), $payment_transaction_id ) ); + + $morder->SaveOrder(); + + $user = get_user_by( 'email', $morder->Email ); + + // Send an email to the member. + $myemail = new PMProEmail(); + $myemail->sendRefundedEmail( $user, $morder ); + + // Send an email to the admin. + $myemail = new PMProEmail(); + $myemail->sendRefundedAdminEmail( $user, $morder ); + + pmpro_stripeWebhookExit(); + } else { + //We can't find that order + $logstr .= sprintf( 'Webhook: Transaction ID %1$s was refunded at the gateway on %2$s, but we could not find a matching order.', $payment_transaction_id, date_i18n('Y-m-d H:i:s') ); + + pmpro_stripeWebhookExit(); + } + } + elseif($pmpro_stripe_event->type == "checkout.session.completed") + { + // First, let's get the checkout session. + $checkout_session = $pmpro_stripe_event->data->object; + + // Let's then find the PMPro order for the checkout session. + $order_id = $wpdb->get_var( $wpdb->prepare( "SELECT pmpro_membership_order_id FROM $wpdb->pmpro_membership_ordermeta WHERE meta_key = 'stripe_checkout_session_id' AND meta_value = %s LIMIT 1", $checkout_session->id ) ); + if ( empty( $order_id ) ) { + $logstr .= "Could not find an order for Checkout Session " . $checkout_session->id; + pmpro_stripeWebhookExit(); + } + $order = new MemberOrder( $order_id ); + if ( empty( $order ) ) { + $logstr .= "Order ID " . $order_id . " for Checkout Session " . $checkout_session->id . " could not be found."; + pmpro_stripeWebhookExit(); + } + + // Get the payment method object for this checkout and set transaction and subscription ids. + if ( $checkout_session->mode === 'payment' ) { + // User purchased a one-time payment level. Assign the charge ID to the order. + try { + $payment_intent_args = array( + 'id' => $checkout_session->payment_intent, + 'expand' => array( + 'payment_method', + ), + ); + $payment_intent = \Stripe\PaymentIntent::retrieve( $payment_intent_args ); + $order->payment_transaction_id = $payment_intent->charges->data[0]->id; + if ( ! empty( $payment_intent->payment_method ) ) { + $payment_method = $payment_intent->payment_method; + } + } catch ( \Stripe\Error\Base $e ) { + // Could not get payment intent. We just won't set a payment transaction ID. + } + } elseif ( $checkout_session->mode === 'subscription' ) { + // User purchased a subscription. Assign the subscription ID invoice ID to the order. + $order->subscription_transaction_id = $checkout_session->subscription; + try { + $subscription_args = array( + 'id' => $checkout_session->subscription, + 'expand' => array( + 'latest_invoice', + 'default_payment_method', + ), + ); + $subscription = \Stripe\Subscription::retrieve( $subscription_args ); + if ( ! empty( $subscription->latest_invoice->id ) ) { + $order->payment_transaction_id = $subscription->latest_invoice->id; + } + if ( ! empty( $subscription->default_payment_method ) ) { + $payment_method = $subscription->default_payment_method; + } + } catch ( \Stripe\Error\Base $e ) { + // Could not get invoices. We just won't set a payment transaction ID. + } + } + // Make sure that we have payment and payment method objects. + if ( empty( $payment_method ) ) { + $logstr .= "Could not find payment method for Checkout Session " . $checkout_session->id; + } else { + // Update payment method and billing address on order. + pmpro_stripe_webhook_populate_order_from_payment( $order, $payment_method ); + } + + // Update the amounts paid. + global $pmpro_currency; + $currency = pmpro_get_currency(); + $currency_unit_multiplier = pow( 10, intval( $currency['decimals'] ) ); + + $order->total = (float) $checkout_session->amount_total / $currency_unit_multiplier; + $order->subtotal = (float) $checkout_session->amount_subtotal / $currency_unit_multiplier; + $order->tax = (float) $checkout_session->total_details->amount_tax / $currency_unit_multiplier; + + // Was the checkout session successful? + if ( $checkout_session->payment_status == "paid" ) { + // Yes. But did we already process this order? + if ( ! in_array( $order->status , array( 'token', 'pending' ) ) ) { + $logstr .= "Order #" . $order->id . " for Checkout Session " . $checkout_session->id . " has already been processed. Ignoring."; + pmpro_stripeWebhookExit(); + } + // No we have not processed this order. Let's process it now. + if ( pmpro_stripe_webhook_change_membership_level( $order, $checkout_session ) ) { + $logstr .= "Order #" . $order->id . " for Checkout Session " . $checkout_session->id . " was processed successfully."; + } else { + $logstr .= "Order #" . $order->id . " for Checkout Session " . $checkout_session->id . " could not be processed."; + $order->status = "error"; + $order->saveOrder(); + } + } else { + // No. The user is probably using a delayed notification payment method. + // Set to pending in the meantime and wait for the next webhook. + $order->status = "pending"; + $order->saveOrder(); + $logstr .= "Checkout Session " . $checkout_session->id . " has not yet been processed for PMPro order ID " . $order->id . "."; + } + pmpro_stripeWebhookExit(); + + } + elseif($pmpro_stripe_event->type == "checkout.session.async_payment_succeeded") + { + // First, let's get the checkout session. + $checkout_session = $pmpro_stripe_event->data->object; + + // Let's then find the PMPro order for the checkout session. + $order_id = $wpdb->get_var( $wpdb->prepare( "SELECT pmpro_membership_order_id FROM $wpdb->pmpro_membership_ordermeta WHERE meta_key = 'stripe_checkout_session_id' AND meta_value = %s LIMIT 1", $checkout_session->id ) ); + if ( empty( $order_id ) ) { + $logstr .= "Could not find an order for Checkout Session " . $checkout_session->id; + pmpro_stripeWebhookExit(); + } + $order = new MemberOrder( $order_id ); + if ( empty( $order ) ) { + $logstr .= "Order ID " . $order_id . " for Checkout Session " . $checkout_session->id . " could not be found."; + pmpro_stripeWebhookExit(); + } + + // Have we already processed this order? + if ( ! in_array( $order->status , array( 'token', 'pending' ) ) ) { + $logstr .= "Order #" . $order->id . " for Checkout Session " . $checkout_session->id . " has already been processed. Ignoring."; + pmpro_stripeWebhookExit(); + } + // No we have not processed this order. Let's process it now. + if ( pmpro_stripe_webhook_change_membership_level( $order, $checkout_session ) ) { + $logstr .= "Order #" . $order->id . " for Checkout Session " . $checkout_session->id . " was processed successfully."; + } else { + $logstr .= "Order #" . $order->id . " for Checkout Session " . $checkout_session->id . " could not be processed."; + $order->status = "error"; + $order->saveOrder(); + } + pmpro_stripeWebhookExit(); + } + elseif($pmpro_stripe_event->type == "checkout.session.async_payment_failed") + { + // First, let's get the checkout session. + $checkout_session = $pmpro_stripe_event->data->object; + + // Let's then find the PMPro order for the checkout session. + $order_id = $wpdb->get_var( $wpdb->prepare( "SELECT pmpro_membership_order_id FROM $wpdb->pmpro_membership_ordermeta WHERE meta_key = 'stripe_checkout_session_id' AND meta_value = %s LIMIT 1", $checkout_session->id ) ); + if ( empty( $order_id ) ) { + $logstr .= "Could not find an order for Checkout Session " . $checkout_session->id; + pmpro_stripeWebhookExit(); + } + $order = new MemberOrder( $order_id ); + if ( empty( $order ) ) { + $logstr .= "Order ID " . $order_id . " for Checkout Session " . $checkout_session->id . " could not be found."; + pmpro_stripeWebhookExit(); + } + + // Mark the order as failed. + $order->status = "error"; + $order->saveOrder(); + + // Email the user to notify them of failed payment + $pmproemail = new PMProEmail(); + $pmproemail->sendBillingFailureEmail( get_userdata( $order->user_id ), $order); + + // Email admin so they are aware of the failure + $pmproemail = new PMProEmail(); + $pmproemail->sendBillingFailureAdminEmail( get_bloginfo( 'admin_email'), $order ); + + $logstr .= "Order #" . $order->id . " for Checkout Session " . $checkout_session->id . " could not be processed."; + pmpro_stripeWebhookExit(); + } } else { @@ -598,3 +799,197 @@ function pmpro_stripeWebhookExit() exit; } + +/** + * Assign a membership level when a checkout is completed via Stripe webhook. + * + * Steps: + * 1. Pull checkout data from order meta. + * 2. Build checkout level. + * 3. Change membership level. + * 4. Mark order as successful. + * 5. Record discount code use. + * 6. Save some user meta. + * 7. Run pmpro_after_checkout. + * 8. Send checkout emails. + * + * @since 2.8 + * + * @param MemberOrder $morder The order for the checkout being completed. + * @return bool + */ +function pmpro_stripe_webhook_change_membership_level( $morder ) { + + global $wpdb, $pmpro_level, $discount_code; + + // We need to pull the checkout level and fields data from the order. + $checkout_level_arr = get_pmpro_membership_order_meta( $morder->id, 'checkout_level', true ); + $pmpro_level = (object) $checkout_level_arr; + + // Set $discount_code. + $discount_code_arr = get_pmpro_membership_order_meta( $morder->id, 'discount_code', true ); + if ( ! empty( $discount_code_arr ) ) { + $discount_code = (object) $discount_code_arr; + } + + // Set $_REQUEST. + $checkout_request_vars = get_pmpro_membership_order_meta( $morder->id, 'checkout_request_vars', true ); + $_REQUEST = array_merge( $_REQUEST, $checkout_request_vars ); + + // Run the pmpro_checkout_before_change_membership_level action in case add ons need to set up. + remove_action( 'pmpro_checkout_before_change_membership_level', array('PMProGateway_stripe', 'pmpro_checkout_before_change_membership_level'), 10, 2 ); + do_action( 'pmpro_checkout_before_change_membership_level', $morder->user_id, $morder ); + + //set the start date to current_time('timestamp') but allow filters (documented in preheaders/checkout.php) + $startdate = apply_filters( "pmpro_checkout_start_date", "'" . current_time( 'mysql' ) . "'", $morder->user_id, $pmpro_level ); + + //fix expiration date + if ( ! empty( $pmpro_level->expiration_number ) ) { + $enddate = "'" . date_i18n( "Y-m-d", strtotime( "+ " . $pmpro_level->expiration_number . " " . $pmpro_level->expiration_period, current_time( "timestamp" ) ) ) . "'"; + } else { + $enddate = "NULL"; + } + + //filter the enddate (documented in preheaders/checkout.php) + $enddate = apply_filters( "pmpro_checkout_end_date", $enddate, $morder->user_id, $pmpro_level, $startdate ); + + //get discount code + if ( ! empty( $discount_code ) ) { + //update membership level + $discount_code_id = $discount_code->id; + } else { + $discount_code_id = ""; + } + + + //custom level to change user to + $custom_level = array( + 'user_id' => $morder->user_id, + 'membership_id' => $pmpro_level->id, + 'code_id' => $discount_code_id, + 'initial_payment' => $pmpro_level->initial_payment, + 'billing_amount' => $pmpro_level->billing_amount, + 'cycle_number' => $pmpro_level->cycle_number, + 'cycle_period' => $pmpro_level->cycle_period, + 'billing_limit' => $pmpro_level->billing_limit, + 'trial_amount' => $pmpro_level->trial_amount, + 'trial_limit' => $pmpro_level->trial_limit, + 'startdate' => $startdate, + 'enddate' => $enddate + ); + + global $pmpro_error; + if ( ! empty( $pmpro_error ) ) { + echo $pmpro_error; + ipnlog( $pmpro_error ); + } + + //change level and continue "checkout" + if ( pmpro_changeMembershipLevel( $custom_level, $morder->user_id, 'changed' ) !== false ) { + // Mark the order as successful. + $morder->status = "success"; + $morder->saveOrder(); + + //add discount code use + if ( ! empty( $discount_code ) && ! empty( $use_discount_code ) ) { + + $wpdb->query( + $wpdb->prepare( + "INSERT INTO {$wpdb->pmpro_discount_codes_uses} + ( code_id, user_id, order_id, timestamp ) + VALUES( %d, %d, %s, %s )", + $discount_code_id), + $morder->user_id, + $morder->id, + current_time( 'mysql' ) + ); + } + + //save first and last name fields + if ( ! empty( $_POST['first_name'] ) ) { + $old_firstname = get_user_meta( $morder->user_id, "first_name", true ); + if ( empty( $old_firstname ) ) { + update_user_meta( $morder->user_id, "first_name", $_POST['first_name'] ); + } + } + if ( ! empty( $_POST['last_name'] ) ) { + $old_lastname = get_user_meta( $morder->user_id, "last_name", true ); + if ( empty( $old_lastname ) ) { + update_user_meta( $morder->user_id, "last_name", $_POST['last_name'] ); + } + } + + //hook + do_action( "pmpro_after_checkout", $morder->user_id, $morder ); + + //setup some values for the emails + $user = get_userdata( $morder->user_id ); + $user->membership_level = $pmpro_level; //make sure they have the right level info + + //send email to member + $pmproemail = new PMProEmail(); + $pmproemail->sendCheckoutEmail( $user, $morder ); + + //send email to admin + $pmproemail = new PMProEmail(); + $pmproemail->sendCheckoutAdminEmail( $user, $morder ); + + return true; + } else { + return false; + } +} + +/** + * Update order information from a Stripe payment method. + * + * @since 2.8 + * + * @param MemberOrder $order The order to update. + * @param Stripe_PaymentMethod $payment_method The payment method object. + */ +function pmpro_stripe_webhook_populate_order_from_payment( $order, $payment_method ) { + global $wpdb; + + // Fill the "Payment Type" and credit card fields. + if ( ! empty( $payment_method ) && ! empty( $payment_method->type ) ) { + $order->payment_type = 'Stripe - ' . $payment_method->type; + if ( ! empty( $payment_method->card ) ) { + // Paid with a card, let's update order and user meta with the card info. + $order->cardtype = $payment_method->card->brand; + $order->accountnumber = hideCardNumber( $payment_method->card->last4 ); + $order->expirationmonth = $payment_method->card->exp_month; + $order->expirationyear = $payment_method->card->exp_year; + $order->ExpirationDate = $order->expirationmonth . $order->expirationyear; + $order->ExpirationDate_YdashM = $order->expirationyear . "-" . $order->expirationmonth; + } else { + $order->cardtype = ''; + $order->accountnumber = ''; + $order->expirationmonth = ''; + $order->expirationyear = ''; + $order->ExpirationDate = ''; + $order->ExpirationDate_YdashM = ''; + } + } + + // Add billing address information. + $morder->billing = new stdClass(); + $order->billing->name = empty( $payment_method->billing_details->name ) ? '' : $payment_method->billing_details->name; + $order->billing->street = empty( $payment_method->billing_details->address->line1 ) ? '' : $payment_method->billing_details->address->line1; + $order->billing->city = empty( $payment_method->billing_details->address->city ) ? '' : $payment_method->billing_details->address->city; + $order->billing->state = empty( $payment_method->billing_details->address->state ) ? '' : $payment_method->billing_details->address->state; + $order->billing->zip = empty( $payment_method->billing_details->address->postal_code ) ? '' : $payment_method->billing_details->address->postal_code; + $order->billing->country = empty( $payment_method->billing_details->address->country ) ? '' : $payment_method->billing_details->address->country; + $order->billing->phone = empty( $payment_method->billing_details->phone ) ? '' : $payment_method->billing_details->phone; + + $name_parts = empty( $payment_method->billing_details->name ) ? [] : pnp_split_full_name( $payment_method->billing_details->name ); + $order->FirstName = empty( $nameparts['fname'] ) ? '' : $nameparts['fname']; + $order->LastName = empty( $nameparts['lname'] ) ? '' : $nameparts['lname']; + $order->Email = $wpdb->get_var("SELECT user_email FROM $wpdb->users WHERE ID = '" . $order->user_id . "' LIMIT 1"); + $order->Address1 = $order->billing->street; + $order->City = $order->billing->city; + $order->State = $order->billing->state; + $order->Zip = $order->billing->zip; + $order->Country = $order->billing->country; + $order->PhoneNumber = $order->billing->phone; +} \ No newline at end of file