Paid Memberships Pro - Version 2.6.3

Version Description

  • 2021-10-11 =
  • ENHANCEMENT: Now passing "app" information to Stripe through API calls. (@dparker1005)
  • ENHANCEMENT: Updated PayPal IPN to detect messages for refunds to at least log it. (@mircobabini)
  • ENHANCEMENT: Updated PayPal IPN to differentiate between cases where the initial payment failed vs a subscription was cancelled. (@mircobabini)
  • ENHANCEMENT: Better styling of the membership levels history when empty. (@mircobabini)
  • BUG FIX/ENHANCEMENT: Now showing better error messages when license key checks fail due to connection issues. (@ideadude)
  • BUG FIX: Improved PayPal API integration to handle cases where PayPal is returning encoding errors but still processing payments and subscriptions. (@mircobabini)
  • BUG FIX: Fixed issue where the Stripe sandbox key wasn't saved properly when using Stripe connect. (@dparker1005)
  • BUG FIX: Fixed issue where a double $$ was showing up in specific emails. (@andrewlimaza)
  • BUG FIX: Fixed warnings in various webhook and IPN handlers. (@ideadude)
  • BUG FIX: Fixed warning in the admin activity email cron job. (@andrewlimaza)
Download this release

Release Info

Developer strangerstudios
Plugin Icon 128x128 Paid Memberships Pro
Version 2.6.3
Comparing to
See all releases

Code changes from version 2.6.2 to 2.6.3

Files changed (49) hide show
  1. CHANGELOG.txt +12 -0
  2. adminpages/license.php +19 -27
  3. classes/gateways/class.pmprogateway_paypalexpress.php +118 -15
  4. classes/gateways/class.pmprogateway_stripe.php +6 -0
  5. includes/email-templates.php +1 -1
  6. includes/license.php +102 -78
  7. includes/profile.php +18 -6
  8. languages/paid-memberships-pro-ca.mo +0 -0
  9. languages/paid-memberships-pro-ca.po +231 -2
  10. languages/paid-memberships-pro-ca_AD.mo +0 -0
  11. languages/paid-memberships-pro-ca_AD.po +231 -2
  12. languages/paid-memberships-pro-ca_ES.mo +0 -0
  13. languages/paid-memberships-pro-ca_ES.po +231 -2
  14. languages/paid-memberships-pro-cs_CZ.mo +0 -0
  15. languages/paid-memberships-pro-cs_CZ.po +231 -2
  16. languages/paid-memberships-pro-da_DK.mo +0 -0
  17. languages/paid-memberships-pro-da_DK.po +231 -2
  18. languages/paid-memberships-pro-de_DE.mo +0 -0
  19. languages/paid-memberships-pro-de_DE.po +231 -2
  20. languages/paid-memberships-pro-el_GR.mo +0 -0
  21. languages/paid-memberships-pro-el_GR.po +231 -2
  22. languages/paid-memberships-pro-en_GB.mo +0 -0
  23. languages/paid-memberships-pro-en_GB.po +231 -2
  24. languages/paid-memberships-pro-es_CL.mo +0 -0
  25. languages/paid-memberships-pro-es_CL.po +231 -2
  26. languages/paid-memberships-pro-es_ES.mo +0 -0
  27. languages/paid-memberships-pro-es_ES.po +231 -2
  28. languages/paid-memberships-pro-es_PE.mo +0 -0
  29. languages/paid-memberships-pro-es_PE.po +231 -2
  30. languages/paid-memberships-pro-et_EE.mo +0 -0
  31. languages/paid-memberships-pro-et_EE.po +231 -2
  32. languages/paid-memberships-pro-fa_IR.mo +0 -0
  33. languages/paid-memberships-pro-fa_IR.po +231 -2
  34. languages/paid-memberships-pro-fi.mo +0 -0
  35. languages/paid-memberships-pro-fi.po +231 -2
  36. languages/paid-memberships-pro-fr_FR.mo +0 -0
  37. languages/paid-memberships-pro-fr_FR.po +231 -2
  38. languages/paid-memberships-pro-he_IL.mo +0 -0
  39. languages/paid-memberships-pro-he_IL.po +231 -2
  40. languages/paid-memberships-pro-it_IT.mo +0 -0
  41. languages/paid-memberships-pro-it_IT.po +231 -2
  42. languages/paid-memberships-pro-nb_NO.mo +0 -0
  43. languages/paid-memberships-pro-nb_NO.po +231 -2
  44. languages/paid-memberships-pro-nl_NL.mo +0 -0
  45. languages/paid-memberships-pro-nl_NL.po +231 -2
  46. languages/paid-memberships-pro-pt_BR.mo +0 -0
  47. languages/paid-memberships-pro-pt_BR.po +231 -2
  48. languages/paid-memberships-pro-pt_PT.mo +0 -0
  49. languages/paid-memberships-pro-pt_PT.po +175 -2
CHANGELOG.txt CHANGED
@@ -1,4 +1,16 @@
1
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
2
  = 2.6.2 - 2021-09-17 =
3
  * ENHANCEMENT: Made username the first column in the members list. This helps with the mobile view. #1764 (@dparker1005)
4
  * BUG FIX/ENHANCEMENT: Will now block uninstall.php from running if an older version of PMPro is deleted from the plugins page. #1773 (@mircobabini)
1
  == Changelog ==
2
+ = 2.6.3 - 2021-10-11 =
3
+ * ENHANCEMENT: Now passing "app" information to Stripe through API calls. (@dparker1005)
4
+ * ENHANCEMENT: Updated PayPal IPN to detect messages for refunds to at least log it. (@mircobabini)
5
+ * ENHANCEMENT: Updated PayPal IPN to differentiate between cases where the initial payment failed vs a subscription was cancelled. (@mircobabini)
6
+ * ENHANCEMENT: Better styling of the membership levels history when empty. (@mircobabini)
7
+ * BUG FIX/ENHANCEMENT: Now showing better error messages when license key checks fail due to connection issues. (@ideadude)
8
+ * BUG FIX: Improved PayPal API integration to handle cases where PayPal is returning encoding errors but still processing payments and subscriptions. (@mircobabini)
9
+ * BUG FIX: Fixed issue where the Stripe sandbox key wasn't saved properly when using Stripe connect. (@dparker1005)
10
+ * BUG FIX: Fixed issue where a double $$ was showing up in specific emails. (@andrewlimaza)
11
+ * BUG FIX: Fixed warnings in various webhook and IPN handlers. (@ideadude)
12
+ * BUG FIX: Fixed warning in the admin activity email cron job. (@andrewlimaza)
13
+
14
  = 2.6.2 - 2021-09-17 =
15
  * ENHANCEMENT: Made username the first column in the members list. This helps with the mobile view. #1764 (@dparker1005)
16
  * BUG FIX/ENHANCEMENT: Will now block uninstall.php from running if an older version of PMPro is deleted from the plugins page. #1773 (@mircobabini)
adminpages/license.php CHANGED
@@ -7,35 +7,25 @@ if ( ! function_exists( 'current_user_can' ) || ( ! current_user_can( 'manage_op
7
  //updating license?
8
  if ( ! empty( $_REQUEST['pmpro-verify-submit'] ) ) {
9
  $key = preg_replace("/[^a-zA-Z0-9]/", "", $_REQUEST['pmpro-license-key']);
10
-
11
- //erase the old key
12
- delete_option('pmpro_license_key');
13
 
14
- //check key
15
- $valid = pmpro_license_isValid($key, NULL, true);
 
16
 
17
- if ( $valid ) { ?>
18
- <div id="message" class="updated fade">
19
- <p><?php _e( 'Your license key has been validated.', 'paid-memberships-pro' ); ?></p>
20
- </div>
21
- <?php } else {
22
- global $pmpro_license_error;
23
- if ( ! empty( $pmpro_license_error ) ) { ?>
24
- <div id="message" class="error">
25
- <p><?php echo $pmpro_license_error; ?></p>
26
- </div>
27
- <?php }
28
- }
29
-
30
- //update key
31
  update_option( 'pmpro_license_key', $key, 'no' );
32
- }
33
 
34
- //get saved license
35
- $key = get_option( 'pmpro_license_key', '' );
36
- $pmpro_license_check = get_option( 'pmpro_license_check', array( 'license' => false, 'enddate' => 0 ) );
 
 
 
 
 
37
 
38
- //html for license settings page
39
  if ( defined( 'PMPRO_DIR' ) ) {
40
  require_once( PMPRO_DIR . '/adminpages/admin_header.php' );
41
  } ?>
@@ -43,12 +33,14 @@ if ( defined( 'PMPRO_DIR' ) ) {
43
  <h2><?php _e('Paid Memberships Pro Support License', 'paid-memberships-pro' );?></h2>
44
 
45
  <div class="about-text">
46
- <?php if(!pmpro_license_isValid() && empty($key)) { ?>
 
 
47
  <p class="pmpro_message pmpro_error"><strong><?php _e('Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href="https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key" target="_blank">Membership Account</a>.', 'paid-memberships-pro' );?></p>
48
- <?php } elseif(!pmpro_license_isValid()) { ?>
49
  <p class="pmpro_message pmpro_error"><strong><?php _e('Your license is invalid or expired.', 'paid-memberships-pro' );?></strong> <?php _e('Visit the PMPro <a href="https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid" target="_blank">Membership Account</a> page to confirm that your account is active and to find your license key.', 'paid-memberships-pro' );?></p>
50
  <?php } else { ?>
51
- <p class="pmpro_message pmpro_success"><?php printf(__('<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site.', 'paid-memberships-pro' ), ucwords($pmpro_license_check['license']));?></p>
52
  <?php } ?>
53
 
54
  <form action="" method="post">
7
  //updating license?
8
  if ( ! empty( $_REQUEST['pmpro-verify-submit'] ) ) {
9
  $key = preg_replace("/[^a-zA-Z0-9]/", "", $_REQUEST['pmpro-license-key']);
 
 
 
10
 
11
+ // Check key.
12
+ $pmpro_license_check = pmpro_license_check_key( $key );
13
+ $r = pmpro_license_isValid( $key );
14
 
15
+ // Update key.
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  update_option( 'pmpro_license_key', $key, 'no' );
17
+ }
18
 
19
+ // Get values from options if not updating.
20
+ if ( empty( $key ) ) {
21
+ $key = get_option( 'pmpro_license_key', '' );
22
+ }
23
+
24
+ if ( empty( $pmpro_license_check ) ) {
25
+ $pmpro_license_check = get_option( 'pmpro_license_check', array( 'license' => false, 'enddate' => 0 ) );
26
+ }
27
 
28
+ // HTML for license settings page.
29
  if ( defined( 'PMPRO_DIR' ) ) {
30
  require_once( PMPRO_DIR . '/adminpages/admin_header.php' );
31
  } ?>
33
  <h2><?php _e('Paid Memberships Pro Support License', 'paid-memberships-pro' );?></h2>
34
 
35
  <div class="about-text">
36
+ <?php if ( is_wp_error( $pmpro_license_check ) ) { ?>
37
+ <p class="pmpro_message pmpro_error"><strong><?php echo esc_html( sprintf( __( 'There was an issue validating your license key: %s', 'paid-memberships-pro' ), $pmpro_license_check->get_error_message() ) );?></strong> <?php _e('Visit the PMPro <a href="https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid" target="_blank">Membership Account</a> page to confirm that your account is active and to find your license key.', 'paid-memberships-pro' );?></p>
38
+ <?php } elseif( ! pmpro_license_isValid() && empty( $key ) ) { ?>
39
  <p class="pmpro_message pmpro_error"><strong><?php _e('Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href="https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key" target="_blank">Membership Account</a>.', 'paid-memberships-pro' );?></p>
40
+ <?php } elseif( ! pmpro_license_isValid() ) { ?>
41
  <p class="pmpro_message pmpro_error"><strong><?php _e('Your license is invalid or expired.', 'paid-memberships-pro' );?></strong> <?php _e('Visit the PMPro <a href="https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid" target="_blank">Membership Account</a> page to confirm that your account is active and to find your license key.', 'paid-memberships-pro' );?></p>
42
  <?php } else { ?>
43
+ <p class="pmpro_message pmpro_success"><?php printf(__('<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site.', 'paid-memberships-pro' ), ucwords( $pmpro_license_check['license'] ) );?></p>
44
  <?php } ?>
45
 
46
  <form action="" method="post">
classes/gateways/class.pmprogateway_paypalexpress.php CHANGED
@@ -7,6 +7,16 @@
7
 
8
  class PMProGateway_paypalexpress extends PMProGateway
9
  {
 
 
 
 
 
 
 
 
 
 
10
  function __construct($gateway = NULL)
11
  {
12
  $this->gateway = $gateway;
@@ -1011,13 +1021,50 @@
1011
 
1012
  /**
1013
  * PAYPAL Function
1014
- * Send HTTP POST Request
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1015
  *
1016
  * @param string The API method name
1017
  * @param string The POST Message fields in &name=value pair format
1018
- * @return array Parsed HTTP Response body
1019
  */
1020
- function PPHttpPost($methodName_, $nvpStr_) {
1021
  global $gateway_environment;
1022
  $environment = $gateway_environment;
1023
 
@@ -1039,24 +1086,80 @@
1039
  'timeout' => 60,
1040
  'sslverify' => FALSE,
1041
  'httpversion' => '1.1',
1042
- 'body' => $nvpreq
 
 
 
 
1043
  )
1044
  );
1045
 
1046
  if ( is_wp_error( $response ) ) {
1047
- $error_message = $response->get_error_message();
1048
- die( "methodName_ failed: $error_message" );
1049
- } else {
1050
- //extract the response details
1051
- $httpParsedResponseAr = array();
1052
- parse_str(wp_remote_retrieve_body($response), $httpParsedResponseAr);
1053
-
1054
- //check for valid response
1055
- if((0 == sizeof($httpParsedResponseAr)) || !array_key_exists('ACK', $httpParsedResponseAr)) {
1056
- exit("Invalid HTTP Response for POST request($nvpreq) to $API_Endpoint.");
1057
- }
1058
  }
 
 
 
 
 
 
 
 
 
1059
 
1060
  return $httpParsedResponseAr;
1061
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1062
  }
7
 
8
  class PMProGateway_paypalexpress extends PMProGateway
9
  {
10
+ /** @var int Maximum number of request retries */
11
+ protected static $maxNetworkRetries = 5;
12
+
13
+ /** @var float Maximum delay between retries, in seconds */
14
+ protected static $maxNetworkRetryDelay = 2.0;
15
+
16
+ /** @var float Initial delay between retries, in seconds */
17
+ protected static $initialNetworkRetryDelay = 0.5;
18
+
19
+
20
  function __construct($gateway = NULL)
21
  {
22
  $this->gateway = $gateway;
1021
 
1022
  /**
1023
  * PAYPAL Function
1024
+ * Send HTTP POST Request with retries
1025
+ *
1026
+ * @param string The API method name
1027
+ * @param string The POST Message fields in &name=value pair format
1028
+ *
1029
+ * @return array Parsed HTTP Response body
1030
+ */
1031
+ function PPHttpPost( $methodName_, $nvpStr_ ) {
1032
+ // Create a UUID for this request, to enable idempotency which is supported
1033
+ // by PayPal Express even if it's legacy (thus it's not reported in the docs)
1034
+ // https://developer.paypal.com/docs/business/develop/idempotency/
1035
+ $uuid = self::RandomGenerator_uuid();
1036
+
1037
+ $numRetries = 0;
1038
+ do {
1039
+ $httpParsedResponseAr = $this->PPHttpPost_DontDieOnError( $methodName_, $nvpStr_, $uuid );
1040
+ if ( is_wp_error( $httpParsedResponseAr ) ) {
1041
+ $numRetries++;
1042
+ sleep( self::sleepTime( $numRetries ) );
1043
+ } else {
1044
+ break;
1045
+ }
1046
+ } while ( $numRetries <= self::$maxNetworkRetries );
1047
+
1048
+ // If we still have an error even with the retries, there's not much we can do.
1049
+ if ( is_wp_error( $httpParsedResponseAr ) ) {
1050
+ // exiting is never a good user experience and it's hard to debug, but we can
1051
+ // at least leave a trace in error log to make it easier to see this happening
1052
+ error_log( "Unable to complete $methodName_ request with $nvpStr_: " . $httpParsedResponseAr->get_error_message() );
1053
+ die( "Unable to complete $methodName_ request with $nvpStr_: " . $httpParsedResponseAr->get_error_message() );
1054
+ }
1055
+
1056
+ return $httpParsedResponseAr;
1057
+ }
1058
+
1059
+ /**
1060
+ * PAYPAL Function
1061
+ * Send HTTP POST Request with uuid
1062
  *
1063
  * @param string The API method name
1064
  * @param string The POST Message fields in &name=value pair format
1065
+ * @return array|\WP_Error Parsed HTTP Response body
1066
  */
1067
+ function PPHttpPost_DontDieOnError($methodName_, $nvpStr_, $uuid) {
1068
  global $gateway_environment;
1069
  $environment = $gateway_environment;
1070
 
1086
  'timeout' => 60,
1087
  'sslverify' => FALSE,
1088
  'httpversion' => '1.1',
1089
+ 'body' => $nvpreq,
1090
+ 'headers' => array(
1091
+ 'content-type' => 'application/json',
1092
+ 'PayPal-Request-Id' => $uuid,
1093
+ ),
1094
  )
1095
  );
1096
 
1097
  if ( is_wp_error( $response ) ) {
1098
+ return $response;
 
 
 
 
 
 
 
 
 
 
1099
  }
1100
+
1101
+ //extract the response details
1102
+ $httpParsedResponseAr = array();
1103
+ parse_str(wp_remote_retrieve_body($response), $httpParsedResponseAr);
1104
+
1105
+ //check for valid response
1106
+ if((0 == sizeof($httpParsedResponseAr)) || !array_key_exists('ACK', $httpParsedResponseAr)) {
1107
+ return new WP_Error( 1, "Invalid HTTP Response for POST request($nvpreq) to $API_Endpoint." );
1108
+ }
1109
 
1110
  return $httpParsedResponseAr;
1111
  }
1112
+
1113
+ /**
1114
+ * Provides the number of seconds to wait before retrying a request.
1115
+ * Inspired by Stripe\HttpClient\CurlClient::sleepTime
1116
+ *
1117
+ * @param int $numRetries
1118
+ *
1119
+ * @return int
1120
+ */
1121
+ public static function sleepTime( $numRetries ) {
1122
+ // Apply exponential backoff with $initialNetworkRetryDelay on the
1123
+ // number of $numRetries so far as inputs. Do not allow the number to exceed
1124
+ // $maxNetworkRetryDelay.
1125
+ $sleepSeconds = \min(
1126
+ self::$maxNetworkRetryDelay * 1.0 * 2 ** ( $numRetries - 1 ),
1127
+ self::$maxNetworkRetryDelay
1128
+ );
1129
+
1130
+ // Apply some jitter by randomizing the value in the range of
1131
+ // ($sleepSeconds / 2) to ($sleepSeconds).
1132
+ $sleepSeconds *= 0.5 * ( 1 + self::randFloat() );
1133
+
1134
+ // But never sleep less than the base sleep seconds.
1135
+ $sleepSeconds = \max( self::$initialNetworkRetryDelay, $sleepSeconds );
1136
+
1137
+ return $sleepSeconds;
1138
+ }
1139
+
1140
+ /**
1141
+ * Returns a random value between 0 and $max.
1142
+ * From Stripe\Util\RandomGenerator::randFloat()
1143
+ *
1144
+ * @param float $max (optional)
1145
+ *
1146
+ * @return float
1147
+ */
1148
+ public static function randFloat( $max = 1.0 ) {
1149
+ return \mt_rand() / \mt_getrandmax() * $max;
1150
+ }
1151
+
1152
+ /**
1153
+ * Returns a v4 UUID.
1154
+ * From Stripe\Util\RandomGenerator::uuid()
1155
+ *
1156
+ * @return string
1157
+ */
1158
+ public static function RandomGenerator_uuid() {
1159
+ $arr = \array_values( \unpack( 'N1a/n4b/N1c', \openssl_random_pseudo_bytes( 16 ) ) );
1160
+ $arr[2] = ( $arr[2] & 0x0fff ) | 0x4000;
1161
+ $arr[3] = ( $arr[3] & 0x3fff ) | 0x8000;
1162
+
1163
+ return \vsprintf( '%08x-%04x-%04x-%04x-%04x%08x', $arr );
1164
+ }
1165
  }
classes/gateways/class.pmprogateway_stripe.php CHANGED
@@ -53,6 +53,12 @@ class PMProGateway_stripe extends PMProGateway {
53
  $this->loadStripeLibrary();
54
  Stripe\Stripe::setApiKey( self::get_secretkey() );
55
  Stripe\Stripe::setAPIVersion( PMPRO_STRIPE_API_VERSION );
 
 
 
 
 
 
56
  self::$is_loaded = true;
57
  }
58
 
53
  $this->loadStripeLibrary();
54
  Stripe\Stripe::setApiKey( self::get_secretkey() );
55
  Stripe\Stripe::setAPIVersion( PMPRO_STRIPE_API_VERSION );
56
+ Stripe\Stripe::setAppInfo(
57
+ 'WordPress Paid Memberships Pro',
58
+ PMPRO_VERSION,
59
+ 'https://www.paidmembershipspro.com',
60
+ 'pp_partner_DKlIQ5DD7SFW3A'
61
+ );
62
  self::$is_loaded = true;
63
  }
64
 
includes/email-templates.php CHANGED
@@ -182,7 +182,7 @@ $pmpro_email_templates_defaults = array(
182
 
183
  <p>
184
  Invoice #!!invoice_id!! on !!invoice_date!!<br />
185
- Total Billed: $!!invoice_total!!
186
  </p>
187
 
188
  <p>Log in to your membership account here: !!login_url!!</p>', 'paid-memberships-pro' ),
182
 
183
  <p>
184
  Invoice #!!invoice_id!! on !!invoice_date!!<br />
185
+ Total Billed: !!invoice_total!!
186
  </p>
187
 
188
  <p>Log in to your membership account here: !!login_url!!</p>', 'paid-memberships-pro' ),
includes/license.php CHANGED
@@ -25,39 +25,56 @@
25
  */
26
  define('PMPRO_LICENSE_SERVER', 'https://license.paidmembershipspro.com/');
27
 
28
- /*
29
- Check license.
30
- */
 
 
 
 
31
  function pmpro_license_isValid($key = NULL, $type = NULL, $force = false) {
32
- //check cache first
33
- $pmpro_license_check = get_option('pmpro_license_check', false);
34
- if(empty($force) && $pmpro_license_check !== false && $pmpro_license_check['enddate'] > current_time('timestamp'))
35
- {
36
- if(empty($type))
37
- return true;
38
- elseif($type == $pmpro_license_check['license'])
39
- return true;
40
- else
41
- return false;
42
- }
43
-
44
- //get key and site url
45
- if(empty($key))
46
  $key = get_option("pmpro_license_key", "");
47
-
48
- //no key
49
- if(!empty($key))
50
- {
51
- return pmpro_license_check_key($key);
52
  }
53
- else
54
- {
55
- //no key
56
  delete_option('pmpro_license_check');
57
  add_option('pmpro_license_check', array('license'=>false, 'enddate'=>0), NULL, 'no');
 
 
58
 
 
 
 
 
 
 
 
 
 
 
59
  return false;
60
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  }
62
 
63
  /*
@@ -75,64 +92,71 @@ function pmpro_license_deactivation() {
75
  }
76
  register_deactivation_hook(__FILE__, 'pmpro_deactivation');
77
 
78
- //check keys with PMPro once a month
 
 
 
 
 
 
79
  function pmpro_license_check_key($key = NULL) {
80
- //get key
81
- if(empty($key))
82
- $key = get_option('pmpro_license_key');
83
 
84
- //key? check with server
85
- if(!empty($key))
86
- {
87
- //check license server
88
- $url = add_query_arg(array('license'=>$key, 'domain'=>site_url()), PMPRO_LICENSE_SERVER);
89
-
90
- /**
91
- * Filter to change the timeout for this wp_remote_get() request.
92
- *
93
- * @since 1.8.5.1
94
- *
95
- * @param int $timeout The number of seconds before the request times out
96
- */
97
- $timeout = apply_filters("pmpro_license_check_key_timeout", 5);
 
 
 
 
98
 
99
- $r = wp_remote_get($url, array("timeout" => $timeout));
 
100
 
101
- //test response
102
- if(is_wp_error($r)) {
103
- //error
104
- pmpro_setMessage("Could not connect to the PMPro License Server to check key Try again later.", "error");
105
- }
106
- elseif(!empty($r) && $r['response']['code'] == 200)
107
- {
108
- $r = json_decode($r['body']);
109
-
110
- if($r->active == 1)
111
- {
112
- //valid key save enddate
113
- if(!empty($r->enddate))
114
- $enddate = strtotime($r->enddate, current_time('timestamp'));
115
- else
116
- $enddate = strtotime("+1 Year", current_time("timestamp"));
117
-
118
- delete_option('pmpro_license_check');
119
- add_option('pmpro_license_check', array('license'=>$r->license, 'enddate'=>$enddate), NULL, 'no');
120
- return true;
121
- }
122
- elseif(!empty($r->error))
123
- {
124
- //invalid key
125
- global $pmpro_license_error;
126
- $pmpro_license_error = $r->error;
127
-
128
- delete_option('pmpro_license_check');
129
- add_option('pmpro_license_check', array('license'=>false, 'enddate'=>0), NULL, 'no');
130
-
131
- }
132
- }
133
  }
 
 
 
 
 
 
 
 
 
 
134
 
135
- //no key or there was an error
136
- return false;
 
 
 
 
 
 
 
 
 
 
 
137
  }
138
  add_action('pmpro_license_check_key', 'pmpro_license_check_key');
25
  */
26
  define('PMPRO_LICENSE_SERVER', 'https://license.paidmembershipspro.com/');
27
 
28
+ /**
29
+ * Check if a license key is valid.
30
+ * @param string $key The key to check.
31
+ * @param string $type If passed will also check that the key is this type.
32
+ * @param bool $force If true, will check key against the PMPro server.
33
+ * @return bool True if valid, false if not.
34
+ */
35
  function pmpro_license_isValid($key = NULL, $type = NULL, $force = false) {
36
+ // Get key from options if non passed in.
37
+ if( empty( $key ) ) {
 
 
 
 
 
 
 
 
 
 
 
 
38
  $key = get_option("pmpro_license_key", "");
 
 
 
 
 
39
  }
40
+
41
+ // No key? Clean up options and return false.
42
+ if ( empty( $key ) ) {
43
  delete_option('pmpro_license_check');
44
  add_option('pmpro_license_check', array('license'=>false, 'enddate'=>0), NULL, 'no');
45
+ return false;
46
+ }
47
 
48
+ // If force was passed in, let's check with the server.
49
+ if ( $force ) {
50
+ $pmpro_license_check = pmpro_license_check_key( $key );
51
+ }
52
+
53
+ // Get license check value from options.
54
+ $pmpro_license_check = get_option( 'pmpro_license_check', false );
55
+
56
+ // No license info from server?
57
+ if ( empty( $pmpro_license_check ) ) {
58
  return false;
59
  }
60
+
61
+ // Server check errored out?
62
+ if ( is_wp_error( $pmpro_license_check ) ) {
63
+ return false;
64
+ }
65
+
66
+ // Check if 30 days past the end date. (We only run the cron every 30 days.)
67
+ if ( $pmpro_license_check['enddate'] < ( current_time( 'timestamp' ) + 86400*31 ) ) {
68
+ return false;
69
+ }
70
+
71
+ // Check if a specific type.
72
+ if ( ! empty( $type ) && $type != $pmpro_license_check['license'] ) {
73
+ return false;
74
+ }
75
+
76
+ // If we got here, we should be good.
77
+ return true;
78
  }
79
 
80
  /*
92
  }
93
  register_deactivation_hook(__FILE__, 'pmpro_deactivation');
94
 
95
+ /**
96
+ * Check a key against the PMPro license server.
97
+ * Runs via cron every month.
98
+ * @param string The key to check.
99
+ * @return array|WP_Error Returns an array with the key and enddate
100
+ * or WP_Error if invalid or there was an error.
101
+ */
102
  function pmpro_license_check_key($key = NULL) {
103
+ global $pmpro_license_error;
 
 
104
 
105
+ // Get key from options if non passed in.
106
+ if( empty( $key ) ) {
107
+ $key = get_option("pmpro_license_key", "");
108
+ }
109
+
110
+ // No key? Return error.
111
+ if ( empty ( $key ) ) {
112
+ return new WP_Error ( 'no_key', __( 'Missing key.', 'paid-memberships-pro' ) );
113
+ }
114
+
115
+ /**
116
+ * Filter to change the timeout for this wp_remote_get() request.
117
+ *
118
+ * @since 1.8.5.1
119
+ *
120
+ * @param int $timeout The number of seconds before the request times out
121
+ */
122
+ $timeout = apply_filters( 'pmpro_license_check_key_timeout', 5 );
123
 
124
+ $url = add_query_arg(array('license'=>$key, 'domain'=>site_url()), PMPRO_LICENSE_SERVER);
125
+ $r = wp_remote_get( $url, array( "timeout" => $timeout ) );
126
 
127
+ // Trouble connecting?
128
+ if( is_wp_error( $r ) ) {
129
+ // Connection error.
130
+ return new WP_Error( 'connection_error', $r->get_error_message() );
131
+ }
132
+
133
+ // Bad response code?
134
+ if ( $r['response']['code'] !== 200 ) {
135
+ return new WP_Error( 'bad_response_code', __( sprintf( 'Bad response code %s.', 'paid-memberships-pro' ), $r['response']['code'] ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
136
  }
137
+
138
+ // Process the response.
139
+ $r = json_decode($r['body']);
140
+ if( $r->active == 1 ) {
141
+ // Get end date. If none, let's set it 1 year out.
142
+ if( ! empty( $r->enddate ) ) {
143
+ $enddate = strtotime( $r->enddate, current_time( 'timestamp' ) );
144
+ } else {
145
+ $enddate = strtotime( '+1 Year', current_time( 'timestamp' ) );
146
+ }
147
 
148
+ $license_check = array( 'license' => $r->license, 'enddate' => $enddate );
149
+ update_option( 'pmpro_license_check', $license_check, 'no' );
150
+
151
+ return $license_check;
152
+ } elseif ( ! empty( $r->error ) ) {
153
+ // Invalid key. Let's clear out the option.
154
+ update_option( 'pmpro_license_check', array('license'=>false, 'enddate'=>0), 'no' );
155
+
156
+ return new WP_Error( 'invalid_key', $r->error );
157
+ } else {
158
+ // Unknown error. We should maybe clear out the option, but we're not.
159
+ return new WP_Error( 'unknown_error', __( 'Unknown error.', 'paid-memberships-pro' ) );
160
+ }
161
  }
162
  add_action('pmpro_license_check_key', 'pmpro_license_check_key');
includes/profile.php CHANGED
@@ -481,9 +481,15 @@ function pmpro_membership_history_profile_fields( $user ) {
481
  ?>
482
  </tbody>
483
  </table>
484
- <?php } else {
485
- esc_html_e( 'No membership orders found.', 'paid-memberships-pro' );
486
- } ?>
 
 
 
 
 
 
487
  </div>
488
  <div id="member-history-memberships" class="widgets-holder-wrap" style="display: none;">
489
  <?php if ( $levelshistory ) { ?>
@@ -533,9 +539,15 @@ function pmpro_membership_history_profile_fields( $user ) {
533
  ?>
534
  </tbody>
535
  </table>
536
- <?php } else {
537
- esc_html_e( 'No membership history found.', 'paid-memberships-pro');
538
- } ?>
 
 
 
 
 
 
539
  </div>
540
  <script>
541
  //tabs
481
  ?>
482
  </tbody>
483
  </table>
484
+ <?php } else { ?>
485
+ <table class="wp-list-table widefat striped fixed" width="100%" cellpadding="0" cellspacing="0" border="0">
486
+ <tbody>
487
+ <tr>
488
+ <td><?php esc_html_e( 'No membership orders found.', 'paid-memberships-pro' ); ?></td>
489
+ </tr>
490
+ </tbody>
491
+ </table>
492
+ <?php } ?>
493
  </div>
494
  <div id="member-history-memberships" class="widgets-holder-wrap" style="display: none;">
495
  <?php if ( $levelshistory ) { ?>
539
  ?>
540
  </tbody>
541
  </table>
542
+ <?php } else { ?>
543
+ <table class="wp-list-table widefat striped fixed" width="100%" cellpadding="0" cellspacing="0" border="0">
544
+ <tbody>
545
+ <tr>
546
+ <td><?php esc_html_e( 'No membership history found.', 'paid-memberships-pro'); ?></td>
547
+ </tr>
548
+ </tbody>
549
+ </table>
550
+ <?php } ?>
551
  </div>
552
  <script>
553
  //tabs
languages/paid-memberships-pro-ca.mo CHANGED
Binary file
languages/paid-memberships-pro-ca.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.2\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-09-17T13:56:47+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -261,6 +261,9 @@ msgstr "WordPress.org"
261
  #: adminpages/orders.php:1544
262
  #: adminpages/orders.php:1554
263
  #: adminpages/orders.php:1553
 
 
 
264
  msgid "N/A"
265
  msgstr "N/A"
266
 
@@ -444,6 +447,7 @@ msgstr "Passarela de pagament (Payment Gateway) &amp; SSL"
444
  #: adminpages/orders.php:391
445
  #: adminpages/orders.php:1445
446
  #: adminpages/orders.php:1448
 
447
  msgid "Email"
448
  msgstr "Correu electrònic"
449
 
@@ -632,6 +636,8 @@ msgstr "Amaga els anuncis als subscriptors?"
632
  #: adminpages/advancedsettings.php:479
633
  #: classes/gateways/class.pmprogateway_stripe.php:634
634
  #: classes/gateways/class.pmprogateway_stripe.php:648
 
 
635
  msgid "No"
636
  msgstr "No"
637
 
@@ -730,6 +736,8 @@ msgstr "només “multisite”"
730
  #: adminpages/advancedsettings.php:397
731
  #: classes/gateways/class.pmprogateway_stripe.php:636
732
  #: classes/gateways/class.pmprogateway_stripe.php:650
 
 
733
  msgid "Yes"
734
  msgstr "Sí"
735
 
@@ -1012,6 +1020,7 @@ msgstr "Codi"
1012
  #: includes/privacy.php:186
1013
  #: includes/profile.php:495
1014
  #: adminpages/discountcodes.php:489
 
1015
  msgid "Start Date"
1016
  msgstr "Data d’inici"
1017
 
@@ -1046,6 +1055,7 @@ msgstr "Data d’inici"
1046
  #: classes/gateways/class.pmprogateway_stripe.php:1301
1047
  #: adminpages/discountcodes.php:507
1048
  #: classes/gateways/class.pmprogateway_stripe.php:1320
 
1049
  msgid "Expiration Date"
1050
  msgstr "Data final (d’expiració)"
1051
 
@@ -1185,6 +1195,7 @@ msgstr "Total a facturar"
1185
  #: adminpages/discountcodes.php:612
1186
  #: adminpages/discountcodes.php:699
1187
  #: classes/gateways/class.pmprogateway_stripe.php:1363
 
1188
  msgid "Day(s)"
1189
  msgstr "Dia(es)"
1190
 
@@ -1218,6 +1229,7 @@ msgstr "Dia(es)"
1218
  #: adminpages/discountcodes.php:612
1219
  #: adminpages/discountcodes.php:699
1220
  #: classes/gateways/class.pmprogateway_stripe.php:1365
 
1221
  msgid "Month(s)"
1222
  msgstr "Mes(os)"
1223
 
@@ -1251,6 +1263,7 @@ msgstr "Mes(os)"
1251
  #: adminpages/discountcodes.php:612
1252
  #: adminpages/discountcodes.php:699
1253
  #: classes/gateways/class.pmprogateway_stripe.php:1364
 
1254
  msgid "Week(s)"
1255
  msgstr "Setmana(es)"
1256
 
@@ -1284,6 +1297,7 @@ msgstr "Setmana(es)"
1284
  #: adminpages/discountcodes.php:612
1285
  #: adminpages/discountcodes.php:699
1286
  #: classes/gateways/class.pmprogateway_stripe.php:1366
 
1287
  msgid "Year(s)"
1288
  msgstr "Any(s)"
1289
 
@@ -1882,6 +1896,7 @@ msgstr "Detalls de facturació"
1882
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1883
  #: adminpages/discountcodes.php:608
1884
  #: classes/gateways/class.pmprogateway_stripe.php:1497
 
1885
  msgid "per"
1886
  msgstr "per"
1887
 
@@ -2097,6 +2112,8 @@ msgstr "Salva nivell"
2097
  #: pages/cancel.php:96
2098
  #: shortcodes/pmpro_account.php:106
2099
  #: adminpages/orders.php:968
 
 
2100
  msgid "Cancel"
2101
  msgstr "Cancel·la"
2102
 
@@ -2773,6 +2790,7 @@ msgstr "Per exemple PayPal Express, PayPal Standard, Tarja de crèdit"
2773
  #: adminpages/orders.php:679
2774
  #: classes/gateways/class.pmprogateway_stripe.php:1284
2775
  #: classes/gateways/class.pmprogateway_stripe.php:1303
 
2776
  msgid "Card Type"
2777
  msgstr "Tipus de targeta"
2778
 
@@ -2853,6 +2871,7 @@ msgstr "Any de finalització/expiració"
2853
  #: adminpages/dashboard.php:294
2854
  #: adminpages/orders.php:742
2855
  #: adminpages/orders.php:1348
 
2856
  msgid "Status"
2857
  msgstr "Estat"
2858
 
@@ -4274,6 +4293,7 @@ msgstr "Confirmació per a la seva subscripció %s"
4274
  #: classes/class.pmproemail.php:769
4275
  #: classes/class.pmproemail.php:771
4276
  #: classes/gateways/class.pmprogateway_stripe.php:1333
 
4277
  msgid "Discount Code"
4278
  msgstr "Codi de descompte"
4279
 
@@ -4729,6 +4749,7 @@ msgstr "Per integrar totalment Braintree, assegura’t de configurar Web Hook UR
4729
  #: pages/checkout.php:366
4730
  #: classes/gateways/class.pmprogateway_stripe.php:1263
4731
  #: classes/gateways/class.pmprogateway_stripe.php:1282
 
4732
  msgid "Payment Information"
4733
  msgstr "Informació de pagament"
4734
 
@@ -4753,6 +4774,7 @@ msgstr "Informació de pagament"
4753
  #: pages/checkout.php:367
4754
  #: classes/gateways/class.pmprogateway_stripe.php:1264
4755
  #: classes/gateways/class.pmprogateway_stripe.php:1283
 
4756
  #, php-format
4757
  msgid "We Accept %s"
4758
  msgstr "Acceptem %s"
@@ -4783,6 +4805,7 @@ msgstr "Acceptem %s"
4783
  #: pages/checkout.php:389
4784
  #: classes/gateways/class.pmprogateway_stripe.php:1297
4785
  #: classes/gateways/class.pmprogateway_stripe.php:1316
 
4786
  msgid "Card Number"
4787
  msgstr "Nombre de Tarjeta"
4788
 
@@ -4864,6 +4887,7 @@ msgstr "què és això?"
4864
  #: pages/checkout.php:432
4865
  #: classes/gateways/class.pmprogateway_stripe.php:1319
4866
  #: classes/gateways/class.pmprogateway_stripe.php:1338
 
4867
  msgid "Apply"
4868
  msgstr "Aplica"
4869
 
@@ -5114,6 +5138,7 @@ msgstr "PayPal Website Payments Pro"
5114
  #: classes/gateways/class.pmprogateway_paypal.php:132
5115
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
5116
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
 
5117
  msgid "PayPal Settings"
5118
  msgstr "Configuració PayPal"
5119
 
@@ -5135,6 +5160,7 @@ msgstr "No recomanem utilitzar PayPal Standard. Us recomanem que utilitzeu PayPa
5135
  #: classes/gateways/class.pmprogateway_paypal.php:153
5136
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
5137
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
 
5138
  msgid "Gateway Account Email"
5139
  msgstr "Correu electrònic del compte de la Passarel·la"
5140
 
@@ -5154,6 +5180,7 @@ msgstr "Correu electrònic del compte de la Passarel·la"
5154
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
5155
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
5156
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
 
5157
  msgid "API Username"
5158
  msgstr "API Usuari"
5159
 
@@ -5173,6 +5200,7 @@ msgstr "API Usuari"
5173
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
5174
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
5175
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
 
5176
  msgid "API Password"
5177
  msgstr "API Clau"
5178
 
@@ -5186,6 +5214,7 @@ msgstr "API Clau"
5186
  #: classes/gateways/class.pmprogateway_paypal.php:177
5187
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
5188
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
 
5189
  msgid "API Signature"
5190
  msgstr "API Signatura"
5191
 
@@ -5200,6 +5229,7 @@ msgstr "API Signatura"
5200
  #: classes/gateways/class.pmprogateway_paypal.php:196
5201
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
5202
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
 
5203
  msgid "IPN Handler URL"
5204
  msgstr "IPN Handler URL"
5205
 
@@ -5225,6 +5255,7 @@ msgstr "Aquesta URL passa a PayPal per a tots els nous càrrecs i subscripcions.
5225
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
5226
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
5227
  #: pages/checkout.php:218
 
5228
  msgid "Check Out with PayPal"
5229
  msgstr "Check Out amb PayPal"
5230
 
@@ -5244,6 +5275,7 @@ msgstr "Check Out amb PayPal"
5244
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
5245
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5246
  #: pages/checkout.php:526
 
5247
  msgid "Submit and Check Out"
5248
  msgstr "Envia i fés el Check Out"
5249
 
@@ -5267,6 +5299,7 @@ msgstr "Envia i fés el Check Out"
5267
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5268
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
5269
  #: pages/checkout.php:526
 
5270
  msgid "Submit and Confirm"
5271
  msgstr "Envia i confirma"
5272
 
@@ -5288,6 +5321,7 @@ msgstr "Envia i confirma"
5288
  #: classes/gateways/class.pmprogateway_paypal.php:716
5289
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
5290
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
 
5291
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
5292
  msgstr "Contacteu al propietari del lloc o cancel·leu la vostra subscripció de PayPal per assegurar-te que no et cobraran en el futur."
5293
 
@@ -5301,6 +5335,7 @@ msgstr "Contacteu al propietari del lloc o cancel·leu la vostra subscripció de
5301
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
5302
  #: paid-memberships-pro.php:160
5303
  #: paid-memberships-pro.php:162
 
5304
  msgid "PayPal Express"
5305
  msgstr "PayPal Express"
5306
 
@@ -5312,6 +5347,7 @@ msgstr "PayPal Express"
5312
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
5313
  #: classes/gateways/class.pmprogateway_paypal.php:199
5314
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
 
5315
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
5316
  msgstr "Per integrar completament PayPal, assegura’t de configurar el teu IPN Handler URL a"
5317
 
@@ -5333,6 +5369,8 @@ msgstr "Per integrar completament PayPal, assegura’t de configurar el teu IPN
5333
  #: preheaders/checkout.php:823
5334
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
5335
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
 
 
5336
  msgid "The PayPal Token was lost."
5337
  msgstr "S’ha perdut el Token de PayPal"
5338
 
@@ -5370,6 +5408,7 @@ msgstr "El/la %s de la passarela depèn de %s PHP extensió. Si us plau habilita
5370
  #: classes/gateways/class.pmprogateway_stripe.php:252
5371
  #: paid-memberships-pro.php:159
5372
  #: paid-memberships-pro.php:161
 
5373
  msgid "Stripe"
5374
  msgstr "Stripe"
5375
 
@@ -5390,6 +5429,7 @@ msgstr "Configuració d’Stripe"
5390
  #: classes/gateways/class.pmprogateway_stripe.php:539
5391
  #: classes/gateways/class.pmprogateway_stripe.php:551
5392
  #: classes/gateways/class.pmprogateway_stripe.php:570
 
5393
  msgid "Secret Key"
5394
  msgstr "Secret Key"
5395
 
@@ -5403,6 +5443,7 @@ msgstr "Secret Key"
5403
  #: classes/gateways/class.pmprogateway_stripe.php:523
5404
  #: classes/gateways/class.pmprogateway_stripe.php:535
5405
  #: classes/gateways/class.pmprogateway_stripe.php:554
 
5406
  msgid "Publishable Key"
5407
  msgstr "Clau Publicable"
5408
 
@@ -5416,6 +5457,7 @@ msgstr "Clau Publicable"
5416
  #: classes/gateways/class.pmprogateway_stripe.php:598
5417
  #: classes/gateways/class.pmprogateway_stripe.php:610
5418
  #: classes/gateways/class.pmprogateway_stripe.php:629
 
5419
  msgid "Show Billing Address Fields"
5420
  msgstr "Mostra els camps d’adreça de facturació"
5421
 
@@ -5428,6 +5470,7 @@ msgstr "Mostra els camps d’adreça de facturació"
5428
  #: classes/gateways/class.pmprogateway_stripe.php:607
5429
  #: classes/gateways/class.pmprogateway_stripe.php:619
5430
  #: classes/gateways/class.pmprogateway_stripe.php:638
 
5431
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
5432
  msgstr "Stripe no necessita camps d’adreça de facturació. Escull “No” per amagar-los de la pàgina de Checkout.<br /><strong>Si No, assegura’t de desabilitar la verificació de l’adreça a l’escripori de configuració de l’Stripe.</strong>"
5433
 
@@ -5450,6 +5493,7 @@ msgstr "Per integrar totalment l’Stripe, assegura’t de configurar el teu Web
5450
  #: classes/gateways/class.pmprogateway_stripe.php:1379
5451
  #: classes/gateways/class.pmprogateway_stripe.php:1391
5452
  #: classes/gateways/class.pmprogateway_stripe.php:1410
 
5453
  msgid "Subscription Updates"
5454
  msgstr "Actualització de subscripcions"
5455
 
@@ -5461,6 +5505,7 @@ msgstr "Actualització de subscripcions"
5461
  #: classes/gateways/class.pmprogateway_stripe.php:1383
5462
  #: classes/gateways/class.pmprogateway_stripe.php:1395
5463
  #: classes/gateways/class.pmprogateway_stripe.php:1414
 
5464
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
5465
  msgstr "Actualització de subscripcions, et permet canviar el valor subscripció dels membres en un moment determinat. Assegura’t de clicar Actualitza Perfil després de fer els canvis."
5466
 
@@ -5472,6 +5517,7 @@ msgstr "Actualització de subscripcions, et permet canviar el valor subscripció
5472
  #: classes/gateways/class.pmprogateway_stripe.php:1385
5473
  #: classes/gateways/class.pmprogateway_stripe.php:1397
5474
  #: classes/gateways/class.pmprogateway_stripe.php:1416
 
5475
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
5476
  msgstr "Actualització de subscripcions, et permet canviar el valor subscripció dels membres en un moment determinat. Assegura’t de clicar Actualitza Usuari després de fer els canvis."
5477
 
@@ -5490,6 +5536,7 @@ msgstr "Actualització de subscripcions, et permet canviar el valor subscripció
5490
  #: pages/billing.php:425
5491
  #: classes/gateways/class.pmprogateway_stripe.php:1403
5492
  #: classes/gateways/class.pmprogateway_stripe.php:1422
 
5493
  msgid "Update"
5494
  msgstr "Actualitza"
5495
 
@@ -5501,6 +5548,7 @@ msgstr "Actualitza"
5501
  #: classes/gateways/class.pmprogateway_stripe.php:2480
5502
  #: classes/gateways/class.pmprogateway_stripe.php:2492
5503
  #: classes/gateways/class.pmprogateway_stripe.php:2514
 
5504
  msgid "Could not cancel the old subscription. Updates have not been processed."
5505
  msgstr "No s’ha pogut cancel·lar l’antiga subscripció. Les actualitzacions no s’han processat."
5506
 
@@ -5525,6 +5573,9 @@ msgstr "No s’ha pogut cancel·lar l’antiga subscripció. Les actualitzacions
5525
  #: classes/gateways/class.pmprogateway_stripe.php:2127
5526
  #: classes/gateways/class.pmprogateway_stripe.php:2132
5527
  #: classes/gateways/class.pmprogateway_stripe.php:2137
 
 
 
5528
  msgid "Error creating customer record with Stripe:"
5529
  msgstr "Error creant un registre d’usuari amb Stripe:"
5530
 
@@ -5536,6 +5587,8 @@ msgstr "Error creant un registre d’usuari amb Stripe:"
5536
  #: classes/gateways/class.pmprogateway_stripe.php:2182
5537
  #: classes/gateways/class.pmprogateway_stripe.php:2196
5538
  #: classes/gateways/class.pmprogateway_stripe.php:2201
 
 
5539
  msgid "Error getting subscription with Stripe:"
5540
  msgstr "Error agafant la subscripció amb Stripe:"
5541
 
@@ -5565,6 +5618,8 @@ msgstr "Error agafant la subscripció amb Stripe:"
5565
  #: classes/gateways/class.pmprogateway_stripe.php:2356
5566
  #: classes/gateways/class.pmprogateway_stripe.php:2373
5567
  #: classes/gateways/class.pmprogateway_stripe.php:2378
 
 
5568
  msgid "Error creating plan with Stripe:"
5569
  msgstr "Error creant pla amb Stripe:"
5570
 
@@ -5589,6 +5644,8 @@ msgstr "Error creant pla amb Stripe:"
5589
  #: classes/gateways/class.pmprogateway_stripe.php:2401
5590
  #: classes/gateways/class.pmprogateway_stripe.php:2409
5591
  #: classes/gateways/class.pmprogateway_stripe.php:2423
 
 
5592
  msgid "Error subscribing customer to plan with Stripe:"
5593
  msgstr "Error subscrivint un pla de comprador amb Stripe:"
5594
 
@@ -5607,6 +5664,7 @@ msgstr "Error subscrivint un pla de comprador amb Stripe:"
5607
  #: classes/gateways/class.pmprogateway_stripe.php:2632
5608
  #: classes/gateways/class.pmprogateway_stripe.php:2644
5609
  #: classes/gateways/class.pmprogateway_stripe.php:2666
 
5610
  msgid "Could not cancel old subscription."
5611
  msgstr "No s’ha pogut cancel·lar l’antiga subscripció. "
5612
 
@@ -5622,6 +5680,7 @@ msgstr "No s’ha pogut cancel·lar l’antiga subscripció. "
5622
  #: classes/gateways/class.pmprogateway_stripe.php:2648
5623
  #: classes/gateways/class.pmprogateway_stripe.php:2660
5624
  #: classes/gateways/class.pmprogateway_stripe.php:2682
 
5625
  msgid "Could not find the customer."
5626
  msgstr "No s’ha trobat el comprador."
5627
 
@@ -6690,6 +6749,7 @@ msgstr "La teva clau (license key) ha estat validada."
6690
 
6691
  #: includes/license.php:81
6692
  #: adminpages/license.php:43
 
6693
  msgid "Paid Memberships Pro Support License"
6694
  msgstr "Paid Memberships Pro Support License"
6695
 
@@ -6709,6 +6769,7 @@ msgstr "Visita PMPro <a href=\"http://www.paidmembershipspro.com/login/?redirect
6709
  #: adminpages/dashboard.php:174
6710
  #: adminpages/license.php:49
6711
  #: adminpages/dashboard.php:178
 
6712
  msgid "Your license is invalid or expired."
6713
  msgstr "La teva license és invalida o ha expirat"
6714
 
@@ -6719,6 +6780,7 @@ msgstr "<p><strong>Moltes gràcies!</strong> A valid <strong>%s</strong> license
6719
 
6720
  #: includes/license.php:100
6721
  #: adminpages/license.php:59
 
6722
  msgid "Enter license key here..."
6723
  msgstr "Introdueix license key aquí"
6724
 
@@ -6921,6 +6983,7 @@ msgstr "logout"
6921
  #: adminpages/dashboard.php:224
6922
  #: adminpages/dashboard.php:292
6923
  #: adminpages/orders.php:1343
 
6924
  msgid "Level"
6925
  msgstr "Nivell"
6926
 
@@ -6979,6 +7042,7 @@ msgstr "El pagament de la teva subscripció és gestionat per PayPal. Si us plau
6979
  #: includes/profile.php:747
6980
  #: pages/billing.php:164
6981
  #: pages/checkout.php:234
 
6982
  msgid "First Name"
6983
  msgstr "Nom"
6984
 
@@ -6996,6 +7060,7 @@ msgstr "Nom"
6996
  #: includes/profile.php:748
6997
  #: pages/billing.php:168
6998
  #: pages/checkout.php:238
 
6999
  msgid "Last Name"
7000
  msgstr "Cognoms"
7001
 
@@ -8072,6 +8137,7 @@ msgstr "El codi <strong>%s</strong> s’ha aplicat a la teva comanda."
8072
  #: services/authnet-silent-post.php:138
8073
  #: services/authnet-silent-post.php:141
8074
  #: services/authnet-silent-post.php:173
 
8075
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
8076
  msgstr "<p>Un pagament s’està revisant a Authorize.net.</p><p>Payment Information From Authorize.net"
8077
 
@@ -8138,6 +8204,8 @@ msgstr "Edita el perfil"
8138
  #: includes/profile.php:872
8139
  #: includes/profile.php:909
8140
  #: shortcodes/pmpro_account.php:195
 
 
8141
  msgid "Change Password"
8142
  msgstr "Canvia Clau"
8143
 
@@ -8233,6 +8301,7 @@ msgstr "cada"
8233
  #: adminpages/advancedsettings.php:316
8234
  #: includes/privacy.php:175
8235
  #: includes/profile.php:509
 
8236
  msgid "Never"
8237
  msgstr "Mai"
8238
 
@@ -8570,6 +8639,7 @@ msgstr ""
8570
 
8571
  #: adminpages/admin_header.php:152
8572
  #: classes/gateways/class.pmprogateway_stripe.php:76
 
8573
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
8574
  msgstr ""
8575
 
@@ -8842,6 +8912,7 @@ msgstr ""
8842
  #: adminpages/dashboard.php:177
8843
  #: adminpages/license.php:51
8844
  #: adminpages/dashboard.php:181
 
8845
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
8846
  msgstr ""
8847
 
@@ -9278,18 +9349,23 @@ msgid "Discount Code Applied"
9278
  msgstr ""
9279
 
9280
  #: adminpages/license.php:47
 
9281
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
9282
  msgstr ""
9283
 
9284
  #: adminpages/license.php:49
 
 
9285
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
9286
  msgstr ""
9287
 
9288
  #: adminpages/license.php:61
 
9289
  msgid "Validate Key"
9290
  msgstr ""
9291
 
9292
  #: adminpages/license.php:95
 
9293
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
9294
  msgstr ""
9295
 
@@ -9804,6 +9880,7 @@ msgstr ""
9804
 
9805
  #: classes/gateways/class.pmprogateway_braintree.php:87
9806
  #: classes/gateways/class.pmprogateway_stripe.php:91
 
9807
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
9808
  msgstr ""
9809
 
@@ -10101,6 +10178,7 @@ msgid "Your order has been refused."
10101
  msgstr ""
10102
 
10103
  #: classes/gateways/class.pmprogateway_cybersource.php:922
 
10104
  msgid "Unknown error."
10105
  msgstr ""
10106
 
@@ -10115,23 +10193,28 @@ msgstr ""
10115
  #: classes/gateways/class.pmprogateway_paypal.php:146
10116
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
10117
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
 
10118
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
10119
  msgstr ""
10120
 
10121
  #: classes/gateways/class.pmprogateway_paypal.php:185
10122
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
 
10123
  msgid "Confirmation Step"
10124
  msgstr ""
10125
 
10126
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
 
10127
  msgid "Checkout was already processed."
10128
  msgstr ""
10129
 
10130
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
 
10131
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
10132
  msgstr ""
10133
 
10134
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
 
10135
  msgid "Error creating plan with PayPal."
10136
  msgstr ""
10137
 
@@ -10143,11 +10226,14 @@ msgstr ""
10143
  #: classes/gateways/class.pmprogateway_stripe.php:436
10144
  #: classes/gateways/class.pmprogateway_stripe.php:354
10145
  #: classes/gateways/class.pmprogateway_stripe.php:444
 
 
10146
  msgid "Stripe Connect Settings"
10147
  msgstr ""
10148
 
10149
  #: classes/gateways/class.pmprogateway_stripe.php:352
10150
  #: classes/gateways/class.pmprogateway_stripe.php:356
 
10151
  msgid "Live Mode:"
10152
  msgstr ""
10153
 
@@ -10155,6 +10241,8 @@ msgstr ""
10155
  #: classes/gateways/class.pmprogateway_stripe.php:440
10156
  #: classes/gateways/class.pmprogateway_stripe.php:358
10157
  #: classes/gateways/class.pmprogateway_stripe.php:448
 
 
10158
  msgid "Connected"
10159
  msgstr ""
10160
 
@@ -10162,6 +10250,8 @@ msgstr ""
10162
  #: classes/gateways/class.pmprogateway_stripe.php:442
10163
  #: classes/gateways/class.pmprogateway_stripe.php:362
10164
  #: classes/gateways/class.pmprogateway_stripe.php:452
 
 
10165
  msgid "Not Connected"
10166
  msgstr ""
10167
 
@@ -10169,11 +10259,14 @@ msgstr ""
10169
  #: classes/gateways/class.pmprogateway_stripe.php:449
10170
  #: classes/gateways/class.pmprogateway_stripe.php:369
10171
  #: classes/gateways/class.pmprogateway_stripe.php:459
 
 
10172
  msgid "Your site is using legacy API keys to authenticate with Stripe."
10173
  msgstr ""
10174
 
10175
  #: classes/gateways/class.pmprogateway_stripe.php:364
10176
  #: classes/gateways/class.pmprogateway_stripe.php:371
 
10177
  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."
10178
  msgstr ""
10179
 
@@ -10181,6 +10274,8 @@ msgstr ""
10181
  #: classes/gateways/class.pmprogateway_stripe.php:458
10182
  #: classes/gateways/class.pmprogateway_stripe.php:380
10183
  #: classes/gateways/class.pmprogateway_stripe.php:470
 
 
10184
  msgid "Stripe Connection:"
10185
  msgstr ""
10186
 
@@ -10188,11 +10283,14 @@ msgstr ""
10188
  #: classes/gateways/class.pmprogateway_stripe.php:482
10189
  #: classes/gateways/class.pmprogateway_stripe.php:396
10190
  #: classes/gateways/class.pmprogateway_stripe.php:494
 
 
10191
  msgid "Disconnect From Stripe"
10192
  msgstr ""
10193
 
10194
  #: classes/gateways/class.pmprogateway_stripe.php:389
10195
  #: classes/gateways/class.pmprogateway_stripe.php:397
 
10196
  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."
10197
  msgstr ""
10198
 
@@ -10200,16 +10298,20 @@ msgstr ""
10200
  #: classes/gateways/class.pmprogateway_stripe.php:496
10201
  #: classes/gateways/class.pmprogateway_stripe.php:409
10202
  #: classes/gateways/class.pmprogateway_stripe.php:508
 
 
10203
  msgid "Connect with Stripe"
10204
  msgstr ""
10205
 
10206
  #: classes/gateways/class.pmprogateway_stripe.php:408
10207
  #: classes/gateways/class.pmprogateway_stripe.php:416
 
10208
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
10209
  msgstr ""
10210
 
10211
  #: classes/gateways/class.pmprogateway_stripe.php:411
10212
  #: classes/gateways/class.pmprogateway_stripe.php:419
 
10213
  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."
10214
  msgstr ""
10215
 
@@ -10220,6 +10322,9 @@ msgstr ""
10220
  #: classes/gateways/class.pmprogateway_stripe.php:519
10221
  #: classes/gateways/class.pmprogateway_stripe.php:559
10222
  #: classes/gateways/class.pmprogateway_stripe.php:578
 
 
 
10223
  msgid "Webhook"
10224
  msgstr ""
10225
 
@@ -10230,32 +10335,40 @@ msgstr ""
10230
  #: classes/gateways/class.pmprogateway_stripe.php:523
10231
  #: classes/gateways/class.pmprogateway_stripe.php:594
10232
  #: classes/gateways/class.pmprogateway_stripe.php:613
 
 
 
10233
  msgid "Webhook URL"
10234
  msgstr ""
10235
 
10236
  #: classes/gateways/class.pmprogateway_stripe.php:438
10237
  #: classes/gateways/class.pmprogateway_stripe.php:446
 
10238
  msgid "Test Mode:"
10239
  msgstr ""
10240
 
10241
  #: classes/gateways/class.pmprogateway_stripe.php:450
10242
  #: classes/gateways/class.pmprogateway_stripe.php:461
 
10243
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
10244
  msgstr ""
10245
 
10246
  #: classes/gateways/class.pmprogateway_stripe.php:483
10247
  #: classes/gateways/class.pmprogateway_stripe.php:495
 
10248
  msgid "This will disconnect your site from Stripe in test mode only."
10249
  msgstr ""
10250
 
10251
  #: classes/gateways/class.pmprogateway_stripe.php:518
10252
  #: classes/gateways/class.pmprogateway_stripe.php:530
 
10253
  msgid "Stripe API Settings (Legacy)"
10254
  msgstr ""
10255
 
10256
  #: classes/gateways/class.pmprogateway_stripe.php:531
10257
  #: classes/gateways/class.pmprogateway_stripe.php:543
10258
  #: classes/gateways/class.pmprogateway_stripe.php:562
 
10259
  msgid "Your Publishable Key appears incorrect."
10260
  msgstr ""
10261
 
@@ -10265,24 +10378,29 @@ msgstr ""
10265
  #: classes/gateways/class.pmprogateway_stripe.php:587
10266
  #: classes/gateways/class.pmprogateway_stripe.php:582
10267
  #: classes/gateways/class.pmprogateway_stripe.php:606
 
 
10268
  msgid "Create Webhook"
10269
  msgstr ""
10270
 
10271
  #: classes/gateways/class.pmprogateway_stripe.php:557
10272
  #: classes/gateways/class.pmprogateway_stripe.php:569
10273
  #: classes/gateways/class.pmprogateway_stripe.php:588
 
10274
  msgid "A webhook is set up in Stripe, but it is disabled."
10275
  msgstr ""
10276
 
10277
  #: classes/gateways/class.pmprogateway_stripe.php:564
10278
  #: classes/gateways/class.pmprogateway_stripe.php:576
10279
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
10280
  msgid "A webhook is set up in Stripe, but it is using an old API version."
10281
  msgstr ""
10282
 
10283
  #: classes/gateways/class.pmprogateway_stripe.php:564
10284
  #: classes/gateways/class.pmprogateway_stripe.php:576
10285
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
10286
  msgid "Rebuild Webhook"
10287
  msgstr ""
10288
 
@@ -10295,12 +10413,16 @@ msgstr ""
10295
  #: classes/gateways/class.pmprogateway_stripe.php:601
10296
  #: classes/gateways/class.pmprogateway_stripe.php:741
10297
  #: classes/gateways/class.pmprogateway_stripe.php:857
 
 
 
10298
  msgid "Your webhook is enabled."
10299
  msgstr ""
10300
 
10301
  #: classes/gateways/class.pmprogateway_stripe.php:570
10302
  #: classes/gateways/class.pmprogateway_stripe.php:582
10303
  #: classes/gateways/class.pmprogateway_stripe.php:601
 
10304
  msgid "Disable Webhook"
10305
  msgstr ""
10306
 
@@ -10316,66 +10438,80 @@ msgstr ""
10316
  #: classes/gateways/class.pmprogateway_stripe.php:768
10317
  #: classes/gateways/class.pmprogateway_stripe.php:785
10318
  #: classes/gateways/class.pmprogateway_stripe.php:819
 
 
 
 
10319
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
10320
  msgstr ""
10321
 
10322
  #: classes/gateways/class.pmprogateway_stripe.php:589
10323
  #: classes/gateways/class.pmprogateway_stripe.php:601
10324
  #: classes/gateways/class.pmprogateway_stripe.php:620
 
10325
  msgid "Other Stripe Settings"
10326
  msgstr ""
10327
 
10328
  #: classes/gateways/class.pmprogateway_stripe.php:593
10329
  #: classes/gateways/class.pmprogateway_stripe.php:605
10330
  #: classes/gateways/class.pmprogateway_stripe.php:624
 
10331
  msgid "Stripe API Version"
10332
  msgstr ""
10333
 
10334
  #: classes/gateways/class.pmprogateway_stripe.php:612
10335
  #: classes/gateways/class.pmprogateway_stripe.php:624
10336
  #: classes/gateways/class.pmprogateway_stripe.php:643
 
10337
  msgid "Enable Payment Request Button"
10338
  msgstr ""
10339
 
10340
  #: classes/gateways/class.pmprogateway_stripe.php:630
10341
  #: classes/gateways/class.pmprogateway_stripe.php:642
10342
  #: classes/gateways/class.pmprogateway_stripe.php:661
 
10343
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
10344
  msgstr ""
10345
 
10346
  #: classes/gateways/class.pmprogateway_stripe.php:643
10347
  #: classes/gateways/class.pmprogateway_stripe.php:655
10348
  #: classes/gateways/class.pmprogateway_stripe.php:674
 
10349
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
10350
  msgstr ""
10351
 
10352
  #: classes/gateways/class.pmprogateway_stripe.php:645
10353
  #: classes/gateways/class.pmprogateway_stripe.php:657
10354
  #: classes/gateways/class.pmprogateway_stripe.php:676
 
10355
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
10356
  msgstr ""
10357
 
10358
  #: classes/gateways/class.pmprogateway_stripe.php:647
10359
  #: classes/gateways/class.pmprogateway_stripe.php:659
10360
  #: classes/gateways/class.pmprogateway_stripe.php:678
 
10361
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
10362
  msgstr ""
10363
 
10364
  #: classes/gateways/class.pmprogateway_stripe.php:649
10365
  #: classes/gateways/class.pmprogateway_stripe.php:661
10366
  #: classes/gateways/class.pmprogateway_stripe.php:680
 
10367
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
10368
  msgstr ""
10369
 
10370
  #: classes/gateways/class.pmprogateway_stripe.php:674
10371
  #: classes/gateways/class.pmprogateway_stripe.php:686
10372
  #: classes/gateways/class.pmprogateway_stripe.php:705
 
10373
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
10374
  msgstr ""
10375
 
10376
  #: classes/gateways/class.pmprogateway_stripe.php:695
10377
  #: classes/gateways/class.pmprogateway_stripe.php:707
10378
  #: classes/gateways/class.pmprogateway_stripe.php:726
 
10379
  msgid "Webhook creation failed. You might already have a webhook set up."
10380
  msgstr ""
10381
 
@@ -10385,36 +10521,43 @@ msgstr ""
10385
  #: classes/gateways/class.pmprogateway_stripe.php:847
10386
  #: classes/gateways/class.pmprogateway_stripe.php:792
10387
  #: classes/gateways/class.pmprogateway_stripe.php:866
 
 
10388
  msgid "There was an error deleting the webhook."
10389
  msgstr ""
10390
 
10391
  #: classes/gateways/class.pmprogateway_stripe.php:811
10392
  #: classes/gateways/class.pmprogateway_stripe.php:823
10393
  #: classes/gateways/class.pmprogateway_stripe.php:842
 
10394
  msgid "Webhook creation failed. Please refresh and try again."
10395
  msgstr ""
10396
 
10397
  #: classes/gateways/class.pmprogateway_stripe.php:867
10398
  #: classes/gateways/class.pmprogateway_stripe.php:879
10399
  #: classes/gateways/class.pmprogateway_stripe.php:898
 
10400
  msgid "Verification steps confirmed. Your payment is processing."
10401
  msgstr ""
10402
 
10403
  #: classes/gateways/class.pmprogateway_stripe.php:1262
10404
  #: classes/gateways/class.pmprogateway_stripe.php:1274
10405
  #: classes/gateways/class.pmprogateway_stripe.php:1293
 
10406
  msgid "Pay with Credit Card"
10407
  msgstr ""
10408
 
10409
  #: classes/gateways/class.pmprogateway_stripe.php:1296
10410
  #: classes/gateways/class.pmprogateway_stripe.php:1308
10411
  #: classes/gateways/class.pmprogateway_stripe.php:1327
 
10412
  msgid "CVC"
10413
  msgstr ""
10414
 
10415
  #: classes/gateways/class.pmprogateway_stripe.php:1374
10416
  #: classes/gateways/class.pmprogateway_stripe.php:1386
10417
  #: classes/gateways/class.pmprogateway_stripe.php:1405
 
10418
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
10419
  msgstr ""
10420
 
@@ -10430,6 +10573,10 @@ msgstr ""
10430
  #: classes/gateways/class.pmprogateway_stripe.php:2016
10431
  #: classes/gateways/class.pmprogateway_stripe.php:2029
10432
  #: classes/gateways/class.pmprogateway_stripe.php:2033
 
 
 
 
10433
  msgid "Error: %s"
10434
  msgstr ""
10435
 
@@ -10439,30 +10586,35 @@ msgstr ""
10439
  #: classes/gateways/class.pmprogateway_stripe.php:2834
10440
  #: classes/gateways/class.pmprogateway_stripe.php:2850
10441
  #: classes/gateways/class.pmprogateway_stripe.php:2856
 
10442
  msgid "Error: "
10443
  msgstr ""
10444
 
10445
  #: classes/gateways/class.pmprogateway_stripe.php:2836
10446
  #: classes/gateways/class.pmprogateway_stripe.php:2848
10447
  #: classes/gateways/class.pmprogateway_stripe.php:2870
 
10448
  msgid "Error: Unkown error while refunding charge #%s"
10449
  msgstr ""
10450
 
10451
  #: classes/gateways/class.pmprogateway_stripe.php:3330
10452
  #: classes/gateways/class.pmprogateway_stripe.php:3342
10453
  #: classes/gateways/class.pmprogateway_stripe.php:3364
 
10454
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
10455
  msgstr ""
10456
 
10457
  #: classes/gateways/class.pmprogateway_stripe.php:3347
10458
  #: classes/gateways/class.pmprogateway_stripe.php:3359
10459
  #: classes/gateways/class.pmprogateway_stripe.php:3381
 
10460
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
10461
  msgstr ""
10462
 
10463
  #: classes/gateways/class.pmprogateway_stripe.php:3533
10464
  #: classes/gateways/class.pmprogateway_stripe.php:3545
10465
  #: classes/gateways/class.pmprogateway_stripe.php:3567
 
10466
  msgid "Invalid response from the Stripe Connect server."
10467
  msgstr ""
10468
 
@@ -10470,6 +10622,7 @@ msgstr ""
10470
  #: classes/gateways/class.pmprogateway_stripe.php:3561
10471
  #: classes/gateways/class.pmprogateway_stripe.php:3573
10472
  #: classes/gateways/class.pmprogateway_stripe.php:3595
 
10473
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
10474
  msgstr ""
10475
 
@@ -10477,30 +10630,35 @@ msgstr ""
10477
  #: classes/gateways/class.pmprogateway_stripe.php:3597
10478
  #: classes/gateways/class.pmprogateway_stripe.php:3609
10479
  #: classes/gateways/class.pmprogateway_stripe.php:3631
 
10480
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
10481
  msgstr ""
10482
 
10483
  #: classes/gateways/class.pmprogateway_stripe.php:3768
10484
  #: classes/gateways/class.pmprogateway_stripe.php:3780
10485
  #: classes/gateways/class.pmprogateway_stripe.php:3802
 
10486
  msgid "Last webhook received at"
10487
  msgstr ""
10488
 
10489
  #: classes/gateways/class.pmprogateway_stripe.php:3770
10490
  #: classes/gateways/class.pmprogateway_stripe.php:3782
10491
  #: classes/gateways/class.pmprogateway_stripe.php:3804
 
10492
  msgid "No webhooks have been received."
10493
  msgstr ""
10494
 
10495
  #: classes/gateways/class.pmprogateway_stripe.php:3774
10496
  #: classes/gateways/class.pmprogateway_stripe.php:3786
10497
  #: classes/gateways/class.pmprogateway_stripe.php:3808
 
10498
  msgid "Your webhook may not be working correctly."
10499
  msgstr ""
10500
 
10501
  #: classes/gateways/class.pmprogateway_stripe.php:3776
10502
  #: classes/gateways/class.pmprogateway_stripe.php:3788
10503
  #: classes/gateways/class.pmprogateway_stripe.php:3810
 
10504
  msgid "Click here for info on setting up your webhook with Stripe."
10505
  msgstr ""
10506
 
@@ -12605,11 +12763,13 @@ msgstr ""
12605
 
12606
  #: includes/login.php:429
12607
  #: includes/profile.php:843
 
12608
  msgid "New passwords do not match."
12609
  msgstr ""
12610
 
12611
  #: includes/login.php:433
12612
  #: includes/profile.php:839
 
12613
  msgid "Please complete all fields."
12614
  msgstr ""
12615
 
@@ -12639,17 +12799,21 @@ msgstr ""
12639
 
12640
  #: includes/login.php:688
12641
  #: includes/profile.php:891
 
12642
  msgid "New Password"
12643
  msgstr ""
12644
 
12645
  #: includes/login.php:690
12646
  #: includes/profile.php:894
12647
  #: includes/scripts.php:86
 
 
12648
  msgid "Strength Indicator"
12649
  msgstr ""
12650
 
12651
  #: includes/login.php:694
12652
  #: includes/profile.php:898
 
12653
  msgid "Confirm New Password"
12654
  msgstr ""
12655
 
@@ -12746,21 +12910,25 @@ msgstr ""
12746
  #: includes/privacy.php:182
12747
  #: includes/profile.php:425
12748
  #: includes/profile.php:493
 
12749
  msgid "Level ID"
12750
  msgstr ""
12751
 
12752
  #: includes/privacy.php:190
12753
  #: includes/profile.php:496
 
12754
  msgid "Date Modified"
12755
  msgstr ""
12756
 
12757
  #: includes/privacy.php:194
12758
  #: includes/profile.php:497
 
12759
  msgid "End Date"
12760
  msgstr ""
12761
 
12762
  #: includes/privacy.php:198
12763
  #: includes/profile.php:498
 
12764
  msgid "Level Cost"
12765
  msgstr ""
12766
 
@@ -12859,68 +13027,85 @@ msgid "Membership Levels History"
12859
  msgstr ""
12860
 
12861
  #: includes/profile.php:485
 
12862
  msgid "No membership orders found."
12863
  msgstr ""
12864
 
12865
  #: includes/profile.php:537
 
12866
  msgid "No membership history found."
12867
  msgstr ""
12868
 
12869
  #: includes/profile.php:644
 
12870
  msgid "Log in to edit your profile."
12871
  msgstr ""
12872
 
12873
  #: includes/profile.php:679
 
12874
  msgid "Please enter a display name."
12875
  msgstr ""
12876
 
12877
  #: includes/profile.php:689
 
12878
  msgid "Please enter an email address."
12879
  msgstr ""
12880
 
12881
  #: includes/profile.php:691
 
12882
  msgid "The email address isn&#8217;t correct."
12883
  msgstr ""
12884
 
12885
  #: includes/profile.php:695
 
12886
  msgid "This email is already registered, please choose another one."
12887
  msgstr ""
12888
 
12889
  #: includes/profile.php:722
 
12890
  msgid "Your profile has been updated."
12891
  msgstr ""
12892
 
12893
  #: includes/profile.php:749
 
12894
  msgid "Display name publicly as"
12895
  msgstr ""
12896
 
12897
  #: includes/profile.php:762
 
12898
  msgid "Site administrators must use the WordPress dashboard to update their email address."
12899
  msgstr ""
12900
 
12901
  #: includes/profile.php:785
 
12902
  msgid "Update Profile"
12903
  msgstr ""
12904
 
12905
  #: includes/profile.php:841
 
12906
  msgid "Please enter your current password."
12907
  msgstr ""
12908
 
12909
  #: includes/profile.php:845
 
12910
  msgid "Your current password is incorrect."
12911
  msgstr ""
12912
 
12913
  #: includes/profile.php:856
 
12914
  msgid "Your password has been updated."
12915
  msgstr ""
12916
 
12917
  #: includes/profile.php:886
 
12918
  msgid "Current Password"
12919
  msgstr ""
12920
 
12921
  #: includes/profile.php:888
12922
  #: includes/profile.php:893
12923
  #: includes/profile.php:900
 
 
12924
  msgid "Required Field"
12925
  msgstr ""
12926
 
@@ -13017,10 +13202,12 @@ msgid "That email address is already in use. Please log in, or use a different e
13017
  msgstr ""
13018
 
13019
  #: services/braintree-webhook.php:425
 
13020
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
13021
  msgstr ""
13022
 
13023
  #: services/braintree-webhook.php:427
 
13024
  msgid "A member's Braintree subscription has expired at %s"
13025
  msgstr ""
13026
 
@@ -13339,16 +13526,22 @@ msgstr ""
13339
 
13340
  #: classes/gateways/class.pmprogateway_stripe.php:360
13341
  #: classes/gateways/class.pmprogateway_stripe.php:450
 
 
13342
  msgid "Connected with Legacy Keys"
13343
  msgstr ""
13344
 
13345
  #: classes/gateways/class.pmprogateway_stripe.php:370
13346
  #: classes/gateways/class.pmprogateway_stripe.php:460
 
 
13347
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
13348
  msgstr ""
13349
 
13350
  #: classes/gateways/class.pmprogateway_stripe.php:372
13351
  #: classes/gateways/class.pmprogateway_stripe.php:462
 
 
13352
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
13353
  msgstr ""
13354
 
@@ -13405,9 +13598,45 @@ msgid "missing"
13405
  msgstr ""
13406
 
13407
  #: classes/gateways/class.pmprogateway_stripe.php:533
 
13408
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
13409
  msgstr ""
13410
 
13411
  #: classes/gateways/class.pmprogateway_stripe.php:534
 
13412
  msgid "Click here to use the legacy API settings."
13413
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.3\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-10-11T13:59:59+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
261
  #: adminpages/orders.php:1544
262
  #: adminpages/orders.php:1554
263
  #: adminpages/orders.php:1553
264
+ #: includes/profile.php:520
265
+ #: includes/profile.php:521
266
+ #: includes/profile.php:522
267
  msgid "N/A"
268
  msgstr "N/A"
269
 
447
  #: adminpages/orders.php:391
448
  #: adminpages/orders.php:1445
449
  #: adminpages/orders.php:1448
450
+ #: includes/profile.php:762
451
  msgid "Email"
452
  msgstr "Correu electrònic"
453
 
636
  #: adminpages/advancedsettings.php:479
637
  #: classes/gateways/class.pmprogateway_stripe.php:634
638
  #: classes/gateways/class.pmprogateway_stripe.php:648
639
+ #: classes/gateways/class.pmprogateway_stripe.php:640
640
+ #: classes/gateways/class.pmprogateway_stripe.php:654
641
  msgid "No"
642
  msgstr "No"
643
 
736
  #: adminpages/advancedsettings.php:397
737
  #: classes/gateways/class.pmprogateway_stripe.php:636
738
  #: classes/gateways/class.pmprogateway_stripe.php:650
739
+ #: classes/gateways/class.pmprogateway_stripe.php:642
740
+ #: classes/gateways/class.pmprogateway_stripe.php:656
741
  msgid "Yes"
742
  msgstr "Sí"
743
 
1020
  #: includes/privacy.php:186
1021
  #: includes/profile.php:495
1022
  #: adminpages/discountcodes.php:489
1023
+ #: includes/profile.php:501
1024
  msgid "Start Date"
1025
  msgstr "Data d’inici"
1026
 
1055
  #: classes/gateways/class.pmprogateway_stripe.php:1301
1056
  #: adminpages/discountcodes.php:507
1057
  #: classes/gateways/class.pmprogateway_stripe.php:1320
1058
+ #: classes/gateways/class.pmprogateway_stripe.php:1326
1059
  msgid "Expiration Date"
1060
  msgstr "Data final (d’expiració)"
1061
 
1195
  #: adminpages/discountcodes.php:612
1196
  #: adminpages/discountcodes.php:699
1197
  #: classes/gateways/class.pmprogateway_stripe.php:1363
1198
+ #: classes/gateways/class.pmprogateway_stripe.php:1369
1199
  msgid "Day(s)"
1200
  msgstr "Dia(es)"
1201
 
1229
  #: adminpages/discountcodes.php:612
1230
  #: adminpages/discountcodes.php:699
1231
  #: classes/gateways/class.pmprogateway_stripe.php:1365
1232
+ #: classes/gateways/class.pmprogateway_stripe.php:1371
1233
  msgid "Month(s)"
1234
  msgstr "Mes(os)"
1235
 
1263
  #: adminpages/discountcodes.php:612
1264
  #: adminpages/discountcodes.php:699
1265
  #: classes/gateways/class.pmprogateway_stripe.php:1364
1266
+ #: classes/gateways/class.pmprogateway_stripe.php:1370
1267
  msgid "Week(s)"
1268
  msgstr "Setmana(es)"
1269
 
1297
  #: adminpages/discountcodes.php:612
1298
  #: adminpages/discountcodes.php:699
1299
  #: classes/gateways/class.pmprogateway_stripe.php:1366
1300
+ #: classes/gateways/class.pmprogateway_stripe.php:1372
1301
  msgid "Year(s)"
1302
  msgstr "Any(s)"
1303
 
1896
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1897
  #: adminpages/discountcodes.php:608
1898
  #: classes/gateways/class.pmprogateway_stripe.php:1497
1899
+ #: classes/gateways/class.pmprogateway_stripe.php:1503
1900
  msgid "per"
1901
  msgstr "per"
1902
 
2112
  #: pages/cancel.php:96
2113
  #: shortcodes/pmpro_account.php:106
2114
  #: adminpages/orders.php:968
2115
+ #: includes/profile.php:798
2116
+ #: includes/profile.php:922
2117
  msgid "Cancel"
2118
  msgstr "Cancel·la"
2119
 
2790
  #: adminpages/orders.php:679
2791
  #: classes/gateways/class.pmprogateway_stripe.php:1284
2792
  #: classes/gateways/class.pmprogateway_stripe.php:1303
2793
+ #: classes/gateways/class.pmprogateway_stripe.php:1309
2794
  msgid "Card Type"
2795
  msgstr "Tipus de targeta"
2796
 
2871
  #: adminpages/dashboard.php:294
2872
  #: adminpages/orders.php:742
2873
  #: adminpages/orders.php:1348
2874
+ #: includes/profile.php:505
2875
  msgid "Status"
2876
  msgstr "Estat"
2877
 
4293
  #: classes/class.pmproemail.php:769
4294
  #: classes/class.pmproemail.php:771
4295
  #: classes/gateways/class.pmprogateway_stripe.php:1333
4296
+ #: classes/gateways/class.pmprogateway_stripe.php:1339
4297
  msgid "Discount Code"
4298
  msgstr "Codi de descompte"
4299
 
4749
  #: pages/checkout.php:366
4750
  #: classes/gateways/class.pmprogateway_stripe.php:1263
4751
  #: classes/gateways/class.pmprogateway_stripe.php:1282
4752
+ #: classes/gateways/class.pmprogateway_stripe.php:1288
4753
  msgid "Payment Information"
4754
  msgstr "Informació de pagament"
4755
 
4774
  #: pages/checkout.php:367
4775
  #: classes/gateways/class.pmprogateway_stripe.php:1264
4776
  #: classes/gateways/class.pmprogateway_stripe.php:1283
4777
+ #: classes/gateways/class.pmprogateway_stripe.php:1289
4778
  #, php-format
4779
  msgid "We Accept %s"
4780
  msgstr "Acceptem %s"
4805
  #: pages/checkout.php:389
4806
  #: classes/gateways/class.pmprogateway_stripe.php:1297
4807
  #: classes/gateways/class.pmprogateway_stripe.php:1316
4808
+ #: classes/gateways/class.pmprogateway_stripe.php:1322
4809
  msgid "Card Number"
4810
  msgstr "Nombre de Tarjeta"
4811
 
4887
  #: pages/checkout.php:432
4888
  #: classes/gateways/class.pmprogateway_stripe.php:1319
4889
  #: classes/gateways/class.pmprogateway_stripe.php:1338
4890
+ #: classes/gateways/class.pmprogateway_stripe.php:1344
4891
  msgid "Apply"
4892
  msgstr "Aplica"
4893
 
5138
  #: classes/gateways/class.pmprogateway_paypal.php:132
5139
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
5140
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
5141
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:151
5142
  msgid "PayPal Settings"
5143
  msgstr "Configuració PayPal"
5144
 
5160
  #: classes/gateways/class.pmprogateway_paypal.php:153
5161
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
5162
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
5163
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:172
5164
  msgid "Gateway Account Email"
5165
  msgstr "Correu electrònic del compte de la Passarel·la"
5166
 
5180
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
5181
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
5182
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
5183
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:180
5184
  msgid "API Username"
5185
  msgstr "API Usuari"
5186
 
5200
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
5201
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
5202
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
5203
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:188
5204
  msgid "API Password"
5205
  msgstr "API Clau"
5206
 
5214
  #: classes/gateways/class.pmprogateway_paypal.php:177
5215
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
5216
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
5217
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:196
5218
  msgid "API Signature"
5219
  msgstr "API Signatura"
5220
 
5229
  #: classes/gateways/class.pmprogateway_paypal.php:196
5230
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
5231
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
5232
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:215
5233
  msgid "IPN Handler URL"
5234
  msgstr "IPN Handler URL"
5235
 
5255
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
5256
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
5257
  #: pages/checkout.php:218
5258
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:498
5259
  msgid "Check Out with PayPal"
5260
  msgstr "Check Out amb PayPal"
5261
 
5275
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
5276
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5277
  #: pages/checkout.php:526
5278
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
5279
  msgid "Submit and Check Out"
5280
  msgstr "Envia i fés el Check Out"
5281
 
5299
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5300
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
5301
  #: pages/checkout.php:526
5302
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
5303
  msgid "Submit and Confirm"
5304
  msgstr "Envia i confirma"
5305
 
5321
  #: classes/gateways/class.pmprogateway_paypal.php:716
5322
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
5323
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
5324
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:841
5325
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
5326
  msgstr "Contacteu al propietari del lloc o cancel·leu la vostra subscripció de PayPal per assegurar-te que no et cobraran en el futur."
5327
 
5335
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
5336
  #: paid-memberships-pro.php:160
5337
  #: paid-memberships-pro.php:162
5338
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:94
5339
  msgid "PayPal Express"
5340
  msgstr "PayPal Express"
5341
 
5347
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
5348
  #: classes/gateways/class.pmprogateway_paypal.php:199
5349
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
5350
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:218
5351
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
5352
  msgstr "Per integrar completament PayPal, assegura’t de configurar el teu IPN Handler URL a"
5353
 
5369
  #: preheaders/checkout.php:823
5370
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
5371
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
5372
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:352
5373
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:411
5374
  msgid "The PayPal Token was lost."
5375
  msgstr "S’ha perdut el Token de PayPal"
5376
 
5408
  #: classes/gateways/class.pmprogateway_stripe.php:252
5409
  #: paid-memberships-pro.php:159
5410
  #: paid-memberships-pro.php:161
5411
+ #: classes/gateways/class.pmprogateway_stripe.php:258
5412
  msgid "Stripe"
5413
  msgstr "Stripe"
5414
 
5429
  #: classes/gateways/class.pmprogateway_stripe.php:539
5430
  #: classes/gateways/class.pmprogateway_stripe.php:551
5431
  #: classes/gateways/class.pmprogateway_stripe.php:570
5432
+ #: classes/gateways/class.pmprogateway_stripe.php:576
5433
  msgid "Secret Key"
5434
  msgstr "Secret Key"
5435
 
5443
  #: classes/gateways/class.pmprogateway_stripe.php:523
5444
  #: classes/gateways/class.pmprogateway_stripe.php:535
5445
  #: classes/gateways/class.pmprogateway_stripe.php:554
5446
+ #: classes/gateways/class.pmprogateway_stripe.php:560
5447
  msgid "Publishable Key"
5448
  msgstr "Clau Publicable"
5449
 
5457
  #: classes/gateways/class.pmprogateway_stripe.php:598
5458
  #: classes/gateways/class.pmprogateway_stripe.php:610
5459
  #: classes/gateways/class.pmprogateway_stripe.php:629
5460
+ #: classes/gateways/class.pmprogateway_stripe.php:635
5461
  msgid "Show Billing Address Fields"
5462
  msgstr "Mostra els camps d’adreça de facturació"
5463
 
5470
  #: classes/gateways/class.pmprogateway_stripe.php:607
5471
  #: classes/gateways/class.pmprogateway_stripe.php:619
5472
  #: classes/gateways/class.pmprogateway_stripe.php:638
5473
+ #: classes/gateways/class.pmprogateway_stripe.php:644
5474
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
5475
  msgstr "Stripe no necessita camps d’adreça de facturació. Escull “No” per amagar-los de la pàgina de Checkout.<br /><strong>Si No, assegura’t de desabilitar la verificació de l’adreça a l’escripori de configuració de l’Stripe.</strong>"
5476
 
5493
  #: classes/gateways/class.pmprogateway_stripe.php:1379
5494
  #: classes/gateways/class.pmprogateway_stripe.php:1391
5495
  #: classes/gateways/class.pmprogateway_stripe.php:1410
5496
+ #: classes/gateways/class.pmprogateway_stripe.php:1416
5497
  msgid "Subscription Updates"
5498
  msgstr "Actualització de subscripcions"
5499
 
5505
  #: classes/gateways/class.pmprogateway_stripe.php:1383
5506
  #: classes/gateways/class.pmprogateway_stripe.php:1395
5507
  #: classes/gateways/class.pmprogateway_stripe.php:1414
5508
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
5509
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
5510
  msgstr "Actualització de subscripcions, et permet canviar el valor subscripció dels membres en un moment determinat. Assegura’t de clicar Actualitza Perfil després de fer els canvis."
5511
 
5517
  #: classes/gateways/class.pmprogateway_stripe.php:1385
5518
  #: classes/gateways/class.pmprogateway_stripe.php:1397
5519
  #: classes/gateways/class.pmprogateway_stripe.php:1416
5520
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
5521
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
5522
  msgstr "Actualització de subscripcions, et permet canviar el valor subscripció dels membres en un moment determinat. Assegura’t de clicar Actualitza Usuari després de fer els canvis."
5523
 
5536
  #: pages/billing.php:425
5537
  #: classes/gateways/class.pmprogateway_stripe.php:1403
5538
  #: classes/gateways/class.pmprogateway_stripe.php:1422
5539
+ #: classes/gateways/class.pmprogateway_stripe.php:1428
5540
  msgid "Update"
5541
  msgstr "Actualitza"
5542
 
5548
  #: classes/gateways/class.pmprogateway_stripe.php:2480
5549
  #: classes/gateways/class.pmprogateway_stripe.php:2492
5550
  #: classes/gateways/class.pmprogateway_stripe.php:2514
5551
+ #: classes/gateways/class.pmprogateway_stripe.php:2520
5552
  msgid "Could not cancel the old subscription. Updates have not been processed."
5553
  msgstr "No s’ha pogut cancel·lar l’antiga subscripció. Les actualitzacions no s’han processat."
5554
 
5573
  #: classes/gateways/class.pmprogateway_stripe.php:2127
5574
  #: classes/gateways/class.pmprogateway_stripe.php:2132
5575
  #: classes/gateways/class.pmprogateway_stripe.php:2137
5576
+ #: classes/gateways/class.pmprogateway_stripe.php:2133
5577
+ #: classes/gateways/class.pmprogateway_stripe.php:2138
5578
+ #: classes/gateways/class.pmprogateway_stripe.php:2143
5579
  msgid "Error creating customer record with Stripe:"
5580
  msgstr "Error creant un registre d’usuari amb Stripe:"
5581
 
5587
  #: classes/gateways/class.pmprogateway_stripe.php:2182
5588
  #: classes/gateways/class.pmprogateway_stripe.php:2196
5589
  #: classes/gateways/class.pmprogateway_stripe.php:2201
5590
+ #: classes/gateways/class.pmprogateway_stripe.php:2202
5591
+ #: classes/gateways/class.pmprogateway_stripe.php:2207
5592
  msgid "Error getting subscription with Stripe:"
5593
  msgstr "Error agafant la subscripció amb Stripe:"
5594
 
5618
  #: classes/gateways/class.pmprogateway_stripe.php:2356
5619
  #: classes/gateways/class.pmprogateway_stripe.php:2373
5620
  #: classes/gateways/class.pmprogateway_stripe.php:2378
5621
+ #: classes/gateways/class.pmprogateway_stripe.php:2379
5622
+ #: classes/gateways/class.pmprogateway_stripe.php:2384
5623
  msgid "Error creating plan with Stripe:"
5624
  msgstr "Error creant pla amb Stripe:"
5625
 
5644
  #: classes/gateways/class.pmprogateway_stripe.php:2401
5645
  #: classes/gateways/class.pmprogateway_stripe.php:2409
5646
  #: classes/gateways/class.pmprogateway_stripe.php:2423
5647
+ #: classes/gateways/class.pmprogateway_stripe.php:2415
5648
+ #: classes/gateways/class.pmprogateway_stripe.php:2429
5649
  msgid "Error subscribing customer to plan with Stripe:"
5650
  msgstr "Error subscrivint un pla de comprador amb Stripe:"
5651
 
5664
  #: classes/gateways/class.pmprogateway_stripe.php:2632
5665
  #: classes/gateways/class.pmprogateway_stripe.php:2644
5666
  #: classes/gateways/class.pmprogateway_stripe.php:2666
5667
+ #: classes/gateways/class.pmprogateway_stripe.php:2672
5668
  msgid "Could not cancel old subscription."
5669
  msgstr "No s’ha pogut cancel·lar l’antiga subscripció. "
5670
 
5680
  #: classes/gateways/class.pmprogateway_stripe.php:2648
5681
  #: classes/gateways/class.pmprogateway_stripe.php:2660
5682
  #: classes/gateways/class.pmprogateway_stripe.php:2682
5683
+ #: classes/gateways/class.pmprogateway_stripe.php:2688
5684
  msgid "Could not find the customer."
5685
  msgstr "No s’ha trobat el comprador."
5686
 
6749
 
6750
  #: includes/license.php:81
6751
  #: adminpages/license.php:43
6752
+ #: adminpages/license.php:33
6753
  msgid "Paid Memberships Pro Support License"
6754
  msgstr "Paid Memberships Pro Support License"
6755
 
6769
  #: adminpages/dashboard.php:174
6770
  #: adminpages/license.php:49
6771
  #: adminpages/dashboard.php:178
6772
+ #: adminpages/license.php:41
6773
  msgid "Your license is invalid or expired."
6774
  msgstr "La teva license és invalida o ha expirat"
6775
 
6780
 
6781
  #: includes/license.php:100
6782
  #: adminpages/license.php:59
6783
+ #: adminpages/license.php:51
6784
  msgid "Enter license key here..."
6785
  msgstr "Introdueix license key aquí"
6786
 
6983
  #: adminpages/dashboard.php:224
6984
  #: adminpages/dashboard.php:292
6985
  #: adminpages/orders.php:1343
6986
+ #: includes/profile.php:500
6987
  msgid "Level"
6988
  msgstr "Nivell"
6989
 
7042
  #: includes/profile.php:747
7043
  #: pages/billing.php:164
7044
  #: pages/checkout.php:234
7045
+ #: includes/profile.php:759
7046
  msgid "First Name"
7047
  msgstr "Nom"
7048
 
7060
  #: includes/profile.php:748
7061
  #: pages/billing.php:168
7062
  #: pages/checkout.php:238
7063
+ #: includes/profile.php:760
7064
  msgid "Last Name"
7065
  msgstr "Cognoms"
7066
 
8137
  #: services/authnet-silent-post.php:138
8138
  #: services/authnet-silent-post.php:141
8139
  #: services/authnet-silent-post.php:173
8140
+ #: services/authnet-silent-post.php:176
8141
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
8142
  msgstr "<p>Un pagament s’està revisant a Authorize.net.</p><p>Payment Information From Authorize.net"
8143
 
8204
  #: includes/profile.php:872
8205
  #: includes/profile.php:909
8206
  #: shortcodes/pmpro_account.php:195
8207
+ #: includes/profile.php:884
8208
+ #: includes/profile.php:921
8209
  msgid "Change Password"
8210
  msgstr "Canvia Clau"
8211
 
8301
  #: adminpages/advancedsettings.php:316
8302
  #: includes/privacy.php:175
8303
  #: includes/profile.php:509
8304
+ #: includes/profile.php:515
8305
  msgid "Never"
8306
  msgstr "Mai"
8307
 
8639
 
8640
  #: adminpages/admin_header.php:152
8641
  #: classes/gateways/class.pmprogateway_stripe.php:76
8642
+ #: classes/gateways/class.pmprogateway_stripe.php:82
8643
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
8644
  msgstr ""
8645
 
8912
  #: adminpages/dashboard.php:177
8913
  #: adminpages/license.php:51
8914
  #: adminpages/dashboard.php:181
8915
+ #: adminpages/license.php:43
8916
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
8917
  msgstr ""
8918
 
9349
  msgstr ""
9350
 
9351
  #: adminpages/license.php:47
9352
+ #: adminpages/license.php:39
9353
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
9354
  msgstr ""
9355
 
9356
  #: adminpages/license.php:49
9357
+ #: adminpages/license.php:37
9358
+ #: adminpages/license.php:41
9359
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
9360
  msgstr ""
9361
 
9362
  #: adminpages/license.php:61
9363
+ #: adminpages/license.php:53
9364
  msgid "Validate Key"
9365
  msgstr ""
9366
 
9367
  #: adminpages/license.php:95
9368
+ #: adminpages/license.php:87
9369
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
9370
  msgstr ""
9371
 
9880
 
9881
  #: classes/gateways/class.pmprogateway_braintree.php:87
9882
  #: classes/gateways/class.pmprogateway_stripe.php:91
9883
+ #: classes/gateways/class.pmprogateway_stripe.php:97
9884
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
9885
  msgstr ""
9886
 
10178
  msgstr ""
10179
 
10180
  #: classes/gateways/class.pmprogateway_cybersource.php:922
10181
+ #: includes/license.php:159
10182
  msgid "Unknown error."
10183
  msgstr ""
10184
 
10193
  #: classes/gateways/class.pmprogateway_paypal.php:146
10194
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
10195
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
10196
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:165
10197
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
10198
  msgstr ""
10199
 
10200
  #: classes/gateways/class.pmprogateway_paypal.php:185
10201
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
10202
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:204
10203
  msgid "Confirmation Step"
10204
  msgstr ""
10205
 
10206
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
10207
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:356
10208
  msgid "Checkout was already processed."
10209
  msgstr ""
10210
 
10211
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
10212
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:791
10213
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
10214
  msgstr ""
10215
 
10216
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
10217
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:792
10218
  msgid "Error creating plan with PayPal."
10219
  msgstr ""
10220
 
10226
  #: classes/gateways/class.pmprogateway_stripe.php:436
10227
  #: classes/gateways/class.pmprogateway_stripe.php:354
10228
  #: classes/gateways/class.pmprogateway_stripe.php:444
10229
+ #: classes/gateways/class.pmprogateway_stripe.php:360
10230
+ #: classes/gateways/class.pmprogateway_stripe.php:450
10231
  msgid "Stripe Connect Settings"
10232
  msgstr ""
10233
 
10234
  #: classes/gateways/class.pmprogateway_stripe.php:352
10235
  #: classes/gateways/class.pmprogateway_stripe.php:356
10236
+ #: classes/gateways/class.pmprogateway_stripe.php:362
10237
  msgid "Live Mode:"
10238
  msgstr ""
10239
 
10241
  #: classes/gateways/class.pmprogateway_stripe.php:440
10242
  #: classes/gateways/class.pmprogateway_stripe.php:358
10243
  #: classes/gateways/class.pmprogateway_stripe.php:448
10244
+ #: classes/gateways/class.pmprogateway_stripe.php:364
10245
+ #: classes/gateways/class.pmprogateway_stripe.php:454
10246
  msgid "Connected"
10247
  msgstr ""
10248
 
10250
  #: classes/gateways/class.pmprogateway_stripe.php:442
10251
  #: classes/gateways/class.pmprogateway_stripe.php:362
10252
  #: classes/gateways/class.pmprogateway_stripe.php:452
10253
+ #: classes/gateways/class.pmprogateway_stripe.php:368
10254
+ #: classes/gateways/class.pmprogateway_stripe.php:458
10255
  msgid "Not Connected"
10256
  msgstr ""
10257
 
10259
  #: classes/gateways/class.pmprogateway_stripe.php:449
10260
  #: classes/gateways/class.pmprogateway_stripe.php:369
10261
  #: classes/gateways/class.pmprogateway_stripe.php:459
10262
+ #: classes/gateways/class.pmprogateway_stripe.php:375
10263
+ #: classes/gateways/class.pmprogateway_stripe.php:465
10264
  msgid "Your site is using legacy API keys to authenticate with Stripe."
10265
  msgstr ""
10266
 
10267
  #: classes/gateways/class.pmprogateway_stripe.php:364
10268
  #: classes/gateways/class.pmprogateway_stripe.php:371
10269
+ #: classes/gateways/class.pmprogateway_stripe.php:377
10270
  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."
10271
  msgstr ""
10272
 
10274
  #: classes/gateways/class.pmprogateway_stripe.php:458
10275
  #: classes/gateways/class.pmprogateway_stripe.php:380
10276
  #: classes/gateways/class.pmprogateway_stripe.php:470
10277
+ #: classes/gateways/class.pmprogateway_stripe.php:386
10278
+ #: classes/gateways/class.pmprogateway_stripe.php:476
10279
  msgid "Stripe Connection:"
10280
  msgstr ""
10281
 
10283
  #: classes/gateways/class.pmprogateway_stripe.php:482
10284
  #: classes/gateways/class.pmprogateway_stripe.php:396
10285
  #: classes/gateways/class.pmprogateway_stripe.php:494
10286
+ #: classes/gateways/class.pmprogateway_stripe.php:402
10287
+ #: classes/gateways/class.pmprogateway_stripe.php:500
10288
  msgid "Disconnect From Stripe"
10289
  msgstr ""
10290
 
10291
  #: classes/gateways/class.pmprogateway_stripe.php:389
10292
  #: classes/gateways/class.pmprogateway_stripe.php:397
10293
+ #: classes/gateways/class.pmprogateway_stripe.php:403
10294
  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."
10295
  msgstr ""
10296
 
10298
  #: classes/gateways/class.pmprogateway_stripe.php:496
10299
  #: classes/gateways/class.pmprogateway_stripe.php:409
10300
  #: classes/gateways/class.pmprogateway_stripe.php:508
10301
+ #: classes/gateways/class.pmprogateway_stripe.php:415
10302
+ #: classes/gateways/class.pmprogateway_stripe.php:514
10303
  msgid "Connect with Stripe"
10304
  msgstr ""
10305
 
10306
  #: classes/gateways/class.pmprogateway_stripe.php:408
10307
  #: classes/gateways/class.pmprogateway_stripe.php:416
10308
+ #: classes/gateways/class.pmprogateway_stripe.php:422
10309
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
10310
  msgstr ""
10311
 
10312
  #: classes/gateways/class.pmprogateway_stripe.php:411
10313
  #: classes/gateways/class.pmprogateway_stripe.php:419
10314
+ #: classes/gateways/class.pmprogateway_stripe.php:425
10315
  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."
10316
  msgstr ""
10317
 
10322
  #: classes/gateways/class.pmprogateway_stripe.php:519
10323
  #: classes/gateways/class.pmprogateway_stripe.php:559
10324
  #: classes/gateways/class.pmprogateway_stripe.php:578
10325
+ #: classes/gateways/class.pmprogateway_stripe.php:437
10326
+ #: classes/gateways/class.pmprogateway_stripe.php:525
10327
+ #: classes/gateways/class.pmprogateway_stripe.php:584
10328
  msgid "Webhook"
10329
  msgstr ""
10330
 
10335
  #: classes/gateways/class.pmprogateway_stripe.php:523
10336
  #: classes/gateways/class.pmprogateway_stripe.php:594
10337
  #: classes/gateways/class.pmprogateway_stripe.php:613
10338
+ #: classes/gateways/class.pmprogateway_stripe.php:441
10339
+ #: classes/gateways/class.pmprogateway_stripe.php:529
10340
+ #: classes/gateways/class.pmprogateway_stripe.php:619
10341
  msgid "Webhook URL"
10342
  msgstr ""
10343
 
10344
  #: classes/gateways/class.pmprogateway_stripe.php:438
10345
  #: classes/gateways/class.pmprogateway_stripe.php:446
10346
+ #: classes/gateways/class.pmprogateway_stripe.php:452
10347
  msgid "Test Mode:"
10348
  msgstr ""
10349
 
10350
  #: classes/gateways/class.pmprogateway_stripe.php:450
10351
  #: classes/gateways/class.pmprogateway_stripe.php:461
10352
+ #: classes/gateways/class.pmprogateway_stripe.php:467
10353
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
10354
  msgstr ""
10355
 
10356
  #: classes/gateways/class.pmprogateway_stripe.php:483
10357
  #: classes/gateways/class.pmprogateway_stripe.php:495
10358
+ #: classes/gateways/class.pmprogateway_stripe.php:501
10359
  msgid "This will disconnect your site from Stripe in test mode only."
10360
  msgstr ""
10361
 
10362
  #: classes/gateways/class.pmprogateway_stripe.php:518
10363
  #: classes/gateways/class.pmprogateway_stripe.php:530
10364
+ #: classes/gateways/class.pmprogateway_stripe.php:536
10365
  msgid "Stripe API Settings (Legacy)"
10366
  msgstr ""
10367
 
10368
  #: classes/gateways/class.pmprogateway_stripe.php:531
10369
  #: classes/gateways/class.pmprogateway_stripe.php:543
10370
  #: classes/gateways/class.pmprogateway_stripe.php:562
10371
+ #: classes/gateways/class.pmprogateway_stripe.php:568
10372
  msgid "Your Publishable Key appears incorrect."
10373
  msgstr ""
10374
 
10378
  #: classes/gateways/class.pmprogateway_stripe.php:587
10379
  #: classes/gateways/class.pmprogateway_stripe.php:582
10380
  #: classes/gateways/class.pmprogateway_stripe.php:606
10381
+ #: classes/gateways/class.pmprogateway_stripe.php:588
10382
+ #: classes/gateways/class.pmprogateway_stripe.php:612
10383
  msgid "Create Webhook"
10384
  msgstr ""
10385
 
10386
  #: classes/gateways/class.pmprogateway_stripe.php:557
10387
  #: classes/gateways/class.pmprogateway_stripe.php:569
10388
  #: classes/gateways/class.pmprogateway_stripe.php:588
10389
+ #: classes/gateways/class.pmprogateway_stripe.php:594
10390
  msgid "A webhook is set up in Stripe, but it is disabled."
10391
  msgstr ""
10392
 
10393
  #: classes/gateways/class.pmprogateway_stripe.php:564
10394
  #: classes/gateways/class.pmprogateway_stripe.php:576
10395
  #: classes/gateways/class.pmprogateway_stripe.php:595
10396
+ #: classes/gateways/class.pmprogateway_stripe.php:601
10397
  msgid "A webhook is set up in Stripe, but it is using an old API version."
10398
  msgstr ""
10399
 
10400
  #: classes/gateways/class.pmprogateway_stripe.php:564
10401
  #: classes/gateways/class.pmprogateway_stripe.php:576
10402
  #: classes/gateways/class.pmprogateway_stripe.php:595
10403
+ #: classes/gateways/class.pmprogateway_stripe.php:601
10404
  msgid "Rebuild Webhook"
10405
  msgstr ""
10406
 
10413
  #: classes/gateways/class.pmprogateway_stripe.php:601
10414
  #: classes/gateways/class.pmprogateway_stripe.php:741
10415
  #: classes/gateways/class.pmprogateway_stripe.php:857
10416
+ #: classes/gateways/class.pmprogateway_stripe.php:607
10417
+ #: classes/gateways/class.pmprogateway_stripe.php:747
10418
+ #: classes/gateways/class.pmprogateway_stripe.php:863
10419
  msgid "Your webhook is enabled."
10420
  msgstr ""
10421
 
10422
  #: classes/gateways/class.pmprogateway_stripe.php:570
10423
  #: classes/gateways/class.pmprogateway_stripe.php:582
10424
  #: classes/gateways/class.pmprogateway_stripe.php:601
10425
+ #: classes/gateways/class.pmprogateway_stripe.php:607
10426
  msgid "Disable Webhook"
10427
  msgstr ""
10428
 
10438
  #: classes/gateways/class.pmprogateway_stripe.php:768
10439
  #: classes/gateways/class.pmprogateway_stripe.php:785
10440
  #: classes/gateways/class.pmprogateway_stripe.php:819
10441
+ #: classes/gateways/class.pmprogateway_stripe.php:614
10442
+ #: classes/gateways/class.pmprogateway_stripe.php:774
10443
+ #: classes/gateways/class.pmprogateway_stripe.php:791
10444
+ #: classes/gateways/class.pmprogateway_stripe.php:825
10445
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
10446
  msgstr ""
10447
 
10448
  #: classes/gateways/class.pmprogateway_stripe.php:589
10449
  #: classes/gateways/class.pmprogateway_stripe.php:601
10450
  #: classes/gateways/class.pmprogateway_stripe.php:620
10451
+ #: classes/gateways/class.pmprogateway_stripe.php:626
10452
  msgid "Other Stripe Settings"
10453
  msgstr ""
10454
 
10455
  #: classes/gateways/class.pmprogateway_stripe.php:593
10456
  #: classes/gateways/class.pmprogateway_stripe.php:605
10457
  #: classes/gateways/class.pmprogateway_stripe.php:624
10458
+ #: classes/gateways/class.pmprogateway_stripe.php:630
10459
  msgid "Stripe API Version"
10460
  msgstr ""
10461
 
10462
  #: classes/gateways/class.pmprogateway_stripe.php:612
10463
  #: classes/gateways/class.pmprogateway_stripe.php:624
10464
  #: classes/gateways/class.pmprogateway_stripe.php:643
10465
+ #: classes/gateways/class.pmprogateway_stripe.php:649
10466
  msgid "Enable Payment Request Button"
10467
  msgstr ""
10468
 
10469
  #: classes/gateways/class.pmprogateway_stripe.php:630
10470
  #: classes/gateways/class.pmprogateway_stripe.php:642
10471
  #: classes/gateways/class.pmprogateway_stripe.php:661
10472
+ #: classes/gateways/class.pmprogateway_stripe.php:667
10473
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
10474
  msgstr ""
10475
 
10476
  #: classes/gateways/class.pmprogateway_stripe.php:643
10477
  #: classes/gateways/class.pmprogateway_stripe.php:655
10478
  #: classes/gateways/class.pmprogateway_stripe.php:674
10479
+ #: classes/gateways/class.pmprogateway_stripe.php:680
10480
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
10481
  msgstr ""
10482
 
10483
  #: classes/gateways/class.pmprogateway_stripe.php:645
10484
  #: classes/gateways/class.pmprogateway_stripe.php:657
10485
  #: classes/gateways/class.pmprogateway_stripe.php:676
10486
+ #: classes/gateways/class.pmprogateway_stripe.php:682
10487
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
10488
  msgstr ""
10489
 
10490
  #: classes/gateways/class.pmprogateway_stripe.php:647
10491
  #: classes/gateways/class.pmprogateway_stripe.php:659
10492
  #: classes/gateways/class.pmprogateway_stripe.php:678
10493
+ #: classes/gateways/class.pmprogateway_stripe.php:684
10494
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
10495
  msgstr ""
10496
 
10497
  #: classes/gateways/class.pmprogateway_stripe.php:649
10498
  #: classes/gateways/class.pmprogateway_stripe.php:661
10499
  #: classes/gateways/class.pmprogateway_stripe.php:680
10500
+ #: classes/gateways/class.pmprogateway_stripe.php:686
10501
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
10502
  msgstr ""
10503
 
10504
  #: classes/gateways/class.pmprogateway_stripe.php:674
10505
  #: classes/gateways/class.pmprogateway_stripe.php:686
10506
  #: classes/gateways/class.pmprogateway_stripe.php:705
10507
+ #: classes/gateways/class.pmprogateway_stripe.php:711
10508
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
10509
  msgstr ""
10510
 
10511
  #: classes/gateways/class.pmprogateway_stripe.php:695
10512
  #: classes/gateways/class.pmprogateway_stripe.php:707
10513
  #: classes/gateways/class.pmprogateway_stripe.php:726
10514
+ #: classes/gateways/class.pmprogateway_stripe.php:732
10515
  msgid "Webhook creation failed. You might already have a webhook set up."
10516
  msgstr ""
10517
 
10521
  #: classes/gateways/class.pmprogateway_stripe.php:847
10522
  #: classes/gateways/class.pmprogateway_stripe.php:792
10523
  #: classes/gateways/class.pmprogateway_stripe.php:866
10524
+ #: classes/gateways/class.pmprogateway_stripe.php:798
10525
+ #: classes/gateways/class.pmprogateway_stripe.php:872
10526
  msgid "There was an error deleting the webhook."
10527
  msgstr ""
10528
 
10529
  #: classes/gateways/class.pmprogateway_stripe.php:811
10530
  #: classes/gateways/class.pmprogateway_stripe.php:823
10531
  #: classes/gateways/class.pmprogateway_stripe.php:842
10532
+ #: classes/gateways/class.pmprogateway_stripe.php:848
10533
  msgid "Webhook creation failed. Please refresh and try again."
10534
  msgstr ""
10535
 
10536
  #: classes/gateways/class.pmprogateway_stripe.php:867
10537
  #: classes/gateways/class.pmprogateway_stripe.php:879
10538
  #: classes/gateways/class.pmprogateway_stripe.php:898
10539
+ #: classes/gateways/class.pmprogateway_stripe.php:904
10540
  msgid "Verification steps confirmed. Your payment is processing."
10541
  msgstr ""
10542
 
10543
  #: classes/gateways/class.pmprogateway_stripe.php:1262
10544
  #: classes/gateways/class.pmprogateway_stripe.php:1274
10545
  #: classes/gateways/class.pmprogateway_stripe.php:1293
10546
+ #: classes/gateways/class.pmprogateway_stripe.php:1299
10547
  msgid "Pay with Credit Card"
10548
  msgstr ""
10549
 
10550
  #: classes/gateways/class.pmprogateway_stripe.php:1296
10551
  #: classes/gateways/class.pmprogateway_stripe.php:1308
10552
  #: classes/gateways/class.pmprogateway_stripe.php:1327
10553
+ #: classes/gateways/class.pmprogateway_stripe.php:1333
10554
  msgid "CVC"
10555
  msgstr ""
10556
 
10557
  #: classes/gateways/class.pmprogateway_stripe.php:1374
10558
  #: classes/gateways/class.pmprogateway_stripe.php:1386
10559
  #: classes/gateways/class.pmprogateway_stripe.php:1405
10560
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
10561
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
10562
  msgstr ""
10563
 
10573
  #: classes/gateways/class.pmprogateway_stripe.php:2016
10574
  #: classes/gateways/class.pmprogateway_stripe.php:2029
10575
  #: classes/gateways/class.pmprogateway_stripe.php:2033
10576
+ #: classes/gateways/class.pmprogateway_stripe.php:2018
10577
+ #: classes/gateways/class.pmprogateway_stripe.php:2022
10578
+ #: classes/gateways/class.pmprogateway_stripe.php:2035
10579
+ #: classes/gateways/class.pmprogateway_stripe.php:2039
10580
  msgid "Error: %s"
10581
  msgstr ""
10582
 
10586
  #: classes/gateways/class.pmprogateway_stripe.php:2834
10587
  #: classes/gateways/class.pmprogateway_stripe.php:2850
10588
  #: classes/gateways/class.pmprogateway_stripe.php:2856
10589
+ #: classes/gateways/class.pmprogateway_stripe.php:2862
10590
  msgid "Error: "
10591
  msgstr ""
10592
 
10593
  #: classes/gateways/class.pmprogateway_stripe.php:2836
10594
  #: classes/gateways/class.pmprogateway_stripe.php:2848
10595
  #: classes/gateways/class.pmprogateway_stripe.php:2870
10596
+ #: classes/gateways/class.pmprogateway_stripe.php:2876
10597
  msgid "Error: Unkown error while refunding charge #%s"
10598
  msgstr ""
10599
 
10600
  #: classes/gateways/class.pmprogateway_stripe.php:3330
10601
  #: classes/gateways/class.pmprogateway_stripe.php:3342
10602
  #: classes/gateways/class.pmprogateway_stripe.php:3364
10603
+ #: classes/gateways/class.pmprogateway_stripe.php:3370
10604
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
10605
  msgstr ""
10606
 
10607
  #: classes/gateways/class.pmprogateway_stripe.php:3347
10608
  #: classes/gateways/class.pmprogateway_stripe.php:3359
10609
  #: classes/gateways/class.pmprogateway_stripe.php:3381
10610
+ #: classes/gateways/class.pmprogateway_stripe.php:3387
10611
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
10612
  msgstr ""
10613
 
10614
  #: classes/gateways/class.pmprogateway_stripe.php:3533
10615
  #: classes/gateways/class.pmprogateway_stripe.php:3545
10616
  #: classes/gateways/class.pmprogateway_stripe.php:3567
10617
+ #: classes/gateways/class.pmprogateway_stripe.php:3573
10618
  msgid "Invalid response from the Stripe Connect server."
10619
  msgstr ""
10620
 
10622
  #: classes/gateways/class.pmprogateway_stripe.php:3561
10623
  #: classes/gateways/class.pmprogateway_stripe.php:3573
10624
  #: classes/gateways/class.pmprogateway_stripe.php:3595
10625
+ #: classes/gateways/class.pmprogateway_stripe.php:3601
10626
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
10627
  msgstr ""
10628
 
10630
  #: classes/gateways/class.pmprogateway_stripe.php:3597
10631
  #: classes/gateways/class.pmprogateway_stripe.php:3609
10632
  #: classes/gateways/class.pmprogateway_stripe.php:3631
10633
+ #: classes/gateways/class.pmprogateway_stripe.php:3637
10634
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
10635
  msgstr ""
10636
 
10637
  #: classes/gateways/class.pmprogateway_stripe.php:3768
10638
  #: classes/gateways/class.pmprogateway_stripe.php:3780
10639
  #: classes/gateways/class.pmprogateway_stripe.php:3802
10640
+ #: classes/gateways/class.pmprogateway_stripe.php:3808
10641
  msgid "Last webhook received at"
10642
  msgstr ""
10643
 
10644
  #: classes/gateways/class.pmprogateway_stripe.php:3770
10645
  #: classes/gateways/class.pmprogateway_stripe.php:3782
10646
  #: classes/gateways/class.pmprogateway_stripe.php:3804
10647
+ #: classes/gateways/class.pmprogateway_stripe.php:3810
10648
  msgid "No webhooks have been received."
10649
  msgstr ""
10650
 
10651
  #: classes/gateways/class.pmprogateway_stripe.php:3774
10652
  #: classes/gateways/class.pmprogateway_stripe.php:3786
10653
  #: classes/gateways/class.pmprogateway_stripe.php:3808
10654
+ #: classes/gateways/class.pmprogateway_stripe.php:3814
10655
  msgid "Your webhook may not be working correctly."
10656
  msgstr ""
10657
 
10658
  #: classes/gateways/class.pmprogateway_stripe.php:3776
10659
  #: classes/gateways/class.pmprogateway_stripe.php:3788
10660
  #: classes/gateways/class.pmprogateway_stripe.php:3810
10661
+ #: classes/gateways/class.pmprogateway_stripe.php:3816
10662
  msgid "Click here for info on setting up your webhook with Stripe."
10663
  msgstr ""
10664
 
12763
 
12764
  #: includes/login.php:429
12765
  #: includes/profile.php:843
12766
+ #: includes/profile.php:855
12767
  msgid "New passwords do not match."
12768
  msgstr ""
12769
 
12770
  #: includes/login.php:433
12771
  #: includes/profile.php:839
12772
+ #: includes/profile.php:851
12773
  msgid "Please complete all fields."
12774
  msgstr ""
12775
 
12799
 
12800
  #: includes/login.php:688
12801
  #: includes/profile.php:891
12802
+ #: includes/profile.php:903
12803
  msgid "New Password"
12804
  msgstr ""
12805
 
12806
  #: includes/login.php:690
12807
  #: includes/profile.php:894
12808
  #: includes/scripts.php:86
12809
+ #: includes/profile.php:906
12810
+ #: includes/scripts.php:85
12811
  msgid "Strength Indicator"
12812
  msgstr ""
12813
 
12814
  #: includes/login.php:694
12815
  #: includes/profile.php:898
12816
+ #: includes/profile.php:910
12817
  msgid "Confirm New Password"
12818
  msgstr ""
12819
 
12910
  #: includes/privacy.php:182
12911
  #: includes/profile.php:425
12912
  #: includes/profile.php:493
12913
+ #: includes/profile.php:499
12914
  msgid "Level ID"
12915
  msgstr ""
12916
 
12917
  #: includes/privacy.php:190
12918
  #: includes/profile.php:496
12919
+ #: includes/profile.php:502
12920
  msgid "Date Modified"
12921
  msgstr ""
12922
 
12923
  #: includes/privacy.php:194
12924
  #: includes/profile.php:497
12925
+ #: includes/profile.php:503
12926
  msgid "End Date"
12927
  msgstr ""
12928
 
12929
  #: includes/privacy.php:198
12930
  #: includes/profile.php:498
12931
+ #: includes/profile.php:504
12932
  msgid "Level Cost"
12933
  msgstr ""
12934
 
13027
  msgstr ""
13028
 
13029
  #: includes/profile.php:485
13030
+ #: includes/profile.php:488
13031
  msgid "No membership orders found."
13032
  msgstr ""
13033
 
13034
  #: includes/profile.php:537
13035
+ #: includes/profile.php:546
13036
  msgid "No membership history found."
13037
  msgstr ""
13038
 
13039
  #: includes/profile.php:644
13040
+ #: includes/profile.php:656
13041
  msgid "Log in to edit your profile."
13042
  msgstr ""
13043
 
13044
  #: includes/profile.php:679
13045
+ #: includes/profile.php:691
13046
  msgid "Please enter a display name."
13047
  msgstr ""
13048
 
13049
  #: includes/profile.php:689
13050
+ #: includes/profile.php:701
13051
  msgid "Please enter an email address."
13052
  msgstr ""
13053
 
13054
  #: includes/profile.php:691
13055
+ #: includes/profile.php:703
13056
  msgid "The email address isn&#8217;t correct."
13057
  msgstr ""
13058
 
13059
  #: includes/profile.php:695
13060
+ #: includes/profile.php:707
13061
  msgid "This email is already registered, please choose another one."
13062
  msgstr ""
13063
 
13064
  #: includes/profile.php:722
13065
+ #: includes/profile.php:734
13066
  msgid "Your profile has been updated."
13067
  msgstr ""
13068
 
13069
  #: includes/profile.php:749
13070
+ #: includes/profile.php:761
13071
  msgid "Display name publicly as"
13072
  msgstr ""
13073
 
13074
  #: includes/profile.php:762
13075
+ #: includes/profile.php:774
13076
  msgid "Site administrators must use the WordPress dashboard to update their email address."
13077
  msgstr ""
13078
 
13079
  #: includes/profile.php:785
13080
+ #: includes/profile.php:797
13081
  msgid "Update Profile"
13082
  msgstr ""
13083
 
13084
  #: includes/profile.php:841
13085
+ #: includes/profile.php:853
13086
  msgid "Please enter your current password."
13087
  msgstr ""
13088
 
13089
  #: includes/profile.php:845
13090
+ #: includes/profile.php:857
13091
  msgid "Your current password is incorrect."
13092
  msgstr ""
13093
 
13094
  #: includes/profile.php:856
13095
+ #: includes/profile.php:868
13096
  msgid "Your password has been updated."
13097
  msgstr ""
13098
 
13099
  #: includes/profile.php:886
13100
+ #: includes/profile.php:898
13101
  msgid "Current Password"
13102
  msgstr ""
13103
 
13104
  #: includes/profile.php:888
13105
  #: includes/profile.php:893
13106
  #: includes/profile.php:900
13107
+ #: includes/profile.php:905
13108
+ #: includes/profile.php:912
13109
  msgid "Required Field"
13110
  msgstr ""
13111
 
13202
  msgstr ""
13203
 
13204
  #: services/braintree-webhook.php:425
13205
+ #: services/braintree-webhook.php:426
13206
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
13207
  msgstr ""
13208
 
13209
  #: services/braintree-webhook.php:427
13210
+ #: services/braintree-webhook.php:428
13211
  msgid "A member's Braintree subscription has expired at %s"
13212
  msgstr ""
13213
 
13526
 
13527
  #: classes/gateways/class.pmprogateway_stripe.php:360
13528
  #: classes/gateways/class.pmprogateway_stripe.php:450
13529
+ #: classes/gateways/class.pmprogateway_stripe.php:366
13530
+ #: classes/gateways/class.pmprogateway_stripe.php:456
13531
  msgid "Connected with Legacy Keys"
13532
  msgstr ""
13533
 
13534
  #: classes/gateways/class.pmprogateway_stripe.php:370
13535
  #: classes/gateways/class.pmprogateway_stripe.php:460
13536
+ #: classes/gateways/class.pmprogateway_stripe.php:376
13537
+ #: classes/gateways/class.pmprogateway_stripe.php:466
13538
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
13539
  msgstr ""
13540
 
13541
  #: classes/gateways/class.pmprogateway_stripe.php:372
13542
  #: classes/gateways/class.pmprogateway_stripe.php:462
13543
+ #: classes/gateways/class.pmprogateway_stripe.php:378
13544
+ #: classes/gateways/class.pmprogateway_stripe.php:468
13545
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
13546
  msgstr ""
13547
 
13598
  msgstr ""
13599
 
13600
  #: classes/gateways/class.pmprogateway_stripe.php:533
13601
+ #: classes/gateways/class.pmprogateway_stripe.php:539
13602
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
13603
  msgstr ""
13604
 
13605
  #: classes/gateways/class.pmprogateway_stripe.php:534
13606
+ #: classes/gateways/class.pmprogateway_stripe.php:540
13607
  msgid "Click here to use the legacy API settings."
13608
  msgstr ""
13609
+
13610
+ #: adminpages/license.php:37
13611
+ msgid "There was an issue validating your license key: %s"
13612
+ msgstr ""
13613
+
13614
+ #: includes/email-templates.php:172
13615
+ msgid ""
13616
+ "<p>There was a new member checkout at !!sitename!!.</p>\n"
13617
+ "\n"
13618
+ "<p><strong>They have chosen to pay by check.</strong></p>\n"
13619
+ "\n"
13620
+ "<p>Below are details about the new membership account and a receipt for the initial membership invoice.</p>\n"
13621
+ "\n"
13622
+ "<p>Account: !!display_name!! (!!user_email!!)</p>\n"
13623
+ "<p>Membership Level: !!membership_level_name!!</p>\n"
13624
+ "<p>Membership Fee: !!membership_cost!!</p>\n"
13625
+ "!!membership_expiration!! !!discount_code!!\n"
13626
+ "\n"
13627
+ "<p>\n"
13628
+ "\tInvoice #!!invoice_id!! on !!invoice_date!!<br />\n"
13629
+ "\tTotal Billed: !!invoice_total!!\n"
13630
+ "</p>\n"
13631
+ "\n"
13632
+ "<p>Log in to your membership account here: !!login_url!!</p>"
13633
+ msgstr ""
13634
+
13635
+ #: includes/license.php:112
13636
+ msgid "Missing key."
13637
+ msgstr ""
13638
+
13639
+ #: shortcodes/pmpro_account.php:145
13640
+ msgctxt "A dash is shown when there is no expiration date."
13641
+ msgid "&#8212;"
13642
+ msgstr ""
languages/paid-memberships-pro-ca_AD.mo CHANGED
Binary file
languages/paid-memberships-pro-ca_AD.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.2\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-09-17T13:56:50+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -261,6 +261,9 @@ msgstr "WordPress.org"
261
  #: adminpages/orders.php:1544
262
  #: adminpages/orders.php:1554
263
  #: adminpages/orders.php:1553
 
 
 
264
  msgid "N/A"
265
  msgstr "N/A"
266
 
@@ -444,6 +447,7 @@ msgstr "Passarela de pagament (Payment Gateway) &amp; SSL"
444
  #: adminpages/orders.php:391
445
  #: adminpages/orders.php:1445
446
  #: adminpages/orders.php:1448
 
447
  msgid "Email"
448
  msgstr "Correu electrònic"
449
 
@@ -632,6 +636,8 @@ msgstr "Amaga els anuncis als subscriptors?"
632
  #: adminpages/advancedsettings.php:479
633
  #: classes/gateways/class.pmprogateway_stripe.php:634
634
  #: classes/gateways/class.pmprogateway_stripe.php:648
 
 
635
  msgid "No"
636
  msgstr "No"
637
 
@@ -730,6 +736,8 @@ msgstr "només “multisite”"
730
  #: adminpages/advancedsettings.php:397
731
  #: classes/gateways/class.pmprogateway_stripe.php:636
732
  #: classes/gateways/class.pmprogateway_stripe.php:650
 
 
733
  msgid "Yes"
734
  msgstr "Sí"
735
 
@@ -1012,6 +1020,7 @@ msgstr "Codi"
1012
  #: includes/privacy.php:186
1013
  #: includes/profile.php:495
1014
  #: adminpages/discountcodes.php:489
 
1015
  msgid "Start Date"
1016
  msgstr "Data d’inici"
1017
 
@@ -1046,6 +1055,7 @@ msgstr "Data d’inici"
1046
  #: classes/gateways/class.pmprogateway_stripe.php:1301
1047
  #: adminpages/discountcodes.php:507
1048
  #: classes/gateways/class.pmprogateway_stripe.php:1320
 
1049
  msgid "Expiration Date"
1050
  msgstr "Data final (d’expiració)"
1051
 
@@ -1185,6 +1195,7 @@ msgstr "Total a facturar"
1185
  #: adminpages/discountcodes.php:612
1186
  #: adminpages/discountcodes.php:699
1187
  #: classes/gateways/class.pmprogateway_stripe.php:1363
 
1188
  msgid "Day(s)"
1189
  msgstr "Dia(es)"
1190
 
@@ -1218,6 +1229,7 @@ msgstr "Dia(es)"
1218
  #: adminpages/discountcodes.php:612
1219
  #: adminpages/discountcodes.php:699
1220
  #: classes/gateways/class.pmprogateway_stripe.php:1365
 
1221
  msgid "Month(s)"
1222
  msgstr "Mes(os)"
1223
 
@@ -1251,6 +1263,7 @@ msgstr "Mes(os)"
1251
  #: adminpages/discountcodes.php:612
1252
  #: adminpages/discountcodes.php:699
1253
  #: classes/gateways/class.pmprogateway_stripe.php:1364
 
1254
  msgid "Week(s)"
1255
  msgstr "Setmana(es)"
1256
 
@@ -1284,6 +1297,7 @@ msgstr "Setmana(es)"
1284
  #: adminpages/discountcodes.php:612
1285
  #: adminpages/discountcodes.php:699
1286
  #: classes/gateways/class.pmprogateway_stripe.php:1366
 
1287
  msgid "Year(s)"
1288
  msgstr "Any(s)"
1289
 
@@ -1882,6 +1896,7 @@ msgstr "Detalls de facturació"
1882
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1883
  #: adminpages/discountcodes.php:608
1884
  #: classes/gateways/class.pmprogateway_stripe.php:1497
 
1885
  msgid "per"
1886
  msgstr "per"
1887
 
@@ -2097,6 +2112,8 @@ msgstr "Salva nivell"
2097
  #: pages/cancel.php:96
2098
  #: shortcodes/pmpro_account.php:106
2099
  #: adminpages/orders.php:968
 
 
2100
  msgid "Cancel"
2101
  msgstr "Cancel·la"
2102
 
@@ -2773,6 +2790,7 @@ msgstr "Per exemple PayPal Express, PayPal Standard, Tarja de crèdit"
2773
  #: adminpages/orders.php:679
2774
  #: classes/gateways/class.pmprogateway_stripe.php:1284
2775
  #: classes/gateways/class.pmprogateway_stripe.php:1303
 
2776
  msgid "Card Type"
2777
  msgstr "Tipus de targeta"
2778
 
@@ -2853,6 +2871,7 @@ msgstr "Any de finalització/expiració"
2853
  #: adminpages/dashboard.php:294
2854
  #: adminpages/orders.php:742
2855
  #: adminpages/orders.php:1348
 
2856
  msgid "Status"
2857
  msgstr "Estat"
2858
 
@@ -4274,6 +4293,7 @@ msgstr "Confirmació per a la seva subscripció %s"
4274
  #: classes/class.pmproemail.php:769
4275
  #: classes/class.pmproemail.php:771
4276
  #: classes/gateways/class.pmprogateway_stripe.php:1333
 
4277
  msgid "Discount Code"
4278
  msgstr "Codi de descompte"
4279
 
@@ -4729,6 +4749,7 @@ msgstr "Per integrar totalment Braintree, assegura’t de configurar Web Hook UR
4729
  #: pages/checkout.php:366
4730
  #: classes/gateways/class.pmprogateway_stripe.php:1263
4731
  #: classes/gateways/class.pmprogateway_stripe.php:1282
 
4732
  msgid "Payment Information"
4733
  msgstr "Informació de pagament"
4734
 
@@ -4753,6 +4774,7 @@ msgstr "Informació de pagament"
4753
  #: pages/checkout.php:367
4754
  #: classes/gateways/class.pmprogateway_stripe.php:1264
4755
  #: classes/gateways/class.pmprogateway_stripe.php:1283
 
4756
  #, php-format
4757
  msgid "We Accept %s"
4758
  msgstr "Acceptem %s"
@@ -4783,6 +4805,7 @@ msgstr "Acceptem %s"
4783
  #: pages/checkout.php:389
4784
  #: classes/gateways/class.pmprogateway_stripe.php:1297
4785
  #: classes/gateways/class.pmprogateway_stripe.php:1316
 
4786
  msgid "Card Number"
4787
  msgstr "Nombre de Tarjeta"
4788
 
@@ -4864,6 +4887,7 @@ msgstr "què és això?"
4864
  #: pages/checkout.php:432
4865
  #: classes/gateways/class.pmprogateway_stripe.php:1319
4866
  #: classes/gateways/class.pmprogateway_stripe.php:1338
 
4867
  msgid "Apply"
4868
  msgstr "Aplica"
4869
 
@@ -5114,6 +5138,7 @@ msgstr "PayPal Website Payments Pro"
5114
  #: classes/gateways/class.pmprogateway_paypal.php:132
5115
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
5116
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
 
5117
  msgid "PayPal Settings"
5118
  msgstr "Configuració PayPal"
5119
 
@@ -5135,6 +5160,7 @@ msgstr "No recomanem utilitzar PayPal Standard. Us recomanem que utilitzeu PayPa
5135
  #: classes/gateways/class.pmprogateway_paypal.php:153
5136
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
5137
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
 
5138
  msgid "Gateway Account Email"
5139
  msgstr "Correu electrònic del compte de la Passarel·la"
5140
 
@@ -5154,6 +5180,7 @@ msgstr "Correu electrònic del compte de la Passarel·la"
5154
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
5155
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
5156
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
 
5157
  msgid "API Username"
5158
  msgstr "API Usuari"
5159
 
@@ -5173,6 +5200,7 @@ msgstr "API Usuari"
5173
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
5174
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
5175
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
 
5176
  msgid "API Password"
5177
  msgstr "API Clau"
5178
 
@@ -5186,6 +5214,7 @@ msgstr "API Clau"
5186
  #: classes/gateways/class.pmprogateway_paypal.php:177
5187
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
5188
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
 
5189
  msgid "API Signature"
5190
  msgstr "API Signatura"
5191
 
@@ -5200,6 +5229,7 @@ msgstr "API Signatura"
5200
  #: classes/gateways/class.pmprogateway_paypal.php:196
5201
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
5202
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
 
5203
  msgid "IPN Handler URL"
5204
  msgstr "IPN Handler URL"
5205
 
@@ -5225,6 +5255,7 @@ msgstr "Aquesta URL passa a PayPal per a tots els nous càrrecs i subscripcions.
5225
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
5226
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
5227
  #: pages/checkout.php:218
 
5228
  msgid "Check Out with PayPal"
5229
  msgstr "Check Out amb PayPal"
5230
 
@@ -5244,6 +5275,7 @@ msgstr "Check Out amb PayPal"
5244
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
5245
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5246
  #: pages/checkout.php:526
 
5247
  msgid "Submit and Check Out"
5248
  msgstr "Envia i fés el Check Out"
5249
 
@@ -5267,6 +5299,7 @@ msgstr "Envia i fés el Check Out"
5267
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5268
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
5269
  #: pages/checkout.php:526
 
5270
  msgid "Submit and Confirm"
5271
  msgstr "Envia i confirma"
5272
 
@@ -5288,6 +5321,7 @@ msgstr "Envia i confirma"
5288
  #: classes/gateways/class.pmprogateway_paypal.php:716
5289
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
5290
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
 
5291
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
5292
  msgstr "Contacteu al propietari del lloc o cancel·leu la vostra subscripció de PayPal per assegurar-te que no et cobraran en el futur."
5293
 
@@ -5301,6 +5335,7 @@ msgstr "Contacteu al propietari del lloc o cancel·leu la vostra subscripció de
5301
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
5302
  #: paid-memberships-pro.php:160
5303
  #: paid-memberships-pro.php:162
 
5304
  msgid "PayPal Express"
5305
  msgstr "PayPal Express"
5306
 
@@ -5312,6 +5347,7 @@ msgstr "PayPal Express"
5312
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
5313
  #: classes/gateways/class.pmprogateway_paypal.php:199
5314
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
 
5315
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
5316
  msgstr "Per integrar completament PayPal, assegura’t de configurar el teu IPN Handler URL a"
5317
 
@@ -5333,6 +5369,8 @@ msgstr "Per integrar completament PayPal, assegura’t de configurar el teu IPN
5333
  #: preheaders/checkout.php:823
5334
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
5335
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
 
 
5336
  msgid "The PayPal Token was lost."
5337
  msgstr "S’ha perdut el Token de PayPal"
5338
 
@@ -5370,6 +5408,7 @@ msgstr "El/la %s de la passarela depèn de %s PHP extensió. Si us plau habilita
5370
  #: classes/gateways/class.pmprogateway_stripe.php:252
5371
  #: paid-memberships-pro.php:159
5372
  #: paid-memberships-pro.php:161
 
5373
  msgid "Stripe"
5374
  msgstr "Stripe"
5375
 
@@ -5390,6 +5429,7 @@ msgstr "Configuració d’Stripe"
5390
  #: classes/gateways/class.pmprogateway_stripe.php:539
5391
  #: classes/gateways/class.pmprogateway_stripe.php:551
5392
  #: classes/gateways/class.pmprogateway_stripe.php:570
 
5393
  msgid "Secret Key"
5394
  msgstr "Secret Key"
5395
 
@@ -5403,6 +5443,7 @@ msgstr "Secret Key"
5403
  #: classes/gateways/class.pmprogateway_stripe.php:523
5404
  #: classes/gateways/class.pmprogateway_stripe.php:535
5405
  #: classes/gateways/class.pmprogateway_stripe.php:554
 
5406
  msgid "Publishable Key"
5407
  msgstr "Clau Publicable"
5408
 
@@ -5416,6 +5457,7 @@ msgstr "Clau Publicable"
5416
  #: classes/gateways/class.pmprogateway_stripe.php:598
5417
  #: classes/gateways/class.pmprogateway_stripe.php:610
5418
  #: classes/gateways/class.pmprogateway_stripe.php:629
 
5419
  msgid "Show Billing Address Fields"
5420
  msgstr "Mostra els camps d’adreça de facturació"
5421
 
@@ -5428,6 +5470,7 @@ msgstr "Mostra els camps d’adreça de facturació"
5428
  #: classes/gateways/class.pmprogateway_stripe.php:607
5429
  #: classes/gateways/class.pmprogateway_stripe.php:619
5430
  #: classes/gateways/class.pmprogateway_stripe.php:638
 
5431
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
5432
  msgstr "Stripe no necessita camps d’adreça de facturació. Escull “No” per amagar-los de la pàgina de Checkout.<br /><strong>Si No, assegura’t de desabilitar la verificació de l’adreça a l’escripori de configuració de l’Stripe.</strong>"
5433
 
@@ -5450,6 +5493,7 @@ msgstr "Per integrar totalment l’Stripe, assegura’t de configurar el teu Web
5450
  #: classes/gateways/class.pmprogateway_stripe.php:1379
5451
  #: classes/gateways/class.pmprogateway_stripe.php:1391
5452
  #: classes/gateways/class.pmprogateway_stripe.php:1410
 
5453
  msgid "Subscription Updates"
5454
  msgstr "Actualització de subscripcions"
5455
 
@@ -5461,6 +5505,7 @@ msgstr "Actualització de subscripcions"
5461
  #: classes/gateways/class.pmprogateway_stripe.php:1383
5462
  #: classes/gateways/class.pmprogateway_stripe.php:1395
5463
  #: classes/gateways/class.pmprogateway_stripe.php:1414
 
5464
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
5465
  msgstr "Actualització de subscripcions, et permet canviar el valor subscripció dels membres en un moment determinat. Assegura’t de clicar Actualitza Perfil després de fer els canvis."
5466
 
@@ -5472,6 +5517,7 @@ msgstr "Actualització de subscripcions, et permet canviar el valor subscripció
5472
  #: classes/gateways/class.pmprogateway_stripe.php:1385
5473
  #: classes/gateways/class.pmprogateway_stripe.php:1397
5474
  #: classes/gateways/class.pmprogateway_stripe.php:1416
 
5475
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
5476
  msgstr "Actualització de subscripcions, et permet canviar el valor subscripció dels membres en un moment determinat. Assegura’t de clicar Actualitza Usuari després de fer els canvis."
5477
 
@@ -5490,6 +5536,7 @@ msgstr "Actualització de subscripcions, et permet canviar el valor subscripció
5490
  #: pages/billing.php:425
5491
  #: classes/gateways/class.pmprogateway_stripe.php:1403
5492
  #: classes/gateways/class.pmprogateway_stripe.php:1422
 
5493
  msgid "Update"
5494
  msgstr "Actualitza"
5495
 
@@ -5501,6 +5548,7 @@ msgstr "Actualitza"
5501
  #: classes/gateways/class.pmprogateway_stripe.php:2480
5502
  #: classes/gateways/class.pmprogateway_stripe.php:2492
5503
  #: classes/gateways/class.pmprogateway_stripe.php:2514
 
5504
  msgid "Could not cancel the old subscription. Updates have not been processed."
5505
  msgstr "No s’ha pogut cancel·lar l’antiga subscripció. Les actualitzacions no s’han processat."
5506
 
@@ -5525,6 +5573,9 @@ msgstr "No s’ha pogut cancel·lar l’antiga subscripció. Les actualitzacions
5525
  #: classes/gateways/class.pmprogateway_stripe.php:2127
5526
  #: classes/gateways/class.pmprogateway_stripe.php:2132
5527
  #: classes/gateways/class.pmprogateway_stripe.php:2137
 
 
 
5528
  msgid "Error creating customer record with Stripe:"
5529
  msgstr "Error creant un registre d’usuari amb Stripe:"
5530
 
@@ -5536,6 +5587,8 @@ msgstr "Error creant un registre d’usuari amb Stripe:"
5536
  #: classes/gateways/class.pmprogateway_stripe.php:2182
5537
  #: classes/gateways/class.pmprogateway_stripe.php:2196
5538
  #: classes/gateways/class.pmprogateway_stripe.php:2201
 
 
5539
  msgid "Error getting subscription with Stripe:"
5540
  msgstr "Error agafant la subscripció amb Stripe:"
5541
 
@@ -5565,6 +5618,8 @@ msgstr "Error agafant la subscripció amb Stripe:"
5565
  #: classes/gateways/class.pmprogateway_stripe.php:2356
5566
  #: classes/gateways/class.pmprogateway_stripe.php:2373
5567
  #: classes/gateways/class.pmprogateway_stripe.php:2378
 
 
5568
  msgid "Error creating plan with Stripe:"
5569
  msgstr "Error creant pla amb Stripe:"
5570
 
@@ -5589,6 +5644,8 @@ msgstr "Error creant pla amb Stripe:"
5589
  #: classes/gateways/class.pmprogateway_stripe.php:2401
5590
  #: classes/gateways/class.pmprogateway_stripe.php:2409
5591
  #: classes/gateways/class.pmprogateway_stripe.php:2423
 
 
5592
  msgid "Error subscribing customer to plan with Stripe:"
5593
  msgstr "Error subscrivint un pla de comprador amb Stripe:"
5594
 
@@ -5607,6 +5664,7 @@ msgstr "Error subscrivint un pla de comprador amb Stripe:"
5607
  #: classes/gateways/class.pmprogateway_stripe.php:2632
5608
  #: classes/gateways/class.pmprogateway_stripe.php:2644
5609
  #: classes/gateways/class.pmprogateway_stripe.php:2666
 
5610
  msgid "Could not cancel old subscription."
5611
  msgstr "No s’ha pogut cancel·lar l’antiga subscripció. "
5612
 
@@ -5622,6 +5680,7 @@ msgstr "No s’ha pogut cancel·lar l’antiga subscripció. "
5622
  #: classes/gateways/class.pmprogateway_stripe.php:2648
5623
  #: classes/gateways/class.pmprogateway_stripe.php:2660
5624
  #: classes/gateways/class.pmprogateway_stripe.php:2682
 
5625
  msgid "Could not find the customer."
5626
  msgstr "No s’ha trobat el comprador."
5627
 
@@ -6690,6 +6749,7 @@ msgstr "La teva clau (license key) ha estat validada."
6690
 
6691
  #: includes/license.php:81
6692
  #: adminpages/license.php:43
 
6693
  msgid "Paid Memberships Pro Support License"
6694
  msgstr "Paid Memberships Pro Support License"
6695
 
@@ -6709,6 +6769,7 @@ msgstr "Visita PMPro <a href=\"http://www.paidmembershipspro.com/login/?redirect
6709
  #: adminpages/dashboard.php:174
6710
  #: adminpages/license.php:49
6711
  #: adminpages/dashboard.php:178
 
6712
  msgid "Your license is invalid or expired."
6713
  msgstr "La teva license és invalida o ha expirat"
6714
 
@@ -6719,6 +6780,7 @@ msgstr "<p><strong>Moltes gràcies!</strong> A valid <strong>%s</strong> license
6719
 
6720
  #: includes/license.php:100
6721
  #: adminpages/license.php:59
 
6722
  msgid "Enter license key here..."
6723
  msgstr "Introdueix license key aquí"
6724
 
@@ -6921,6 +6983,7 @@ msgstr "logout"
6921
  #: adminpages/dashboard.php:224
6922
  #: adminpages/dashboard.php:292
6923
  #: adminpages/orders.php:1343
 
6924
  msgid "Level"
6925
  msgstr "Nivell"
6926
 
@@ -6979,6 +7042,7 @@ msgstr "El pagament de la teva subscripció és gestionat per PayPal. Si us plau
6979
  #: includes/profile.php:747
6980
  #: pages/billing.php:164
6981
  #: pages/checkout.php:234
 
6982
  msgid "First Name"
6983
  msgstr "Nom"
6984
 
@@ -6996,6 +7060,7 @@ msgstr "Nom"
6996
  #: includes/profile.php:748
6997
  #: pages/billing.php:168
6998
  #: pages/checkout.php:238
 
6999
  msgid "Last Name"
7000
  msgstr "Cognoms"
7001
 
@@ -8072,6 +8137,7 @@ msgstr "El codi <strong>%s</strong> s’ha aplicat a la teva comanda."
8072
  #: services/authnet-silent-post.php:138
8073
  #: services/authnet-silent-post.php:141
8074
  #: services/authnet-silent-post.php:173
 
8075
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
8076
  msgstr "<p>Un pagament s’està revisant a Authorize.net.</p><p>Payment Information From Authorize.net"
8077
 
@@ -8138,6 +8204,8 @@ msgstr "Edita el perfil"
8138
  #: includes/profile.php:872
8139
  #: includes/profile.php:909
8140
  #: shortcodes/pmpro_account.php:195
 
 
8141
  msgid "Change Password"
8142
  msgstr "Canvia Clau"
8143
 
@@ -8233,6 +8301,7 @@ msgstr "cada"
8233
  #: adminpages/advancedsettings.php:316
8234
  #: includes/privacy.php:175
8235
  #: includes/profile.php:509
 
8236
  msgid "Never"
8237
  msgstr "Mai"
8238
 
@@ -8570,6 +8639,7 @@ msgstr ""
8570
 
8571
  #: adminpages/admin_header.php:152
8572
  #: classes/gateways/class.pmprogateway_stripe.php:76
 
8573
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
8574
  msgstr ""
8575
 
@@ -8842,6 +8912,7 @@ msgstr ""
8842
  #: adminpages/dashboard.php:177
8843
  #: adminpages/license.php:51
8844
  #: adminpages/dashboard.php:181
 
8845
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
8846
  msgstr ""
8847
 
@@ -9278,18 +9349,23 @@ msgid "Discount Code Applied"
9278
  msgstr ""
9279
 
9280
  #: adminpages/license.php:47
 
9281
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
9282
  msgstr ""
9283
 
9284
  #: adminpages/license.php:49
 
 
9285
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
9286
  msgstr ""
9287
 
9288
  #: adminpages/license.php:61
 
9289
  msgid "Validate Key"
9290
  msgstr ""
9291
 
9292
  #: adminpages/license.php:95
 
9293
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
9294
  msgstr ""
9295
 
@@ -9804,6 +9880,7 @@ msgstr ""
9804
 
9805
  #: classes/gateways/class.pmprogateway_braintree.php:87
9806
  #: classes/gateways/class.pmprogateway_stripe.php:91
 
9807
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
9808
  msgstr ""
9809
 
@@ -10101,6 +10178,7 @@ msgid "Your order has been refused."
10101
  msgstr ""
10102
 
10103
  #: classes/gateways/class.pmprogateway_cybersource.php:922
 
10104
  msgid "Unknown error."
10105
  msgstr ""
10106
 
@@ -10115,23 +10193,28 @@ msgstr ""
10115
  #: classes/gateways/class.pmprogateway_paypal.php:146
10116
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
10117
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
 
10118
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
10119
  msgstr ""
10120
 
10121
  #: classes/gateways/class.pmprogateway_paypal.php:185
10122
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
 
10123
  msgid "Confirmation Step"
10124
  msgstr ""
10125
 
10126
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
 
10127
  msgid "Checkout was already processed."
10128
  msgstr ""
10129
 
10130
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
 
10131
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
10132
  msgstr ""
10133
 
10134
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
 
10135
  msgid "Error creating plan with PayPal."
10136
  msgstr ""
10137
 
@@ -10143,11 +10226,14 @@ msgstr ""
10143
  #: classes/gateways/class.pmprogateway_stripe.php:436
10144
  #: classes/gateways/class.pmprogateway_stripe.php:354
10145
  #: classes/gateways/class.pmprogateway_stripe.php:444
 
 
10146
  msgid "Stripe Connect Settings"
10147
  msgstr ""
10148
 
10149
  #: classes/gateways/class.pmprogateway_stripe.php:352
10150
  #: classes/gateways/class.pmprogateway_stripe.php:356
 
10151
  msgid "Live Mode:"
10152
  msgstr ""
10153
 
@@ -10155,6 +10241,8 @@ msgstr ""
10155
  #: classes/gateways/class.pmprogateway_stripe.php:440
10156
  #: classes/gateways/class.pmprogateway_stripe.php:358
10157
  #: classes/gateways/class.pmprogateway_stripe.php:448
 
 
10158
  msgid "Connected"
10159
  msgstr ""
10160
 
@@ -10162,6 +10250,8 @@ msgstr ""
10162
  #: classes/gateways/class.pmprogateway_stripe.php:442
10163
  #: classes/gateways/class.pmprogateway_stripe.php:362
10164
  #: classes/gateways/class.pmprogateway_stripe.php:452
 
 
10165
  msgid "Not Connected"
10166
  msgstr ""
10167
 
@@ -10169,11 +10259,14 @@ msgstr ""
10169
  #: classes/gateways/class.pmprogateway_stripe.php:449
10170
  #: classes/gateways/class.pmprogateway_stripe.php:369
10171
  #: classes/gateways/class.pmprogateway_stripe.php:459
 
 
10172
  msgid "Your site is using legacy API keys to authenticate with Stripe."
10173
  msgstr ""
10174
 
10175
  #: classes/gateways/class.pmprogateway_stripe.php:364
10176
  #: classes/gateways/class.pmprogateway_stripe.php:371
 
10177
  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."
10178
  msgstr ""
10179
 
@@ -10181,6 +10274,8 @@ msgstr ""
10181
  #: classes/gateways/class.pmprogateway_stripe.php:458
10182
  #: classes/gateways/class.pmprogateway_stripe.php:380
10183
  #: classes/gateways/class.pmprogateway_stripe.php:470
 
 
10184
  msgid "Stripe Connection:"
10185
  msgstr ""
10186
 
@@ -10188,11 +10283,14 @@ msgstr ""
10188
  #: classes/gateways/class.pmprogateway_stripe.php:482
10189
  #: classes/gateways/class.pmprogateway_stripe.php:396
10190
  #: classes/gateways/class.pmprogateway_stripe.php:494
 
 
10191
  msgid "Disconnect From Stripe"
10192
  msgstr ""
10193
 
10194
  #: classes/gateways/class.pmprogateway_stripe.php:389
10195
  #: classes/gateways/class.pmprogateway_stripe.php:397
 
10196
  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."
10197
  msgstr ""
10198
 
@@ -10200,16 +10298,20 @@ msgstr ""
10200
  #: classes/gateways/class.pmprogateway_stripe.php:496
10201
  #: classes/gateways/class.pmprogateway_stripe.php:409
10202
  #: classes/gateways/class.pmprogateway_stripe.php:508
 
 
10203
  msgid "Connect with Stripe"
10204
  msgstr ""
10205
 
10206
  #: classes/gateways/class.pmprogateway_stripe.php:408
10207
  #: classes/gateways/class.pmprogateway_stripe.php:416
 
10208
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
10209
  msgstr ""
10210
 
10211
  #: classes/gateways/class.pmprogateway_stripe.php:411
10212
  #: classes/gateways/class.pmprogateway_stripe.php:419
 
10213
  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."
10214
  msgstr ""
10215
 
@@ -10220,6 +10322,9 @@ msgstr ""
10220
  #: classes/gateways/class.pmprogateway_stripe.php:519
10221
  #: classes/gateways/class.pmprogateway_stripe.php:559
10222
  #: classes/gateways/class.pmprogateway_stripe.php:578
 
 
 
10223
  msgid "Webhook"
10224
  msgstr ""
10225
 
@@ -10230,32 +10335,40 @@ msgstr ""
10230
  #: classes/gateways/class.pmprogateway_stripe.php:523
10231
  #: classes/gateways/class.pmprogateway_stripe.php:594
10232
  #: classes/gateways/class.pmprogateway_stripe.php:613
 
 
 
10233
  msgid "Webhook URL"
10234
  msgstr ""
10235
 
10236
  #: classes/gateways/class.pmprogateway_stripe.php:438
10237
  #: classes/gateways/class.pmprogateway_stripe.php:446
 
10238
  msgid "Test Mode:"
10239
  msgstr ""
10240
 
10241
  #: classes/gateways/class.pmprogateway_stripe.php:450
10242
  #: classes/gateways/class.pmprogateway_stripe.php:461
 
10243
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
10244
  msgstr ""
10245
 
10246
  #: classes/gateways/class.pmprogateway_stripe.php:483
10247
  #: classes/gateways/class.pmprogateway_stripe.php:495
 
10248
  msgid "This will disconnect your site from Stripe in test mode only."
10249
  msgstr ""
10250
 
10251
  #: classes/gateways/class.pmprogateway_stripe.php:518
10252
  #: classes/gateways/class.pmprogateway_stripe.php:530
 
10253
  msgid "Stripe API Settings (Legacy)"
10254
  msgstr ""
10255
 
10256
  #: classes/gateways/class.pmprogateway_stripe.php:531
10257
  #: classes/gateways/class.pmprogateway_stripe.php:543
10258
  #: classes/gateways/class.pmprogateway_stripe.php:562
 
10259
  msgid "Your Publishable Key appears incorrect."
10260
  msgstr ""
10261
 
@@ -10265,24 +10378,29 @@ msgstr ""
10265
  #: classes/gateways/class.pmprogateway_stripe.php:587
10266
  #: classes/gateways/class.pmprogateway_stripe.php:582
10267
  #: classes/gateways/class.pmprogateway_stripe.php:606
 
 
10268
  msgid "Create Webhook"
10269
  msgstr ""
10270
 
10271
  #: classes/gateways/class.pmprogateway_stripe.php:557
10272
  #: classes/gateways/class.pmprogateway_stripe.php:569
10273
  #: classes/gateways/class.pmprogateway_stripe.php:588
 
10274
  msgid "A webhook is set up in Stripe, but it is disabled."
10275
  msgstr ""
10276
 
10277
  #: classes/gateways/class.pmprogateway_stripe.php:564
10278
  #: classes/gateways/class.pmprogateway_stripe.php:576
10279
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
10280
  msgid "A webhook is set up in Stripe, but it is using an old API version."
10281
  msgstr ""
10282
 
10283
  #: classes/gateways/class.pmprogateway_stripe.php:564
10284
  #: classes/gateways/class.pmprogateway_stripe.php:576
10285
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
10286
  msgid "Rebuild Webhook"
10287
  msgstr ""
10288
 
@@ -10295,12 +10413,16 @@ msgstr ""
10295
  #: classes/gateways/class.pmprogateway_stripe.php:601
10296
  #: classes/gateways/class.pmprogateway_stripe.php:741
10297
  #: classes/gateways/class.pmprogateway_stripe.php:857
 
 
 
10298
  msgid "Your webhook is enabled."
10299
  msgstr ""
10300
 
10301
  #: classes/gateways/class.pmprogateway_stripe.php:570
10302
  #: classes/gateways/class.pmprogateway_stripe.php:582
10303
  #: classes/gateways/class.pmprogateway_stripe.php:601
 
10304
  msgid "Disable Webhook"
10305
  msgstr ""
10306
 
@@ -10316,66 +10438,80 @@ msgstr ""
10316
  #: classes/gateways/class.pmprogateway_stripe.php:768
10317
  #: classes/gateways/class.pmprogateway_stripe.php:785
10318
  #: classes/gateways/class.pmprogateway_stripe.php:819
 
 
 
 
10319
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
10320
  msgstr ""
10321
 
10322
  #: classes/gateways/class.pmprogateway_stripe.php:589
10323
  #: classes/gateways/class.pmprogateway_stripe.php:601
10324
  #: classes/gateways/class.pmprogateway_stripe.php:620
 
10325
  msgid "Other Stripe Settings"
10326
  msgstr ""
10327
 
10328
  #: classes/gateways/class.pmprogateway_stripe.php:593
10329
  #: classes/gateways/class.pmprogateway_stripe.php:605
10330
  #: classes/gateways/class.pmprogateway_stripe.php:624
 
10331
  msgid "Stripe API Version"
10332
  msgstr ""
10333
 
10334
  #: classes/gateways/class.pmprogateway_stripe.php:612
10335
  #: classes/gateways/class.pmprogateway_stripe.php:624
10336
  #: classes/gateways/class.pmprogateway_stripe.php:643
 
10337
  msgid "Enable Payment Request Button"
10338
  msgstr ""
10339
 
10340
  #: classes/gateways/class.pmprogateway_stripe.php:630
10341
  #: classes/gateways/class.pmprogateway_stripe.php:642
10342
  #: classes/gateways/class.pmprogateway_stripe.php:661
 
10343
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
10344
  msgstr ""
10345
 
10346
  #: classes/gateways/class.pmprogateway_stripe.php:643
10347
  #: classes/gateways/class.pmprogateway_stripe.php:655
10348
  #: classes/gateways/class.pmprogateway_stripe.php:674
 
10349
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
10350
  msgstr ""
10351
 
10352
  #: classes/gateways/class.pmprogateway_stripe.php:645
10353
  #: classes/gateways/class.pmprogateway_stripe.php:657
10354
  #: classes/gateways/class.pmprogateway_stripe.php:676
 
10355
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
10356
  msgstr ""
10357
 
10358
  #: classes/gateways/class.pmprogateway_stripe.php:647
10359
  #: classes/gateways/class.pmprogateway_stripe.php:659
10360
  #: classes/gateways/class.pmprogateway_stripe.php:678
 
10361
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
10362
  msgstr ""
10363
 
10364
  #: classes/gateways/class.pmprogateway_stripe.php:649
10365
  #: classes/gateways/class.pmprogateway_stripe.php:661
10366
  #: classes/gateways/class.pmprogateway_stripe.php:680
 
10367
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
10368
  msgstr ""
10369
 
10370
  #: classes/gateways/class.pmprogateway_stripe.php:674
10371
  #: classes/gateways/class.pmprogateway_stripe.php:686
10372
  #: classes/gateways/class.pmprogateway_stripe.php:705
 
10373
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
10374
  msgstr ""
10375
 
10376
  #: classes/gateways/class.pmprogateway_stripe.php:695
10377
  #: classes/gateways/class.pmprogateway_stripe.php:707
10378
  #: classes/gateways/class.pmprogateway_stripe.php:726
 
10379
  msgid "Webhook creation failed. You might already have a webhook set up."
10380
  msgstr ""
10381
 
@@ -10385,36 +10521,43 @@ msgstr ""
10385
  #: classes/gateways/class.pmprogateway_stripe.php:847
10386
  #: classes/gateways/class.pmprogateway_stripe.php:792
10387
  #: classes/gateways/class.pmprogateway_stripe.php:866
 
 
10388
  msgid "There was an error deleting the webhook."
10389
  msgstr ""
10390
 
10391
  #: classes/gateways/class.pmprogateway_stripe.php:811
10392
  #: classes/gateways/class.pmprogateway_stripe.php:823
10393
  #: classes/gateways/class.pmprogateway_stripe.php:842
 
10394
  msgid "Webhook creation failed. Please refresh and try again."
10395
  msgstr ""
10396
 
10397
  #: classes/gateways/class.pmprogateway_stripe.php:867
10398
  #: classes/gateways/class.pmprogateway_stripe.php:879
10399
  #: classes/gateways/class.pmprogateway_stripe.php:898
 
10400
  msgid "Verification steps confirmed. Your payment is processing."
10401
  msgstr ""
10402
 
10403
  #: classes/gateways/class.pmprogateway_stripe.php:1262
10404
  #: classes/gateways/class.pmprogateway_stripe.php:1274
10405
  #: classes/gateways/class.pmprogateway_stripe.php:1293
 
10406
  msgid "Pay with Credit Card"
10407
  msgstr ""
10408
 
10409
  #: classes/gateways/class.pmprogateway_stripe.php:1296
10410
  #: classes/gateways/class.pmprogateway_stripe.php:1308
10411
  #: classes/gateways/class.pmprogateway_stripe.php:1327
 
10412
  msgid "CVC"
10413
  msgstr ""
10414
 
10415
  #: classes/gateways/class.pmprogateway_stripe.php:1374
10416
  #: classes/gateways/class.pmprogateway_stripe.php:1386
10417
  #: classes/gateways/class.pmprogateway_stripe.php:1405
 
10418
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
10419
  msgstr ""
10420
 
@@ -10430,6 +10573,10 @@ msgstr ""
10430
  #: classes/gateways/class.pmprogateway_stripe.php:2016
10431
  #: classes/gateways/class.pmprogateway_stripe.php:2029
10432
  #: classes/gateways/class.pmprogateway_stripe.php:2033
 
 
 
 
10433
  msgid "Error: %s"
10434
  msgstr ""
10435
 
@@ -10439,30 +10586,35 @@ msgstr ""
10439
  #: classes/gateways/class.pmprogateway_stripe.php:2834
10440
  #: classes/gateways/class.pmprogateway_stripe.php:2850
10441
  #: classes/gateways/class.pmprogateway_stripe.php:2856
 
10442
  msgid "Error: "
10443
  msgstr ""
10444
 
10445
  #: classes/gateways/class.pmprogateway_stripe.php:2836
10446
  #: classes/gateways/class.pmprogateway_stripe.php:2848
10447
  #: classes/gateways/class.pmprogateway_stripe.php:2870
 
10448
  msgid "Error: Unkown error while refunding charge #%s"
10449
  msgstr ""
10450
 
10451
  #: classes/gateways/class.pmprogateway_stripe.php:3330
10452
  #: classes/gateways/class.pmprogateway_stripe.php:3342
10453
  #: classes/gateways/class.pmprogateway_stripe.php:3364
 
10454
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
10455
  msgstr ""
10456
 
10457
  #: classes/gateways/class.pmprogateway_stripe.php:3347
10458
  #: classes/gateways/class.pmprogateway_stripe.php:3359
10459
  #: classes/gateways/class.pmprogateway_stripe.php:3381
 
10460
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
10461
  msgstr ""
10462
 
10463
  #: classes/gateways/class.pmprogateway_stripe.php:3533
10464
  #: classes/gateways/class.pmprogateway_stripe.php:3545
10465
  #: classes/gateways/class.pmprogateway_stripe.php:3567
 
10466
  msgid "Invalid response from the Stripe Connect server."
10467
  msgstr ""
10468
 
@@ -10470,6 +10622,7 @@ msgstr ""
10470
  #: classes/gateways/class.pmprogateway_stripe.php:3561
10471
  #: classes/gateways/class.pmprogateway_stripe.php:3573
10472
  #: classes/gateways/class.pmprogateway_stripe.php:3595
 
10473
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
10474
  msgstr ""
10475
 
@@ -10477,30 +10630,35 @@ msgstr ""
10477
  #: classes/gateways/class.pmprogateway_stripe.php:3597
10478
  #: classes/gateways/class.pmprogateway_stripe.php:3609
10479
  #: classes/gateways/class.pmprogateway_stripe.php:3631
 
10480
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
10481
  msgstr ""
10482
 
10483
  #: classes/gateways/class.pmprogateway_stripe.php:3768
10484
  #: classes/gateways/class.pmprogateway_stripe.php:3780
10485
  #: classes/gateways/class.pmprogateway_stripe.php:3802
 
10486
  msgid "Last webhook received at"
10487
  msgstr ""
10488
 
10489
  #: classes/gateways/class.pmprogateway_stripe.php:3770
10490
  #: classes/gateways/class.pmprogateway_stripe.php:3782
10491
  #: classes/gateways/class.pmprogateway_stripe.php:3804
 
10492
  msgid "No webhooks have been received."
10493
  msgstr ""
10494
 
10495
  #: classes/gateways/class.pmprogateway_stripe.php:3774
10496
  #: classes/gateways/class.pmprogateway_stripe.php:3786
10497
  #: classes/gateways/class.pmprogateway_stripe.php:3808
 
10498
  msgid "Your webhook may not be working correctly."
10499
  msgstr ""
10500
 
10501
  #: classes/gateways/class.pmprogateway_stripe.php:3776
10502
  #: classes/gateways/class.pmprogateway_stripe.php:3788
10503
  #: classes/gateways/class.pmprogateway_stripe.php:3810
 
10504
  msgid "Click here for info on setting up your webhook with Stripe."
10505
  msgstr ""
10506
 
@@ -12605,11 +12763,13 @@ msgstr ""
12605
 
12606
  #: includes/login.php:429
12607
  #: includes/profile.php:843
 
12608
  msgid "New passwords do not match."
12609
  msgstr ""
12610
 
12611
  #: includes/login.php:433
12612
  #: includes/profile.php:839
 
12613
  msgid "Please complete all fields."
12614
  msgstr ""
12615
 
@@ -12639,17 +12799,21 @@ msgstr ""
12639
 
12640
  #: includes/login.php:688
12641
  #: includes/profile.php:891
 
12642
  msgid "New Password"
12643
  msgstr ""
12644
 
12645
  #: includes/login.php:690
12646
  #: includes/profile.php:894
12647
  #: includes/scripts.php:86
 
 
12648
  msgid "Strength Indicator"
12649
  msgstr ""
12650
 
12651
  #: includes/login.php:694
12652
  #: includes/profile.php:898
 
12653
  msgid "Confirm New Password"
12654
  msgstr ""
12655
 
@@ -12746,21 +12910,25 @@ msgstr ""
12746
  #: includes/privacy.php:182
12747
  #: includes/profile.php:425
12748
  #: includes/profile.php:493
 
12749
  msgid "Level ID"
12750
  msgstr ""
12751
 
12752
  #: includes/privacy.php:190
12753
  #: includes/profile.php:496
 
12754
  msgid "Date Modified"
12755
  msgstr ""
12756
 
12757
  #: includes/privacy.php:194
12758
  #: includes/profile.php:497
 
12759
  msgid "End Date"
12760
  msgstr ""
12761
 
12762
  #: includes/privacy.php:198
12763
  #: includes/profile.php:498
 
12764
  msgid "Level Cost"
12765
  msgstr ""
12766
 
@@ -12859,68 +13027,85 @@ msgid "Membership Levels History"
12859
  msgstr ""
12860
 
12861
  #: includes/profile.php:485
 
12862
  msgid "No membership orders found."
12863
  msgstr ""
12864
 
12865
  #: includes/profile.php:537
 
12866
  msgid "No membership history found."
12867
  msgstr ""
12868
 
12869
  #: includes/profile.php:644
 
12870
  msgid "Log in to edit your profile."
12871
  msgstr ""
12872
 
12873
  #: includes/profile.php:679
 
12874
  msgid "Please enter a display name."
12875
  msgstr ""
12876
 
12877
  #: includes/profile.php:689
 
12878
  msgid "Please enter an email address."
12879
  msgstr ""
12880
 
12881
  #: includes/profile.php:691
 
12882
  msgid "The email address isn&#8217;t correct."
12883
  msgstr ""
12884
 
12885
  #: includes/profile.php:695
 
12886
  msgid "This email is already registered, please choose another one."
12887
  msgstr ""
12888
 
12889
  #: includes/profile.php:722
 
12890
  msgid "Your profile has been updated."
12891
  msgstr ""
12892
 
12893
  #: includes/profile.php:749
 
12894
  msgid "Display name publicly as"
12895
  msgstr ""
12896
 
12897
  #: includes/profile.php:762
 
12898
  msgid "Site administrators must use the WordPress dashboard to update their email address."
12899
  msgstr ""
12900
 
12901
  #: includes/profile.php:785
 
12902
  msgid "Update Profile"
12903
  msgstr ""
12904
 
12905
  #: includes/profile.php:841
 
12906
  msgid "Please enter your current password."
12907
  msgstr ""
12908
 
12909
  #: includes/profile.php:845
 
12910
  msgid "Your current password is incorrect."
12911
  msgstr ""
12912
 
12913
  #: includes/profile.php:856
 
12914
  msgid "Your password has been updated."
12915
  msgstr ""
12916
 
12917
  #: includes/profile.php:886
 
12918
  msgid "Current Password"
12919
  msgstr ""
12920
 
12921
  #: includes/profile.php:888
12922
  #: includes/profile.php:893
12923
  #: includes/profile.php:900
 
 
12924
  msgid "Required Field"
12925
  msgstr ""
12926
 
@@ -13017,10 +13202,12 @@ msgid "That email address is already in use. Please log in, or use a different e
13017
  msgstr ""
13018
 
13019
  #: services/braintree-webhook.php:425
 
13020
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
13021
  msgstr ""
13022
 
13023
  #: services/braintree-webhook.php:427
 
13024
  msgid "A member's Braintree subscription has expired at %s"
13025
  msgstr ""
13026
 
@@ -13339,16 +13526,22 @@ msgstr ""
13339
 
13340
  #: classes/gateways/class.pmprogateway_stripe.php:360
13341
  #: classes/gateways/class.pmprogateway_stripe.php:450
 
 
13342
  msgid "Connected with Legacy Keys"
13343
  msgstr ""
13344
 
13345
  #: classes/gateways/class.pmprogateway_stripe.php:370
13346
  #: classes/gateways/class.pmprogateway_stripe.php:460
 
 
13347
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
13348
  msgstr ""
13349
 
13350
  #: classes/gateways/class.pmprogateway_stripe.php:372
13351
  #: classes/gateways/class.pmprogateway_stripe.php:462
 
 
13352
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
13353
  msgstr ""
13354
 
@@ -13405,9 +13598,45 @@ msgid "missing"
13405
  msgstr ""
13406
 
13407
  #: classes/gateways/class.pmprogateway_stripe.php:533
 
13408
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
13409
  msgstr ""
13410
 
13411
  #: classes/gateways/class.pmprogateway_stripe.php:534
 
13412
  msgid "Click here to use the legacy API settings."
13413
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.3\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-10-11T14:00:02+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
261
  #: adminpages/orders.php:1544
262
  #: adminpages/orders.php:1554
263
  #: adminpages/orders.php:1553
264
+ #: includes/profile.php:520
265
+ #: includes/profile.php:521
266
+ #: includes/profile.php:522
267
  msgid "N/A"
268
  msgstr "N/A"
269
 
447
  #: adminpages/orders.php:391
448
  #: adminpages/orders.php:1445
449
  #: adminpages/orders.php:1448
450
+ #: includes/profile.php:762
451
  msgid "Email"
452
  msgstr "Correu electrònic"
453
 
636
  #: adminpages/advancedsettings.php:479
637
  #: classes/gateways/class.pmprogateway_stripe.php:634
638
  #: classes/gateways/class.pmprogateway_stripe.php:648
639
+ #: classes/gateways/class.pmprogateway_stripe.php:640
640
+ #: classes/gateways/class.pmprogateway_stripe.php:654
641
  msgid "No"
642
  msgstr "No"
643
 
736
  #: adminpages/advancedsettings.php:397
737
  #: classes/gateways/class.pmprogateway_stripe.php:636
738
  #: classes/gateways/class.pmprogateway_stripe.php:650
739
+ #: classes/gateways/class.pmprogateway_stripe.php:642
740
+ #: classes/gateways/class.pmprogateway_stripe.php:656
741
  msgid "Yes"
742
  msgstr "Sí"
743
 
1020
  #: includes/privacy.php:186
1021
  #: includes/profile.php:495
1022
  #: adminpages/discountcodes.php:489
1023
+ #: includes/profile.php:501
1024
  msgid "Start Date"
1025
  msgstr "Data d’inici"
1026
 
1055
  #: classes/gateways/class.pmprogateway_stripe.php:1301
1056
  #: adminpages/discountcodes.php:507
1057
  #: classes/gateways/class.pmprogateway_stripe.php:1320
1058
+ #: classes/gateways/class.pmprogateway_stripe.php:1326
1059
  msgid "Expiration Date"
1060
  msgstr "Data final (d’expiració)"
1061
 
1195
  #: adminpages/discountcodes.php:612
1196
  #: adminpages/discountcodes.php:699
1197
  #: classes/gateways/class.pmprogateway_stripe.php:1363
1198
+ #: classes/gateways/class.pmprogateway_stripe.php:1369
1199
  msgid "Day(s)"
1200
  msgstr "Dia(es)"
1201
 
1229
  #: adminpages/discountcodes.php:612
1230
  #: adminpages/discountcodes.php:699
1231
  #: classes/gateways/class.pmprogateway_stripe.php:1365
1232
+ #: classes/gateways/class.pmprogateway_stripe.php:1371
1233
  msgid "Month(s)"
1234
  msgstr "Mes(os)"
1235
 
1263
  #: adminpages/discountcodes.php:612
1264
  #: adminpages/discountcodes.php:699
1265
  #: classes/gateways/class.pmprogateway_stripe.php:1364
1266
+ #: classes/gateways/class.pmprogateway_stripe.php:1370
1267
  msgid "Week(s)"
1268
  msgstr "Setmana(es)"
1269
 
1297
  #: adminpages/discountcodes.php:612
1298
  #: adminpages/discountcodes.php:699
1299
  #: classes/gateways/class.pmprogateway_stripe.php:1366
1300
+ #: classes/gateways/class.pmprogateway_stripe.php:1372
1301
  msgid "Year(s)"
1302
  msgstr "Any(s)"
1303
 
1896
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1897
  #: adminpages/discountcodes.php:608
1898
  #: classes/gateways/class.pmprogateway_stripe.php:1497
1899
+ #: classes/gateways/class.pmprogateway_stripe.php:1503
1900
  msgid "per"
1901
  msgstr "per"
1902
 
2112
  #: pages/cancel.php:96
2113
  #: shortcodes/pmpro_account.php:106
2114
  #: adminpages/orders.php:968
2115
+ #: includes/profile.php:798
2116
+ #: includes/profile.php:922
2117
  msgid "Cancel"
2118
  msgstr "Cancel·la"
2119
 
2790
  #: adminpages/orders.php:679
2791
  #: classes/gateways/class.pmprogateway_stripe.php:1284
2792
  #: classes/gateways/class.pmprogateway_stripe.php:1303
2793
+ #: classes/gateways/class.pmprogateway_stripe.php:1309
2794
  msgid "Card Type"
2795
  msgstr "Tipus de targeta"
2796
 
2871
  #: adminpages/dashboard.php:294
2872
  #: adminpages/orders.php:742
2873
  #: adminpages/orders.php:1348
2874
+ #: includes/profile.php:505
2875
  msgid "Status"
2876
  msgstr "Estat"
2877
 
4293
  #: classes/class.pmproemail.php:769
4294
  #: classes/class.pmproemail.php:771
4295
  #: classes/gateways/class.pmprogateway_stripe.php:1333
4296
+ #: classes/gateways/class.pmprogateway_stripe.php:1339
4297
  msgid "Discount Code"
4298
  msgstr "Codi de descompte"
4299
 
4749
  #: pages/checkout.php:366
4750
  #: classes/gateways/class.pmprogateway_stripe.php:1263
4751
  #: classes/gateways/class.pmprogateway_stripe.php:1282
4752
+ #: classes/gateways/class.pmprogateway_stripe.php:1288
4753
  msgid "Payment Information"
4754
  msgstr "Informació de pagament"
4755
 
4774
  #: pages/checkout.php:367
4775
  #: classes/gateways/class.pmprogateway_stripe.php:1264
4776
  #: classes/gateways/class.pmprogateway_stripe.php:1283
4777
+ #: classes/gateways/class.pmprogateway_stripe.php:1289
4778
  #, php-format
4779
  msgid "We Accept %s"
4780
  msgstr "Acceptem %s"
4805
  #: pages/checkout.php:389
4806
  #: classes/gateways/class.pmprogateway_stripe.php:1297
4807
  #: classes/gateways/class.pmprogateway_stripe.php:1316
4808
+ #: classes/gateways/class.pmprogateway_stripe.php:1322
4809
  msgid "Card Number"
4810
  msgstr "Nombre de Tarjeta"
4811
 
4887
  #: pages/checkout.php:432
4888
  #: classes/gateways/class.pmprogateway_stripe.php:1319
4889
  #: classes/gateways/class.pmprogateway_stripe.php:1338
4890
+ #: classes/gateways/class.pmprogateway_stripe.php:1344
4891
  msgid "Apply"
4892
  msgstr "Aplica"
4893
 
5138
  #: classes/gateways/class.pmprogateway_paypal.php:132
5139
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
5140
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
5141
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:151
5142
  msgid "PayPal Settings"
5143
  msgstr "Configuració PayPal"
5144
 
5160
  #: classes/gateways/class.pmprogateway_paypal.php:153
5161
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
5162
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
5163
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:172
5164
  msgid "Gateway Account Email"
5165
  msgstr "Correu electrònic del compte de la Passarel·la"
5166
 
5180
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
5181
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
5182
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
5183
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:180
5184
  msgid "API Username"
5185
  msgstr "API Usuari"
5186
 
5200
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
5201
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
5202
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
5203
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:188
5204
  msgid "API Password"
5205
  msgstr "API Clau"
5206
 
5214
  #: classes/gateways/class.pmprogateway_paypal.php:177
5215
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
5216
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
5217
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:196
5218
  msgid "API Signature"
5219
  msgstr "API Signatura"
5220
 
5229
  #: classes/gateways/class.pmprogateway_paypal.php:196
5230
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
5231
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
5232
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:215
5233
  msgid "IPN Handler URL"
5234
  msgstr "IPN Handler URL"
5235
 
5255
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
5256
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
5257
  #: pages/checkout.php:218
5258
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:498
5259
  msgid "Check Out with PayPal"
5260
  msgstr "Check Out amb PayPal"
5261
 
5275
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
5276
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5277
  #: pages/checkout.php:526
5278
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
5279
  msgid "Submit and Check Out"
5280
  msgstr "Envia i fés el Check Out"
5281
 
5299
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5300
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
5301
  #: pages/checkout.php:526
5302
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
5303
  msgid "Submit and Confirm"
5304
  msgstr "Envia i confirma"
5305
 
5321
  #: classes/gateways/class.pmprogateway_paypal.php:716
5322
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
5323
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
5324
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:841
5325
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
5326
  msgstr "Contacteu al propietari del lloc o cancel·leu la vostra subscripció de PayPal per assegurar-te que no et cobraran en el futur."
5327
 
5335
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
5336
  #: paid-memberships-pro.php:160
5337
  #: paid-memberships-pro.php:162
5338
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:94
5339
  msgid "PayPal Express"
5340
  msgstr "PayPal Express"
5341
 
5347
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
5348
  #: classes/gateways/class.pmprogateway_paypal.php:199
5349
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
5350
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:218
5351
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
5352
  msgstr "Per integrar completament PayPal, assegura’t de configurar el teu IPN Handler URL a"
5353
 
5369
  #: preheaders/checkout.php:823
5370
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
5371
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
5372
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:352
5373
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:411
5374
  msgid "The PayPal Token was lost."
5375
  msgstr "S’ha perdut el Token de PayPal"
5376
 
5408
  #: classes/gateways/class.pmprogateway_stripe.php:252
5409
  #: paid-memberships-pro.php:159
5410
  #: paid-memberships-pro.php:161
5411
+ #: classes/gateways/class.pmprogateway_stripe.php:258
5412
  msgid "Stripe"
5413
  msgstr "Stripe"
5414
 
5429
  #: classes/gateways/class.pmprogateway_stripe.php:539
5430
  #: classes/gateways/class.pmprogateway_stripe.php:551
5431
  #: classes/gateways/class.pmprogateway_stripe.php:570
5432
+ #: classes/gateways/class.pmprogateway_stripe.php:576
5433
  msgid "Secret Key"
5434
  msgstr "Secret Key"
5435
 
5443
  #: classes/gateways/class.pmprogateway_stripe.php:523
5444
  #: classes/gateways/class.pmprogateway_stripe.php:535
5445
  #: classes/gateways/class.pmprogateway_stripe.php:554
5446
+ #: classes/gateways/class.pmprogateway_stripe.php:560
5447
  msgid "Publishable Key"
5448
  msgstr "Clau Publicable"
5449
 
5457
  #: classes/gateways/class.pmprogateway_stripe.php:598
5458
  #: classes/gateways/class.pmprogateway_stripe.php:610
5459
  #: classes/gateways/class.pmprogateway_stripe.php:629
5460
+ #: classes/gateways/class.pmprogateway_stripe.php:635
5461
  msgid "Show Billing Address Fields"
5462
  msgstr "Mostra els camps d’adreça de facturació"
5463
 
5470
  #: classes/gateways/class.pmprogateway_stripe.php:607
5471
  #: classes/gateways/class.pmprogateway_stripe.php:619
5472
  #: classes/gateways/class.pmprogateway_stripe.php:638
5473
+ #: classes/gateways/class.pmprogateway_stripe.php:644
5474
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
5475
  msgstr "Stripe no necessita camps d’adreça de facturació. Escull “No” per amagar-los de la pàgina de Checkout.<br /><strong>Si No, assegura’t de desabilitar la verificació de l’adreça a l’escripori de configuració de l’Stripe.</strong>"
5476
 
5493
  #: classes/gateways/class.pmprogateway_stripe.php:1379
5494
  #: classes/gateways/class.pmprogateway_stripe.php:1391
5495
  #: classes/gateways/class.pmprogateway_stripe.php:1410
5496
+ #: classes/gateways/class.pmprogateway_stripe.php:1416
5497
  msgid "Subscription Updates"
5498
  msgstr "Actualització de subscripcions"
5499
 
5505
  #: classes/gateways/class.pmprogateway_stripe.php:1383
5506
  #: classes/gateways/class.pmprogateway_stripe.php:1395
5507
  #: classes/gateways/class.pmprogateway_stripe.php:1414
5508
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
5509
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
5510
  msgstr "Actualització de subscripcions, et permet canviar el valor subscripció dels membres en un moment determinat. Assegura’t de clicar Actualitza Perfil després de fer els canvis."
5511
 
5517
  #: classes/gateways/class.pmprogateway_stripe.php:1385
5518
  #: classes/gateways/class.pmprogateway_stripe.php:1397
5519
  #: classes/gateways/class.pmprogateway_stripe.php:1416
5520
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
5521
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
5522
  msgstr "Actualització de subscripcions, et permet canviar el valor subscripció dels membres en un moment determinat. Assegura’t de clicar Actualitza Usuari després de fer els canvis."
5523
 
5536
  #: pages/billing.php:425
5537
  #: classes/gateways/class.pmprogateway_stripe.php:1403
5538
  #: classes/gateways/class.pmprogateway_stripe.php:1422
5539
+ #: classes/gateways/class.pmprogateway_stripe.php:1428
5540
  msgid "Update"
5541
  msgstr "Actualitza"
5542
 
5548
  #: classes/gateways/class.pmprogateway_stripe.php:2480
5549
  #: classes/gateways/class.pmprogateway_stripe.php:2492
5550
  #: classes/gateways/class.pmprogateway_stripe.php:2514
5551
+ #: classes/gateways/class.pmprogateway_stripe.php:2520
5552
  msgid "Could not cancel the old subscription. Updates have not been processed."
5553
  msgstr "No s’ha pogut cancel·lar l’antiga subscripció. Les actualitzacions no s’han processat."
5554
 
5573
  #: classes/gateways/class.pmprogateway_stripe.php:2127
5574
  #: classes/gateways/class.pmprogateway_stripe.php:2132
5575
  #: classes/gateways/class.pmprogateway_stripe.php:2137
5576
+ #: classes/gateways/class.pmprogateway_stripe.php:2133
5577
+ #: classes/gateways/class.pmprogateway_stripe.php:2138
5578
+ #: classes/gateways/class.pmprogateway_stripe.php:2143
5579
  msgid "Error creating customer record with Stripe:"
5580
  msgstr "Error creant un registre d’usuari amb Stripe:"
5581
 
5587
  #: classes/gateways/class.pmprogateway_stripe.php:2182
5588
  #: classes/gateways/class.pmprogateway_stripe.php:2196
5589
  #: classes/gateways/class.pmprogateway_stripe.php:2201
5590
+ #: classes/gateways/class.pmprogateway_stripe.php:2202
5591
+ #: classes/gateways/class.pmprogateway_stripe.php:2207
5592
  msgid "Error getting subscription with Stripe:"
5593
  msgstr "Error agafant la subscripció amb Stripe:"
5594
 
5618
  #: classes/gateways/class.pmprogateway_stripe.php:2356
5619
  #: classes/gateways/class.pmprogateway_stripe.php:2373
5620
  #: classes/gateways/class.pmprogateway_stripe.php:2378
5621
+ #: classes/gateways/class.pmprogateway_stripe.php:2379
5622
+ #: classes/gateways/class.pmprogateway_stripe.php:2384
5623
  msgid "Error creating plan with Stripe:"
5624
  msgstr "Error creant pla amb Stripe:"
5625
 
5644
  #: classes/gateways/class.pmprogateway_stripe.php:2401
5645
  #: classes/gateways/class.pmprogateway_stripe.php:2409
5646
  #: classes/gateways/class.pmprogateway_stripe.php:2423
5647
+ #: classes/gateways/class.pmprogateway_stripe.php:2415
5648
+ #: classes/gateways/class.pmprogateway_stripe.php:2429
5649
  msgid "Error subscribing customer to plan with Stripe:"
5650
  msgstr "Error subscrivint un pla de comprador amb Stripe:"
5651
 
5664
  #: classes/gateways/class.pmprogateway_stripe.php:2632
5665
  #: classes/gateways/class.pmprogateway_stripe.php:2644
5666
  #: classes/gateways/class.pmprogateway_stripe.php:2666
5667
+ #: classes/gateways/class.pmprogateway_stripe.php:2672
5668
  msgid "Could not cancel old subscription."
5669
  msgstr "No s’ha pogut cancel·lar l’antiga subscripció. "
5670
 
5680
  #: classes/gateways/class.pmprogateway_stripe.php:2648
5681
  #: classes/gateways/class.pmprogateway_stripe.php:2660
5682
  #: classes/gateways/class.pmprogateway_stripe.php:2682
5683
+ #: classes/gateways/class.pmprogateway_stripe.php:2688
5684
  msgid "Could not find the customer."
5685
  msgstr "No s’ha trobat el comprador."
5686
 
6749
 
6750
  #: includes/license.php:81
6751
  #: adminpages/license.php:43
6752
+ #: adminpages/license.php:33
6753
  msgid "Paid Memberships Pro Support License"
6754
  msgstr "Paid Memberships Pro Support License"
6755
 
6769
  #: adminpages/dashboard.php:174
6770
  #: adminpages/license.php:49
6771
  #: adminpages/dashboard.php:178
6772
+ #: adminpages/license.php:41
6773
  msgid "Your license is invalid or expired."
6774
  msgstr "La teva license és invalida o ha expirat"
6775
 
6780
 
6781
  #: includes/license.php:100
6782
  #: adminpages/license.php:59
6783
+ #: adminpages/license.php:51
6784
  msgid "Enter license key here..."
6785
  msgstr "Introdueix license key aquí"
6786
 
6983
  #: adminpages/dashboard.php:224
6984
  #: adminpages/dashboard.php:292
6985
  #: adminpages/orders.php:1343
6986
+ #: includes/profile.php:500
6987
  msgid "Level"
6988
  msgstr "Nivell"
6989
 
7042
  #: includes/profile.php:747
7043
  #: pages/billing.php:164
7044
  #: pages/checkout.php:234
7045
+ #: includes/profile.php:759
7046
  msgid "First Name"
7047
  msgstr "Nom"
7048
 
7060
  #: includes/profile.php:748
7061
  #: pages/billing.php:168
7062
  #: pages/checkout.php:238
7063
+ #: includes/profile.php:760
7064
  msgid "Last Name"
7065
  msgstr "Cognoms"
7066
 
8137
  #: services/authnet-silent-post.php:138
8138
  #: services/authnet-silent-post.php:141
8139
  #: services/authnet-silent-post.php:173
8140
+ #: services/authnet-silent-post.php:176
8141
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
8142
  msgstr "<p>Un pagament s’està revisant a Authorize.net.</p><p>Payment Information From Authorize.net"
8143
 
8204
  #: includes/profile.php:872
8205
  #: includes/profile.php:909
8206
  #: shortcodes/pmpro_account.php:195
8207
+ #: includes/profile.php:884
8208
+ #: includes/profile.php:921
8209
  msgid "Change Password"
8210
  msgstr "Canvia Clau"
8211
 
8301
  #: adminpages/advancedsettings.php:316
8302
  #: includes/privacy.php:175
8303
  #: includes/profile.php:509
8304
+ #: includes/profile.php:515
8305
  msgid "Never"
8306
  msgstr "Mai"
8307
 
8639
 
8640
  #: adminpages/admin_header.php:152
8641
  #: classes/gateways/class.pmprogateway_stripe.php:76
8642
+ #: classes/gateways/class.pmprogateway_stripe.php:82
8643
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
8644
  msgstr ""
8645
 
8912
  #: adminpages/dashboard.php:177
8913
  #: adminpages/license.php:51
8914
  #: adminpages/dashboard.php:181
8915
+ #: adminpages/license.php:43
8916
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
8917
  msgstr ""
8918
 
9349
  msgstr ""
9350
 
9351
  #: adminpages/license.php:47
9352
+ #: adminpages/license.php:39
9353
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
9354
  msgstr ""
9355
 
9356
  #: adminpages/license.php:49
9357
+ #: adminpages/license.php:37
9358
+ #: adminpages/license.php:41
9359
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
9360
  msgstr ""
9361
 
9362
  #: adminpages/license.php:61
9363
+ #: adminpages/license.php:53
9364
  msgid "Validate Key"
9365
  msgstr ""
9366
 
9367
  #: adminpages/license.php:95
9368
+ #: adminpages/license.php:87
9369
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
9370
  msgstr ""
9371
 
9880
 
9881
  #: classes/gateways/class.pmprogateway_braintree.php:87
9882
  #: classes/gateways/class.pmprogateway_stripe.php:91
9883
+ #: classes/gateways/class.pmprogateway_stripe.php:97
9884
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
9885
  msgstr ""
9886
 
10178
  msgstr ""
10179
 
10180
  #: classes/gateways/class.pmprogateway_cybersource.php:922
10181
+ #: includes/license.php:159
10182
  msgid "Unknown error."
10183
  msgstr ""
10184
 
10193
  #: classes/gateways/class.pmprogateway_paypal.php:146
10194
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
10195
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
10196
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:165
10197
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
10198
  msgstr ""
10199
 
10200
  #: classes/gateways/class.pmprogateway_paypal.php:185
10201
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
10202
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:204
10203
  msgid "Confirmation Step"
10204
  msgstr ""
10205
 
10206
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
10207
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:356
10208
  msgid "Checkout was already processed."
10209
  msgstr ""
10210
 
10211
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
10212
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:791
10213
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
10214
  msgstr ""
10215
 
10216
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
10217
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:792
10218
  msgid "Error creating plan with PayPal."
10219
  msgstr ""
10220
 
10226
  #: classes/gateways/class.pmprogateway_stripe.php:436
10227
  #: classes/gateways/class.pmprogateway_stripe.php:354
10228
  #: classes/gateways/class.pmprogateway_stripe.php:444
10229
+ #: classes/gateways/class.pmprogateway_stripe.php:360
10230
+ #: classes/gateways/class.pmprogateway_stripe.php:450
10231
  msgid "Stripe Connect Settings"
10232
  msgstr ""
10233
 
10234
  #: classes/gateways/class.pmprogateway_stripe.php:352
10235
  #: classes/gateways/class.pmprogateway_stripe.php:356
10236
+ #: classes/gateways/class.pmprogateway_stripe.php:362
10237
  msgid "Live Mode:"
10238
  msgstr ""
10239
 
10241
  #: classes/gateways/class.pmprogateway_stripe.php:440
10242
  #: classes/gateways/class.pmprogateway_stripe.php:358
10243
  #: classes/gateways/class.pmprogateway_stripe.php:448
10244
+ #: classes/gateways/class.pmprogateway_stripe.php:364
10245
+ #: classes/gateways/class.pmprogateway_stripe.php:454
10246
  msgid "Connected"
10247
  msgstr ""
10248
 
10250
  #: classes/gateways/class.pmprogateway_stripe.php:442
10251
  #: classes/gateways/class.pmprogateway_stripe.php:362
10252
  #: classes/gateways/class.pmprogateway_stripe.php:452
10253
+ #: classes/gateways/class.pmprogateway_stripe.php:368
10254
+ #: classes/gateways/class.pmprogateway_stripe.php:458
10255
  msgid "Not Connected"
10256
  msgstr ""
10257
 
10259
  #: classes/gateways/class.pmprogateway_stripe.php:449
10260
  #: classes/gateways/class.pmprogateway_stripe.php:369
10261
  #: classes/gateways/class.pmprogateway_stripe.php:459
10262
+ #: classes/gateways/class.pmprogateway_stripe.php:375
10263
+ #: classes/gateways/class.pmprogateway_stripe.php:465
10264
  msgid "Your site is using legacy API keys to authenticate with Stripe."
10265
  msgstr ""
10266
 
10267
  #: classes/gateways/class.pmprogateway_stripe.php:364
10268
  #: classes/gateways/class.pmprogateway_stripe.php:371
10269
+ #: classes/gateways/class.pmprogateway_stripe.php:377
10270
  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."
10271
  msgstr ""
10272
 
10274
  #: classes/gateways/class.pmprogateway_stripe.php:458
10275
  #: classes/gateways/class.pmprogateway_stripe.php:380
10276
  #: classes/gateways/class.pmprogateway_stripe.php:470
10277
+ #: classes/gateways/class.pmprogateway_stripe.php:386
10278
+ #: classes/gateways/class.pmprogateway_stripe.php:476
10279
  msgid "Stripe Connection:"
10280
  msgstr ""
10281
 
10283
  #: classes/gateways/class.pmprogateway_stripe.php:482
10284
  #: classes/gateways/class.pmprogateway_stripe.php:396
10285
  #: classes/gateways/class.pmprogateway_stripe.php:494
10286
+ #: classes/gateways/class.pmprogateway_stripe.php:402
10287
+ #: classes/gateways/class.pmprogateway_stripe.php:500
10288
  msgid "Disconnect From Stripe"
10289
  msgstr ""
10290
 
10291
  #: classes/gateways/class.pmprogateway_stripe.php:389
10292
  #: classes/gateways/class.pmprogateway_stripe.php:397
10293
+ #: classes/gateways/class.pmprogateway_stripe.php:403
10294
  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."
10295
  msgstr ""
10296
 
10298
  #: classes/gateways/class.pmprogateway_stripe.php:496
10299
  #: classes/gateways/class.pmprogateway_stripe.php:409
10300
  #: classes/gateways/class.pmprogateway_stripe.php:508
10301
+ #: classes/gateways/class.pmprogateway_stripe.php:415
10302
+ #: classes/gateways/class.pmprogateway_stripe.php:514
10303
  msgid "Connect with Stripe"
10304
  msgstr ""
10305
 
10306
  #: classes/gateways/class.pmprogateway_stripe.php:408
10307
  #: classes/gateways/class.pmprogateway_stripe.php:416
10308
+ #: classes/gateways/class.pmprogateway_stripe.php:422
10309
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
10310
  msgstr ""
10311
 
10312
  #: classes/gateways/class.pmprogateway_stripe.php:411
10313
  #: classes/gateways/class.pmprogateway_stripe.php:419
10314
+ #: classes/gateways/class.pmprogateway_stripe.php:425
10315
  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."
10316
  msgstr ""
10317
 
10322
  #: classes/gateways/class.pmprogateway_stripe.php:519
10323
  #: classes/gateways/class.pmprogateway_stripe.php:559
10324
  #: classes/gateways/class.pmprogateway_stripe.php:578
10325
+ #: classes/gateways/class.pmprogateway_stripe.php:437
10326
+ #: classes/gateways/class.pmprogateway_stripe.php:525
10327
+ #: classes/gateways/class.pmprogateway_stripe.php:584
10328
  msgid "Webhook"
10329
  msgstr ""
10330
 
10335
  #: classes/gateways/class.pmprogateway_stripe.php:523
10336
  #: classes/gateways/class.pmprogateway_stripe.php:594
10337
  #: classes/gateways/class.pmprogateway_stripe.php:613
10338
+ #: classes/gateways/class.pmprogateway_stripe.php:441
10339
+ #: classes/gateways/class.pmprogateway_stripe.php:529
10340
+ #: classes/gateways/class.pmprogateway_stripe.php:619
10341
  msgid "Webhook URL"
10342
  msgstr ""
10343
 
10344
  #: classes/gateways/class.pmprogateway_stripe.php:438
10345
  #: classes/gateways/class.pmprogateway_stripe.php:446
10346
+ #: classes/gateways/class.pmprogateway_stripe.php:452
10347
  msgid "Test Mode:"
10348
  msgstr ""
10349
 
10350
  #: classes/gateways/class.pmprogateway_stripe.php:450
10351
  #: classes/gateways/class.pmprogateway_stripe.php:461
10352
+ #: classes/gateways/class.pmprogateway_stripe.php:467
10353
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
10354
  msgstr ""
10355
 
10356
  #: classes/gateways/class.pmprogateway_stripe.php:483
10357
  #: classes/gateways/class.pmprogateway_stripe.php:495
10358
+ #: classes/gateways/class.pmprogateway_stripe.php:501
10359
  msgid "This will disconnect your site from Stripe in test mode only."
10360
  msgstr ""
10361
 
10362
  #: classes/gateways/class.pmprogateway_stripe.php:518
10363
  #: classes/gateways/class.pmprogateway_stripe.php:530
10364
+ #: classes/gateways/class.pmprogateway_stripe.php:536
10365
  msgid "Stripe API Settings (Legacy)"
10366
  msgstr ""
10367
 
10368
  #: classes/gateways/class.pmprogateway_stripe.php:531
10369
  #: classes/gateways/class.pmprogateway_stripe.php:543
10370
  #: classes/gateways/class.pmprogateway_stripe.php:562
10371
+ #: classes/gateways/class.pmprogateway_stripe.php:568
10372
  msgid "Your Publishable Key appears incorrect."
10373
  msgstr ""
10374
 
10378
  #: classes/gateways/class.pmprogateway_stripe.php:587
10379
  #: classes/gateways/class.pmprogateway_stripe.php:582
10380
  #: classes/gateways/class.pmprogateway_stripe.php:606
10381
+ #: classes/gateways/class.pmprogateway_stripe.php:588
10382
+ #: classes/gateways/class.pmprogateway_stripe.php:612
10383
  msgid "Create Webhook"
10384
  msgstr ""
10385
 
10386
  #: classes/gateways/class.pmprogateway_stripe.php:557
10387
  #: classes/gateways/class.pmprogateway_stripe.php:569
10388
  #: classes/gateways/class.pmprogateway_stripe.php:588
10389
+ #: classes/gateways/class.pmprogateway_stripe.php:594
10390
  msgid "A webhook is set up in Stripe, but it is disabled."
10391
  msgstr ""
10392
 
10393
  #: classes/gateways/class.pmprogateway_stripe.php:564
10394
  #: classes/gateways/class.pmprogateway_stripe.php:576
10395
  #: classes/gateways/class.pmprogateway_stripe.php:595
10396
+ #: classes/gateways/class.pmprogateway_stripe.php:601
10397
  msgid "A webhook is set up in Stripe, but it is using an old API version."
10398
  msgstr ""
10399
 
10400
  #: classes/gateways/class.pmprogateway_stripe.php:564
10401
  #: classes/gateways/class.pmprogateway_stripe.php:576
10402
  #: classes/gateways/class.pmprogateway_stripe.php:595
10403
+ #: classes/gateways/class.pmprogateway_stripe.php:601
10404
  msgid "Rebuild Webhook"
10405
  msgstr ""
10406
 
10413
  #: classes/gateways/class.pmprogateway_stripe.php:601
10414
  #: classes/gateways/class.pmprogateway_stripe.php:741
10415
  #: classes/gateways/class.pmprogateway_stripe.php:857
10416
+ #: classes/gateways/class.pmprogateway_stripe.php:607
10417
+ #: classes/gateways/class.pmprogateway_stripe.php:747
10418
+ #: classes/gateways/class.pmprogateway_stripe.php:863
10419
  msgid "Your webhook is enabled."
10420
  msgstr ""
10421
 
10422
  #: classes/gateways/class.pmprogateway_stripe.php:570
10423
  #: classes/gateways/class.pmprogateway_stripe.php:582
10424
  #: classes/gateways/class.pmprogateway_stripe.php:601
10425
+ #: classes/gateways/class.pmprogateway_stripe.php:607
10426
  msgid "Disable Webhook"
10427
  msgstr ""
10428
 
10438
  #: classes/gateways/class.pmprogateway_stripe.php:768
10439
  #: classes/gateways/class.pmprogateway_stripe.php:785
10440
  #: classes/gateways/class.pmprogateway_stripe.php:819
10441
+ #: classes/gateways/class.pmprogateway_stripe.php:614
10442
+ #: classes/gateways/class.pmprogateway_stripe.php:774
10443
+ #: classes/gateways/class.pmprogateway_stripe.php:791
10444
+ #: classes/gateways/class.pmprogateway_stripe.php:825
10445
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
10446
  msgstr ""
10447
 
10448
  #: classes/gateways/class.pmprogateway_stripe.php:589
10449
  #: classes/gateways/class.pmprogateway_stripe.php:601
10450
  #: classes/gateways/class.pmprogateway_stripe.php:620
10451
+ #: classes/gateways/class.pmprogateway_stripe.php:626
10452
  msgid "Other Stripe Settings"
10453
  msgstr ""
10454
 
10455
  #: classes/gateways/class.pmprogateway_stripe.php:593
10456
  #: classes/gateways/class.pmprogateway_stripe.php:605
10457
  #: classes/gateways/class.pmprogateway_stripe.php:624
10458
+ #: classes/gateways/class.pmprogateway_stripe.php:630
10459
  msgid "Stripe API Version"
10460
  msgstr ""
10461
 
10462
  #: classes/gateways/class.pmprogateway_stripe.php:612
10463
  #: classes/gateways/class.pmprogateway_stripe.php:624
10464
  #: classes/gateways/class.pmprogateway_stripe.php:643
10465
+ #: classes/gateways/class.pmprogateway_stripe.php:649
10466
  msgid "Enable Payment Request Button"
10467
  msgstr ""
10468
 
10469
  #: classes/gateways/class.pmprogateway_stripe.php:630
10470
  #: classes/gateways/class.pmprogateway_stripe.php:642
10471
  #: classes/gateways/class.pmprogateway_stripe.php:661
10472
+ #: classes/gateways/class.pmprogateway_stripe.php:667
10473
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
10474
  msgstr ""
10475
 
10476
  #: classes/gateways/class.pmprogateway_stripe.php:643
10477
  #: classes/gateways/class.pmprogateway_stripe.php:655
10478
  #: classes/gateways/class.pmprogateway_stripe.php:674
10479
+ #: classes/gateways/class.pmprogateway_stripe.php:680
10480
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
10481
  msgstr ""
10482
 
10483
  #: classes/gateways/class.pmprogateway_stripe.php:645
10484
  #: classes/gateways/class.pmprogateway_stripe.php:657
10485
  #: classes/gateways/class.pmprogateway_stripe.php:676
10486
+ #: classes/gateways/class.pmprogateway_stripe.php:682
10487
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
10488
  msgstr ""
10489
 
10490
  #: classes/gateways/class.pmprogateway_stripe.php:647
10491
  #: classes/gateways/class.pmprogateway_stripe.php:659
10492
  #: classes/gateways/class.pmprogateway_stripe.php:678
10493
+ #: classes/gateways/class.pmprogateway_stripe.php:684
10494
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
10495
  msgstr ""
10496
 
10497
  #: classes/gateways/class.pmprogateway_stripe.php:649
10498
  #: classes/gateways/class.pmprogateway_stripe.php:661
10499
  #: classes/gateways/class.pmprogateway_stripe.php:680
10500
+ #: classes/gateways/class.pmprogateway_stripe.php:686
10501
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
10502
  msgstr ""
10503
 
10504
  #: classes/gateways/class.pmprogateway_stripe.php:674
10505
  #: classes/gateways/class.pmprogateway_stripe.php:686
10506
  #: classes/gateways/class.pmprogateway_stripe.php:705
10507
+ #: classes/gateways/class.pmprogateway_stripe.php:711
10508
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
10509
  msgstr ""
10510
 
10511
  #: classes/gateways/class.pmprogateway_stripe.php:695
10512
  #: classes/gateways/class.pmprogateway_stripe.php:707
10513
  #: classes/gateways/class.pmprogateway_stripe.php:726
10514
+ #: classes/gateways/class.pmprogateway_stripe.php:732
10515
  msgid "Webhook creation failed. You might already have a webhook set up."
10516
  msgstr ""
10517
 
10521
  #: classes/gateways/class.pmprogateway_stripe.php:847
10522
  #: classes/gateways/class.pmprogateway_stripe.php:792
10523
  #: classes/gateways/class.pmprogateway_stripe.php:866
10524
+ #: classes/gateways/class.pmprogateway_stripe.php:798
10525
+ #: classes/gateways/class.pmprogateway_stripe.php:872
10526
  msgid "There was an error deleting the webhook."
10527
  msgstr ""
10528
 
10529
  #: classes/gateways/class.pmprogateway_stripe.php:811
10530
  #: classes/gateways/class.pmprogateway_stripe.php:823
10531
  #: classes/gateways/class.pmprogateway_stripe.php:842
10532
+ #: classes/gateways/class.pmprogateway_stripe.php:848
10533
  msgid "Webhook creation failed. Please refresh and try again."
10534
  msgstr ""
10535
 
10536
  #: classes/gateways/class.pmprogateway_stripe.php:867
10537
  #: classes/gateways/class.pmprogateway_stripe.php:879
10538
  #: classes/gateways/class.pmprogateway_stripe.php:898
10539
+ #: classes/gateways/class.pmprogateway_stripe.php:904
10540
  msgid "Verification steps confirmed. Your payment is processing."
10541
  msgstr ""
10542
 
10543
  #: classes/gateways/class.pmprogateway_stripe.php:1262
10544
  #: classes/gateways/class.pmprogateway_stripe.php:1274
10545
  #: classes/gateways/class.pmprogateway_stripe.php:1293
10546
+ #: classes/gateways/class.pmprogateway_stripe.php:1299
10547
  msgid "Pay with Credit Card"
10548
  msgstr ""
10549
 
10550
  #: classes/gateways/class.pmprogateway_stripe.php:1296
10551
  #: classes/gateways/class.pmprogateway_stripe.php:1308
10552
  #: classes/gateways/class.pmprogateway_stripe.php:1327
10553
+ #: classes/gateways/class.pmprogateway_stripe.php:1333
10554
  msgid "CVC"
10555
  msgstr ""
10556
 
10557
  #: classes/gateways/class.pmprogateway_stripe.php:1374
10558
  #: classes/gateways/class.pmprogateway_stripe.php:1386
10559
  #: classes/gateways/class.pmprogateway_stripe.php:1405
10560
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
10561
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
10562
  msgstr ""
10563
 
10573
  #: classes/gateways/class.pmprogateway_stripe.php:2016
10574
  #: classes/gateways/class.pmprogateway_stripe.php:2029
10575
  #: classes/gateways/class.pmprogateway_stripe.php:2033
10576
+ #: classes/gateways/class.pmprogateway_stripe.php:2018
10577
+ #: classes/gateways/class.pmprogateway_stripe.php:2022
10578
+ #: classes/gateways/class.pmprogateway_stripe.php:2035
10579
+ #: classes/gateways/class.pmprogateway_stripe.php:2039
10580
  msgid "Error: %s"
10581
  msgstr ""
10582
 
10586
  #: classes/gateways/class.pmprogateway_stripe.php:2834
10587
  #: classes/gateways/class.pmprogateway_stripe.php:2850
10588
  #: classes/gateways/class.pmprogateway_stripe.php:2856
10589
+ #: classes/gateways/class.pmprogateway_stripe.php:2862
10590
  msgid "Error: "
10591
  msgstr ""
10592
 
10593
  #: classes/gateways/class.pmprogateway_stripe.php:2836
10594
  #: classes/gateways/class.pmprogateway_stripe.php:2848
10595
  #: classes/gateways/class.pmprogateway_stripe.php:2870
10596
+ #: classes/gateways/class.pmprogateway_stripe.php:2876
10597
  msgid "Error: Unkown error while refunding charge #%s"
10598
  msgstr ""
10599
 
10600
  #: classes/gateways/class.pmprogateway_stripe.php:3330
10601
  #: classes/gateways/class.pmprogateway_stripe.php:3342
10602
  #: classes/gateways/class.pmprogateway_stripe.php:3364
10603
+ #: classes/gateways/class.pmprogateway_stripe.php:3370
10604
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
10605
  msgstr ""
10606
 
10607
  #: classes/gateways/class.pmprogateway_stripe.php:3347
10608
  #: classes/gateways/class.pmprogateway_stripe.php:3359
10609
  #: classes/gateways/class.pmprogateway_stripe.php:3381
10610
+ #: classes/gateways/class.pmprogateway_stripe.php:3387
10611
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
10612
  msgstr ""
10613
 
10614
  #: classes/gateways/class.pmprogateway_stripe.php:3533
10615
  #: classes/gateways/class.pmprogateway_stripe.php:3545
10616
  #: classes/gateways/class.pmprogateway_stripe.php:3567
10617
+ #: classes/gateways/class.pmprogateway_stripe.php:3573
10618
  msgid "Invalid response from the Stripe Connect server."
10619
  msgstr ""
10620
 
10622
  #: classes/gateways/class.pmprogateway_stripe.php:3561
10623
  #: classes/gateways/class.pmprogateway_stripe.php:3573
10624
  #: classes/gateways/class.pmprogateway_stripe.php:3595
10625
+ #: classes/gateways/class.pmprogateway_stripe.php:3601
10626
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
10627
  msgstr ""
10628
 
10630
  #: classes/gateways/class.pmprogateway_stripe.php:3597
10631
  #: classes/gateways/class.pmprogateway_stripe.php:3609
10632
  #: classes/gateways/class.pmprogateway_stripe.php:3631
10633
+ #: classes/gateways/class.pmprogateway_stripe.php:3637
10634
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
10635
  msgstr ""
10636
 
10637
  #: classes/gateways/class.pmprogateway_stripe.php:3768
10638
  #: classes/gateways/class.pmprogateway_stripe.php:3780
10639
  #: classes/gateways/class.pmprogateway_stripe.php:3802
10640
+ #: classes/gateways/class.pmprogateway_stripe.php:3808
10641
  msgid "Last webhook received at"
10642
  msgstr ""
10643
 
10644
  #: classes/gateways/class.pmprogateway_stripe.php:3770
10645
  #: classes/gateways/class.pmprogateway_stripe.php:3782
10646
  #: classes/gateways/class.pmprogateway_stripe.php:3804
10647
+ #: classes/gateways/class.pmprogateway_stripe.php:3810
10648
  msgid "No webhooks have been received."
10649
  msgstr ""
10650
 
10651
  #: classes/gateways/class.pmprogateway_stripe.php:3774
10652
  #: classes/gateways/class.pmprogateway_stripe.php:3786
10653
  #: classes/gateways/class.pmprogateway_stripe.php:3808
10654
+ #: classes/gateways/class.pmprogateway_stripe.php:3814
10655
  msgid "Your webhook may not be working correctly."
10656
  msgstr ""
10657
 
10658
  #: classes/gateways/class.pmprogateway_stripe.php:3776
10659
  #: classes/gateways/class.pmprogateway_stripe.php:3788
10660
  #: classes/gateways/class.pmprogateway_stripe.php:3810
10661
+ #: classes/gateways/class.pmprogateway_stripe.php:3816
10662
  msgid "Click here for info on setting up your webhook with Stripe."
10663
  msgstr ""
10664
 
12763
 
12764
  #: includes/login.php:429
12765
  #: includes/profile.php:843
12766
+ #: includes/profile.php:855
12767
  msgid "New passwords do not match."
12768
  msgstr ""
12769
 
12770
  #: includes/login.php:433
12771
  #: includes/profile.php:839
12772
+ #: includes/profile.php:851
12773
  msgid "Please complete all fields."
12774
  msgstr ""
12775
 
12799
 
12800
  #: includes/login.php:688
12801
  #: includes/profile.php:891
12802
+ #: includes/profile.php:903
12803
  msgid "New Password"
12804
  msgstr ""
12805
 
12806
  #: includes/login.php:690
12807
  #: includes/profile.php:894
12808
  #: includes/scripts.php:86
12809
+ #: includes/profile.php:906
12810
+ #: includes/scripts.php:85
12811
  msgid "Strength Indicator"
12812
  msgstr ""
12813
 
12814
  #: includes/login.php:694
12815
  #: includes/profile.php:898
12816
+ #: includes/profile.php:910
12817
  msgid "Confirm New Password"
12818
  msgstr ""
12819
 
12910
  #: includes/privacy.php:182
12911
  #: includes/profile.php:425
12912
  #: includes/profile.php:493
12913
+ #: includes/profile.php:499
12914
  msgid "Level ID"
12915
  msgstr ""
12916
 
12917
  #: includes/privacy.php:190
12918
  #: includes/profile.php:496
12919
+ #: includes/profile.php:502
12920
  msgid "Date Modified"
12921
  msgstr ""
12922
 
12923
  #: includes/privacy.php:194
12924
  #: includes/profile.php:497
12925
+ #: includes/profile.php:503
12926
  msgid "End Date"
12927
  msgstr ""
12928
 
12929
  #: includes/privacy.php:198
12930
  #: includes/profile.php:498
12931
+ #: includes/profile.php:504
12932
  msgid "Level Cost"
12933
  msgstr ""
12934
 
13027
  msgstr ""
13028
 
13029
  #: includes/profile.php:485
13030
+ #: includes/profile.php:488
13031
  msgid "No membership orders found."
13032
  msgstr ""
13033
 
13034
  #: includes/profile.php:537
13035
+ #: includes/profile.php:546
13036
  msgid "No membership history found."
13037
  msgstr ""
13038
 
13039
  #: includes/profile.php:644
13040
+ #: includes/profile.php:656
13041
  msgid "Log in to edit your profile."
13042
  msgstr ""
13043
 
13044
  #: includes/profile.php:679
13045
+ #: includes/profile.php:691
13046
  msgid "Please enter a display name."
13047
  msgstr ""
13048
 
13049
  #: includes/profile.php:689
13050
+ #: includes/profile.php:701
13051
  msgid "Please enter an email address."
13052
  msgstr ""
13053
 
13054
  #: includes/profile.php:691
13055
+ #: includes/profile.php:703
13056
  msgid "The email address isn&#8217;t correct."
13057
  msgstr ""
13058
 
13059
  #: includes/profile.php:695
13060
+ #: includes/profile.php:707
13061
  msgid "This email is already registered, please choose another one."
13062
  msgstr ""
13063
 
13064
  #: includes/profile.php:722
13065
+ #: includes/profile.php:734
13066
  msgid "Your profile has been updated."
13067
  msgstr ""
13068
 
13069
  #: includes/profile.php:749
13070
+ #: includes/profile.php:761
13071
  msgid "Display name publicly as"
13072
  msgstr ""
13073
 
13074
  #: includes/profile.php:762
13075
+ #: includes/profile.php:774
13076
  msgid "Site administrators must use the WordPress dashboard to update their email address."
13077
  msgstr ""
13078
 
13079
  #: includes/profile.php:785
13080
+ #: includes/profile.php:797
13081
  msgid "Update Profile"
13082
  msgstr ""
13083
 
13084
  #: includes/profile.php:841
13085
+ #: includes/profile.php:853
13086
  msgid "Please enter your current password."
13087
  msgstr ""
13088
 
13089
  #: includes/profile.php:845
13090
+ #: includes/profile.php:857
13091
  msgid "Your current password is incorrect."
13092
  msgstr ""
13093
 
13094
  #: includes/profile.php:856
13095
+ #: includes/profile.php:868
13096
  msgid "Your password has been updated."
13097
  msgstr ""
13098
 
13099
  #: includes/profile.php:886
13100
+ #: includes/profile.php:898
13101
  msgid "Current Password"
13102
  msgstr ""
13103
 
13104
  #: includes/profile.php:888
13105
  #: includes/profile.php:893
13106
  #: includes/profile.php:900
13107
+ #: includes/profile.php:905
13108
+ #: includes/profile.php:912
13109
  msgid "Required Field"
13110
  msgstr ""
13111
 
13202
  msgstr ""
13203
 
13204
  #: services/braintree-webhook.php:425
13205
+ #: services/braintree-webhook.php:426
13206
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
13207
  msgstr ""
13208
 
13209
  #: services/braintree-webhook.php:427
13210
+ #: services/braintree-webhook.php:428
13211
  msgid "A member's Braintree subscription has expired at %s"
13212
  msgstr ""
13213
 
13526
 
13527
  #: classes/gateways/class.pmprogateway_stripe.php:360
13528
  #: classes/gateways/class.pmprogateway_stripe.php:450
13529
+ #: classes/gateways/class.pmprogateway_stripe.php:366
13530
+ #: classes/gateways/class.pmprogateway_stripe.php:456
13531
  msgid "Connected with Legacy Keys"
13532
  msgstr ""
13533
 
13534
  #: classes/gateways/class.pmprogateway_stripe.php:370
13535
  #: classes/gateways/class.pmprogateway_stripe.php:460
13536
+ #: classes/gateways/class.pmprogateway_stripe.php:376
13537
+ #: classes/gateways/class.pmprogateway_stripe.php:466
13538
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
13539
  msgstr ""
13540
 
13541
  #: classes/gateways/class.pmprogateway_stripe.php:372
13542
  #: classes/gateways/class.pmprogateway_stripe.php:462
13543
+ #: classes/gateways/class.pmprogateway_stripe.php:378
13544
+ #: classes/gateways/class.pmprogateway_stripe.php:468
13545
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
13546
  msgstr ""
13547
 
13598
  msgstr ""
13599
 
13600
  #: classes/gateways/class.pmprogateway_stripe.php:533
13601
+ #: classes/gateways/class.pmprogateway_stripe.php:539
13602
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
13603
  msgstr ""
13604
 
13605
  #: classes/gateways/class.pmprogateway_stripe.php:534
13606
+ #: classes/gateways/class.pmprogateway_stripe.php:540
13607
  msgid "Click here to use the legacy API settings."
13608
  msgstr ""
13609
+
13610
+ #: adminpages/license.php:37
13611
+ msgid "There was an issue validating your license key: %s"
13612
+ msgstr ""
13613
+
13614
+ #: includes/email-templates.php:172
13615
+ msgid ""
13616
+ "<p>There was a new member checkout at !!sitename!!.</p>\n"
13617
+ "\n"
13618
+ "<p><strong>They have chosen to pay by check.</strong></p>\n"
13619
+ "\n"
13620
+ "<p>Below are details about the new membership account and a receipt for the initial membership invoice.</p>\n"
13621
+ "\n"
13622
+ "<p>Account: !!display_name!! (!!user_email!!)</p>\n"
13623
+ "<p>Membership Level: !!membership_level_name!!</p>\n"
13624
+ "<p>Membership Fee: !!membership_cost!!</p>\n"
13625
+ "!!membership_expiration!! !!discount_code!!\n"
13626
+ "\n"
13627
+ "<p>\n"
13628
+ "\tInvoice #!!invoice_id!! on !!invoice_date!!<br />\n"
13629
+ "\tTotal Billed: !!invoice_total!!\n"
13630
+ "</p>\n"
13631
+ "\n"
13632
+ "<p>Log in to your membership account here: !!login_url!!</p>"
13633
+ msgstr ""
13634
+
13635
+ #: includes/license.php:112
13636
+ msgid "Missing key."
13637
+ msgstr ""
13638
+
13639
+ #: shortcodes/pmpro_account.php:145
13640
+ msgctxt "A dash is shown when there is no expiration date."
13641
+ msgid "&#8212;"
13642
+ msgstr ""
languages/paid-memberships-pro-ca_ES.mo CHANGED
Binary file
languages/paid-memberships-pro-ca_ES.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.2\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-09-17T13:56:53+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -261,6 +261,9 @@ msgstr "WordPress.org"
261
  #: adminpages/orders.php:1544
262
  #: adminpages/orders.php:1554
263
  #: adminpages/orders.php:1553
 
 
 
264
  msgid "N/A"
265
  msgstr "N/A"
266
 
@@ -444,6 +447,7 @@ msgstr "Passarela de pagament (Payment Gateway) &amp; SSL"
444
  #: adminpages/orders.php:391
445
  #: adminpages/orders.php:1445
446
  #: adminpages/orders.php:1448
 
447
  msgid "Email"
448
  msgstr "Correu electrònic"
449
 
@@ -632,6 +636,8 @@ msgstr "Amaga els anuncis als subscriptors?"
632
  #: adminpages/advancedsettings.php:479
633
  #: classes/gateways/class.pmprogateway_stripe.php:634
634
  #: classes/gateways/class.pmprogateway_stripe.php:648
 
 
635
  msgid "No"
636
  msgstr "No"
637
 
@@ -730,6 +736,8 @@ msgstr "només “multisite”"
730
  #: adminpages/advancedsettings.php:397
731
  #: classes/gateways/class.pmprogateway_stripe.php:636
732
  #: classes/gateways/class.pmprogateway_stripe.php:650
 
 
733
  msgid "Yes"
734
  msgstr "Sí"
735
 
@@ -1012,6 +1020,7 @@ msgstr "Codi"
1012
  #: includes/privacy.php:186
1013
  #: includes/profile.php:495
1014
  #: adminpages/discountcodes.php:489
 
1015
  msgid "Start Date"
1016
  msgstr "Data d’inici"
1017
 
@@ -1046,6 +1055,7 @@ msgstr "Data d’inici"
1046
  #: classes/gateways/class.pmprogateway_stripe.php:1301
1047
  #: adminpages/discountcodes.php:507
1048
  #: classes/gateways/class.pmprogateway_stripe.php:1320
 
1049
  msgid "Expiration Date"
1050
  msgstr "Data final (d’expiració)"
1051
 
@@ -1185,6 +1195,7 @@ msgstr "Total a facturar"
1185
  #: adminpages/discountcodes.php:612
1186
  #: adminpages/discountcodes.php:699
1187
  #: classes/gateways/class.pmprogateway_stripe.php:1363
 
1188
  msgid "Day(s)"
1189
  msgstr "Dia(es)"
1190
 
@@ -1218,6 +1229,7 @@ msgstr "Dia(es)"
1218
  #: adminpages/discountcodes.php:612
1219
  #: adminpages/discountcodes.php:699
1220
  #: classes/gateways/class.pmprogateway_stripe.php:1365
 
1221
  msgid "Month(s)"
1222
  msgstr "Mes(os)"
1223
 
@@ -1251,6 +1263,7 @@ msgstr "Mes(os)"
1251
  #: adminpages/discountcodes.php:612
1252
  #: adminpages/discountcodes.php:699
1253
  #: classes/gateways/class.pmprogateway_stripe.php:1364
 
1254
  msgid "Week(s)"
1255
  msgstr "Setmana(es)"
1256
 
@@ -1284,6 +1297,7 @@ msgstr "Setmana(es)"
1284
  #: adminpages/discountcodes.php:612
1285
  #: adminpages/discountcodes.php:699
1286
  #: classes/gateways/class.pmprogateway_stripe.php:1366
 
1287
  msgid "Year(s)"
1288
  msgstr "Any(s)"
1289
 
@@ -1882,6 +1896,7 @@ msgstr "Detalls de facturació"
1882
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1883
  #: adminpages/discountcodes.php:608
1884
  #: classes/gateways/class.pmprogateway_stripe.php:1497
 
1885
  msgid "per"
1886
  msgstr "per"
1887
 
@@ -2097,6 +2112,8 @@ msgstr "Salva nivell"
2097
  #: pages/cancel.php:96
2098
  #: shortcodes/pmpro_account.php:106
2099
  #: adminpages/orders.php:968
 
 
2100
  msgid "Cancel"
2101
  msgstr "Cancel·la"
2102
 
@@ -2773,6 +2790,7 @@ msgstr "Per exemple PayPal Express, PayPal Standard, Tarja de crèdit"
2773
  #: adminpages/orders.php:679
2774
  #: classes/gateways/class.pmprogateway_stripe.php:1284
2775
  #: classes/gateways/class.pmprogateway_stripe.php:1303
 
2776
  msgid "Card Type"
2777
  msgstr "Tipus de targeta"
2778
 
@@ -2853,6 +2871,7 @@ msgstr "Any de finalització/expiració"
2853
  #: adminpages/dashboard.php:294
2854
  #: adminpages/orders.php:742
2855
  #: adminpages/orders.php:1348
 
2856
  msgid "Status"
2857
  msgstr "Estat"
2858
 
@@ -4274,6 +4293,7 @@ msgstr "Confirmació per a la seva subscripció %s"
4274
  #: classes/class.pmproemail.php:769
4275
  #: classes/class.pmproemail.php:771
4276
  #: classes/gateways/class.pmprogateway_stripe.php:1333
 
4277
  msgid "Discount Code"
4278
  msgstr "Codi de descompte"
4279
 
@@ -4729,6 +4749,7 @@ msgstr "Per integrar totalment Braintree, assegura’t de configurar Web Hook UR
4729
  #: pages/checkout.php:366
4730
  #: classes/gateways/class.pmprogateway_stripe.php:1263
4731
  #: classes/gateways/class.pmprogateway_stripe.php:1282
 
4732
  msgid "Payment Information"
4733
  msgstr "Informació de pagament"
4734
 
@@ -4753,6 +4774,7 @@ msgstr "Informació de pagament"
4753
  #: pages/checkout.php:367
4754
  #: classes/gateways/class.pmprogateway_stripe.php:1264
4755
  #: classes/gateways/class.pmprogateway_stripe.php:1283
 
4756
  #, php-format
4757
  msgid "We Accept %s"
4758
  msgstr "Acceptem %s"
@@ -4783,6 +4805,7 @@ msgstr "Acceptem %s"
4783
  #: pages/checkout.php:389
4784
  #: classes/gateways/class.pmprogateway_stripe.php:1297
4785
  #: classes/gateways/class.pmprogateway_stripe.php:1316
 
4786
  msgid "Card Number"
4787
  msgstr "Nombre de Tarjeta"
4788
 
@@ -4864,6 +4887,7 @@ msgstr "què és això?"
4864
  #: pages/checkout.php:432
4865
  #: classes/gateways/class.pmprogateway_stripe.php:1319
4866
  #: classes/gateways/class.pmprogateway_stripe.php:1338
 
4867
  msgid "Apply"
4868
  msgstr "Aplica"
4869
 
@@ -5114,6 +5138,7 @@ msgstr "PayPal Website Payments Pro"
5114
  #: classes/gateways/class.pmprogateway_paypal.php:132
5115
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
5116
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
 
5117
  msgid "PayPal Settings"
5118
  msgstr "Configuració PayPal"
5119
 
@@ -5135,6 +5160,7 @@ msgstr "No recomanem utilitzar PayPal Standard. Us recomanem que utilitzeu PayPa
5135
  #: classes/gateways/class.pmprogateway_paypal.php:153
5136
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
5137
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
 
5138
  msgid "Gateway Account Email"
5139
  msgstr "Correu electrònic del compte de la Passarel·la"
5140
 
@@ -5154,6 +5180,7 @@ msgstr "Correu electrònic del compte de la Passarel·la"
5154
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
5155
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
5156
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
 
5157
  msgid "API Username"
5158
  msgstr "API Usuari"
5159
 
@@ -5173,6 +5200,7 @@ msgstr "API Usuari"
5173
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
5174
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
5175
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
 
5176
  msgid "API Password"
5177
  msgstr "API Clau"
5178
 
@@ -5186,6 +5214,7 @@ msgstr "API Clau"
5186
  #: classes/gateways/class.pmprogateway_paypal.php:177
5187
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
5188
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
 
5189
  msgid "API Signature"
5190
  msgstr "API Signatura"
5191
 
@@ -5200,6 +5229,7 @@ msgstr "API Signatura"
5200
  #: classes/gateways/class.pmprogateway_paypal.php:196
5201
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
5202
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
 
5203
  msgid "IPN Handler URL"
5204
  msgstr "IPN Handler URL"
5205
 
@@ -5225,6 +5255,7 @@ msgstr "Aquesta URL passa a PayPal per a tots els nous càrrecs i subscripcions.
5225
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
5226
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
5227
  #: pages/checkout.php:218
 
5228
  msgid "Check Out with PayPal"
5229
  msgstr "Check Out amb PayPal"
5230
 
@@ -5244,6 +5275,7 @@ msgstr "Check Out amb PayPal"
5244
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
5245
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5246
  #: pages/checkout.php:526
 
5247
  msgid "Submit and Check Out"
5248
  msgstr "Envia i fés el Check Out"
5249
 
@@ -5267,6 +5299,7 @@ msgstr "Envia i fés el Check Out"
5267
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5268
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
5269
  #: pages/checkout.php:526
 
5270
  msgid "Submit and Confirm"
5271
  msgstr "Envia i confirma"
5272
 
@@ -5288,6 +5321,7 @@ msgstr "Envia i confirma"
5288
  #: classes/gateways/class.pmprogateway_paypal.php:716
5289
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
5290
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
 
5291
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
5292
  msgstr "Contacteu al propietari del lloc o cancel·leu la vostra subscripció de PayPal per assegurar-te que no et cobraran en el futur."
5293
 
@@ -5301,6 +5335,7 @@ msgstr "Contacteu al propietari del lloc o cancel·leu la vostra subscripció de
5301
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
5302
  #: paid-memberships-pro.php:160
5303
  #: paid-memberships-pro.php:162
 
5304
  msgid "PayPal Express"
5305
  msgstr "PayPal Express"
5306
 
@@ -5312,6 +5347,7 @@ msgstr "PayPal Express"
5312
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
5313
  #: classes/gateways/class.pmprogateway_paypal.php:199
5314
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
 
5315
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
5316
  msgstr "Per integrar completament PayPal, assegura’t de configurar el teu IPN Handler URL a"
5317
 
@@ -5333,6 +5369,8 @@ msgstr "Per integrar completament PayPal, assegura’t de configurar el teu IPN
5333
  #: preheaders/checkout.php:823
5334
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
5335
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
 
 
5336
  msgid "The PayPal Token was lost."
5337
  msgstr "S’ha perdut el Token de PayPal"
5338
 
@@ -5370,6 +5408,7 @@ msgstr "El/la %s de la passarela depèn de %s PHP extensió. Si us plau habilita
5370
  #: classes/gateways/class.pmprogateway_stripe.php:252
5371
  #: paid-memberships-pro.php:159
5372
  #: paid-memberships-pro.php:161
 
5373
  msgid "Stripe"
5374
  msgstr "Stripe"
5375
 
@@ -5390,6 +5429,7 @@ msgstr "Configuració d’Stripe"
5390
  #: classes/gateways/class.pmprogateway_stripe.php:539
5391
  #: classes/gateways/class.pmprogateway_stripe.php:551
5392
  #: classes/gateways/class.pmprogateway_stripe.php:570
 
5393
  msgid "Secret Key"
5394
  msgstr "Secret Key"
5395
 
@@ -5403,6 +5443,7 @@ msgstr "Secret Key"
5403
  #: classes/gateways/class.pmprogateway_stripe.php:523
5404
  #: classes/gateways/class.pmprogateway_stripe.php:535
5405
  #: classes/gateways/class.pmprogateway_stripe.php:554
 
5406
  msgid "Publishable Key"
5407
  msgstr "Clau Publicable"
5408
 
@@ -5416,6 +5457,7 @@ msgstr "Clau Publicable"
5416
  #: classes/gateways/class.pmprogateway_stripe.php:598
5417
  #: classes/gateways/class.pmprogateway_stripe.php:610
5418
  #: classes/gateways/class.pmprogateway_stripe.php:629
 
5419
  msgid "Show Billing Address Fields"
5420
  msgstr "Mostra els camps d’adreça de facturació"
5421
 
@@ -5428,6 +5470,7 @@ msgstr "Mostra els camps d’adreça de facturació"
5428
  #: classes/gateways/class.pmprogateway_stripe.php:607
5429
  #: classes/gateways/class.pmprogateway_stripe.php:619
5430
  #: classes/gateways/class.pmprogateway_stripe.php:638
 
5431
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
5432
  msgstr "Stripe no necessita camps d’adreça de facturació. Escull “No” per amagar-los de la pàgina de Checkout.<br /><strong>Si No, assegura’t de desabilitar la verificació de l’adreça a l’escripori de configuració de l’Stripe.</strong>"
5433
 
@@ -5450,6 +5493,7 @@ msgstr "Per integrar totalment l’Stripe, assegura’t de configurar el teu Web
5450
  #: classes/gateways/class.pmprogateway_stripe.php:1379
5451
  #: classes/gateways/class.pmprogateway_stripe.php:1391
5452
  #: classes/gateways/class.pmprogateway_stripe.php:1410
 
5453
  msgid "Subscription Updates"
5454
  msgstr "Actualització de subscripcions"
5455
 
@@ -5461,6 +5505,7 @@ msgstr "Actualització de subscripcions"
5461
  #: classes/gateways/class.pmprogateway_stripe.php:1383
5462
  #: classes/gateways/class.pmprogateway_stripe.php:1395
5463
  #: classes/gateways/class.pmprogateway_stripe.php:1414
 
5464
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
5465
  msgstr "Actualització de subscripcions, et permet canviar el valor subscripció dels membres en un moment determinat. Assegura’t de clicar Actualitza Perfil després de fer els canvis."
5466
 
@@ -5472,6 +5517,7 @@ msgstr "Actualització de subscripcions, et permet canviar el valor subscripció
5472
  #: classes/gateways/class.pmprogateway_stripe.php:1385
5473
  #: classes/gateways/class.pmprogateway_stripe.php:1397
5474
  #: classes/gateways/class.pmprogateway_stripe.php:1416
 
5475
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
5476
  msgstr "Actualització de subscripcions, et permet canviar el valor subscripció dels membres en un moment determinat. Assegura’t de clicar Actualitza Usuari després de fer els canvis."
5477
 
@@ -5490,6 +5536,7 @@ msgstr "Actualització de subscripcions, et permet canviar el valor subscripció
5490
  #: pages/billing.php:425
5491
  #: classes/gateways/class.pmprogateway_stripe.php:1403
5492
  #: classes/gateways/class.pmprogateway_stripe.php:1422
 
5493
  msgid "Update"
5494
  msgstr "Actualitza"
5495
 
@@ -5501,6 +5548,7 @@ msgstr "Actualitza"
5501
  #: classes/gateways/class.pmprogateway_stripe.php:2480
5502
  #: classes/gateways/class.pmprogateway_stripe.php:2492
5503
  #: classes/gateways/class.pmprogateway_stripe.php:2514
 
5504
  msgid "Could not cancel the old subscription. Updates have not been processed."
5505
  msgstr "No s’ha pogut cancel·lar l’antiga subscripció. Les actualitzacions no s’han processat."
5506
 
@@ -5525,6 +5573,9 @@ msgstr "No s’ha pogut cancel·lar l’antiga subscripció. Les actualitzacions
5525
  #: classes/gateways/class.pmprogateway_stripe.php:2127
5526
  #: classes/gateways/class.pmprogateway_stripe.php:2132
5527
  #: classes/gateways/class.pmprogateway_stripe.php:2137
 
 
 
5528
  msgid "Error creating customer record with Stripe:"
5529
  msgstr "Error creant un registre d’usuari amb Stripe:"
5530
 
@@ -5536,6 +5587,8 @@ msgstr "Error creant un registre d’usuari amb Stripe:"
5536
  #: classes/gateways/class.pmprogateway_stripe.php:2182
5537
  #: classes/gateways/class.pmprogateway_stripe.php:2196
5538
  #: classes/gateways/class.pmprogateway_stripe.php:2201
 
 
5539
  msgid "Error getting subscription with Stripe:"
5540
  msgstr "Error agafant la subscripció amb Stripe:"
5541
 
@@ -5565,6 +5618,8 @@ msgstr "Error agafant la subscripció amb Stripe:"
5565
  #: classes/gateways/class.pmprogateway_stripe.php:2356
5566
  #: classes/gateways/class.pmprogateway_stripe.php:2373
5567
  #: classes/gateways/class.pmprogateway_stripe.php:2378
 
 
5568
  msgid "Error creating plan with Stripe:"
5569
  msgstr "Error creant pla amb Stripe:"
5570
 
@@ -5589,6 +5644,8 @@ msgstr "Error creant pla amb Stripe:"
5589
  #: classes/gateways/class.pmprogateway_stripe.php:2401
5590
  #: classes/gateways/class.pmprogateway_stripe.php:2409
5591
  #: classes/gateways/class.pmprogateway_stripe.php:2423
 
 
5592
  msgid "Error subscribing customer to plan with Stripe:"
5593
  msgstr "Error subscrivint un pla de comprador amb Stripe:"
5594
 
@@ -5607,6 +5664,7 @@ msgstr "Error subscrivint un pla de comprador amb Stripe:"
5607
  #: classes/gateways/class.pmprogateway_stripe.php:2632
5608
  #: classes/gateways/class.pmprogateway_stripe.php:2644
5609
  #: classes/gateways/class.pmprogateway_stripe.php:2666
 
5610
  msgid "Could not cancel old subscription."
5611
  msgstr "No s’ha pogut cancel·lar l’antiga subscripció. "
5612
 
@@ -5622,6 +5680,7 @@ msgstr "No s’ha pogut cancel·lar l’antiga subscripció. "
5622
  #: classes/gateways/class.pmprogateway_stripe.php:2648
5623
  #: classes/gateways/class.pmprogateway_stripe.php:2660
5624
  #: classes/gateways/class.pmprogateway_stripe.php:2682
 
5625
  msgid "Could not find the customer."
5626
  msgstr "No s’ha trobat el comprador."
5627
 
@@ -6690,6 +6749,7 @@ msgstr "La teva clau (license key) ha estat validada."
6690
 
6691
  #: includes/license.php:81
6692
  #: adminpages/license.php:43
 
6693
  msgid "Paid Memberships Pro Support License"
6694
  msgstr "Paid Memberships Pro Support License"
6695
 
@@ -6709,6 +6769,7 @@ msgstr "Visita PMPro <a href=\"http://www.paidmembershipspro.com/login/?redirect
6709
  #: adminpages/dashboard.php:174
6710
  #: adminpages/license.php:49
6711
  #: adminpages/dashboard.php:178
 
6712
  msgid "Your license is invalid or expired."
6713
  msgstr "La teva license és invalida o ha expirat"
6714
 
@@ -6719,6 +6780,7 @@ msgstr "<p><strong>Moltes gràcies!</strong> A valid <strong>%s</strong> license
6719
 
6720
  #: includes/license.php:100
6721
  #: adminpages/license.php:59
 
6722
  msgid "Enter license key here..."
6723
  msgstr "Introdueix license key aquí"
6724
 
@@ -6921,6 +6983,7 @@ msgstr "logout"
6921
  #: adminpages/dashboard.php:224
6922
  #: adminpages/dashboard.php:292
6923
  #: adminpages/orders.php:1343
 
6924
  msgid "Level"
6925
  msgstr "Nivell"
6926
 
@@ -6979,6 +7042,7 @@ msgstr "El pagament de la teva subscripció és gestionat per PayPal. Si us plau
6979
  #: includes/profile.php:747
6980
  #: pages/billing.php:164
6981
  #: pages/checkout.php:234
 
6982
  msgid "First Name"
6983
  msgstr "Nom"
6984
 
@@ -6996,6 +7060,7 @@ msgstr "Nom"
6996
  #: includes/profile.php:748
6997
  #: pages/billing.php:168
6998
  #: pages/checkout.php:238
 
6999
  msgid "Last Name"
7000
  msgstr "Cognoms"
7001
 
@@ -8072,6 +8137,7 @@ msgstr "El codi <strong>%s</strong> s’ha aplicat a la teva comanda."
8072
  #: services/authnet-silent-post.php:138
8073
  #: services/authnet-silent-post.php:141
8074
  #: services/authnet-silent-post.php:173
 
8075
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
8076
  msgstr "<p>Un pagament s’està revisant a Authorize.net.</p><p>Payment Information From Authorize.net"
8077
 
@@ -8138,6 +8204,8 @@ msgstr "Edita el perfil"
8138
  #: includes/profile.php:872
8139
  #: includes/profile.php:909
8140
  #: shortcodes/pmpro_account.php:195
 
 
8141
  msgid "Change Password"
8142
  msgstr "Canvia Clau"
8143
 
@@ -8233,6 +8301,7 @@ msgstr "cada"
8233
  #: adminpages/advancedsettings.php:316
8234
  #: includes/privacy.php:175
8235
  #: includes/profile.php:509
 
8236
  msgid "Never"
8237
  msgstr "Mai"
8238
 
@@ -8570,6 +8639,7 @@ msgstr ""
8570
 
8571
  #: adminpages/admin_header.php:152
8572
  #: classes/gateways/class.pmprogateway_stripe.php:76
 
8573
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
8574
  msgstr ""
8575
 
@@ -8842,6 +8912,7 @@ msgstr ""
8842
  #: adminpages/dashboard.php:177
8843
  #: adminpages/license.php:51
8844
  #: adminpages/dashboard.php:181
 
8845
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
8846
  msgstr ""
8847
 
@@ -9278,18 +9349,23 @@ msgid "Discount Code Applied"
9278
  msgstr ""
9279
 
9280
  #: adminpages/license.php:47
 
9281
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
9282
  msgstr ""
9283
 
9284
  #: adminpages/license.php:49
 
 
9285
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
9286
  msgstr ""
9287
 
9288
  #: adminpages/license.php:61
 
9289
  msgid "Validate Key"
9290
  msgstr ""
9291
 
9292
  #: adminpages/license.php:95
 
9293
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
9294
  msgstr ""
9295
 
@@ -9804,6 +9880,7 @@ msgstr ""
9804
 
9805
  #: classes/gateways/class.pmprogateway_braintree.php:87
9806
  #: classes/gateways/class.pmprogateway_stripe.php:91
 
9807
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
9808
  msgstr ""
9809
 
@@ -10101,6 +10178,7 @@ msgid "Your order has been refused."
10101
  msgstr ""
10102
 
10103
  #: classes/gateways/class.pmprogateway_cybersource.php:922
 
10104
  msgid "Unknown error."
10105
  msgstr ""
10106
 
@@ -10115,23 +10193,28 @@ msgstr ""
10115
  #: classes/gateways/class.pmprogateway_paypal.php:146
10116
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
10117
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
 
10118
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
10119
  msgstr ""
10120
 
10121
  #: classes/gateways/class.pmprogateway_paypal.php:185
10122
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
 
10123
  msgid "Confirmation Step"
10124
  msgstr ""
10125
 
10126
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
 
10127
  msgid "Checkout was already processed."
10128
  msgstr ""
10129
 
10130
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
 
10131
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
10132
  msgstr ""
10133
 
10134
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
 
10135
  msgid "Error creating plan with PayPal."
10136
  msgstr ""
10137
 
@@ -10143,11 +10226,14 @@ msgstr ""
10143
  #: classes/gateways/class.pmprogateway_stripe.php:436
10144
  #: classes/gateways/class.pmprogateway_stripe.php:354
10145
  #: classes/gateways/class.pmprogateway_stripe.php:444
 
 
10146
  msgid "Stripe Connect Settings"
10147
  msgstr ""
10148
 
10149
  #: classes/gateways/class.pmprogateway_stripe.php:352
10150
  #: classes/gateways/class.pmprogateway_stripe.php:356
 
10151
  msgid "Live Mode:"
10152
  msgstr ""
10153
 
@@ -10155,6 +10241,8 @@ msgstr ""
10155
  #: classes/gateways/class.pmprogateway_stripe.php:440
10156
  #: classes/gateways/class.pmprogateway_stripe.php:358
10157
  #: classes/gateways/class.pmprogateway_stripe.php:448
 
 
10158
  msgid "Connected"
10159
  msgstr ""
10160
 
@@ -10162,6 +10250,8 @@ msgstr ""
10162
  #: classes/gateways/class.pmprogateway_stripe.php:442
10163
  #: classes/gateways/class.pmprogateway_stripe.php:362
10164
  #: classes/gateways/class.pmprogateway_stripe.php:452
 
 
10165
  msgid "Not Connected"
10166
  msgstr ""
10167
 
@@ -10169,11 +10259,14 @@ msgstr ""
10169
  #: classes/gateways/class.pmprogateway_stripe.php:449
10170
  #: classes/gateways/class.pmprogateway_stripe.php:369
10171
  #: classes/gateways/class.pmprogateway_stripe.php:459
 
 
10172
  msgid "Your site is using legacy API keys to authenticate with Stripe."
10173
  msgstr ""
10174
 
10175
  #: classes/gateways/class.pmprogateway_stripe.php:364
10176
  #: classes/gateways/class.pmprogateway_stripe.php:371
 
10177
  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."
10178
  msgstr ""
10179
 
@@ -10181,6 +10274,8 @@ msgstr ""
10181
  #: classes/gateways/class.pmprogateway_stripe.php:458
10182
  #: classes/gateways/class.pmprogateway_stripe.php:380
10183
  #: classes/gateways/class.pmprogateway_stripe.php:470
 
 
10184
  msgid "Stripe Connection:"
10185
  msgstr ""
10186
 
@@ -10188,11 +10283,14 @@ msgstr ""
10188
  #: classes/gateways/class.pmprogateway_stripe.php:482
10189
  #: classes/gateways/class.pmprogateway_stripe.php:396
10190
  #: classes/gateways/class.pmprogateway_stripe.php:494
 
 
10191
  msgid "Disconnect From Stripe"
10192
  msgstr ""
10193
 
10194
  #: classes/gateways/class.pmprogateway_stripe.php:389
10195
  #: classes/gateways/class.pmprogateway_stripe.php:397
 
10196
  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."
10197
  msgstr ""
10198
 
@@ -10200,16 +10298,20 @@ msgstr ""
10200
  #: classes/gateways/class.pmprogateway_stripe.php:496
10201
  #: classes/gateways/class.pmprogateway_stripe.php:409
10202
  #: classes/gateways/class.pmprogateway_stripe.php:508
 
 
10203
  msgid "Connect with Stripe"
10204
  msgstr ""
10205
 
10206
  #: classes/gateways/class.pmprogateway_stripe.php:408
10207
  #: classes/gateways/class.pmprogateway_stripe.php:416
 
10208
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
10209
  msgstr ""
10210
 
10211
  #: classes/gateways/class.pmprogateway_stripe.php:411
10212
  #: classes/gateways/class.pmprogateway_stripe.php:419
 
10213
  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."
10214
  msgstr ""
10215
 
@@ -10220,6 +10322,9 @@ msgstr ""
10220
  #: classes/gateways/class.pmprogateway_stripe.php:519
10221
  #: classes/gateways/class.pmprogateway_stripe.php:559
10222
  #: classes/gateways/class.pmprogateway_stripe.php:578
 
 
 
10223
  msgid "Webhook"
10224
  msgstr ""
10225
 
@@ -10230,32 +10335,40 @@ msgstr ""
10230
  #: classes/gateways/class.pmprogateway_stripe.php:523
10231
  #: classes/gateways/class.pmprogateway_stripe.php:594
10232
  #: classes/gateways/class.pmprogateway_stripe.php:613
 
 
 
10233
  msgid "Webhook URL"
10234
  msgstr ""
10235
 
10236
  #: classes/gateways/class.pmprogateway_stripe.php:438
10237
  #: classes/gateways/class.pmprogateway_stripe.php:446
 
10238
  msgid "Test Mode:"
10239
  msgstr ""
10240
 
10241
  #: classes/gateways/class.pmprogateway_stripe.php:450
10242
  #: classes/gateways/class.pmprogateway_stripe.php:461
 
10243
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
10244
  msgstr ""
10245
 
10246
  #: classes/gateways/class.pmprogateway_stripe.php:483
10247
  #: classes/gateways/class.pmprogateway_stripe.php:495
 
10248
  msgid "This will disconnect your site from Stripe in test mode only."
10249
  msgstr ""
10250
 
10251
  #: classes/gateways/class.pmprogateway_stripe.php:518
10252
  #: classes/gateways/class.pmprogateway_stripe.php:530
 
10253
  msgid "Stripe API Settings (Legacy)"
10254
  msgstr ""
10255
 
10256
  #: classes/gateways/class.pmprogateway_stripe.php:531
10257
  #: classes/gateways/class.pmprogateway_stripe.php:543
10258
  #: classes/gateways/class.pmprogateway_stripe.php:562
 
10259
  msgid "Your Publishable Key appears incorrect."
10260
  msgstr ""
10261
 
@@ -10265,24 +10378,29 @@ msgstr ""
10265
  #: classes/gateways/class.pmprogateway_stripe.php:587
10266
  #: classes/gateways/class.pmprogateway_stripe.php:582
10267
  #: classes/gateways/class.pmprogateway_stripe.php:606
 
 
10268
  msgid "Create Webhook"
10269
  msgstr ""
10270
 
10271
  #: classes/gateways/class.pmprogateway_stripe.php:557
10272
  #: classes/gateways/class.pmprogateway_stripe.php:569
10273
  #: classes/gateways/class.pmprogateway_stripe.php:588
 
10274
  msgid "A webhook is set up in Stripe, but it is disabled."
10275
  msgstr ""
10276
 
10277
  #: classes/gateways/class.pmprogateway_stripe.php:564
10278
  #: classes/gateways/class.pmprogateway_stripe.php:576
10279
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
10280
  msgid "A webhook is set up in Stripe, but it is using an old API version."
10281
  msgstr ""
10282
 
10283
  #: classes/gateways/class.pmprogateway_stripe.php:564
10284
  #: classes/gateways/class.pmprogateway_stripe.php:576
10285
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
10286
  msgid "Rebuild Webhook"
10287
  msgstr ""
10288
 
@@ -10295,12 +10413,16 @@ msgstr ""
10295
  #: classes/gateways/class.pmprogateway_stripe.php:601
10296
  #: classes/gateways/class.pmprogateway_stripe.php:741
10297
  #: classes/gateways/class.pmprogateway_stripe.php:857
 
 
 
10298
  msgid "Your webhook is enabled."
10299
  msgstr ""
10300
 
10301
  #: classes/gateways/class.pmprogateway_stripe.php:570
10302
  #: classes/gateways/class.pmprogateway_stripe.php:582
10303
  #: classes/gateways/class.pmprogateway_stripe.php:601
 
10304
  msgid "Disable Webhook"
10305
  msgstr ""
10306
 
@@ -10316,66 +10438,80 @@ msgstr ""
10316
  #: classes/gateways/class.pmprogateway_stripe.php:768
10317
  #: classes/gateways/class.pmprogateway_stripe.php:785
10318
  #: classes/gateways/class.pmprogateway_stripe.php:819
 
 
 
 
10319
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
10320
  msgstr ""
10321
 
10322
  #: classes/gateways/class.pmprogateway_stripe.php:589
10323
  #: classes/gateways/class.pmprogateway_stripe.php:601
10324
  #: classes/gateways/class.pmprogateway_stripe.php:620
 
10325
  msgid "Other Stripe Settings"
10326
  msgstr ""
10327
 
10328
  #: classes/gateways/class.pmprogateway_stripe.php:593
10329
  #: classes/gateways/class.pmprogateway_stripe.php:605
10330
  #: classes/gateways/class.pmprogateway_stripe.php:624
 
10331
  msgid "Stripe API Version"
10332
  msgstr ""
10333
 
10334
  #: classes/gateways/class.pmprogateway_stripe.php:612
10335
  #: classes/gateways/class.pmprogateway_stripe.php:624
10336
  #: classes/gateways/class.pmprogateway_stripe.php:643
 
10337
  msgid "Enable Payment Request Button"
10338
  msgstr ""
10339
 
10340
  #: classes/gateways/class.pmprogateway_stripe.php:630
10341
  #: classes/gateways/class.pmprogateway_stripe.php:642
10342
  #: classes/gateways/class.pmprogateway_stripe.php:661
 
10343
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
10344
  msgstr ""
10345
 
10346
  #: classes/gateways/class.pmprogateway_stripe.php:643
10347
  #: classes/gateways/class.pmprogateway_stripe.php:655
10348
  #: classes/gateways/class.pmprogateway_stripe.php:674
 
10349
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
10350
  msgstr ""
10351
 
10352
  #: classes/gateways/class.pmprogateway_stripe.php:645
10353
  #: classes/gateways/class.pmprogateway_stripe.php:657
10354
  #: classes/gateways/class.pmprogateway_stripe.php:676
 
10355
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
10356
  msgstr ""
10357
 
10358
  #: classes/gateways/class.pmprogateway_stripe.php:647
10359
  #: classes/gateways/class.pmprogateway_stripe.php:659
10360
  #: classes/gateways/class.pmprogateway_stripe.php:678
 
10361
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
10362
  msgstr ""
10363
 
10364
  #: classes/gateways/class.pmprogateway_stripe.php:649
10365
  #: classes/gateways/class.pmprogateway_stripe.php:661
10366
  #: classes/gateways/class.pmprogateway_stripe.php:680
 
10367
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
10368
  msgstr ""
10369
 
10370
  #: classes/gateways/class.pmprogateway_stripe.php:674
10371
  #: classes/gateways/class.pmprogateway_stripe.php:686
10372
  #: classes/gateways/class.pmprogateway_stripe.php:705
 
10373
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
10374
  msgstr ""
10375
 
10376
  #: classes/gateways/class.pmprogateway_stripe.php:695
10377
  #: classes/gateways/class.pmprogateway_stripe.php:707
10378
  #: classes/gateways/class.pmprogateway_stripe.php:726
 
10379
  msgid "Webhook creation failed. You might already have a webhook set up."
10380
  msgstr ""
10381
 
@@ -10385,36 +10521,43 @@ msgstr ""
10385
  #: classes/gateways/class.pmprogateway_stripe.php:847
10386
  #: classes/gateways/class.pmprogateway_stripe.php:792
10387
  #: classes/gateways/class.pmprogateway_stripe.php:866
 
 
10388
  msgid "There was an error deleting the webhook."
10389
  msgstr ""
10390
 
10391
  #: classes/gateways/class.pmprogateway_stripe.php:811
10392
  #: classes/gateways/class.pmprogateway_stripe.php:823
10393
  #: classes/gateways/class.pmprogateway_stripe.php:842
 
10394
  msgid "Webhook creation failed. Please refresh and try again."
10395
  msgstr ""
10396
 
10397
  #: classes/gateways/class.pmprogateway_stripe.php:867
10398
  #: classes/gateways/class.pmprogateway_stripe.php:879
10399
  #: classes/gateways/class.pmprogateway_stripe.php:898
 
10400
  msgid "Verification steps confirmed. Your payment is processing."
10401
  msgstr ""
10402
 
10403
  #: classes/gateways/class.pmprogateway_stripe.php:1262
10404
  #: classes/gateways/class.pmprogateway_stripe.php:1274
10405
  #: classes/gateways/class.pmprogateway_stripe.php:1293
 
10406
  msgid "Pay with Credit Card"
10407
  msgstr ""
10408
 
10409
  #: classes/gateways/class.pmprogateway_stripe.php:1296
10410
  #: classes/gateways/class.pmprogateway_stripe.php:1308
10411
  #: classes/gateways/class.pmprogateway_stripe.php:1327
 
10412
  msgid "CVC"
10413
  msgstr ""
10414
 
10415
  #: classes/gateways/class.pmprogateway_stripe.php:1374
10416
  #: classes/gateways/class.pmprogateway_stripe.php:1386
10417
  #: classes/gateways/class.pmprogateway_stripe.php:1405
 
10418
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
10419
  msgstr ""
10420
 
@@ -10430,6 +10573,10 @@ msgstr ""
10430
  #: classes/gateways/class.pmprogateway_stripe.php:2016
10431
  #: classes/gateways/class.pmprogateway_stripe.php:2029
10432
  #: classes/gateways/class.pmprogateway_stripe.php:2033
 
 
 
 
10433
  msgid "Error: %s"
10434
  msgstr ""
10435
 
@@ -10439,30 +10586,35 @@ msgstr ""
10439
  #: classes/gateways/class.pmprogateway_stripe.php:2834
10440
  #: classes/gateways/class.pmprogateway_stripe.php:2850
10441
  #: classes/gateways/class.pmprogateway_stripe.php:2856
 
10442
  msgid "Error: "
10443
  msgstr ""
10444
 
10445
  #: classes/gateways/class.pmprogateway_stripe.php:2836
10446
  #: classes/gateways/class.pmprogateway_stripe.php:2848
10447
  #: classes/gateways/class.pmprogateway_stripe.php:2870
 
10448
  msgid "Error: Unkown error while refunding charge #%s"
10449
  msgstr ""
10450
 
10451
  #: classes/gateways/class.pmprogateway_stripe.php:3330
10452
  #: classes/gateways/class.pmprogateway_stripe.php:3342
10453
  #: classes/gateways/class.pmprogateway_stripe.php:3364
 
10454
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
10455
  msgstr ""
10456
 
10457
  #: classes/gateways/class.pmprogateway_stripe.php:3347
10458
  #: classes/gateways/class.pmprogateway_stripe.php:3359
10459
  #: classes/gateways/class.pmprogateway_stripe.php:3381
 
10460
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
10461
  msgstr ""
10462
 
10463
  #: classes/gateways/class.pmprogateway_stripe.php:3533
10464
  #: classes/gateways/class.pmprogateway_stripe.php:3545
10465
  #: classes/gateways/class.pmprogateway_stripe.php:3567
 
10466
  msgid "Invalid response from the Stripe Connect server."
10467
  msgstr ""
10468
 
@@ -10470,6 +10622,7 @@ msgstr ""
10470
  #: classes/gateways/class.pmprogateway_stripe.php:3561
10471
  #: classes/gateways/class.pmprogateway_stripe.php:3573
10472
  #: classes/gateways/class.pmprogateway_stripe.php:3595
 
10473
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
10474
  msgstr ""
10475
 
@@ -10477,30 +10630,35 @@ msgstr ""
10477
  #: classes/gateways/class.pmprogateway_stripe.php:3597
10478
  #: classes/gateways/class.pmprogateway_stripe.php:3609
10479
  #: classes/gateways/class.pmprogateway_stripe.php:3631
 
10480
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
10481
  msgstr ""
10482
 
10483
  #: classes/gateways/class.pmprogateway_stripe.php:3768
10484
  #: classes/gateways/class.pmprogateway_stripe.php:3780
10485
  #: classes/gateways/class.pmprogateway_stripe.php:3802
 
10486
  msgid "Last webhook received at"
10487
  msgstr ""
10488
 
10489
  #: classes/gateways/class.pmprogateway_stripe.php:3770
10490
  #: classes/gateways/class.pmprogateway_stripe.php:3782
10491
  #: classes/gateways/class.pmprogateway_stripe.php:3804
 
10492
  msgid "No webhooks have been received."
10493
  msgstr ""
10494
 
10495
  #: classes/gateways/class.pmprogateway_stripe.php:3774
10496
  #: classes/gateways/class.pmprogateway_stripe.php:3786
10497
  #: classes/gateways/class.pmprogateway_stripe.php:3808
 
10498
  msgid "Your webhook may not be working correctly."
10499
  msgstr ""
10500
 
10501
  #: classes/gateways/class.pmprogateway_stripe.php:3776
10502
  #: classes/gateways/class.pmprogateway_stripe.php:3788
10503
  #: classes/gateways/class.pmprogateway_stripe.php:3810
 
10504
  msgid "Click here for info on setting up your webhook with Stripe."
10505
  msgstr ""
10506
 
@@ -12605,11 +12763,13 @@ msgstr ""
12605
 
12606
  #: includes/login.php:429
12607
  #: includes/profile.php:843
 
12608
  msgid "New passwords do not match."
12609
  msgstr ""
12610
 
12611
  #: includes/login.php:433
12612
  #: includes/profile.php:839
 
12613
  msgid "Please complete all fields."
12614
  msgstr ""
12615
 
@@ -12639,17 +12799,21 @@ msgstr ""
12639
 
12640
  #: includes/login.php:688
12641
  #: includes/profile.php:891
 
12642
  msgid "New Password"
12643
  msgstr ""
12644
 
12645
  #: includes/login.php:690
12646
  #: includes/profile.php:894
12647
  #: includes/scripts.php:86
 
 
12648
  msgid "Strength Indicator"
12649
  msgstr ""
12650
 
12651
  #: includes/login.php:694
12652
  #: includes/profile.php:898
 
12653
  msgid "Confirm New Password"
12654
  msgstr ""
12655
 
@@ -12746,21 +12910,25 @@ msgstr ""
12746
  #: includes/privacy.php:182
12747
  #: includes/profile.php:425
12748
  #: includes/profile.php:493
 
12749
  msgid "Level ID"
12750
  msgstr ""
12751
 
12752
  #: includes/privacy.php:190
12753
  #: includes/profile.php:496
 
12754
  msgid "Date Modified"
12755
  msgstr ""
12756
 
12757
  #: includes/privacy.php:194
12758
  #: includes/profile.php:497
 
12759
  msgid "End Date"
12760
  msgstr ""
12761
 
12762
  #: includes/privacy.php:198
12763
  #: includes/profile.php:498
 
12764
  msgid "Level Cost"
12765
  msgstr ""
12766
 
@@ -12859,68 +13027,85 @@ msgid "Membership Levels History"
12859
  msgstr ""
12860
 
12861
  #: includes/profile.php:485
 
12862
  msgid "No membership orders found."
12863
  msgstr ""
12864
 
12865
  #: includes/profile.php:537
 
12866
  msgid "No membership history found."
12867
  msgstr ""
12868
 
12869
  #: includes/profile.php:644
 
12870
  msgid "Log in to edit your profile."
12871
  msgstr ""
12872
 
12873
  #: includes/profile.php:679
 
12874
  msgid "Please enter a display name."
12875
  msgstr ""
12876
 
12877
  #: includes/profile.php:689
 
12878
  msgid "Please enter an email address."
12879
  msgstr ""
12880
 
12881
  #: includes/profile.php:691
 
12882
  msgid "The email address isn&#8217;t correct."
12883
  msgstr ""
12884
 
12885
  #: includes/profile.php:695
 
12886
  msgid "This email is already registered, please choose another one."
12887
  msgstr ""
12888
 
12889
  #: includes/profile.php:722
 
12890
  msgid "Your profile has been updated."
12891
  msgstr ""
12892
 
12893
  #: includes/profile.php:749
 
12894
  msgid "Display name publicly as"
12895
  msgstr ""
12896
 
12897
  #: includes/profile.php:762
 
12898
  msgid "Site administrators must use the WordPress dashboard to update their email address."
12899
  msgstr ""
12900
 
12901
  #: includes/profile.php:785
 
12902
  msgid "Update Profile"
12903
  msgstr ""
12904
 
12905
  #: includes/profile.php:841
 
12906
  msgid "Please enter your current password."
12907
  msgstr ""
12908
 
12909
  #: includes/profile.php:845
 
12910
  msgid "Your current password is incorrect."
12911
  msgstr ""
12912
 
12913
  #: includes/profile.php:856
 
12914
  msgid "Your password has been updated."
12915
  msgstr ""
12916
 
12917
  #: includes/profile.php:886
 
12918
  msgid "Current Password"
12919
  msgstr ""
12920
 
12921
  #: includes/profile.php:888
12922
  #: includes/profile.php:893
12923
  #: includes/profile.php:900
 
 
12924
  msgid "Required Field"
12925
  msgstr ""
12926
 
@@ -13017,10 +13202,12 @@ msgid "That email address is already in use. Please log in, or use a different e
13017
  msgstr ""
13018
 
13019
  #: services/braintree-webhook.php:425
 
13020
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
13021
  msgstr ""
13022
 
13023
  #: services/braintree-webhook.php:427
 
13024
  msgid "A member's Braintree subscription has expired at %s"
13025
  msgstr ""
13026
 
@@ -13339,16 +13526,22 @@ msgstr ""
13339
 
13340
  #: classes/gateways/class.pmprogateway_stripe.php:360
13341
  #: classes/gateways/class.pmprogateway_stripe.php:450
 
 
13342
  msgid "Connected with Legacy Keys"
13343
  msgstr ""
13344
 
13345
  #: classes/gateways/class.pmprogateway_stripe.php:370
13346
  #: classes/gateways/class.pmprogateway_stripe.php:460
 
 
13347
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
13348
  msgstr ""
13349
 
13350
  #: classes/gateways/class.pmprogateway_stripe.php:372
13351
  #: classes/gateways/class.pmprogateway_stripe.php:462
 
 
13352
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
13353
  msgstr ""
13354
 
@@ -13405,9 +13598,45 @@ msgid "missing"
13405
  msgstr ""
13406
 
13407
  #: classes/gateways/class.pmprogateway_stripe.php:533
 
13408
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
13409
  msgstr ""
13410
 
13411
  #: classes/gateways/class.pmprogateway_stripe.php:534
 
13412
  msgid "Click here to use the legacy API settings."
13413
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.3\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-10-11T14:00:05+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
261
  #: adminpages/orders.php:1544
262
  #: adminpages/orders.php:1554
263
  #: adminpages/orders.php:1553
264
+ #: includes/profile.php:520
265
+ #: includes/profile.php:521
266
+ #: includes/profile.php:522
267
  msgid "N/A"
268
  msgstr "N/A"
269
 
447
  #: adminpages/orders.php:391
448
  #: adminpages/orders.php:1445
449
  #: adminpages/orders.php:1448
450
+ #: includes/profile.php:762
451
  msgid "Email"
452
  msgstr "Correu electrònic"
453
 
636
  #: adminpages/advancedsettings.php:479
637
  #: classes/gateways/class.pmprogateway_stripe.php:634
638
  #: classes/gateways/class.pmprogateway_stripe.php:648
639
+ #: classes/gateways/class.pmprogateway_stripe.php:640
640
+ #: classes/gateways/class.pmprogateway_stripe.php:654
641
  msgid "No"
642
  msgstr "No"
643
 
736
  #: adminpages/advancedsettings.php:397
737
  #: classes/gateways/class.pmprogateway_stripe.php:636
738
  #: classes/gateways/class.pmprogateway_stripe.php:650
739
+ #: classes/gateways/class.pmprogateway_stripe.php:642
740
+ #: classes/gateways/class.pmprogateway_stripe.php:656
741
  msgid "Yes"
742
  msgstr "Sí"
743
 
1020
  #: includes/privacy.php:186
1021
  #: includes/profile.php:495
1022
  #: adminpages/discountcodes.php:489
1023
+ #: includes/profile.php:501
1024
  msgid "Start Date"
1025
  msgstr "Data d’inici"
1026
 
1055
  #: classes/gateways/class.pmprogateway_stripe.php:1301
1056
  #: adminpages/discountcodes.php:507
1057
  #: classes/gateways/class.pmprogateway_stripe.php:1320
1058
+ #: classes/gateways/class.pmprogateway_stripe.php:1326
1059
  msgid "Expiration Date"
1060
  msgstr "Data final (d’expiració)"
1061
 
1195
  #: adminpages/discountcodes.php:612
1196
  #: adminpages/discountcodes.php:699
1197
  #: classes/gateways/class.pmprogateway_stripe.php:1363
1198
+ #: classes/gateways/class.pmprogateway_stripe.php:1369
1199
  msgid "Day(s)"
1200
  msgstr "Dia(es)"
1201
 
1229
  #: adminpages/discountcodes.php:612
1230
  #: adminpages/discountcodes.php:699
1231
  #: classes/gateways/class.pmprogateway_stripe.php:1365
1232
+ #: classes/gateways/class.pmprogateway_stripe.php:1371
1233
  msgid "Month(s)"
1234
  msgstr "Mes(os)"
1235
 
1263
  #: adminpages/discountcodes.php:612
1264
  #: adminpages/discountcodes.php:699
1265
  #: classes/gateways/class.pmprogateway_stripe.php:1364
1266
+ #: classes/gateways/class.pmprogateway_stripe.php:1370
1267
  msgid "Week(s)"
1268
  msgstr "Setmana(es)"
1269
 
1297
  #: adminpages/discountcodes.php:612
1298
  #: adminpages/discountcodes.php:699
1299
  #: classes/gateways/class.pmprogateway_stripe.php:1366
1300
+ #: classes/gateways/class.pmprogateway_stripe.php:1372
1301
  msgid "Year(s)"
1302
  msgstr "Any(s)"
1303
 
1896
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1897
  #: adminpages/discountcodes.php:608
1898
  #: classes/gateways/class.pmprogateway_stripe.php:1497
1899
+ #: classes/gateways/class.pmprogateway_stripe.php:1503
1900
  msgid "per"
1901
  msgstr "per"
1902
 
2112
  #: pages/cancel.php:96
2113
  #: shortcodes/pmpro_account.php:106
2114
  #: adminpages/orders.php:968
2115
+ #: includes/profile.php:798
2116
+ #: includes/profile.php:922
2117
  msgid "Cancel"
2118
  msgstr "Cancel·la"
2119
 
2790
  #: adminpages/orders.php:679
2791
  #: classes/gateways/class.pmprogateway_stripe.php:1284
2792
  #: classes/gateways/class.pmprogateway_stripe.php:1303
2793
+ #: classes/gateways/class.pmprogateway_stripe.php:1309
2794
  msgid "Card Type"
2795
  msgstr "Tipus de targeta"
2796
 
2871
  #: adminpages/dashboard.php:294
2872
  #: adminpages/orders.php:742
2873
  #: adminpages/orders.php:1348
2874
+ #: includes/profile.php:505
2875
  msgid "Status"
2876
  msgstr "Estat"
2877
 
4293
  #: classes/class.pmproemail.php:769
4294
  #: classes/class.pmproemail.php:771
4295
  #: classes/gateways/class.pmprogateway_stripe.php:1333
4296
+ #: classes/gateways/class.pmprogateway_stripe.php:1339
4297
  msgid "Discount Code"
4298
  msgstr "Codi de descompte"
4299
 
4749
  #: pages/checkout.php:366
4750
  #: classes/gateways/class.pmprogateway_stripe.php:1263
4751
  #: classes/gateways/class.pmprogateway_stripe.php:1282
4752
+ #: classes/gateways/class.pmprogateway_stripe.php:1288
4753
  msgid "Payment Information"
4754
  msgstr "Informació de pagament"
4755
 
4774
  #: pages/checkout.php:367
4775
  #: classes/gateways/class.pmprogateway_stripe.php:1264
4776
  #: classes/gateways/class.pmprogateway_stripe.php:1283
4777
+ #: classes/gateways/class.pmprogateway_stripe.php:1289
4778
  #, php-format
4779
  msgid "We Accept %s"
4780
  msgstr "Acceptem %s"
4805
  #: pages/checkout.php:389
4806
  #: classes/gateways/class.pmprogateway_stripe.php:1297
4807
  #: classes/gateways/class.pmprogateway_stripe.php:1316
4808
+ #: classes/gateways/class.pmprogateway_stripe.php:1322
4809
  msgid "Card Number"
4810
  msgstr "Nombre de Tarjeta"
4811
 
4887
  #: pages/checkout.php:432
4888
  #: classes/gateways/class.pmprogateway_stripe.php:1319
4889
  #: classes/gateways/class.pmprogateway_stripe.php:1338
4890
+ #: classes/gateways/class.pmprogateway_stripe.php:1344
4891
  msgid "Apply"
4892
  msgstr "Aplica"
4893
 
5138
  #: classes/gateways/class.pmprogateway_paypal.php:132
5139
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
5140
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
5141
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:151
5142
  msgid "PayPal Settings"
5143
  msgstr "Configuració PayPal"
5144
 
5160
  #: classes/gateways/class.pmprogateway_paypal.php:153
5161
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
5162
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
5163
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:172
5164
  msgid "Gateway Account Email"
5165
  msgstr "Correu electrònic del compte de la Passarel·la"
5166
 
5180
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
5181
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
5182
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
5183
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:180
5184
  msgid "API Username"
5185
  msgstr "API Usuari"
5186
 
5200
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
5201
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
5202
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
5203
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:188
5204
  msgid "API Password"
5205
  msgstr "API Clau"
5206
 
5214
  #: classes/gateways/class.pmprogateway_paypal.php:177
5215
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
5216
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
5217
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:196
5218
  msgid "API Signature"
5219
  msgstr "API Signatura"
5220
 
5229
  #: classes/gateways/class.pmprogateway_paypal.php:196
5230
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
5231
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
5232
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:215
5233
  msgid "IPN Handler URL"
5234
  msgstr "IPN Handler URL"
5235
 
5255
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
5256
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
5257
  #: pages/checkout.php:218
5258
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:498
5259
  msgid "Check Out with PayPal"
5260
  msgstr "Check Out amb PayPal"
5261
 
5275
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
5276
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5277
  #: pages/checkout.php:526
5278
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
5279
  msgid "Submit and Check Out"
5280
  msgstr "Envia i fés el Check Out"
5281
 
5299
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5300
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
5301
  #: pages/checkout.php:526
5302
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
5303
  msgid "Submit and Confirm"
5304
  msgstr "Envia i confirma"
5305
 
5321
  #: classes/gateways/class.pmprogateway_paypal.php:716
5322
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
5323
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
5324
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:841
5325
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
5326
  msgstr "Contacteu al propietari del lloc o cancel·leu la vostra subscripció de PayPal per assegurar-te que no et cobraran en el futur."
5327
 
5335
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
5336
  #: paid-memberships-pro.php:160
5337
  #: paid-memberships-pro.php:162
5338
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:94
5339
  msgid "PayPal Express"
5340
  msgstr "PayPal Express"
5341
 
5347
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
5348
  #: classes/gateways/class.pmprogateway_paypal.php:199
5349
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
5350
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:218
5351
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
5352
  msgstr "Per integrar completament PayPal, assegura’t de configurar el teu IPN Handler URL a"
5353
 
5369
  #: preheaders/checkout.php:823
5370
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
5371
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
5372
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:352
5373
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:411
5374
  msgid "The PayPal Token was lost."
5375
  msgstr "S’ha perdut el Token de PayPal"
5376
 
5408
  #: classes/gateways/class.pmprogateway_stripe.php:252
5409
  #: paid-memberships-pro.php:159
5410
  #: paid-memberships-pro.php:161
5411
+ #: classes/gateways/class.pmprogateway_stripe.php:258
5412
  msgid "Stripe"
5413
  msgstr "Stripe"
5414
 
5429
  #: classes/gateways/class.pmprogateway_stripe.php:539
5430
  #: classes/gateways/class.pmprogateway_stripe.php:551
5431
  #: classes/gateways/class.pmprogateway_stripe.php:570
5432
+ #: classes/gateways/class.pmprogateway_stripe.php:576
5433
  msgid "Secret Key"
5434
  msgstr "Secret Key"
5435
 
5443
  #: classes/gateways/class.pmprogateway_stripe.php:523
5444
  #: classes/gateways/class.pmprogateway_stripe.php:535
5445
  #: classes/gateways/class.pmprogateway_stripe.php:554
5446
+ #: classes/gateways/class.pmprogateway_stripe.php:560
5447
  msgid "Publishable Key"
5448
  msgstr "Clau Publicable"
5449
 
5457
  #: classes/gateways/class.pmprogateway_stripe.php:598
5458
  #: classes/gateways/class.pmprogateway_stripe.php:610
5459
  #: classes/gateways/class.pmprogateway_stripe.php:629
5460
+ #: classes/gateways/class.pmprogateway_stripe.php:635
5461
  msgid "Show Billing Address Fields"
5462
  msgstr "Mostra els camps d’adreça de facturació"
5463
 
5470
  #: classes/gateways/class.pmprogateway_stripe.php:607
5471
  #: classes/gateways/class.pmprogateway_stripe.php:619
5472
  #: classes/gateways/class.pmprogateway_stripe.php:638
5473
+ #: classes/gateways/class.pmprogateway_stripe.php:644
5474
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
5475
  msgstr "Stripe no necessita camps d’adreça de facturació. Escull “No” per amagar-los de la pàgina de Checkout.<br /><strong>Si No, assegura’t de desabilitar la verificació de l’adreça a l’escripori de configuració de l’Stripe.</strong>"
5476
 
5493
  #: classes/gateways/class.pmprogateway_stripe.php:1379
5494
  #: classes/gateways/class.pmprogateway_stripe.php:1391
5495
  #: classes/gateways/class.pmprogateway_stripe.php:1410
5496
+ #: classes/gateways/class.pmprogateway_stripe.php:1416
5497
  msgid "Subscription Updates"
5498
  msgstr "Actualització de subscripcions"
5499
 
5505
  #: classes/gateways/class.pmprogateway_stripe.php:1383
5506
  #: classes/gateways/class.pmprogateway_stripe.php:1395
5507
  #: classes/gateways/class.pmprogateway_stripe.php:1414
5508
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
5509
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
5510
  msgstr "Actualització de subscripcions, et permet canviar el valor subscripció dels membres en un moment determinat. Assegura’t de clicar Actualitza Perfil després de fer els canvis."
5511
 
5517
  #: classes/gateways/class.pmprogateway_stripe.php:1385
5518
  #: classes/gateways/class.pmprogateway_stripe.php:1397
5519
  #: classes/gateways/class.pmprogateway_stripe.php:1416
5520
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
5521
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
5522
  msgstr "Actualització de subscripcions, et permet canviar el valor subscripció dels membres en un moment determinat. Assegura’t de clicar Actualitza Usuari després de fer els canvis."
5523
 
5536
  #: pages/billing.php:425
5537
  #: classes/gateways/class.pmprogateway_stripe.php:1403
5538
  #: classes/gateways/class.pmprogateway_stripe.php:1422
5539
+ #: classes/gateways/class.pmprogateway_stripe.php:1428
5540
  msgid "Update"
5541
  msgstr "Actualitza"
5542
 
5548
  #: classes/gateways/class.pmprogateway_stripe.php:2480
5549
  #: classes/gateways/class.pmprogateway_stripe.php:2492
5550
  #: classes/gateways/class.pmprogateway_stripe.php:2514
5551
+ #: classes/gateways/class.pmprogateway_stripe.php:2520
5552
  msgid "Could not cancel the old subscription. Updates have not been processed."
5553
  msgstr "No s’ha pogut cancel·lar l’antiga subscripció. Les actualitzacions no s’han processat."
5554
 
5573
  #: classes/gateways/class.pmprogateway_stripe.php:2127
5574
  #: classes/gateways/class.pmprogateway_stripe.php:2132
5575
  #: classes/gateways/class.pmprogateway_stripe.php:2137
5576
+ #: classes/gateways/class.pmprogateway_stripe.php:2133
5577
+ #: classes/gateways/class.pmprogateway_stripe.php:2138
5578
+ #: classes/gateways/class.pmprogateway_stripe.php:2143
5579
  msgid "Error creating customer record with Stripe:"
5580
  msgstr "Error creant un registre d’usuari amb Stripe:"
5581
 
5587
  #: classes/gateways/class.pmprogateway_stripe.php:2182
5588
  #: classes/gateways/class.pmprogateway_stripe.php:2196
5589
  #: classes/gateways/class.pmprogateway_stripe.php:2201
5590
+ #: classes/gateways/class.pmprogateway_stripe.php:2202
5591
+ #: classes/gateways/class.pmprogateway_stripe.php:2207
5592
  msgid "Error getting subscription with Stripe:"
5593
  msgstr "Error agafant la subscripció amb Stripe:"
5594
 
5618
  #: classes/gateways/class.pmprogateway_stripe.php:2356
5619
  #: classes/gateways/class.pmprogateway_stripe.php:2373
5620
  #: classes/gateways/class.pmprogateway_stripe.php:2378
5621
+ #: classes/gateways/class.pmprogateway_stripe.php:2379
5622
+ #: classes/gateways/class.pmprogateway_stripe.php:2384
5623
  msgid "Error creating plan with Stripe:"
5624
  msgstr "Error creant pla amb Stripe:"
5625
 
5644
  #: classes/gateways/class.pmprogateway_stripe.php:2401
5645
  #: classes/gateways/class.pmprogateway_stripe.php:2409
5646
  #: classes/gateways/class.pmprogateway_stripe.php:2423
5647
+ #: classes/gateways/class.pmprogateway_stripe.php:2415
5648
+ #: classes/gateways/class.pmprogateway_stripe.php:2429
5649
  msgid "Error subscribing customer to plan with Stripe:"
5650
  msgstr "Error subscrivint un pla de comprador amb Stripe:"
5651
 
5664
  #: classes/gateways/class.pmprogateway_stripe.php:2632
5665
  #: classes/gateways/class.pmprogateway_stripe.php:2644
5666
  #: classes/gateways/class.pmprogateway_stripe.php:2666
5667
+ #: classes/gateways/class.pmprogateway_stripe.php:2672
5668
  msgid "Could not cancel old subscription."
5669
  msgstr "No s’ha pogut cancel·lar l’antiga subscripció. "
5670
 
5680
  #: classes/gateways/class.pmprogateway_stripe.php:2648
5681
  #: classes/gateways/class.pmprogateway_stripe.php:2660
5682
  #: classes/gateways/class.pmprogateway_stripe.php:2682
5683
+ #: classes/gateways/class.pmprogateway_stripe.php:2688
5684
  msgid "Could not find the customer."
5685
  msgstr "No s’ha trobat el comprador."
5686
 
6749
 
6750
  #: includes/license.php:81
6751
  #: adminpages/license.php:43
6752
+ #: adminpages/license.php:33
6753
  msgid "Paid Memberships Pro Support License"
6754
  msgstr "Paid Memberships Pro Support License"
6755
 
6769
  #: adminpages/dashboard.php:174
6770
  #: adminpages/license.php:49
6771
  #: adminpages/dashboard.php:178
6772
+ #: adminpages/license.php:41
6773
  msgid "Your license is invalid or expired."
6774
  msgstr "La teva license és invalida o ha expirat"
6775
 
6780
 
6781
  #: includes/license.php:100
6782
  #: adminpages/license.php:59
6783
+ #: adminpages/license.php:51
6784
  msgid "Enter license key here..."
6785
  msgstr "Introdueix license key aquí"
6786
 
6983
  #: adminpages/dashboard.php:224
6984
  #: adminpages/dashboard.php:292
6985
  #: adminpages/orders.php:1343
6986
+ #: includes/profile.php:500
6987
  msgid "Level"
6988
  msgstr "Nivell"
6989
 
7042
  #: includes/profile.php:747
7043
  #: pages/billing.php:164
7044
  #: pages/checkout.php:234
7045
+ #: includes/profile.php:759
7046
  msgid "First Name"
7047
  msgstr "Nom"
7048
 
7060
  #: includes/profile.php:748
7061
  #: pages/billing.php:168
7062
  #: pages/checkout.php:238
7063
+ #: includes/profile.php:760
7064
  msgid "Last Name"
7065
  msgstr "Cognoms"
7066
 
8137
  #: services/authnet-silent-post.php:138
8138
  #: services/authnet-silent-post.php:141
8139
  #: services/authnet-silent-post.php:173
8140
+ #: services/authnet-silent-post.php:176
8141
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
8142
  msgstr "<p>Un pagament s’està revisant a Authorize.net.</p><p>Payment Information From Authorize.net"
8143
 
8204
  #: includes/profile.php:872
8205
  #: includes/profile.php:909
8206
  #: shortcodes/pmpro_account.php:195
8207
+ #: includes/profile.php:884
8208
+ #: includes/profile.php:921
8209
  msgid "Change Password"
8210
  msgstr "Canvia Clau"
8211
 
8301
  #: adminpages/advancedsettings.php:316
8302
  #: includes/privacy.php:175
8303
  #: includes/profile.php:509
8304
+ #: includes/profile.php:515
8305
  msgid "Never"
8306
  msgstr "Mai"
8307
 
8639
 
8640
  #: adminpages/admin_header.php:152
8641
  #: classes/gateways/class.pmprogateway_stripe.php:76
8642
+ #: classes/gateways/class.pmprogateway_stripe.php:82
8643
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
8644
  msgstr ""
8645
 
8912
  #: adminpages/dashboard.php:177
8913
  #: adminpages/license.php:51
8914
  #: adminpages/dashboard.php:181
8915
+ #: adminpages/license.php:43
8916
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
8917
  msgstr ""
8918
 
9349
  msgstr ""
9350
 
9351
  #: adminpages/license.php:47
9352
+ #: adminpages/license.php:39
9353
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
9354
  msgstr ""
9355
 
9356
  #: adminpages/license.php:49
9357
+ #: adminpages/license.php:37
9358
+ #: adminpages/license.php:41
9359
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
9360
  msgstr ""
9361
 
9362
  #: adminpages/license.php:61
9363
+ #: adminpages/license.php:53
9364
  msgid "Validate Key"
9365
  msgstr ""
9366
 
9367
  #: adminpages/license.php:95
9368
+ #: adminpages/license.php:87
9369
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
9370
  msgstr ""
9371
 
9880
 
9881
  #: classes/gateways/class.pmprogateway_braintree.php:87
9882
  #: classes/gateways/class.pmprogateway_stripe.php:91
9883
+ #: classes/gateways/class.pmprogateway_stripe.php:97
9884
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
9885
  msgstr ""
9886
 
10178
  msgstr ""
10179
 
10180
  #: classes/gateways/class.pmprogateway_cybersource.php:922
10181
+ #: includes/license.php:159
10182
  msgid "Unknown error."
10183
  msgstr ""
10184
 
10193
  #: classes/gateways/class.pmprogateway_paypal.php:146
10194
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
10195
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
10196
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:165
10197
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
10198
  msgstr ""
10199
 
10200
  #: classes/gateways/class.pmprogateway_paypal.php:185
10201
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
10202
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:204
10203
  msgid "Confirmation Step"
10204
  msgstr ""
10205
 
10206
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
10207
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:356
10208
  msgid "Checkout was already processed."
10209
  msgstr ""
10210
 
10211
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
10212
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:791
10213
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
10214
  msgstr ""
10215
 
10216
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
10217
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:792
10218
  msgid "Error creating plan with PayPal."
10219
  msgstr ""
10220
 
10226
  #: classes/gateways/class.pmprogateway_stripe.php:436
10227
  #: classes/gateways/class.pmprogateway_stripe.php:354
10228
  #: classes/gateways/class.pmprogateway_stripe.php:444
10229
+ #: classes/gateways/class.pmprogateway_stripe.php:360
10230
+ #: classes/gateways/class.pmprogateway_stripe.php:450
10231
  msgid "Stripe Connect Settings"
10232
  msgstr ""
10233
 
10234
  #: classes/gateways/class.pmprogateway_stripe.php:352
10235
  #: classes/gateways/class.pmprogateway_stripe.php:356
10236
+ #: classes/gateways/class.pmprogateway_stripe.php:362
10237
  msgid "Live Mode:"
10238
  msgstr ""
10239
 
10241
  #: classes/gateways/class.pmprogateway_stripe.php:440
10242
  #: classes/gateways/class.pmprogateway_stripe.php:358
10243
  #: classes/gateways/class.pmprogateway_stripe.php:448
10244
+ #: classes/gateways/class.pmprogateway_stripe.php:364
10245
+ #: classes/gateways/class.pmprogateway_stripe.php:454
10246
  msgid "Connected"
10247
  msgstr ""
10248
 
10250
  #: classes/gateways/class.pmprogateway_stripe.php:442
10251
  #: classes/gateways/class.pmprogateway_stripe.php:362
10252
  #: classes/gateways/class.pmprogateway_stripe.php:452
10253
+ #: classes/gateways/class.pmprogateway_stripe.php:368
10254
+ #: classes/gateways/class.pmprogateway_stripe.php:458
10255
  msgid "Not Connected"
10256
  msgstr ""
10257
 
10259
  #: classes/gateways/class.pmprogateway_stripe.php:449
10260
  #: classes/gateways/class.pmprogateway_stripe.php:369
10261
  #: classes/gateways/class.pmprogateway_stripe.php:459
10262
+ #: classes/gateways/class.pmprogateway_stripe.php:375
10263
+ #: classes/gateways/class.pmprogateway_stripe.php:465
10264
  msgid "Your site is using legacy API keys to authenticate with Stripe."
10265
  msgstr ""
10266
 
10267
  #: classes/gateways/class.pmprogateway_stripe.php:364
10268
  #: classes/gateways/class.pmprogateway_stripe.php:371
10269
+ #: classes/gateways/class.pmprogateway_stripe.php:377
10270
  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."
10271
  msgstr ""
10272
 
10274
  #: classes/gateways/class.pmprogateway_stripe.php:458
10275
  #: classes/gateways/class.pmprogateway_stripe.php:380
10276
  #: classes/gateways/class.pmprogateway_stripe.php:470
10277
+ #: classes/gateways/class.pmprogateway_stripe.php:386
10278
+ #: classes/gateways/class.pmprogateway_stripe.php:476
10279
  msgid "Stripe Connection:"
10280
  msgstr ""
10281
 
10283
  #: classes/gateways/class.pmprogateway_stripe.php:482
10284
  #: classes/gateways/class.pmprogateway_stripe.php:396
10285
  #: classes/gateways/class.pmprogateway_stripe.php:494
10286
+ #: classes/gateways/class.pmprogateway_stripe.php:402
10287
+ #: classes/gateways/class.pmprogateway_stripe.php:500
10288
  msgid "Disconnect From Stripe"
10289
  msgstr ""
10290
 
10291
  #: classes/gateways/class.pmprogateway_stripe.php:389
10292
  #: classes/gateways/class.pmprogateway_stripe.php:397
10293
+ #: classes/gateways/class.pmprogateway_stripe.php:403
10294
  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."
10295
  msgstr ""
10296
 
10298
  #: classes/gateways/class.pmprogateway_stripe.php:496
10299
  #: classes/gateways/class.pmprogateway_stripe.php:409
10300
  #: classes/gateways/class.pmprogateway_stripe.php:508
10301
+ #: classes/gateways/class.pmprogateway_stripe.php:415
10302
+ #: classes/gateways/class.pmprogateway_stripe.php:514
10303
  msgid "Connect with Stripe"
10304
  msgstr ""
10305
 
10306
  #: classes/gateways/class.pmprogateway_stripe.php:408
10307
  #: classes/gateways/class.pmprogateway_stripe.php:416
10308
+ #: classes/gateways/class.pmprogateway_stripe.php:422
10309
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
10310
  msgstr ""
10311
 
10312
  #: classes/gateways/class.pmprogateway_stripe.php:411
10313
  #: classes/gateways/class.pmprogateway_stripe.php:419
10314
+ #: classes/gateways/class.pmprogateway_stripe.php:425
10315
  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."
10316
  msgstr ""
10317
 
10322
  #: classes/gateways/class.pmprogateway_stripe.php:519
10323
  #: classes/gateways/class.pmprogateway_stripe.php:559
10324
  #: classes/gateways/class.pmprogateway_stripe.php:578
10325
+ #: classes/gateways/class.pmprogateway_stripe.php:437
10326
+ #: classes/gateways/class.pmprogateway_stripe.php:525
10327
+ #: classes/gateways/class.pmprogateway_stripe.php:584
10328
  msgid "Webhook"
10329
  msgstr ""
10330
 
10335
  #: classes/gateways/class.pmprogateway_stripe.php:523
10336
  #: classes/gateways/class.pmprogateway_stripe.php:594
10337
  #: classes/gateways/class.pmprogateway_stripe.php:613
10338
+ #: classes/gateways/class.pmprogateway_stripe.php:441
10339
+ #: classes/gateways/class.pmprogateway_stripe.php:529
10340
+ #: classes/gateways/class.pmprogateway_stripe.php:619
10341
  msgid "Webhook URL"
10342
  msgstr ""
10343
 
10344
  #: classes/gateways/class.pmprogateway_stripe.php:438
10345
  #: classes/gateways/class.pmprogateway_stripe.php:446
10346
+ #: classes/gateways/class.pmprogateway_stripe.php:452
10347
  msgid "Test Mode:"
10348
  msgstr ""
10349
 
10350
  #: classes/gateways/class.pmprogateway_stripe.php:450
10351
  #: classes/gateways/class.pmprogateway_stripe.php:461
10352
+ #: classes/gateways/class.pmprogateway_stripe.php:467
10353
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
10354
  msgstr ""
10355
 
10356
  #: classes/gateways/class.pmprogateway_stripe.php:483
10357
  #: classes/gateways/class.pmprogateway_stripe.php:495
10358
+ #: classes/gateways/class.pmprogateway_stripe.php:501
10359
  msgid "This will disconnect your site from Stripe in test mode only."
10360
  msgstr ""
10361
 
10362
  #: classes/gateways/class.pmprogateway_stripe.php:518
10363
  #: classes/gateways/class.pmprogateway_stripe.php:530
10364
+ #: classes/gateways/class.pmprogateway_stripe.php:536
10365
  msgid "Stripe API Settings (Legacy)"
10366
  msgstr ""
10367
 
10368
  #: classes/gateways/class.pmprogateway_stripe.php:531
10369
  #: classes/gateways/class.pmprogateway_stripe.php:543
10370
  #: classes/gateways/class.pmprogateway_stripe.php:562
10371
+ #: classes/gateways/class.pmprogateway_stripe.php:568
10372
  msgid "Your Publishable Key appears incorrect."
10373
  msgstr ""
10374
 
10378
  #: classes/gateways/class.pmprogateway_stripe.php:587
10379
  #: classes/gateways/class.pmprogateway_stripe.php:582
10380
  #: classes/gateways/class.pmprogateway_stripe.php:606
10381
+ #: classes/gateways/class.pmprogateway_stripe.php:588
10382
+ #: classes/gateways/class.pmprogateway_stripe.php:612
10383
  msgid "Create Webhook"
10384
  msgstr ""
10385
 
10386
  #: classes/gateways/class.pmprogateway_stripe.php:557
10387
  #: classes/gateways/class.pmprogateway_stripe.php:569
10388
  #: classes/gateways/class.pmprogateway_stripe.php:588
10389
+ #: classes/gateways/class.pmprogateway_stripe.php:594
10390
  msgid "A webhook is set up in Stripe, but it is disabled."
10391
  msgstr ""
10392
 
10393
  #: classes/gateways/class.pmprogateway_stripe.php:564
10394
  #: classes/gateways/class.pmprogateway_stripe.php:576
10395
  #: classes/gateways/class.pmprogateway_stripe.php:595
10396
+ #: classes/gateways/class.pmprogateway_stripe.php:601
10397
  msgid "A webhook is set up in Stripe, but it is using an old API version."
10398
  msgstr ""
10399
 
10400
  #: classes/gateways/class.pmprogateway_stripe.php:564
10401
  #: classes/gateways/class.pmprogateway_stripe.php:576
10402
  #: classes/gateways/class.pmprogateway_stripe.php:595
10403
+ #: classes/gateways/class.pmprogateway_stripe.php:601
10404
  msgid "Rebuild Webhook"
10405
  msgstr ""
10406
 
10413
  #: classes/gateways/class.pmprogateway_stripe.php:601
10414
  #: classes/gateways/class.pmprogateway_stripe.php:741
10415
  #: classes/gateways/class.pmprogateway_stripe.php:857
10416
+ #: classes/gateways/class.pmprogateway_stripe.php:607
10417
+ #: classes/gateways/class.pmprogateway_stripe.php:747
10418
+ #: classes/gateways/class.pmprogateway_stripe.php:863
10419
  msgid "Your webhook is enabled."
10420
  msgstr ""
10421
 
10422
  #: classes/gateways/class.pmprogateway_stripe.php:570
10423
  #: classes/gateways/class.pmprogateway_stripe.php:582
10424
  #: classes/gateways/class.pmprogateway_stripe.php:601
10425
+ #: classes/gateways/class.pmprogateway_stripe.php:607
10426
  msgid "Disable Webhook"
10427
  msgstr ""
10428
 
10438
  #: classes/gateways/class.pmprogateway_stripe.php:768
10439
  #: classes/gateways/class.pmprogateway_stripe.php:785
10440
  #: classes/gateways/class.pmprogateway_stripe.php:819
10441
+ #: classes/gateways/class.pmprogateway_stripe.php:614
10442
+ #: classes/gateways/class.pmprogateway_stripe.php:774
10443
+ #: classes/gateways/class.pmprogateway_stripe.php:791
10444
+ #: classes/gateways/class.pmprogateway_stripe.php:825
10445
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
10446
  msgstr ""
10447
 
10448
  #: classes/gateways/class.pmprogateway_stripe.php:589
10449
  #: classes/gateways/class.pmprogateway_stripe.php:601
10450
  #: classes/gateways/class.pmprogateway_stripe.php:620
10451
+ #: classes/gateways/class.pmprogateway_stripe.php:626
10452
  msgid "Other Stripe Settings"
10453
  msgstr ""
10454
 
10455
  #: classes/gateways/class.pmprogateway_stripe.php:593
10456
  #: classes/gateways/class.pmprogateway_stripe.php:605
10457
  #: classes/gateways/class.pmprogateway_stripe.php:624
10458
+ #: classes/gateways/class.pmprogateway_stripe.php:630
10459
  msgid "Stripe API Version"
10460
  msgstr ""
10461
 
10462
  #: classes/gateways/class.pmprogateway_stripe.php:612
10463
  #: classes/gateways/class.pmprogateway_stripe.php:624
10464
  #: classes/gateways/class.pmprogateway_stripe.php:643
10465
+ #: classes/gateways/class.pmprogateway_stripe.php:649
10466
  msgid "Enable Payment Request Button"
10467
  msgstr ""
10468
 
10469
  #: classes/gateways/class.pmprogateway_stripe.php:630
10470
  #: classes/gateways/class.pmprogateway_stripe.php:642
10471
  #: classes/gateways/class.pmprogateway_stripe.php:661
10472
+ #: classes/gateways/class.pmprogateway_stripe.php:667
10473
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
10474
  msgstr ""
10475
 
10476
  #: classes/gateways/class.pmprogateway_stripe.php:643
10477
  #: classes/gateways/class.pmprogateway_stripe.php:655
10478
  #: classes/gateways/class.pmprogateway_stripe.php:674
10479
+ #: classes/gateways/class.pmprogateway_stripe.php:680
10480
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
10481
  msgstr ""
10482
 
10483
  #: classes/gateways/class.pmprogateway_stripe.php:645
10484
  #: classes/gateways/class.pmprogateway_stripe.php:657
10485
  #: classes/gateways/class.pmprogateway_stripe.php:676
10486
+ #: classes/gateways/class.pmprogateway_stripe.php:682
10487
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
10488
  msgstr ""
10489
 
10490
  #: classes/gateways/class.pmprogateway_stripe.php:647
10491
  #: classes/gateways/class.pmprogateway_stripe.php:659
10492
  #: classes/gateways/class.pmprogateway_stripe.php:678
10493
+ #: classes/gateways/class.pmprogateway_stripe.php:684
10494
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
10495
  msgstr ""
10496
 
10497
  #: classes/gateways/class.pmprogateway_stripe.php:649
10498
  #: classes/gateways/class.pmprogateway_stripe.php:661
10499
  #: classes/gateways/class.pmprogateway_stripe.php:680
10500
+ #: classes/gateways/class.pmprogateway_stripe.php:686
10501
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
10502
  msgstr ""
10503
 
10504
  #: classes/gateways/class.pmprogateway_stripe.php:674
10505
  #: classes/gateways/class.pmprogateway_stripe.php:686
10506
  #: classes/gateways/class.pmprogateway_stripe.php:705
10507
+ #: classes/gateways/class.pmprogateway_stripe.php:711
10508
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
10509
  msgstr ""
10510
 
10511
  #: classes/gateways/class.pmprogateway_stripe.php:695
10512
  #: classes/gateways/class.pmprogateway_stripe.php:707
10513
  #: classes/gateways/class.pmprogateway_stripe.php:726
10514
+ #: classes/gateways/class.pmprogateway_stripe.php:732
10515
  msgid "Webhook creation failed. You might already have a webhook set up."
10516
  msgstr ""
10517
 
10521
  #: classes/gateways/class.pmprogateway_stripe.php:847
10522
  #: classes/gateways/class.pmprogateway_stripe.php:792
10523
  #: classes/gateways/class.pmprogateway_stripe.php:866
10524
+ #: classes/gateways/class.pmprogateway_stripe.php:798
10525
+ #: classes/gateways/class.pmprogateway_stripe.php:872
10526
  msgid "There was an error deleting the webhook."
10527
  msgstr ""
10528
 
10529
  #: classes/gateways/class.pmprogateway_stripe.php:811
10530
  #: classes/gateways/class.pmprogateway_stripe.php:823
10531
  #: classes/gateways/class.pmprogateway_stripe.php:842
10532
+ #: classes/gateways/class.pmprogateway_stripe.php:848
10533
  msgid "Webhook creation failed. Please refresh and try again."
10534
  msgstr ""
10535
 
10536
  #: classes/gateways/class.pmprogateway_stripe.php:867
10537
  #: classes/gateways/class.pmprogateway_stripe.php:879
10538
  #: classes/gateways/class.pmprogateway_stripe.php:898
10539
+ #: classes/gateways/class.pmprogateway_stripe.php:904
10540
  msgid "Verification steps confirmed. Your payment is processing."
10541
  msgstr ""
10542
 
10543
  #: classes/gateways/class.pmprogateway_stripe.php:1262
10544
  #: classes/gateways/class.pmprogateway_stripe.php:1274
10545
  #: classes/gateways/class.pmprogateway_stripe.php:1293
10546
+ #: classes/gateways/class.pmprogateway_stripe.php:1299
10547
  msgid "Pay with Credit Card"
10548
  msgstr ""
10549
 
10550
  #: classes/gateways/class.pmprogateway_stripe.php:1296
10551
  #: classes/gateways/class.pmprogateway_stripe.php:1308
10552
  #: classes/gateways/class.pmprogateway_stripe.php:1327
10553
+ #: classes/gateways/class.pmprogateway_stripe.php:1333
10554
  msgid "CVC"
10555
  msgstr ""
10556
 
10557
  #: classes/gateways/class.pmprogateway_stripe.php:1374
10558
  #: classes/gateways/class.pmprogateway_stripe.php:1386
10559
  #: classes/gateways/class.pmprogateway_stripe.php:1405
10560
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
10561
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
10562
  msgstr ""
10563
 
10573
  #: classes/gateways/class.pmprogateway_stripe.php:2016
10574
  #: classes/gateways/class.pmprogateway_stripe.php:2029
10575
  #: classes/gateways/class.pmprogateway_stripe.php:2033
10576
+ #: classes/gateways/class.pmprogateway_stripe.php:2018
10577
+ #: classes/gateways/class.pmprogateway_stripe.php:2022
10578
+ #: classes/gateways/class.pmprogateway_stripe.php:2035
10579
+ #: classes/gateways/class.pmprogateway_stripe.php:2039
10580
  msgid "Error: %s"
10581
  msgstr ""
10582
 
10586
  #: classes/gateways/class.pmprogateway_stripe.php:2834
10587
  #: classes/gateways/class.pmprogateway_stripe.php:2850
10588
  #: classes/gateways/class.pmprogateway_stripe.php:2856
10589
+ #: classes/gateways/class.pmprogateway_stripe.php:2862
10590
  msgid "Error: "
10591
  msgstr ""
10592
 
10593
  #: classes/gateways/class.pmprogateway_stripe.php:2836
10594
  #: classes/gateways/class.pmprogateway_stripe.php:2848
10595
  #: classes/gateways/class.pmprogateway_stripe.php:2870
10596
+ #: classes/gateways/class.pmprogateway_stripe.php:2876
10597
  msgid "Error: Unkown error while refunding charge #%s"
10598
  msgstr ""
10599
 
10600
  #: classes/gateways/class.pmprogateway_stripe.php:3330
10601
  #: classes/gateways/class.pmprogateway_stripe.php:3342
10602
  #: classes/gateways/class.pmprogateway_stripe.php:3364
10603
+ #: classes/gateways/class.pmprogateway_stripe.php:3370
10604
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
10605
  msgstr ""
10606
 
10607
  #: classes/gateways/class.pmprogateway_stripe.php:3347
10608
  #: classes/gateways/class.pmprogateway_stripe.php:3359
10609
  #: classes/gateways/class.pmprogateway_stripe.php:3381
10610
+ #: classes/gateways/class.pmprogateway_stripe.php:3387
10611
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
10612
  msgstr ""
10613
 
10614
  #: classes/gateways/class.pmprogateway_stripe.php:3533
10615
  #: classes/gateways/class.pmprogateway_stripe.php:3545
10616
  #: classes/gateways/class.pmprogateway_stripe.php:3567
10617
+ #: classes/gateways/class.pmprogateway_stripe.php:3573
10618
  msgid "Invalid response from the Stripe Connect server."
10619
  msgstr ""
10620
 
10622
  #: classes/gateways/class.pmprogateway_stripe.php:3561
10623
  #: classes/gateways/class.pmprogateway_stripe.php:3573
10624
  #: classes/gateways/class.pmprogateway_stripe.php:3595
10625
+ #: classes/gateways/class.pmprogateway_stripe.php:3601
10626
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
10627
  msgstr ""
10628
 
10630
  #: classes/gateways/class.pmprogateway_stripe.php:3597
10631
  #: classes/gateways/class.pmprogateway_stripe.php:3609
10632
  #: classes/gateways/class.pmprogateway_stripe.php:3631
10633
+ #: classes/gateways/class.pmprogateway_stripe.php:3637
10634
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
10635
  msgstr ""
10636
 
10637
  #: classes/gateways/class.pmprogateway_stripe.php:3768
10638
  #: classes/gateways/class.pmprogateway_stripe.php:3780
10639
  #: classes/gateways/class.pmprogateway_stripe.php:3802
10640
+ #: classes/gateways/class.pmprogateway_stripe.php:3808
10641
  msgid "Last webhook received at"
10642
  msgstr ""
10643
 
10644
  #: classes/gateways/class.pmprogateway_stripe.php:3770
10645
  #: classes/gateways/class.pmprogateway_stripe.php:3782
10646
  #: classes/gateways/class.pmprogateway_stripe.php:3804
10647
+ #: classes/gateways/class.pmprogateway_stripe.php:3810
10648
  msgid "No webhooks have been received."
10649
  msgstr ""
10650
 
10651
  #: classes/gateways/class.pmprogateway_stripe.php:3774
10652
  #: classes/gateways/class.pmprogateway_stripe.php:3786
10653
  #: classes/gateways/class.pmprogateway_stripe.php:3808
10654
+ #: classes/gateways/class.pmprogateway_stripe.php:3814
10655
  msgid "Your webhook may not be working correctly."
10656
  msgstr ""
10657
 
10658
  #: classes/gateways/class.pmprogateway_stripe.php:3776
10659
  #: classes/gateways/class.pmprogateway_stripe.php:3788
10660
  #: classes/gateways/class.pmprogateway_stripe.php:3810
10661
+ #: classes/gateways/class.pmprogateway_stripe.php:3816
10662
  msgid "Click here for info on setting up your webhook with Stripe."
10663
  msgstr ""
10664
 
12763
 
12764
  #: includes/login.php:429
12765
  #: includes/profile.php:843
12766
+ #: includes/profile.php:855
12767
  msgid "New passwords do not match."
12768
  msgstr ""
12769
 
12770
  #: includes/login.php:433
12771
  #: includes/profile.php:839
12772
+ #: includes/profile.php:851
12773
  msgid "Please complete all fields."
12774
  msgstr ""
12775
 
12799
 
12800
  #: includes/login.php:688
12801
  #: includes/profile.php:891
12802
+ #: includes/profile.php:903
12803
  msgid "New Password"
12804
  msgstr ""
12805
 
12806
  #: includes/login.php:690
12807
  #: includes/profile.php:894
12808
  #: includes/scripts.php:86
12809
+ #: includes/profile.php:906
12810
+ #: includes/scripts.php:85
12811
  msgid "Strength Indicator"
12812
  msgstr ""
12813
 
12814
  #: includes/login.php:694
12815
  #: includes/profile.php:898
12816
+ #: includes/profile.php:910
12817
  msgid "Confirm New Password"
12818
  msgstr ""
12819
 
12910
  #: includes/privacy.php:182
12911
  #: includes/profile.php:425
12912
  #: includes/profile.php:493
12913
+ #: includes/profile.php:499
12914
  msgid "Level ID"
12915
  msgstr ""
12916
 
12917
  #: includes/privacy.php:190
12918
  #: includes/profile.php:496
12919
+ #: includes/profile.php:502
12920
  msgid "Date Modified"
12921
  msgstr ""
12922
 
12923
  #: includes/privacy.php:194
12924
  #: includes/profile.php:497
12925
+ #: includes/profile.php:503
12926
  msgid "End Date"
12927
  msgstr ""
12928
 
12929
  #: includes/privacy.php:198
12930
  #: includes/profile.php:498
12931
+ #: includes/profile.php:504
12932
  msgid "Level Cost"
12933
  msgstr ""
12934
 
13027
  msgstr ""
13028
 
13029
  #: includes/profile.php:485
13030
+ #: includes/profile.php:488
13031
  msgid "No membership orders found."
13032
  msgstr ""
13033
 
13034
  #: includes/profile.php:537
13035
+ #: includes/profile.php:546
13036
  msgid "No membership history found."
13037
  msgstr ""
13038
 
13039
  #: includes/profile.php:644
13040
+ #: includes/profile.php:656
13041
  msgid "Log in to edit your profile."
13042
  msgstr ""
13043
 
13044
  #: includes/profile.php:679
13045
+ #: includes/profile.php:691
13046
  msgid "Please enter a display name."
13047
  msgstr ""
13048
 
13049
  #: includes/profile.php:689
13050
+ #: includes/profile.php:701
13051
  msgid "Please enter an email address."
13052
  msgstr ""
13053
 
13054
  #: includes/profile.php:691
13055
+ #: includes/profile.php:703
13056
  msgid "The email address isn&#8217;t correct."
13057
  msgstr ""
13058
 
13059
  #: includes/profile.php:695
13060
+ #: includes/profile.php:707
13061
  msgid "This email is already registered, please choose another one."
13062
  msgstr ""
13063
 
13064
  #: includes/profile.php:722
13065
+ #: includes/profile.php:734
13066
  msgid "Your profile has been updated."
13067
  msgstr ""
13068
 
13069
  #: includes/profile.php:749
13070
+ #: includes/profile.php:761
13071
  msgid "Display name publicly as"
13072
  msgstr ""
13073
 
13074
  #: includes/profile.php:762
13075
+ #: includes/profile.php:774
13076
  msgid "Site administrators must use the WordPress dashboard to update their email address."
13077
  msgstr ""
13078
 
13079
  #: includes/profile.php:785
13080
+ #: includes/profile.php:797
13081
  msgid "Update Profile"
13082
  msgstr ""
13083
 
13084
  #: includes/profile.php:841
13085
+ #: includes/profile.php:853
13086
  msgid "Please enter your current password."
13087
  msgstr ""
13088
 
13089
  #: includes/profile.php:845
13090
+ #: includes/profile.php:857
13091
  msgid "Your current password is incorrect."
13092
  msgstr ""
13093
 
13094
  #: includes/profile.php:856
13095
+ #: includes/profile.php:868
13096
  msgid "Your password has been updated."
13097
  msgstr ""
13098
 
13099
  #: includes/profile.php:886
13100
+ #: includes/profile.php:898
13101
  msgid "Current Password"
13102
  msgstr ""
13103
 
13104
  #: includes/profile.php:888
13105
  #: includes/profile.php:893
13106
  #: includes/profile.php:900
13107
+ #: includes/profile.php:905
13108
+ #: includes/profile.php:912
13109
  msgid "Required Field"
13110
  msgstr ""
13111
 
13202
  msgstr ""
13203
 
13204
  #: services/braintree-webhook.php:425
13205
+ #: services/braintree-webhook.php:426
13206
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
13207
  msgstr ""
13208
 
13209
  #: services/braintree-webhook.php:427
13210
+ #: services/braintree-webhook.php:428
13211
  msgid "A member's Braintree subscription has expired at %s"
13212
  msgstr ""
13213
 
13526
 
13527
  #: classes/gateways/class.pmprogateway_stripe.php:360
13528
  #: classes/gateways/class.pmprogateway_stripe.php:450
13529
+ #: classes/gateways/class.pmprogateway_stripe.php:366
13530
+ #: classes/gateways/class.pmprogateway_stripe.php:456
13531
  msgid "Connected with Legacy Keys"
13532
  msgstr ""
13533
 
13534
  #: classes/gateways/class.pmprogateway_stripe.php:370
13535
  #: classes/gateways/class.pmprogateway_stripe.php:460
13536
+ #: classes/gateways/class.pmprogateway_stripe.php:376
13537
+ #: classes/gateways/class.pmprogateway_stripe.php:466
13538
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
13539
  msgstr ""
13540
 
13541
  #: classes/gateways/class.pmprogateway_stripe.php:372
13542
  #: classes/gateways/class.pmprogateway_stripe.php:462
13543
+ #: classes/gateways/class.pmprogateway_stripe.php:378
13544
+ #: classes/gateways/class.pmprogateway_stripe.php:468
13545
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
13546
  msgstr ""
13547
 
13598
  msgstr ""
13599
 
13600
  #: classes/gateways/class.pmprogateway_stripe.php:533
13601
+ #: classes/gateways/class.pmprogateway_stripe.php:539
13602
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
13603
  msgstr ""
13604
 
13605
  #: classes/gateways/class.pmprogateway_stripe.php:534
13606
+ #: classes/gateways/class.pmprogateway_stripe.php:540
13607
  msgid "Click here to use the legacy API settings."
13608
  msgstr ""
13609
+
13610
+ #: adminpages/license.php:37
13611
+ msgid "There was an issue validating your license key: %s"
13612
+ msgstr ""
13613
+
13614
+ #: includes/email-templates.php:172
13615
+ msgid ""
13616
+ "<p>There was a new member checkout at !!sitename!!.</p>\n"
13617
+ "\n"
13618
+ "<p><strong>They have chosen to pay by check.</strong></p>\n"
13619
+ "\n"
13620
+ "<p>Below are details about the new membership account and a receipt for the initial membership invoice.</p>\n"
13621
+ "\n"
13622
+ "<p>Account: !!display_name!! (!!user_email!!)</p>\n"
13623
+ "<p>Membership Level: !!membership_level_name!!</p>\n"
13624
+ "<p>Membership Fee: !!membership_cost!!</p>\n"
13625
+ "!!membership_expiration!! !!discount_code!!\n"
13626
+ "\n"
13627
+ "<p>\n"
13628
+ "\tInvoice #!!invoice_id!! on !!invoice_date!!<br />\n"
13629
+ "\tTotal Billed: !!invoice_total!!\n"
13630
+ "</p>\n"
13631
+ "\n"
13632
+ "<p>Log in to your membership account here: !!login_url!!</p>"
13633
+ msgstr ""
13634
+
13635
+ #: includes/license.php:112
13636
+ msgid "Missing key."
13637
+ msgstr ""
13638
+
13639
+ #: shortcodes/pmpro_account.php:145
13640
+ msgctxt "A dash is shown when there is no expiration date."
13641
+ msgid "&#8212;"
13642
+ msgstr ""
languages/paid-memberships-pro-cs_CZ.mo CHANGED
Binary file
languages/paid-memberships-pro-cs_CZ.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.2\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-09-17T13:56:55+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -190,6 +190,7 @@ msgstr "Platební brána &amp; SSL"
190
  #: adminpages/orders.php:391
191
  #: adminpages/orders.php:1445
192
  #: adminpages/orders.php:1448
 
193
  msgid "Email"
194
  msgstr "E-mail"
195
 
@@ -375,6 +376,8 @@ msgstr "Ano - Ukázat výňatky."
375
  #: adminpages/advancedsettings.php:479
376
  #: classes/gateways/class.pmprogateway_stripe.php:634
377
  #: classes/gateways/class.pmprogateway_stripe.php:648
 
 
378
  msgid "No"
379
  msgstr "Ne"
380
 
@@ -465,6 +468,8 @@ msgstr "Pouze pro multisite"
465
  #: adminpages/advancedsettings.php:397
466
  #: classes/gateways/class.pmprogateway_stripe.php:636
467
  #: classes/gateways/class.pmprogateway_stripe.php:650
 
 
468
  msgid "Yes"
469
  msgstr "Ano"
470
 
@@ -728,6 +733,7 @@ msgstr "Kód"
728
  #: includes/privacy.php:186
729
  #: includes/profile.php:495
730
  #: adminpages/discountcodes.php:489
 
731
  msgid "Start Date"
732
  msgstr "Počáteční datum"
733
 
@@ -751,6 +757,7 @@ msgstr "Počáteční datum"
751
  #: classes/gateways/class.pmprogateway_stripe.php:1301
752
  #: adminpages/discountcodes.php:507
753
  #: classes/gateways/class.pmprogateway_stripe.php:1320
 
754
  msgid "Expiration Date"
755
  msgstr "Datum vypršení"
756
 
@@ -872,6 +879,7 @@ msgstr "Vyfakturovaná částka"
872
  #: adminpages/discountcodes.php:612
873
  #: adminpages/discountcodes.php:699
874
  #: classes/gateways/class.pmprogateway_stripe.php:1363
 
875
  msgid "Day(s)"
876
  msgstr "den(y)"
877
 
@@ -897,6 +905,7 @@ msgstr "den(y)"
897
  #: adminpages/discountcodes.php:612
898
  #: adminpages/discountcodes.php:699
899
  #: classes/gateways/class.pmprogateway_stripe.php:1365
 
900
  msgid "Month(s)"
901
  msgstr "měsíc(e)"
902
 
@@ -922,6 +931,7 @@ msgstr "měsíc(e)"
922
  #: adminpages/discountcodes.php:612
923
  #: adminpages/discountcodes.php:699
924
  #: classes/gateways/class.pmprogateway_stripe.php:1364
 
925
  msgid "Week(s)"
926
  msgstr "týden(y)"
927
 
@@ -947,6 +957,7 @@ msgstr "týden(y)"
947
  #: adminpages/discountcodes.php:612
948
  #: adminpages/discountcodes.php:699
949
  #: classes/gateways/class.pmprogateway_stripe.php:1366
 
950
  msgid "Year(s)"
951
  msgstr "rok(y)"
952
 
@@ -1470,6 +1481,7 @@ msgstr "Fakturační údaje"
1470
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1471
  #: adminpages/discountcodes.php:608
1472
  #: classes/gateways/class.pmprogateway_stripe.php:1497
 
1473
  msgid "per"
1474
  msgstr "na"
1475
 
@@ -2137,6 +2149,7 @@ msgstr "např. PayPal Express, PayPal Standard, platební karta."
2137
  #: adminpages/orders.php:679
2138
  #: classes/gateways/class.pmprogateway_stripe.php:1284
2139
  #: classes/gateways/class.pmprogateway_stripe.php:1303
 
2140
  msgid "Card Type"
2141
  msgstr "Typ karty"
2142
 
@@ -2200,6 +2213,7 @@ msgstr "Rok expirace"
2200
  #: adminpages/dashboard.php:294
2201
  #: adminpages/orders.php:742
2202
  #: adminpages/orders.php:1348
 
2203
  msgid "Status"
2204
  msgstr "Stav"
2205
 
@@ -2357,6 +2371,8 @@ msgstr "Uložit objednávku"
2357
  #: pages/cancel.php:96
2358
  #: shortcodes/pmpro_account.php:106
2359
  #: adminpages/orders.php:968
 
 
2360
  msgid "Cancel"
2361
  msgstr "Zrušit"
2362
 
@@ -3282,6 +3298,7 @@ msgstr "Potvrzení Vašeho členství v %s"
3282
  #: classes/class.pmproemail.php:769
3283
  #: classes/class.pmproemail.php:771
3284
  #: classes/gateways/class.pmprogateway_stripe.php:1333
 
3285
  msgid "Discount Code"
3286
  msgstr "Slevový kód"
3287
 
@@ -3696,6 +3713,7 @@ msgstr "Chcete-li plně integrovat Braintree, ujistěte se, že máte správně
3696
  #: pages/checkout.php:366
3697
  #: classes/gateways/class.pmprogateway_stripe.php:1263
3698
  #: classes/gateways/class.pmprogateway_stripe.php:1282
 
3699
  msgid "Payment Information"
3700
  msgstr "Platební informace"
3701
 
@@ -3711,6 +3729,7 @@ msgstr "Platební informace"
3711
  #: pages/checkout.php:367
3712
  #: classes/gateways/class.pmprogateway_stripe.php:1264
3713
  #: classes/gateways/class.pmprogateway_stripe.php:1283
 
3714
  #, php-format
3715
  msgid "We Accept %s"
3716
  msgstr "Přijímáme %s"
@@ -3730,6 +3749,7 @@ msgstr "Přijímáme %s"
3730
  #: pages/checkout.php:389
3731
  #: classes/gateways/class.pmprogateway_stripe.php:1297
3732
  #: classes/gateways/class.pmprogateway_stripe.php:1316
 
3733
  msgid "Card Number"
3734
  msgstr "Číslo karty"
3735
 
@@ -3778,6 +3798,7 @@ msgstr "co to je?"
3778
  #: pages/checkout.php:432
3779
  #: classes/gateways/class.pmprogateway_stripe.php:1319
3780
  #: classes/gateways/class.pmprogateway_stripe.php:1338
 
3781
  msgid "Apply"
3782
  msgstr "Použít"
3783
 
@@ -3989,6 +4010,7 @@ msgstr "PayPal Website Payments Pro"
3989
  #: classes/gateways/class.pmprogateway_paypal.php:132
3990
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
3991
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
 
3992
  msgid "PayPal Settings"
3993
  msgstr "Nastavení PayPal"
3994
 
@@ -4008,6 +4030,7 @@ msgstr "Nedoporučujeme používat PayPal Standard. Doporučujeme používat Pay
4008
  #: classes/gateways/class.pmprogateway_paypal.php:153
4009
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
4010
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
 
4011
  msgid "Gateway Account Email"
4012
  msgstr "E-mail účtu brány"
4013
 
@@ -4024,6 +4047,7 @@ msgstr "E-mail účtu brány"
4024
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
4025
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
4026
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
 
4027
  msgid "API Username"
4028
  msgstr "Uživatelské jméno API"
4029
 
@@ -4040,6 +4064,7 @@ msgstr "Uživatelské jméno API"
4040
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
4041
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
4042
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
 
4043
  msgid "API Password"
4044
  msgstr "Heslo API"
4045
 
@@ -4052,6 +4077,7 @@ msgstr "Heslo API"
4052
  #: classes/gateways/class.pmprogateway_paypal.php:177
4053
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
4054
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
 
4055
  msgid "API Signature"
4056
  msgstr "Signatura API"
4057
 
@@ -4065,6 +4091,7 @@ msgstr "Signatura API"
4065
  #: classes/gateways/class.pmprogateway_paypal.php:196
4066
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
4067
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
 
4068
  msgid "IPN Handler URL"
4069
  msgstr "URL IPN Handleru"
4070
 
@@ -4087,6 +4114,7 @@ msgstr "Tato URL adresa je předána PayPalu pro všechny nové debety a předpl
4087
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
4088
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
4089
  #: pages/checkout.php:218
 
4090
  msgid "Check Out with PayPal"
4091
  msgstr "Zde zaplaťte pomocí PayPalu"
4092
 
@@ -4102,6 +4130,7 @@ msgstr "Zde zaplaťte pomocí PayPalu"
4102
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
4103
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
4104
  #: pages/checkout.php:526
 
4105
  msgid "Submit and Check Out"
4106
  msgstr "Odeslat a zaplatit"
4107
 
@@ -4119,6 +4148,7 @@ msgstr "Odeslat a zaplatit"
4119
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
4120
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
4121
  #: pages/checkout.php:526
 
4122
  msgid "Submit and Confirm"
4123
  msgstr "Odeslat a potvrdit"
4124
 
@@ -4136,6 +4166,7 @@ msgstr "Odeslat a potvrdit"
4136
  #: classes/gateways/class.pmprogateway_paypal.php:716
4137
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
4138
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
 
4139
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
4140
  msgstr "Prosíme obraťte se na vlastníka stránky nebo zrušte předplatné v rámci PayPal a ujistěte se, že Vám nebude do budoucna účtováno."
4141
 
@@ -4144,6 +4175,7 @@ msgstr "Prosíme obraťte se na vlastníka stránky nebo zrušte předplatné v
4144
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
4145
  #: paid-memberships-pro.php:160
4146
  #: paid-memberships-pro.php:162
 
4147
  msgid "PayPal Express"
4148
  msgstr "PayPal Express"
4149
 
@@ -4154,6 +4186,7 @@ msgstr "PayPal Express"
4154
  #: adminpages/paymentsettings.php:490
4155
  #: classes/gateways/class.pmprogateway_paypal.php:199
4156
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
 
4157
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
4158
  msgstr "Chcete-li plně integrovat PayPal, nastavte IPN Handler URL na"
4159
 
@@ -4173,6 +4206,8 @@ msgstr "Chcete-li plně integrovat PayPal, nastavte IPN Handler URL na"
4173
  #: preheaders/checkout.php:823
4174
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
4175
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
 
 
4176
  msgid "The PayPal Token was lost."
4177
  msgstr "Paypal Token byl ztracen."
4178
 
@@ -4194,6 +4229,7 @@ msgstr "Tady je váš IPN URL pro referenci. Toto byste NEMĚLI nastavit v nasta
4194
  #: classes/gateways/class.pmprogateway_stripe.php:252
4195
  #: paid-memberships-pro.php:159
4196
  #: paid-memberships-pro.php:161
 
4197
  msgid "Stripe"
4198
  msgstr "Stripe"
4199
 
@@ -4208,6 +4244,7 @@ msgstr "Nastavení Stripe"
4208
  #: classes/gateways/class.pmprogateway_stripe.php:539
4209
  #: classes/gateways/class.pmprogateway_stripe.php:551
4210
  #: classes/gateways/class.pmprogateway_stripe.php:570
 
4211
  msgid "Secret Key"
4212
  msgstr "Tajný klíč"
4213
 
@@ -4218,6 +4255,7 @@ msgstr "Tajný klíč"
4218
  #: classes/gateways/class.pmprogateway_stripe.php:523
4219
  #: classes/gateways/class.pmprogateway_stripe.php:535
4220
  #: classes/gateways/class.pmprogateway_stripe.php:554
 
4221
  msgid "Publishable Key"
4222
  msgstr "Veřejný klíč"
4223
 
@@ -4228,6 +4266,7 @@ msgstr "Veřejný klíč"
4228
  #: classes/gateways/class.pmprogateway_stripe.php:598
4229
  #: classes/gateways/class.pmprogateway_stripe.php:610
4230
  #: classes/gateways/class.pmprogateway_stripe.php:629
 
4231
  msgid "Show Billing Address Fields"
4232
  msgstr "Zobrazit pole fakturační adresy"
4233
 
@@ -4237,6 +4276,7 @@ msgstr "Zobrazit pole fakturační adresy"
4237
  #: classes/gateways/class.pmprogateway_stripe.php:607
4238
  #: classes/gateways/class.pmprogateway_stripe.php:619
4239
  #: classes/gateways/class.pmprogateway_stripe.php:638
 
4240
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
4241
  msgstr "Stripe nevyžaduje pole fakturační adresy. Zvolte 'Ne' pro jejich skrytí na stránce pokladny.<br /><strong>Pokud zvolíte Ne, ujistěte se, že jste zakázali ověření adresy v ovládacím panelu Stripe.</strong>"
4242
 
@@ -4252,6 +4292,7 @@ msgstr "Chcete-li plně integrovat Stripe, ujistěte se, že máte správně nas
4252
  #: classes/gateways/class.pmprogateway_stripe.php:1379
4253
  #: classes/gateways/class.pmprogateway_stripe.php:1391
4254
  #: classes/gateways/class.pmprogateway_stripe.php:1410
 
4255
  msgid "Subscription Updates"
4256
  msgstr "Aktualizace předplatného"
4257
 
@@ -4259,6 +4300,7 @@ msgstr "Aktualizace předplatného"
4259
  #: classes/gateways/class.pmprogateway_stripe.php:1383
4260
  #: classes/gateways/class.pmprogateway_stripe.php:1395
4261
  #: classes/gateways/class.pmprogateway_stripe.php:1414
 
4262
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
4263
  msgstr "Aktualizace předplatného, umožňují změnit hodnoty předplatného v nastaveném čase. Ujistěte se, že po provedení změn klepnete na tlačítko Aktualizovat profil."
4264
 
@@ -4266,6 +4308,7 @@ msgstr "Aktualizace předplatného, umožňují změnit hodnoty předplatného v
4266
  #: classes/gateways/class.pmprogateway_stripe.php:1385
4267
  #: classes/gateways/class.pmprogateway_stripe.php:1397
4268
  #: classes/gateways/class.pmprogateway_stripe.php:1416
 
4269
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
4270
  msgstr "Aktualizace předplatného, umožňují změnit hodnoty předplatného v nastaveném čase. Ujistěte se, že po provedení změn klepnete na tlačítko Aktualizovat uživatele."
4271
 
@@ -4277,6 +4320,7 @@ msgstr "Aktualizace předplatného, umožňují změnit hodnoty předplatného v
4277
  #: pages/billing.php:425
4278
  #: classes/gateways/class.pmprogateway_stripe.php:1403
4279
  #: classes/gateways/class.pmprogateway_stripe.php:1422
 
4280
  msgid "Update"
4281
  msgstr "Aktualizovat"
4282
 
@@ -4284,6 +4328,7 @@ msgstr "Aktualizovat"
4284
  #: classes/gateways/class.pmprogateway_stripe.php:2480
4285
  #: classes/gateways/class.pmprogateway_stripe.php:2492
4286
  #: classes/gateways/class.pmprogateway_stripe.php:2514
 
4287
  msgid "Could not cancel the old subscription. Updates have not been processed."
4288
  msgstr "Nemohu zrušit staré předplatné. Aktualizace nebyly zpracovány."
4289
 
@@ -4302,6 +4347,9 @@ msgstr "Nemohu zrušit staré předplatné. Aktualizace nebyly zpracovány."
4302
  #: classes/gateways/class.pmprogateway_stripe.php:2127
4303
  #: classes/gateways/class.pmprogateway_stripe.php:2132
4304
  #: classes/gateways/class.pmprogateway_stripe.php:2137
 
 
 
4305
  msgid "Error creating customer record with Stripe:"
4306
  msgstr "Chyba při vytváření záznamu zákazníka Stripe:"
4307
 
@@ -4321,6 +4369,8 @@ msgstr "Chyba při vytváření záznamu zákazníka Stripe:"
4321
  #: classes/gateways/class.pmprogateway_stripe.php:2356
4322
  #: classes/gateways/class.pmprogateway_stripe.php:2373
4323
  #: classes/gateways/class.pmprogateway_stripe.php:2378
 
 
4324
  msgid "Error creating plan with Stripe:"
4325
  msgstr "Chyba při vytváření plánu předplatného Stripe:"
4326
 
@@ -4338,6 +4388,8 @@ msgstr "Chyba při vytváření plánu předplatného Stripe:"
4338
  #: classes/gateways/class.pmprogateway_stripe.php:2401
4339
  #: classes/gateways/class.pmprogateway_stripe.php:2409
4340
  #: classes/gateways/class.pmprogateway_stripe.php:2423
 
 
4341
  msgid "Error subscribing customer to plan with Stripe:"
4342
  msgstr "Chyba při přihlášení zákazníka k plánu předplatného Stripe:"
4343
 
@@ -4349,6 +4401,7 @@ msgstr "Chyba při přihlášení zákazníka k plánu předplatného Stripe:"
4349
  #: classes/gateways/class.pmprogateway_stripe.php:2632
4350
  #: classes/gateways/class.pmprogateway_stripe.php:2644
4351
  #: classes/gateways/class.pmprogateway_stripe.php:2666
 
4352
  msgid "Could not cancel old subscription."
4353
  msgstr "Nelze zrušit staré předplatné."
4354
 
@@ -4357,6 +4410,7 @@ msgstr "Nelze zrušit staré předplatné."
4357
  #: classes/gateways/class.pmprogateway_stripe.php:2648
4358
  #: classes/gateways/class.pmprogateway_stripe.php:2660
4359
  #: classes/gateways/class.pmprogateway_stripe.php:2682
 
4360
  msgid "Could not find the customer."
4361
  msgstr "Nelze najít zákazníka."
4362
 
@@ -5221,6 +5275,7 @@ msgstr "Moje členství"
5221
  #: adminpages/dashboard.php:224
5222
  #: adminpages/dashboard.php:292
5223
  #: adminpages/orders.php:1343
 
5224
  msgid "Level"
5225
  msgstr "Úroveň"
5226
 
@@ -5273,6 +5328,8 @@ msgstr "Upravit profil"
5273
  #: includes/profile.php:872
5274
  #: includes/profile.php:909
5275
  #: shortcodes/pmpro_account.php:195
 
 
5276
  msgid "Change Password"
5277
  msgstr "Změnit heslo"
5278
 
@@ -5359,6 +5416,7 @@ msgstr "Vaše placené předplatné spravuje PayPal. Pro aktualizazi Vašich fak
5359
  #: includes/profile.php:747
5360
  #: pages/billing.php:164
5361
  #: pages/checkout.php:234
 
5362
  msgid "First Name"
5363
  msgstr "Jméno"
5364
 
@@ -5372,6 +5430,7 @@ msgstr "Jméno"
5372
  #: includes/profile.php:748
5373
  #: pages/billing.php:168
5374
  #: pages/checkout.php:238
 
5375
  msgid "Last Name"
5376
  msgstr "Příjmení"
5377
 
@@ -6287,6 +6346,7 @@ msgstr "Kód <strong>%s</strong> byl použit na Vaši objednávku."
6287
  #: services/authnet-silent-post.php:133
6288
  #: services/authnet-silent-post.php:138
6289
  #: services/authnet-silent-post.php:173
 
6290
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
6291
  msgstr "<p>Platba je pozdržena pro posouzení v rámci Authorize.net.</p><p> Informace o platbě od Authorize.net"
6292
 
@@ -6343,6 +6403,7 @@ msgstr "každý"
6343
  #: adminpages/advancedsettings.php:316
6344
  #: includes/privacy.php:175
6345
  #: includes/profile.php:509
 
6346
  msgid "Never"
6347
  msgstr "Nikdy"
6348
 
@@ -6657,6 +6718,9 @@ msgstr ""
6657
  #: adminpages/orders.php:1544
6658
  #: adminpages/orders.php:1554
6659
  #: adminpages/orders.php:1553
 
 
 
6660
  msgid "N/A"
6661
  msgstr ""
6662
 
@@ -6683,6 +6747,7 @@ msgstr ""
6683
 
6684
  #: adminpages/admin_header.php:152
6685
  #: classes/gateways/class.pmprogateway_stripe.php:76
 
6686
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
6687
  msgstr ""
6688
 
@@ -6954,6 +7019,7 @@ msgstr ""
6954
  #: adminpages/dashboard.php:174
6955
  #: adminpages/license.php:49
6956
  #: adminpages/dashboard.php:178
 
6957
  msgid "Your license is invalid or expired."
6958
  msgstr ""
6959
 
@@ -6965,6 +7031,7 @@ msgstr ""
6965
  #: adminpages/dashboard.php:177
6966
  #: adminpages/license.php:51
6967
  #: adminpages/dashboard.php:181
 
6968
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
6969
  msgstr ""
6970
 
@@ -7442,26 +7509,33 @@ msgid "Your license key has been validated."
7442
  msgstr ""
7443
 
7444
  #: adminpages/license.php:43
 
7445
  msgid "Paid Memberships Pro Support License"
7446
  msgstr ""
7447
 
7448
  #: adminpages/license.php:47
 
7449
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
7450
  msgstr ""
7451
 
7452
  #: adminpages/license.php:49
 
 
7453
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
7454
  msgstr ""
7455
 
7456
  #: adminpages/license.php:59
 
7457
  msgid "Enter license key here..."
7458
  msgstr ""
7459
 
7460
  #: adminpages/license.php:61
 
7461
  msgid "Validate Key"
7462
  msgstr ""
7463
 
7464
  #: adminpages/license.php:95
 
7465
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
7466
  msgstr ""
7467
 
@@ -8080,6 +8154,7 @@ msgstr ""
8080
 
8081
  #: classes/gateways/class.pmprogateway_braintree.php:87
8082
  #: classes/gateways/class.pmprogateway_stripe.php:91
 
8083
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
8084
  msgstr ""
8085
 
@@ -8377,6 +8452,7 @@ msgid "Your order has been refused."
8377
  msgstr ""
8378
 
8379
  #: classes/gateways/class.pmprogateway_cybersource.php:922
 
8380
  msgid "Unknown error."
8381
  msgstr ""
8382
 
@@ -8391,23 +8467,28 @@ msgstr ""
8391
  #: classes/gateways/class.pmprogateway_paypal.php:146
8392
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
8393
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
 
8394
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
8395
  msgstr ""
8396
 
8397
  #: classes/gateways/class.pmprogateway_paypal.php:185
8398
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
 
8399
  msgid "Confirmation Step"
8400
  msgstr ""
8401
 
8402
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
 
8403
  msgid "Checkout was already processed."
8404
  msgstr ""
8405
 
8406
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
 
8407
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
8408
  msgstr ""
8409
 
8410
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
 
8411
  msgid "Error creating plan with PayPal."
8412
  msgstr ""
8413
 
@@ -8419,11 +8500,14 @@ msgstr ""
8419
  #: classes/gateways/class.pmprogateway_stripe.php:436
8420
  #: classes/gateways/class.pmprogateway_stripe.php:354
8421
  #: classes/gateways/class.pmprogateway_stripe.php:444
 
 
8422
  msgid "Stripe Connect Settings"
8423
  msgstr ""
8424
 
8425
  #: classes/gateways/class.pmprogateway_stripe.php:352
8426
  #: classes/gateways/class.pmprogateway_stripe.php:356
 
8427
  msgid "Live Mode:"
8428
  msgstr ""
8429
 
@@ -8431,6 +8515,8 @@ msgstr ""
8431
  #: classes/gateways/class.pmprogateway_stripe.php:440
8432
  #: classes/gateways/class.pmprogateway_stripe.php:358
8433
  #: classes/gateways/class.pmprogateway_stripe.php:448
 
 
8434
  msgid "Connected"
8435
  msgstr ""
8436
 
@@ -8438,6 +8524,8 @@ msgstr ""
8438
  #: classes/gateways/class.pmprogateway_stripe.php:442
8439
  #: classes/gateways/class.pmprogateway_stripe.php:362
8440
  #: classes/gateways/class.pmprogateway_stripe.php:452
 
 
8441
  msgid "Not Connected"
8442
  msgstr ""
8443
 
@@ -8445,11 +8533,14 @@ msgstr ""
8445
  #: classes/gateways/class.pmprogateway_stripe.php:449
8446
  #: classes/gateways/class.pmprogateway_stripe.php:369
8447
  #: classes/gateways/class.pmprogateway_stripe.php:459
 
 
8448
  msgid "Your site is using legacy API keys to authenticate with Stripe."
8449
  msgstr ""
8450
 
8451
  #: classes/gateways/class.pmprogateway_stripe.php:364
8452
  #: classes/gateways/class.pmprogateway_stripe.php:371
 
8453
  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."
8454
  msgstr ""
8455
 
@@ -8457,6 +8548,8 @@ msgstr ""
8457
  #: classes/gateways/class.pmprogateway_stripe.php:458
8458
  #: classes/gateways/class.pmprogateway_stripe.php:380
8459
  #: classes/gateways/class.pmprogateway_stripe.php:470
 
 
8460
  msgid "Stripe Connection:"
8461
  msgstr ""
8462
 
@@ -8464,11 +8557,14 @@ msgstr ""
8464
  #: classes/gateways/class.pmprogateway_stripe.php:482
8465
  #: classes/gateways/class.pmprogateway_stripe.php:396
8466
  #: classes/gateways/class.pmprogateway_stripe.php:494
 
 
8467
  msgid "Disconnect From Stripe"
8468
  msgstr ""
8469
 
8470
  #: classes/gateways/class.pmprogateway_stripe.php:389
8471
  #: classes/gateways/class.pmprogateway_stripe.php:397
 
8472
  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."
8473
  msgstr ""
8474
 
@@ -8476,16 +8572,20 @@ msgstr ""
8476
  #: classes/gateways/class.pmprogateway_stripe.php:496
8477
  #: classes/gateways/class.pmprogateway_stripe.php:409
8478
  #: classes/gateways/class.pmprogateway_stripe.php:508
 
 
8479
  msgid "Connect with Stripe"
8480
  msgstr ""
8481
 
8482
  #: classes/gateways/class.pmprogateway_stripe.php:408
8483
  #: classes/gateways/class.pmprogateway_stripe.php:416
 
8484
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
8485
  msgstr ""
8486
 
8487
  #: classes/gateways/class.pmprogateway_stripe.php:411
8488
  #: classes/gateways/class.pmprogateway_stripe.php:419
 
8489
  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."
8490
  msgstr ""
8491
 
@@ -8496,6 +8596,9 @@ msgstr ""
8496
  #: classes/gateways/class.pmprogateway_stripe.php:519
8497
  #: classes/gateways/class.pmprogateway_stripe.php:559
8498
  #: classes/gateways/class.pmprogateway_stripe.php:578
 
 
 
8499
  msgid "Webhook"
8500
  msgstr ""
8501
 
@@ -8506,32 +8609,40 @@ msgstr ""
8506
  #: classes/gateways/class.pmprogateway_stripe.php:523
8507
  #: classes/gateways/class.pmprogateway_stripe.php:594
8508
  #: classes/gateways/class.pmprogateway_stripe.php:613
 
 
 
8509
  msgid "Webhook URL"
8510
  msgstr ""
8511
 
8512
  #: classes/gateways/class.pmprogateway_stripe.php:438
8513
  #: classes/gateways/class.pmprogateway_stripe.php:446
 
8514
  msgid "Test Mode:"
8515
  msgstr ""
8516
 
8517
  #: classes/gateways/class.pmprogateway_stripe.php:450
8518
  #: classes/gateways/class.pmprogateway_stripe.php:461
 
8519
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
8520
  msgstr ""
8521
 
8522
  #: classes/gateways/class.pmprogateway_stripe.php:483
8523
  #: classes/gateways/class.pmprogateway_stripe.php:495
 
8524
  msgid "This will disconnect your site from Stripe in test mode only."
8525
  msgstr ""
8526
 
8527
  #: classes/gateways/class.pmprogateway_stripe.php:518
8528
  #: classes/gateways/class.pmprogateway_stripe.php:530
 
8529
  msgid "Stripe API Settings (Legacy)"
8530
  msgstr ""
8531
 
8532
  #: classes/gateways/class.pmprogateway_stripe.php:531
8533
  #: classes/gateways/class.pmprogateway_stripe.php:543
8534
  #: classes/gateways/class.pmprogateway_stripe.php:562
 
8535
  msgid "Your Publishable Key appears incorrect."
8536
  msgstr ""
8537
 
@@ -8541,24 +8652,29 @@ msgstr ""
8541
  #: classes/gateways/class.pmprogateway_stripe.php:587
8542
  #: classes/gateways/class.pmprogateway_stripe.php:582
8543
  #: classes/gateways/class.pmprogateway_stripe.php:606
 
 
8544
  msgid "Create Webhook"
8545
  msgstr ""
8546
 
8547
  #: classes/gateways/class.pmprogateway_stripe.php:557
8548
  #: classes/gateways/class.pmprogateway_stripe.php:569
8549
  #: classes/gateways/class.pmprogateway_stripe.php:588
 
8550
  msgid "A webhook is set up in Stripe, but it is disabled."
8551
  msgstr ""
8552
 
8553
  #: classes/gateways/class.pmprogateway_stripe.php:564
8554
  #: classes/gateways/class.pmprogateway_stripe.php:576
8555
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
8556
  msgid "A webhook is set up in Stripe, but it is using an old API version."
8557
  msgstr ""
8558
 
8559
  #: classes/gateways/class.pmprogateway_stripe.php:564
8560
  #: classes/gateways/class.pmprogateway_stripe.php:576
8561
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
8562
  msgid "Rebuild Webhook"
8563
  msgstr ""
8564
 
@@ -8571,12 +8687,16 @@ msgstr ""
8571
  #: classes/gateways/class.pmprogateway_stripe.php:601
8572
  #: classes/gateways/class.pmprogateway_stripe.php:741
8573
  #: classes/gateways/class.pmprogateway_stripe.php:857
 
 
 
8574
  msgid "Your webhook is enabled."
8575
  msgstr ""
8576
 
8577
  #: classes/gateways/class.pmprogateway_stripe.php:570
8578
  #: classes/gateways/class.pmprogateway_stripe.php:582
8579
  #: classes/gateways/class.pmprogateway_stripe.php:601
 
8580
  msgid "Disable Webhook"
8581
  msgstr ""
8582
 
@@ -8592,66 +8712,80 @@ msgstr ""
8592
  #: classes/gateways/class.pmprogateway_stripe.php:768
8593
  #: classes/gateways/class.pmprogateway_stripe.php:785
8594
  #: classes/gateways/class.pmprogateway_stripe.php:819
 
 
 
 
8595
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
8596
  msgstr ""
8597
 
8598
  #: classes/gateways/class.pmprogateway_stripe.php:589
8599
  #: classes/gateways/class.pmprogateway_stripe.php:601
8600
  #: classes/gateways/class.pmprogateway_stripe.php:620
 
8601
  msgid "Other Stripe Settings"
8602
  msgstr ""
8603
 
8604
  #: classes/gateways/class.pmprogateway_stripe.php:593
8605
  #: classes/gateways/class.pmprogateway_stripe.php:605
8606
  #: classes/gateways/class.pmprogateway_stripe.php:624
 
8607
  msgid "Stripe API Version"
8608
  msgstr ""
8609
 
8610
  #: classes/gateways/class.pmprogateway_stripe.php:612
8611
  #: classes/gateways/class.pmprogateway_stripe.php:624
8612
  #: classes/gateways/class.pmprogateway_stripe.php:643
 
8613
  msgid "Enable Payment Request Button"
8614
  msgstr ""
8615
 
8616
  #: classes/gateways/class.pmprogateway_stripe.php:630
8617
  #: classes/gateways/class.pmprogateway_stripe.php:642
8618
  #: classes/gateways/class.pmprogateway_stripe.php:661
 
8619
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
8620
  msgstr ""
8621
 
8622
  #: classes/gateways/class.pmprogateway_stripe.php:643
8623
  #: classes/gateways/class.pmprogateway_stripe.php:655
8624
  #: classes/gateways/class.pmprogateway_stripe.php:674
 
8625
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
8626
  msgstr ""
8627
 
8628
  #: classes/gateways/class.pmprogateway_stripe.php:645
8629
  #: classes/gateways/class.pmprogateway_stripe.php:657
8630
  #: classes/gateways/class.pmprogateway_stripe.php:676
 
8631
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
8632
  msgstr ""
8633
 
8634
  #: classes/gateways/class.pmprogateway_stripe.php:647
8635
  #: classes/gateways/class.pmprogateway_stripe.php:659
8636
  #: classes/gateways/class.pmprogateway_stripe.php:678
 
8637
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
8638
  msgstr ""
8639
 
8640
  #: classes/gateways/class.pmprogateway_stripe.php:649
8641
  #: classes/gateways/class.pmprogateway_stripe.php:661
8642
  #: classes/gateways/class.pmprogateway_stripe.php:680
 
8643
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
8644
  msgstr ""
8645
 
8646
  #: classes/gateways/class.pmprogateway_stripe.php:674
8647
  #: classes/gateways/class.pmprogateway_stripe.php:686
8648
  #: classes/gateways/class.pmprogateway_stripe.php:705
 
8649
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
8650
  msgstr ""
8651
 
8652
  #: classes/gateways/class.pmprogateway_stripe.php:695
8653
  #: classes/gateways/class.pmprogateway_stripe.php:707
8654
  #: classes/gateways/class.pmprogateway_stripe.php:726
 
8655
  msgid "Webhook creation failed. You might already have a webhook set up."
8656
  msgstr ""
8657
 
@@ -8661,36 +8795,43 @@ msgstr ""
8661
  #: classes/gateways/class.pmprogateway_stripe.php:847
8662
  #: classes/gateways/class.pmprogateway_stripe.php:792
8663
  #: classes/gateways/class.pmprogateway_stripe.php:866
 
 
8664
  msgid "There was an error deleting the webhook."
8665
  msgstr ""
8666
 
8667
  #: classes/gateways/class.pmprogateway_stripe.php:811
8668
  #: classes/gateways/class.pmprogateway_stripe.php:823
8669
  #: classes/gateways/class.pmprogateway_stripe.php:842
 
8670
  msgid "Webhook creation failed. Please refresh and try again."
8671
  msgstr ""
8672
 
8673
  #: classes/gateways/class.pmprogateway_stripe.php:867
8674
  #: classes/gateways/class.pmprogateway_stripe.php:879
8675
  #: classes/gateways/class.pmprogateway_stripe.php:898
 
8676
  msgid "Verification steps confirmed. Your payment is processing."
8677
  msgstr ""
8678
 
8679
  #: classes/gateways/class.pmprogateway_stripe.php:1262
8680
  #: classes/gateways/class.pmprogateway_stripe.php:1274
8681
  #: classes/gateways/class.pmprogateway_stripe.php:1293
 
8682
  msgid "Pay with Credit Card"
8683
  msgstr ""
8684
 
8685
  #: classes/gateways/class.pmprogateway_stripe.php:1296
8686
  #: classes/gateways/class.pmprogateway_stripe.php:1308
8687
  #: classes/gateways/class.pmprogateway_stripe.php:1327
 
8688
  msgid "CVC"
8689
  msgstr ""
8690
 
8691
  #: classes/gateways/class.pmprogateway_stripe.php:1374
8692
  #: classes/gateways/class.pmprogateway_stripe.php:1386
8693
  #: classes/gateways/class.pmprogateway_stripe.php:1405
 
8694
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
8695
  msgstr ""
8696
 
@@ -8706,6 +8847,10 @@ msgstr ""
8706
  #: classes/gateways/class.pmprogateway_stripe.php:2016
8707
  #: classes/gateways/class.pmprogateway_stripe.php:2029
8708
  #: classes/gateways/class.pmprogateway_stripe.php:2033
 
 
 
 
8709
  msgid "Error: %s"
8710
  msgstr ""
8711
 
@@ -8715,6 +8860,8 @@ msgstr ""
8715
  #: classes/gateways/class.pmprogateway_stripe.php:2182
8716
  #: classes/gateways/class.pmprogateway_stripe.php:2196
8717
  #: classes/gateways/class.pmprogateway_stripe.php:2201
 
 
8718
  msgid "Error getting subscription with Stripe:"
8719
  msgstr ""
8720
 
@@ -8724,30 +8871,35 @@ msgstr ""
8724
  #: classes/gateways/class.pmprogateway_stripe.php:2834
8725
  #: classes/gateways/class.pmprogateway_stripe.php:2850
8726
  #: classes/gateways/class.pmprogateway_stripe.php:2856
 
8727
  msgid "Error: "
8728
  msgstr ""
8729
 
8730
  #: classes/gateways/class.pmprogateway_stripe.php:2836
8731
  #: classes/gateways/class.pmprogateway_stripe.php:2848
8732
  #: classes/gateways/class.pmprogateway_stripe.php:2870
 
8733
  msgid "Error: Unkown error while refunding charge #%s"
8734
  msgstr ""
8735
 
8736
  #: classes/gateways/class.pmprogateway_stripe.php:3330
8737
  #: classes/gateways/class.pmprogateway_stripe.php:3342
8738
  #: classes/gateways/class.pmprogateway_stripe.php:3364
 
8739
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
8740
  msgstr ""
8741
 
8742
  #: classes/gateways/class.pmprogateway_stripe.php:3347
8743
  #: classes/gateways/class.pmprogateway_stripe.php:3359
8744
  #: classes/gateways/class.pmprogateway_stripe.php:3381
 
8745
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
8746
  msgstr ""
8747
 
8748
  #: classes/gateways/class.pmprogateway_stripe.php:3533
8749
  #: classes/gateways/class.pmprogateway_stripe.php:3545
8750
  #: classes/gateways/class.pmprogateway_stripe.php:3567
 
8751
  msgid "Invalid response from the Stripe Connect server."
8752
  msgstr ""
8753
 
@@ -8755,6 +8907,7 @@ msgstr ""
8755
  #: classes/gateways/class.pmprogateway_stripe.php:3561
8756
  #: classes/gateways/class.pmprogateway_stripe.php:3573
8757
  #: classes/gateways/class.pmprogateway_stripe.php:3595
 
8758
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
8759
  msgstr ""
8760
 
@@ -8762,30 +8915,35 @@ msgstr ""
8762
  #: classes/gateways/class.pmprogateway_stripe.php:3597
8763
  #: classes/gateways/class.pmprogateway_stripe.php:3609
8764
  #: classes/gateways/class.pmprogateway_stripe.php:3631
 
8765
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
8766
  msgstr ""
8767
 
8768
  #: classes/gateways/class.pmprogateway_stripe.php:3768
8769
  #: classes/gateways/class.pmprogateway_stripe.php:3780
8770
  #: classes/gateways/class.pmprogateway_stripe.php:3802
 
8771
  msgid "Last webhook received at"
8772
  msgstr ""
8773
 
8774
  #: classes/gateways/class.pmprogateway_stripe.php:3770
8775
  #: classes/gateways/class.pmprogateway_stripe.php:3782
8776
  #: classes/gateways/class.pmprogateway_stripe.php:3804
 
8777
  msgid "No webhooks have been received."
8778
  msgstr ""
8779
 
8780
  #: classes/gateways/class.pmprogateway_stripe.php:3774
8781
  #: classes/gateways/class.pmprogateway_stripe.php:3786
8782
  #: classes/gateways/class.pmprogateway_stripe.php:3808
 
8783
  msgid "Your webhook may not be working correctly."
8784
  msgstr ""
8785
 
8786
  #: classes/gateways/class.pmprogateway_stripe.php:3776
8787
  #: classes/gateways/class.pmprogateway_stripe.php:3788
8788
  #: classes/gateways/class.pmprogateway_stripe.php:3810
 
8789
  msgid "Click here for info on setting up your webhook with Stripe."
8790
  msgstr ""
8791
 
@@ -10918,11 +11076,13 @@ msgstr ""
10918
 
10919
  #: includes/login.php:429
10920
  #: includes/profile.php:843
 
10921
  msgid "New passwords do not match."
10922
  msgstr ""
10923
 
10924
  #: includes/login.php:433
10925
  #: includes/profile.php:839
 
10926
  msgid "Please complete all fields."
10927
  msgstr ""
10928
 
@@ -10952,17 +11112,21 @@ msgstr ""
10952
 
10953
  #: includes/login.php:688
10954
  #: includes/profile.php:891
 
10955
  msgid "New Password"
10956
  msgstr ""
10957
 
10958
  #: includes/login.php:690
10959
  #: includes/profile.php:894
10960
  #: includes/scripts.php:86
 
 
10961
  msgid "Strength Indicator"
10962
  msgstr ""
10963
 
10964
  #: includes/login.php:694
10965
  #: includes/profile.php:898
 
10966
  msgid "Confirm New Password"
10967
  msgstr ""
10968
 
@@ -11063,21 +11227,25 @@ msgstr ""
11063
  #: includes/privacy.php:182
11064
  #: includes/profile.php:425
11065
  #: includes/profile.php:493
 
11066
  msgid "Level ID"
11067
  msgstr ""
11068
 
11069
  #: includes/privacy.php:190
11070
  #: includes/profile.php:496
 
11071
  msgid "Date Modified"
11072
  msgstr ""
11073
 
11074
  #: includes/privacy.php:194
11075
  #: includes/profile.php:497
 
11076
  msgid "End Date"
11077
  msgstr ""
11078
 
11079
  #: includes/privacy.php:198
11080
  #: includes/profile.php:498
 
11081
  msgid "Level Cost"
11082
  msgstr ""
11083
 
@@ -11182,68 +11350,85 @@ msgid "Membership Levels History"
11182
  msgstr ""
11183
 
11184
  #: includes/profile.php:485
 
11185
  msgid "No membership orders found."
11186
  msgstr ""
11187
 
11188
  #: includes/profile.php:537
 
11189
  msgid "No membership history found."
11190
  msgstr ""
11191
 
11192
  #: includes/profile.php:644
 
11193
  msgid "Log in to edit your profile."
11194
  msgstr ""
11195
 
11196
  #: includes/profile.php:679
 
11197
  msgid "Please enter a display name."
11198
  msgstr ""
11199
 
11200
  #: includes/profile.php:689
 
11201
  msgid "Please enter an email address."
11202
  msgstr ""
11203
 
11204
  #: includes/profile.php:691
 
11205
  msgid "The email address isn&#8217;t correct."
11206
  msgstr ""
11207
 
11208
  #: includes/profile.php:695
 
11209
  msgid "This email is already registered, please choose another one."
11210
  msgstr ""
11211
 
11212
  #: includes/profile.php:722
 
11213
  msgid "Your profile has been updated."
11214
  msgstr ""
11215
 
11216
  #: includes/profile.php:749
 
11217
  msgid "Display name publicly as"
11218
  msgstr ""
11219
 
11220
  #: includes/profile.php:762
 
11221
  msgid "Site administrators must use the WordPress dashboard to update their email address."
11222
  msgstr ""
11223
 
11224
  #: includes/profile.php:785
 
11225
  msgid "Update Profile"
11226
  msgstr ""
11227
 
11228
  #: includes/profile.php:841
 
11229
  msgid "Please enter your current password."
11230
  msgstr ""
11231
 
11232
  #: includes/profile.php:845
 
11233
  msgid "Your current password is incorrect."
11234
  msgstr ""
11235
 
11236
  #: includes/profile.php:856
 
11237
  msgid "Your password has been updated."
11238
  msgstr ""
11239
 
11240
  #: includes/profile.php:886
 
11241
  msgid "Current Password"
11242
  msgstr ""
11243
 
11244
  #: includes/profile.php:888
11245
  #: includes/profile.php:893
11246
  #: includes/profile.php:900
 
 
11247
  msgid "Required Field"
11248
  msgstr ""
11249
 
@@ -11356,10 +11541,12 @@ msgid "That email address is already in use. Please log in, or use a different e
11356
  msgstr ""
11357
 
11358
  #: services/braintree-webhook.php:425
 
11359
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
11360
  msgstr ""
11361
 
11362
  #: services/braintree-webhook.php:427
 
11363
  msgid "A member's Braintree subscription has expired at %s"
11364
  msgstr ""
11365
 
@@ -11678,16 +11865,22 @@ msgstr ""
11678
 
11679
  #: classes/gateways/class.pmprogateway_stripe.php:360
11680
  #: classes/gateways/class.pmprogateway_stripe.php:450
 
 
11681
  msgid "Connected with Legacy Keys"
11682
  msgstr ""
11683
 
11684
  #: classes/gateways/class.pmprogateway_stripe.php:370
11685
  #: classes/gateways/class.pmprogateway_stripe.php:460
 
 
11686
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
11687
  msgstr ""
11688
 
11689
  #: classes/gateways/class.pmprogateway_stripe.php:372
11690
  #: classes/gateways/class.pmprogateway_stripe.php:462
 
 
11691
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
11692
  msgstr ""
11693
 
@@ -11744,13 +11937,49 @@ msgid "missing"
11744
  msgstr ""
11745
 
11746
  #: classes/gateways/class.pmprogateway_stripe.php:533
 
11747
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
11748
  msgstr ""
11749
 
11750
  #: classes/gateways/class.pmprogateway_stripe.php:534
 
11751
  msgid "Click here to use the legacy API settings."
11752
  msgstr ""
11753
 
11754
  #: paid-memberships-pro.php:194
11755
  msgid "Once a month"
11756
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.3\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-10-11T14:00:08+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
190
  #: adminpages/orders.php:391
191
  #: adminpages/orders.php:1445
192
  #: adminpages/orders.php:1448
193
+ #: includes/profile.php:762
194
  msgid "Email"
195
  msgstr "E-mail"
196
 
376
  #: adminpages/advancedsettings.php:479
377
  #: classes/gateways/class.pmprogateway_stripe.php:634
378
  #: classes/gateways/class.pmprogateway_stripe.php:648
379
+ #: classes/gateways/class.pmprogateway_stripe.php:640
380
+ #: classes/gateways/class.pmprogateway_stripe.php:654
381
  msgid "No"
382
  msgstr "Ne"
383
 
468
  #: adminpages/advancedsettings.php:397
469
  #: classes/gateways/class.pmprogateway_stripe.php:636
470
  #: classes/gateways/class.pmprogateway_stripe.php:650
471
+ #: classes/gateways/class.pmprogateway_stripe.php:642
472
+ #: classes/gateways/class.pmprogateway_stripe.php:656
473
  msgid "Yes"
474
  msgstr "Ano"
475
 
733
  #: includes/privacy.php:186
734
  #: includes/profile.php:495
735
  #: adminpages/discountcodes.php:489
736
+ #: includes/profile.php:501
737
  msgid "Start Date"
738
  msgstr "Počáteční datum"
739
 
757
  #: classes/gateways/class.pmprogateway_stripe.php:1301
758
  #: adminpages/discountcodes.php:507
759
  #: classes/gateways/class.pmprogateway_stripe.php:1320
760
+ #: classes/gateways/class.pmprogateway_stripe.php:1326
761
  msgid "Expiration Date"
762
  msgstr "Datum vypršení"
763
 
879
  #: adminpages/discountcodes.php:612
880
  #: adminpages/discountcodes.php:699
881
  #: classes/gateways/class.pmprogateway_stripe.php:1363
882
+ #: classes/gateways/class.pmprogateway_stripe.php:1369
883
  msgid "Day(s)"
884
  msgstr "den(y)"
885
 
905
  #: adminpages/discountcodes.php:612
906
  #: adminpages/discountcodes.php:699
907
  #: classes/gateways/class.pmprogateway_stripe.php:1365
908
+ #: classes/gateways/class.pmprogateway_stripe.php:1371
909
  msgid "Month(s)"
910
  msgstr "měsíc(e)"
911
 
931
  #: adminpages/discountcodes.php:612
932
  #: adminpages/discountcodes.php:699
933
  #: classes/gateways/class.pmprogateway_stripe.php:1364
934
+ #: classes/gateways/class.pmprogateway_stripe.php:1370
935
  msgid "Week(s)"
936
  msgstr "týden(y)"
937
 
957
  #: adminpages/discountcodes.php:612
958
  #: adminpages/discountcodes.php:699
959
  #: classes/gateways/class.pmprogateway_stripe.php:1366
960
+ #: classes/gateways/class.pmprogateway_stripe.php:1372
961
  msgid "Year(s)"
962
  msgstr "rok(y)"
963
 
1481
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1482
  #: adminpages/discountcodes.php:608
1483
  #: classes/gateways/class.pmprogateway_stripe.php:1497
1484
+ #: classes/gateways/class.pmprogateway_stripe.php:1503
1485
  msgid "per"
1486
  msgstr "na"
1487
 
2149
  #: adminpages/orders.php:679
2150
  #: classes/gateways/class.pmprogateway_stripe.php:1284
2151
  #: classes/gateways/class.pmprogateway_stripe.php:1303
2152
+ #: classes/gateways/class.pmprogateway_stripe.php:1309
2153
  msgid "Card Type"
2154
  msgstr "Typ karty"
2155
 
2213
  #: adminpages/dashboard.php:294
2214
  #: adminpages/orders.php:742
2215
  #: adminpages/orders.php:1348
2216
+ #: includes/profile.php:505
2217
  msgid "Status"
2218
  msgstr "Stav"
2219
 
2371
  #: pages/cancel.php:96
2372
  #: shortcodes/pmpro_account.php:106
2373
  #: adminpages/orders.php:968
2374
+ #: includes/profile.php:798
2375
+ #: includes/profile.php:922
2376
  msgid "Cancel"
2377
  msgstr "Zrušit"
2378
 
3298
  #: classes/class.pmproemail.php:769
3299
  #: classes/class.pmproemail.php:771
3300
  #: classes/gateways/class.pmprogateway_stripe.php:1333
3301
+ #: classes/gateways/class.pmprogateway_stripe.php:1339
3302
  msgid "Discount Code"
3303
  msgstr "Slevový kód"
3304
 
3713
  #: pages/checkout.php:366
3714
  #: classes/gateways/class.pmprogateway_stripe.php:1263
3715
  #: classes/gateways/class.pmprogateway_stripe.php:1282
3716
+ #: classes/gateways/class.pmprogateway_stripe.php:1288
3717
  msgid "Payment Information"
3718
  msgstr "Platební informace"
3719
 
3729
  #: pages/checkout.php:367
3730
  #: classes/gateways/class.pmprogateway_stripe.php:1264
3731
  #: classes/gateways/class.pmprogateway_stripe.php:1283
3732
+ #: classes/gateways/class.pmprogateway_stripe.php:1289
3733
  #, php-format
3734
  msgid "We Accept %s"
3735
  msgstr "Přijímáme %s"
3749
  #: pages/checkout.php:389
3750
  #: classes/gateways/class.pmprogateway_stripe.php:1297
3751
  #: classes/gateways/class.pmprogateway_stripe.php:1316
3752
+ #: classes/gateways/class.pmprogateway_stripe.php:1322
3753
  msgid "Card Number"
3754
  msgstr "Číslo karty"
3755
 
3798
  #: pages/checkout.php:432
3799
  #: classes/gateways/class.pmprogateway_stripe.php:1319
3800
  #: classes/gateways/class.pmprogateway_stripe.php:1338
3801
+ #: classes/gateways/class.pmprogateway_stripe.php:1344
3802
  msgid "Apply"
3803
  msgstr "Použít"
3804
 
4010
  #: classes/gateways/class.pmprogateway_paypal.php:132
4011
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
4012
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
4013
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:151
4014
  msgid "PayPal Settings"
4015
  msgstr "Nastavení PayPal"
4016
 
4030
  #: classes/gateways/class.pmprogateway_paypal.php:153
4031
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
4032
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
4033
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:172
4034
  msgid "Gateway Account Email"
4035
  msgstr "E-mail účtu brány"
4036
 
4047
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
4048
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
4049
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
4050
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:180
4051
  msgid "API Username"
4052
  msgstr "Uživatelské jméno API"
4053
 
4064
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
4065
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
4066
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
4067
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:188
4068
  msgid "API Password"
4069
  msgstr "Heslo API"
4070
 
4077
  #: classes/gateways/class.pmprogateway_paypal.php:177
4078
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
4079
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
4080
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:196
4081
  msgid "API Signature"
4082
  msgstr "Signatura API"
4083
 
4091
  #: classes/gateways/class.pmprogateway_paypal.php:196
4092
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
4093
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
4094
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:215
4095
  msgid "IPN Handler URL"
4096
  msgstr "URL IPN Handleru"
4097
 
4114
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
4115
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
4116
  #: pages/checkout.php:218
4117
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:498
4118
  msgid "Check Out with PayPal"
4119
  msgstr "Zde zaplaťte pomocí PayPalu"
4120
 
4130
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
4131
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
4132
  #: pages/checkout.php:526
4133
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
4134
  msgid "Submit and Check Out"
4135
  msgstr "Odeslat a zaplatit"
4136
 
4148
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
4149
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
4150
  #: pages/checkout.php:526
4151
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
4152
  msgid "Submit and Confirm"
4153
  msgstr "Odeslat a potvrdit"
4154
 
4166
  #: classes/gateways/class.pmprogateway_paypal.php:716
4167
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
4168
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
4169
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:841
4170
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
4171
  msgstr "Prosíme obraťte se na vlastníka stránky nebo zrušte předplatné v rámci PayPal a ujistěte se, že Vám nebude do budoucna účtováno."
4172
 
4175
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
4176
  #: paid-memberships-pro.php:160
4177
  #: paid-memberships-pro.php:162
4178
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:94
4179
  msgid "PayPal Express"
4180
  msgstr "PayPal Express"
4181
 
4186
  #: adminpages/paymentsettings.php:490
4187
  #: classes/gateways/class.pmprogateway_paypal.php:199
4188
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
4189
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:218
4190
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
4191
  msgstr "Chcete-li plně integrovat PayPal, nastavte IPN Handler URL na"
4192
 
4206
  #: preheaders/checkout.php:823
4207
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
4208
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
4209
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:352
4210
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:411
4211
  msgid "The PayPal Token was lost."
4212
  msgstr "Paypal Token byl ztracen."
4213
 
4229
  #: classes/gateways/class.pmprogateway_stripe.php:252
4230
  #: paid-memberships-pro.php:159
4231
  #: paid-memberships-pro.php:161
4232
+ #: classes/gateways/class.pmprogateway_stripe.php:258
4233
  msgid "Stripe"
4234
  msgstr "Stripe"
4235
 
4244
  #: classes/gateways/class.pmprogateway_stripe.php:539
4245
  #: classes/gateways/class.pmprogateway_stripe.php:551
4246
  #: classes/gateways/class.pmprogateway_stripe.php:570
4247
+ #: classes/gateways/class.pmprogateway_stripe.php:576
4248
  msgid "Secret Key"
4249
  msgstr "Tajný klíč"
4250
 
4255
  #: classes/gateways/class.pmprogateway_stripe.php:523
4256
  #: classes/gateways/class.pmprogateway_stripe.php:535
4257
  #: classes/gateways/class.pmprogateway_stripe.php:554
4258
+ #: classes/gateways/class.pmprogateway_stripe.php:560
4259
  msgid "Publishable Key"
4260
  msgstr "Veřejný klíč"
4261
 
4266
  #: classes/gateways/class.pmprogateway_stripe.php:598
4267
  #: classes/gateways/class.pmprogateway_stripe.php:610
4268
  #: classes/gateways/class.pmprogateway_stripe.php:629
4269
+ #: classes/gateways/class.pmprogateway_stripe.php:635
4270
  msgid "Show Billing Address Fields"
4271
  msgstr "Zobrazit pole fakturační adresy"
4272
 
4276
  #: classes/gateways/class.pmprogateway_stripe.php:607
4277
  #: classes/gateways/class.pmprogateway_stripe.php:619
4278
  #: classes/gateways/class.pmprogateway_stripe.php:638
4279
+ #: classes/gateways/class.pmprogateway_stripe.php:644
4280
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
4281
  msgstr "Stripe nevyžaduje pole fakturační adresy. Zvolte 'Ne' pro jejich skrytí na stránce pokladny.<br /><strong>Pokud zvolíte Ne, ujistěte se, že jste zakázali ověření adresy v ovládacím panelu Stripe.</strong>"
4282
 
4292
  #: classes/gateways/class.pmprogateway_stripe.php:1379
4293
  #: classes/gateways/class.pmprogateway_stripe.php:1391
4294
  #: classes/gateways/class.pmprogateway_stripe.php:1410
4295
+ #: classes/gateways/class.pmprogateway_stripe.php:1416
4296
  msgid "Subscription Updates"
4297
  msgstr "Aktualizace předplatného"
4298
 
4300
  #: classes/gateways/class.pmprogateway_stripe.php:1383
4301
  #: classes/gateways/class.pmprogateway_stripe.php:1395
4302
  #: classes/gateways/class.pmprogateway_stripe.php:1414
4303
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
4304
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
4305
  msgstr "Aktualizace předplatného, umožňují změnit hodnoty předplatného v nastaveném čase. Ujistěte se, že po provedení změn klepnete na tlačítko Aktualizovat profil."
4306
 
4308
  #: classes/gateways/class.pmprogateway_stripe.php:1385
4309
  #: classes/gateways/class.pmprogateway_stripe.php:1397
4310
  #: classes/gateways/class.pmprogateway_stripe.php:1416
4311
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
4312
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
4313
  msgstr "Aktualizace předplatného, umožňují změnit hodnoty předplatného v nastaveném čase. Ujistěte se, že po provedení změn klepnete na tlačítko Aktualizovat uživatele."
4314
 
4320
  #: pages/billing.php:425
4321
  #: classes/gateways/class.pmprogateway_stripe.php:1403
4322
  #: classes/gateways/class.pmprogateway_stripe.php:1422
4323
+ #: classes/gateways/class.pmprogateway_stripe.php:1428
4324
  msgid "Update"
4325
  msgstr "Aktualizovat"
4326
 
4328
  #: classes/gateways/class.pmprogateway_stripe.php:2480
4329
  #: classes/gateways/class.pmprogateway_stripe.php:2492
4330
  #: classes/gateways/class.pmprogateway_stripe.php:2514
4331
+ #: classes/gateways/class.pmprogateway_stripe.php:2520
4332
  msgid "Could not cancel the old subscription. Updates have not been processed."
4333
  msgstr "Nemohu zrušit staré předplatné. Aktualizace nebyly zpracovány."
4334
 
4347
  #: classes/gateways/class.pmprogateway_stripe.php:2127
4348
  #: classes/gateways/class.pmprogateway_stripe.php:2132
4349
  #: classes/gateways/class.pmprogateway_stripe.php:2137
4350
+ #: classes/gateways/class.pmprogateway_stripe.php:2133
4351
+ #: classes/gateways/class.pmprogateway_stripe.php:2138
4352
+ #: classes/gateways/class.pmprogateway_stripe.php:2143
4353
  msgid "Error creating customer record with Stripe:"
4354
  msgstr "Chyba při vytváření záznamu zákazníka Stripe:"
4355
 
4369
  #: classes/gateways/class.pmprogateway_stripe.php:2356
4370
  #: classes/gateways/class.pmprogateway_stripe.php:2373
4371
  #: classes/gateways/class.pmprogateway_stripe.php:2378
4372
+ #: classes/gateways/class.pmprogateway_stripe.php:2379
4373
+ #: classes/gateways/class.pmprogateway_stripe.php:2384
4374
  msgid "Error creating plan with Stripe:"
4375
  msgstr "Chyba při vytváření plánu předplatného Stripe:"
4376
 
4388
  #: classes/gateways/class.pmprogateway_stripe.php:2401
4389
  #: classes/gateways/class.pmprogateway_stripe.php:2409
4390
  #: classes/gateways/class.pmprogateway_stripe.php:2423
4391
+ #: classes/gateways/class.pmprogateway_stripe.php:2415
4392
+ #: classes/gateways/class.pmprogateway_stripe.php:2429
4393
  msgid "Error subscribing customer to plan with Stripe:"
4394
  msgstr "Chyba při přihlášení zákazníka k plánu předplatného Stripe:"
4395
 
4401
  #: classes/gateways/class.pmprogateway_stripe.php:2632
4402
  #: classes/gateways/class.pmprogateway_stripe.php:2644
4403
  #: classes/gateways/class.pmprogateway_stripe.php:2666
4404
+ #: classes/gateways/class.pmprogateway_stripe.php:2672
4405
  msgid "Could not cancel old subscription."
4406
  msgstr "Nelze zrušit staré předplatné."
4407
 
4410
  #: classes/gateways/class.pmprogateway_stripe.php:2648
4411
  #: classes/gateways/class.pmprogateway_stripe.php:2660
4412
  #: classes/gateways/class.pmprogateway_stripe.php:2682
4413
+ #: classes/gateways/class.pmprogateway_stripe.php:2688
4414
  msgid "Could not find the customer."
4415
  msgstr "Nelze najít zákazníka."
4416
 
5275
  #: adminpages/dashboard.php:224
5276
  #: adminpages/dashboard.php:292
5277
  #: adminpages/orders.php:1343
5278
+ #: includes/profile.php:500
5279
  msgid "Level"
5280
  msgstr "Úroveň"
5281
 
5328
  #: includes/profile.php:872
5329
  #: includes/profile.php:909
5330
  #: shortcodes/pmpro_account.php:195
5331
+ #: includes/profile.php:884
5332
+ #: includes/profile.php:921
5333
  msgid "Change Password"
5334
  msgstr "Změnit heslo"
5335
 
5416
  #: includes/profile.php:747
5417
  #: pages/billing.php:164
5418
  #: pages/checkout.php:234
5419
+ #: includes/profile.php:759
5420
  msgid "First Name"
5421
  msgstr "Jméno"
5422
 
5430
  #: includes/profile.php:748
5431
  #: pages/billing.php:168
5432
  #: pages/checkout.php:238
5433
+ #: includes/profile.php:760
5434
  msgid "Last Name"
5435
  msgstr "Příjmení"
5436
 
6346
  #: services/authnet-silent-post.php:133
6347
  #: services/authnet-silent-post.php:138
6348
  #: services/authnet-silent-post.php:173
6349
+ #: services/authnet-silent-post.php:176
6350
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
6351
  msgstr "<p>Platba je pozdržena pro posouzení v rámci Authorize.net.</p><p> Informace o platbě od Authorize.net"
6352
 
6403
  #: adminpages/advancedsettings.php:316
6404
  #: includes/privacy.php:175
6405
  #: includes/profile.php:509
6406
+ #: includes/profile.php:515
6407
  msgid "Never"
6408
  msgstr "Nikdy"
6409
 
6718
  #: adminpages/orders.php:1544
6719
  #: adminpages/orders.php:1554
6720
  #: adminpages/orders.php:1553
6721
+ #: includes/profile.php:520
6722
+ #: includes/profile.php:521
6723
+ #: includes/profile.php:522
6724
  msgid "N/A"
6725
  msgstr ""
6726
 
6747
 
6748
  #: adminpages/admin_header.php:152
6749
  #: classes/gateways/class.pmprogateway_stripe.php:76
6750
+ #: classes/gateways/class.pmprogateway_stripe.php:82
6751
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
6752
  msgstr ""
6753
 
7019
  #: adminpages/dashboard.php:174
7020
  #: adminpages/license.php:49
7021
  #: adminpages/dashboard.php:178
7022
+ #: adminpages/license.php:41
7023
  msgid "Your license is invalid or expired."
7024
  msgstr ""
7025
 
7031
  #: adminpages/dashboard.php:177
7032
  #: adminpages/license.php:51
7033
  #: adminpages/dashboard.php:181
7034
+ #: adminpages/license.php:43
7035
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
7036
  msgstr ""
7037
 
7509
  msgstr ""
7510
 
7511
  #: adminpages/license.php:43
7512
+ #: adminpages/license.php:33
7513
  msgid "Paid Memberships Pro Support License"
7514
  msgstr ""
7515
 
7516
  #: adminpages/license.php:47
7517
+ #: adminpages/license.php:39
7518
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
7519
  msgstr ""
7520
 
7521
  #: adminpages/license.php:49
7522
+ #: adminpages/license.php:37
7523
+ #: adminpages/license.php:41
7524
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
7525
  msgstr ""
7526
 
7527
  #: adminpages/license.php:59
7528
+ #: adminpages/license.php:51
7529
  msgid "Enter license key here..."
7530
  msgstr ""
7531
 
7532
  #: adminpages/license.php:61
7533
+ #: adminpages/license.php:53
7534
  msgid "Validate Key"
7535
  msgstr ""
7536
 
7537
  #: adminpages/license.php:95
7538
+ #: adminpages/license.php:87
7539
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
7540
  msgstr ""
7541
 
8154
 
8155
  #: classes/gateways/class.pmprogateway_braintree.php:87
8156
  #: classes/gateways/class.pmprogateway_stripe.php:91
8157
+ #: classes/gateways/class.pmprogateway_stripe.php:97
8158
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
8159
  msgstr ""
8160
 
8452
  msgstr ""
8453
 
8454
  #: classes/gateways/class.pmprogateway_cybersource.php:922
8455
+ #: includes/license.php:159
8456
  msgid "Unknown error."
8457
  msgstr ""
8458
 
8467
  #: classes/gateways/class.pmprogateway_paypal.php:146
8468
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
8469
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
8470
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:165
8471
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
8472
  msgstr ""
8473
 
8474
  #: classes/gateways/class.pmprogateway_paypal.php:185
8475
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
8476
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:204
8477
  msgid "Confirmation Step"
8478
  msgstr ""
8479
 
8480
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
8481
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:356
8482
  msgid "Checkout was already processed."
8483
  msgstr ""
8484
 
8485
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
8486
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:791
8487
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
8488
  msgstr ""
8489
 
8490
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
8491
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:792
8492
  msgid "Error creating plan with PayPal."
8493
  msgstr ""
8494
 
8500
  #: classes/gateways/class.pmprogateway_stripe.php:436
8501
  #: classes/gateways/class.pmprogateway_stripe.php:354
8502
  #: classes/gateways/class.pmprogateway_stripe.php:444
8503
+ #: classes/gateways/class.pmprogateway_stripe.php:360
8504
+ #: classes/gateways/class.pmprogateway_stripe.php:450
8505
  msgid "Stripe Connect Settings"
8506
  msgstr ""
8507
 
8508
  #: classes/gateways/class.pmprogateway_stripe.php:352
8509
  #: classes/gateways/class.pmprogateway_stripe.php:356
8510
+ #: classes/gateways/class.pmprogateway_stripe.php:362
8511
  msgid "Live Mode:"
8512
  msgstr ""
8513
 
8515
  #: classes/gateways/class.pmprogateway_stripe.php:440
8516
  #: classes/gateways/class.pmprogateway_stripe.php:358
8517
  #: classes/gateways/class.pmprogateway_stripe.php:448
8518
+ #: classes/gateways/class.pmprogateway_stripe.php:364
8519
+ #: classes/gateways/class.pmprogateway_stripe.php:454
8520
  msgid "Connected"
8521
  msgstr ""
8522
 
8524
  #: classes/gateways/class.pmprogateway_stripe.php:442
8525
  #: classes/gateways/class.pmprogateway_stripe.php:362
8526
  #: classes/gateways/class.pmprogateway_stripe.php:452
8527
+ #: classes/gateways/class.pmprogateway_stripe.php:368
8528
+ #: classes/gateways/class.pmprogateway_stripe.php:458
8529
  msgid "Not Connected"
8530
  msgstr ""
8531
 
8533
  #: classes/gateways/class.pmprogateway_stripe.php:449
8534
  #: classes/gateways/class.pmprogateway_stripe.php:369
8535
  #: classes/gateways/class.pmprogateway_stripe.php:459
8536
+ #: classes/gateways/class.pmprogateway_stripe.php:375
8537
+ #: classes/gateways/class.pmprogateway_stripe.php:465
8538
  msgid "Your site is using legacy API keys to authenticate with Stripe."
8539
  msgstr ""
8540
 
8541
  #: classes/gateways/class.pmprogateway_stripe.php:364
8542
  #: classes/gateways/class.pmprogateway_stripe.php:371
8543
+ #: classes/gateways/class.pmprogateway_stripe.php:377
8544
  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."
8545
  msgstr ""
8546
 
8548
  #: classes/gateways/class.pmprogateway_stripe.php:458
8549
  #: classes/gateways/class.pmprogateway_stripe.php:380
8550
  #: classes/gateways/class.pmprogateway_stripe.php:470
8551
+ #: classes/gateways/class.pmprogateway_stripe.php:386
8552
+ #: classes/gateways/class.pmprogateway_stripe.php:476
8553
  msgid "Stripe Connection:"
8554
  msgstr ""
8555
 
8557
  #: classes/gateways/class.pmprogateway_stripe.php:482
8558
  #: classes/gateways/class.pmprogateway_stripe.php:396
8559
  #: classes/gateways/class.pmprogateway_stripe.php:494
8560
+ #: classes/gateways/class.pmprogateway_stripe.php:402
8561
+ #: classes/gateways/class.pmprogateway_stripe.php:500
8562
  msgid "Disconnect From Stripe"
8563
  msgstr ""
8564
 
8565
  #: classes/gateways/class.pmprogateway_stripe.php:389
8566
  #: classes/gateways/class.pmprogateway_stripe.php:397
8567
+ #: classes/gateways/class.pmprogateway_stripe.php:403
8568
  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."
8569
  msgstr ""
8570
 
8572
  #: classes/gateways/class.pmprogateway_stripe.php:496
8573
  #: classes/gateways/class.pmprogateway_stripe.php:409
8574
  #: classes/gateways/class.pmprogateway_stripe.php:508
8575
+ #: classes/gateways/class.pmprogateway_stripe.php:415
8576
+ #: classes/gateways/class.pmprogateway_stripe.php:514
8577
  msgid "Connect with Stripe"
8578
  msgstr ""
8579
 
8580
  #: classes/gateways/class.pmprogateway_stripe.php:408
8581
  #: classes/gateways/class.pmprogateway_stripe.php:416
8582
+ #: classes/gateways/class.pmprogateway_stripe.php:422
8583
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
8584
  msgstr ""
8585
 
8586
  #: classes/gateways/class.pmprogateway_stripe.php:411
8587
  #: classes/gateways/class.pmprogateway_stripe.php:419
8588
+ #: classes/gateways/class.pmprogateway_stripe.php:425
8589
  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."
8590
  msgstr ""
8591
 
8596
  #: classes/gateways/class.pmprogateway_stripe.php:519
8597
  #: classes/gateways/class.pmprogateway_stripe.php:559
8598
  #: classes/gateways/class.pmprogateway_stripe.php:578
8599
+ #: classes/gateways/class.pmprogateway_stripe.php:437
8600
+ #: classes/gateways/class.pmprogateway_stripe.php:525
8601
+ #: classes/gateways/class.pmprogateway_stripe.php:584
8602
  msgid "Webhook"
8603
  msgstr ""
8604
 
8609
  #: classes/gateways/class.pmprogateway_stripe.php:523
8610
  #: classes/gateways/class.pmprogateway_stripe.php:594
8611
  #: classes/gateways/class.pmprogateway_stripe.php:613
8612
+ #: classes/gateways/class.pmprogateway_stripe.php:441
8613
+ #: classes/gateways/class.pmprogateway_stripe.php:529
8614
+ #: classes/gateways/class.pmprogateway_stripe.php:619
8615
  msgid "Webhook URL"
8616
  msgstr ""
8617
 
8618
  #: classes/gateways/class.pmprogateway_stripe.php:438
8619
  #: classes/gateways/class.pmprogateway_stripe.php:446
8620
+ #: classes/gateways/class.pmprogateway_stripe.php:452
8621
  msgid "Test Mode:"
8622
  msgstr ""
8623
 
8624
  #: classes/gateways/class.pmprogateway_stripe.php:450
8625
  #: classes/gateways/class.pmprogateway_stripe.php:461
8626
+ #: classes/gateways/class.pmprogateway_stripe.php:467
8627
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
8628
  msgstr ""
8629
 
8630
  #: classes/gateways/class.pmprogateway_stripe.php:483
8631
  #: classes/gateways/class.pmprogateway_stripe.php:495
8632
+ #: classes/gateways/class.pmprogateway_stripe.php:501
8633
  msgid "This will disconnect your site from Stripe in test mode only."
8634
  msgstr ""
8635
 
8636
  #: classes/gateways/class.pmprogateway_stripe.php:518
8637
  #: classes/gateways/class.pmprogateway_stripe.php:530
8638
+ #: classes/gateways/class.pmprogateway_stripe.php:536
8639
  msgid "Stripe API Settings (Legacy)"
8640
  msgstr ""
8641
 
8642
  #: classes/gateways/class.pmprogateway_stripe.php:531
8643
  #: classes/gateways/class.pmprogateway_stripe.php:543
8644
  #: classes/gateways/class.pmprogateway_stripe.php:562
8645
+ #: classes/gateways/class.pmprogateway_stripe.php:568
8646
  msgid "Your Publishable Key appears incorrect."
8647
  msgstr ""
8648
 
8652
  #: classes/gateways/class.pmprogateway_stripe.php:587
8653
  #: classes/gateways/class.pmprogateway_stripe.php:582
8654
  #: classes/gateways/class.pmprogateway_stripe.php:606
8655
+ #: classes/gateways/class.pmprogateway_stripe.php:588
8656
+ #: classes/gateways/class.pmprogateway_stripe.php:612
8657
  msgid "Create Webhook"
8658
  msgstr ""
8659
 
8660
  #: classes/gateways/class.pmprogateway_stripe.php:557
8661
  #: classes/gateways/class.pmprogateway_stripe.php:569
8662
  #: classes/gateways/class.pmprogateway_stripe.php:588
8663
+ #: classes/gateways/class.pmprogateway_stripe.php:594
8664
  msgid "A webhook is set up in Stripe, but it is disabled."
8665
  msgstr ""
8666
 
8667
  #: classes/gateways/class.pmprogateway_stripe.php:564
8668
  #: classes/gateways/class.pmprogateway_stripe.php:576
8669
  #: classes/gateways/class.pmprogateway_stripe.php:595
8670
+ #: classes/gateways/class.pmprogateway_stripe.php:601
8671
  msgid "A webhook is set up in Stripe, but it is using an old API version."
8672
  msgstr ""
8673
 
8674
  #: classes/gateways/class.pmprogateway_stripe.php:564
8675
  #: classes/gateways/class.pmprogateway_stripe.php:576
8676
  #: classes/gateways/class.pmprogateway_stripe.php:595
8677
+ #: classes/gateways/class.pmprogateway_stripe.php:601
8678
  msgid "Rebuild Webhook"
8679
  msgstr ""
8680
 
8687
  #: classes/gateways/class.pmprogateway_stripe.php:601
8688
  #: classes/gateways/class.pmprogateway_stripe.php:741
8689
  #: classes/gateways/class.pmprogateway_stripe.php:857
8690
+ #: classes/gateways/class.pmprogateway_stripe.php:607
8691
+ #: classes/gateways/class.pmprogateway_stripe.php:747
8692
+ #: classes/gateways/class.pmprogateway_stripe.php:863
8693
  msgid "Your webhook is enabled."
8694
  msgstr ""
8695
 
8696
  #: classes/gateways/class.pmprogateway_stripe.php:570
8697
  #: classes/gateways/class.pmprogateway_stripe.php:582
8698
  #: classes/gateways/class.pmprogateway_stripe.php:601
8699
+ #: classes/gateways/class.pmprogateway_stripe.php:607
8700
  msgid "Disable Webhook"
8701
  msgstr ""
8702
 
8712
  #: classes/gateways/class.pmprogateway_stripe.php:768
8713
  #: classes/gateways/class.pmprogateway_stripe.php:785
8714
  #: classes/gateways/class.pmprogateway_stripe.php:819
8715
+ #: classes/gateways/class.pmprogateway_stripe.php:614
8716
+ #: classes/gateways/class.pmprogateway_stripe.php:774
8717
+ #: classes/gateways/class.pmprogateway_stripe.php:791
8718
+ #: classes/gateways/class.pmprogateway_stripe.php:825
8719
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
8720
  msgstr ""
8721
 
8722
  #: classes/gateways/class.pmprogateway_stripe.php:589
8723
  #: classes/gateways/class.pmprogateway_stripe.php:601
8724
  #: classes/gateways/class.pmprogateway_stripe.php:620
8725
+ #: classes/gateways/class.pmprogateway_stripe.php:626
8726
  msgid "Other Stripe Settings"
8727
  msgstr ""
8728
 
8729
  #: classes/gateways/class.pmprogateway_stripe.php:593
8730
  #: classes/gateways/class.pmprogateway_stripe.php:605
8731
  #: classes/gateways/class.pmprogateway_stripe.php:624
8732
+ #: classes/gateways/class.pmprogateway_stripe.php:630
8733
  msgid "Stripe API Version"
8734
  msgstr ""
8735
 
8736
  #: classes/gateways/class.pmprogateway_stripe.php:612
8737
  #: classes/gateways/class.pmprogateway_stripe.php:624
8738
  #: classes/gateways/class.pmprogateway_stripe.php:643
8739
+ #: classes/gateways/class.pmprogateway_stripe.php:649
8740
  msgid "Enable Payment Request Button"
8741
  msgstr ""
8742
 
8743
  #: classes/gateways/class.pmprogateway_stripe.php:630
8744
  #: classes/gateways/class.pmprogateway_stripe.php:642
8745
  #: classes/gateways/class.pmprogateway_stripe.php:661
8746
+ #: classes/gateways/class.pmprogateway_stripe.php:667
8747
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
8748
  msgstr ""
8749
 
8750
  #: classes/gateways/class.pmprogateway_stripe.php:643
8751
  #: classes/gateways/class.pmprogateway_stripe.php:655
8752
  #: classes/gateways/class.pmprogateway_stripe.php:674
8753
+ #: classes/gateways/class.pmprogateway_stripe.php:680
8754
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
8755
  msgstr ""
8756
 
8757
  #: classes/gateways/class.pmprogateway_stripe.php:645
8758
  #: classes/gateways/class.pmprogateway_stripe.php:657
8759
  #: classes/gateways/class.pmprogateway_stripe.php:676
8760
+ #: classes/gateways/class.pmprogateway_stripe.php:682
8761
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
8762
  msgstr ""
8763
 
8764
  #: classes/gateways/class.pmprogateway_stripe.php:647
8765
  #: classes/gateways/class.pmprogateway_stripe.php:659
8766
  #: classes/gateways/class.pmprogateway_stripe.php:678
8767
+ #: classes/gateways/class.pmprogateway_stripe.php:684
8768
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
8769
  msgstr ""
8770
 
8771
  #: classes/gateways/class.pmprogateway_stripe.php:649
8772
  #: classes/gateways/class.pmprogateway_stripe.php:661
8773
  #: classes/gateways/class.pmprogateway_stripe.php:680
8774
+ #: classes/gateways/class.pmprogateway_stripe.php:686
8775
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
8776
  msgstr ""
8777
 
8778
  #: classes/gateways/class.pmprogateway_stripe.php:674
8779
  #: classes/gateways/class.pmprogateway_stripe.php:686
8780
  #: classes/gateways/class.pmprogateway_stripe.php:705
8781
+ #: classes/gateways/class.pmprogateway_stripe.php:711
8782
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
8783
  msgstr ""
8784
 
8785
  #: classes/gateways/class.pmprogateway_stripe.php:695
8786
  #: classes/gateways/class.pmprogateway_stripe.php:707
8787
  #: classes/gateways/class.pmprogateway_stripe.php:726
8788
+ #: classes/gateways/class.pmprogateway_stripe.php:732
8789
  msgid "Webhook creation failed. You might already have a webhook set up."
8790
  msgstr ""
8791
 
8795
  #: classes/gateways/class.pmprogateway_stripe.php:847
8796
  #: classes/gateways/class.pmprogateway_stripe.php:792
8797
  #: classes/gateways/class.pmprogateway_stripe.php:866
8798
+ #: classes/gateways/class.pmprogateway_stripe.php:798
8799
+ #: classes/gateways/class.pmprogateway_stripe.php:872
8800
  msgid "There was an error deleting the webhook."
8801
  msgstr ""
8802
 
8803
  #: classes/gateways/class.pmprogateway_stripe.php:811
8804
  #: classes/gateways/class.pmprogateway_stripe.php:823
8805
  #: classes/gateways/class.pmprogateway_stripe.php:842
8806
+ #: classes/gateways/class.pmprogateway_stripe.php:848
8807
  msgid "Webhook creation failed. Please refresh and try again."
8808
  msgstr ""
8809
 
8810
  #: classes/gateways/class.pmprogateway_stripe.php:867
8811
  #: classes/gateways/class.pmprogateway_stripe.php:879
8812
  #: classes/gateways/class.pmprogateway_stripe.php:898
8813
+ #: classes/gateways/class.pmprogateway_stripe.php:904
8814
  msgid "Verification steps confirmed. Your payment is processing."
8815
  msgstr ""
8816
 
8817
  #: classes/gateways/class.pmprogateway_stripe.php:1262
8818
  #: classes/gateways/class.pmprogateway_stripe.php:1274
8819
  #: classes/gateways/class.pmprogateway_stripe.php:1293
8820
+ #: classes/gateways/class.pmprogateway_stripe.php:1299
8821
  msgid "Pay with Credit Card"
8822
  msgstr ""
8823
 
8824
  #: classes/gateways/class.pmprogateway_stripe.php:1296
8825
  #: classes/gateways/class.pmprogateway_stripe.php:1308
8826
  #: classes/gateways/class.pmprogateway_stripe.php:1327
8827
+ #: classes/gateways/class.pmprogateway_stripe.php:1333
8828
  msgid "CVC"
8829
  msgstr ""
8830
 
8831
  #: classes/gateways/class.pmprogateway_stripe.php:1374
8832
  #: classes/gateways/class.pmprogateway_stripe.php:1386
8833
  #: classes/gateways/class.pmprogateway_stripe.php:1405
8834
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
8835
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
8836
  msgstr ""
8837
 
8847
  #: classes/gateways/class.pmprogateway_stripe.php:2016
8848
  #: classes/gateways/class.pmprogateway_stripe.php:2029
8849
  #: classes/gateways/class.pmprogateway_stripe.php:2033
8850
+ #: classes/gateways/class.pmprogateway_stripe.php:2018
8851
+ #: classes/gateways/class.pmprogateway_stripe.php:2022
8852
+ #: classes/gateways/class.pmprogateway_stripe.php:2035
8853
+ #: classes/gateways/class.pmprogateway_stripe.php:2039
8854
  msgid "Error: %s"
8855
  msgstr ""
8856
 
8860
  #: classes/gateways/class.pmprogateway_stripe.php:2182
8861
  #: classes/gateways/class.pmprogateway_stripe.php:2196
8862
  #: classes/gateways/class.pmprogateway_stripe.php:2201
8863
+ #: classes/gateways/class.pmprogateway_stripe.php:2202
8864
+ #: classes/gateways/class.pmprogateway_stripe.php:2207
8865
  msgid "Error getting subscription with Stripe:"
8866
  msgstr ""
8867
 
8871
  #: classes/gateways/class.pmprogateway_stripe.php:2834
8872
  #: classes/gateways/class.pmprogateway_stripe.php:2850
8873
  #: classes/gateways/class.pmprogateway_stripe.php:2856
8874
+ #: classes/gateways/class.pmprogateway_stripe.php:2862
8875
  msgid "Error: "
8876
  msgstr ""
8877
 
8878
  #: classes/gateways/class.pmprogateway_stripe.php:2836
8879
  #: classes/gateways/class.pmprogateway_stripe.php:2848
8880
  #: classes/gateways/class.pmprogateway_stripe.php:2870
8881
+ #: classes/gateways/class.pmprogateway_stripe.php:2876
8882
  msgid "Error: Unkown error while refunding charge #%s"
8883
  msgstr ""
8884
 
8885
  #: classes/gateways/class.pmprogateway_stripe.php:3330
8886
  #: classes/gateways/class.pmprogateway_stripe.php:3342
8887
  #: classes/gateways/class.pmprogateway_stripe.php:3364
8888
+ #: classes/gateways/class.pmprogateway_stripe.php:3370
8889
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
8890
  msgstr ""
8891
 
8892
  #: classes/gateways/class.pmprogateway_stripe.php:3347
8893
  #: classes/gateways/class.pmprogateway_stripe.php:3359
8894
  #: classes/gateways/class.pmprogateway_stripe.php:3381
8895
+ #: classes/gateways/class.pmprogateway_stripe.php:3387
8896
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
8897
  msgstr ""
8898
 
8899
  #: classes/gateways/class.pmprogateway_stripe.php:3533
8900
  #: classes/gateways/class.pmprogateway_stripe.php:3545
8901
  #: classes/gateways/class.pmprogateway_stripe.php:3567
8902
+ #: classes/gateways/class.pmprogateway_stripe.php:3573
8903
  msgid "Invalid response from the Stripe Connect server."
8904
  msgstr ""
8905
 
8907
  #: classes/gateways/class.pmprogateway_stripe.php:3561
8908
  #: classes/gateways/class.pmprogateway_stripe.php:3573
8909
  #: classes/gateways/class.pmprogateway_stripe.php:3595
8910
+ #: classes/gateways/class.pmprogateway_stripe.php:3601
8911
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
8912
  msgstr ""
8913
 
8915
  #: classes/gateways/class.pmprogateway_stripe.php:3597
8916
  #: classes/gateways/class.pmprogateway_stripe.php:3609
8917
  #: classes/gateways/class.pmprogateway_stripe.php:3631
8918
+ #: classes/gateways/class.pmprogateway_stripe.php:3637
8919
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
8920
  msgstr ""
8921
 
8922
  #: classes/gateways/class.pmprogateway_stripe.php:3768
8923
  #: classes/gateways/class.pmprogateway_stripe.php:3780
8924
  #: classes/gateways/class.pmprogateway_stripe.php:3802
8925
+ #: classes/gateways/class.pmprogateway_stripe.php:3808
8926
  msgid "Last webhook received at"
8927
  msgstr ""
8928
 
8929
  #: classes/gateways/class.pmprogateway_stripe.php:3770
8930
  #: classes/gateways/class.pmprogateway_stripe.php:3782
8931
  #: classes/gateways/class.pmprogateway_stripe.php:3804
8932
+ #: classes/gateways/class.pmprogateway_stripe.php:3810
8933
  msgid "No webhooks have been received."
8934
  msgstr ""
8935
 
8936
  #: classes/gateways/class.pmprogateway_stripe.php:3774
8937
  #: classes/gateways/class.pmprogateway_stripe.php:3786
8938
  #: classes/gateways/class.pmprogateway_stripe.php:3808
8939
+ #: classes/gateways/class.pmprogateway_stripe.php:3814
8940
  msgid "Your webhook may not be working correctly."
8941
  msgstr ""
8942
 
8943
  #: classes/gateways/class.pmprogateway_stripe.php:3776
8944
  #: classes/gateways/class.pmprogateway_stripe.php:3788
8945
  #: classes/gateways/class.pmprogateway_stripe.php:3810
8946
+ #: classes/gateways/class.pmprogateway_stripe.php:3816
8947
  msgid "Click here for info on setting up your webhook with Stripe."
8948
  msgstr ""
8949
 
11076
 
11077
  #: includes/login.php:429
11078
  #: includes/profile.php:843
11079
+ #: includes/profile.php:855
11080
  msgid "New passwords do not match."
11081
  msgstr ""
11082
 
11083
  #: includes/login.php:433
11084
  #: includes/profile.php:839
11085
+ #: includes/profile.php:851
11086
  msgid "Please complete all fields."
11087
  msgstr ""
11088
 
11112
 
11113
  #: includes/login.php:688
11114
  #: includes/profile.php:891
11115
+ #: includes/profile.php:903
11116
  msgid "New Password"
11117
  msgstr ""
11118
 
11119
  #: includes/login.php:690
11120
  #: includes/profile.php:894
11121
  #: includes/scripts.php:86
11122
+ #: includes/profile.php:906
11123
+ #: includes/scripts.php:85
11124
  msgid "Strength Indicator"
11125
  msgstr ""
11126
 
11127
  #: includes/login.php:694
11128
  #: includes/profile.php:898
11129
+ #: includes/profile.php:910
11130
  msgid "Confirm New Password"
11131
  msgstr ""
11132
 
11227
  #: includes/privacy.php:182
11228
  #: includes/profile.php:425
11229
  #: includes/profile.php:493
11230
+ #: includes/profile.php:499
11231
  msgid "Level ID"
11232
  msgstr ""
11233
 
11234
  #: includes/privacy.php:190
11235
  #: includes/profile.php:496
11236
+ #: includes/profile.php:502
11237
  msgid "Date Modified"
11238
  msgstr ""
11239
 
11240
  #: includes/privacy.php:194
11241
  #: includes/profile.php:497
11242
+ #: includes/profile.php:503
11243
  msgid "End Date"
11244
  msgstr ""
11245
 
11246
  #: includes/privacy.php:198
11247
  #: includes/profile.php:498
11248
+ #: includes/profile.php:504
11249
  msgid "Level Cost"
11250
  msgstr ""
11251
 
11350
  msgstr ""
11351
 
11352
  #: includes/profile.php:485
11353
+ #: includes/profile.php:488
11354
  msgid "No membership orders found."
11355
  msgstr ""
11356
 
11357
  #: includes/profile.php:537
11358
+ #: includes/profile.php:546
11359
  msgid "No membership history found."
11360
  msgstr ""
11361
 
11362
  #: includes/profile.php:644
11363
+ #: includes/profile.php:656
11364
  msgid "Log in to edit your profile."
11365
  msgstr ""
11366
 
11367
  #: includes/profile.php:679
11368
+ #: includes/profile.php:691
11369
  msgid "Please enter a display name."
11370
  msgstr ""
11371
 
11372
  #: includes/profile.php:689
11373
+ #: includes/profile.php:701
11374
  msgid "Please enter an email address."
11375
  msgstr ""
11376
 
11377
  #: includes/profile.php:691
11378
+ #: includes/profile.php:703
11379
  msgid "The email address isn&#8217;t correct."
11380
  msgstr ""
11381
 
11382
  #: includes/profile.php:695
11383
+ #: includes/profile.php:707
11384
  msgid "This email is already registered, please choose another one."
11385
  msgstr ""
11386
 
11387
  #: includes/profile.php:722
11388
+ #: includes/profile.php:734
11389
  msgid "Your profile has been updated."
11390
  msgstr ""
11391
 
11392
  #: includes/profile.php:749
11393
+ #: includes/profile.php:761
11394
  msgid "Display name publicly as"
11395
  msgstr ""
11396
 
11397
  #: includes/profile.php:762
11398
+ #: includes/profile.php:774
11399
  msgid "Site administrators must use the WordPress dashboard to update their email address."
11400
  msgstr ""
11401
 
11402
  #: includes/profile.php:785
11403
+ #: includes/profile.php:797
11404
  msgid "Update Profile"
11405
  msgstr ""
11406
 
11407
  #: includes/profile.php:841
11408
+ #: includes/profile.php:853
11409
  msgid "Please enter your current password."
11410
  msgstr ""
11411
 
11412
  #: includes/profile.php:845
11413
+ #: includes/profile.php:857
11414
  msgid "Your current password is incorrect."
11415
  msgstr ""
11416
 
11417
  #: includes/profile.php:856
11418
+ #: includes/profile.php:868
11419
  msgid "Your password has been updated."
11420
  msgstr ""
11421
 
11422
  #: includes/profile.php:886
11423
+ #: includes/profile.php:898
11424
  msgid "Current Password"
11425
  msgstr ""
11426
 
11427
  #: includes/profile.php:888
11428
  #: includes/profile.php:893
11429
  #: includes/profile.php:900
11430
+ #: includes/profile.php:905
11431
+ #: includes/profile.php:912
11432
  msgid "Required Field"
11433
  msgstr ""
11434
 
11541
  msgstr ""
11542
 
11543
  #: services/braintree-webhook.php:425
11544
+ #: services/braintree-webhook.php:426
11545
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
11546
  msgstr ""
11547
 
11548
  #: services/braintree-webhook.php:427
11549
+ #: services/braintree-webhook.php:428
11550
  msgid "A member's Braintree subscription has expired at %s"
11551
  msgstr ""
11552
 
11865
 
11866
  #: classes/gateways/class.pmprogateway_stripe.php:360
11867
  #: classes/gateways/class.pmprogateway_stripe.php:450
11868
+ #: classes/gateways/class.pmprogateway_stripe.php:366
11869
+ #: classes/gateways/class.pmprogateway_stripe.php:456
11870
  msgid "Connected with Legacy Keys"
11871
  msgstr ""
11872
 
11873
  #: classes/gateways/class.pmprogateway_stripe.php:370
11874
  #: classes/gateways/class.pmprogateway_stripe.php:460
11875
+ #: classes/gateways/class.pmprogateway_stripe.php:376
11876
+ #: classes/gateways/class.pmprogateway_stripe.php:466
11877
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
11878
  msgstr ""
11879
 
11880
  #: classes/gateways/class.pmprogateway_stripe.php:372
11881
  #: classes/gateways/class.pmprogateway_stripe.php:462
11882
+ #: classes/gateways/class.pmprogateway_stripe.php:378
11883
+ #: classes/gateways/class.pmprogateway_stripe.php:468
11884
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
11885
  msgstr ""
11886
 
11937
  msgstr ""
11938
 
11939
  #: classes/gateways/class.pmprogateway_stripe.php:533
11940
+ #: classes/gateways/class.pmprogateway_stripe.php:539
11941
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
11942
  msgstr ""
11943
 
11944
  #: classes/gateways/class.pmprogateway_stripe.php:534
11945
+ #: classes/gateways/class.pmprogateway_stripe.php:540
11946
  msgid "Click here to use the legacy API settings."
11947
  msgstr ""
11948
 
11949
  #: paid-memberships-pro.php:194
11950
  msgid "Once a month"
11951
  msgstr ""
11952
+
11953
+ #: adminpages/license.php:37
11954
+ msgid "There was an issue validating your license key: %s"
11955
+ msgstr ""
11956
+
11957
+ #: includes/email-templates.php:172
11958
+ msgid ""
11959
+ "<p>There was a new member checkout at !!sitename!!.</p>\n"
11960
+ "\n"
11961
+ "<p><strong>They have chosen to pay by check.</strong></p>\n"
11962
+ "\n"
11963
+ "<p>Below are details about the new membership account and a receipt for the initial membership invoice.</p>\n"
11964
+ "\n"
11965
+ "<p>Account: !!display_name!! (!!user_email!!)</p>\n"
11966
+ "<p>Membership Level: !!membership_level_name!!</p>\n"
11967
+ "<p>Membership Fee: !!membership_cost!!</p>\n"
11968
+ "!!membership_expiration!! !!discount_code!!\n"
11969
+ "\n"
11970
+ "<p>\n"
11971
+ "\tInvoice #!!invoice_id!! on !!invoice_date!!<br />\n"
11972
+ "\tTotal Billed: !!invoice_total!!\n"
11973
+ "</p>\n"
11974
+ "\n"
11975
+ "<p>Log in to your membership account here: !!login_url!!</p>"
11976
+ msgstr ""
11977
+
11978
+ #: includes/license.php:112
11979
+ msgid "Missing key."
11980
+ msgstr ""
11981
+
11982
+ #: shortcodes/pmpro_account.php:145
11983
+ msgctxt "A dash is shown when there is no expiration date."
11984
+ msgid "&#8212;"
11985
+ msgstr ""
languages/paid-memberships-pro-da_DK.mo CHANGED
Binary file
languages/paid-memberships-pro-da_DK.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.2\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-09-17T13:56:58+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -184,6 +184,7 @@ msgstr "Betalingsgateway &amp; SSL"
184
  #: adminpages/orders.php:391
185
  #: adminpages/orders.php:1445
186
  #: adminpages/orders.php:1448
 
187
  msgid "Email"
188
  msgstr "E-mail"
189
 
@@ -330,6 +331,8 @@ msgstr "Ja - Vis uddrag"
330
  #: adminpages/advancedsettings.php:479
331
  #: classes/gateways/class.pmprogateway_stripe.php:634
332
  #: classes/gateways/class.pmprogateway_stripe.php:648
 
 
333
  msgid "No"
334
  msgstr "Nej"
335
 
@@ -405,6 +408,8 @@ msgstr "Kun multisider"
405
  #: adminpages/advancedsettings.php:397
406
  #: classes/gateways/class.pmprogateway_stripe.php:636
407
  #: classes/gateways/class.pmprogateway_stripe.php:650
 
 
408
  msgid "Yes"
409
  msgstr "Ja"
410
 
@@ -633,6 +638,7 @@ msgstr "Kode"
633
  #: includes/privacy.php:186
634
  #: includes/profile.php:495
635
  #: adminpages/discountcodes.php:489
 
636
  msgid "Start Date"
637
  msgstr "Startdato"
638
 
@@ -651,6 +657,7 @@ msgstr "Startdato"
651
  #: classes/gateways/class.pmprogateway_stripe.php:1301
652
  #: adminpages/discountcodes.php:507
653
  #: classes/gateways/class.pmprogateway_stripe.php:1320
 
654
  msgid "Expiration Date"
655
  msgstr "Udløbsdato"
656
 
@@ -739,6 +746,7 @@ msgstr "Beløb"
739
  #: adminpages/discountcodes.php:612
740
  #: adminpages/discountcodes.php:699
741
  #: classes/gateways/class.pmprogateway_stripe.php:1363
 
742
  msgid "Day(s)"
743
  msgstr "Dag(e)"
744
 
@@ -756,6 +764,7 @@ msgstr "Dag(e)"
756
  #: adminpages/discountcodes.php:612
757
  #: adminpages/discountcodes.php:699
758
  #: classes/gateways/class.pmprogateway_stripe.php:1365
 
759
  msgid "Month(s)"
760
  msgstr "Måned(er)"
761
 
@@ -773,6 +782,7 @@ msgstr "Måned(er)"
773
  #: adminpages/discountcodes.php:612
774
  #: adminpages/discountcodes.php:699
775
  #: classes/gateways/class.pmprogateway_stripe.php:1364
 
776
  msgid "Week(s)"
777
  msgstr "Uge(r)"
778
 
@@ -790,6 +800,7 @@ msgstr "Uge(r)"
790
  #: adminpages/discountcodes.php:612
791
  #: adminpages/discountcodes.php:699
792
  #: classes/gateways/class.pmprogateway_stripe.php:1366
 
793
  msgid "Year(s)"
794
  msgstr "År"
795
 
@@ -1238,6 +1249,7 @@ msgstr "Faktura Detaljer"
1238
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1239
  #: adminpages/discountcodes.php:608
1240
  #: classes/gateways/class.pmprogateway_stripe.php:1497
 
1241
  msgid "per"
1242
  msgstr "pr"
1243
 
@@ -1859,6 +1871,7 @@ msgstr "e.g. PayPal Express, PayPal Standard. Kreditkort."
1859
  #: adminpages/orders.php:679
1860
  #: classes/gateways/class.pmprogateway_stripe.php:1284
1861
  #: classes/gateways/class.pmprogateway_stripe.php:1303
 
1862
  msgid "Card Type"
1863
  msgstr "Korttype"
1864
 
@@ -1921,6 +1934,7 @@ msgstr "Udløbsår"
1921
  #: adminpages/dashboard.php:294
1922
  #: adminpages/orders.php:742
1923
  #: adminpages/orders.php:1348
 
1924
  msgid "Status"
1925
  msgstr "Status"
1926
 
@@ -2081,6 +2095,8 @@ msgstr "Gem Ordre"
2081
  #: pages/cancel.php:96
2082
  #: shortcodes/pmpro_account.php:106
2083
  #: adminpages/orders.php:968
 
 
2084
  msgid "Cancel"
2085
  msgstr "Annullér"
2086
 
@@ -2550,6 +2566,7 @@ msgstr "Adgangskode"
2550
  #: classes/gateways/class.pmprogateway_paypal.php:153
2551
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
2552
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
 
2553
  msgid "Gateway Account Email"
2554
  msgstr "Gateway Konto Email"
2555
 
@@ -2562,6 +2579,7 @@ msgstr "Gateway Konto Email"
2562
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
2563
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
2564
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
 
2565
  msgid "API Username"
2566
  msgstr "API Brugernavn"
2567
 
@@ -2574,6 +2592,7 @@ msgstr "API Brugernavn"
2574
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
2575
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
2576
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
 
2577
  msgid "API Password"
2578
  msgstr "API Adgangskode"
2579
 
@@ -2583,6 +2602,7 @@ msgstr "API Adgangskode"
2583
  #: classes/gateways/class.pmprogateway_paypal.php:177
2584
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
2585
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
 
2586
  msgid "API Signature"
2587
  msgstr "API Signatur"
2588
 
@@ -2606,6 +2626,7 @@ msgstr "Transaktions Nøgle"
2606
  #: classes/gateways/class.pmprogateway_stripe.php:539
2607
  #: classes/gateways/class.pmprogateway_stripe.php:551
2608
  #: classes/gateways/class.pmprogateway_stripe.php:570
 
2609
  msgid "Secret Key"
2610
  msgstr "Hemmelig Nøgle"
2611
 
@@ -2615,6 +2636,7 @@ msgstr "Hemmelig Nøgle"
2615
  #: classes/gateways/class.pmprogateway_stripe.php:523
2616
  #: classes/gateways/class.pmprogateway_stripe.php:535
2617
  #: classes/gateways/class.pmprogateway_stripe.php:554
 
2618
  msgid "Publishable Key"
2619
  msgstr "Publicérbar Nøgle"
2620
 
@@ -2701,6 +2723,7 @@ msgstr "Hvem skal checken udskrives til. Hvor skal den sendes til. Vises ved Gå
2701
  #: classes/gateways/class.pmprogateway_stripe.php:598
2702
  #: classes/gateways/class.pmprogateway_stripe.php:610
2703
  #: classes/gateways/class.pmprogateway_stripe.php:629
 
2704
  msgid "Show Billing Address Fields"
2705
  msgstr "Vis Regnings Adresse-felter."
2706
 
@@ -2708,6 +2731,7 @@ msgstr "Vis Regnings Adresse-felter."
2708
  #: classes/gateways/class.pmprogateway_stripe.php:607
2709
  #: classes/gateways/class.pmprogateway_stripe.php:619
2710
  #: classes/gateways/class.pmprogateway_stripe.php:638
 
2711
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
2712
  msgstr "Stripe behøver ikke regnings adresse-felter. Vælg 'Nej' for at skjule dem på Gå til kassen siden.<br/><strong>Hvis Nej, så vær sikker på, at du har deaktiveret bekræftigelse i Stripe Kontrolpanel Indstillingerne.</strong>"
2713
 
@@ -2790,6 +2814,7 @@ msgstr "Brug \"Nuclear Funktion\" for at sikre (HTTPS) URLs på dine sikre sider
2790
  #: classes/gateways/class.pmprogateway_paypal.php:196
2791
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
2792
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
 
2793
  msgid "IPN Handler URL"
2794
  msgstr "IPN Handler URL"
2795
 
@@ -2798,6 +2823,7 @@ msgstr "IPN Handler URL"
2798
  #: adminpages/paymentsettings.php:482
2799
  #: classes/gateways/class.pmprogateway_paypal.php:199
2800
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
 
2801
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
2802
  msgstr "For at integrere fuldt ud med PayPal, sørg for at du har sat din IPN Handler URL til "
2803
 
@@ -3176,6 +3202,7 @@ msgstr "Bekræftigelse af dit medlemskab for %s"
3176
  #: classes/class.pmproemail.php:769
3177
  #: classes/class.pmproemail.php:771
3178
  #: classes/gateways/class.pmprogateway_stripe.php:1333
 
3179
  msgid "Discount Code"
3180
  msgstr "Rabatkode"
3181
 
@@ -3486,6 +3513,7 @@ msgstr "Noget af betalingen er gennemført, så vi kunne ikke refundere beløbet
3486
  #: classes/gateways/class.pmprogateway_paypal.php:716
3487
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
3488
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
 
3489
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
3490
  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."
3491
 
@@ -3501,6 +3529,9 @@ msgstr "Kontakt venligst hjemmesidens administrator eller annullér dit abonneme
3501
  #: classes/gateways/class.pmprogateway_stripe.php:2127
3502
  #: classes/gateways/class.pmprogateway_stripe.php:2132
3503
  #: classes/gateways/class.pmprogateway_stripe.php:2137
 
 
 
3504
  msgid "Error creating customer record with Stripe:"
3505
  msgstr "Fejl i at oprette kunde konto hos Stripe:"
3506
 
@@ -3514,6 +3545,8 @@ msgstr "Fejl i at oprette kunde konto hos Stripe:"
3514
  #: classes/gateways/class.pmprogateway_stripe.php:2356
3515
  #: classes/gateways/class.pmprogateway_stripe.php:2373
3516
  #: classes/gateways/class.pmprogateway_stripe.php:2378
 
 
3517
  msgid "Error creating plan with Stripe:"
3518
  msgstr "Fejl i at oprette en plan hos Stripe:"
3519
 
@@ -3527,6 +3560,8 @@ msgstr "Fejl i at oprette en plan hos Stripe:"
3527
  #: classes/gateways/class.pmprogateway_stripe.php:2401
3528
  #: classes/gateways/class.pmprogateway_stripe.php:2409
3529
  #: classes/gateways/class.pmprogateway_stripe.php:2423
 
 
3530
  msgid "Error subscribing customer to plan with Stripe:"
3531
  msgstr "Fejl i at tilmelde kunden til en plan hos Stripe:"
3532
 
@@ -3534,6 +3569,7 @@ msgstr "Fejl i at tilmelde kunden til en plan hos Stripe:"
3534
  #: classes/gateways/class.pmprogateway_stripe.php:2632
3535
  #: classes/gateways/class.pmprogateway_stripe.php:2644
3536
  #: classes/gateways/class.pmprogateway_stripe.php:2666
 
3537
  msgid "Could not cancel old subscription."
3538
  msgstr "Kunne ikke annullere det gamle abonnement."
3539
 
@@ -4151,6 +4187,7 @@ msgstr "Dit medlemskab er <strong>aktiv</strong>."
4151
  #: adminpages/dashboard.php:224
4152
  #: adminpages/dashboard.php:292
4153
  #: adminpages/orders.php:1343
 
4154
  msgid "Level"
4155
  msgstr "Niveau"
4156
 
@@ -4223,6 +4260,8 @@ msgstr "Redigér Profil"
4223
  #: includes/profile.php:872
4224
  #: includes/profile.php:909
4225
  #: shortcodes/pmpro_account.php:195
 
 
4226
  msgid "Change Password"
4227
  msgstr "Skift Adganskode"
4228
 
@@ -4307,6 +4346,7 @@ msgstr "Dit betalings-abonnement bliver styret af PayPal. Venligst <a href=\"htt
4307
  #: includes/profile.php:747
4308
  #: pages/billing.php:164
4309
  #: pages/checkout.php:234
 
4310
  msgid "First Name"
4311
  msgstr "Fornavn"
4312
 
@@ -4318,6 +4358,7 @@ msgstr "Fornavn"
4318
  #: includes/profile.php:748
4319
  #: pages/billing.php:168
4320
  #: pages/checkout.php:238
 
4321
  msgid "Last Name"
4322
  msgstr "Efternavn"
4323
 
@@ -4448,6 +4489,7 @@ msgstr "Vi accepterer %s"
4448
  #: pages/checkout.php:389
4449
  #: classes/gateways/class.pmprogateway_stripe.php:1297
4450
  #: classes/gateways/class.pmprogateway_stripe.php:1316
 
4451
  msgid "Card Number"
4452
  msgstr "Kortnummer"
4453
 
@@ -4479,6 +4521,7 @@ msgstr "hvad er det?"
4479
  #: pages/billing.php:425
4480
  #: classes/gateways/class.pmprogateway_stripe.php:1403
4481
  #: classes/gateways/class.pmprogateway_stripe.php:1422
 
4482
  msgid "Update"
4483
  msgstr "Opdatér"
4484
 
@@ -4563,6 +4606,7 @@ msgstr "Har du en rabatkode?"
4563
  #: pages/checkout.php:432
4564
  #: classes/gateways/class.pmprogateway_stripe.php:1319
4565
  #: classes/gateways/class.pmprogateway_stripe.php:1338
 
4566
  msgid "Apply"
4567
  msgstr "Anvend"
4568
 
@@ -4639,6 +4683,7 @@ msgstr "Gå til Kassen med Kreditkort her"
4639
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
4640
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
4641
  #: pages/checkout.php:218
 
4642
  msgid "Check Out with PayPal"
4643
  msgstr "Gå til Kassen med PayPal"
4644
 
@@ -4650,6 +4695,7 @@ msgstr "Gå til Kassen med PayPal"
4650
  #: pages/checkout.php:366
4651
  #: classes/gateways/class.pmprogateway_stripe.php:1263
4652
  #: classes/gateways/class.pmprogateway_stripe.php:1282
 
4653
  msgid "Payment Information"
4654
  msgstr "Betalings-Information"
4655
 
@@ -4661,6 +4707,7 @@ msgstr "Betalings-Information"
4661
  #: pages/checkout.php:367
4662
  #: classes/gateways/class.pmprogateway_stripe.php:1264
4663
  #: classes/gateways/class.pmprogateway_stripe.php:1283
 
4664
  #, php-format
4665
  msgid "We Accept %s"
4666
  msgstr "Vi accepterer %s"
@@ -4687,6 +4734,7 @@ msgstr "Gennemfør Betaling"
4687
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
4688
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
4689
  #: pages/checkout.php:526
 
4690
  msgid "Submit and Check Out"
4691
  msgstr "Anvend og Gå til Kassen"
4692
 
@@ -4698,6 +4746,7 @@ msgstr "Anvend og Gå til Kassen"
4698
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
4699
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
4700
  #: pages/checkout.php:526
 
4701
  msgid "Submit and Confirm"
4702
  msgstr "Anvend og Bekræft"
4703
 
@@ -5050,6 +5099,8 @@ msgstr "Ukendt fejl under oprettelse af konto. Kontakt venligst support for at f
5050
  #: preheaders/checkout.php:822
5051
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
5052
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
 
 
5053
  msgid "The PayPal Token was lost."
5054
  msgstr "PayPal Token gik tabt."
5055
 
@@ -5143,6 +5194,7 @@ msgstr "Denne <strong>%s</strong> kode er blevet tilføjet til din ordre."
5143
  #: services/authnet-silent-post.php:138
5144
  #: services/authnet-silent-post.php:133
5145
  #: services/authnet-silent-post.php:173
 
5146
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
5147
  msgstr "<p>En betaling holdes tilbage for undersøgelse hos Authorize.net.</p><p>Betalings information fra Authorize.net"
5148
 
@@ -5177,6 +5229,7 @@ msgstr "Integration til 2Checkout understøtter ikke brugerdefineret prøve peri
5177
  #: adminpages/advancedsettings.php:316
5178
  #: includes/privacy.php:175
5179
  #: includes/profile.php:509
 
5180
  msgid "Never"
5181
  msgstr "Aldrig"
5182
 
@@ -5384,6 +5437,9 @@ msgstr ""
5384
  #: adminpages/orders.php:1544
5385
  #: adminpages/orders.php:1554
5386
  #: adminpages/orders.php:1553
 
 
 
5387
  msgid "N/A"
5388
  msgstr ""
5389
 
@@ -5410,6 +5466,7 @@ msgstr ""
5410
 
5411
  #: adminpages/admin_header.php:152
5412
  #: classes/gateways/class.pmprogateway_stripe.php:76
 
5413
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
5414
  msgstr ""
5415
 
@@ -5693,6 +5750,7 @@ msgstr ""
5693
  #: adminpages/dashboard.php:174
5694
  #: adminpages/license.php:49
5695
  #: adminpages/dashboard.php:178
 
5696
  msgid "Your license is invalid or expired."
5697
  msgstr ""
5698
 
@@ -5704,6 +5762,7 @@ msgstr ""
5704
  #: adminpages/dashboard.php:177
5705
  #: adminpages/license.php:51
5706
  #: adminpages/dashboard.php:181
 
5707
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
5708
  msgstr ""
5709
 
@@ -6186,26 +6245,33 @@ msgid "Your license key has been validated."
6186
  msgstr ""
6187
 
6188
  #: adminpages/license.php:43
 
6189
  msgid "Paid Memberships Pro Support License"
6190
  msgstr ""
6191
 
6192
  #: adminpages/license.php:47
 
6193
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
6194
  msgstr ""
6195
 
6196
  #: adminpages/license.php:49
 
 
6197
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
6198
  msgstr ""
6199
 
6200
  #: adminpages/license.php:59
 
6201
  msgid "Enter license key here..."
6202
  msgstr ""
6203
 
6204
  #: adminpages/license.php:61
 
6205
  msgid "Validate Key"
6206
  msgstr ""
6207
 
6208
  #: adminpages/license.php:95
 
6209
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
6210
  msgstr ""
6211
 
@@ -6856,6 +6922,7 @@ msgstr ""
6856
 
6857
  #: classes/gateways/class.pmprogateway_braintree.php:87
6858
  #: classes/gateways/class.pmprogateway_stripe.php:91
 
6859
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
6860
  msgstr ""
6861
 
@@ -7175,6 +7242,7 @@ msgid "Your order has been refused."
7175
  msgstr ""
7176
 
7177
  #: classes/gateways/class.pmprogateway_cybersource.php:922
 
7178
  msgid "Unknown error."
7179
  msgstr ""
7180
 
@@ -7207,35 +7275,42 @@ msgstr ""
7207
  #: classes/gateways/class.pmprogateway_paypal.php:132
7208
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
7209
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
 
7210
  msgid "PayPal Settings"
7211
  msgstr ""
7212
 
7213
  #: classes/gateways/class.pmprogateway_paypal.php:146
7214
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
7215
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
 
7216
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
7217
  msgstr ""
7218
 
7219
  #: classes/gateways/class.pmprogateway_paypal.php:185
7220
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
 
7221
  msgid "Confirmation Step"
7222
  msgstr ""
7223
 
7224
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
7225
  #: paid-memberships-pro.php:160
7226
  #: paid-memberships-pro.php:162
 
7227
  msgid "PayPal Express"
7228
  msgstr ""
7229
 
7230
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
 
7231
  msgid "Checkout was already processed."
7232
  msgstr ""
7233
 
7234
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
 
7235
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
7236
  msgstr ""
7237
 
7238
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
 
7239
  msgid "Error creating plan with PayPal."
7240
  msgstr ""
7241
 
@@ -7256,6 +7331,7 @@ msgstr ""
7256
  #: classes/gateways/class.pmprogateway_stripe.php:252
7257
  #: paid-memberships-pro.php:159
7258
  #: paid-memberships-pro.php:161
 
7259
  msgid "Stripe"
7260
  msgstr ""
7261
 
@@ -7263,11 +7339,14 @@ msgstr ""
7263
  #: classes/gateways/class.pmprogateway_stripe.php:436
7264
  #: classes/gateways/class.pmprogateway_stripe.php:354
7265
  #: classes/gateways/class.pmprogateway_stripe.php:444
 
 
7266
  msgid "Stripe Connect Settings"
7267
  msgstr ""
7268
 
7269
  #: classes/gateways/class.pmprogateway_stripe.php:352
7270
  #: classes/gateways/class.pmprogateway_stripe.php:356
 
7271
  msgid "Live Mode:"
7272
  msgstr ""
7273
 
@@ -7275,6 +7354,8 @@ msgstr ""
7275
  #: classes/gateways/class.pmprogateway_stripe.php:440
7276
  #: classes/gateways/class.pmprogateway_stripe.php:358
7277
  #: classes/gateways/class.pmprogateway_stripe.php:448
 
 
7278
  msgid "Connected"
7279
  msgstr ""
7280
 
@@ -7282,6 +7363,8 @@ msgstr ""
7282
  #: classes/gateways/class.pmprogateway_stripe.php:442
7283
  #: classes/gateways/class.pmprogateway_stripe.php:362
7284
  #: classes/gateways/class.pmprogateway_stripe.php:452
 
 
7285
  msgid "Not Connected"
7286
  msgstr ""
7287
 
@@ -7289,11 +7372,14 @@ msgstr ""
7289
  #: classes/gateways/class.pmprogateway_stripe.php:449
7290
  #: classes/gateways/class.pmprogateway_stripe.php:369
7291
  #: classes/gateways/class.pmprogateway_stripe.php:459
 
 
7292
  msgid "Your site is using legacy API keys to authenticate with Stripe."
7293
  msgstr ""
7294
 
7295
  #: classes/gateways/class.pmprogateway_stripe.php:364
7296
  #: classes/gateways/class.pmprogateway_stripe.php:371
 
7297
  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."
7298
  msgstr ""
7299
 
@@ -7301,6 +7387,8 @@ msgstr ""
7301
  #: classes/gateways/class.pmprogateway_stripe.php:458
7302
  #: classes/gateways/class.pmprogateway_stripe.php:380
7303
  #: classes/gateways/class.pmprogateway_stripe.php:470
 
 
7304
  msgid "Stripe Connection:"
7305
  msgstr ""
7306
 
@@ -7308,11 +7396,14 @@ msgstr ""
7308
  #: classes/gateways/class.pmprogateway_stripe.php:482
7309
  #: classes/gateways/class.pmprogateway_stripe.php:396
7310
  #: classes/gateways/class.pmprogateway_stripe.php:494
 
 
7311
  msgid "Disconnect From Stripe"
7312
  msgstr ""
7313
 
7314
  #: classes/gateways/class.pmprogateway_stripe.php:389
7315
  #: classes/gateways/class.pmprogateway_stripe.php:397
 
7316
  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."
7317
  msgstr ""
7318
 
@@ -7320,16 +7411,20 @@ msgstr ""
7320
  #: classes/gateways/class.pmprogateway_stripe.php:496
7321
  #: classes/gateways/class.pmprogateway_stripe.php:409
7322
  #: classes/gateways/class.pmprogateway_stripe.php:508
 
 
7323
  msgid "Connect with Stripe"
7324
  msgstr ""
7325
 
7326
  #: classes/gateways/class.pmprogateway_stripe.php:408
7327
  #: classes/gateways/class.pmprogateway_stripe.php:416
 
7328
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
7329
  msgstr ""
7330
 
7331
  #: classes/gateways/class.pmprogateway_stripe.php:411
7332
  #: classes/gateways/class.pmprogateway_stripe.php:419
 
7333
  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."
7334
  msgstr ""
7335
 
@@ -7340,6 +7435,9 @@ msgstr ""
7340
  #: classes/gateways/class.pmprogateway_stripe.php:519
7341
  #: classes/gateways/class.pmprogateway_stripe.php:559
7342
  #: classes/gateways/class.pmprogateway_stripe.php:578
 
 
 
7343
  msgid "Webhook"
7344
  msgstr ""
7345
 
@@ -7350,32 +7448,40 @@ msgstr ""
7350
  #: classes/gateways/class.pmprogateway_stripe.php:523
7351
  #: classes/gateways/class.pmprogateway_stripe.php:594
7352
  #: classes/gateways/class.pmprogateway_stripe.php:613
 
 
 
7353
  msgid "Webhook URL"
7354
  msgstr ""
7355
 
7356
  #: classes/gateways/class.pmprogateway_stripe.php:438
7357
  #: classes/gateways/class.pmprogateway_stripe.php:446
 
7358
  msgid "Test Mode:"
7359
  msgstr ""
7360
 
7361
  #: classes/gateways/class.pmprogateway_stripe.php:450
7362
  #: classes/gateways/class.pmprogateway_stripe.php:461
 
7363
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
7364
  msgstr ""
7365
 
7366
  #: classes/gateways/class.pmprogateway_stripe.php:483
7367
  #: classes/gateways/class.pmprogateway_stripe.php:495
 
7368
  msgid "This will disconnect your site from Stripe in test mode only."
7369
  msgstr ""
7370
 
7371
  #: classes/gateways/class.pmprogateway_stripe.php:518
7372
  #: classes/gateways/class.pmprogateway_stripe.php:530
 
7373
  msgid "Stripe API Settings (Legacy)"
7374
  msgstr ""
7375
 
7376
  #: classes/gateways/class.pmprogateway_stripe.php:531
7377
  #: classes/gateways/class.pmprogateway_stripe.php:543
7378
  #: classes/gateways/class.pmprogateway_stripe.php:562
 
7379
  msgid "Your Publishable Key appears incorrect."
7380
  msgstr ""
7381
 
@@ -7385,24 +7491,29 @@ msgstr ""
7385
  #: classes/gateways/class.pmprogateway_stripe.php:587
7386
  #: classes/gateways/class.pmprogateway_stripe.php:582
7387
  #: classes/gateways/class.pmprogateway_stripe.php:606
 
 
7388
  msgid "Create Webhook"
7389
  msgstr ""
7390
 
7391
  #: classes/gateways/class.pmprogateway_stripe.php:557
7392
  #: classes/gateways/class.pmprogateway_stripe.php:569
7393
  #: classes/gateways/class.pmprogateway_stripe.php:588
 
7394
  msgid "A webhook is set up in Stripe, but it is disabled."
7395
  msgstr ""
7396
 
7397
  #: classes/gateways/class.pmprogateway_stripe.php:564
7398
  #: classes/gateways/class.pmprogateway_stripe.php:576
7399
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
7400
  msgid "A webhook is set up in Stripe, but it is using an old API version."
7401
  msgstr ""
7402
 
7403
  #: classes/gateways/class.pmprogateway_stripe.php:564
7404
  #: classes/gateways/class.pmprogateway_stripe.php:576
7405
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
7406
  msgid "Rebuild Webhook"
7407
  msgstr ""
7408
 
@@ -7415,12 +7526,16 @@ msgstr ""
7415
  #: classes/gateways/class.pmprogateway_stripe.php:601
7416
  #: classes/gateways/class.pmprogateway_stripe.php:741
7417
  #: classes/gateways/class.pmprogateway_stripe.php:857
 
 
 
7418
  msgid "Your webhook is enabled."
7419
  msgstr ""
7420
 
7421
  #: classes/gateways/class.pmprogateway_stripe.php:570
7422
  #: classes/gateways/class.pmprogateway_stripe.php:582
7423
  #: classes/gateways/class.pmprogateway_stripe.php:601
 
7424
  msgid "Disable Webhook"
7425
  msgstr ""
7426
 
@@ -7436,66 +7551,80 @@ msgstr ""
7436
  #: classes/gateways/class.pmprogateway_stripe.php:768
7437
  #: classes/gateways/class.pmprogateway_stripe.php:785
7438
  #: classes/gateways/class.pmprogateway_stripe.php:819
 
 
 
 
7439
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
7440
  msgstr ""
7441
 
7442
  #: classes/gateways/class.pmprogateway_stripe.php:589
7443
  #: classes/gateways/class.pmprogateway_stripe.php:601
7444
  #: classes/gateways/class.pmprogateway_stripe.php:620
 
7445
  msgid "Other Stripe Settings"
7446
  msgstr ""
7447
 
7448
  #: classes/gateways/class.pmprogateway_stripe.php:593
7449
  #: classes/gateways/class.pmprogateway_stripe.php:605
7450
  #: classes/gateways/class.pmprogateway_stripe.php:624
 
7451
  msgid "Stripe API Version"
7452
  msgstr ""
7453
 
7454
  #: classes/gateways/class.pmprogateway_stripe.php:612
7455
  #: classes/gateways/class.pmprogateway_stripe.php:624
7456
  #: classes/gateways/class.pmprogateway_stripe.php:643
 
7457
  msgid "Enable Payment Request Button"
7458
  msgstr ""
7459
 
7460
  #: classes/gateways/class.pmprogateway_stripe.php:630
7461
  #: classes/gateways/class.pmprogateway_stripe.php:642
7462
  #: classes/gateways/class.pmprogateway_stripe.php:661
 
7463
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
7464
  msgstr ""
7465
 
7466
  #: classes/gateways/class.pmprogateway_stripe.php:643
7467
  #: classes/gateways/class.pmprogateway_stripe.php:655
7468
  #: classes/gateways/class.pmprogateway_stripe.php:674
 
7469
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
7470
  msgstr ""
7471
 
7472
  #: classes/gateways/class.pmprogateway_stripe.php:645
7473
  #: classes/gateways/class.pmprogateway_stripe.php:657
7474
  #: classes/gateways/class.pmprogateway_stripe.php:676
 
7475
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
7476
  msgstr ""
7477
 
7478
  #: classes/gateways/class.pmprogateway_stripe.php:647
7479
  #: classes/gateways/class.pmprogateway_stripe.php:659
7480
  #: classes/gateways/class.pmprogateway_stripe.php:678
 
7481
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
7482
  msgstr ""
7483
 
7484
  #: classes/gateways/class.pmprogateway_stripe.php:649
7485
  #: classes/gateways/class.pmprogateway_stripe.php:661
7486
  #: classes/gateways/class.pmprogateway_stripe.php:680
 
7487
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
7488
  msgstr ""
7489
 
7490
  #: classes/gateways/class.pmprogateway_stripe.php:674
7491
  #: classes/gateways/class.pmprogateway_stripe.php:686
7492
  #: classes/gateways/class.pmprogateway_stripe.php:705
 
7493
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
7494
  msgstr ""
7495
 
7496
  #: classes/gateways/class.pmprogateway_stripe.php:695
7497
  #: classes/gateways/class.pmprogateway_stripe.php:707
7498
  #: classes/gateways/class.pmprogateway_stripe.php:726
 
7499
  msgid "Webhook creation failed. You might already have a webhook set up."
7500
  msgstr ""
7501
 
@@ -7505,54 +7634,64 @@ msgstr ""
7505
  #: classes/gateways/class.pmprogateway_stripe.php:847
7506
  #: classes/gateways/class.pmprogateway_stripe.php:792
7507
  #: classes/gateways/class.pmprogateway_stripe.php:866
 
 
7508
  msgid "There was an error deleting the webhook."
7509
  msgstr ""
7510
 
7511
  #: classes/gateways/class.pmprogateway_stripe.php:811
7512
  #: classes/gateways/class.pmprogateway_stripe.php:823
7513
  #: classes/gateways/class.pmprogateway_stripe.php:842
 
7514
  msgid "Webhook creation failed. Please refresh and try again."
7515
  msgstr ""
7516
 
7517
  #: classes/gateways/class.pmprogateway_stripe.php:867
7518
  #: classes/gateways/class.pmprogateway_stripe.php:879
7519
  #: classes/gateways/class.pmprogateway_stripe.php:898
 
7520
  msgid "Verification steps confirmed. Your payment is processing."
7521
  msgstr ""
7522
 
7523
  #: classes/gateways/class.pmprogateway_stripe.php:1262
7524
  #: classes/gateways/class.pmprogateway_stripe.php:1274
7525
  #: classes/gateways/class.pmprogateway_stripe.php:1293
 
7526
  msgid "Pay with Credit Card"
7527
  msgstr ""
7528
 
7529
  #: classes/gateways/class.pmprogateway_stripe.php:1296
7530
  #: classes/gateways/class.pmprogateway_stripe.php:1308
7531
  #: classes/gateways/class.pmprogateway_stripe.php:1327
 
7532
  msgid "CVC"
7533
  msgstr ""
7534
 
7535
  #: classes/gateways/class.pmprogateway_stripe.php:1374
7536
  #: classes/gateways/class.pmprogateway_stripe.php:1386
7537
  #: classes/gateways/class.pmprogateway_stripe.php:1405
 
7538
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
7539
  msgstr ""
7540
 
7541
  #: classes/gateways/class.pmprogateway_stripe.php:1379
7542
  #: classes/gateways/class.pmprogateway_stripe.php:1391
7543
  #: classes/gateways/class.pmprogateway_stripe.php:1410
 
7544
  msgid "Subscription Updates"
7545
  msgstr ""
7546
 
7547
  #: classes/gateways/class.pmprogateway_stripe.php:1383
7548
  #: classes/gateways/class.pmprogateway_stripe.php:1395
7549
  #: classes/gateways/class.pmprogateway_stripe.php:1414
 
7550
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
7551
  msgstr ""
7552
 
7553
  #: classes/gateways/class.pmprogateway_stripe.php:1385
7554
  #: classes/gateways/class.pmprogateway_stripe.php:1397
7555
  #: classes/gateways/class.pmprogateway_stripe.php:1416
 
7556
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
7557
  msgstr ""
7558
 
@@ -7568,6 +7707,10 @@ msgstr ""
7568
  #: classes/gateways/class.pmprogateway_stripe.php:2016
7569
  #: classes/gateways/class.pmprogateway_stripe.php:2029
7570
  #: classes/gateways/class.pmprogateway_stripe.php:2033
 
 
 
 
7571
  msgid "Error: %s"
7572
  msgstr ""
7573
 
@@ -7577,18 +7720,22 @@ msgstr ""
7577
  #: classes/gateways/class.pmprogateway_stripe.php:2182
7578
  #: classes/gateways/class.pmprogateway_stripe.php:2196
7579
  #: classes/gateways/class.pmprogateway_stripe.php:2201
 
 
7580
  msgid "Error getting subscription with Stripe:"
7581
  msgstr ""
7582
 
7583
  #: classes/gateways/class.pmprogateway_stripe.php:2480
7584
  #: classes/gateways/class.pmprogateway_stripe.php:2492
7585
  #: classes/gateways/class.pmprogateway_stripe.php:2514
 
7586
  msgid "Could not cancel the old subscription. Updates have not been processed."
7587
  msgstr ""
7588
 
7589
  #: classes/gateways/class.pmprogateway_stripe.php:2648
7590
  #: classes/gateways/class.pmprogateway_stripe.php:2660
7591
  #: classes/gateways/class.pmprogateway_stripe.php:2682
 
7592
  msgid "Could not find the customer."
7593
  msgstr ""
7594
 
@@ -7598,30 +7745,35 @@ msgstr ""
7598
  #: classes/gateways/class.pmprogateway_stripe.php:2834
7599
  #: classes/gateways/class.pmprogateway_stripe.php:2850
7600
  #: classes/gateways/class.pmprogateway_stripe.php:2856
 
7601
  msgid "Error: "
7602
  msgstr ""
7603
 
7604
  #: classes/gateways/class.pmprogateway_stripe.php:2836
7605
  #: classes/gateways/class.pmprogateway_stripe.php:2848
7606
  #: classes/gateways/class.pmprogateway_stripe.php:2870
 
7607
  msgid "Error: Unkown error while refunding charge #%s"
7608
  msgstr ""
7609
 
7610
  #: classes/gateways/class.pmprogateway_stripe.php:3330
7611
  #: classes/gateways/class.pmprogateway_stripe.php:3342
7612
  #: classes/gateways/class.pmprogateway_stripe.php:3364
 
7613
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
7614
  msgstr ""
7615
 
7616
  #: classes/gateways/class.pmprogateway_stripe.php:3347
7617
  #: classes/gateways/class.pmprogateway_stripe.php:3359
7618
  #: classes/gateways/class.pmprogateway_stripe.php:3381
 
7619
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
7620
  msgstr ""
7621
 
7622
  #: classes/gateways/class.pmprogateway_stripe.php:3533
7623
  #: classes/gateways/class.pmprogateway_stripe.php:3545
7624
  #: classes/gateways/class.pmprogateway_stripe.php:3567
 
7625
  msgid "Invalid response from the Stripe Connect server."
7626
  msgstr ""
7627
 
@@ -7629,6 +7781,7 @@ msgstr ""
7629
  #: classes/gateways/class.pmprogateway_stripe.php:3561
7630
  #: classes/gateways/class.pmprogateway_stripe.php:3573
7631
  #: classes/gateways/class.pmprogateway_stripe.php:3595
 
7632
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
7633
  msgstr ""
7634
 
@@ -7636,30 +7789,35 @@ msgstr ""
7636
  #: classes/gateways/class.pmprogateway_stripe.php:3597
7637
  #: classes/gateways/class.pmprogateway_stripe.php:3609
7638
  #: classes/gateways/class.pmprogateway_stripe.php:3631
 
7639
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
7640
  msgstr ""
7641
 
7642
  #: classes/gateways/class.pmprogateway_stripe.php:3768
7643
  #: classes/gateways/class.pmprogateway_stripe.php:3780
7644
  #: classes/gateways/class.pmprogateway_stripe.php:3802
 
7645
  msgid "Last webhook received at"
7646
  msgstr ""
7647
 
7648
  #: classes/gateways/class.pmprogateway_stripe.php:3770
7649
  #: classes/gateways/class.pmprogateway_stripe.php:3782
7650
  #: classes/gateways/class.pmprogateway_stripe.php:3804
 
7651
  msgid "No webhooks have been received."
7652
  msgstr ""
7653
 
7654
  #: classes/gateways/class.pmprogateway_stripe.php:3774
7655
  #: classes/gateways/class.pmprogateway_stripe.php:3786
7656
  #: classes/gateways/class.pmprogateway_stripe.php:3808
 
7657
  msgid "Your webhook may not be working correctly."
7658
  msgstr ""
7659
 
7660
  #: classes/gateways/class.pmprogateway_stripe.php:3776
7661
  #: classes/gateways/class.pmprogateway_stripe.php:3788
7662
  #: classes/gateways/class.pmprogateway_stripe.php:3810
 
7663
  msgid "Click here for info on setting up your webhook with Stripe."
7664
  msgstr ""
7665
 
@@ -9857,11 +10015,13 @@ msgstr ""
9857
 
9858
  #: includes/login.php:429
9859
  #: includes/profile.php:843
 
9860
  msgid "New passwords do not match."
9861
  msgstr ""
9862
 
9863
  #: includes/login.php:433
9864
  #: includes/profile.php:839
 
9865
  msgid "Please complete all fields."
9866
  msgstr ""
9867
 
@@ -9891,17 +10051,21 @@ msgstr ""
9891
 
9892
  #: includes/login.php:688
9893
  #: includes/profile.php:891
 
9894
  msgid "New Password"
9895
  msgstr ""
9896
 
9897
  #: includes/login.php:690
9898
  #: includes/profile.php:894
9899
  #: includes/scripts.php:86
 
 
9900
  msgid "Strength Indicator"
9901
  msgstr ""
9902
 
9903
  #: includes/login.php:694
9904
  #: includes/profile.php:898
 
9905
  msgid "Confirm New Password"
9906
  msgstr ""
9907
 
@@ -10002,21 +10166,25 @@ msgstr ""
10002
  #: includes/privacy.php:182
10003
  #: includes/profile.php:425
10004
  #: includes/profile.php:493
 
10005
  msgid "Level ID"
10006
  msgstr ""
10007
 
10008
  #: includes/privacy.php:190
10009
  #: includes/profile.php:496
 
10010
  msgid "Date Modified"
10011
  msgstr ""
10012
 
10013
  #: includes/privacy.php:194
10014
  #: includes/profile.php:497
 
10015
  msgid "End Date"
10016
  msgstr ""
10017
 
10018
  #: includes/privacy.php:198
10019
  #: includes/profile.php:498
 
10020
  msgid "Level Cost"
10021
  msgstr ""
10022
 
@@ -10125,68 +10293,85 @@ msgid "Membership Levels History"
10125
  msgstr ""
10126
 
10127
  #: includes/profile.php:485
 
10128
  msgid "No membership orders found."
10129
  msgstr ""
10130
 
10131
  #: includes/profile.php:537
 
10132
  msgid "No membership history found."
10133
  msgstr ""
10134
 
10135
  #: includes/profile.php:644
 
10136
  msgid "Log in to edit your profile."
10137
  msgstr ""
10138
 
10139
  #: includes/profile.php:679
 
10140
  msgid "Please enter a display name."
10141
  msgstr ""
10142
 
10143
  #: includes/profile.php:689
 
10144
  msgid "Please enter an email address."
10145
  msgstr ""
10146
 
10147
  #: includes/profile.php:691
 
10148
  msgid "The email address isn&#8217;t correct."
10149
  msgstr ""
10150
 
10151
  #: includes/profile.php:695
 
10152
  msgid "This email is already registered, please choose another one."
10153
  msgstr ""
10154
 
10155
  #: includes/profile.php:722
 
10156
  msgid "Your profile has been updated."
10157
  msgstr ""
10158
 
10159
  #: includes/profile.php:749
 
10160
  msgid "Display name publicly as"
10161
  msgstr ""
10162
 
10163
  #: includes/profile.php:762
 
10164
  msgid "Site administrators must use the WordPress dashboard to update their email address."
10165
  msgstr ""
10166
 
10167
  #: includes/profile.php:785
 
10168
  msgid "Update Profile"
10169
  msgstr ""
10170
 
10171
  #: includes/profile.php:841
 
10172
  msgid "Please enter your current password."
10173
  msgstr ""
10174
 
10175
  #: includes/profile.php:845
 
10176
  msgid "Your current password is incorrect."
10177
  msgstr ""
10178
 
10179
  #: includes/profile.php:856
 
10180
  msgid "Your password has been updated."
10181
  msgstr ""
10182
 
10183
  #: includes/profile.php:886
 
10184
  msgid "Current Password"
10185
  msgstr ""
10186
 
10187
  #: includes/profile.php:888
10188
  #: includes/profile.php:893
10189
  #: includes/profile.php:900
 
 
10190
  msgid "Required Field"
10191
  msgstr ""
10192
 
@@ -10332,10 +10517,12 @@ msgid "That email address is already in use. Please log in, or use a different e
10332
  msgstr ""
10333
 
10334
  #: services/braintree-webhook.php:425
 
10335
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
10336
  msgstr ""
10337
 
10338
  #: services/braintree-webhook.php:427
 
10339
  msgid "A member's Braintree subscription has expired at %s"
10340
  msgstr ""
10341
 
@@ -10670,16 +10857,22 @@ msgstr ""
10670
 
10671
  #: classes/gateways/class.pmprogateway_stripe.php:360
10672
  #: classes/gateways/class.pmprogateway_stripe.php:450
 
 
10673
  msgid "Connected with Legacy Keys"
10674
  msgstr ""
10675
 
10676
  #: classes/gateways/class.pmprogateway_stripe.php:370
10677
  #: classes/gateways/class.pmprogateway_stripe.php:460
 
 
10678
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
10679
  msgstr ""
10680
 
10681
  #: classes/gateways/class.pmprogateway_stripe.php:372
10682
  #: classes/gateways/class.pmprogateway_stripe.php:462
 
 
10683
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
10684
  msgstr ""
10685
 
@@ -10736,13 +10929,49 @@ msgid "missing"
10736
  msgstr ""
10737
 
10738
  #: classes/gateways/class.pmprogateway_stripe.php:533
 
10739
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
10740
  msgstr ""
10741
 
10742
  #: classes/gateways/class.pmprogateway_stripe.php:534
 
10743
  msgid "Click here to use the legacy API settings."
10744
  msgstr ""
10745
 
10746
  #: paid-memberships-pro.php:194
10747
  msgid "Once a month"
10748
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.3\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-10-11T14:00:11+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
184
  #: adminpages/orders.php:391
185
  #: adminpages/orders.php:1445
186
  #: adminpages/orders.php:1448
187
+ #: includes/profile.php:762
188
  msgid "Email"
189
  msgstr "E-mail"
190
 
331
  #: adminpages/advancedsettings.php:479
332
  #: classes/gateways/class.pmprogateway_stripe.php:634
333
  #: classes/gateways/class.pmprogateway_stripe.php:648
334
+ #: classes/gateways/class.pmprogateway_stripe.php:640
335
+ #: classes/gateways/class.pmprogateway_stripe.php:654
336
  msgid "No"
337
  msgstr "Nej"
338
 
408
  #: adminpages/advancedsettings.php:397
409
  #: classes/gateways/class.pmprogateway_stripe.php:636
410
  #: classes/gateways/class.pmprogateway_stripe.php:650
411
+ #: classes/gateways/class.pmprogateway_stripe.php:642
412
+ #: classes/gateways/class.pmprogateway_stripe.php:656
413
  msgid "Yes"
414
  msgstr "Ja"
415
 
638
  #: includes/privacy.php:186
639
  #: includes/profile.php:495
640
  #: adminpages/discountcodes.php:489
641
+ #: includes/profile.php:501
642
  msgid "Start Date"
643
  msgstr "Startdato"
644
 
657
  #: classes/gateways/class.pmprogateway_stripe.php:1301
658
  #: adminpages/discountcodes.php:507
659
  #: classes/gateways/class.pmprogateway_stripe.php:1320
660
+ #: classes/gateways/class.pmprogateway_stripe.php:1326
661
  msgid "Expiration Date"
662
  msgstr "Udløbsdato"
663
 
746
  #: adminpages/discountcodes.php:612
747
  #: adminpages/discountcodes.php:699
748
  #: classes/gateways/class.pmprogateway_stripe.php:1363
749
+ #: classes/gateways/class.pmprogateway_stripe.php:1369
750
  msgid "Day(s)"
751
  msgstr "Dag(e)"
752
 
764
  #: adminpages/discountcodes.php:612
765
  #: adminpages/discountcodes.php:699
766
  #: classes/gateways/class.pmprogateway_stripe.php:1365
767
+ #: classes/gateways/class.pmprogateway_stripe.php:1371
768
  msgid "Month(s)"
769
  msgstr "Måned(er)"
770
 
782
  #: adminpages/discountcodes.php:612
783
  #: adminpages/discountcodes.php:699
784
  #: classes/gateways/class.pmprogateway_stripe.php:1364
785
+ #: classes/gateways/class.pmprogateway_stripe.php:1370
786
  msgid "Week(s)"
787
  msgstr "Uge(r)"
788
 
800
  #: adminpages/discountcodes.php:612
801
  #: adminpages/discountcodes.php:699
802
  #: classes/gateways/class.pmprogateway_stripe.php:1366
803
+ #: classes/gateways/class.pmprogateway_stripe.php:1372
804
  msgid "Year(s)"
805
  msgstr "År"
806
 
1249
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1250
  #: adminpages/discountcodes.php:608
1251
  #: classes/gateways/class.pmprogateway_stripe.php:1497
1252
+ #: classes/gateways/class.pmprogateway_stripe.php:1503
1253
  msgid "per"
1254
  msgstr "pr"
1255
 
1871
  #: adminpages/orders.php:679
1872
  #: classes/gateways/class.pmprogateway_stripe.php:1284
1873
  #: classes/gateways/class.pmprogateway_stripe.php:1303
1874
+ #: classes/gateways/class.pmprogateway_stripe.php:1309
1875
  msgid "Card Type"
1876
  msgstr "Korttype"
1877
 
1934
  #: adminpages/dashboard.php:294
1935
  #: adminpages/orders.php:742
1936
  #: adminpages/orders.php:1348
1937
+ #: includes/profile.php:505
1938
  msgid "Status"
1939
  msgstr "Status"
1940
 
2095
  #: pages/cancel.php:96
2096
  #: shortcodes/pmpro_account.php:106
2097
  #: adminpages/orders.php:968
2098
+ #: includes/profile.php:798
2099
+ #: includes/profile.php:922
2100
  msgid "Cancel"
2101
  msgstr "Annullér"
2102
 
2566
  #: classes/gateways/class.pmprogateway_paypal.php:153
2567
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
2568
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
2569
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:172
2570
  msgid "Gateway Account Email"
2571
  msgstr "Gateway Konto Email"
2572
 
2579
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
2580
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
2581
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
2582
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:180
2583
  msgid "API Username"
2584
  msgstr "API Brugernavn"
2585
 
2592
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
2593
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
2594
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
2595
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:188
2596
  msgid "API Password"
2597
  msgstr "API Adgangskode"
2598
 
2602
  #: classes/gateways/class.pmprogateway_paypal.php:177
2603
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
2604
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
2605
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:196
2606
  msgid "API Signature"
2607
  msgstr "API Signatur"
2608
 
2626
  #: classes/gateways/class.pmprogateway_stripe.php:539
2627
  #: classes/gateways/class.pmprogateway_stripe.php:551
2628
  #: classes/gateways/class.pmprogateway_stripe.php:570
2629
+ #: classes/gateways/class.pmprogateway_stripe.php:576
2630
  msgid "Secret Key"
2631
  msgstr "Hemmelig Nøgle"
2632
 
2636
  #: classes/gateways/class.pmprogateway_stripe.php:523
2637
  #: classes/gateways/class.pmprogateway_stripe.php:535
2638
  #: classes/gateways/class.pmprogateway_stripe.php:554
2639
+ #: classes/gateways/class.pmprogateway_stripe.php:560
2640
  msgid "Publishable Key"
2641
  msgstr "Publicérbar Nøgle"
2642
 
2723
  #: classes/gateways/class.pmprogateway_stripe.php:598
2724
  #: classes/gateways/class.pmprogateway_stripe.php:610
2725
  #: classes/gateways/class.pmprogateway_stripe.php:629
2726
+ #: classes/gateways/class.pmprogateway_stripe.php:635
2727
  msgid "Show Billing Address Fields"
2728
  msgstr "Vis Regnings Adresse-felter."
2729
 
2731
  #: classes/gateways/class.pmprogateway_stripe.php:607
2732
  #: classes/gateways/class.pmprogateway_stripe.php:619
2733
  #: classes/gateways/class.pmprogateway_stripe.php:638
2734
+ #: classes/gateways/class.pmprogateway_stripe.php:644
2735
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
2736
  msgstr "Stripe behøver ikke regnings adresse-felter. Vælg 'Nej' for at skjule dem på Gå til kassen siden.<br/><strong>Hvis Nej, så vær sikker på, at du har deaktiveret bekræftigelse i Stripe Kontrolpanel Indstillingerne.</strong>"
2737
 
2814
  #: classes/gateways/class.pmprogateway_paypal.php:196
2815
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
2816
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
2817
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:215
2818
  msgid "IPN Handler URL"
2819
  msgstr "IPN Handler URL"
2820
 
2823
  #: adminpages/paymentsettings.php:482
2824
  #: classes/gateways/class.pmprogateway_paypal.php:199
2825
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
2826
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:218
2827
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
2828
  msgstr "For at integrere fuldt ud med PayPal, sørg for at du har sat din IPN Handler URL til "
2829
 
3202
  #: classes/class.pmproemail.php:769
3203
  #: classes/class.pmproemail.php:771
3204
  #: classes/gateways/class.pmprogateway_stripe.php:1333
3205
+ #: classes/gateways/class.pmprogateway_stripe.php:1339
3206
  msgid "Discount Code"
3207
  msgstr "Rabatkode"
3208
 
3513
  #: classes/gateways/class.pmprogateway_paypal.php:716
3514
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
3515
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
3516
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:841
3517
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
3518
  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."
3519
 
3529
  #: classes/gateways/class.pmprogateway_stripe.php:2127
3530
  #: classes/gateways/class.pmprogateway_stripe.php:2132
3531
  #: classes/gateways/class.pmprogateway_stripe.php:2137
3532
+ #: classes/gateways/class.pmprogateway_stripe.php:2133
3533
+ #: classes/gateways/class.pmprogateway_stripe.php:2138
3534
+ #: classes/gateways/class.pmprogateway_stripe.php:2143
3535
  msgid "Error creating customer record with Stripe:"
3536
  msgstr "Fejl i at oprette kunde konto hos Stripe:"
3537
 
3545
  #: classes/gateways/class.pmprogateway_stripe.php:2356
3546
  #: classes/gateways/class.pmprogateway_stripe.php:2373
3547
  #: classes/gateways/class.pmprogateway_stripe.php:2378
3548
+ #: classes/gateways/class.pmprogateway_stripe.php:2379
3549
+ #: classes/gateways/class.pmprogateway_stripe.php:2384
3550
  msgid "Error creating plan with Stripe:"
3551
  msgstr "Fejl i at oprette en plan hos Stripe:"
3552
 
3560
  #: classes/gateways/class.pmprogateway_stripe.php:2401
3561
  #: classes/gateways/class.pmprogateway_stripe.php:2409
3562
  #: classes/gateways/class.pmprogateway_stripe.php:2423
3563
+ #: classes/gateways/class.pmprogateway_stripe.php:2415
3564
+ #: classes/gateways/class.pmprogateway_stripe.php:2429
3565
  msgid "Error subscribing customer to plan with Stripe:"
3566
  msgstr "Fejl i at tilmelde kunden til en plan hos Stripe:"
3567
 
3569
  #: classes/gateways/class.pmprogateway_stripe.php:2632
3570
  #: classes/gateways/class.pmprogateway_stripe.php:2644
3571
  #: classes/gateways/class.pmprogateway_stripe.php:2666
3572
+ #: classes/gateways/class.pmprogateway_stripe.php:2672
3573
  msgid "Could not cancel old subscription."
3574
  msgstr "Kunne ikke annullere det gamle abonnement."
3575
 
4187
  #: adminpages/dashboard.php:224
4188
  #: adminpages/dashboard.php:292
4189
  #: adminpages/orders.php:1343
4190
+ #: includes/profile.php:500
4191
  msgid "Level"
4192
  msgstr "Niveau"
4193
 
4260
  #: includes/profile.php:872
4261
  #: includes/profile.php:909
4262
  #: shortcodes/pmpro_account.php:195
4263
+ #: includes/profile.php:884
4264
+ #: includes/profile.php:921
4265
  msgid "Change Password"
4266
  msgstr "Skift Adganskode"
4267
 
4346
  #: includes/profile.php:747
4347
  #: pages/billing.php:164
4348
  #: pages/checkout.php:234
4349
+ #: includes/profile.php:759
4350
  msgid "First Name"
4351
  msgstr "Fornavn"
4352
 
4358
  #: includes/profile.php:748
4359
  #: pages/billing.php:168
4360
  #: pages/checkout.php:238
4361
+ #: includes/profile.php:760
4362
  msgid "Last Name"
4363
  msgstr "Efternavn"
4364
 
4489
  #: pages/checkout.php:389
4490
  #: classes/gateways/class.pmprogateway_stripe.php:1297
4491
  #: classes/gateways/class.pmprogateway_stripe.php:1316
4492
+ #: classes/gateways/class.pmprogateway_stripe.php:1322
4493
  msgid "Card Number"
4494
  msgstr "Kortnummer"
4495
 
4521
  #: pages/billing.php:425
4522
  #: classes/gateways/class.pmprogateway_stripe.php:1403
4523
  #: classes/gateways/class.pmprogateway_stripe.php:1422
4524
+ #: classes/gateways/class.pmprogateway_stripe.php:1428
4525
  msgid "Update"
4526
  msgstr "Opdatér"
4527
 
4606
  #: pages/checkout.php:432
4607
  #: classes/gateways/class.pmprogateway_stripe.php:1319
4608
  #: classes/gateways/class.pmprogateway_stripe.php:1338
4609
+ #: classes/gateways/class.pmprogateway_stripe.php:1344
4610
  msgid "Apply"
4611
  msgstr "Anvend"
4612
 
4683
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
4684
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
4685
  #: pages/checkout.php:218
4686
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:498
4687
  msgid "Check Out with PayPal"
4688
  msgstr "Gå til Kassen med PayPal"
4689
 
4695
  #: pages/checkout.php:366
4696
  #: classes/gateways/class.pmprogateway_stripe.php:1263
4697
  #: classes/gateways/class.pmprogateway_stripe.php:1282
4698
+ #: classes/gateways/class.pmprogateway_stripe.php:1288
4699
  msgid "Payment Information"
4700
  msgstr "Betalings-Information"
4701
 
4707
  #: pages/checkout.php:367
4708
  #: classes/gateways/class.pmprogateway_stripe.php:1264
4709
  #: classes/gateways/class.pmprogateway_stripe.php:1283
4710
+ #: classes/gateways/class.pmprogateway_stripe.php:1289
4711
  #, php-format
4712
  msgid "We Accept %s"
4713
  msgstr "Vi accepterer %s"
4734
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
4735
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
4736
  #: pages/checkout.php:526
4737
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
4738
  msgid "Submit and Check Out"
4739
  msgstr "Anvend og Gå til Kassen"
4740
 
4746
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
4747
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
4748
  #: pages/checkout.php:526
4749
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
4750
  msgid "Submit and Confirm"
4751
  msgstr "Anvend og Bekræft"
4752
 
5099
  #: preheaders/checkout.php:822
5100
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
5101
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
5102
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:352
5103
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:411
5104
  msgid "The PayPal Token was lost."
5105
  msgstr "PayPal Token gik tabt."
5106
 
5194
  #: services/authnet-silent-post.php:138
5195
  #: services/authnet-silent-post.php:133
5196
  #: services/authnet-silent-post.php:173
5197
+ #: services/authnet-silent-post.php:176
5198
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
5199
  msgstr "<p>En betaling holdes tilbage for undersøgelse hos Authorize.net.</p><p>Betalings information fra Authorize.net"
5200
 
5229
  #: adminpages/advancedsettings.php:316
5230
  #: includes/privacy.php:175
5231
  #: includes/profile.php:509
5232
+ #: includes/profile.php:515
5233
  msgid "Never"
5234
  msgstr "Aldrig"
5235
 
5437
  #: adminpages/orders.php:1544
5438
  #: adminpages/orders.php:1554
5439
  #: adminpages/orders.php:1553
5440
+ #: includes/profile.php:520
5441
+ #: includes/profile.php:521
5442
+ #: includes/profile.php:522
5443
  msgid "N/A"
5444
  msgstr ""
5445
 
5466
 
5467
  #: adminpages/admin_header.php:152
5468
  #: classes/gateways/class.pmprogateway_stripe.php:76
5469
+ #: classes/gateways/class.pmprogateway_stripe.php:82
5470
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
5471
  msgstr ""
5472
 
5750
  #: adminpages/dashboard.php:174
5751
  #: adminpages/license.php:49
5752
  #: adminpages/dashboard.php:178
5753
+ #: adminpages/license.php:41
5754
  msgid "Your license is invalid or expired."
5755
  msgstr ""
5756
 
5762
  #: adminpages/dashboard.php:177
5763
  #: adminpages/license.php:51
5764
  #: adminpages/dashboard.php:181
5765
+ #: adminpages/license.php:43
5766
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
5767
  msgstr ""
5768
 
6245
  msgstr ""
6246
 
6247
  #: adminpages/license.php:43
6248
+ #: adminpages/license.php:33
6249
  msgid "Paid Memberships Pro Support License"
6250
  msgstr ""
6251
 
6252
  #: adminpages/license.php:47
6253
+ #: adminpages/license.php:39
6254
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
6255
  msgstr ""
6256
 
6257
  #: adminpages/license.php:49
6258
+ #: adminpages/license.php:37
6259
+ #: adminpages/license.php:41
6260
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
6261
  msgstr ""
6262
 
6263
  #: adminpages/license.php:59
6264
+ #: adminpages/license.php:51
6265
  msgid "Enter license key here..."
6266
  msgstr ""
6267
 
6268
  #: adminpages/license.php:61
6269
+ #: adminpages/license.php:53
6270
  msgid "Validate Key"
6271
  msgstr ""
6272
 
6273
  #: adminpages/license.php:95
6274
+ #: adminpages/license.php:87
6275
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
6276
  msgstr ""
6277
 
6922
 
6923
  #: classes/gateways/class.pmprogateway_braintree.php:87
6924
  #: classes/gateways/class.pmprogateway_stripe.php:91
6925
+ #: classes/gateways/class.pmprogateway_stripe.php:97
6926
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
6927
  msgstr ""
6928
 
7242
  msgstr ""
7243
 
7244
  #: classes/gateways/class.pmprogateway_cybersource.php:922
7245
+ #: includes/license.php:159
7246
  msgid "Unknown error."
7247
  msgstr ""
7248
 
7275
  #: classes/gateways/class.pmprogateway_paypal.php:132
7276
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
7277
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
7278
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:151
7279
  msgid "PayPal Settings"
7280
  msgstr ""
7281
 
7282
  #: classes/gateways/class.pmprogateway_paypal.php:146
7283
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
7284
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
7285
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:165
7286
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
7287
  msgstr ""
7288
 
7289
  #: classes/gateways/class.pmprogateway_paypal.php:185
7290
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
7291
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:204
7292
  msgid "Confirmation Step"
7293
  msgstr ""
7294
 
7295
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
7296
  #: paid-memberships-pro.php:160
7297
  #: paid-memberships-pro.php:162
7298
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:94
7299
  msgid "PayPal Express"
7300
  msgstr ""
7301
 
7302
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
7303
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:356
7304
  msgid "Checkout was already processed."
7305
  msgstr ""
7306
 
7307
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
7308
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:791
7309
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
7310
  msgstr ""
7311
 
7312
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
7313
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:792
7314
  msgid "Error creating plan with PayPal."
7315
  msgstr ""
7316
 
7331
  #: classes/gateways/class.pmprogateway_stripe.php:252
7332
  #: paid-memberships-pro.php:159
7333
  #: paid-memberships-pro.php:161
7334
+ #: classes/gateways/class.pmprogateway_stripe.php:258
7335
  msgid "Stripe"
7336
  msgstr ""
7337
 
7339
  #: classes/gateways/class.pmprogateway_stripe.php:436
7340
  #: classes/gateways/class.pmprogateway_stripe.php:354
7341
  #: classes/gateways/class.pmprogateway_stripe.php:444
7342
+ #: classes/gateways/class.pmprogateway_stripe.php:360
7343
+ #: classes/gateways/class.pmprogateway_stripe.php:450
7344
  msgid "Stripe Connect Settings"
7345
  msgstr ""
7346
 
7347
  #: classes/gateways/class.pmprogateway_stripe.php:352
7348
  #: classes/gateways/class.pmprogateway_stripe.php:356
7349
+ #: classes/gateways/class.pmprogateway_stripe.php:362
7350
  msgid "Live Mode:"
7351
  msgstr ""
7352
 
7354
  #: classes/gateways/class.pmprogateway_stripe.php:440
7355
  #: classes/gateways/class.pmprogateway_stripe.php:358
7356
  #: classes/gateways/class.pmprogateway_stripe.php:448
7357
+ #: classes/gateways/class.pmprogateway_stripe.php:364
7358
+ #: classes/gateways/class.pmprogateway_stripe.php:454
7359
  msgid "Connected"
7360
  msgstr ""
7361
 
7363
  #: classes/gateways/class.pmprogateway_stripe.php:442
7364
  #: classes/gateways/class.pmprogateway_stripe.php:362
7365
  #: classes/gateways/class.pmprogateway_stripe.php:452
7366
+ #: classes/gateways/class.pmprogateway_stripe.php:368
7367
+ #: classes/gateways/class.pmprogateway_stripe.php:458
7368
  msgid "Not Connected"
7369
  msgstr ""
7370
 
7372
  #: classes/gateways/class.pmprogateway_stripe.php:449
7373
  #: classes/gateways/class.pmprogateway_stripe.php:369
7374
  #: classes/gateways/class.pmprogateway_stripe.php:459
7375
+ #: classes/gateways/class.pmprogateway_stripe.php:375
7376
+ #: classes/gateways/class.pmprogateway_stripe.php:465
7377
  msgid "Your site is using legacy API keys to authenticate with Stripe."
7378
  msgstr ""
7379
 
7380
  #: classes/gateways/class.pmprogateway_stripe.php:364
7381
  #: classes/gateways/class.pmprogateway_stripe.php:371
7382
+ #: classes/gateways/class.pmprogateway_stripe.php:377
7383
  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."
7384
  msgstr ""
7385
 
7387
  #: classes/gateways/class.pmprogateway_stripe.php:458
7388
  #: classes/gateways/class.pmprogateway_stripe.php:380
7389
  #: classes/gateways/class.pmprogateway_stripe.php:470
7390
+ #: classes/gateways/class.pmprogateway_stripe.php:386
7391
+ #: classes/gateways/class.pmprogateway_stripe.php:476
7392
  msgid "Stripe Connection:"
7393
  msgstr ""
7394
 
7396
  #: classes/gateways/class.pmprogateway_stripe.php:482
7397
  #: classes/gateways/class.pmprogateway_stripe.php:396
7398
  #: classes/gateways/class.pmprogateway_stripe.php:494
7399
+ #: classes/gateways/class.pmprogateway_stripe.php:402
7400
+ #: classes/gateways/class.pmprogateway_stripe.php:500
7401
  msgid "Disconnect From Stripe"
7402
  msgstr ""
7403
 
7404
  #: classes/gateways/class.pmprogateway_stripe.php:389
7405
  #: classes/gateways/class.pmprogateway_stripe.php:397
7406
+ #: classes/gateways/class.pmprogateway_stripe.php:403
7407
  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."
7408
  msgstr ""
7409
 
7411
  #: classes/gateways/class.pmprogateway_stripe.php:496
7412
  #: classes/gateways/class.pmprogateway_stripe.php:409
7413
  #: classes/gateways/class.pmprogateway_stripe.php:508
7414
+ #: classes/gateways/class.pmprogateway_stripe.php:415
7415
+ #: classes/gateways/class.pmprogateway_stripe.php:514
7416
  msgid "Connect with Stripe"
7417
  msgstr ""
7418
 
7419
  #: classes/gateways/class.pmprogateway_stripe.php:408
7420
  #: classes/gateways/class.pmprogateway_stripe.php:416
7421
+ #: classes/gateways/class.pmprogateway_stripe.php:422
7422
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
7423
  msgstr ""
7424
 
7425
  #: classes/gateways/class.pmprogateway_stripe.php:411
7426
  #: classes/gateways/class.pmprogateway_stripe.php:419
7427
+ #: classes/gateways/class.pmprogateway_stripe.php:425
7428
  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."
7429
  msgstr ""
7430
 
7435
  #: classes/gateways/class.pmprogateway_stripe.php:519
7436
  #: classes/gateways/class.pmprogateway_stripe.php:559
7437
  #: classes/gateways/class.pmprogateway_stripe.php:578
7438
+ #: classes/gateways/class.pmprogateway_stripe.php:437
7439
+ #: classes/gateways/class.pmprogateway_stripe.php:525
7440
+ #: classes/gateways/class.pmprogateway_stripe.php:584
7441
  msgid "Webhook"
7442
  msgstr ""
7443
 
7448
  #: classes/gateways/class.pmprogateway_stripe.php:523
7449
  #: classes/gateways/class.pmprogateway_stripe.php:594
7450
  #: classes/gateways/class.pmprogateway_stripe.php:613
7451
+ #: classes/gateways/class.pmprogateway_stripe.php:441
7452
+ #: classes/gateways/class.pmprogateway_stripe.php:529
7453
+ #: classes/gateways/class.pmprogateway_stripe.php:619
7454
  msgid "Webhook URL"
7455
  msgstr ""
7456
 
7457
  #: classes/gateways/class.pmprogateway_stripe.php:438
7458
  #: classes/gateways/class.pmprogateway_stripe.php:446
7459
+ #: classes/gateways/class.pmprogateway_stripe.php:452
7460
  msgid "Test Mode:"
7461
  msgstr ""
7462
 
7463
  #: classes/gateways/class.pmprogateway_stripe.php:450
7464
  #: classes/gateways/class.pmprogateway_stripe.php:461
7465
+ #: classes/gateways/class.pmprogateway_stripe.php:467
7466
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
7467
  msgstr ""
7468
 
7469
  #: classes/gateways/class.pmprogateway_stripe.php:483
7470
  #: classes/gateways/class.pmprogateway_stripe.php:495
7471
+ #: classes/gateways/class.pmprogateway_stripe.php:501
7472
  msgid "This will disconnect your site from Stripe in test mode only."
7473
  msgstr ""
7474
 
7475
  #: classes/gateways/class.pmprogateway_stripe.php:518
7476
  #: classes/gateways/class.pmprogateway_stripe.php:530
7477
+ #: classes/gateways/class.pmprogateway_stripe.php:536
7478
  msgid "Stripe API Settings (Legacy)"
7479
  msgstr ""
7480
 
7481
  #: classes/gateways/class.pmprogateway_stripe.php:531
7482
  #: classes/gateways/class.pmprogateway_stripe.php:543
7483
  #: classes/gateways/class.pmprogateway_stripe.php:562
7484
+ #: classes/gateways/class.pmprogateway_stripe.php:568
7485
  msgid "Your Publishable Key appears incorrect."
7486
  msgstr ""
7487
 
7491
  #: classes/gateways/class.pmprogateway_stripe.php:587
7492
  #: classes/gateways/class.pmprogateway_stripe.php:582
7493
  #: classes/gateways/class.pmprogateway_stripe.php:606
7494
+ #: classes/gateways/class.pmprogateway_stripe.php:588
7495
+ #: classes/gateways/class.pmprogateway_stripe.php:612
7496
  msgid "Create Webhook"
7497
  msgstr ""
7498
 
7499
  #: classes/gateways/class.pmprogateway_stripe.php:557
7500
  #: classes/gateways/class.pmprogateway_stripe.php:569
7501
  #: classes/gateways/class.pmprogateway_stripe.php:588
7502
+ #: classes/gateways/class.pmprogateway_stripe.php:594
7503
  msgid "A webhook is set up in Stripe, but it is disabled."
7504
  msgstr ""
7505
 
7506
  #: classes/gateways/class.pmprogateway_stripe.php:564
7507
  #: classes/gateways/class.pmprogateway_stripe.php:576
7508
  #: classes/gateways/class.pmprogateway_stripe.php:595
7509
+ #: classes/gateways/class.pmprogateway_stripe.php:601
7510
  msgid "A webhook is set up in Stripe, but it is using an old API version."
7511
  msgstr ""
7512
 
7513
  #: classes/gateways/class.pmprogateway_stripe.php:564
7514
  #: classes/gateways/class.pmprogateway_stripe.php:576
7515
  #: classes/gateways/class.pmprogateway_stripe.php:595
7516
+ #: classes/gateways/class.pmprogateway_stripe.php:601
7517
  msgid "Rebuild Webhook"
7518
  msgstr ""
7519
 
7526
  #: classes/gateways/class.pmprogateway_stripe.php:601
7527
  #: classes/gateways/class.pmprogateway_stripe.php:741
7528
  #: classes/gateways/class.pmprogateway_stripe.php:857
7529
+ #: classes/gateways/class.pmprogateway_stripe.php:607
7530
+ #: classes/gateways/class.pmprogateway_stripe.php:747
7531
+ #: classes/gateways/class.pmprogateway_stripe.php:863
7532
  msgid "Your webhook is enabled."
7533
  msgstr ""
7534
 
7535
  #: classes/gateways/class.pmprogateway_stripe.php:570
7536
  #: classes/gateways/class.pmprogateway_stripe.php:582
7537
  #: classes/gateways/class.pmprogateway_stripe.php:601
7538
+ #: classes/gateways/class.pmprogateway_stripe.php:607
7539
  msgid "Disable Webhook"
7540
  msgstr ""
7541
 
7551
  #: classes/gateways/class.pmprogateway_stripe.php:768
7552
  #: classes/gateways/class.pmprogateway_stripe.php:785
7553
  #: classes/gateways/class.pmprogateway_stripe.php:819
7554
+ #: classes/gateways/class.pmprogateway_stripe.php:614
7555
+ #: classes/gateways/class.pmprogateway_stripe.php:774
7556
+ #: classes/gateways/class.pmprogateway_stripe.php:791
7557
+ #: classes/gateways/class.pmprogateway_stripe.php:825
7558
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
7559
  msgstr ""
7560
 
7561
  #: classes/gateways/class.pmprogateway_stripe.php:589
7562
  #: classes/gateways/class.pmprogateway_stripe.php:601
7563
  #: classes/gateways/class.pmprogateway_stripe.php:620
7564
+ #: classes/gateways/class.pmprogateway_stripe.php:626
7565
  msgid "Other Stripe Settings"
7566
  msgstr ""
7567
 
7568
  #: classes/gateways/class.pmprogateway_stripe.php:593
7569
  #: classes/gateways/class.pmprogateway_stripe.php:605
7570
  #: classes/gateways/class.pmprogateway_stripe.php:624
7571
+ #: classes/gateways/class.pmprogateway_stripe.php:630
7572
  msgid "Stripe API Version"
7573
  msgstr ""
7574
 
7575
  #: classes/gateways/class.pmprogateway_stripe.php:612
7576
  #: classes/gateways/class.pmprogateway_stripe.php:624
7577
  #: classes/gateways/class.pmprogateway_stripe.php:643
7578
+ #: classes/gateways/class.pmprogateway_stripe.php:649
7579
  msgid "Enable Payment Request Button"
7580
  msgstr ""
7581
 
7582
  #: classes/gateways/class.pmprogateway_stripe.php:630
7583
  #: classes/gateways/class.pmprogateway_stripe.php:642
7584
  #: classes/gateways/class.pmprogateway_stripe.php:661
7585
+ #: classes/gateways/class.pmprogateway_stripe.php:667
7586
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
7587
  msgstr ""
7588
 
7589
  #: classes/gateways/class.pmprogateway_stripe.php:643
7590
  #: classes/gateways/class.pmprogateway_stripe.php:655
7591
  #: classes/gateways/class.pmprogateway_stripe.php:674
7592
+ #: classes/gateways/class.pmprogateway_stripe.php:680
7593
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
7594
  msgstr ""
7595
 
7596
  #: classes/gateways/class.pmprogateway_stripe.php:645
7597
  #: classes/gateways/class.pmprogateway_stripe.php:657
7598
  #: classes/gateways/class.pmprogateway_stripe.php:676
7599
+ #: classes/gateways/class.pmprogateway_stripe.php:682
7600
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
7601
  msgstr ""
7602
 
7603
  #: classes/gateways/class.pmprogateway_stripe.php:647
7604
  #: classes/gateways/class.pmprogateway_stripe.php:659
7605
  #: classes/gateways/class.pmprogateway_stripe.php:678
7606
+ #: classes/gateways/class.pmprogateway_stripe.php:684
7607
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
7608
  msgstr ""
7609
 
7610
  #: classes/gateways/class.pmprogateway_stripe.php:649
7611
  #: classes/gateways/class.pmprogateway_stripe.php:661
7612
  #: classes/gateways/class.pmprogateway_stripe.php:680
7613
+ #: classes/gateways/class.pmprogateway_stripe.php:686
7614
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
7615
  msgstr ""
7616
 
7617
  #: classes/gateways/class.pmprogateway_stripe.php:674
7618
  #: classes/gateways/class.pmprogateway_stripe.php:686
7619
  #: classes/gateways/class.pmprogateway_stripe.php:705
7620
+ #: classes/gateways/class.pmprogateway_stripe.php:711
7621
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
7622
  msgstr ""
7623
 
7624
  #: classes/gateways/class.pmprogateway_stripe.php:695
7625
  #: classes/gateways/class.pmprogateway_stripe.php:707
7626
  #: classes/gateways/class.pmprogateway_stripe.php:726
7627
+ #: classes/gateways/class.pmprogateway_stripe.php:732
7628
  msgid "Webhook creation failed. You might already have a webhook set up."
7629
  msgstr ""
7630
 
7634
  #: classes/gateways/class.pmprogateway_stripe.php:847
7635
  #: classes/gateways/class.pmprogateway_stripe.php:792
7636
  #: classes/gateways/class.pmprogateway_stripe.php:866
7637
+ #: classes/gateways/class.pmprogateway_stripe.php:798
7638
+ #: classes/gateways/class.pmprogateway_stripe.php:872
7639
  msgid "There was an error deleting the webhook."
7640
  msgstr ""
7641
 
7642
  #: classes/gateways/class.pmprogateway_stripe.php:811
7643
  #: classes/gateways/class.pmprogateway_stripe.php:823
7644
  #: classes/gateways/class.pmprogateway_stripe.php:842
7645
+ #: classes/gateways/class.pmprogateway_stripe.php:848
7646
  msgid "Webhook creation failed. Please refresh and try again."
7647
  msgstr ""
7648
 
7649
  #: classes/gateways/class.pmprogateway_stripe.php:867
7650
  #: classes/gateways/class.pmprogateway_stripe.php:879
7651
  #: classes/gateways/class.pmprogateway_stripe.php:898
7652
+ #: classes/gateways/class.pmprogateway_stripe.php:904
7653
  msgid "Verification steps confirmed. Your payment is processing."
7654
  msgstr ""
7655
 
7656
  #: classes/gateways/class.pmprogateway_stripe.php:1262
7657
  #: classes/gateways/class.pmprogateway_stripe.php:1274
7658
  #: classes/gateways/class.pmprogateway_stripe.php:1293
7659
+ #: classes/gateways/class.pmprogateway_stripe.php:1299
7660
  msgid "Pay with Credit Card"
7661
  msgstr ""
7662
 
7663
  #: classes/gateways/class.pmprogateway_stripe.php:1296
7664
  #: classes/gateways/class.pmprogateway_stripe.php:1308
7665
  #: classes/gateways/class.pmprogateway_stripe.php:1327
7666
+ #: classes/gateways/class.pmprogateway_stripe.php:1333
7667
  msgid "CVC"
7668
  msgstr ""
7669
 
7670
  #: classes/gateways/class.pmprogateway_stripe.php:1374
7671
  #: classes/gateways/class.pmprogateway_stripe.php:1386
7672
  #: classes/gateways/class.pmprogateway_stripe.php:1405
7673
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
7674
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
7675
  msgstr ""
7676
 
7677
  #: classes/gateways/class.pmprogateway_stripe.php:1379
7678
  #: classes/gateways/class.pmprogateway_stripe.php:1391
7679
  #: classes/gateways/class.pmprogateway_stripe.php:1410
7680
+ #: classes/gateways/class.pmprogateway_stripe.php:1416
7681
  msgid "Subscription Updates"
7682
  msgstr ""
7683
 
7684
  #: classes/gateways/class.pmprogateway_stripe.php:1383
7685
  #: classes/gateways/class.pmprogateway_stripe.php:1395
7686
  #: classes/gateways/class.pmprogateway_stripe.php:1414
7687
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
7688
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
7689
  msgstr ""
7690
 
7691
  #: classes/gateways/class.pmprogateway_stripe.php:1385
7692
  #: classes/gateways/class.pmprogateway_stripe.php:1397
7693
  #: classes/gateways/class.pmprogateway_stripe.php:1416
7694
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
7695
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
7696
  msgstr ""
7697
 
7707
  #: classes/gateways/class.pmprogateway_stripe.php:2016
7708
  #: classes/gateways/class.pmprogateway_stripe.php:2029
7709
  #: classes/gateways/class.pmprogateway_stripe.php:2033
7710
+ #: classes/gateways/class.pmprogateway_stripe.php:2018
7711
+ #: classes/gateways/class.pmprogateway_stripe.php:2022
7712
+ #: classes/gateways/class.pmprogateway_stripe.php:2035
7713
+ #: classes/gateways/class.pmprogateway_stripe.php:2039
7714
  msgid "Error: %s"
7715
  msgstr ""
7716
 
7720
  #: classes/gateways/class.pmprogateway_stripe.php:2182
7721
  #: classes/gateways/class.pmprogateway_stripe.php:2196
7722
  #: classes/gateways/class.pmprogateway_stripe.php:2201
7723
+ #: classes/gateways/class.pmprogateway_stripe.php:2202
7724
+ #: classes/gateways/class.pmprogateway_stripe.php:2207
7725
  msgid "Error getting subscription with Stripe:"
7726
  msgstr ""
7727
 
7728
  #: classes/gateways/class.pmprogateway_stripe.php:2480
7729
  #: classes/gateways/class.pmprogateway_stripe.php:2492
7730
  #: classes/gateways/class.pmprogateway_stripe.php:2514
7731
+ #: classes/gateways/class.pmprogateway_stripe.php:2520
7732
  msgid "Could not cancel the old subscription. Updates have not been processed."
7733
  msgstr ""
7734
 
7735
  #: classes/gateways/class.pmprogateway_stripe.php:2648
7736
  #: classes/gateways/class.pmprogateway_stripe.php:2660
7737
  #: classes/gateways/class.pmprogateway_stripe.php:2682
7738
+ #: classes/gateways/class.pmprogateway_stripe.php:2688
7739
  msgid "Could not find the customer."
7740
  msgstr ""
7741
 
7745
  #: classes/gateways/class.pmprogateway_stripe.php:2834
7746
  #: classes/gateways/class.pmprogateway_stripe.php:2850
7747
  #: classes/gateways/class.pmprogateway_stripe.php:2856
7748
+ #: classes/gateways/class.pmprogateway_stripe.php:2862
7749
  msgid "Error: "
7750
  msgstr ""
7751
 
7752
  #: classes/gateways/class.pmprogateway_stripe.php:2836
7753
  #: classes/gateways/class.pmprogateway_stripe.php:2848
7754
  #: classes/gateways/class.pmprogateway_stripe.php:2870
7755
+ #: classes/gateways/class.pmprogateway_stripe.php:2876
7756
  msgid "Error: Unkown error while refunding charge #%s"
7757
  msgstr ""
7758
 
7759
  #: classes/gateways/class.pmprogateway_stripe.php:3330
7760
  #: classes/gateways/class.pmprogateway_stripe.php:3342
7761
  #: classes/gateways/class.pmprogateway_stripe.php:3364
7762
+ #: classes/gateways/class.pmprogateway_stripe.php:3370
7763
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
7764
  msgstr ""
7765
 
7766
  #: classes/gateways/class.pmprogateway_stripe.php:3347
7767
  #: classes/gateways/class.pmprogateway_stripe.php:3359
7768
  #: classes/gateways/class.pmprogateway_stripe.php:3381
7769
+ #: classes/gateways/class.pmprogateway_stripe.php:3387
7770
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
7771
  msgstr ""
7772
 
7773
  #: classes/gateways/class.pmprogateway_stripe.php:3533
7774
  #: classes/gateways/class.pmprogateway_stripe.php:3545
7775
  #: classes/gateways/class.pmprogateway_stripe.php:3567
7776
+ #: classes/gateways/class.pmprogateway_stripe.php:3573
7777
  msgid "Invalid response from the Stripe Connect server."
7778
  msgstr ""
7779
 
7781
  #: classes/gateways/class.pmprogateway_stripe.php:3561
7782
  #: classes/gateways/class.pmprogateway_stripe.php:3573
7783
  #: classes/gateways/class.pmprogateway_stripe.php:3595
7784
+ #: classes/gateways/class.pmprogateway_stripe.php:3601
7785
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
7786
  msgstr ""
7787
 
7789
  #: classes/gateways/class.pmprogateway_stripe.php:3597
7790
  #: classes/gateways/class.pmprogateway_stripe.php:3609
7791
  #: classes/gateways/class.pmprogateway_stripe.php:3631
7792
+ #: classes/gateways/class.pmprogateway_stripe.php:3637
7793
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
7794
  msgstr ""
7795
 
7796
  #: classes/gateways/class.pmprogateway_stripe.php:3768
7797
  #: classes/gateways/class.pmprogateway_stripe.php:3780
7798
  #: classes/gateways/class.pmprogateway_stripe.php:3802
7799
+ #: classes/gateways/class.pmprogateway_stripe.php:3808
7800
  msgid "Last webhook received at"
7801
  msgstr ""
7802
 
7803
  #: classes/gateways/class.pmprogateway_stripe.php:3770
7804
  #: classes/gateways/class.pmprogateway_stripe.php:3782
7805
  #: classes/gateways/class.pmprogateway_stripe.php:3804
7806
+ #: classes/gateways/class.pmprogateway_stripe.php:3810
7807
  msgid "No webhooks have been received."
7808
  msgstr ""
7809
 
7810
  #: classes/gateways/class.pmprogateway_stripe.php:3774
7811
  #: classes/gateways/class.pmprogateway_stripe.php:3786
7812
  #: classes/gateways/class.pmprogateway_stripe.php:3808
7813
+ #: classes/gateways/class.pmprogateway_stripe.php:3814
7814
  msgid "Your webhook may not be working correctly."
7815
  msgstr ""
7816
 
7817
  #: classes/gateways/class.pmprogateway_stripe.php:3776
7818
  #: classes/gateways/class.pmprogateway_stripe.php:3788
7819
  #: classes/gateways/class.pmprogateway_stripe.php:3810
7820
+ #: classes/gateways/class.pmprogateway_stripe.php:3816
7821
  msgid "Click here for info on setting up your webhook with Stripe."
7822
  msgstr ""
7823
 
10015
 
10016
  #: includes/login.php:429
10017
  #: includes/profile.php:843
10018
+ #: includes/profile.php:855
10019
  msgid "New passwords do not match."
10020
  msgstr ""
10021
 
10022
  #: includes/login.php:433
10023
  #: includes/profile.php:839
10024
+ #: includes/profile.php:851
10025
  msgid "Please complete all fields."
10026
  msgstr ""
10027
 
10051
 
10052
  #: includes/login.php:688
10053
  #: includes/profile.php:891
10054
+ #: includes/profile.php:903
10055
  msgid "New Password"
10056
  msgstr ""
10057
 
10058
  #: includes/login.php:690
10059
  #: includes/profile.php:894
10060
  #: includes/scripts.php:86
10061
+ #: includes/profile.php:906
10062
+ #: includes/scripts.php:85
10063
  msgid "Strength Indicator"
10064
  msgstr ""
10065
 
10066
  #: includes/login.php:694
10067
  #: includes/profile.php:898
10068
+ #: includes/profile.php:910
10069
  msgid "Confirm New Password"
10070
  msgstr ""
10071
 
10166
  #: includes/privacy.php:182
10167
  #: includes/profile.php:425
10168
  #: includes/profile.php:493
10169
+ #: includes/profile.php:499
10170
  msgid "Level ID"
10171
  msgstr ""
10172
 
10173
  #: includes/privacy.php:190
10174
  #: includes/profile.php:496
10175
+ #: includes/profile.php:502
10176
  msgid "Date Modified"
10177
  msgstr ""
10178
 
10179
  #: includes/privacy.php:194
10180
  #: includes/profile.php:497
10181
+ #: includes/profile.php:503
10182
  msgid "End Date"
10183
  msgstr ""
10184
 
10185
  #: includes/privacy.php:198
10186
  #: includes/profile.php:498
10187
+ #: includes/profile.php:504
10188
  msgid "Level Cost"
10189
  msgstr ""
10190
 
10293
  msgstr ""
10294
 
10295
  #: includes/profile.php:485
10296
+ #: includes/profile.php:488
10297
  msgid "No membership orders found."
10298
  msgstr ""
10299
 
10300
  #: includes/profile.php:537
10301
+ #: includes/profile.php:546
10302
  msgid "No membership history found."
10303
  msgstr ""
10304
 
10305
  #: includes/profile.php:644
10306
+ #: includes/profile.php:656
10307
  msgid "Log in to edit your profile."
10308
  msgstr ""
10309
 
10310
  #: includes/profile.php:679
10311
+ #: includes/profile.php:691
10312
  msgid "Please enter a display name."
10313
  msgstr ""
10314
 
10315
  #: includes/profile.php:689
10316
+ #: includes/profile.php:701
10317
  msgid "Please enter an email address."
10318
  msgstr ""
10319
 
10320
  #: includes/profile.php:691
10321
+ #: includes/profile.php:703
10322
  msgid "The email address isn&#8217;t correct."
10323
  msgstr ""
10324
 
10325
  #: includes/profile.php:695
10326
+ #: includes/profile.php:707
10327
  msgid "This email is already registered, please choose another one."
10328
  msgstr ""
10329
 
10330
  #: includes/profile.php:722
10331
+ #: includes/profile.php:734
10332
  msgid "Your profile has been updated."
10333
  msgstr ""
10334
 
10335
  #: includes/profile.php:749
10336
+ #: includes/profile.php:761
10337
  msgid "Display name publicly as"
10338
  msgstr ""
10339
 
10340
  #: includes/profile.php:762
10341
+ #: includes/profile.php:774
10342
  msgid "Site administrators must use the WordPress dashboard to update their email address."
10343
  msgstr ""
10344
 
10345
  #: includes/profile.php:785
10346
+ #: includes/profile.php:797
10347
  msgid "Update Profile"
10348
  msgstr ""
10349
 
10350
  #: includes/profile.php:841
10351
+ #: includes/profile.php:853
10352
  msgid "Please enter your current password."
10353
  msgstr ""
10354
 
10355
  #: includes/profile.php:845
10356
+ #: includes/profile.php:857
10357
  msgid "Your current password is incorrect."
10358
  msgstr ""
10359
 
10360
  #: includes/profile.php:856
10361
+ #: includes/profile.php:868
10362
  msgid "Your password has been updated."
10363
  msgstr ""
10364
 
10365
  #: includes/profile.php:886
10366
+ #: includes/profile.php:898
10367
  msgid "Current Password"
10368
  msgstr ""
10369
 
10370
  #: includes/profile.php:888
10371
  #: includes/profile.php:893
10372
  #: includes/profile.php:900
10373
+ #: includes/profile.php:905
10374
+ #: includes/profile.php:912
10375
  msgid "Required Field"
10376
  msgstr ""
10377
 
10517
  msgstr ""
10518
 
10519
  #: services/braintree-webhook.php:425
10520
+ #: services/braintree-webhook.php:426
10521
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
10522
  msgstr ""
10523
 
10524
  #: services/braintree-webhook.php:427
10525
+ #: services/braintree-webhook.php:428
10526
  msgid "A member's Braintree subscription has expired at %s"
10527
  msgstr ""
10528
 
10857
 
10858
  #: classes/gateways/class.pmprogateway_stripe.php:360
10859
  #: classes/gateways/class.pmprogateway_stripe.php:450
10860
+ #: classes/gateways/class.pmprogateway_stripe.php:366
10861
+ #: classes/gateways/class.pmprogateway_stripe.php:456
10862
  msgid "Connected with Legacy Keys"
10863
  msgstr ""
10864
 
10865
  #: classes/gateways/class.pmprogateway_stripe.php:370
10866
  #: classes/gateways/class.pmprogateway_stripe.php:460
10867
+ #: classes/gateways/class.pmprogateway_stripe.php:376
10868
+ #: classes/gateways/class.pmprogateway_stripe.php:466
10869
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
10870
  msgstr ""
10871
 
10872
  #: classes/gateways/class.pmprogateway_stripe.php:372
10873
  #: classes/gateways/class.pmprogateway_stripe.php:462
10874
+ #: classes/gateways/class.pmprogateway_stripe.php:378
10875
+ #: classes/gateways/class.pmprogateway_stripe.php:468
10876
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
10877
  msgstr ""
10878
 
10929
  msgstr ""
10930
 
10931
  #: classes/gateways/class.pmprogateway_stripe.php:533
10932
+ #: classes/gateways/class.pmprogateway_stripe.php:539
10933
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
10934
  msgstr ""
10935
 
10936
  #: classes/gateways/class.pmprogateway_stripe.php:534
10937
+ #: classes/gateways/class.pmprogateway_stripe.php:540
10938
  msgid "Click here to use the legacy API settings."
10939
  msgstr ""
10940
 
10941
  #: paid-memberships-pro.php:194
10942
  msgid "Once a month"
10943
  msgstr ""
10944
+
10945
+ #: adminpages/license.php:37
10946
+ msgid "There was an issue validating your license key: %s"
10947
+ msgstr ""
10948
+
10949
+ #: includes/email-templates.php:172
10950
+ msgid ""
10951
+ "<p>There was a new member checkout at !!sitename!!.</p>\n"
10952
+ "\n"
10953
+ "<p><strong>They have chosen to pay by check.</strong></p>\n"
10954
+ "\n"
10955
+ "<p>Below are details about the new membership account and a receipt for the initial membership invoice.</p>\n"
10956
+ "\n"
10957
+ "<p>Account: !!display_name!! (!!user_email!!)</p>\n"
10958
+ "<p>Membership Level: !!membership_level_name!!</p>\n"
10959
+ "<p>Membership Fee: !!membership_cost!!</p>\n"
10960
+ "!!membership_expiration!! !!discount_code!!\n"
10961
+ "\n"
10962
+ "<p>\n"
10963
+ "\tInvoice #!!invoice_id!! on !!invoice_date!!<br />\n"
10964
+ "\tTotal Billed: !!invoice_total!!\n"
10965
+ "</p>\n"
10966
+ "\n"
10967
+ "<p>Log in to your membership account here: !!login_url!!</p>"
10968
+ msgstr ""
10969
+
10970
+ #: includes/license.php:112
10971
+ msgid "Missing key."
10972
+ msgstr ""
10973
+
10974
+ #: shortcodes/pmpro_account.php:145
10975
+ msgctxt "A dash is shown when there is no expiration date."
10976
+ msgid "&#8212;"
10977
+ msgstr ""
languages/paid-memberships-pro-de_DE.mo CHANGED
Binary file
languages/paid-memberships-pro-de_DE.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.2\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-09-17T13:57:01+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -309,6 +309,9 @@ msgstr "WordPress.org"
309
  #: adminpages/orders.php:1544
310
  #: adminpages/orders.php:1554
311
  #: adminpages/orders.php:1553
 
 
 
312
  msgid "N/A"
313
  msgstr "Nicht verfügbar"
314
 
@@ -432,6 +435,7 @@ msgstr "Die Zahlungs-Einstellungen für dieses Paket werden von 2Checkout nicht
432
  #: adminpages/admin_header.php:125
433
  #: adminpages/admin_header.php:152
434
  #: classes/gateways/class.pmprogateway_stripe.php:76
 
435
  #, php-format
436
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
437
  msgstr ""
@@ -554,6 +558,7 @@ msgstr "Zahlungsdienstleister &amp; SSL"
554
  #: adminpages/orders.php:391
555
  #: adminpages/orders.php:1445
556
  #: adminpages/orders.php:1448
 
557
  msgid "Email"
558
  msgstr "Email"
559
 
@@ -822,6 +827,8 @@ msgstr "Werbung vor Mitgliedern verstecken?"
822
  #: adminpages/advancedsettings.php:479
823
  #: classes/gateways/class.pmprogateway_stripe.php:634
824
  #: classes/gateways/class.pmprogateway_stripe.php:648
 
 
825
  msgid "No"
826
  msgstr "Nein"
827
 
@@ -954,6 +961,8 @@ msgstr "nur multisite"
954
  #: adminpages/advancedsettings.php:397
955
  #: classes/gateways/class.pmprogateway_stripe.php:636
956
  #: classes/gateways/class.pmprogateway_stripe.php:650
 
 
957
  msgid "Yes"
958
  msgstr "Ja"
959
 
@@ -1349,6 +1358,7 @@ msgstr "Code"
1349
  #: adminpages/reports/history.php:34
1350
  #: includes/profile.php:495
1351
  #: adminpages/discountcodes.php:489
 
1352
  msgid "Start Date"
1353
  msgstr "Start Datum"
1354
 
@@ -1414,6 +1424,7 @@ msgstr "Start Datum"
1414
  #: classes/gateways/class.pmprogateway_stripe.php:1301
1415
  #: adminpages/discountcodes.php:507
1416
  #: classes/gateways/class.pmprogateway_stripe.php:1320
 
1417
  msgid "Expiration Date"
1418
  msgstr "Ablaufdatum"
1419
 
@@ -1622,6 +1633,7 @@ msgstr "Gesamtbetrag"
1622
  #: adminpages/discountcodes.php:612
1623
  #: adminpages/discountcodes.php:699
1624
  #: classes/gateways/class.pmprogateway_stripe.php:1363
 
1625
  msgid "Day(s)"
1626
  msgstr "Tag(e)"
1627
 
@@ -1678,6 +1690,7 @@ msgstr "Tag(e)"
1678
  #: adminpages/discountcodes.php:612
1679
  #: adminpages/discountcodes.php:699
1680
  #: classes/gateways/class.pmprogateway_stripe.php:1365
 
1681
  msgid "Month(s)"
1682
  msgstr "Monat(e)"
1683
 
@@ -1734,6 +1747,7 @@ msgstr "Monat(e)"
1734
  #: adminpages/discountcodes.php:612
1735
  #: adminpages/discountcodes.php:699
1736
  #: classes/gateways/class.pmprogateway_stripe.php:1364
 
1737
  msgid "Week(s)"
1738
  msgstr "Woche(n)"
1739
 
@@ -1790,6 +1804,7 @@ msgstr "Woche(n)"
1790
  #: adminpages/discountcodes.php:612
1791
  #: adminpages/discountcodes.php:699
1792
  #: classes/gateways/class.pmprogateway_stripe.php:1366
 
1793
  msgid "Year(s)"
1794
  msgstr "Jahr(e)"
1795
 
@@ -2604,6 +2619,7 @@ msgstr "Zahlungs-Einstellungen"
2604
  #: classes/gateways/class.pmprogateway_stripe.php:1478
2605
  #: adminpages/discountcodes.php:608
2606
  #: classes/gateways/class.pmprogateway_stripe.php:1497
 
2607
  msgid "per"
2608
  msgstr "pro"
2609
 
@@ -2870,6 +2886,8 @@ msgstr "Paket speichern"
2870
  #: pages/cancel.php:96
2871
  #: shortcodes/pmpro_account.php:106
2872
  #: adminpages/orders.php:968
 
 
2873
  msgid "Cancel"
2874
  msgstr "Stornieren"
2875
 
@@ -3795,6 +3813,7 @@ msgstr "z.B. PayPal Express, PayPal Standard, Kreditkarte."
3795
  #: adminpages/orders.php:679
3796
  #: classes/gateways/class.pmprogateway_stripe.php:1284
3797
  #: classes/gateways/class.pmprogateway_stripe.php:1303
 
3798
  msgid "Card Type"
3799
  msgstr "Kreditkarte"
3800
 
@@ -3903,6 +3922,7 @@ msgstr "Ablaufdatum Jahr"
3903
  #: adminpages/dashboard.php:294
3904
  #: adminpages/orders.php:742
3905
  #: adminpages/orders.php:1348
 
3906
  msgid "Status"
3907
  msgstr "Status"
3908
 
@@ -5824,6 +5844,7 @@ msgstr "Bestätigung Ihrer Anmeldung bei %s"
5824
  #: classes/class.pmproemail.php:769
5825
  #: classes/class.pmproemail.php:771
5826
  #: classes/gateways/class.pmprogateway_stripe.php:1333
 
5827
  msgid "Discount Code"
5828
  msgstr "Gutscheincode"
5829
 
@@ -6341,6 +6362,7 @@ msgstr "Versuche, das Braintree-Gateway zu laden: %s"
6341
  #: classes/gateways/class.pmprogateway_stripe.php:58
6342
  #: classes/gateways/class.pmprogateway_braintree.php:87
6343
  #: classes/gateways/class.pmprogateway_stripe.php:91
 
6344
  #, php-format
6345
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
6346
  msgstr "Das %s Gateway benötigt die %s PHP-Erweiterung. Bitte aktivieren Sie sie oder bitten Sie Ihren Hostinganbieter es zu aktivieren."
@@ -6538,6 +6560,7 @@ msgstr "Um Braintree vollständig zu integrieren, stellen Sie Ihre Web Hook URL
6538
  #: pages/checkout.php:366
6539
  #: classes/gateways/class.pmprogateway_stripe.php:1263
6540
  #: classes/gateways/class.pmprogateway_stripe.php:1282
 
6541
  msgid "Payment Information"
6542
  msgstr "Zahlungsinformationen"
6543
 
@@ -6583,6 +6606,7 @@ msgstr "Zahlungsinformationen"
6583
  #: pages/checkout.php:367
6584
  #: classes/gateways/class.pmprogateway_stripe.php:1264
6585
  #: classes/gateways/class.pmprogateway_stripe.php:1283
 
6586
  #, php-format
6587
  msgid "We Accept %s"
6588
  msgstr "Wir aktzeptieren %s"
@@ -6641,6 +6665,7 @@ msgstr "Wir aktzeptieren %s"
6641
  #: pages/checkout.php:389
6642
  #: classes/gateways/class.pmprogateway_stripe.php:1297
6643
  #: classes/gateways/class.pmprogateway_stripe.php:1316
 
6644
  msgid "Card Number"
6645
  msgstr "Kartennummer"
6646
 
@@ -6801,6 +6826,7 @@ msgstr "Was ist das?"
6801
  #: pages/checkout.php:432
6802
  #: classes/gateways/class.pmprogateway_stripe.php:1319
6803
  #: classes/gateways/class.pmprogateway_stripe.php:1338
 
6804
  msgid "Apply"
6805
  msgstr "übernehmen"
6806
 
@@ -7193,6 +7219,7 @@ msgstr "PayPal Website Payments Pro"
7193
  #: classes/gateways/class.pmprogateway_paypal.php:132
7194
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
7195
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
 
7196
  msgid "PayPal Settings"
7197
  msgstr "PayPal Einstellungen"
7198
 
@@ -7220,6 +7247,7 @@ msgstr "Wir empfehlen nicht die Verwendung von PayPal Standard. Wir empfehlen Pa
7220
  #: classes/gateways/class.pmprogateway_paypal.php:153
7221
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
7222
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
 
7223
  msgid "Gateway Account Email"
7224
  msgstr "Zahlungsdienstleister Account Email"
7225
 
@@ -7242,6 +7270,7 @@ msgstr "Zahlungsdienstleister Account Email"
7242
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
7243
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
7244
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
 
7245
  msgid "API Username"
7246
  msgstr "API Username"
7247
 
@@ -7264,6 +7293,7 @@ msgstr "API Username"
7264
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
7265
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
7266
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
 
7267
  msgid "API Password"
7268
  msgstr "API Password"
7269
 
@@ -7280,6 +7310,7 @@ msgstr "API Password"
7280
  #: classes/gateways/class.pmprogateway_paypal.php:177
7281
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
7282
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
 
7283
  msgid "API Signature"
7284
  msgstr "API Signature"
7285
 
@@ -7287,6 +7318,7 @@ msgstr "API Signature"
7287
  #: classes/gateways/class.pmprogateway_paypalexpress.php:182
7288
  #: classes/gateways/class.pmprogateway_paypal.php:185
7289
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
 
7290
  msgid "Confirmation Step"
7291
  msgstr "Bestätigungsschritt"
7292
 
@@ -7304,6 +7336,7 @@ msgstr "Bestätigungsschritt"
7304
  #: classes/gateways/class.pmprogateway_paypal.php:196
7305
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
7306
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
 
7307
  msgid "IPN Handler URL"
7308
  msgstr "IPN Handler URL"
7309
 
@@ -7337,6 +7370,7 @@ msgstr "Diese URL wird an PayPal für alle neuen Zahlungen und Anmeldungen weite
7337
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
7338
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
7339
  #: pages/checkout.php:218
 
7340
  msgid "Check Out with PayPal"
7341
  msgstr "Zahlung mit PayPal abschließen"
7342
 
@@ -7366,6 +7400,7 @@ msgstr "Zahlung mit PayPal abschließen"
7366
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
7367
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
7368
  #: pages/checkout.php:526
 
7369
  msgid "Submit and Check Out"
7370
  msgstr "Zahlung bestätigen"
7371
 
@@ -7399,6 +7434,7 @@ msgstr "Zahlung bestätigen"
7399
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
7400
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
7401
  #: pages/checkout.php:526
 
7402
  msgid "Submit and Confirm"
7403
  msgstr "Senden und Bestätigen"
7404
 
@@ -7426,6 +7462,7 @@ msgstr "Senden und Bestätigen"
7426
  #: classes/gateways/class.pmprogateway_paypal.php:716
7427
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
7428
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
 
7429
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
7430
  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."
7431
 
@@ -7444,6 +7481,7 @@ msgstr "Bitte kontaktieren Sie den Betreiber der Seite, wenn Sie Ihr Abonemment
7444
  #: paid-memberships-pro.php:138
7445
  #: paid-memberships-pro.php:160
7446
  #: paid-memberships-pro.php:162
 
7447
  msgid "PayPal Express"
7448
  msgstr "PayPal Express"
7449
 
@@ -7456,6 +7494,7 @@ msgstr "PayPal Express"
7456
  #: classes/gateways/class.pmprogateway_paypalexpress.php:173
7457
  #: classes/gateways/class.pmprogateway_paypal.php:199
7458
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
 
7459
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
7460
  msgstr "2Checkout INS URL"
7461
 
@@ -7481,6 +7520,8 @@ msgstr "2Checkout INS URL"
7481
  #: preheaders/checkout.php:823
7482
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
7483
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
 
 
7484
  msgid "The PayPal Token was lost."
7485
  msgstr "Der PayPal Token ging verloren."
7486
 
@@ -7535,6 +7576,7 @@ msgstr "User verlangte Kündigung"
7535
  #: classes/gateways/class.pmprogateway_stripe.php:252
7536
  #: paid-memberships-pro.php:159
7537
  #: paid-memberships-pro.php:161
 
7538
  msgid "Stripe"
7539
  msgstr "Stripe"
7540
 
@@ -7568,6 +7610,7 @@ msgstr "Stripe Einstellungen"
7568
  #: classes/gateways/class.pmprogateway_stripe.php:523
7569
  #: classes/gateways/class.pmprogateway_stripe.php:535
7570
  #: classes/gateways/class.pmprogateway_stripe.php:554
 
7571
  msgid "Publishable Key"
7572
  msgstr "Publishable Key"
7573
 
@@ -7575,6 +7618,7 @@ msgstr "Publishable Key"
7575
  #: classes/gateways/class.pmprogateway_stripe.php:531
7576
  #: classes/gateways/class.pmprogateway_stripe.php:543
7577
  #: classes/gateways/class.pmprogateway_stripe.php:562
 
7578
  msgid "Your Publishable Key appears incorrect."
7579
  msgstr ""
7580
 
@@ -7595,6 +7639,7 @@ msgstr ""
7595
  #: classes/gateways/class.pmprogateway_stripe.php:539
7596
  #: classes/gateways/class.pmprogateway_stripe.php:551
7597
  #: classes/gateways/class.pmprogateway_stripe.php:570
 
7598
  msgid "Secret Key"
7599
  msgstr "Secret Key"
7600
 
@@ -7617,6 +7662,7 @@ msgstr "Secret Key"
7617
  #: classes/gateways/class.pmprogateway_stripe.php:598
7618
  #: classes/gateways/class.pmprogateway_stripe.php:610
7619
  #: classes/gateways/class.pmprogateway_stripe.php:629
 
7620
  msgid "Show Billing Address Fields"
7621
  msgstr "Felder für Rechnungsadresse anzeigen"
7622
 
@@ -7638,6 +7684,7 @@ msgstr "Felder für Rechnungsadresse anzeigen"
7638
  #: classes/gateways/class.pmprogateway_stripe.php:607
7639
  #: classes/gateways/class.pmprogateway_stripe.php:619
7640
  #: classes/gateways/class.pmprogateway_stripe.php:638
 
7641
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
7642
  msgstr "Stripe erfordert keine Adressangaben. Wählen Sie 'Nein' um die entsprechenden Felder auf den Checkout-Seiten zu verbergen.<br /><strong>Wenn Sie Nein auswählen, stellen Sie sicher, dass Sie die Adresen-Verifizierung in den Stripe Dashboard Settings deaktivieren.</strong>"
7643
 
@@ -7678,6 +7725,7 @@ msgstr ""
7678
  #: classes/gateways/class.pmprogateway_stripe.php:1374
7679
  #: classes/gateways/class.pmprogateway_stripe.php:1386
7680
  #: classes/gateways/class.pmprogateway_stripe.php:1405
 
7681
  #, php-format
7682
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
7683
  msgstr "%1$sAchtung:%2$s Subskription %3$s%4$s%5$s konnte bei Strips nicht gefunden werden. Sie könnte gelöscht worden sein."
@@ -7701,6 +7749,7 @@ msgstr "%1$sAchtung:%2$s Subskription %3$s%4$s%5$s konnte bei Strips nicht gefun
7701
  #: classes/gateways/class.pmprogateway_stripe.php:1379
7702
  #: classes/gateways/class.pmprogateway_stripe.php:1391
7703
  #: classes/gateways/class.pmprogateway_stripe.php:1410
 
7704
  msgid "Subscription Updates"
7705
  msgstr "Abonnement-Updates"
7706
 
@@ -7723,6 +7772,7 @@ msgstr "Abonnement-Updates"
7723
  #: classes/gateways/class.pmprogateway_stripe.php:1383
7724
  #: classes/gateways/class.pmprogateway_stripe.php:1395
7725
  #: classes/gateways/class.pmprogateway_stripe.php:1414
 
7726
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
7727
  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."
7728
 
@@ -7745,6 +7795,7 @@ msgstr "Mit Abonnement-Updates können Sie die Abonnementwerte des Mitglieds zu
7745
  #: classes/gateways/class.pmprogateway_stripe.php:1385
7746
  #: classes/gateways/class.pmprogateway_stripe.php:1397
7747
  #: classes/gateways/class.pmprogateway_stripe.php:1416
 
7748
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
7749
  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."
7750
 
@@ -7783,6 +7834,7 @@ msgstr "Mit Abonnement-Updates können Sie die Abonnementwerte des Mitglieds zu
7783
  #: pages/billing.php:425
7784
  #: classes/gateways/class.pmprogateway_stripe.php:1403
7785
  #: classes/gateways/class.pmprogateway_stripe.php:1422
 
7786
  msgid "Update"
7787
  msgstr "Aktualisieren"
7788
 
@@ -7827,6 +7879,9 @@ msgstr "Zahlungsfehler: Bitte kontaktieren Sie den Webmaster (stripe-load-error)
7827
  #: classes/gateways/class.pmprogateway_stripe.php:2127
7828
  #: classes/gateways/class.pmprogateway_stripe.php:2132
7829
  #: classes/gateways/class.pmprogateway_stripe.php:2137
 
 
 
7830
  msgid "Error creating customer record with Stripe:"
7831
  msgstr "Stripe meldet einen Fehler bei der Erstellung des Kunden-Satzes:"
7832
 
@@ -7850,6 +7905,8 @@ msgstr "Stripe meldet einen Fehler bei der Erstellung des Kunden-Satzes:"
7850
  #: classes/gateways/class.pmprogateway_stripe.php:2182
7851
  #: classes/gateways/class.pmprogateway_stripe.php:2196
7852
  #: classes/gateways/class.pmprogateway_stripe.php:2201
 
 
7853
  msgid "Error getting subscription with Stripe:"
7854
  msgstr "Fehler beim Anlegen des Abonnements in Stripe:"
7855
 
@@ -7891,6 +7948,8 @@ msgstr "Fehler beim Anlegen des Abonnements in Stripe:"
7891
  #: classes/gateways/class.pmprogateway_stripe.php:2356
7892
  #: classes/gateways/class.pmprogateway_stripe.php:2373
7893
  #: classes/gateways/class.pmprogateway_stripe.php:2378
 
 
7894
  msgid "Error creating plan with Stripe:"
7895
  msgstr "Fehler beim Erstellen eines Plans mit Stripe:"
7896
 
@@ -7927,6 +7986,8 @@ msgstr "Fehler beim Erstellen eines Plans mit Stripe:"
7927
  #: classes/gateways/class.pmprogateway_stripe.php:2401
7928
  #: classes/gateways/class.pmprogateway_stripe.php:2409
7929
  #: classes/gateways/class.pmprogateway_stripe.php:2423
 
 
7930
  msgid "Error subscribing customer to plan with Stripe:"
7931
  msgstr "Stripe meldet einen Fehler beim Einrichten des Abos für den Kunden:"
7932
 
@@ -7949,6 +8010,7 @@ msgstr "Stripe meldet einen Fehler beim Einrichten des Abos für den Kunden:"
7949
  #: classes/gateways/class.pmprogateway_stripe.php:2480
7950
  #: classes/gateways/class.pmprogateway_stripe.php:2492
7951
  #: classes/gateways/class.pmprogateway_stripe.php:2514
 
7952
  msgid "Could not cancel the old subscription. Updates have not been processed."
7953
  msgstr "Die alte Mitgliedschaft konnte nicht gekündigt werden. Aktualisierungen wurden nicht durchgeführt."
7954
 
@@ -7980,6 +8042,7 @@ msgstr "Die alte Mitgliedschaft konnte nicht gekündigt werden. Aktualisierungen
7980
  #: classes/gateways/class.pmprogateway_stripe.php:2632
7981
  #: classes/gateways/class.pmprogateway_stripe.php:2644
7982
  #: classes/gateways/class.pmprogateway_stripe.php:2666
 
7983
  msgid "Could not cancel old subscription."
7984
  msgstr "Das alte Abonnement konnte nicht storniert werden."
7985
 
@@ -8008,6 +8071,7 @@ msgstr "Das alte Abonnement konnte nicht storniert werden."
8008
  #: classes/gateways/class.pmprogateway_stripe.php:2648
8009
  #: classes/gateways/class.pmprogateway_stripe.php:2660
8010
  #: classes/gateways/class.pmprogateway_stripe.php:2682
 
8011
  msgid "Could not find the customer."
8012
  msgstr "Konnte den Kunden nicht finden."
8013
 
@@ -8026,6 +8090,7 @@ msgstr "Konnte den Kunden nicht finden."
8026
  #: classes/gateways/class.pmprogateway_stripe.php:2834
8027
  #: classes/gateways/class.pmprogateway_stripe.php:2850
8028
  #: classes/gateways/class.pmprogateway_stripe.php:2856
 
8029
  msgid "Error: "
8030
  msgstr "Fehler:"
8031
 
@@ -8041,6 +8106,7 @@ msgstr "Fehler:"
8041
  #: classes/gateways/class.pmprogateway_stripe.php:2836
8042
  #: classes/gateways/class.pmprogateway_stripe.php:2848
8043
  #: classes/gateways/class.pmprogateway_stripe.php:2870
 
8044
  #, php-format
8045
  msgid "Error: Unkown error while refunding charge #%s"
8046
  msgstr "Fehler: Unbekannter Fehler bei der Erstattung der Zahlung #%s"
@@ -10345,6 +10411,7 @@ msgstr "Ihr Lizenzschlüssel wurde bestätigt."
10345
  #: includes/license.php:84
10346
  #: includes/license.php:81
10347
  #: adminpages/license.php:43
 
10348
  msgid "Paid Memberships Pro Support License"
10349
  msgstr "Paid Memberships Pro Support Lizenz"
10350
 
@@ -10366,6 +10433,7 @@ msgstr ""
10366
  #: adminpages/dashboard.php:174
10367
  #: adminpages/license.php:49
10368
  #: adminpages/dashboard.php:178
 
10369
  msgid "Your license is invalid or expired."
10370
  msgstr "Ihre Lizenz ist ungültig oder abgelaufen."
10371
 
@@ -10378,6 +10446,7 @@ msgstr "<p><strong>Danke!</strong> Ein gültiger <strong>%s</strong> Lizenzschl
10378
  #: includes/license.php:103
10379
  #: includes/license.php:100
10380
  #: adminpages/license.php:59
 
10381
  msgid "Enter license key here..."
10382
  msgstr "Lizenzschlüssel hier eingeben..."
10383
 
@@ -10544,27 +10613,32 @@ msgstr "Paid Memberships Pro User Data"
10544
  #: adminpages/memberslist.php:212
10545
  #: adminpages/advancedsettings.php:316
10546
  #: includes/profile.php:509
 
10547
  msgid "Never"
10548
  msgstr "Nie"
10549
 
10550
  #: includes/privacy.php:182
10551
  #: includes/profile.php:425
10552
  #: includes/profile.php:493
 
10553
  msgid "Level ID"
10554
  msgstr "Paket-ID"
10555
 
10556
  #: includes/privacy.php:190
10557
  #: includes/profile.php:496
 
10558
  msgid "Date Modified"
10559
  msgstr "Änderungsdatum"
10560
 
10561
  #: includes/privacy.php:194
10562
  #: includes/profile.php:497
 
10563
  msgid "End Date"
10564
  msgstr "End-Datum"
10565
 
10566
  #: includes/privacy.php:198
10567
  #: includes/profile.php:498
 
10568
  msgid "Level Cost"
10569
  msgstr "Paket-Preis"
10570
 
@@ -10627,6 +10701,7 @@ msgstr "Bestelldatum"
10627
  #: adminpages/dashboard.php:224
10628
  #: adminpages/dashboard.php:292
10629
  #: adminpages/orders.php:1343
 
10630
  msgid "Level"
10631
  msgstr "Paket"
10632
 
@@ -10921,6 +10996,7 @@ msgstr "Ihre Zahlungen werden von PayPal abgewickelt. Sie können sich <a href=\
10921
  #: includes/profile.php:747
10922
  #: pages/billing.php:164
10923
  #: pages/checkout.php:234
 
10924
  msgid "First Name"
10925
  msgstr "Vorname"
10926
 
@@ -10949,6 +11025,7 @@ msgstr "Vorname"
10949
  #: includes/profile.php:748
10950
  #: pages/billing.php:168
10951
  #: pages/checkout.php:238
 
10952
  msgid "Last Name"
10953
  msgstr "Nachname"
10954
 
@@ -12380,6 +12457,7 @@ msgstr "Der <strong>%s</strong> Code wurde wie gewünscht verwendet."
12380
  #: services/authnet-silent-post.php:144
12381
  #: services/authnet-silent-post.php:145
12382
  #: services/authnet-silent-post.php:173
 
12383
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
12384
  msgstr "<p>Eine Zahlung wird von Authorize.net zur Überprüfung zurückgehalten.</p><p>Zahlungs-Information von Authorize.net"
12385
 
@@ -12448,6 +12526,8 @@ msgstr "Profil editieren"
12448
  #: includes/profile.php:872
12449
  #: includes/profile.php:909
12450
  #: shortcodes/pmpro_account.php:195
 
 
12451
  msgid "Change Password"
12452
  msgstr "Passwort ändern"
12453
 
@@ -13476,6 +13556,7 @@ msgstr ""
13476
  #: adminpages/dashboard.php:177
13477
  #: adminpages/license.php:51
13478
  #: adminpages/dashboard.php:181
 
13479
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
13480
  msgstr ""
13481
 
@@ -13885,18 +13966,23 @@ msgid "Discount Code Applied"
13885
  msgstr ""
13886
 
13887
  #: adminpages/license.php:47
 
13888
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
13889
  msgstr ""
13890
 
13891
  #: adminpages/license.php:49
 
 
13892
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
13893
  msgstr ""
13894
 
13895
  #: adminpages/license.php:61
 
13896
  msgid "Validate Key"
13897
  msgstr ""
13898
 
13899
  #: adminpages/license.php:95
 
13900
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
13901
  msgstr ""
13902
 
@@ -14651,6 +14737,7 @@ msgid "Your order has been refused."
14651
  msgstr ""
14652
 
14653
  #: classes/gateways/class.pmprogateway_cybersource.php:922
 
14654
  msgid "Unknown error."
14655
  msgstr ""
14656
 
@@ -14665,18 +14752,22 @@ msgstr ""
14665
  #: classes/gateways/class.pmprogateway_paypal.php:146
14666
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
14667
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
 
14668
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
14669
  msgstr ""
14670
 
14671
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
 
14672
  msgid "Checkout was already processed."
14673
  msgstr ""
14674
 
14675
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
 
14676
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
14677
  msgstr ""
14678
 
14679
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
 
14680
  msgid "Error creating plan with PayPal."
14681
  msgstr ""
14682
 
@@ -14684,11 +14775,14 @@ msgstr ""
14684
  #: classes/gateways/class.pmprogateway_stripe.php:436
14685
  #: classes/gateways/class.pmprogateway_stripe.php:354
14686
  #: classes/gateways/class.pmprogateway_stripe.php:444
 
 
14687
  msgid "Stripe Connect Settings"
14688
  msgstr ""
14689
 
14690
  #: classes/gateways/class.pmprogateway_stripe.php:352
14691
  #: classes/gateways/class.pmprogateway_stripe.php:356
 
14692
  msgid "Live Mode:"
14693
  msgstr ""
14694
 
@@ -14696,6 +14790,8 @@ msgstr ""
14696
  #: classes/gateways/class.pmprogateway_stripe.php:440
14697
  #: classes/gateways/class.pmprogateway_stripe.php:358
14698
  #: classes/gateways/class.pmprogateway_stripe.php:448
 
 
14699
  msgid "Connected"
14700
  msgstr ""
14701
 
@@ -14703,6 +14799,8 @@ msgstr ""
14703
  #: classes/gateways/class.pmprogateway_stripe.php:442
14704
  #: classes/gateways/class.pmprogateway_stripe.php:362
14705
  #: classes/gateways/class.pmprogateway_stripe.php:452
 
 
14706
  msgid "Not Connected"
14707
  msgstr ""
14708
 
@@ -14710,11 +14808,14 @@ msgstr ""
14710
  #: classes/gateways/class.pmprogateway_stripe.php:449
14711
  #: classes/gateways/class.pmprogateway_stripe.php:369
14712
  #: classes/gateways/class.pmprogateway_stripe.php:459
 
 
14713
  msgid "Your site is using legacy API keys to authenticate with Stripe."
14714
  msgstr ""
14715
 
14716
  #: classes/gateways/class.pmprogateway_stripe.php:364
14717
  #: classes/gateways/class.pmprogateway_stripe.php:371
 
14718
  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."
14719
  msgstr ""
14720
 
@@ -14722,6 +14823,8 @@ msgstr ""
14722
  #: classes/gateways/class.pmprogateway_stripe.php:458
14723
  #: classes/gateways/class.pmprogateway_stripe.php:380
14724
  #: classes/gateways/class.pmprogateway_stripe.php:470
 
 
14725
  msgid "Stripe Connection:"
14726
  msgstr ""
14727
 
@@ -14729,11 +14832,14 @@ msgstr ""
14729
  #: classes/gateways/class.pmprogateway_stripe.php:482
14730
  #: classes/gateways/class.pmprogateway_stripe.php:396
14731
  #: classes/gateways/class.pmprogateway_stripe.php:494
 
 
14732
  msgid "Disconnect From Stripe"
14733
  msgstr ""
14734
 
14735
  #: classes/gateways/class.pmprogateway_stripe.php:389
14736
  #: classes/gateways/class.pmprogateway_stripe.php:397
 
14737
  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."
14738
  msgstr ""
14739
 
@@ -14741,16 +14847,20 @@ msgstr ""
14741
  #: classes/gateways/class.pmprogateway_stripe.php:496
14742
  #: classes/gateways/class.pmprogateway_stripe.php:409
14743
  #: classes/gateways/class.pmprogateway_stripe.php:508
 
 
14744
  msgid "Connect with Stripe"
14745
  msgstr ""
14746
 
14747
  #: classes/gateways/class.pmprogateway_stripe.php:408
14748
  #: classes/gateways/class.pmprogateway_stripe.php:416
 
14749
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
14750
  msgstr ""
14751
 
14752
  #: classes/gateways/class.pmprogateway_stripe.php:411
14753
  #: classes/gateways/class.pmprogateway_stripe.php:419
 
14754
  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."
14755
  msgstr ""
14756
 
@@ -14761,6 +14871,9 @@ msgstr ""
14761
  #: classes/gateways/class.pmprogateway_stripe.php:519
14762
  #: classes/gateways/class.pmprogateway_stripe.php:559
14763
  #: classes/gateways/class.pmprogateway_stripe.php:578
 
 
 
14764
  msgid "Webhook"
14765
  msgstr ""
14766
 
@@ -14771,26 +14884,33 @@ msgstr ""
14771
  #: classes/gateways/class.pmprogateway_stripe.php:523
14772
  #: classes/gateways/class.pmprogateway_stripe.php:594
14773
  #: classes/gateways/class.pmprogateway_stripe.php:613
 
 
 
14774
  msgid "Webhook URL"
14775
  msgstr ""
14776
 
14777
  #: classes/gateways/class.pmprogateway_stripe.php:438
14778
  #: classes/gateways/class.pmprogateway_stripe.php:446
 
14779
  msgid "Test Mode:"
14780
  msgstr ""
14781
 
14782
  #: classes/gateways/class.pmprogateway_stripe.php:450
14783
  #: classes/gateways/class.pmprogateway_stripe.php:461
 
14784
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
14785
  msgstr ""
14786
 
14787
  #: classes/gateways/class.pmprogateway_stripe.php:483
14788
  #: classes/gateways/class.pmprogateway_stripe.php:495
 
14789
  msgid "This will disconnect your site from Stripe in test mode only."
14790
  msgstr ""
14791
 
14792
  #: classes/gateways/class.pmprogateway_stripe.php:518
14793
  #: classes/gateways/class.pmprogateway_stripe.php:530
 
14794
  msgid "Stripe API Settings (Legacy)"
14795
  msgstr ""
14796
 
@@ -14800,24 +14920,29 @@ msgstr ""
14800
  #: classes/gateways/class.pmprogateway_stripe.php:587
14801
  #: classes/gateways/class.pmprogateway_stripe.php:582
14802
  #: classes/gateways/class.pmprogateway_stripe.php:606
 
 
14803
  msgid "Create Webhook"
14804
  msgstr ""
14805
 
14806
  #: classes/gateways/class.pmprogateway_stripe.php:557
14807
  #: classes/gateways/class.pmprogateway_stripe.php:569
14808
  #: classes/gateways/class.pmprogateway_stripe.php:588
 
14809
  msgid "A webhook is set up in Stripe, but it is disabled."
14810
  msgstr ""
14811
 
14812
  #: classes/gateways/class.pmprogateway_stripe.php:564
14813
  #: classes/gateways/class.pmprogateway_stripe.php:576
14814
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
14815
  msgid "A webhook is set up in Stripe, but it is using an old API version."
14816
  msgstr ""
14817
 
14818
  #: classes/gateways/class.pmprogateway_stripe.php:564
14819
  #: classes/gateways/class.pmprogateway_stripe.php:576
14820
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
14821
  msgid "Rebuild Webhook"
14822
  msgstr ""
14823
 
@@ -14830,12 +14955,16 @@ msgstr ""
14830
  #: classes/gateways/class.pmprogateway_stripe.php:601
14831
  #: classes/gateways/class.pmprogateway_stripe.php:741
14832
  #: classes/gateways/class.pmprogateway_stripe.php:857
 
 
 
14833
  msgid "Your webhook is enabled."
14834
  msgstr ""
14835
 
14836
  #: classes/gateways/class.pmprogateway_stripe.php:570
14837
  #: classes/gateways/class.pmprogateway_stripe.php:582
14838
  #: classes/gateways/class.pmprogateway_stripe.php:601
 
14839
  msgid "Disable Webhook"
14840
  msgstr ""
14841
 
@@ -14851,66 +14980,80 @@ msgstr ""
14851
  #: classes/gateways/class.pmprogateway_stripe.php:768
14852
  #: classes/gateways/class.pmprogateway_stripe.php:785
14853
  #: classes/gateways/class.pmprogateway_stripe.php:819
 
 
 
 
14854
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
14855
  msgstr ""
14856
 
14857
  #: classes/gateways/class.pmprogateway_stripe.php:589
14858
  #: classes/gateways/class.pmprogateway_stripe.php:601
14859
  #: classes/gateways/class.pmprogateway_stripe.php:620
 
14860
  msgid "Other Stripe Settings"
14861
  msgstr ""
14862
 
14863
  #: classes/gateways/class.pmprogateway_stripe.php:593
14864
  #: classes/gateways/class.pmprogateway_stripe.php:605
14865
  #: classes/gateways/class.pmprogateway_stripe.php:624
 
14866
  msgid "Stripe API Version"
14867
  msgstr ""
14868
 
14869
  #: classes/gateways/class.pmprogateway_stripe.php:612
14870
  #: classes/gateways/class.pmprogateway_stripe.php:624
14871
  #: classes/gateways/class.pmprogateway_stripe.php:643
 
14872
  msgid "Enable Payment Request Button"
14873
  msgstr ""
14874
 
14875
  #: classes/gateways/class.pmprogateway_stripe.php:630
14876
  #: classes/gateways/class.pmprogateway_stripe.php:642
14877
  #: classes/gateways/class.pmprogateway_stripe.php:661
 
14878
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
14879
  msgstr ""
14880
 
14881
  #: classes/gateways/class.pmprogateway_stripe.php:643
14882
  #: classes/gateways/class.pmprogateway_stripe.php:655
14883
  #: classes/gateways/class.pmprogateway_stripe.php:674
 
14884
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
14885
  msgstr ""
14886
 
14887
  #: classes/gateways/class.pmprogateway_stripe.php:645
14888
  #: classes/gateways/class.pmprogateway_stripe.php:657
14889
  #: classes/gateways/class.pmprogateway_stripe.php:676
 
14890
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
14891
  msgstr ""
14892
 
14893
  #: classes/gateways/class.pmprogateway_stripe.php:647
14894
  #: classes/gateways/class.pmprogateway_stripe.php:659
14895
  #: classes/gateways/class.pmprogateway_stripe.php:678
 
14896
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
14897
  msgstr ""
14898
 
14899
  #: classes/gateways/class.pmprogateway_stripe.php:649
14900
  #: classes/gateways/class.pmprogateway_stripe.php:661
14901
  #: classes/gateways/class.pmprogateway_stripe.php:680
 
14902
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
14903
  msgstr ""
14904
 
14905
  #: classes/gateways/class.pmprogateway_stripe.php:674
14906
  #: classes/gateways/class.pmprogateway_stripe.php:686
14907
  #: classes/gateways/class.pmprogateway_stripe.php:705
 
14908
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
14909
  msgstr ""
14910
 
14911
  #: classes/gateways/class.pmprogateway_stripe.php:695
14912
  #: classes/gateways/class.pmprogateway_stripe.php:707
14913
  #: classes/gateways/class.pmprogateway_stripe.php:726
 
14914
  msgid "Webhook creation failed. You might already have a webhook set up."
14915
  msgstr ""
14916
 
@@ -14920,30 +15063,36 @@ msgstr ""
14920
  #: classes/gateways/class.pmprogateway_stripe.php:847
14921
  #: classes/gateways/class.pmprogateway_stripe.php:792
14922
  #: classes/gateways/class.pmprogateway_stripe.php:866
 
 
14923
  msgid "There was an error deleting the webhook."
14924
  msgstr ""
14925
 
14926
  #: classes/gateways/class.pmprogateway_stripe.php:811
14927
  #: classes/gateways/class.pmprogateway_stripe.php:823
14928
  #: classes/gateways/class.pmprogateway_stripe.php:842
 
14929
  msgid "Webhook creation failed. Please refresh and try again."
14930
  msgstr ""
14931
 
14932
  #: classes/gateways/class.pmprogateway_stripe.php:867
14933
  #: classes/gateways/class.pmprogateway_stripe.php:879
14934
  #: classes/gateways/class.pmprogateway_stripe.php:898
 
14935
  msgid "Verification steps confirmed. Your payment is processing."
14936
  msgstr ""
14937
 
14938
  #: classes/gateways/class.pmprogateway_stripe.php:1262
14939
  #: classes/gateways/class.pmprogateway_stripe.php:1274
14940
  #: classes/gateways/class.pmprogateway_stripe.php:1293
 
14941
  msgid "Pay with Credit Card"
14942
  msgstr ""
14943
 
14944
  #: classes/gateways/class.pmprogateway_stripe.php:1296
14945
  #: classes/gateways/class.pmprogateway_stripe.php:1308
14946
  #: classes/gateways/class.pmprogateway_stripe.php:1327
 
14947
  msgid "CVC"
14948
  msgstr ""
14949
 
@@ -14959,24 +15108,31 @@ msgstr ""
14959
  #: classes/gateways/class.pmprogateway_stripe.php:2016
14960
  #: classes/gateways/class.pmprogateway_stripe.php:2029
14961
  #: classes/gateways/class.pmprogateway_stripe.php:2033
 
 
 
 
14962
  msgid "Error: %s"
14963
  msgstr ""
14964
 
14965
  #: classes/gateways/class.pmprogateway_stripe.php:3330
14966
  #: classes/gateways/class.pmprogateway_stripe.php:3342
14967
  #: classes/gateways/class.pmprogateway_stripe.php:3364
 
14968
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
14969
  msgstr ""
14970
 
14971
  #: classes/gateways/class.pmprogateway_stripe.php:3347
14972
  #: classes/gateways/class.pmprogateway_stripe.php:3359
14973
  #: classes/gateways/class.pmprogateway_stripe.php:3381
 
14974
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
14975
  msgstr ""
14976
 
14977
  #: classes/gateways/class.pmprogateway_stripe.php:3533
14978
  #: classes/gateways/class.pmprogateway_stripe.php:3545
14979
  #: classes/gateways/class.pmprogateway_stripe.php:3567
 
14980
  msgid "Invalid response from the Stripe Connect server."
14981
  msgstr ""
14982
 
@@ -14984,6 +15140,7 @@ msgstr ""
14984
  #: classes/gateways/class.pmprogateway_stripe.php:3561
14985
  #: classes/gateways/class.pmprogateway_stripe.php:3573
14986
  #: classes/gateways/class.pmprogateway_stripe.php:3595
 
14987
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
14988
  msgstr ""
14989
 
@@ -14991,30 +15148,35 @@ msgstr ""
14991
  #: classes/gateways/class.pmprogateway_stripe.php:3597
14992
  #: classes/gateways/class.pmprogateway_stripe.php:3609
14993
  #: classes/gateways/class.pmprogateway_stripe.php:3631
 
14994
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
14995
  msgstr ""
14996
 
14997
  #: classes/gateways/class.pmprogateway_stripe.php:3768
14998
  #: classes/gateways/class.pmprogateway_stripe.php:3780
14999
  #: classes/gateways/class.pmprogateway_stripe.php:3802
 
15000
  msgid "Last webhook received at"
15001
  msgstr ""
15002
 
15003
  #: classes/gateways/class.pmprogateway_stripe.php:3770
15004
  #: classes/gateways/class.pmprogateway_stripe.php:3782
15005
  #: classes/gateways/class.pmprogateway_stripe.php:3804
 
15006
  msgid "No webhooks have been received."
15007
  msgstr ""
15008
 
15009
  #: classes/gateways/class.pmprogateway_stripe.php:3774
15010
  #: classes/gateways/class.pmprogateway_stripe.php:3786
15011
  #: classes/gateways/class.pmprogateway_stripe.php:3808
 
15012
  msgid "Your webhook may not be working correctly."
15013
  msgstr ""
15014
 
15015
  #: classes/gateways/class.pmprogateway_stripe.php:3776
15016
  #: classes/gateways/class.pmprogateway_stripe.php:3788
15017
  #: classes/gateways/class.pmprogateway_stripe.php:3810
 
15018
  msgid "Click here for info on setting up your webhook with Stripe."
15019
  msgstr ""
15020
 
@@ -16013,11 +16175,13 @@ msgstr ""
16013
 
16014
  #: includes/login.php:429
16015
  #: includes/profile.php:843
 
16016
  msgid "New passwords do not match."
16017
  msgstr ""
16018
 
16019
  #: includes/login.php:433
16020
  #: includes/profile.php:839
 
16021
  msgid "Please complete all fields."
16022
  msgstr ""
16023
 
@@ -16047,17 +16211,21 @@ msgstr ""
16047
 
16048
  #: includes/login.php:688
16049
  #: includes/profile.php:891
 
16050
  msgid "New Password"
16051
  msgstr ""
16052
 
16053
  #: includes/login.php:690
16054
  #: includes/profile.php:894
16055
  #: includes/scripts.php:86
 
 
16056
  msgid "Strength Indicator"
16057
  msgstr ""
16058
 
16059
  #: includes/login.php:694
16060
  #: includes/profile.php:898
 
16061
  msgid "Confirm New Password"
16062
  msgstr ""
16063
 
@@ -16138,68 +16306,85 @@ msgid "Membership Levels History"
16138
  msgstr ""
16139
 
16140
  #: includes/profile.php:485
 
16141
  msgid "No membership orders found."
16142
  msgstr ""
16143
 
16144
  #: includes/profile.php:537
 
16145
  msgid "No membership history found."
16146
  msgstr ""
16147
 
16148
  #: includes/profile.php:644
 
16149
  msgid "Log in to edit your profile."
16150
  msgstr ""
16151
 
16152
  #: includes/profile.php:679
 
16153
  msgid "Please enter a display name."
16154
  msgstr ""
16155
 
16156
  #: includes/profile.php:689
 
16157
  msgid "Please enter an email address."
16158
  msgstr ""
16159
 
16160
  #: includes/profile.php:691
 
16161
  msgid "The email address isn&#8217;t correct."
16162
  msgstr ""
16163
 
16164
  #: includes/profile.php:695
 
16165
  msgid "This email is already registered, please choose another one."
16166
  msgstr ""
16167
 
16168
  #: includes/profile.php:722
 
16169
  msgid "Your profile has been updated."
16170
  msgstr ""
16171
 
16172
  #: includes/profile.php:749
 
16173
  msgid "Display name publicly as"
16174
  msgstr ""
16175
 
16176
  #: includes/profile.php:762
 
16177
  msgid "Site administrators must use the WordPress dashboard to update their email address."
16178
  msgstr ""
16179
 
16180
  #: includes/profile.php:785
 
16181
  msgid "Update Profile"
16182
  msgstr ""
16183
 
16184
  #: includes/profile.php:841
 
16185
  msgid "Please enter your current password."
16186
  msgstr ""
16187
 
16188
  #: includes/profile.php:845
 
16189
  msgid "Your current password is incorrect."
16190
  msgstr ""
16191
 
16192
  #: includes/profile.php:856
 
16193
  msgid "Your password has been updated."
16194
  msgstr ""
16195
 
16196
  #: includes/profile.php:886
 
16197
  msgid "Current Password"
16198
  msgstr ""
16199
 
16200
  #: includes/profile.php:888
16201
  #: includes/profile.php:893
16202
  #: includes/profile.php:900
 
 
16203
  msgid "Required Field"
16204
  msgstr ""
16205
 
@@ -16268,10 +16453,12 @@ msgid "Default"
16268
  msgstr ""
16269
 
16270
  #: services/braintree-webhook.php:425
 
16271
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
16272
  msgstr ""
16273
 
16274
  #: services/braintree-webhook.php:427
 
16275
  msgid "A member's Braintree subscription has expired at %s"
16276
  msgstr ""
16277
 
@@ -16590,16 +16777,22 @@ msgstr ""
16590
 
16591
  #: classes/gateways/class.pmprogateway_stripe.php:360
16592
  #: classes/gateways/class.pmprogateway_stripe.php:450
 
 
16593
  msgid "Connected with Legacy Keys"
16594
  msgstr ""
16595
 
16596
  #: classes/gateways/class.pmprogateway_stripe.php:370
16597
  #: classes/gateways/class.pmprogateway_stripe.php:460
 
 
16598
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
16599
  msgstr ""
16600
 
16601
  #: classes/gateways/class.pmprogateway_stripe.php:372
16602
  #: classes/gateways/class.pmprogateway_stripe.php:462
 
 
16603
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
16604
  msgstr ""
16605
 
@@ -16656,9 +16849,45 @@ msgid "missing"
16656
  msgstr ""
16657
 
16658
  #: classes/gateways/class.pmprogateway_stripe.php:533
 
16659
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
16660
  msgstr ""
16661
 
16662
  #: classes/gateways/class.pmprogateway_stripe.php:534
 
16663
  msgid "Click here to use the legacy API settings."
16664
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.3\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-10-11T14:00:14+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
309
  #: adminpages/orders.php:1544
310
  #: adminpages/orders.php:1554
311
  #: adminpages/orders.php:1553
312
+ #: includes/profile.php:520
313
+ #: includes/profile.php:521
314
+ #: includes/profile.php:522
315
  msgid "N/A"
316
  msgstr "Nicht verfügbar"
317
 
435
  #: adminpages/admin_header.php:125
436
  #: adminpages/admin_header.php:152
437
  #: classes/gateways/class.pmprogateway_stripe.php:76
438
+ #: classes/gateways/class.pmprogateway_stripe.php:82
439
  #, php-format
440
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
441
  msgstr ""
558
  #: adminpages/orders.php:391
559
  #: adminpages/orders.php:1445
560
  #: adminpages/orders.php:1448
561
+ #: includes/profile.php:762
562
  msgid "Email"
563
  msgstr "Email"
564
 
827
  #: adminpages/advancedsettings.php:479
828
  #: classes/gateways/class.pmprogateway_stripe.php:634
829
  #: classes/gateways/class.pmprogateway_stripe.php:648
830
+ #: classes/gateways/class.pmprogateway_stripe.php:640
831
+ #: classes/gateways/class.pmprogateway_stripe.php:654
832
  msgid "No"
833
  msgstr "Nein"
834
 
961
  #: adminpages/advancedsettings.php:397
962
  #: classes/gateways/class.pmprogateway_stripe.php:636
963
  #: classes/gateways/class.pmprogateway_stripe.php:650
964
+ #: classes/gateways/class.pmprogateway_stripe.php:642
965
+ #: classes/gateways/class.pmprogateway_stripe.php:656
966
  msgid "Yes"
967
  msgstr "Ja"
968
 
1358
  #: adminpages/reports/history.php:34
1359
  #: includes/profile.php:495
1360
  #: adminpages/discountcodes.php:489
1361
+ #: includes/profile.php:501
1362
  msgid "Start Date"
1363
  msgstr "Start Datum"
1364
 
1424
  #: classes/gateways/class.pmprogateway_stripe.php:1301
1425
  #: adminpages/discountcodes.php:507
1426
  #: classes/gateways/class.pmprogateway_stripe.php:1320
1427
+ #: classes/gateways/class.pmprogateway_stripe.php:1326
1428
  msgid "Expiration Date"
1429
  msgstr "Ablaufdatum"
1430
 
1633
  #: adminpages/discountcodes.php:612
1634
  #: adminpages/discountcodes.php:699
1635
  #: classes/gateways/class.pmprogateway_stripe.php:1363
1636
+ #: classes/gateways/class.pmprogateway_stripe.php:1369
1637
  msgid "Day(s)"
1638
  msgstr "Tag(e)"
1639
 
1690
  #: adminpages/discountcodes.php:612
1691
  #: adminpages/discountcodes.php:699
1692
  #: classes/gateways/class.pmprogateway_stripe.php:1365
1693
+ #: classes/gateways/class.pmprogateway_stripe.php:1371
1694
  msgid "Month(s)"
1695
  msgstr "Monat(e)"
1696
 
1747
  #: adminpages/discountcodes.php:612
1748
  #: adminpages/discountcodes.php:699
1749
  #: classes/gateways/class.pmprogateway_stripe.php:1364
1750
+ #: classes/gateways/class.pmprogateway_stripe.php:1370
1751
  msgid "Week(s)"
1752
  msgstr "Woche(n)"
1753
 
1804
  #: adminpages/discountcodes.php:612
1805
  #: adminpages/discountcodes.php:699
1806
  #: classes/gateways/class.pmprogateway_stripe.php:1366
1807
+ #: classes/gateways/class.pmprogateway_stripe.php:1372
1808
  msgid "Year(s)"
1809
  msgstr "Jahr(e)"
1810
 
2619
  #: classes/gateways/class.pmprogateway_stripe.php:1478
2620
  #: adminpages/discountcodes.php:608
2621
  #: classes/gateways/class.pmprogateway_stripe.php:1497
2622
+ #: classes/gateways/class.pmprogateway_stripe.php:1503
2623
  msgid "per"
2624
  msgstr "pro"
2625
 
2886
  #: pages/cancel.php:96
2887
  #: shortcodes/pmpro_account.php:106
2888
  #: adminpages/orders.php:968
2889
+ #: includes/profile.php:798
2890
+ #: includes/profile.php:922
2891
  msgid "Cancel"
2892
  msgstr "Stornieren"
2893
 
3813
  #: adminpages/orders.php:679
3814
  #: classes/gateways/class.pmprogateway_stripe.php:1284
3815
  #: classes/gateways/class.pmprogateway_stripe.php:1303
3816
+ #: classes/gateways/class.pmprogateway_stripe.php:1309
3817
  msgid "Card Type"
3818
  msgstr "Kreditkarte"
3819
 
3922
  #: adminpages/dashboard.php:294
3923
  #: adminpages/orders.php:742
3924
  #: adminpages/orders.php:1348
3925
+ #: includes/profile.php:505
3926
  msgid "Status"
3927
  msgstr "Status"
3928
 
5844
  #: classes/class.pmproemail.php:769
5845
  #: classes/class.pmproemail.php:771
5846
  #: classes/gateways/class.pmprogateway_stripe.php:1333
5847
+ #: classes/gateways/class.pmprogateway_stripe.php:1339
5848
  msgid "Discount Code"
5849
  msgstr "Gutscheincode"
5850
 
6362
  #: classes/gateways/class.pmprogateway_stripe.php:58
6363
  #: classes/gateways/class.pmprogateway_braintree.php:87
6364
  #: classes/gateways/class.pmprogateway_stripe.php:91
6365
+ #: classes/gateways/class.pmprogateway_stripe.php:97
6366
  #, php-format
6367
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
6368
  msgstr "Das %s Gateway benötigt die %s PHP-Erweiterung. Bitte aktivieren Sie sie oder bitten Sie Ihren Hostinganbieter es zu aktivieren."
6560
  #: pages/checkout.php:366
6561
  #: classes/gateways/class.pmprogateway_stripe.php:1263
6562
  #: classes/gateways/class.pmprogateway_stripe.php:1282
6563
+ #: classes/gateways/class.pmprogateway_stripe.php:1288
6564
  msgid "Payment Information"
6565
  msgstr "Zahlungsinformationen"
6566
 
6606
  #: pages/checkout.php:367
6607
  #: classes/gateways/class.pmprogateway_stripe.php:1264
6608
  #: classes/gateways/class.pmprogateway_stripe.php:1283
6609
+ #: classes/gateways/class.pmprogateway_stripe.php:1289
6610
  #, php-format
6611
  msgid "We Accept %s"
6612
  msgstr "Wir aktzeptieren %s"
6665
  #: pages/checkout.php:389
6666
  #: classes/gateways/class.pmprogateway_stripe.php:1297
6667
  #: classes/gateways/class.pmprogateway_stripe.php:1316
6668
+ #: classes/gateways/class.pmprogateway_stripe.php:1322
6669
  msgid "Card Number"
6670
  msgstr "Kartennummer"
6671
 
6826
  #: pages/checkout.php:432
6827
  #: classes/gateways/class.pmprogateway_stripe.php:1319
6828
  #: classes/gateways/class.pmprogateway_stripe.php:1338
6829
+ #: classes/gateways/class.pmprogateway_stripe.php:1344
6830
  msgid "Apply"
6831
  msgstr "übernehmen"
6832
 
7219
  #: classes/gateways/class.pmprogateway_paypal.php:132
7220
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
7221
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
7222
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:151
7223
  msgid "PayPal Settings"
7224
  msgstr "PayPal Einstellungen"
7225
 
7247
  #: classes/gateways/class.pmprogateway_paypal.php:153
7248
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
7249
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
7250
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:172
7251
  msgid "Gateway Account Email"
7252
  msgstr "Zahlungsdienstleister Account Email"
7253
 
7270
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
7271
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
7272
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
7273
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:180
7274
  msgid "API Username"
7275
  msgstr "API Username"
7276
 
7293
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
7294
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
7295
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
7296
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:188
7297
  msgid "API Password"
7298
  msgstr "API Password"
7299
 
7310
  #: classes/gateways/class.pmprogateway_paypal.php:177
7311
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
7312
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
7313
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:196
7314
  msgid "API Signature"
7315
  msgstr "API Signature"
7316
 
7318
  #: classes/gateways/class.pmprogateway_paypalexpress.php:182
7319
  #: classes/gateways/class.pmprogateway_paypal.php:185
7320
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
7321
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:204
7322
  msgid "Confirmation Step"
7323
  msgstr "Bestätigungsschritt"
7324
 
7336
  #: classes/gateways/class.pmprogateway_paypal.php:196
7337
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
7338
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
7339
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:215
7340
  msgid "IPN Handler URL"
7341
  msgstr "IPN Handler URL"
7342
 
7370
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
7371
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
7372
  #: pages/checkout.php:218
7373
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:498
7374
  msgid "Check Out with PayPal"
7375
  msgstr "Zahlung mit PayPal abschließen"
7376
 
7400
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
7401
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
7402
  #: pages/checkout.php:526
7403
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
7404
  msgid "Submit and Check Out"
7405
  msgstr "Zahlung bestätigen"
7406
 
7434
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
7435
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
7436
  #: pages/checkout.php:526
7437
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
7438
  msgid "Submit and Confirm"
7439
  msgstr "Senden und Bestätigen"
7440
 
7462
  #: classes/gateways/class.pmprogateway_paypal.php:716
7463
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
7464
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
7465
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:841
7466
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
7467
  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."
7468
 
7481
  #: paid-memberships-pro.php:138
7482
  #: paid-memberships-pro.php:160
7483
  #: paid-memberships-pro.php:162
7484
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:94
7485
  msgid "PayPal Express"
7486
  msgstr "PayPal Express"
7487
 
7494
  #: classes/gateways/class.pmprogateway_paypalexpress.php:173
7495
  #: classes/gateways/class.pmprogateway_paypal.php:199
7496
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
7497
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:218
7498
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
7499
  msgstr "2Checkout INS URL"
7500
 
7520
  #: preheaders/checkout.php:823
7521
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
7522
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
7523
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:352
7524
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:411
7525
  msgid "The PayPal Token was lost."
7526
  msgstr "Der PayPal Token ging verloren."
7527
 
7576
  #: classes/gateways/class.pmprogateway_stripe.php:252
7577
  #: paid-memberships-pro.php:159
7578
  #: paid-memberships-pro.php:161
7579
+ #: classes/gateways/class.pmprogateway_stripe.php:258
7580
  msgid "Stripe"
7581
  msgstr "Stripe"
7582
 
7610
  #: classes/gateways/class.pmprogateway_stripe.php:523
7611
  #: classes/gateways/class.pmprogateway_stripe.php:535
7612
  #: classes/gateways/class.pmprogateway_stripe.php:554
7613
+ #: classes/gateways/class.pmprogateway_stripe.php:560
7614
  msgid "Publishable Key"
7615
  msgstr "Publishable Key"
7616
 
7618
  #: classes/gateways/class.pmprogateway_stripe.php:531
7619
  #: classes/gateways/class.pmprogateway_stripe.php:543
7620
  #: classes/gateways/class.pmprogateway_stripe.php:562
7621
+ #: classes/gateways/class.pmprogateway_stripe.php:568
7622
  msgid "Your Publishable Key appears incorrect."
7623
  msgstr ""
7624
 
7639
  #: classes/gateways/class.pmprogateway_stripe.php:539
7640
  #: classes/gateways/class.pmprogateway_stripe.php:551
7641
  #: classes/gateways/class.pmprogateway_stripe.php:570
7642
+ #: classes/gateways/class.pmprogateway_stripe.php:576
7643
  msgid "Secret Key"
7644
  msgstr "Secret Key"
7645
 
7662
  #: classes/gateways/class.pmprogateway_stripe.php:598
7663
  #: classes/gateways/class.pmprogateway_stripe.php:610
7664
  #: classes/gateways/class.pmprogateway_stripe.php:629
7665
+ #: classes/gateways/class.pmprogateway_stripe.php:635
7666
  msgid "Show Billing Address Fields"
7667
  msgstr "Felder für Rechnungsadresse anzeigen"
7668
 
7684
  #: classes/gateways/class.pmprogateway_stripe.php:607
7685
  #: classes/gateways/class.pmprogateway_stripe.php:619
7686
  #: classes/gateways/class.pmprogateway_stripe.php:638
7687
+ #: classes/gateways/class.pmprogateway_stripe.php:644
7688
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
7689
  msgstr "Stripe erfordert keine Adressangaben. Wählen Sie 'Nein' um die entsprechenden Felder auf den Checkout-Seiten zu verbergen.<br /><strong>Wenn Sie Nein auswählen, stellen Sie sicher, dass Sie die Adresen-Verifizierung in den Stripe Dashboard Settings deaktivieren.</strong>"
7690
 
7725
  #: classes/gateways/class.pmprogateway_stripe.php:1374
7726
  #: classes/gateways/class.pmprogateway_stripe.php:1386
7727
  #: classes/gateways/class.pmprogateway_stripe.php:1405
7728
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
7729
  #, php-format
7730
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
7731
  msgstr "%1$sAchtung:%2$s Subskription %3$s%4$s%5$s konnte bei Strips nicht gefunden werden. Sie könnte gelöscht worden sein."
7749
  #: classes/gateways/class.pmprogateway_stripe.php:1379
7750
  #: classes/gateways/class.pmprogateway_stripe.php:1391
7751
  #: classes/gateways/class.pmprogateway_stripe.php:1410
7752
+ #: classes/gateways/class.pmprogateway_stripe.php:1416
7753
  msgid "Subscription Updates"
7754
  msgstr "Abonnement-Updates"
7755
 
7772
  #: classes/gateways/class.pmprogateway_stripe.php:1383
7773
  #: classes/gateways/class.pmprogateway_stripe.php:1395
7774
  #: classes/gateways/class.pmprogateway_stripe.php:1414
7775
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
7776
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
7777
  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."
7778
 
7795
  #: classes/gateways/class.pmprogateway_stripe.php:1385
7796
  #: classes/gateways/class.pmprogateway_stripe.php:1397
7797
  #: classes/gateways/class.pmprogateway_stripe.php:1416
7798
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
7799
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
7800
  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."
7801
 
7834
  #: pages/billing.php:425
7835
  #: classes/gateways/class.pmprogateway_stripe.php:1403
7836
  #: classes/gateways/class.pmprogateway_stripe.php:1422
7837
+ #: classes/gateways/class.pmprogateway_stripe.php:1428
7838
  msgid "Update"
7839
  msgstr "Aktualisieren"
7840
 
7879
  #: classes/gateways/class.pmprogateway_stripe.php:2127
7880
  #: classes/gateways/class.pmprogateway_stripe.php:2132
7881
  #: classes/gateways/class.pmprogateway_stripe.php:2137
7882
+ #: classes/gateways/class.pmprogateway_stripe.php:2133
7883
+ #: classes/gateways/class.pmprogateway_stripe.php:2138
7884
+ #: classes/gateways/class.pmprogateway_stripe.php:2143
7885
  msgid "Error creating customer record with Stripe:"
7886
  msgstr "Stripe meldet einen Fehler bei der Erstellung des Kunden-Satzes:"
7887
 
7905
  #: classes/gateways/class.pmprogateway_stripe.php:2182
7906
  #: classes/gateways/class.pmprogateway_stripe.php:2196
7907
  #: classes/gateways/class.pmprogateway_stripe.php:2201
7908
+ #: classes/gateways/class.pmprogateway_stripe.php:2202
7909
+ #: classes/gateways/class.pmprogateway_stripe.php:2207
7910
  msgid "Error getting subscription with Stripe:"
7911
  msgstr "Fehler beim Anlegen des Abonnements in Stripe:"
7912
 
7948
  #: classes/gateways/class.pmprogateway_stripe.php:2356
7949
  #: classes/gateways/class.pmprogateway_stripe.php:2373
7950
  #: classes/gateways/class.pmprogateway_stripe.php:2378
7951
+ #: classes/gateways/class.pmprogateway_stripe.php:2379
7952
+ #: classes/gateways/class.pmprogateway_stripe.php:2384
7953
  msgid "Error creating plan with Stripe:"
7954
  msgstr "Fehler beim Erstellen eines Plans mit Stripe:"
7955
 
7986
  #: classes/gateways/class.pmprogateway_stripe.php:2401
7987
  #: classes/gateways/class.pmprogateway_stripe.php:2409
7988
  #: classes/gateways/class.pmprogateway_stripe.php:2423
7989
+ #: classes/gateways/class.pmprogateway_stripe.php:2415
7990
+ #: classes/gateways/class.pmprogateway_stripe.php:2429
7991
  msgid "Error subscribing customer to plan with Stripe:"
7992
  msgstr "Stripe meldet einen Fehler beim Einrichten des Abos für den Kunden:"
7993
 
8010
  #: classes/gateways/class.pmprogateway_stripe.php:2480
8011
  #: classes/gateways/class.pmprogateway_stripe.php:2492
8012
  #: classes/gateways/class.pmprogateway_stripe.php:2514
8013
+ #: classes/gateways/class.pmprogateway_stripe.php:2520
8014
  msgid "Could not cancel the old subscription. Updates have not been processed."
8015
  msgstr "Die alte Mitgliedschaft konnte nicht gekündigt werden. Aktualisierungen wurden nicht durchgeführt."
8016
 
8042
  #: classes/gateways/class.pmprogateway_stripe.php:2632
8043
  #: classes/gateways/class.pmprogateway_stripe.php:2644
8044
  #: classes/gateways/class.pmprogateway_stripe.php:2666
8045
+ #: classes/gateways/class.pmprogateway_stripe.php:2672
8046
  msgid "Could not cancel old subscription."
8047
  msgstr "Das alte Abonnement konnte nicht storniert werden."
8048
 
8071
  #: classes/gateways/class.pmprogateway_stripe.php:2648
8072
  #: classes/gateways/class.pmprogateway_stripe.php:2660
8073
  #: classes/gateways/class.pmprogateway_stripe.php:2682
8074
+ #: classes/gateways/class.pmprogateway_stripe.php:2688
8075
  msgid "Could not find the customer."
8076
  msgstr "Konnte den Kunden nicht finden."
8077
 
8090
  #: classes/gateways/class.pmprogateway_stripe.php:2834
8091
  #: classes/gateways/class.pmprogateway_stripe.php:2850
8092
  #: classes/gateways/class.pmprogateway_stripe.php:2856
8093
+ #: classes/gateways/class.pmprogateway_stripe.php:2862
8094
  msgid "Error: "
8095
  msgstr "Fehler:"
8096
 
8106
  #: classes/gateways/class.pmprogateway_stripe.php:2836
8107
  #: classes/gateways/class.pmprogateway_stripe.php:2848
8108
  #: classes/gateways/class.pmprogateway_stripe.php:2870
8109
+ #: classes/gateways/class.pmprogateway_stripe.php:2876
8110
  #, php-format
8111
  msgid "Error: Unkown error while refunding charge #%s"
8112
  msgstr "Fehler: Unbekannter Fehler bei der Erstattung der Zahlung #%s"
10411
  #: includes/license.php:84
10412
  #: includes/license.php:81
10413
  #: adminpages/license.php:43
10414
+ #: adminpages/license.php:33
10415
  msgid "Paid Memberships Pro Support License"
10416
  msgstr "Paid Memberships Pro Support Lizenz"
10417
 
10433
  #: adminpages/dashboard.php:174
10434
  #: adminpages/license.php:49
10435
  #: adminpages/dashboard.php:178
10436
+ #: adminpages/license.php:41
10437
  msgid "Your license is invalid or expired."
10438
  msgstr "Ihre Lizenz ist ungültig oder abgelaufen."
10439
 
10446
  #: includes/license.php:103
10447
  #: includes/license.php:100
10448
  #: adminpages/license.php:59
10449
+ #: adminpages/license.php:51
10450
  msgid "Enter license key here..."
10451
  msgstr "Lizenzschlüssel hier eingeben..."
10452
 
10613
  #: adminpages/memberslist.php:212
10614
  #: adminpages/advancedsettings.php:316
10615
  #: includes/profile.php:509
10616
+ #: includes/profile.php:515
10617
  msgid "Never"
10618
  msgstr "Nie"
10619
 
10620
  #: includes/privacy.php:182
10621
  #: includes/profile.php:425
10622
  #: includes/profile.php:493
10623
+ #: includes/profile.php:499
10624
  msgid "Level ID"
10625
  msgstr "Paket-ID"
10626
 
10627
  #: includes/privacy.php:190
10628
  #: includes/profile.php:496
10629
+ #: includes/profile.php:502
10630
  msgid "Date Modified"
10631
  msgstr "Änderungsdatum"
10632
 
10633
  #: includes/privacy.php:194
10634
  #: includes/profile.php:497
10635
+ #: includes/profile.php:503
10636
  msgid "End Date"
10637
  msgstr "End-Datum"
10638
 
10639
  #: includes/privacy.php:198
10640
  #: includes/profile.php:498
10641
+ #: includes/profile.php:504
10642
  msgid "Level Cost"
10643
  msgstr "Paket-Preis"
10644
 
10701
  #: adminpages/dashboard.php:224
10702
  #: adminpages/dashboard.php:292
10703
  #: adminpages/orders.php:1343
10704
+ #: includes/profile.php:500
10705
  msgid "Level"
10706
  msgstr "Paket"
10707
 
10996
  #: includes/profile.php:747
10997
  #: pages/billing.php:164
10998
  #: pages/checkout.php:234
10999
+ #: includes/profile.php:759
11000
  msgid "First Name"
11001
  msgstr "Vorname"
11002
 
11025
  #: includes/profile.php:748
11026
  #: pages/billing.php:168
11027
  #: pages/checkout.php:238
11028
+ #: includes/profile.php:760
11029
  msgid "Last Name"
11030
  msgstr "Nachname"
11031
 
12457
  #: services/authnet-silent-post.php:144
12458
  #: services/authnet-silent-post.php:145
12459
  #: services/authnet-silent-post.php:173
12460
+ #: services/authnet-silent-post.php:176
12461
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
12462
  msgstr "<p>Eine Zahlung wird von Authorize.net zur Überprüfung zurückgehalten.</p><p>Zahlungs-Information von Authorize.net"
12463
 
12526
  #: includes/profile.php:872
12527
  #: includes/profile.php:909
12528
  #: shortcodes/pmpro_account.php:195
12529
+ #: includes/profile.php:884
12530
+ #: includes/profile.php:921
12531
  msgid "Change Password"
12532
  msgstr "Passwort ändern"
12533
 
13556
  #: adminpages/dashboard.php:177
13557
  #: adminpages/license.php:51
13558
  #: adminpages/dashboard.php:181
13559
+ #: adminpages/license.php:43
13560
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
13561
  msgstr ""
13562
 
13966
  msgstr ""
13967
 
13968
  #: adminpages/license.php:47
13969
+ #: adminpages/license.php:39
13970
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
13971
  msgstr ""
13972
 
13973
  #: adminpages/license.php:49
13974
+ #: adminpages/license.php:37
13975
+ #: adminpages/license.php:41
13976
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
13977
  msgstr ""
13978
 
13979
  #: adminpages/license.php:61
13980
+ #: adminpages/license.php:53
13981
  msgid "Validate Key"
13982
  msgstr ""
13983
 
13984
  #: adminpages/license.php:95
13985
+ #: adminpages/license.php:87
13986
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
13987
  msgstr ""
13988
 
14737
  msgstr ""
14738
 
14739
  #: classes/gateways/class.pmprogateway_cybersource.php:922
14740
+ #: includes/license.php:159
14741
  msgid "Unknown error."
14742
  msgstr ""
14743
 
14752
  #: classes/gateways/class.pmprogateway_paypal.php:146
14753
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
14754
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
14755
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:165
14756
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
14757
  msgstr ""
14758
 
14759
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
14760
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:356
14761
  msgid "Checkout was already processed."
14762
  msgstr ""
14763
 
14764
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
14765
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:791
14766
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
14767
  msgstr ""
14768
 
14769
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
14770
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:792
14771
  msgid "Error creating plan with PayPal."
14772
  msgstr ""
14773
 
14775
  #: classes/gateways/class.pmprogateway_stripe.php:436
14776
  #: classes/gateways/class.pmprogateway_stripe.php:354
14777
  #: classes/gateways/class.pmprogateway_stripe.php:444
14778
+ #: classes/gateways/class.pmprogateway_stripe.php:360
14779
+ #: classes/gateways/class.pmprogateway_stripe.php:450
14780
  msgid "Stripe Connect Settings"
14781
  msgstr ""
14782
 
14783
  #: classes/gateways/class.pmprogateway_stripe.php:352
14784
  #: classes/gateways/class.pmprogateway_stripe.php:356
14785
+ #: classes/gateways/class.pmprogateway_stripe.php:362
14786
  msgid "Live Mode:"
14787
  msgstr ""
14788
 
14790
  #: classes/gateways/class.pmprogateway_stripe.php:440
14791
  #: classes/gateways/class.pmprogateway_stripe.php:358
14792
  #: classes/gateways/class.pmprogateway_stripe.php:448
14793
+ #: classes/gateways/class.pmprogateway_stripe.php:364
14794
+ #: classes/gateways/class.pmprogateway_stripe.php:454
14795
  msgid "Connected"
14796
  msgstr ""
14797
 
14799
  #: classes/gateways/class.pmprogateway_stripe.php:442
14800
  #: classes/gateways/class.pmprogateway_stripe.php:362
14801
  #: classes/gateways/class.pmprogateway_stripe.php:452
14802
+ #: classes/gateways/class.pmprogateway_stripe.php:368
14803
+ #: classes/gateways/class.pmprogateway_stripe.php:458
14804
  msgid "Not Connected"
14805
  msgstr ""
14806
 
14808
  #: classes/gateways/class.pmprogateway_stripe.php:449
14809
  #: classes/gateways/class.pmprogateway_stripe.php:369
14810
  #: classes/gateways/class.pmprogateway_stripe.php:459
14811
+ #: classes/gateways/class.pmprogateway_stripe.php:375
14812
+ #: classes/gateways/class.pmprogateway_stripe.php:465
14813
  msgid "Your site is using legacy API keys to authenticate with Stripe."
14814
  msgstr ""
14815
 
14816
  #: classes/gateways/class.pmprogateway_stripe.php:364
14817
  #: classes/gateways/class.pmprogateway_stripe.php:371
14818
+ #: classes/gateways/class.pmprogateway_stripe.php:377
14819
  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."
14820
  msgstr ""
14821
 
14823
  #: classes/gateways/class.pmprogateway_stripe.php:458
14824
  #: classes/gateways/class.pmprogateway_stripe.php:380
14825
  #: classes/gateways/class.pmprogateway_stripe.php:470
14826
+ #: classes/gateways/class.pmprogateway_stripe.php:386
14827
+ #: classes/gateways/class.pmprogateway_stripe.php:476
14828
  msgid "Stripe Connection:"
14829
  msgstr ""
14830
 
14832
  #: classes/gateways/class.pmprogateway_stripe.php:482
14833
  #: classes/gateways/class.pmprogateway_stripe.php:396
14834
  #: classes/gateways/class.pmprogateway_stripe.php:494
14835
+ #: classes/gateways/class.pmprogateway_stripe.php:402
14836
+ #: classes/gateways/class.pmprogateway_stripe.php:500
14837
  msgid "Disconnect From Stripe"
14838
  msgstr ""
14839
 
14840
  #: classes/gateways/class.pmprogateway_stripe.php:389
14841
  #: classes/gateways/class.pmprogateway_stripe.php:397
14842
+ #: classes/gateways/class.pmprogateway_stripe.php:403
14843
  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."
14844
  msgstr ""
14845
 
14847
  #: classes/gateways/class.pmprogateway_stripe.php:496
14848
  #: classes/gateways/class.pmprogateway_stripe.php:409
14849
  #: classes/gateways/class.pmprogateway_stripe.php:508
14850
+ #: classes/gateways/class.pmprogateway_stripe.php:415
14851
+ #: classes/gateways/class.pmprogateway_stripe.php:514
14852
  msgid "Connect with Stripe"
14853
  msgstr ""
14854
 
14855
  #: classes/gateways/class.pmprogateway_stripe.php:408
14856
  #: classes/gateways/class.pmprogateway_stripe.php:416
14857
+ #: classes/gateways/class.pmprogateway_stripe.php:422
14858
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
14859
  msgstr ""
14860
 
14861
  #: classes/gateways/class.pmprogateway_stripe.php:411
14862
  #: classes/gateways/class.pmprogateway_stripe.php:419
14863
+ #: classes/gateways/class.pmprogateway_stripe.php:425
14864
  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."
14865
  msgstr ""
14866
 
14871
  #: classes/gateways/class.pmprogateway_stripe.php:519
14872
  #: classes/gateways/class.pmprogateway_stripe.php:559
14873
  #: classes/gateways/class.pmprogateway_stripe.php:578
14874
+ #: classes/gateways/class.pmprogateway_stripe.php:437
14875
+ #: classes/gateways/class.pmprogateway_stripe.php:525
14876
+ #: classes/gateways/class.pmprogateway_stripe.php:584
14877
  msgid "Webhook"
14878
  msgstr ""
14879
 
14884
  #: classes/gateways/class.pmprogateway_stripe.php:523
14885
  #: classes/gateways/class.pmprogateway_stripe.php:594
14886
  #: classes/gateways/class.pmprogateway_stripe.php:613
14887
+ #: classes/gateways/class.pmprogateway_stripe.php:441
14888
+ #: classes/gateways/class.pmprogateway_stripe.php:529
14889
+ #: classes/gateways/class.pmprogateway_stripe.php:619
14890
  msgid "Webhook URL"
14891
  msgstr ""
14892
 
14893
  #: classes/gateways/class.pmprogateway_stripe.php:438
14894
  #: classes/gateways/class.pmprogateway_stripe.php:446
14895
+ #: classes/gateways/class.pmprogateway_stripe.php:452
14896
  msgid "Test Mode:"
14897
  msgstr ""
14898
 
14899
  #: classes/gateways/class.pmprogateway_stripe.php:450
14900
  #: classes/gateways/class.pmprogateway_stripe.php:461
14901
+ #: classes/gateways/class.pmprogateway_stripe.php:467
14902
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
14903
  msgstr ""
14904
 
14905
  #: classes/gateways/class.pmprogateway_stripe.php:483
14906
  #: classes/gateways/class.pmprogateway_stripe.php:495
14907
+ #: classes/gateways/class.pmprogateway_stripe.php:501
14908
  msgid "This will disconnect your site from Stripe in test mode only."
14909
  msgstr ""
14910
 
14911
  #: classes/gateways/class.pmprogateway_stripe.php:518
14912
  #: classes/gateways/class.pmprogateway_stripe.php:530
14913
+ #: classes/gateways/class.pmprogateway_stripe.php:536
14914
  msgid "Stripe API Settings (Legacy)"
14915
  msgstr ""
14916
 
14920
  #: classes/gateways/class.pmprogateway_stripe.php:587
14921
  #: classes/gateways/class.pmprogateway_stripe.php:582
14922
  #: classes/gateways/class.pmprogateway_stripe.php:606
14923
+ #: classes/gateways/class.pmprogateway_stripe.php:588
14924
+ #: classes/gateways/class.pmprogateway_stripe.php:612
14925
  msgid "Create Webhook"
14926
  msgstr ""
14927
 
14928
  #: classes/gateways/class.pmprogateway_stripe.php:557
14929
  #: classes/gateways/class.pmprogateway_stripe.php:569
14930
  #: classes/gateways/class.pmprogateway_stripe.php:588
14931
+ #: classes/gateways/class.pmprogateway_stripe.php:594
14932
  msgid "A webhook is set up in Stripe, but it is disabled."
14933
  msgstr ""
14934
 
14935
  #: classes/gateways/class.pmprogateway_stripe.php:564
14936
  #: classes/gateways/class.pmprogateway_stripe.php:576
14937
  #: classes/gateways/class.pmprogateway_stripe.php:595
14938
+ #: classes/gateways/class.pmprogateway_stripe.php:601
14939
  msgid "A webhook is set up in Stripe, but it is using an old API version."
14940
  msgstr ""
14941
 
14942
  #: classes/gateways/class.pmprogateway_stripe.php:564
14943
  #: classes/gateways/class.pmprogateway_stripe.php:576
14944
  #: classes/gateways/class.pmprogateway_stripe.php:595
14945
+ #: classes/gateways/class.pmprogateway_stripe.php:601
14946
  msgid "Rebuild Webhook"
14947
  msgstr ""
14948
 
14955
  #: classes/gateways/class.pmprogateway_stripe.php:601
14956
  #: classes/gateways/class.pmprogateway_stripe.php:741
14957
  #: classes/gateways/class.pmprogateway_stripe.php:857
14958
+ #: classes/gateways/class.pmprogateway_stripe.php:607
14959
+ #: classes/gateways/class.pmprogateway_stripe.php:747
14960
+ #: classes/gateways/class.pmprogateway_stripe.php:863
14961
  msgid "Your webhook is enabled."
14962
  msgstr ""
14963
 
14964
  #: classes/gateways/class.pmprogateway_stripe.php:570
14965
  #: classes/gateways/class.pmprogateway_stripe.php:582
14966
  #: classes/gateways/class.pmprogateway_stripe.php:601
14967
+ #: classes/gateways/class.pmprogateway_stripe.php:607
14968
  msgid "Disable Webhook"
14969
  msgstr ""
14970
 
14980
  #: classes/gateways/class.pmprogateway_stripe.php:768
14981
  #: classes/gateways/class.pmprogateway_stripe.php:785
14982
  #: classes/gateways/class.pmprogateway_stripe.php:819
14983
+ #: classes/gateways/class.pmprogateway_stripe.php:614
14984
+ #: classes/gateways/class.pmprogateway_stripe.php:774
14985
+ #: classes/gateways/class.pmprogateway_stripe.php:791
14986
+ #: classes/gateways/class.pmprogateway_stripe.php:825
14987
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
14988
  msgstr ""
14989
 
14990
  #: classes/gateways/class.pmprogateway_stripe.php:589
14991
  #: classes/gateways/class.pmprogateway_stripe.php:601
14992
  #: classes/gateways/class.pmprogateway_stripe.php:620
14993
+ #: classes/gateways/class.pmprogateway_stripe.php:626
14994
  msgid "Other Stripe Settings"
14995
  msgstr ""
14996
 
14997
  #: classes/gateways/class.pmprogateway_stripe.php:593
14998
  #: classes/gateways/class.pmprogateway_stripe.php:605
14999
  #: classes/gateways/class.pmprogateway_stripe.php:624
15000
+ #: classes/gateways/class.pmprogateway_stripe.php:630
15001
  msgid "Stripe API Version"
15002
  msgstr ""
15003
 
15004
  #: classes/gateways/class.pmprogateway_stripe.php:612
15005
  #: classes/gateways/class.pmprogateway_stripe.php:624
15006
  #: classes/gateways/class.pmprogateway_stripe.php:643
15007
+ #: classes/gateways/class.pmprogateway_stripe.php:649
15008
  msgid "Enable Payment Request Button"
15009
  msgstr ""
15010
 
15011
  #: classes/gateways/class.pmprogateway_stripe.php:630
15012
  #: classes/gateways/class.pmprogateway_stripe.php:642
15013
  #: classes/gateways/class.pmprogateway_stripe.php:661
15014
+ #: classes/gateways/class.pmprogateway_stripe.php:667
15015
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
15016
  msgstr ""
15017
 
15018
  #: classes/gateways/class.pmprogateway_stripe.php:643
15019
  #: classes/gateways/class.pmprogateway_stripe.php:655
15020
  #: classes/gateways/class.pmprogateway_stripe.php:674
15021
+ #: classes/gateways/class.pmprogateway_stripe.php:680
15022
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
15023
  msgstr ""
15024
 
15025
  #: classes/gateways/class.pmprogateway_stripe.php:645
15026
  #: classes/gateways/class.pmprogateway_stripe.php:657
15027
  #: classes/gateways/class.pmprogateway_stripe.php:676
15028
+ #: classes/gateways/class.pmprogateway_stripe.php:682
15029
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
15030
  msgstr ""
15031
 
15032
  #: classes/gateways/class.pmprogateway_stripe.php:647
15033
  #: classes/gateways/class.pmprogateway_stripe.php:659
15034
  #: classes/gateways/class.pmprogateway_stripe.php:678
15035
+ #: classes/gateways/class.pmprogateway_stripe.php:684
15036
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
15037
  msgstr ""
15038
 
15039
  #: classes/gateways/class.pmprogateway_stripe.php:649
15040
  #: classes/gateways/class.pmprogateway_stripe.php:661
15041
  #: classes/gateways/class.pmprogateway_stripe.php:680
15042
+ #: classes/gateways/class.pmprogateway_stripe.php:686
15043
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
15044
  msgstr ""
15045
 
15046
  #: classes/gateways/class.pmprogateway_stripe.php:674
15047
  #: classes/gateways/class.pmprogateway_stripe.php:686
15048
  #: classes/gateways/class.pmprogateway_stripe.php:705
15049
+ #: classes/gateways/class.pmprogateway_stripe.php:711
15050
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
15051
  msgstr ""
15052
 
15053
  #: classes/gateways/class.pmprogateway_stripe.php:695
15054
  #: classes/gateways/class.pmprogateway_stripe.php:707
15055
  #: classes/gateways/class.pmprogateway_stripe.php:726
15056
+ #: classes/gateways/class.pmprogateway_stripe.php:732
15057
  msgid "Webhook creation failed. You might already have a webhook set up."
15058
  msgstr ""
15059
 
15063
  #: classes/gateways/class.pmprogateway_stripe.php:847
15064
  #: classes/gateways/class.pmprogateway_stripe.php:792
15065
  #: classes/gateways/class.pmprogateway_stripe.php:866
15066
+ #: classes/gateways/class.pmprogateway_stripe.php:798
15067
+ #: classes/gateways/class.pmprogateway_stripe.php:872
15068
  msgid "There was an error deleting the webhook."
15069
  msgstr ""
15070
 
15071
  #: classes/gateways/class.pmprogateway_stripe.php:811
15072
  #: classes/gateways/class.pmprogateway_stripe.php:823
15073
  #: classes/gateways/class.pmprogateway_stripe.php:842
15074
+ #: classes/gateways/class.pmprogateway_stripe.php:848
15075
  msgid "Webhook creation failed. Please refresh and try again."
15076
  msgstr ""
15077
 
15078
  #: classes/gateways/class.pmprogateway_stripe.php:867
15079
  #: classes/gateways/class.pmprogateway_stripe.php:879
15080
  #: classes/gateways/class.pmprogateway_stripe.php:898
15081
+ #: classes/gateways/class.pmprogateway_stripe.php:904
15082
  msgid "Verification steps confirmed. Your payment is processing."
15083
  msgstr ""
15084
 
15085
  #: classes/gateways/class.pmprogateway_stripe.php:1262
15086
  #: classes/gateways/class.pmprogateway_stripe.php:1274
15087
  #: classes/gateways/class.pmprogateway_stripe.php:1293
15088
+ #: classes/gateways/class.pmprogateway_stripe.php:1299
15089
  msgid "Pay with Credit Card"
15090
  msgstr ""
15091
 
15092
  #: classes/gateways/class.pmprogateway_stripe.php:1296
15093
  #: classes/gateways/class.pmprogateway_stripe.php:1308
15094
  #: classes/gateways/class.pmprogateway_stripe.php:1327
15095
+ #: classes/gateways/class.pmprogateway_stripe.php:1333
15096
  msgid "CVC"
15097
  msgstr ""
15098
 
15108
  #: classes/gateways/class.pmprogateway_stripe.php:2016
15109
  #: classes/gateways/class.pmprogateway_stripe.php:2029
15110
  #: classes/gateways/class.pmprogateway_stripe.php:2033
15111
+ #: classes/gateways/class.pmprogateway_stripe.php:2018
15112
+ #: classes/gateways/class.pmprogateway_stripe.php:2022
15113
+ #: classes/gateways/class.pmprogateway_stripe.php:2035
15114
+ #: classes/gateways/class.pmprogateway_stripe.php:2039
15115
  msgid "Error: %s"
15116
  msgstr ""
15117
 
15118
  #: classes/gateways/class.pmprogateway_stripe.php:3330
15119
  #: classes/gateways/class.pmprogateway_stripe.php:3342
15120
  #: classes/gateways/class.pmprogateway_stripe.php:3364
15121
+ #: classes/gateways/class.pmprogateway_stripe.php:3370
15122
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
15123
  msgstr ""
15124
 
15125
  #: classes/gateways/class.pmprogateway_stripe.php:3347
15126
  #: classes/gateways/class.pmprogateway_stripe.php:3359
15127
  #: classes/gateways/class.pmprogateway_stripe.php:3381
15128
+ #: classes/gateways/class.pmprogateway_stripe.php:3387
15129
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
15130
  msgstr ""
15131
 
15132
  #: classes/gateways/class.pmprogateway_stripe.php:3533
15133
  #: classes/gateways/class.pmprogateway_stripe.php:3545
15134
  #: classes/gateways/class.pmprogateway_stripe.php:3567
15135
+ #: classes/gateways/class.pmprogateway_stripe.php:3573
15136
  msgid "Invalid response from the Stripe Connect server."
15137
  msgstr ""
15138
 
15140
  #: classes/gateways/class.pmprogateway_stripe.php:3561
15141
  #: classes/gateways/class.pmprogateway_stripe.php:3573
15142
  #: classes/gateways/class.pmprogateway_stripe.php:3595
15143
+ #: classes/gateways/class.pmprogateway_stripe.php:3601
15144
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
15145
  msgstr ""
15146
 
15148
  #: classes/gateways/class.pmprogateway_stripe.php:3597
15149
  #: classes/gateways/class.pmprogateway_stripe.php:3609
15150
  #: classes/gateways/class.pmprogateway_stripe.php:3631
15151
+ #: classes/gateways/class.pmprogateway_stripe.php:3637
15152
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
15153
  msgstr ""
15154
 
15155
  #: classes/gateways/class.pmprogateway_stripe.php:3768
15156
  #: classes/gateways/class.pmprogateway_stripe.php:3780
15157
  #: classes/gateways/class.pmprogateway_stripe.php:3802
15158
+ #: classes/gateways/class.pmprogateway_stripe.php:3808
15159
  msgid "Last webhook received at"
15160
  msgstr ""
15161
 
15162
  #: classes/gateways/class.pmprogateway_stripe.php:3770
15163
  #: classes/gateways/class.pmprogateway_stripe.php:3782
15164
  #: classes/gateways/class.pmprogateway_stripe.php:3804
15165
+ #: classes/gateways/class.pmprogateway_stripe.php:3810
15166
  msgid "No webhooks have been received."
15167
  msgstr ""
15168
 
15169
  #: classes/gateways/class.pmprogateway_stripe.php:3774
15170
  #: classes/gateways/class.pmprogateway_stripe.php:3786
15171
  #: classes/gateways/class.pmprogateway_stripe.php:3808
15172
+ #: classes/gateways/class.pmprogateway_stripe.php:3814
15173
  msgid "Your webhook may not be working correctly."
15174
  msgstr ""
15175
 
15176
  #: classes/gateways/class.pmprogateway_stripe.php:3776
15177
  #: classes/gateways/class.pmprogateway_stripe.php:3788
15178
  #: classes/gateways/class.pmprogateway_stripe.php:3810
15179
+ #: classes/gateways/class.pmprogateway_stripe.php:3816
15180
  msgid "Click here for info on setting up your webhook with Stripe."
15181
  msgstr ""
15182
 
16175
 
16176
  #: includes/login.php:429
16177
  #: includes/profile.php:843
16178
+ #: includes/profile.php:855
16179
  msgid "New passwords do not match."
16180
  msgstr ""
16181
 
16182
  #: includes/login.php:433
16183
  #: includes/profile.php:839
16184
+ #: includes/profile.php:851
16185
  msgid "Please complete all fields."
16186
  msgstr ""
16187
 
16211
 
16212
  #: includes/login.php:688
16213
  #: includes/profile.php:891
16214
+ #: includes/profile.php:903
16215
  msgid "New Password"
16216
  msgstr ""
16217
 
16218
  #: includes/login.php:690
16219
  #: includes/profile.php:894
16220
  #: includes/scripts.php:86
16221
+ #: includes/profile.php:906
16222
+ #: includes/scripts.php:85
16223
  msgid "Strength Indicator"
16224
  msgstr ""
16225
 
16226
  #: includes/login.php:694
16227
  #: includes/profile.php:898
16228
+ #: includes/profile.php:910
16229
  msgid "Confirm New Password"
16230
  msgstr ""
16231
 
16306
  msgstr ""
16307
 
16308
  #: includes/profile.php:485
16309
+ #: includes/profile.php:488
16310
  msgid "No membership orders found."
16311
  msgstr ""
16312
 
16313
  #: includes/profile.php:537
16314
+ #: includes/profile.php:546
16315
  msgid "No membership history found."
16316
  msgstr ""
16317
 
16318
  #: includes/profile.php:644
16319
+ #: includes/profile.php:656
16320
  msgid "Log in to edit your profile."
16321
  msgstr ""
16322
 
16323
  #: includes/profile.php:679
16324
+ #: includes/profile.php:691
16325
  msgid "Please enter a display name."
16326
  msgstr ""
16327
 
16328
  #: includes/profile.php:689
16329
+ #: includes/profile.php:701
16330
  msgid "Please enter an email address."
16331
  msgstr ""
16332
 
16333
  #: includes/profile.php:691
16334
+ #: includes/profile.php:703
16335
  msgid "The email address isn&#8217;t correct."
16336
  msgstr ""
16337
 
16338
  #: includes/profile.php:695
16339
+ #: includes/profile.php:707
16340
  msgid "This email is already registered, please choose another one."
16341
  msgstr ""
16342
 
16343
  #: includes/profile.php:722
16344
+ #: includes/profile.php:734
16345
  msgid "Your profile has been updated."
16346
  msgstr ""
16347
 
16348
  #: includes/profile.php:749
16349
+ #: includes/profile.php:761
16350
  msgid "Display name publicly as"
16351
  msgstr ""
16352
 
16353
  #: includes/profile.php:762
16354
+ #: includes/profile.php:774
16355
  msgid "Site administrators must use the WordPress dashboard to update their email address."
16356
  msgstr ""
16357
 
16358
  #: includes/profile.php:785
16359
+ #: includes/profile.php:797
16360
  msgid "Update Profile"
16361
  msgstr ""
16362
 
16363
  #: includes/profile.php:841
16364
+ #: includes/profile.php:853
16365
  msgid "Please enter your current password."
16366
  msgstr ""
16367
 
16368
  #: includes/profile.php:845
16369
+ #: includes/profile.php:857
16370
  msgid "Your current password is incorrect."
16371
  msgstr ""
16372
 
16373
  #: includes/profile.php:856
16374
+ #: includes/profile.php:868
16375
  msgid "Your password has been updated."
16376
  msgstr ""
16377
 
16378
  #: includes/profile.php:886
16379
+ #: includes/profile.php:898
16380
  msgid "Current Password"
16381
  msgstr ""
16382
 
16383
  #: includes/profile.php:888
16384
  #: includes/profile.php:893
16385
  #: includes/profile.php:900
16386
+ #: includes/profile.php:905
16387
+ #: includes/profile.php:912
16388
  msgid "Required Field"
16389
  msgstr ""
16390
 
16453
  msgstr ""
16454
 
16455
  #: services/braintree-webhook.php:425
16456
+ #: services/braintree-webhook.php:426
16457
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
16458
  msgstr ""
16459
 
16460
  #: services/braintree-webhook.php:427
16461
+ #: services/braintree-webhook.php:428
16462
  msgid "A member's Braintree subscription has expired at %s"
16463
  msgstr ""
16464
 
16777
 
16778
  #: classes/gateways/class.pmprogateway_stripe.php:360
16779
  #: classes/gateways/class.pmprogateway_stripe.php:450
16780
+ #: classes/gateways/class.pmprogateway_stripe.php:366
16781
+ #: classes/gateways/class.pmprogateway_stripe.php:456
16782
  msgid "Connected with Legacy Keys"
16783
  msgstr ""
16784
 
16785
  #: classes/gateways/class.pmprogateway_stripe.php:370
16786
  #: classes/gateways/class.pmprogateway_stripe.php:460
16787
+ #: classes/gateways/class.pmprogateway_stripe.php:376
16788
+ #: classes/gateways/class.pmprogateway_stripe.php:466
16789
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
16790
  msgstr ""
16791
 
16792
  #: classes/gateways/class.pmprogateway_stripe.php:372
16793
  #: classes/gateways/class.pmprogateway_stripe.php:462
16794
+ #: classes/gateways/class.pmprogateway_stripe.php:378
16795
+ #: classes/gateways/class.pmprogateway_stripe.php:468
16796
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
16797
  msgstr ""
16798
 
16849
  msgstr ""
16850
 
16851
  #: classes/gateways/class.pmprogateway_stripe.php:533
16852
+ #: classes/gateways/class.pmprogateway_stripe.php:539
16853
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
16854
  msgstr ""
16855
 
16856
  #: classes/gateways/class.pmprogateway_stripe.php:534
16857
+ #: classes/gateways/class.pmprogateway_stripe.php:540
16858
  msgid "Click here to use the legacy API settings."
16859
  msgstr ""
16860
+
16861
+ #: adminpages/license.php:37
16862
+ msgid "There was an issue validating your license key: %s"
16863
+ msgstr ""
16864
+
16865
+ #: includes/email-templates.php:172
16866
+ msgid ""
16867
+ "<p>There was a new member checkout at !!sitename!!.</p>\n"
16868
+ "\n"
16869
+ "<p><strong>They have chosen to pay by check.</strong></p>\n"
16870
+ "\n"
16871
+ "<p>Below are details about the new membership account and a receipt for the initial membership invoice.</p>\n"
16872
+ "\n"
16873
+ "<p>Account: !!display_name!! (!!user_email!!)</p>\n"
16874
+ "<p>Membership Level: !!membership_level_name!!</p>\n"
16875
+ "<p>Membership Fee: !!membership_cost!!</p>\n"
16876
+ "!!membership_expiration!! !!discount_code!!\n"
16877
+ "\n"
16878
+ "<p>\n"
16879
+ "\tInvoice #!!invoice_id!! on !!invoice_date!!<br />\n"
16880
+ "\tTotal Billed: !!invoice_total!!\n"
16881
+ "</p>\n"
16882
+ "\n"
16883
+ "<p>Log in to your membership account here: !!login_url!!</p>"
16884
+ msgstr ""
16885
+
16886
+ #: includes/license.php:112
16887
+ msgid "Missing key."
16888
+ msgstr ""
16889
+
16890
+ #: shortcodes/pmpro_account.php:145
16891
+ msgctxt "A dash is shown when there is no expiration date."
16892
+ msgid "&#8212;"
16893
+ msgstr ""
languages/paid-memberships-pro-el_GR.mo CHANGED
Binary file
languages/paid-memberships-pro-el_GR.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.2\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-09-17T13:57:04+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -262,6 +262,9 @@ msgstr "WordPress.org"
262
  #: adminpages/orders.php:1544
263
  #: adminpages/orders.php:1554
264
  #: adminpages/orders.php:1553
 
 
 
265
  msgid "N/A"
266
  msgstr "N/A"
267
 
@@ -445,6 +448,7 @@ msgstr "Τρόποι Πληρωμής &amp; SSL"
445
  #: adminpages/orders.php:391
446
  #: adminpages/orders.php:1445
447
  #: adminpages/orders.php:1448
 
448
  msgid "Email"
449
  msgstr "Email"
450
 
@@ -633,6 +637,8 @@ msgstr "Απόκρυψη Διαφημίσεων από συνδρομητές; "
633
  #: adminpages/advancedsettings.php:479
634
  #: classes/gateways/class.pmprogateway_stripe.php:634
635
  #: classes/gateways/class.pmprogateway_stripe.php:648
 
 
636
  msgid "No"
637
  msgstr "Όχι"
638
 
@@ -731,6 +737,8 @@ msgstr "multisite μόνο"
731
  #: adminpages/advancedsettings.php:397
732
  #: classes/gateways/class.pmprogateway_stripe.php:636
733
  #: classes/gateways/class.pmprogateway_stripe.php:650
 
 
734
  msgid "Yes"
735
  msgstr "Ναι"
736
 
@@ -1032,6 +1040,7 @@ msgstr "Κωδικός"
1032
  #: includes/privacy.php:186
1033
  #: includes/profile.php:495
1034
  #: adminpages/discountcodes.php:489
 
1035
  msgid "Start Date"
1036
  msgstr "Ημερομηνία έναρξης"
1037
 
@@ -1070,6 +1079,7 @@ msgstr "Ημερομηνία έναρξης"
1070
  #: classes/gateways/class.pmprogateway_stripe.php:1301
1071
  #: adminpages/discountcodes.php:507
1072
  #: classes/gateways/class.pmprogateway_stripe.php:1320
 
1073
  msgid "Expiration Date"
1074
  msgstr "Ημερομηνία λήξης"
1075
 
@@ -1221,6 +1231,7 @@ msgstr "Ποσό Χρέωσης"
1221
  #: adminpages/discountcodes.php:612
1222
  #: adminpages/discountcodes.php:699
1223
  #: classes/gateways/class.pmprogateway_stripe.php:1363
 
1224
  msgid "Day(s)"
1225
  msgstr "Ημέρες(s)"
1226
 
@@ -1257,6 +1268,7 @@ msgstr "Ημέρες(s)"
1257
  #: adminpages/discountcodes.php:612
1258
  #: adminpages/discountcodes.php:699
1259
  #: classes/gateways/class.pmprogateway_stripe.php:1365
 
1260
  msgid "Month(s)"
1261
  msgstr "Μήνες(s)"
1262
 
@@ -1293,6 +1305,7 @@ msgstr "Μήνες(s)"
1293
  #: adminpages/discountcodes.php:612
1294
  #: adminpages/discountcodes.php:699
1295
  #: classes/gateways/class.pmprogateway_stripe.php:1364
 
1296
  msgid "Week(s)"
1297
  msgstr "Εβδομάδες(s)"
1298
 
@@ -1329,6 +1342,7 @@ msgstr "Εβδομάδες(s)"
1329
  #: adminpages/discountcodes.php:612
1330
  #: adminpages/discountcodes.php:699
1331
  #: classes/gateways/class.pmprogateway_stripe.php:1366
 
1332
  msgid "Year(s)"
1333
  msgstr "Χρόνια(s)"
1334
 
@@ -1951,6 +1965,7 @@ msgstr "Λεπτομέριες Πληρωμής"
1951
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1952
  #: adminpages/discountcodes.php:608
1953
  #: classes/gateways/class.pmprogateway_stripe.php:1497
 
1954
  msgid "per"
1955
  msgstr "το"
1956
 
@@ -2167,6 +2182,8 @@ msgstr "Αποθηκεύστε το Επίπεδο"
2167
  #: pages/cancel.php:96
2168
  #: shortcodes/pmpro_account.php:106
2169
  #: adminpages/orders.php:968
 
 
2170
  msgid "Cancel"
2171
  msgstr "Ακύρωση"
2172
 
@@ -2850,6 +2867,7 @@ msgstr "π.χ. PayPal Express, PayPal Standard, Credit Card."
2850
  #: adminpages/orders.php:679
2851
  #: classes/gateways/class.pmprogateway_stripe.php:1284
2852
  #: classes/gateways/class.pmprogateway_stripe.php:1303
 
2853
  msgid "Card Type"
2854
  msgstr "Τύπος Κάρτας"
2855
 
@@ -2930,6 +2948,7 @@ msgstr "Έτος λήξης"
2930
  #: adminpages/dashboard.php:294
2931
  #: adminpages/orders.php:742
2932
  #: adminpages/orders.php:1348
 
2933
  msgid "Status"
2934
  msgstr "Κατάσταση"
2935
 
@@ -4369,6 +4388,7 @@ msgstr "Η επιβεβαίωση της συνδρομή σας για %s"
4369
  #: classes/class.pmproemail.php:769
4370
  #: classes/class.pmproemail.php:771
4371
  #: classes/gateways/class.pmprogateway_stripe.php:1333
 
4372
  msgid "Discount Code"
4373
  msgstr "Εκπτωτικός Κωδικός"
4374
 
@@ -4844,6 +4864,7 @@ msgstr "To fully integrate with Braintree, be sure to set your Web Hook URL to"
4844
  #: pages/checkout.php:366
4845
  #: classes/gateways/class.pmprogateway_stripe.php:1263
4846
  #: classes/gateways/class.pmprogateway_stripe.php:1282
 
4847
  msgid "Payment Information"
4848
  msgstr "Πληροφορίες Πληρωμής"
4849
 
@@ -4870,6 +4891,7 @@ msgstr "Πληροφορίες Πληρωμής"
4870
  #: pages/checkout.php:367
4871
  #: classes/gateways/class.pmprogateway_stripe.php:1264
4872
  #: classes/gateways/class.pmprogateway_stripe.php:1283
 
4873
  #, php-format
4874
  msgid "We Accept %s"
4875
  msgstr "Δεχόμαστε %s"
@@ -4903,6 +4925,7 @@ msgstr "Δεχόμαστε %s"
4903
  #: pages/checkout.php:389
4904
  #: classes/gateways/class.pmprogateway_stripe.php:1297
4905
  #: classes/gateways/class.pmprogateway_stripe.php:1316
 
4906
  msgid "Card Number"
4907
  msgstr "Αριθμός Κάρτας"
4908
 
@@ -4995,6 +5018,7 @@ msgstr "τι είναι αυτό;"
4995
  #: pages/checkout.php:432
4996
  #: classes/gateways/class.pmprogateway_stripe.php:1319
4997
  #: classes/gateways/class.pmprogateway_stripe.php:1338
 
4998
  msgid "Apply"
4999
  msgstr "Εφαρμογή"
5000
 
@@ -5259,6 +5283,7 @@ msgstr "PayPal Website Payments Pro"
5259
  #: classes/gateways/class.pmprogateway_paypal.php:132
5260
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
5261
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
 
5262
  msgid "PayPal Settings"
5263
  msgstr "Ρυθμίσεις PayPal"
5264
 
@@ -5280,6 +5305,7 @@ msgstr "We do not recommend using PayPal Standard. We suggest using PayPal Expre
5280
  #: classes/gateways/class.pmprogateway_paypal.php:153
5281
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
5282
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
 
5283
  msgid "Gateway Account Email"
5284
  msgstr "Gateway Account Email"
5285
 
@@ -5299,6 +5325,7 @@ msgstr "Gateway Account Email"
5299
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
5300
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
5301
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
 
5302
  msgid "API Username"
5303
  msgstr "Όνομα Χρήση API"
5304
 
@@ -5318,6 +5345,7 @@ msgstr "Όνομα Χρήση API"
5318
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
5319
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
5320
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
 
5321
  msgid "API Password"
5322
  msgstr "Κωδικός API"
5323
 
@@ -5331,6 +5359,7 @@ msgstr "Κωδικός API"
5331
  #: classes/gateways/class.pmprogateway_paypal.php:177
5332
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
5333
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
 
5334
  msgid "API Signature"
5335
  msgstr "Υπογραφή API"
5336
 
@@ -5345,6 +5374,7 @@ msgstr "Υπογραφή API"
5345
  #: classes/gateways/class.pmprogateway_paypal.php:196
5346
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
5347
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
 
5348
  msgid "IPN Handler URL"
5349
  msgstr "IPN Handler URL"
5350
 
@@ -5370,6 +5400,7 @@ msgstr "This URL is passed to PayPal for all new charges and subscriptions. You
5370
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
5371
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
5372
  #: pages/checkout.php:218
 
5373
  msgid "Check Out with PayPal"
5374
  msgstr "Πληρωμή με PayPal"
5375
 
@@ -5390,6 +5421,7 @@ msgstr "Πληρωμή με PayPal"
5390
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
5391
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5392
  #: pages/checkout.php:526
 
5393
  msgid "Submit and Check Out"
5394
  msgstr "Υποβολή και Πληρωμή"
5395
 
@@ -5414,6 +5446,7 @@ msgstr "Υποβολή και Πληρωμή"
5414
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5415
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
5416
  #: pages/checkout.php:526
 
5417
  msgid "Submit and Confirm"
5418
  msgstr "Υποβολή και Επιβεβαίωση"
5419
 
@@ -5436,6 +5469,7 @@ msgstr "Υποβολή και Επιβεβαίωση"
5436
  #: classes/gateways/class.pmprogateway_paypal.php:716
5437
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
5438
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
 
5439
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
5440
  msgstr "Παρακαλούμε επικοινωνήστε με τον ιδιοκτήτη της σελίδας ή ακυρώστε την συνδρομή σας εντός του PayPal ώστε να σιγουρευτείτε πως δεν θα έχετε μελλοντικές χρεώσεις."
5441
 
@@ -5450,6 +5484,7 @@ msgstr "Παρακαλούμε επικοινωνήστε με τον ιδιοκ
5450
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
5451
  #: paid-memberships-pro.php:160
5452
  #: paid-memberships-pro.php:162
 
5453
  msgid "PayPal Express"
5454
  msgstr "PayPal Express"
5455
 
@@ -5461,6 +5496,7 @@ msgstr "PayPal Express"
5461
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
5462
  #: classes/gateways/class.pmprogateway_paypal.php:199
5463
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
 
5464
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
5465
  msgstr "Για πλήρη ενσωμάτωση του PayPal, σιγουρευτείτε ότι έχετε ορίσει το IPN Handler URL στο"
5466
 
@@ -5482,6 +5518,8 @@ msgstr "Για πλήρη ενσωμάτωση του PayPal, σιγουρευτ
5482
  #: preheaders/checkout.php:823
5483
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
5484
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
 
 
5485
  msgid "The PayPal Token was lost."
5486
  msgstr "Χάθηκε το PayPal Token."
5487
 
@@ -5521,6 +5559,7 @@ msgstr "The %s gateway depends on the %s PHP extension. Please enable it, or ask
5521
  #: classes/gateways/class.pmprogateway_stripe.php:252
5522
  #: paid-memberships-pro.php:159
5523
  #: paid-memberships-pro.php:161
 
5524
  msgid "Stripe"
5525
  msgstr "Stripe"
5526
 
@@ -5541,6 +5580,7 @@ msgstr "Ρυθμίσεις Stripe"
5541
  #: classes/gateways/class.pmprogateway_stripe.php:539
5542
  #: classes/gateways/class.pmprogateway_stripe.php:551
5543
  #: classes/gateways/class.pmprogateway_stripe.php:570
 
5544
  msgid "Secret Key"
5545
  msgstr "Κρυφό Κλειδί"
5546
 
@@ -5554,6 +5594,7 @@ msgstr "Κρυφό Κλειδί"
5554
  #: classes/gateways/class.pmprogateway_stripe.php:523
5555
  #: classes/gateways/class.pmprogateway_stripe.php:535
5556
  #: classes/gateways/class.pmprogateway_stripe.php:554
 
5557
  msgid "Publishable Key"
5558
  msgstr "Δημοσιεύσιμο Κλειδί"
5559
 
@@ -5567,6 +5608,7 @@ msgstr "Δημοσιεύσιμο Κλειδί"
5567
  #: classes/gateways/class.pmprogateway_stripe.php:598
5568
  #: classes/gateways/class.pmprogateway_stripe.php:610
5569
  #: classes/gateways/class.pmprogateway_stripe.php:629
 
5570
  msgid "Show Billing Address Fields"
5571
  msgstr "Εμφάνιση των Πεδίων Διεύθυνση Λογαριασμού"
5572
 
@@ -5579,6 +5621,7 @@ msgstr "Εμφάνιση των Πεδίων Διεύθυνση Λογαριασ
5579
  #: classes/gateways/class.pmprogateway_stripe.php:607
5580
  #: classes/gateways/class.pmprogateway_stripe.php:619
5581
  #: classes/gateways/class.pmprogateway_stripe.php:638
 
5582
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
5583
  msgstr "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
5584
 
@@ -5602,6 +5645,7 @@ msgstr "To fully integrate with Stripe, be sure to set your Web Hook URL to"
5602
  #: classes/gateways/class.pmprogateway_stripe.php:1379
5603
  #: classes/gateways/class.pmprogateway_stripe.php:1391
5604
  #: classes/gateways/class.pmprogateway_stripe.php:1410
 
5605
  msgid "Subscription Updates"
5606
  msgstr "Ενημερώσεις Συνδρομής"
5607
 
@@ -5614,6 +5658,7 @@ msgstr "Ενημερώσεις Συνδρομής"
5614
  #: classes/gateways/class.pmprogateway_stripe.php:1383
5615
  #: classes/gateways/class.pmprogateway_stripe.php:1395
5616
  #: classes/gateways/class.pmprogateway_stripe.php:1414
 
5617
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
5618
  msgstr "Οι ενημερώσεις της συνδρομής, σας επιτρέπουν να αλλάξετε τις τιμές της συνδρομής του μέλους σε προκαθορισμένα χρονικά διαστήματα. Σιγουρευτείτε πως έχετε κλικάρει Update Profile μετά από την πραγματοποίση των αλλαγών."
5619
 
@@ -5626,6 +5671,7 @@ msgstr "Οι ενημερώσεις της συνδρομής, σας επιτρ
5626
  #: classes/gateways/class.pmprogateway_stripe.php:1385
5627
  #: classes/gateways/class.pmprogateway_stripe.php:1397
5628
  #: classes/gateways/class.pmprogateway_stripe.php:1416
 
5629
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
5630
  msgstr "Οι ενημερώσεις της συνδρομής, σας επιτρέπουν να αλλάξετε τις τιμές της συνδρομής του μέλους σε προκαθορισμένα χρονικά διαστήματα. Σιγουρευτείτε πως έχετε κλικάρει Update User μετά από την πραγματοποίση των αλλαγών."
5631
 
@@ -5646,6 +5692,7 @@ msgstr "Οι ενημερώσεις της συνδρομής, σας επιτρ
5646
  #: pages/billing.php:425
5647
  #: classes/gateways/class.pmprogateway_stripe.php:1403
5648
  #: classes/gateways/class.pmprogateway_stripe.php:1422
 
5649
  msgid "Update"
5650
  msgstr "Ενημέρωση"
5651
 
@@ -5658,6 +5705,7 @@ msgstr "Ενημέρωση"
5658
  #: classes/gateways/class.pmprogateway_stripe.php:2480
5659
  #: classes/gateways/class.pmprogateway_stripe.php:2492
5660
  #: classes/gateways/class.pmprogateway_stripe.php:2514
 
5661
  msgid "Could not cancel the old subscription. Updates have not been processed."
5662
  msgstr "Αδυναμία ακύρωσης παλιάς συνδρομής. Οι ενημερώσεις δεν έχουν υποστεί επεξεργασία."
5663
 
@@ -5684,6 +5732,9 @@ msgstr "Αδυναμία ακύρωσης παλιάς συνδρομής. Οι
5684
  #: classes/gateways/class.pmprogateway_stripe.php:2127
5685
  #: classes/gateways/class.pmprogateway_stripe.php:2132
5686
  #: classes/gateways/class.pmprogateway_stripe.php:2137
 
 
 
5687
  msgid "Error creating customer record with Stripe:"
5688
  msgstr "Σφάλμα κατά την δημιουργία αρχείου πελάτη με το Stripe:"
5689
 
@@ -5697,6 +5748,8 @@ msgstr "Σφάλμα κατά την δημιουργία αρχείου πελ
5697
  #: classes/gateways/class.pmprogateway_stripe.php:2182
5698
  #: classes/gateways/class.pmprogateway_stripe.php:2196
5699
  #: classes/gateways/class.pmprogateway_stripe.php:2201
 
 
5700
  msgid "Error getting subscription with Stripe:"
5701
  msgstr "Σφάλμα παραλαβής συνδρομής με το Stripe:"
5702
 
@@ -5728,6 +5781,8 @@ msgstr "Σφάλμα παραλαβής συνδρομής με το Stripe:"
5728
  #: classes/gateways/class.pmprogateway_stripe.php:2356
5729
  #: classes/gateways/class.pmprogateway_stripe.php:2373
5730
  #: classes/gateways/class.pmprogateway_stripe.php:2378
 
 
5731
  msgid "Error creating plan with Stripe:"
5732
  msgstr "Σφάλμα δημιουργίας πλάνου με το Stripe:"
5733
 
@@ -5754,6 +5809,8 @@ msgstr "Σφάλμα δημιουργίας πλάνου με το Stripe:"
5754
  #: classes/gateways/class.pmprogateway_stripe.php:2401
5755
  #: classes/gateways/class.pmprogateway_stripe.php:2409
5756
  #: classes/gateways/class.pmprogateway_stripe.php:2423
 
 
5757
  msgid "Error subscribing customer to plan with Stripe:"
5758
  msgstr "Σφάλμα κατά την συνδρομή του πελάτη σε πλάνο με το Stripe:"
5759
 
@@ -5774,6 +5831,7 @@ msgstr "Σφάλμα κατά την συνδρομή του πελάτη σε
5774
  #: classes/gateways/class.pmprogateway_stripe.php:2632
5775
  #: classes/gateways/class.pmprogateway_stripe.php:2644
5776
  #: classes/gateways/class.pmprogateway_stripe.php:2666
 
5777
  msgid "Could not cancel old subscription."
5778
  msgstr "Αδυναμία ακύρωσης παλιάς συνδρομής."
5779
 
@@ -5791,6 +5849,7 @@ msgstr "Αδυναμία ακύρωσης παλιάς συνδρομής."
5791
  #: classes/gateways/class.pmprogateway_stripe.php:2648
5792
  #: classes/gateways/class.pmprogateway_stripe.php:2660
5793
  #: classes/gateways/class.pmprogateway_stripe.php:2682
 
5794
  msgid "Could not find the customer."
5795
  msgstr "Δεν βρέθηκε πελάτης."
5796
 
@@ -6896,6 +6955,7 @@ msgstr "Το κλειδί άδειας χρήσης σας έχει επικυρ
6896
 
6897
  #: includes/license.php:81
6898
  #: adminpages/license.php:43
 
6899
  msgid "Paid Memberships Pro Support License"
6900
  msgstr "Paid Memberships Pro Support License"
6901
 
@@ -6915,6 +6975,7 @@ msgstr "Visit the PMPro <a href=\"http://www.paidmembershipspro.com/login/?redir
6915
  #: adminpages/dashboard.php:174
6916
  #: adminpages/license.php:49
6917
  #: adminpages/dashboard.php:178
 
6918
  msgid "Your license is invalid or expired."
6919
  msgstr "Το κλειδί άδειας χρήσης σας είναι μη έγκυρο ή έχει λήξει."
6920
 
@@ -6925,6 +6986,7 @@ msgstr "<p><strong>Thank you!</strong> A valid <strong>%s</strong> license key h
6925
 
6926
  #: includes/license.php:100
6927
  #: adminpages/license.php:59
 
6928
  msgid "Enter license key here..."
6929
  msgstr "Εισάγετε το κλείδι άδειας χρήσης εδώ…"
6930
 
@@ -7139,6 +7201,7 @@ msgstr "αποσύνδεση"
7139
  #: adminpages/dashboard.php:224
7140
  #: adminpages/dashboard.php:292
7141
  #: adminpages/orders.php:1343
 
7142
  msgid "Level"
7143
  msgstr "Επίπεδο"
7144
 
@@ -7203,6 +7266,7 @@ msgstr "Την πληρωμή της συνδρομής σας διαχειρί
7203
  #: includes/profile.php:747
7204
  #: pages/billing.php:164
7205
  #: pages/checkout.php:234
 
7206
  msgid "First Name"
7207
  msgstr "Όνομα"
7208
 
@@ -7221,6 +7285,7 @@ msgstr "Όνομα"
7221
  #: includes/profile.php:748
7222
  #: pages/billing.php:168
7223
  #: pages/checkout.php:238
 
7224
  msgid "Last Name"
7225
  msgstr "Επώνυμο"
7226
 
@@ -8330,6 +8395,7 @@ msgstr "Ο <strong>%s</strong> κωδικός έχει εφαρμοστεί στ
8330
  #: services/authnet-silent-post.php:141
8331
  #: services/authnet-silent-post.php:144
8332
  #: services/authnet-silent-post.php:173
 
8333
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
8334
  msgstr "<p>Μία πληρωμή κρατείτε για επανεξέταση εντός του Authorize.net.</p><p>Πληροφορίες Πληρωμής από Authorize.net"
8335
 
@@ -8398,6 +8464,8 @@ msgstr "Επεξεργασία Λογαριασμού"
8398
  #: includes/profile.php:872
8399
  #: includes/profile.php:909
8400
  #: shortcodes/pmpro_account.php:195
 
 
8401
  msgid "Change Password"
8402
  msgstr "Αλλαγή Κωδικού"
8403
 
@@ -8493,6 +8561,7 @@ msgstr "κάθε"
8493
  #: adminpages/advancedsettings.php:316
8494
  #: includes/privacy.php:175
8495
  #: includes/profile.php:509
 
8496
  msgid "Never"
8497
  msgstr "Ποτέ"
8498
 
@@ -8830,6 +8899,7 @@ msgstr ""
8830
 
8831
  #: adminpages/admin_header.php:152
8832
  #: classes/gateways/class.pmprogateway_stripe.php:76
 
8833
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
8834
  msgstr ""
8835
 
@@ -9102,6 +9172,7 @@ msgstr ""
9102
  #: adminpages/dashboard.php:177
9103
  #: adminpages/license.php:51
9104
  #: adminpages/dashboard.php:181
 
9105
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
9106
  msgstr ""
9107
 
@@ -9538,18 +9609,23 @@ msgid "Discount Code Applied"
9538
  msgstr ""
9539
 
9540
  #: adminpages/license.php:47
 
9541
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
9542
  msgstr ""
9543
 
9544
  #: adminpages/license.php:49
 
 
9545
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
9546
  msgstr ""
9547
 
9548
  #: adminpages/license.php:61
 
9549
  msgid "Validate Key"
9550
  msgstr ""
9551
 
9552
  #: adminpages/license.php:95
 
9553
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
9554
  msgstr ""
9555
 
@@ -10064,6 +10140,7 @@ msgstr ""
10064
 
10065
  #: classes/gateways/class.pmprogateway_braintree.php:87
10066
  #: classes/gateways/class.pmprogateway_stripe.php:91
 
10067
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
10068
  msgstr ""
10069
 
@@ -10361,6 +10438,7 @@ msgid "Your order has been refused."
10361
  msgstr ""
10362
 
10363
  #: classes/gateways/class.pmprogateway_cybersource.php:922
 
10364
  msgid "Unknown error."
10365
  msgstr ""
10366
 
@@ -10375,23 +10453,28 @@ msgstr ""
10375
  #: classes/gateways/class.pmprogateway_paypal.php:146
10376
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
10377
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
 
10378
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
10379
  msgstr ""
10380
 
10381
  #: classes/gateways/class.pmprogateway_paypal.php:185
10382
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
 
10383
  msgid "Confirmation Step"
10384
  msgstr ""
10385
 
10386
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
 
10387
  msgid "Checkout was already processed."
10388
  msgstr ""
10389
 
10390
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
 
10391
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
10392
  msgstr ""
10393
 
10394
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
 
10395
  msgid "Error creating plan with PayPal."
10396
  msgstr ""
10397
 
@@ -10403,11 +10486,14 @@ msgstr ""
10403
  #: classes/gateways/class.pmprogateway_stripe.php:436
10404
  #: classes/gateways/class.pmprogateway_stripe.php:354
10405
  #: classes/gateways/class.pmprogateway_stripe.php:444
 
 
10406
  msgid "Stripe Connect Settings"
10407
  msgstr ""
10408
 
10409
  #: classes/gateways/class.pmprogateway_stripe.php:352
10410
  #: classes/gateways/class.pmprogateway_stripe.php:356
 
10411
  msgid "Live Mode:"
10412
  msgstr ""
10413
 
@@ -10415,6 +10501,8 @@ msgstr ""
10415
  #: classes/gateways/class.pmprogateway_stripe.php:440
10416
  #: classes/gateways/class.pmprogateway_stripe.php:358
10417
  #: classes/gateways/class.pmprogateway_stripe.php:448
 
 
10418
  msgid "Connected"
10419
  msgstr ""
10420
 
@@ -10422,6 +10510,8 @@ msgstr ""
10422
  #: classes/gateways/class.pmprogateway_stripe.php:442
10423
  #: classes/gateways/class.pmprogateway_stripe.php:362
10424
  #: classes/gateways/class.pmprogateway_stripe.php:452
 
 
10425
  msgid "Not Connected"
10426
  msgstr ""
10427
 
@@ -10429,11 +10519,14 @@ msgstr ""
10429
  #: classes/gateways/class.pmprogateway_stripe.php:449
10430
  #: classes/gateways/class.pmprogateway_stripe.php:369
10431
  #: classes/gateways/class.pmprogateway_stripe.php:459
 
 
10432
  msgid "Your site is using legacy API keys to authenticate with Stripe."
10433
  msgstr ""
10434
 
10435
  #: classes/gateways/class.pmprogateway_stripe.php:364
10436
  #: classes/gateways/class.pmprogateway_stripe.php:371
 
10437
  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."
10438
  msgstr ""
10439
 
@@ -10441,6 +10534,8 @@ msgstr ""
10441
  #: classes/gateways/class.pmprogateway_stripe.php:458
10442
  #: classes/gateways/class.pmprogateway_stripe.php:380
10443
  #: classes/gateways/class.pmprogateway_stripe.php:470
 
 
10444
  msgid "Stripe Connection:"
10445
  msgstr ""
10446
 
@@ -10448,11 +10543,14 @@ msgstr ""
10448
  #: classes/gateways/class.pmprogateway_stripe.php:482
10449
  #: classes/gateways/class.pmprogateway_stripe.php:396
10450
  #: classes/gateways/class.pmprogateway_stripe.php:494
 
 
10451
  msgid "Disconnect From Stripe"
10452
  msgstr ""
10453
 
10454
  #: classes/gateways/class.pmprogateway_stripe.php:389
10455
  #: classes/gateways/class.pmprogateway_stripe.php:397
 
10456
  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."
10457
  msgstr ""
10458
 
@@ -10460,16 +10558,20 @@ msgstr ""
10460
  #: classes/gateways/class.pmprogateway_stripe.php:496
10461
  #: classes/gateways/class.pmprogateway_stripe.php:409
10462
  #: classes/gateways/class.pmprogateway_stripe.php:508
 
 
10463
  msgid "Connect with Stripe"
10464
  msgstr ""
10465
 
10466
  #: classes/gateways/class.pmprogateway_stripe.php:408
10467
  #: classes/gateways/class.pmprogateway_stripe.php:416
 
10468
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
10469
  msgstr ""
10470
 
10471
  #: classes/gateways/class.pmprogateway_stripe.php:411
10472
  #: classes/gateways/class.pmprogateway_stripe.php:419
 
10473
  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."
10474
  msgstr ""
10475
 
@@ -10480,6 +10582,9 @@ msgstr ""
10480
  #: classes/gateways/class.pmprogateway_stripe.php:519
10481
  #: classes/gateways/class.pmprogateway_stripe.php:559
10482
  #: classes/gateways/class.pmprogateway_stripe.php:578
 
 
 
10483
  msgid "Webhook"
10484
  msgstr ""
10485
 
@@ -10490,32 +10595,40 @@ msgstr ""
10490
  #: classes/gateways/class.pmprogateway_stripe.php:523
10491
  #: classes/gateways/class.pmprogateway_stripe.php:594
10492
  #: classes/gateways/class.pmprogateway_stripe.php:613
 
 
 
10493
  msgid "Webhook URL"
10494
  msgstr ""
10495
 
10496
  #: classes/gateways/class.pmprogateway_stripe.php:438
10497
  #: classes/gateways/class.pmprogateway_stripe.php:446
 
10498
  msgid "Test Mode:"
10499
  msgstr ""
10500
 
10501
  #: classes/gateways/class.pmprogateway_stripe.php:450
10502
  #: classes/gateways/class.pmprogateway_stripe.php:461
 
10503
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
10504
  msgstr ""
10505
 
10506
  #: classes/gateways/class.pmprogateway_stripe.php:483
10507
  #: classes/gateways/class.pmprogateway_stripe.php:495
 
10508
  msgid "This will disconnect your site from Stripe in test mode only."
10509
  msgstr ""
10510
 
10511
  #: classes/gateways/class.pmprogateway_stripe.php:518
10512
  #: classes/gateways/class.pmprogateway_stripe.php:530
 
10513
  msgid "Stripe API Settings (Legacy)"
10514
  msgstr ""
10515
 
10516
  #: classes/gateways/class.pmprogateway_stripe.php:531
10517
  #: classes/gateways/class.pmprogateway_stripe.php:543
10518
  #: classes/gateways/class.pmprogateway_stripe.php:562
 
10519
  msgid "Your Publishable Key appears incorrect."
10520
  msgstr ""
10521
 
@@ -10525,24 +10638,29 @@ msgstr ""
10525
  #: classes/gateways/class.pmprogateway_stripe.php:587
10526
  #: classes/gateways/class.pmprogateway_stripe.php:582
10527
  #: classes/gateways/class.pmprogateway_stripe.php:606
 
 
10528
  msgid "Create Webhook"
10529
  msgstr ""
10530
 
10531
  #: classes/gateways/class.pmprogateway_stripe.php:557
10532
  #: classes/gateways/class.pmprogateway_stripe.php:569
10533
  #: classes/gateways/class.pmprogateway_stripe.php:588
 
10534
  msgid "A webhook is set up in Stripe, but it is disabled."
10535
  msgstr ""
10536
 
10537
  #: classes/gateways/class.pmprogateway_stripe.php:564
10538
  #: classes/gateways/class.pmprogateway_stripe.php:576
10539
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
10540
  msgid "A webhook is set up in Stripe, but it is using an old API version."
10541
  msgstr ""
10542
 
10543
  #: classes/gateways/class.pmprogateway_stripe.php:564
10544
  #: classes/gateways/class.pmprogateway_stripe.php:576
10545
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
10546
  msgid "Rebuild Webhook"
10547
  msgstr ""
10548
 
@@ -10555,12 +10673,16 @@ msgstr ""
10555
  #: classes/gateways/class.pmprogateway_stripe.php:601
10556
  #: classes/gateways/class.pmprogateway_stripe.php:741
10557
  #: classes/gateways/class.pmprogateway_stripe.php:857
 
 
 
10558
  msgid "Your webhook is enabled."
10559
  msgstr ""
10560
 
10561
  #: classes/gateways/class.pmprogateway_stripe.php:570
10562
  #: classes/gateways/class.pmprogateway_stripe.php:582
10563
  #: classes/gateways/class.pmprogateway_stripe.php:601
 
10564
  msgid "Disable Webhook"
10565
  msgstr ""
10566
 
@@ -10576,66 +10698,80 @@ msgstr ""
10576
  #: classes/gateways/class.pmprogateway_stripe.php:768
10577
  #: classes/gateways/class.pmprogateway_stripe.php:785
10578
  #: classes/gateways/class.pmprogateway_stripe.php:819
 
 
 
 
10579
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
10580
  msgstr ""
10581
 
10582
  #: classes/gateways/class.pmprogateway_stripe.php:589
10583
  #: classes/gateways/class.pmprogateway_stripe.php:601
10584
  #: classes/gateways/class.pmprogateway_stripe.php:620
 
10585
  msgid "Other Stripe Settings"
10586
  msgstr ""
10587
 
10588
  #: classes/gateways/class.pmprogateway_stripe.php:593
10589
  #: classes/gateways/class.pmprogateway_stripe.php:605
10590
  #: classes/gateways/class.pmprogateway_stripe.php:624
 
10591
  msgid "Stripe API Version"
10592
  msgstr ""
10593
 
10594
  #: classes/gateways/class.pmprogateway_stripe.php:612
10595
  #: classes/gateways/class.pmprogateway_stripe.php:624
10596
  #: classes/gateways/class.pmprogateway_stripe.php:643
 
10597
  msgid "Enable Payment Request Button"
10598
  msgstr ""
10599
 
10600
  #: classes/gateways/class.pmprogateway_stripe.php:630
10601
  #: classes/gateways/class.pmprogateway_stripe.php:642
10602
  #: classes/gateways/class.pmprogateway_stripe.php:661
 
10603
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
10604
  msgstr ""
10605
 
10606
  #: classes/gateways/class.pmprogateway_stripe.php:643
10607
  #: classes/gateways/class.pmprogateway_stripe.php:655
10608
  #: classes/gateways/class.pmprogateway_stripe.php:674
 
10609
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
10610
  msgstr ""
10611
 
10612
  #: classes/gateways/class.pmprogateway_stripe.php:645
10613
  #: classes/gateways/class.pmprogateway_stripe.php:657
10614
  #: classes/gateways/class.pmprogateway_stripe.php:676
 
10615
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
10616
  msgstr ""
10617
 
10618
  #: classes/gateways/class.pmprogateway_stripe.php:647
10619
  #: classes/gateways/class.pmprogateway_stripe.php:659
10620
  #: classes/gateways/class.pmprogateway_stripe.php:678
 
10621
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
10622
  msgstr ""
10623
 
10624
  #: classes/gateways/class.pmprogateway_stripe.php:649
10625
  #: classes/gateways/class.pmprogateway_stripe.php:661
10626
  #: classes/gateways/class.pmprogateway_stripe.php:680
 
10627
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
10628
  msgstr ""
10629
 
10630
  #: classes/gateways/class.pmprogateway_stripe.php:674
10631
  #: classes/gateways/class.pmprogateway_stripe.php:686
10632
  #: classes/gateways/class.pmprogateway_stripe.php:705
 
10633
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
10634
  msgstr ""
10635
 
10636
  #: classes/gateways/class.pmprogateway_stripe.php:695
10637
  #: classes/gateways/class.pmprogateway_stripe.php:707
10638
  #: classes/gateways/class.pmprogateway_stripe.php:726
 
10639
  msgid "Webhook creation failed. You might already have a webhook set up."
10640
  msgstr ""
10641
 
@@ -10645,36 +10781,43 @@ msgstr ""
10645
  #: classes/gateways/class.pmprogateway_stripe.php:847
10646
  #: classes/gateways/class.pmprogateway_stripe.php:792
10647
  #: classes/gateways/class.pmprogateway_stripe.php:866
 
 
10648
  msgid "There was an error deleting the webhook."
10649
  msgstr ""
10650
 
10651
  #: classes/gateways/class.pmprogateway_stripe.php:811
10652
  #: classes/gateways/class.pmprogateway_stripe.php:823
10653
  #: classes/gateways/class.pmprogateway_stripe.php:842
 
10654
  msgid "Webhook creation failed. Please refresh and try again."
10655
  msgstr ""
10656
 
10657
  #: classes/gateways/class.pmprogateway_stripe.php:867
10658
  #: classes/gateways/class.pmprogateway_stripe.php:879
10659
  #: classes/gateways/class.pmprogateway_stripe.php:898
 
10660
  msgid "Verification steps confirmed. Your payment is processing."
10661
  msgstr ""
10662
 
10663
  #: classes/gateways/class.pmprogateway_stripe.php:1262
10664
  #: classes/gateways/class.pmprogateway_stripe.php:1274
10665
  #: classes/gateways/class.pmprogateway_stripe.php:1293
 
10666
  msgid "Pay with Credit Card"
10667
  msgstr ""
10668
 
10669
  #: classes/gateways/class.pmprogateway_stripe.php:1296
10670
  #: classes/gateways/class.pmprogateway_stripe.php:1308
10671
  #: classes/gateways/class.pmprogateway_stripe.php:1327
 
10672
  msgid "CVC"
10673
  msgstr ""
10674
 
10675
  #: classes/gateways/class.pmprogateway_stripe.php:1374
10676
  #: classes/gateways/class.pmprogateway_stripe.php:1386
10677
  #: classes/gateways/class.pmprogateway_stripe.php:1405
 
10678
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
10679
  msgstr ""
10680
 
@@ -10690,6 +10833,10 @@ msgstr ""
10690
  #: classes/gateways/class.pmprogateway_stripe.php:2016
10691
  #: classes/gateways/class.pmprogateway_stripe.php:2029
10692
  #: classes/gateways/class.pmprogateway_stripe.php:2033
 
 
 
 
10693
  msgid "Error: %s"
10694
  msgstr ""
10695
 
@@ -10699,30 +10846,35 @@ msgstr ""
10699
  #: classes/gateways/class.pmprogateway_stripe.php:2834
10700
  #: classes/gateways/class.pmprogateway_stripe.php:2850
10701
  #: classes/gateways/class.pmprogateway_stripe.php:2856
 
10702
  msgid "Error: "
10703
  msgstr ""
10704
 
10705
  #: classes/gateways/class.pmprogateway_stripe.php:2836
10706
  #: classes/gateways/class.pmprogateway_stripe.php:2848
10707
  #: classes/gateways/class.pmprogateway_stripe.php:2870
 
10708
  msgid "Error: Unkown error while refunding charge #%s"
10709
  msgstr ""
10710
 
10711
  #: classes/gateways/class.pmprogateway_stripe.php:3330
10712
  #: classes/gateways/class.pmprogateway_stripe.php:3342
10713
  #: classes/gateways/class.pmprogateway_stripe.php:3364
 
10714
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
10715
  msgstr ""
10716
 
10717
  #: classes/gateways/class.pmprogateway_stripe.php:3347
10718
  #: classes/gateways/class.pmprogateway_stripe.php:3359
10719
  #: classes/gateways/class.pmprogateway_stripe.php:3381
 
10720
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
10721
  msgstr ""
10722
 
10723
  #: classes/gateways/class.pmprogateway_stripe.php:3533
10724
  #: classes/gateways/class.pmprogateway_stripe.php:3545
10725
  #: classes/gateways/class.pmprogateway_stripe.php:3567
 
10726
  msgid "Invalid response from the Stripe Connect server."
10727
  msgstr ""
10728
 
@@ -10730,6 +10882,7 @@ msgstr ""
10730
  #: classes/gateways/class.pmprogateway_stripe.php:3561
10731
  #: classes/gateways/class.pmprogateway_stripe.php:3573
10732
  #: classes/gateways/class.pmprogateway_stripe.php:3595
 
10733
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
10734
  msgstr ""
10735
 
@@ -10737,30 +10890,35 @@ msgstr ""
10737
  #: classes/gateways/class.pmprogateway_stripe.php:3597
10738
  #: classes/gateways/class.pmprogateway_stripe.php:3609
10739
  #: classes/gateways/class.pmprogateway_stripe.php:3631
 
10740
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
10741
  msgstr ""
10742
 
10743
  #: classes/gateways/class.pmprogateway_stripe.php:3768
10744
  #: classes/gateways/class.pmprogateway_stripe.php:3780
10745
  #: classes/gateways/class.pmprogateway_stripe.php:3802
 
10746
  msgid "Last webhook received at"
10747
  msgstr ""
10748
 
10749
  #: classes/gateways/class.pmprogateway_stripe.php:3770
10750
  #: classes/gateways/class.pmprogateway_stripe.php:3782
10751
  #: classes/gateways/class.pmprogateway_stripe.php:3804
 
10752
  msgid "No webhooks have been received."
10753
  msgstr ""
10754
 
10755
  #: classes/gateways/class.pmprogateway_stripe.php:3774
10756
  #: classes/gateways/class.pmprogateway_stripe.php:3786
10757
  #: classes/gateways/class.pmprogateway_stripe.php:3808
 
10758
  msgid "Your webhook may not be working correctly."
10759
  msgstr ""
10760
 
10761
  #: classes/gateways/class.pmprogateway_stripe.php:3776
10762
  #: classes/gateways/class.pmprogateway_stripe.php:3788
10763
  #: classes/gateways/class.pmprogateway_stripe.php:3810
 
10764
  msgid "Click here for info on setting up your webhook with Stripe."
10765
  msgstr ""
10766
 
@@ -12865,11 +13023,13 @@ msgstr ""
12865
 
12866
  #: includes/login.php:429
12867
  #: includes/profile.php:843
 
12868
  msgid "New passwords do not match."
12869
  msgstr ""
12870
 
12871
  #: includes/login.php:433
12872
  #: includes/profile.php:839
 
12873
  msgid "Please complete all fields."
12874
  msgstr ""
12875
 
@@ -12899,17 +13059,21 @@ msgstr ""
12899
 
12900
  #: includes/login.php:688
12901
  #: includes/profile.php:891
 
12902
  msgid "New Password"
12903
  msgstr ""
12904
 
12905
  #: includes/login.php:690
12906
  #: includes/profile.php:894
12907
  #: includes/scripts.php:86
 
 
12908
  msgid "Strength Indicator"
12909
  msgstr ""
12910
 
12911
  #: includes/login.php:694
12912
  #: includes/profile.php:898
 
12913
  msgid "Confirm New Password"
12914
  msgstr ""
12915
 
@@ -13006,21 +13170,25 @@ msgstr ""
13006
  #: includes/privacy.php:182
13007
  #: includes/profile.php:425
13008
  #: includes/profile.php:493
 
13009
  msgid "Level ID"
13010
  msgstr ""
13011
 
13012
  #: includes/privacy.php:190
13013
  #: includes/profile.php:496
 
13014
  msgid "Date Modified"
13015
  msgstr ""
13016
 
13017
  #: includes/privacy.php:194
13018
  #: includes/profile.php:497
 
13019
  msgid "End Date"
13020
  msgstr ""
13021
 
13022
  #: includes/privacy.php:198
13023
  #: includes/profile.php:498
 
13024
  msgid "Level Cost"
13025
  msgstr ""
13026
 
@@ -13119,68 +13287,85 @@ msgid "Membership Levels History"
13119
  msgstr ""
13120
 
13121
  #: includes/profile.php:485
 
13122
  msgid "No membership orders found."
13123
  msgstr ""
13124
 
13125
  #: includes/profile.php:537
 
13126
  msgid "No membership history found."
13127
  msgstr ""
13128
 
13129
  #: includes/profile.php:644
 
13130
  msgid "Log in to edit your profile."
13131
  msgstr ""
13132
 
13133
  #: includes/profile.php:679
 
13134
  msgid "Please enter a display name."
13135
  msgstr ""
13136
 
13137
  #: includes/profile.php:689
 
13138
  msgid "Please enter an email address."
13139
  msgstr ""
13140
 
13141
  #: includes/profile.php:691
 
13142
  msgid "The email address isn&#8217;t correct."
13143
  msgstr ""
13144
 
13145
  #: includes/profile.php:695
 
13146
  msgid "This email is already registered, please choose another one."
13147
  msgstr ""
13148
 
13149
  #: includes/profile.php:722
 
13150
  msgid "Your profile has been updated."
13151
  msgstr ""
13152
 
13153
  #: includes/profile.php:749
 
13154
  msgid "Display name publicly as"
13155
  msgstr ""
13156
 
13157
  #: includes/profile.php:762
 
13158
  msgid "Site administrators must use the WordPress dashboard to update their email address."
13159
  msgstr ""
13160
 
13161
  #: includes/profile.php:785
 
13162
  msgid "Update Profile"
13163
  msgstr ""
13164
 
13165
  #: includes/profile.php:841
 
13166
  msgid "Please enter your current password."
13167
  msgstr ""
13168
 
13169
  #: includes/profile.php:845
 
13170
  msgid "Your current password is incorrect."
13171
  msgstr ""
13172
 
13173
  #: includes/profile.php:856
 
13174
  msgid "Your password has been updated."
13175
  msgstr ""
13176
 
13177
  #: includes/profile.php:886
 
13178
  msgid "Current Password"
13179
  msgstr ""
13180
 
13181
  #: includes/profile.php:888
13182
  #: includes/profile.php:893
13183
  #: includes/profile.php:900
 
 
13184
  msgid "Required Field"
13185
  msgstr ""
13186
 
@@ -13277,10 +13462,12 @@ msgid "That email address is already in use. Please log in, or use a different e
13277
  msgstr ""
13278
 
13279
  #: services/braintree-webhook.php:425
 
13280
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
13281
  msgstr ""
13282
 
13283
  #: services/braintree-webhook.php:427
 
13284
  msgid "A member's Braintree subscription has expired at %s"
13285
  msgstr ""
13286
 
@@ -13599,16 +13786,22 @@ msgstr ""
13599
 
13600
  #: classes/gateways/class.pmprogateway_stripe.php:360
13601
  #: classes/gateways/class.pmprogateway_stripe.php:450
 
 
13602
  msgid "Connected with Legacy Keys"
13603
  msgstr ""
13604
 
13605
  #: classes/gateways/class.pmprogateway_stripe.php:370
13606
  #: classes/gateways/class.pmprogateway_stripe.php:460
 
 
13607
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
13608
  msgstr ""
13609
 
13610
  #: classes/gateways/class.pmprogateway_stripe.php:372
13611
  #: classes/gateways/class.pmprogateway_stripe.php:462
 
 
13612
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
13613
  msgstr ""
13614
 
@@ -13665,9 +13858,45 @@ msgid "missing"
13665
  msgstr ""
13666
 
13667
  #: classes/gateways/class.pmprogateway_stripe.php:533
 
13668
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
13669
  msgstr ""
13670
 
13671
  #: classes/gateways/class.pmprogateway_stripe.php:534
 
13672
  msgid "Click here to use the legacy API settings."
13673
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.3\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-10-11T14:00:17+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
262
  #: adminpages/orders.php:1544
263
  #: adminpages/orders.php:1554
264
  #: adminpages/orders.php:1553
265
+ #: includes/profile.php:520
266
+ #: includes/profile.php:521
267
+ #: includes/profile.php:522
268
  msgid "N/A"
269
  msgstr "N/A"
270
 
448
  #: adminpages/orders.php:391
449
  #: adminpages/orders.php:1445
450
  #: adminpages/orders.php:1448
451
+ #: includes/profile.php:762
452
  msgid "Email"
453
  msgstr "Email"
454
 
637
  #: adminpages/advancedsettings.php:479
638
  #: classes/gateways/class.pmprogateway_stripe.php:634
639
  #: classes/gateways/class.pmprogateway_stripe.php:648
640
+ #: classes/gateways/class.pmprogateway_stripe.php:640
641
+ #: classes/gateways/class.pmprogateway_stripe.php:654
642
  msgid "No"
643
  msgstr "Όχι"
644
 
737
  #: adminpages/advancedsettings.php:397
738
  #: classes/gateways/class.pmprogateway_stripe.php:636
739
  #: classes/gateways/class.pmprogateway_stripe.php:650
740
+ #: classes/gateways/class.pmprogateway_stripe.php:642
741
+ #: classes/gateways/class.pmprogateway_stripe.php:656
742
  msgid "Yes"
743
  msgstr "Ναι"
744
 
1040
  #: includes/privacy.php:186
1041
  #: includes/profile.php:495
1042
  #: adminpages/discountcodes.php:489
1043
+ #: includes/profile.php:501
1044
  msgid "Start Date"
1045
  msgstr "Ημερομηνία έναρξης"
1046
 
1079
  #: classes/gateways/class.pmprogateway_stripe.php:1301
1080
  #: adminpages/discountcodes.php:507
1081
  #: classes/gateways/class.pmprogateway_stripe.php:1320
1082
+ #: classes/gateways/class.pmprogateway_stripe.php:1326
1083
  msgid "Expiration Date"
1084
  msgstr "Ημερομηνία λήξης"
1085
 
1231
  #: adminpages/discountcodes.php:612
1232
  #: adminpages/discountcodes.php:699
1233
  #: classes/gateways/class.pmprogateway_stripe.php:1363
1234
+ #: classes/gateways/class.pmprogateway_stripe.php:1369
1235
  msgid "Day(s)"
1236
  msgstr "Ημέρες(s)"
1237
 
1268
  #: adminpages/discountcodes.php:612
1269
  #: adminpages/discountcodes.php:699
1270
  #: classes/gateways/class.pmprogateway_stripe.php:1365
1271
+ #: classes/gateways/class.pmprogateway_stripe.php:1371
1272
  msgid "Month(s)"
1273
  msgstr "Μήνες(s)"
1274
 
1305
  #: adminpages/discountcodes.php:612
1306
  #: adminpages/discountcodes.php:699
1307
  #: classes/gateways/class.pmprogateway_stripe.php:1364
1308
+ #: classes/gateways/class.pmprogateway_stripe.php:1370
1309
  msgid "Week(s)"
1310
  msgstr "Εβδομάδες(s)"
1311
 
1342
  #: adminpages/discountcodes.php:612
1343
  #: adminpages/discountcodes.php:699
1344
  #: classes/gateways/class.pmprogateway_stripe.php:1366
1345
+ #: classes/gateways/class.pmprogateway_stripe.php:1372
1346
  msgid "Year(s)"
1347
  msgstr "Χρόνια(s)"
1348
 
1965
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1966
  #: adminpages/discountcodes.php:608
1967
  #: classes/gateways/class.pmprogateway_stripe.php:1497
1968
+ #: classes/gateways/class.pmprogateway_stripe.php:1503
1969
  msgid "per"
1970
  msgstr "το"
1971
 
2182
  #: pages/cancel.php:96
2183
  #: shortcodes/pmpro_account.php:106
2184
  #: adminpages/orders.php:968
2185
+ #: includes/profile.php:798
2186
+ #: includes/profile.php:922
2187
  msgid "Cancel"
2188
  msgstr "Ακύρωση"
2189
 
2867
  #: adminpages/orders.php:679
2868
  #: classes/gateways/class.pmprogateway_stripe.php:1284
2869
  #: classes/gateways/class.pmprogateway_stripe.php:1303
2870
+ #: classes/gateways/class.pmprogateway_stripe.php:1309
2871
  msgid "Card Type"
2872
  msgstr "Τύπος Κάρτας"
2873
 
2948
  #: adminpages/dashboard.php:294
2949
  #: adminpages/orders.php:742
2950
  #: adminpages/orders.php:1348
2951
+ #: includes/profile.php:505
2952
  msgid "Status"
2953
  msgstr "Κατάσταση"
2954
 
4388
  #: classes/class.pmproemail.php:769
4389
  #: classes/class.pmproemail.php:771
4390
  #: classes/gateways/class.pmprogateway_stripe.php:1333
4391
+ #: classes/gateways/class.pmprogateway_stripe.php:1339
4392
  msgid "Discount Code"
4393
  msgstr "Εκπτωτικός Κωδικός"
4394
 
4864
  #: pages/checkout.php:366
4865
  #: classes/gateways/class.pmprogateway_stripe.php:1263
4866
  #: classes/gateways/class.pmprogateway_stripe.php:1282
4867
+ #: classes/gateways/class.pmprogateway_stripe.php:1288
4868
  msgid "Payment Information"
4869
  msgstr "Πληροφορίες Πληρωμής"
4870
 
4891
  #: pages/checkout.php:367
4892
  #: classes/gateways/class.pmprogateway_stripe.php:1264
4893
  #: classes/gateways/class.pmprogateway_stripe.php:1283
4894
+ #: classes/gateways/class.pmprogateway_stripe.php:1289
4895
  #, php-format
4896
  msgid "We Accept %s"
4897
  msgstr "Δεχόμαστε %s"
4925
  #: pages/checkout.php:389
4926
  #: classes/gateways/class.pmprogateway_stripe.php:1297
4927
  #: classes/gateways/class.pmprogateway_stripe.php:1316
4928
+ #: classes/gateways/class.pmprogateway_stripe.php:1322
4929
  msgid "Card Number"
4930
  msgstr "Αριθμός Κάρτας"
4931
 
5018
  #: pages/checkout.php:432
5019
  #: classes/gateways/class.pmprogateway_stripe.php:1319
5020
  #: classes/gateways/class.pmprogateway_stripe.php:1338
5021
+ #: classes/gateways/class.pmprogateway_stripe.php:1344
5022
  msgid "Apply"
5023
  msgstr "Εφαρμογή"
5024
 
5283
  #: classes/gateways/class.pmprogateway_paypal.php:132
5284
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
5285
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
5286
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:151
5287
  msgid "PayPal Settings"
5288
  msgstr "Ρυθμίσεις PayPal"
5289
 
5305
  #: classes/gateways/class.pmprogateway_paypal.php:153
5306
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
5307
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
5308
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:172
5309
  msgid "Gateway Account Email"
5310
  msgstr "Gateway Account Email"
5311
 
5325
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
5326
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
5327
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
5328
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:180
5329
  msgid "API Username"
5330
  msgstr "Όνομα Χρήση API"
5331
 
5345
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
5346
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
5347
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
5348
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:188
5349
  msgid "API Password"
5350
  msgstr "Κωδικός API"
5351
 
5359
  #: classes/gateways/class.pmprogateway_paypal.php:177
5360
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
5361
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
5362
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:196
5363
  msgid "API Signature"
5364
  msgstr "Υπογραφή API"
5365
 
5374
  #: classes/gateways/class.pmprogateway_paypal.php:196
5375
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
5376
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
5377
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:215
5378
  msgid "IPN Handler URL"
5379
  msgstr "IPN Handler URL"
5380
 
5400
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
5401
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
5402
  #: pages/checkout.php:218
5403
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:498
5404
  msgid "Check Out with PayPal"
5405
  msgstr "Πληρωμή με PayPal"
5406
 
5421
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
5422
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5423
  #: pages/checkout.php:526
5424
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
5425
  msgid "Submit and Check Out"
5426
  msgstr "Υποβολή και Πληρωμή"
5427
 
5446
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5447
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
5448
  #: pages/checkout.php:526
5449
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
5450
  msgid "Submit and Confirm"
5451
  msgstr "Υποβολή και Επιβεβαίωση"
5452
 
5469
  #: classes/gateways/class.pmprogateway_paypal.php:716
5470
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
5471
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
5472
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:841
5473
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
5474
  msgstr "Παρακαλούμε επικοινωνήστε με τον ιδιοκτήτη της σελίδας ή ακυρώστε την συνδρομή σας εντός του PayPal ώστε να σιγουρευτείτε πως δεν θα έχετε μελλοντικές χρεώσεις."
5475
 
5484
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
5485
  #: paid-memberships-pro.php:160
5486
  #: paid-memberships-pro.php:162
5487
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:94
5488
  msgid "PayPal Express"
5489
  msgstr "PayPal Express"
5490
 
5496
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
5497
  #: classes/gateways/class.pmprogateway_paypal.php:199
5498
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
5499
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:218
5500
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
5501
  msgstr "Για πλήρη ενσωμάτωση του PayPal, σιγουρευτείτε ότι έχετε ορίσει το IPN Handler URL στο"
5502
 
5518
  #: preheaders/checkout.php:823
5519
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
5520
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
5521
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:352
5522
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:411
5523
  msgid "The PayPal Token was lost."
5524
  msgstr "Χάθηκε το PayPal Token."
5525
 
5559
  #: classes/gateways/class.pmprogateway_stripe.php:252
5560
  #: paid-memberships-pro.php:159
5561
  #: paid-memberships-pro.php:161
5562
+ #: classes/gateways/class.pmprogateway_stripe.php:258
5563
  msgid "Stripe"
5564
  msgstr "Stripe"
5565
 
5580
  #: classes/gateways/class.pmprogateway_stripe.php:539
5581
  #: classes/gateways/class.pmprogateway_stripe.php:551
5582
  #: classes/gateways/class.pmprogateway_stripe.php:570
5583
+ #: classes/gateways/class.pmprogateway_stripe.php:576
5584
  msgid "Secret Key"
5585
  msgstr "Κρυφό Κλειδί"
5586
 
5594
  #: classes/gateways/class.pmprogateway_stripe.php:523
5595
  #: classes/gateways/class.pmprogateway_stripe.php:535
5596
  #: classes/gateways/class.pmprogateway_stripe.php:554
5597
+ #: classes/gateways/class.pmprogateway_stripe.php:560
5598
  msgid "Publishable Key"
5599
  msgstr "Δημοσιεύσιμο Κλειδί"
5600
 
5608
  #: classes/gateways/class.pmprogateway_stripe.php:598
5609
  #: classes/gateways/class.pmprogateway_stripe.php:610
5610
  #: classes/gateways/class.pmprogateway_stripe.php:629
5611
+ #: classes/gateways/class.pmprogateway_stripe.php:635
5612
  msgid "Show Billing Address Fields"
5613
  msgstr "Εμφάνιση των Πεδίων Διεύθυνση Λογαριασμού"
5614
 
5621
  #: classes/gateways/class.pmprogateway_stripe.php:607
5622
  #: classes/gateways/class.pmprogateway_stripe.php:619
5623
  #: classes/gateways/class.pmprogateway_stripe.php:638
5624
+ #: classes/gateways/class.pmprogateway_stripe.php:644
5625
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
5626
  msgstr "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
5627
 
5645
  #: classes/gateways/class.pmprogateway_stripe.php:1379
5646
  #: classes/gateways/class.pmprogateway_stripe.php:1391
5647
  #: classes/gateways/class.pmprogateway_stripe.php:1410
5648
+ #: classes/gateways/class.pmprogateway_stripe.php:1416
5649
  msgid "Subscription Updates"
5650
  msgstr "Ενημερώσεις Συνδρομής"
5651
 
5658
  #: classes/gateways/class.pmprogateway_stripe.php:1383
5659
  #: classes/gateways/class.pmprogateway_stripe.php:1395
5660
  #: classes/gateways/class.pmprogateway_stripe.php:1414
5661
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
5662
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
5663
  msgstr "Οι ενημερώσεις της συνδρομής, σας επιτρέπουν να αλλάξετε τις τιμές της συνδρομής του μέλους σε προκαθορισμένα χρονικά διαστήματα. Σιγουρευτείτε πως έχετε κλικάρει Update Profile μετά από την πραγματοποίση των αλλαγών."
5664
 
5671
  #: classes/gateways/class.pmprogateway_stripe.php:1385
5672
  #: classes/gateways/class.pmprogateway_stripe.php:1397
5673
  #: classes/gateways/class.pmprogateway_stripe.php:1416
5674
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
5675
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
5676
  msgstr "Οι ενημερώσεις της συνδρομής, σας επιτρέπουν να αλλάξετε τις τιμές της συνδρομής του μέλους σε προκαθορισμένα χρονικά διαστήματα. Σιγουρευτείτε πως έχετε κλικάρει Update User μετά από την πραγματοποίση των αλλαγών."
5677
 
5692
  #: pages/billing.php:425
5693
  #: classes/gateways/class.pmprogateway_stripe.php:1403
5694
  #: classes/gateways/class.pmprogateway_stripe.php:1422
5695
+ #: classes/gateways/class.pmprogateway_stripe.php:1428
5696
  msgid "Update"
5697
  msgstr "Ενημέρωση"
5698
 
5705
  #: classes/gateways/class.pmprogateway_stripe.php:2480
5706
  #: classes/gateways/class.pmprogateway_stripe.php:2492
5707
  #: classes/gateways/class.pmprogateway_stripe.php:2514
5708
+ #: classes/gateways/class.pmprogateway_stripe.php:2520
5709
  msgid "Could not cancel the old subscription. Updates have not been processed."
5710
  msgstr "Αδυναμία ακύρωσης παλιάς συνδρομής. Οι ενημερώσεις δεν έχουν υποστεί επεξεργασία."
5711
 
5732
  #: classes/gateways/class.pmprogateway_stripe.php:2127
5733
  #: classes/gateways/class.pmprogateway_stripe.php:2132
5734
  #: classes/gateways/class.pmprogateway_stripe.php:2137
5735
+ #: classes/gateways/class.pmprogateway_stripe.php:2133
5736
+ #: classes/gateways/class.pmprogateway_stripe.php:2138
5737
+ #: classes/gateways/class.pmprogateway_stripe.php:2143
5738
  msgid "Error creating customer record with Stripe:"
5739
  msgstr "Σφάλμα κατά την δημιουργία αρχείου πελάτη με το Stripe:"
5740
 
5748
  #: classes/gateways/class.pmprogateway_stripe.php:2182
5749
  #: classes/gateways/class.pmprogateway_stripe.php:2196
5750
  #: classes/gateways/class.pmprogateway_stripe.php:2201
5751
+ #: classes/gateways/class.pmprogateway_stripe.php:2202
5752
+ #: classes/gateways/class.pmprogateway_stripe.php:2207
5753
  msgid "Error getting subscription with Stripe:"
5754
  msgstr "Σφάλμα παραλαβής συνδρομής με το Stripe:"
5755
 
5781
  #: classes/gateways/class.pmprogateway_stripe.php:2356
5782
  #: classes/gateways/class.pmprogateway_stripe.php:2373
5783
  #: classes/gateways/class.pmprogateway_stripe.php:2378
5784
+ #: classes/gateways/class.pmprogateway_stripe.php:2379
5785
+ #: classes/gateways/class.pmprogateway_stripe.php:2384
5786
  msgid "Error creating plan with Stripe:"
5787
  msgstr "Σφάλμα δημιουργίας πλάνου με το Stripe:"
5788
 
5809
  #: classes/gateways/class.pmprogateway_stripe.php:2401
5810
  #: classes/gateways/class.pmprogateway_stripe.php:2409
5811
  #: classes/gateways/class.pmprogateway_stripe.php:2423
5812
+ #: classes/gateways/class.pmprogateway_stripe.php:2415
5813
+ #: classes/gateways/class.pmprogateway_stripe.php:2429
5814
  msgid "Error subscribing customer to plan with Stripe:"
5815
  msgstr "Σφάλμα κατά την συνδρομή του πελάτη σε πλάνο με το Stripe:"
5816
 
5831
  #: classes/gateways/class.pmprogateway_stripe.php:2632
5832
  #: classes/gateways/class.pmprogateway_stripe.php:2644
5833
  #: classes/gateways/class.pmprogateway_stripe.php:2666
5834
+ #: classes/gateways/class.pmprogateway_stripe.php:2672
5835
  msgid "Could not cancel old subscription."
5836
  msgstr "Αδυναμία ακύρωσης παλιάς συνδρομής."
5837
 
5849
  #: classes/gateways/class.pmprogateway_stripe.php:2648
5850
  #: classes/gateways/class.pmprogateway_stripe.php:2660
5851
  #: classes/gateways/class.pmprogateway_stripe.php:2682
5852
+ #: classes/gateways/class.pmprogateway_stripe.php:2688
5853
  msgid "Could not find the customer."
5854
  msgstr "Δεν βρέθηκε πελάτης."
5855
 
6955
 
6956
  #: includes/license.php:81
6957
  #: adminpages/license.php:43
6958
+ #: adminpages/license.php:33
6959
  msgid "Paid Memberships Pro Support License"
6960
  msgstr "Paid Memberships Pro Support License"
6961
 
6975
  #: adminpages/dashboard.php:174
6976
  #: adminpages/license.php:49
6977
  #: adminpages/dashboard.php:178
6978
+ #: adminpages/license.php:41
6979
  msgid "Your license is invalid or expired."
6980
  msgstr "Το κλειδί άδειας χρήσης σας είναι μη έγκυρο ή έχει λήξει."
6981
 
6986
 
6987
  #: includes/license.php:100
6988
  #: adminpages/license.php:59
6989
+ #: adminpages/license.php:51
6990
  msgid "Enter license key here..."
6991
  msgstr "Εισάγετε το κλείδι άδειας χρήσης εδώ…"
6992
 
7201
  #: adminpages/dashboard.php:224
7202
  #: adminpages/dashboard.php:292
7203
  #: adminpages/orders.php:1343
7204
+ #: includes/profile.php:500
7205
  msgid "Level"
7206
  msgstr "Επίπεδο"
7207
 
7266
  #: includes/profile.php:747
7267
  #: pages/billing.php:164
7268
  #: pages/checkout.php:234
7269
+ #: includes/profile.php:759
7270
  msgid "First Name"
7271
  msgstr "Όνομα"
7272
 
7285
  #: includes/profile.php:748
7286
  #: pages/billing.php:168
7287
  #: pages/checkout.php:238
7288
+ #: includes/profile.php:760
7289
  msgid "Last Name"
7290
  msgstr "Επώνυμο"
7291
 
8395
  #: services/authnet-silent-post.php:141
8396
  #: services/authnet-silent-post.php:144
8397
  #: services/authnet-silent-post.php:173
8398
+ #: services/authnet-silent-post.php:176
8399
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
8400
  msgstr "<p>Μία πληρωμή κρατείτε για επανεξέταση εντός του Authorize.net.</p><p>Πληροφορίες Πληρωμής από Authorize.net"
8401
 
8464
  #: includes/profile.php:872
8465
  #: includes/profile.php:909
8466
  #: shortcodes/pmpro_account.php:195
8467
+ #: includes/profile.php:884
8468
+ #: includes/profile.php:921
8469
  msgid "Change Password"
8470
  msgstr "Αλλαγή Κωδικού"
8471
 
8561
  #: adminpages/advancedsettings.php:316
8562
  #: includes/privacy.php:175
8563
  #: includes/profile.php:509
8564
+ #: includes/profile.php:515
8565
  msgid "Never"
8566
  msgstr "Ποτέ"
8567
 
8899
 
8900
  #: adminpages/admin_header.php:152
8901
  #: classes/gateways/class.pmprogateway_stripe.php:76
8902
+ #: classes/gateways/class.pmprogateway_stripe.php:82
8903
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
8904
  msgstr ""
8905
 
9172
  #: adminpages/dashboard.php:177
9173
  #: adminpages/license.php:51
9174
  #: adminpages/dashboard.php:181
9175
+ #: adminpages/license.php:43
9176
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
9177
  msgstr ""
9178
 
9609
  msgstr ""
9610
 
9611
  #: adminpages/license.php:47
9612
+ #: adminpages/license.php:39
9613
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
9614
  msgstr ""
9615
 
9616
  #: adminpages/license.php:49
9617
+ #: adminpages/license.php:37
9618
+ #: adminpages/license.php:41
9619
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
9620
  msgstr ""
9621
 
9622
  #: adminpages/license.php:61
9623
+ #: adminpages/license.php:53
9624
  msgid "Validate Key"
9625
  msgstr ""
9626
 
9627
  #: adminpages/license.php:95
9628
+ #: adminpages/license.php:87
9629
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
9630
  msgstr ""
9631
 
10140
 
10141
  #: classes/gateways/class.pmprogateway_braintree.php:87
10142
  #: classes/gateways/class.pmprogateway_stripe.php:91
10143
+ #: classes/gateways/class.pmprogateway_stripe.php:97
10144
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
10145
  msgstr ""
10146
 
10438
  msgstr ""
10439
 
10440
  #: classes/gateways/class.pmprogateway_cybersource.php:922
10441
+ #: includes/license.php:159
10442
  msgid "Unknown error."
10443
  msgstr ""
10444
 
10453
  #: classes/gateways/class.pmprogateway_paypal.php:146
10454
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
10455
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
10456
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:165
10457
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
10458
  msgstr ""
10459
 
10460
  #: classes/gateways/class.pmprogateway_paypal.php:185
10461
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
10462
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:204
10463
  msgid "Confirmation Step"
10464
  msgstr ""
10465
 
10466
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
10467
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:356
10468
  msgid "Checkout was already processed."
10469
  msgstr ""
10470
 
10471
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
10472
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:791
10473
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
10474
  msgstr ""
10475
 
10476
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
10477
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:792
10478
  msgid "Error creating plan with PayPal."
10479
  msgstr ""
10480
 
10486
  #: classes/gateways/class.pmprogateway_stripe.php:436
10487
  #: classes/gateways/class.pmprogateway_stripe.php:354
10488
  #: classes/gateways/class.pmprogateway_stripe.php:444
10489
+ #: classes/gateways/class.pmprogateway_stripe.php:360
10490
+ #: classes/gateways/class.pmprogateway_stripe.php:450
10491
  msgid "Stripe Connect Settings"
10492
  msgstr ""
10493
 
10494
  #: classes/gateways/class.pmprogateway_stripe.php:352
10495
  #: classes/gateways/class.pmprogateway_stripe.php:356
10496
+ #: classes/gateways/class.pmprogateway_stripe.php:362
10497
  msgid "Live Mode:"
10498
  msgstr ""
10499
 
10501
  #: classes/gateways/class.pmprogateway_stripe.php:440
10502
  #: classes/gateways/class.pmprogateway_stripe.php:358
10503
  #: classes/gateways/class.pmprogateway_stripe.php:448
10504
+ #: classes/gateways/class.pmprogateway_stripe.php:364
10505
+ #: classes/gateways/class.pmprogateway_stripe.php:454
10506
  msgid "Connected"
10507
  msgstr ""
10508
 
10510
  #: classes/gateways/class.pmprogateway_stripe.php:442
10511
  #: classes/gateways/class.pmprogateway_stripe.php:362
10512
  #: classes/gateways/class.pmprogateway_stripe.php:452
10513
+ #: classes/gateways/class.pmprogateway_stripe.php:368
10514
+ #: classes/gateways/class.pmprogateway_stripe.php:458
10515
  msgid "Not Connected"
10516
  msgstr ""
10517
 
10519
  #: classes/gateways/class.pmprogateway_stripe.php:449
10520
  #: classes/gateways/class.pmprogateway_stripe.php:369
10521
  #: classes/gateways/class.pmprogateway_stripe.php:459
10522
+ #: classes/gateways/class.pmprogateway_stripe.php:375
10523
+ #: classes/gateways/class.pmprogateway_stripe.php:465
10524
  msgid "Your site is using legacy API keys to authenticate with Stripe."
10525
  msgstr ""
10526
 
10527
  #: classes/gateways/class.pmprogateway_stripe.php:364
10528
  #: classes/gateways/class.pmprogateway_stripe.php:371
10529
+ #: classes/gateways/class.pmprogateway_stripe.php:377
10530
  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."
10531
  msgstr ""
10532
 
10534
  #: classes/gateways/class.pmprogateway_stripe.php:458
10535
  #: classes/gateways/class.pmprogateway_stripe.php:380
10536
  #: classes/gateways/class.pmprogateway_stripe.php:470
10537
+ #: classes/gateways/class.pmprogateway_stripe.php:386
10538
+ #: classes/gateways/class.pmprogateway_stripe.php:476
10539
  msgid "Stripe Connection:"
10540
  msgstr ""
10541
 
10543
  #: classes/gateways/class.pmprogateway_stripe.php:482
10544
  #: classes/gateways/class.pmprogateway_stripe.php:396
10545
  #: classes/gateways/class.pmprogateway_stripe.php:494
10546
+ #: classes/gateways/class.pmprogateway_stripe.php:402
10547
+ #: classes/gateways/class.pmprogateway_stripe.php:500
10548
  msgid "Disconnect From Stripe"
10549
  msgstr ""
10550
 
10551
  #: classes/gateways/class.pmprogateway_stripe.php:389
10552
  #: classes/gateways/class.pmprogateway_stripe.php:397
10553
+ #: classes/gateways/class.pmprogateway_stripe.php:403
10554
  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."
10555
  msgstr ""
10556
 
10558
  #: classes/gateways/class.pmprogateway_stripe.php:496
10559
  #: classes/gateways/class.pmprogateway_stripe.php:409
10560
  #: classes/gateways/class.pmprogateway_stripe.php:508
10561
+ #: classes/gateways/class.pmprogateway_stripe.php:415
10562
+ #: classes/gateways/class.pmprogateway_stripe.php:514
10563
  msgid "Connect with Stripe"
10564
  msgstr ""
10565
 
10566
  #: classes/gateways/class.pmprogateway_stripe.php:408
10567
  #: classes/gateways/class.pmprogateway_stripe.php:416
10568
+ #: classes/gateways/class.pmprogateway_stripe.php:422
10569
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
10570
  msgstr ""
10571
 
10572
  #: classes/gateways/class.pmprogateway_stripe.php:411
10573
  #: classes/gateways/class.pmprogateway_stripe.php:419
10574
+ #: classes/gateways/class.pmprogateway_stripe.php:425
10575
  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."
10576
  msgstr ""
10577
 
10582
  #: classes/gateways/class.pmprogateway_stripe.php:519
10583
  #: classes/gateways/class.pmprogateway_stripe.php:559
10584
  #: classes/gateways/class.pmprogateway_stripe.php:578
10585
+ #: classes/gateways/class.pmprogateway_stripe.php:437
10586
+ #: classes/gateways/class.pmprogateway_stripe.php:525
10587
+ #: classes/gateways/class.pmprogateway_stripe.php:584
10588
  msgid "Webhook"
10589
  msgstr ""
10590
 
10595
  #: classes/gateways/class.pmprogateway_stripe.php:523
10596
  #: classes/gateways/class.pmprogateway_stripe.php:594
10597
  #: classes/gateways/class.pmprogateway_stripe.php:613
10598
+ #: classes/gateways/class.pmprogateway_stripe.php:441
10599
+ #: classes/gateways/class.pmprogateway_stripe.php:529
10600
+ #: classes/gateways/class.pmprogateway_stripe.php:619
10601
  msgid "Webhook URL"
10602
  msgstr ""
10603
 
10604
  #: classes/gateways/class.pmprogateway_stripe.php:438
10605
  #: classes/gateways/class.pmprogateway_stripe.php:446
10606
+ #: classes/gateways/class.pmprogateway_stripe.php:452
10607
  msgid "Test Mode:"
10608
  msgstr ""
10609
 
10610
  #: classes/gateways/class.pmprogateway_stripe.php:450
10611
  #: classes/gateways/class.pmprogateway_stripe.php:461
10612
+ #: classes/gateways/class.pmprogateway_stripe.php:467
10613
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
10614
  msgstr ""
10615
 
10616
  #: classes/gateways/class.pmprogateway_stripe.php:483
10617
  #: classes/gateways/class.pmprogateway_stripe.php:495
10618
+ #: classes/gateways/class.pmprogateway_stripe.php:501
10619
  msgid "This will disconnect your site from Stripe in test mode only."
10620
  msgstr ""
10621
 
10622
  #: classes/gateways/class.pmprogateway_stripe.php:518
10623
  #: classes/gateways/class.pmprogateway_stripe.php:530
10624
+ #: classes/gateways/class.pmprogateway_stripe.php:536
10625
  msgid "Stripe API Settings (Legacy)"
10626
  msgstr ""
10627
 
10628
  #: classes/gateways/class.pmprogateway_stripe.php:531
10629
  #: classes/gateways/class.pmprogateway_stripe.php:543
10630
  #: classes/gateways/class.pmprogateway_stripe.php:562
10631
+ #: classes/gateways/class.pmprogateway_stripe.php:568
10632
  msgid "Your Publishable Key appears incorrect."
10633
  msgstr ""
10634
 
10638
  #: classes/gateways/class.pmprogateway_stripe.php:587
10639
  #: classes/gateways/class.pmprogateway_stripe.php:582
10640
  #: classes/gateways/class.pmprogateway_stripe.php:606
10641
+ #: classes/gateways/class.pmprogateway_stripe.php:588
10642
+ #: classes/gateways/class.pmprogateway_stripe.php:612
10643
  msgid "Create Webhook"
10644
  msgstr ""
10645
 
10646
  #: classes/gateways/class.pmprogateway_stripe.php:557
10647
  #: classes/gateways/class.pmprogateway_stripe.php:569
10648
  #: classes/gateways/class.pmprogateway_stripe.php:588
10649
+ #: classes/gateways/class.pmprogateway_stripe.php:594
10650
  msgid "A webhook is set up in Stripe, but it is disabled."
10651
  msgstr ""
10652
 
10653
  #: classes/gateways/class.pmprogateway_stripe.php:564
10654
  #: classes/gateways/class.pmprogateway_stripe.php:576
10655
  #: classes/gateways/class.pmprogateway_stripe.php:595
10656
+ #: classes/gateways/class.pmprogateway_stripe.php:601
10657
  msgid "A webhook is set up in Stripe, but it is using an old API version."
10658
  msgstr ""
10659
 
10660
  #: classes/gateways/class.pmprogateway_stripe.php:564
10661
  #: classes/gateways/class.pmprogateway_stripe.php:576
10662
  #: classes/gateways/class.pmprogateway_stripe.php:595
10663
+ #: classes/gateways/class.pmprogateway_stripe.php:601
10664
  msgid "Rebuild Webhook"
10665
  msgstr ""
10666
 
10673
  #: classes/gateways/class.pmprogateway_stripe.php:601
10674
  #: classes/gateways/class.pmprogateway_stripe.php:741
10675
  #: classes/gateways/class.pmprogateway_stripe.php:857
10676
+ #: classes/gateways/class.pmprogateway_stripe.php:607
10677
+ #: classes/gateways/class.pmprogateway_stripe.php:747
10678
+ #: classes/gateways/class.pmprogateway_stripe.php:863
10679
  msgid "Your webhook is enabled."
10680
  msgstr ""
10681
 
10682
  #: classes/gateways/class.pmprogateway_stripe.php:570
10683
  #: classes/gateways/class.pmprogateway_stripe.php:582
10684
  #: classes/gateways/class.pmprogateway_stripe.php:601
10685
+ #: classes/gateways/class.pmprogateway_stripe.php:607
10686
  msgid "Disable Webhook"
10687
  msgstr ""
10688
 
10698
  #: classes/gateways/class.pmprogateway_stripe.php:768
10699
  #: classes/gateways/class.pmprogateway_stripe.php:785
10700
  #: classes/gateways/class.pmprogateway_stripe.php:819
10701
+ #: classes/gateways/class.pmprogateway_stripe.php:614
10702
+ #: classes/gateways/class.pmprogateway_stripe.php:774
10703
+ #: classes/gateways/class.pmprogateway_stripe.php:791
10704
+ #: classes/gateways/class.pmprogateway_stripe.php:825
10705
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
10706
  msgstr ""
10707
 
10708
  #: classes/gateways/class.pmprogateway_stripe.php:589
10709
  #: classes/gateways/class.pmprogateway_stripe.php:601
10710
  #: classes/gateways/class.pmprogateway_stripe.php:620
10711
+ #: classes/gateways/class.pmprogateway_stripe.php:626
10712
  msgid "Other Stripe Settings"
10713
  msgstr ""
10714
 
10715
  #: classes/gateways/class.pmprogateway_stripe.php:593
10716
  #: classes/gateways/class.pmprogateway_stripe.php:605
10717
  #: classes/gateways/class.pmprogateway_stripe.php:624
10718
+ #: classes/gateways/class.pmprogateway_stripe.php:630
10719
  msgid "Stripe API Version"
10720
  msgstr ""
10721
 
10722
  #: classes/gateways/class.pmprogateway_stripe.php:612
10723
  #: classes/gateways/class.pmprogateway_stripe.php:624
10724
  #: classes/gateways/class.pmprogateway_stripe.php:643
10725
+ #: classes/gateways/class.pmprogateway_stripe.php:649
10726
  msgid "Enable Payment Request Button"
10727
  msgstr ""
10728
 
10729
  #: classes/gateways/class.pmprogateway_stripe.php:630
10730
  #: classes/gateways/class.pmprogateway_stripe.php:642
10731
  #: classes/gateways/class.pmprogateway_stripe.php:661
10732
+ #: classes/gateways/class.pmprogateway_stripe.php:667
10733
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
10734
  msgstr ""
10735
 
10736
  #: classes/gateways/class.pmprogateway_stripe.php:643
10737
  #: classes/gateways/class.pmprogateway_stripe.php:655
10738
  #: classes/gateways/class.pmprogateway_stripe.php:674
10739
+ #: classes/gateways/class.pmprogateway_stripe.php:680
10740
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
10741
  msgstr ""
10742
 
10743
  #: classes/gateways/class.pmprogateway_stripe.php:645
10744
  #: classes/gateways/class.pmprogateway_stripe.php:657
10745
  #: classes/gateways/class.pmprogateway_stripe.php:676
10746
+ #: classes/gateways/class.pmprogateway_stripe.php:682
10747
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
10748
  msgstr ""
10749
 
10750
  #: classes/gateways/class.pmprogateway_stripe.php:647
10751
  #: classes/gateways/class.pmprogateway_stripe.php:659
10752
  #: classes/gateways/class.pmprogateway_stripe.php:678
10753
+ #: classes/gateways/class.pmprogateway_stripe.php:684
10754
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
10755
  msgstr ""
10756
 
10757
  #: classes/gateways/class.pmprogateway_stripe.php:649
10758
  #: classes/gateways/class.pmprogateway_stripe.php:661
10759
  #: classes/gateways/class.pmprogateway_stripe.php:680
10760
+ #: classes/gateways/class.pmprogateway_stripe.php:686
10761
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
10762
  msgstr ""
10763
 
10764
  #: classes/gateways/class.pmprogateway_stripe.php:674
10765
  #: classes/gateways/class.pmprogateway_stripe.php:686
10766
  #: classes/gateways/class.pmprogateway_stripe.php:705
10767
+ #: classes/gateways/class.pmprogateway_stripe.php:711
10768
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
10769
  msgstr ""
10770
 
10771
  #: classes/gateways/class.pmprogateway_stripe.php:695
10772
  #: classes/gateways/class.pmprogateway_stripe.php:707
10773
  #: classes/gateways/class.pmprogateway_stripe.php:726
10774
+ #: classes/gateways/class.pmprogateway_stripe.php:732
10775
  msgid "Webhook creation failed. You might already have a webhook set up."
10776
  msgstr ""
10777
 
10781
  #: classes/gateways/class.pmprogateway_stripe.php:847
10782
  #: classes/gateways/class.pmprogateway_stripe.php:792
10783
  #: classes/gateways/class.pmprogateway_stripe.php:866
10784
+ #: classes/gateways/class.pmprogateway_stripe.php:798
10785
+ #: classes/gateways/class.pmprogateway_stripe.php:872
10786
  msgid "There was an error deleting the webhook."
10787
  msgstr ""
10788
 
10789
  #: classes/gateways/class.pmprogateway_stripe.php:811
10790
  #: classes/gateways/class.pmprogateway_stripe.php:823
10791
  #: classes/gateways/class.pmprogateway_stripe.php:842
10792
+ #: classes/gateways/class.pmprogateway_stripe.php:848
10793
  msgid "Webhook creation failed. Please refresh and try again."
10794
  msgstr ""
10795
 
10796
  #: classes/gateways/class.pmprogateway_stripe.php:867
10797
  #: classes/gateways/class.pmprogateway_stripe.php:879
10798
  #: classes/gateways/class.pmprogateway_stripe.php:898
10799
+ #: classes/gateways/class.pmprogateway_stripe.php:904
10800
  msgid "Verification steps confirmed. Your payment is processing."
10801
  msgstr ""
10802
 
10803
  #: classes/gateways/class.pmprogateway_stripe.php:1262
10804
  #: classes/gateways/class.pmprogateway_stripe.php:1274
10805
  #: classes/gateways/class.pmprogateway_stripe.php:1293
10806
+ #: classes/gateways/class.pmprogateway_stripe.php:1299
10807
  msgid "Pay with Credit Card"
10808
  msgstr ""
10809
 
10810
  #: classes/gateways/class.pmprogateway_stripe.php:1296
10811
  #: classes/gateways/class.pmprogateway_stripe.php:1308
10812
  #: classes/gateways/class.pmprogateway_stripe.php:1327
10813
+ #: classes/gateways/class.pmprogateway_stripe.php:1333
10814
  msgid "CVC"
10815
  msgstr ""
10816
 
10817
  #: classes/gateways/class.pmprogateway_stripe.php:1374
10818
  #: classes/gateways/class.pmprogateway_stripe.php:1386
10819
  #: classes/gateways/class.pmprogateway_stripe.php:1405
10820
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
10821
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
10822
  msgstr ""
10823
 
10833
  #: classes/gateways/class.pmprogateway_stripe.php:2016
10834
  #: classes/gateways/class.pmprogateway_stripe.php:2029
10835
  #: classes/gateways/class.pmprogateway_stripe.php:2033
10836
+ #: classes/gateways/class.pmprogateway_stripe.php:2018
10837
+ #: classes/gateways/class.pmprogateway_stripe.php:2022
10838
+ #: classes/gateways/class.pmprogateway_stripe.php:2035
10839
+ #: classes/gateways/class.pmprogateway_stripe.php:2039
10840
  msgid "Error: %s"
10841
  msgstr ""
10842
 
10846
  #: classes/gateways/class.pmprogateway_stripe.php:2834
10847
  #: classes/gateways/class.pmprogateway_stripe.php:2850
10848
  #: classes/gateways/class.pmprogateway_stripe.php:2856
10849
+ #: classes/gateways/class.pmprogateway_stripe.php:2862
10850
  msgid "Error: "
10851
  msgstr ""
10852
 
10853
  #: classes/gateways/class.pmprogateway_stripe.php:2836
10854
  #: classes/gateways/class.pmprogateway_stripe.php:2848
10855
  #: classes/gateways/class.pmprogateway_stripe.php:2870
10856
+ #: classes/gateways/class.pmprogateway_stripe.php:2876
10857
  msgid "Error: Unkown error while refunding charge #%s"
10858
  msgstr ""
10859
 
10860
  #: classes/gateways/class.pmprogateway_stripe.php:3330
10861
  #: classes/gateways/class.pmprogateway_stripe.php:3342
10862
  #: classes/gateways/class.pmprogateway_stripe.php:3364
10863
+ #: classes/gateways/class.pmprogateway_stripe.php:3370
10864
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
10865
  msgstr ""
10866
 
10867
  #: classes/gateways/class.pmprogateway_stripe.php:3347
10868
  #: classes/gateways/class.pmprogateway_stripe.php:3359
10869
  #: classes/gateways/class.pmprogateway_stripe.php:3381
10870
+ #: classes/gateways/class.pmprogateway_stripe.php:3387
10871
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
10872
  msgstr ""
10873
 
10874
  #: classes/gateways/class.pmprogateway_stripe.php:3533
10875
  #: classes/gateways/class.pmprogateway_stripe.php:3545
10876
  #: classes/gateways/class.pmprogateway_stripe.php:3567
10877
+ #: classes/gateways/class.pmprogateway_stripe.php:3573
10878
  msgid "Invalid response from the Stripe Connect server."
10879
  msgstr ""
10880
 
10882
  #: classes/gateways/class.pmprogateway_stripe.php:3561
10883
  #: classes/gateways/class.pmprogateway_stripe.php:3573
10884
  #: classes/gateways/class.pmprogateway_stripe.php:3595
10885
+ #: classes/gateways/class.pmprogateway_stripe.php:3601
10886
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
10887
  msgstr ""
10888
 
10890
  #: classes/gateways/class.pmprogateway_stripe.php:3597
10891
  #: classes/gateways/class.pmprogateway_stripe.php:3609
10892
  #: classes/gateways/class.pmprogateway_stripe.php:3631
10893
+ #: classes/gateways/class.pmprogateway_stripe.php:3637
10894
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
10895
  msgstr ""
10896
 
10897
  #: classes/gateways/class.pmprogateway_stripe.php:3768
10898
  #: classes/gateways/class.pmprogateway_stripe.php:3780
10899
  #: classes/gateways/class.pmprogateway_stripe.php:3802
10900
+ #: classes/gateways/class.pmprogateway_stripe.php:3808
10901
  msgid "Last webhook received at"
10902
  msgstr ""
10903
 
10904
  #: classes/gateways/class.pmprogateway_stripe.php:3770
10905
  #: classes/gateways/class.pmprogateway_stripe.php:3782
10906
  #: classes/gateways/class.pmprogateway_stripe.php:3804
10907
+ #: classes/gateways/class.pmprogateway_stripe.php:3810
10908
  msgid "No webhooks have been received."
10909
  msgstr ""
10910
 
10911
  #: classes/gateways/class.pmprogateway_stripe.php:3774
10912
  #: classes/gateways/class.pmprogateway_stripe.php:3786
10913
  #: classes/gateways/class.pmprogateway_stripe.php:3808
10914
+ #: classes/gateways/class.pmprogateway_stripe.php:3814
10915
  msgid "Your webhook may not be working correctly."
10916
  msgstr ""
10917
 
10918
  #: classes/gateways/class.pmprogateway_stripe.php:3776
10919
  #: classes/gateways/class.pmprogateway_stripe.php:3788
10920
  #: classes/gateways/class.pmprogateway_stripe.php:3810
10921
+ #: classes/gateways/class.pmprogateway_stripe.php:3816
10922
  msgid "Click here for info on setting up your webhook with Stripe."
10923
  msgstr ""
10924
 
13023
 
13024
  #: includes/login.php:429
13025
  #: includes/profile.php:843
13026
+ #: includes/profile.php:855
13027
  msgid "New passwords do not match."
13028
  msgstr ""
13029
 
13030
  #: includes/login.php:433
13031
  #: includes/profile.php:839
13032
+ #: includes/profile.php:851
13033
  msgid "Please complete all fields."
13034
  msgstr ""
13035
 
13059
 
13060
  #: includes/login.php:688
13061
  #: includes/profile.php:891
13062
+ #: includes/profile.php:903
13063
  msgid "New Password"
13064
  msgstr ""
13065
 
13066
  #: includes/login.php:690
13067
  #: includes/profile.php:894
13068
  #: includes/scripts.php:86
13069
+ #: includes/profile.php:906
13070
+ #: includes/scripts.php:85
13071
  msgid "Strength Indicator"
13072
  msgstr ""
13073
 
13074
  #: includes/login.php:694
13075
  #: includes/profile.php:898
13076
+ #: includes/profile.php:910
13077
  msgid "Confirm New Password"
13078
  msgstr ""
13079
 
13170
  #: includes/privacy.php:182
13171
  #: includes/profile.php:425
13172
  #: includes/profile.php:493
13173
+ #: includes/profile.php:499
13174
  msgid "Level ID"
13175
  msgstr ""
13176
 
13177
  #: includes/privacy.php:190
13178
  #: includes/profile.php:496
13179
+ #: includes/profile.php:502
13180
  msgid "Date Modified"
13181
  msgstr ""
13182
 
13183
  #: includes/privacy.php:194
13184
  #: includes/profile.php:497
13185
+ #: includes/profile.php:503
13186
  msgid "End Date"
13187
  msgstr ""
13188
 
13189
  #: includes/privacy.php:198
13190
  #: includes/profile.php:498
13191
+ #: includes/profile.php:504
13192
  msgid "Level Cost"
13193
  msgstr ""
13194
 
13287
  msgstr ""
13288
 
13289
  #: includes/profile.php:485
13290
+ #: includes/profile.php:488
13291
  msgid "No membership orders found."
13292
  msgstr ""
13293
 
13294
  #: includes/profile.php:537
13295
+ #: includes/profile.php:546
13296
  msgid "No membership history found."
13297
  msgstr ""
13298
 
13299
  #: includes/profile.php:644
13300
+ #: includes/profile.php:656
13301
  msgid "Log in to edit your profile."
13302
  msgstr ""
13303
 
13304
  #: includes/profile.php:679
13305
+ #: includes/profile.php:691
13306
  msgid "Please enter a display name."
13307
  msgstr ""
13308
 
13309
  #: includes/profile.php:689
13310
+ #: includes/profile.php:701
13311
  msgid "Please enter an email address."
13312
  msgstr ""
13313
 
13314
  #: includes/profile.php:691
13315
+ #: includes/profile.php:703
13316
  msgid "The email address isn&#8217;t correct."
13317
  msgstr ""
13318
 
13319
  #: includes/profile.php:695
13320
+ #: includes/profile.php:707
13321
  msgid "This email is already registered, please choose another one."
13322
  msgstr ""
13323
 
13324
  #: includes/profile.php:722
13325
+ #: includes/profile.php:734
13326
  msgid "Your profile has been updated."
13327
  msgstr ""
13328
 
13329
  #: includes/profile.php:749
13330
+ #: includes/profile.php:761
13331
  msgid "Display name publicly as"
13332
  msgstr ""
13333
 
13334
  #: includes/profile.php:762
13335
+ #: includes/profile.php:774
13336
  msgid "Site administrators must use the WordPress dashboard to update their email address."
13337
  msgstr ""
13338
 
13339
  #: includes/profile.php:785
13340
+ #: includes/profile.php:797
13341
  msgid "Update Profile"
13342
  msgstr ""
13343
 
13344
  #: includes/profile.php:841
13345
+ #: includes/profile.php:853
13346
  msgid "Please enter your current password."
13347
  msgstr ""
13348
 
13349
  #: includes/profile.php:845
13350
+ #: includes/profile.php:857
13351
  msgid "Your current password is incorrect."
13352
  msgstr ""
13353
 
13354
  #: includes/profile.php:856
13355
+ #: includes/profile.php:868
13356
  msgid "Your password has been updated."
13357
  msgstr ""
13358
 
13359
  #: includes/profile.php:886
13360
+ #: includes/profile.php:898
13361
  msgid "Current Password"
13362
  msgstr ""
13363
 
13364
  #: includes/profile.php:888
13365
  #: includes/profile.php:893
13366
  #: includes/profile.php:900
13367
+ #: includes/profile.php:905
13368
+ #: includes/profile.php:912
13369
  msgid "Required Field"
13370
  msgstr ""
13371
 
13462
  msgstr ""
13463
 
13464
  #: services/braintree-webhook.php:425
13465
+ #: services/braintree-webhook.php:426
13466
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
13467
  msgstr ""
13468
 
13469
  #: services/braintree-webhook.php:427
13470
+ #: services/braintree-webhook.php:428
13471
  msgid "A member's Braintree subscription has expired at %s"
13472
  msgstr ""
13473
 
13786
 
13787
  #: classes/gateways/class.pmprogateway_stripe.php:360
13788
  #: classes/gateways/class.pmprogateway_stripe.php:450
13789
+ #: classes/gateways/class.pmprogateway_stripe.php:366
13790
+ #: classes/gateways/class.pmprogateway_stripe.php:456
13791
  msgid "Connected with Legacy Keys"
13792
  msgstr ""
13793
 
13794
  #: classes/gateways/class.pmprogateway_stripe.php:370
13795
  #: classes/gateways/class.pmprogateway_stripe.php:460
13796
+ #: classes/gateways/class.pmprogateway_stripe.php:376
13797
+ #: classes/gateways/class.pmprogateway_stripe.php:466
13798
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
13799
  msgstr ""
13800
 
13801
  #: classes/gateways/class.pmprogateway_stripe.php:372
13802
  #: classes/gateways/class.pmprogateway_stripe.php:462
13803
+ #: classes/gateways/class.pmprogateway_stripe.php:378
13804
+ #: classes/gateways/class.pmprogateway_stripe.php:468
13805
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
13806
  msgstr ""
13807
 
13858
  msgstr ""
13859
 
13860
  #: classes/gateways/class.pmprogateway_stripe.php:533
13861
+ #: classes/gateways/class.pmprogateway_stripe.php:539
13862
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
13863
  msgstr ""
13864
 
13865
  #: classes/gateways/class.pmprogateway_stripe.php:534
13866
+ #: classes/gateways/class.pmprogateway_stripe.php:540
13867
  msgid "Click here to use the legacy API settings."
13868
  msgstr ""
13869
+
13870
+ #: adminpages/license.php:37
13871
+ msgid "There was an issue validating your license key: %s"
13872
+ msgstr ""
13873
+
13874
+ #: includes/email-templates.php:172
13875
+ msgid ""
13876
+ "<p>There was a new member checkout at !!sitename!!.</p>\n"
13877
+ "\n"
13878
+ "<p><strong>They have chosen to pay by check.</strong></p>\n"
13879
+ "\n"
13880
+ "<p>Below are details about the new membership account and a receipt for the initial membership invoice.</p>\n"
13881
+ "\n"
13882
+ "<p>Account: !!display_name!! (!!user_email!!)</p>\n"
13883
+ "<p>Membership Level: !!membership_level_name!!</p>\n"
13884
+ "<p>Membership Fee: !!membership_cost!!</p>\n"
13885
+ "!!membership_expiration!! !!discount_code!!\n"
13886
+ "\n"
13887
+ "<p>\n"
13888
+ "\tInvoice #!!invoice_id!! on !!invoice_date!!<br />\n"
13889
+ "\tTotal Billed: !!invoice_total!!\n"
13890
+ "</p>\n"
13891
+ "\n"
13892
+ "<p>Log in to your membership account here: !!login_url!!</p>"
13893
+ msgstr ""
13894
+
13895
+ #: includes/license.php:112
13896
+ msgid "Missing key."
13897
+ msgstr ""
13898
+
13899
+ #: shortcodes/pmpro_account.php:145
13900
+ msgctxt "A dash is shown when there is no expiration date."
13901
+ msgid "&#8212;"
13902
+ msgstr ""
languages/paid-memberships-pro-en_GB.mo CHANGED
Binary file
languages/paid-memberships-pro-en_GB.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.2\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-09-17T13:57:06+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -384,6 +384,8 @@ msgstr ""
384
  #: adminpages/advancedsettings.php:479
385
  #: classes/gateways/class.pmprogateway_stripe.php:634
386
  #: classes/gateways/class.pmprogateway_stripe.php:648
 
 
387
  msgid "No"
388
  msgstr ""
389
 
@@ -408,6 +410,8 @@ msgstr ""
408
  #: adminpages/advancedsettings.php:397
409
  #: classes/gateways/class.pmprogateway_stripe.php:636
410
  #: classes/gateways/class.pmprogateway_stripe.php:650
 
 
411
  msgid "Yes"
412
  msgstr ""
413
 
@@ -617,6 +621,7 @@ msgstr ""
617
  #: classes/class.pmproemail.php:769
618
  #: classes/class.pmproemail.php:771
619
  #: classes/gateways/class.pmprogateway_stripe.php:1333
 
620
  msgid "Discount Code"
621
  msgstr ""
622
 
@@ -773,6 +778,7 @@ msgstr ""
773
  #: adminpages/dashboard.php:224
774
  #: adminpages/dashboard.php:292
775
  #: adminpages/orders.php:1343
 
776
  msgid "Level"
777
  msgstr ""
778
 
@@ -828,6 +834,7 @@ msgstr ""
828
  #: adminpages/orders.php:391
829
  #: adminpages/orders.php:1445
830
  #: adminpages/orders.php:1448
 
831
  msgid "Email"
832
  msgstr ""
833
 
@@ -840,6 +847,8 @@ msgstr ""
840
  #: includes/profile.php:872
841
  #: includes/profile.php:909
842
  #: shortcodes/pmpro_account.php:195
 
 
843
  msgid "Change Password"
844
  msgstr ""
845
 
@@ -924,6 +933,7 @@ msgstr ""
924
  #: pages/checkout.php:432
925
  #: classes/gateways/class.pmprogateway_stripe.php:1319
926
  #: classes/gateways/class.pmprogateway_stripe.php:1338
 
927
  msgid "Apply"
928
  msgstr ""
929
 
@@ -1006,6 +1016,7 @@ msgstr ""
1006
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
1007
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
1008
  #: pages/checkout.php:218
 
1009
  msgid "Check Out with PayPal"
1010
  msgstr ""
1011
 
@@ -1014,6 +1025,7 @@ msgstr ""
1014
  #: includes/profile.php:747
1015
  #: pages/billing.php:164
1016
  #: pages/checkout.php:234
 
1017
  msgid "First Name"
1018
  msgstr ""
1019
 
@@ -1022,6 +1034,7 @@ msgstr ""
1022
  #: includes/profile.php:748
1023
  #: pages/billing.php:168
1024
  #: pages/checkout.php:238
 
1025
  msgid "Last Name"
1026
  msgstr ""
1027
 
@@ -1094,6 +1107,7 @@ msgstr ""
1094
  #: pages/checkout.php:367
1095
  #: classes/gateways/class.pmprogateway_stripe.php:1264
1096
  #: classes/gateways/class.pmprogateway_stripe.php:1283
 
1097
  #, php-format
1098
  msgid "We Accept %s"
1099
  msgstr ""
@@ -1104,6 +1118,7 @@ msgstr ""
1104
  #: pages/checkout.php:366
1105
  #: classes/gateways/class.pmprogateway_stripe.php:1263
1106
  #: classes/gateways/class.pmprogateway_stripe.php:1282
 
1107
  msgid "Payment Information"
1108
  msgstr ""
1109
 
@@ -1119,6 +1134,7 @@ msgstr ""
1119
  #: adminpages/orders.php:679
1120
  #: classes/gateways/class.pmprogateway_stripe.php:1284
1121
  #: classes/gateways/class.pmprogateway_stripe.php:1303
 
1122
  msgid "Card Type"
1123
  msgstr ""
1124
 
@@ -1130,6 +1146,7 @@ msgstr ""
1130
  #: pages/checkout.php:389
1131
  #: classes/gateways/class.pmprogateway_stripe.php:1297
1132
  #: classes/gateways/class.pmprogateway_stripe.php:1316
 
1133
  msgid "Card Number"
1134
  msgstr ""
1135
 
@@ -1144,6 +1161,7 @@ msgstr ""
1144
  #: classes/gateways/class.pmprogateway_stripe.php:1301
1145
  #: adminpages/discountcodes.php:507
1146
  #: classes/gateways/class.pmprogateway_stripe.php:1320
 
1147
  msgid "Expiration Date"
1148
  msgstr ""
1149
 
@@ -1176,6 +1194,7 @@ msgstr ""
1176
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
1177
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
1178
  #: pages/checkout.php:526
 
1179
  msgid "Submit and Check Out"
1180
  msgstr ""
1181
 
@@ -1185,6 +1204,7 @@ msgstr ""
1185
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
1186
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
1187
  #: pages/checkout.php:526
 
1188
  msgid "Submit and Confirm"
1189
  msgstr ""
1190
 
@@ -1295,6 +1315,7 @@ msgstr ""
1295
  #: pages/billing.php:425
1296
  #: classes/gateways/class.pmprogateway_stripe.php:1403
1297
  #: classes/gateways/class.pmprogateway_stripe.php:1422
 
1298
  msgid "Update"
1299
  msgstr ""
1300
 
@@ -1309,6 +1330,8 @@ msgstr ""
1309
  #: pages/cancel.php:96
1310
  #: shortcodes/pmpro_account.php:106
1311
  #: adminpages/orders.php:968
 
 
1312
  msgid "Cancel"
1313
  msgstr ""
1314
 
@@ -1691,6 +1714,9 @@ msgstr ""
1691
  #: classes/gateways/class.pmprogateway_stripe.php:2127
1692
  #: classes/gateways/class.pmprogateway_stripe.php:2132
1693
  #: classes/gateways/class.pmprogateway_stripe.php:2137
 
 
 
1694
  msgid "Error creating customer record with Stripe:"
1695
  msgstr ""
1696
 
@@ -1701,6 +1727,8 @@ msgstr ""
1701
  #: classes/gateways/class.pmprogateway_stripe.php:2356
1702
  #: classes/gateways/class.pmprogateway_stripe.php:2373
1703
  #: classes/gateways/class.pmprogateway_stripe.php:2378
 
 
1704
  msgid "Error creating plan with Stripe:"
1705
  msgstr ""
1706
 
@@ -1711,6 +1739,8 @@ msgstr ""
1711
  #: classes/gateways/class.pmprogateway_stripe.php:2401
1712
  #: classes/gateways/class.pmprogateway_stripe.php:2409
1713
  #: classes/gateways/class.pmprogateway_stripe.php:2423
 
 
1714
  msgid "Error subscribing customer to plan with Stripe:"
1715
  msgstr ""
1716
 
@@ -1889,6 +1919,7 @@ msgstr ""
1889
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1890
  #: adminpages/discountcodes.php:608
1891
  #: classes/gateways/class.pmprogateway_stripe.php:1497
 
1892
  msgid "per"
1893
  msgstr ""
1894
 
@@ -1902,6 +1933,7 @@ msgstr ""
1902
  #: adminpages/discountcodes.php:612
1903
  #: adminpages/discountcodes.php:699
1904
  #: classes/gateways/class.pmprogateway_stripe.php:1363
 
1905
  msgid "Day(s)"
1906
  msgstr ""
1907
 
@@ -1915,6 +1947,7 @@ msgstr ""
1915
  #: adminpages/discountcodes.php:612
1916
  #: adminpages/discountcodes.php:699
1917
  #: classes/gateways/class.pmprogateway_stripe.php:1364
 
1918
  msgid "Week(s)"
1919
  msgstr ""
1920
 
@@ -1928,6 +1961,7 @@ msgstr ""
1928
  #: adminpages/discountcodes.php:612
1929
  #: adminpages/discountcodes.php:699
1930
  #: classes/gateways/class.pmprogateway_stripe.php:1365
 
1931
  msgid "Month(s)"
1932
  msgstr ""
1933
 
@@ -1941,6 +1975,7 @@ msgstr ""
1941
  #: adminpages/discountcodes.php:612
1942
  #: adminpages/discountcodes.php:699
1943
  #: classes/gateways/class.pmprogateway_stripe.php:1366
 
1944
  msgid "Year(s)"
1945
  msgstr ""
1946
 
@@ -2441,6 +2476,7 @@ msgstr ""
2441
  #: adminpages/dashboard.php:294
2442
  #: adminpages/orders.php:742
2443
  #: adminpages/orders.php:1348
 
2444
  msgid "Status"
2445
  msgstr ""
2446
 
@@ -2719,6 +2755,7 @@ msgstr ""
2719
  #: adminpages/advancedsettings.php:316
2720
  #: includes/privacy.php:175
2721
  #: includes/profile.php:509
 
2722
  msgid "Never"
2723
  msgstr ""
2724
 
@@ -2783,6 +2820,7 @@ msgstr ""
2783
  #: classes/gateways/class.pmprogateway_paypal.php:153
2784
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
2785
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
 
2786
  msgid "Gateway Account Email"
2787
  msgstr ""
2788
 
@@ -2792,6 +2830,7 @@ msgstr ""
2792
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
2793
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
2794
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
 
2795
  msgid "API Username"
2796
  msgstr ""
2797
 
@@ -2801,6 +2840,7 @@ msgstr ""
2801
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
2802
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
2803
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
 
2804
  msgid "API Password"
2805
  msgstr ""
2806
 
@@ -2808,6 +2848,7 @@ msgstr ""
2808
  #: classes/gateways/class.pmprogateway_paypal.php:177
2809
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
2810
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
 
2811
  msgid "API Signature"
2812
  msgstr ""
2813
 
@@ -2825,6 +2866,7 @@ msgstr ""
2825
  #: classes/gateways/class.pmprogateway_stripe.php:539
2826
  #: classes/gateways/class.pmprogateway_stripe.php:551
2827
  #: classes/gateways/class.pmprogateway_stripe.php:570
 
2828
  msgid "Secret Key"
2829
  msgstr ""
2830
 
@@ -2832,6 +2874,7 @@ msgstr ""
2832
  #: classes/gateways/class.pmprogateway_stripe.php:523
2833
  #: classes/gateways/class.pmprogateway_stripe.php:535
2834
  #: classes/gateways/class.pmprogateway_stripe.php:554
 
2835
  msgid "Publishable Key"
2836
  msgstr ""
2837
 
@@ -2895,6 +2938,7 @@ msgstr ""
2895
  #: classes/gateways/class.pmprogateway_stripe.php:598
2896
  #: classes/gateways/class.pmprogateway_stripe.php:610
2897
  #: classes/gateways/class.pmprogateway_stripe.php:629
 
2898
  msgid "Show Billing Address Fields"
2899
  msgstr ""
2900
 
@@ -2902,6 +2946,7 @@ msgstr ""
2902
  #: classes/gateways/class.pmprogateway_stripe.php:607
2903
  #: classes/gateways/class.pmprogateway_stripe.php:619
2904
  #: classes/gateways/class.pmprogateway_stripe.php:638
 
2905
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
2906
  msgstr ""
2907
 
@@ -2956,12 +3001,14 @@ msgstr ""
2956
  #: classes/gateways/class.pmprogateway_paypal.php:196
2957
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
2958
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
 
2959
  msgid "IPN Handler URL"
2960
  msgstr ""
2961
 
2962
  #: adminpages/paymentsettings.php:502
2963
  #: classes/gateways/class.pmprogateway_paypal.php:199
2964
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
 
2965
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
2966
  msgstr ""
2967
 
@@ -3312,6 +3359,7 @@ msgstr ""
3312
  #: includes/privacy.php:186
3313
  #: includes/profile.php:495
3314
  #: adminpages/discountcodes.php:489
 
3315
  msgid "Start Date"
3316
  msgstr ""
3317
 
@@ -3770,6 +3818,7 @@ msgstr ""
3770
 
3771
  #: services/authnet-silent-post.php:133
3772
  #: services/authnet-silent-post.php:173
 
3773
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
3774
  msgstr ""
3775
 
@@ -3881,6 +3930,8 @@ msgstr ""
3881
  #: preheaders/checkout.php:823
3882
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
3883
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
 
 
3884
  msgid "The PayPal Token was lost."
3885
  msgstr ""
3886
 
@@ -4084,6 +4135,9 @@ msgstr ""
4084
  #: adminpages/orders.php:1544
4085
  #: adminpages/orders.php:1554
4086
  #: adminpages/orders.php:1553
 
 
 
4087
  msgid "N/A"
4088
  msgstr ""
4089
 
@@ -4110,6 +4164,7 @@ msgstr ""
4110
 
4111
  #: adminpages/admin_header.php:152
4112
  #: classes/gateways/class.pmprogateway_stripe.php:76
 
4113
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
4114
  msgstr ""
4115
 
@@ -4398,6 +4453,7 @@ msgstr ""
4398
  #: adminpages/dashboard.php:174
4399
  #: adminpages/license.php:49
4400
  #: adminpages/dashboard.php:178
 
4401
  msgid "Your license is invalid or expired."
4402
  msgstr ""
4403
 
@@ -4409,6 +4465,7 @@ msgstr ""
4409
  #: adminpages/dashboard.php:177
4410
  #: adminpages/license.php:51
4411
  #: adminpages/dashboard.php:181
 
4412
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
4413
  msgstr ""
4414
 
@@ -4895,26 +4952,33 @@ msgid "Your license key has been validated."
4895
  msgstr ""
4896
 
4897
  #: adminpages/license.php:43
 
4898
  msgid "Paid Memberships Pro Support License"
4899
  msgstr ""
4900
 
4901
  #: adminpages/license.php:47
 
4902
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
4903
  msgstr ""
4904
 
4905
  #: adminpages/license.php:49
 
 
4906
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
4907
  msgstr ""
4908
 
4909
  #: adminpages/license.php:59
 
4910
  msgid "Enter license key here..."
4911
  msgstr ""
4912
 
4913
  #: adminpages/license.php:61
 
4914
  msgid "Validate Key"
4915
  msgstr ""
4916
 
4917
  #: adminpages/license.php:95
 
4918
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
4919
  msgstr ""
4920
 
@@ -5670,6 +5734,7 @@ msgstr ""
5670
 
5671
  #: classes/gateways/class.pmprogateway_braintree.php:87
5672
  #: classes/gateways/class.pmprogateway_stripe.php:91
 
5673
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
5674
  msgstr ""
5675
 
@@ -5989,6 +6054,7 @@ msgid "Your order has been refused."
5989
  msgstr ""
5990
 
5991
  #: classes/gateways/class.pmprogateway_cybersource.php:922
 
5992
  msgid "Unknown error."
5993
  msgstr ""
5994
 
@@ -6021,41 +6087,49 @@ msgstr ""
6021
  #: classes/gateways/class.pmprogateway_paypal.php:132
6022
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
6023
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
 
6024
  msgid "PayPal Settings"
6025
  msgstr ""
6026
 
6027
  #: classes/gateways/class.pmprogateway_paypal.php:146
6028
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
6029
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
 
6030
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
6031
  msgstr ""
6032
 
6033
  #: classes/gateways/class.pmprogateway_paypal.php:185
6034
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
 
6035
  msgid "Confirmation Step"
6036
  msgstr ""
6037
 
6038
  #: classes/gateways/class.pmprogateway_paypal.php:716
6039
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
6040
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
 
6041
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
6042
  msgstr ""
6043
 
6044
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
6045
  #: paid-memberships-pro.php:160
6046
  #: paid-memberships-pro.php:162
 
6047
  msgid "PayPal Express"
6048
  msgstr ""
6049
 
6050
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
 
6051
  msgid "Checkout was already processed."
6052
  msgstr ""
6053
 
6054
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
 
6055
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
6056
  msgstr ""
6057
 
6058
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
 
6059
  msgid "Error creating plan with PayPal."
6060
  msgstr ""
6061
 
@@ -6076,6 +6150,7 @@ msgstr ""
6076
  #: classes/gateways/class.pmprogateway_stripe.php:252
6077
  #: paid-memberships-pro.php:159
6078
  #: paid-memberships-pro.php:161
 
6079
  msgid "Stripe"
6080
  msgstr ""
6081
 
@@ -6083,11 +6158,14 @@ msgstr ""
6083
  #: classes/gateways/class.pmprogateway_stripe.php:436
6084
  #: classes/gateways/class.pmprogateway_stripe.php:354
6085
  #: classes/gateways/class.pmprogateway_stripe.php:444
 
 
6086
  msgid "Stripe Connect Settings"
6087
  msgstr ""
6088
 
6089
  #: classes/gateways/class.pmprogateway_stripe.php:352
6090
  #: classes/gateways/class.pmprogateway_stripe.php:356
 
6091
  msgid "Live Mode:"
6092
  msgstr ""
6093
 
@@ -6095,6 +6173,8 @@ msgstr ""
6095
  #: classes/gateways/class.pmprogateway_stripe.php:440
6096
  #: classes/gateways/class.pmprogateway_stripe.php:358
6097
  #: classes/gateways/class.pmprogateway_stripe.php:448
 
 
6098
  msgid "Connected"
6099
  msgstr ""
6100
 
@@ -6102,6 +6182,8 @@ msgstr ""
6102
  #: classes/gateways/class.pmprogateway_stripe.php:442
6103
  #: classes/gateways/class.pmprogateway_stripe.php:362
6104
  #: classes/gateways/class.pmprogateway_stripe.php:452
 
 
6105
  msgid "Not Connected"
6106
  msgstr ""
6107
 
@@ -6109,11 +6191,14 @@ msgstr ""
6109
  #: classes/gateways/class.pmprogateway_stripe.php:449
6110
  #: classes/gateways/class.pmprogateway_stripe.php:369
6111
  #: classes/gateways/class.pmprogateway_stripe.php:459
 
 
6112
  msgid "Your site is using legacy API keys to authenticate with Stripe."
6113
  msgstr ""
6114
 
6115
  #: classes/gateways/class.pmprogateway_stripe.php:364
6116
  #: classes/gateways/class.pmprogateway_stripe.php:371
 
6117
  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."
6118
  msgstr ""
6119
 
@@ -6121,6 +6206,8 @@ msgstr ""
6121
  #: classes/gateways/class.pmprogateway_stripe.php:458
6122
  #: classes/gateways/class.pmprogateway_stripe.php:380
6123
  #: classes/gateways/class.pmprogateway_stripe.php:470
 
 
6124
  msgid "Stripe Connection:"
6125
  msgstr ""
6126
 
@@ -6128,11 +6215,14 @@ msgstr ""
6128
  #: classes/gateways/class.pmprogateway_stripe.php:482
6129
  #: classes/gateways/class.pmprogateway_stripe.php:396
6130
  #: classes/gateways/class.pmprogateway_stripe.php:494
 
 
6131
  msgid "Disconnect From Stripe"
6132
  msgstr ""
6133
 
6134
  #: classes/gateways/class.pmprogateway_stripe.php:389
6135
  #: classes/gateways/class.pmprogateway_stripe.php:397
 
6136
  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."
6137
  msgstr ""
6138
 
@@ -6140,16 +6230,20 @@ msgstr ""
6140
  #: classes/gateways/class.pmprogateway_stripe.php:496
6141
  #: classes/gateways/class.pmprogateway_stripe.php:409
6142
  #: classes/gateways/class.pmprogateway_stripe.php:508
 
 
6143
  msgid "Connect with Stripe"
6144
  msgstr ""
6145
 
6146
  #: classes/gateways/class.pmprogateway_stripe.php:408
6147
  #: classes/gateways/class.pmprogateway_stripe.php:416
 
6148
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
6149
  msgstr ""
6150
 
6151
  #: classes/gateways/class.pmprogateway_stripe.php:411
6152
  #: classes/gateways/class.pmprogateway_stripe.php:419
 
6153
  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."
6154
  msgstr ""
6155
 
@@ -6160,6 +6254,9 @@ msgstr ""
6160
  #: classes/gateways/class.pmprogateway_stripe.php:519
6161
  #: classes/gateways/class.pmprogateway_stripe.php:559
6162
  #: classes/gateways/class.pmprogateway_stripe.php:578
 
 
 
6163
  msgid "Webhook"
6164
  msgstr ""
6165
 
@@ -6170,32 +6267,40 @@ msgstr ""
6170
  #: classes/gateways/class.pmprogateway_stripe.php:523
6171
  #: classes/gateways/class.pmprogateway_stripe.php:594
6172
  #: classes/gateways/class.pmprogateway_stripe.php:613
 
 
 
6173
  msgid "Webhook URL"
6174
  msgstr ""
6175
 
6176
  #: classes/gateways/class.pmprogateway_stripe.php:438
6177
  #: classes/gateways/class.pmprogateway_stripe.php:446
 
6178
  msgid "Test Mode:"
6179
  msgstr ""
6180
 
6181
  #: classes/gateways/class.pmprogateway_stripe.php:450
6182
  #: classes/gateways/class.pmprogateway_stripe.php:461
 
6183
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
6184
  msgstr ""
6185
 
6186
  #: classes/gateways/class.pmprogateway_stripe.php:483
6187
  #: classes/gateways/class.pmprogateway_stripe.php:495
 
6188
  msgid "This will disconnect your site from Stripe in test mode only."
6189
  msgstr ""
6190
 
6191
  #: classes/gateways/class.pmprogateway_stripe.php:518
6192
  #: classes/gateways/class.pmprogateway_stripe.php:530
 
6193
  msgid "Stripe API Settings (Legacy)"
6194
  msgstr ""
6195
 
6196
  #: classes/gateways/class.pmprogateway_stripe.php:531
6197
  #: classes/gateways/class.pmprogateway_stripe.php:543
6198
  #: classes/gateways/class.pmprogateway_stripe.php:562
 
6199
  msgid "Your Publishable Key appears incorrect."
6200
  msgstr ""
6201
 
@@ -6205,24 +6310,29 @@ msgstr ""
6205
  #: classes/gateways/class.pmprogateway_stripe.php:587
6206
  #: classes/gateways/class.pmprogateway_stripe.php:582
6207
  #: classes/gateways/class.pmprogateway_stripe.php:606
 
 
6208
  msgid "Create Webhook"
6209
  msgstr ""
6210
 
6211
  #: classes/gateways/class.pmprogateway_stripe.php:557
6212
  #: classes/gateways/class.pmprogateway_stripe.php:569
6213
  #: classes/gateways/class.pmprogateway_stripe.php:588
 
6214
  msgid "A webhook is set up in Stripe, but it is disabled."
6215
  msgstr ""
6216
 
6217
  #: classes/gateways/class.pmprogateway_stripe.php:564
6218
  #: classes/gateways/class.pmprogateway_stripe.php:576
6219
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
6220
  msgid "A webhook is set up in Stripe, but it is using an old API version."
6221
  msgstr ""
6222
 
6223
  #: classes/gateways/class.pmprogateway_stripe.php:564
6224
  #: classes/gateways/class.pmprogateway_stripe.php:576
6225
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
6226
  msgid "Rebuild Webhook"
6227
  msgstr ""
6228
 
@@ -6235,12 +6345,16 @@ msgstr ""
6235
  #: classes/gateways/class.pmprogateway_stripe.php:601
6236
  #: classes/gateways/class.pmprogateway_stripe.php:741
6237
  #: classes/gateways/class.pmprogateway_stripe.php:857
 
 
 
6238
  msgid "Your webhook is enabled."
6239
  msgstr ""
6240
 
6241
  #: classes/gateways/class.pmprogateway_stripe.php:570
6242
  #: classes/gateways/class.pmprogateway_stripe.php:582
6243
  #: classes/gateways/class.pmprogateway_stripe.php:601
 
6244
  msgid "Disable Webhook"
6245
  msgstr ""
6246
 
@@ -6256,66 +6370,80 @@ msgstr ""
6256
  #: classes/gateways/class.pmprogateway_stripe.php:768
6257
  #: classes/gateways/class.pmprogateway_stripe.php:785
6258
  #: classes/gateways/class.pmprogateway_stripe.php:819
 
 
 
 
6259
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
6260
  msgstr ""
6261
 
6262
  #: classes/gateways/class.pmprogateway_stripe.php:589
6263
  #: classes/gateways/class.pmprogateway_stripe.php:601
6264
  #: classes/gateways/class.pmprogateway_stripe.php:620
 
6265
  msgid "Other Stripe Settings"
6266
  msgstr ""
6267
 
6268
  #: classes/gateways/class.pmprogateway_stripe.php:593
6269
  #: classes/gateways/class.pmprogateway_stripe.php:605
6270
  #: classes/gateways/class.pmprogateway_stripe.php:624
 
6271
  msgid "Stripe API Version"
6272
  msgstr ""
6273
 
6274
  #: classes/gateways/class.pmprogateway_stripe.php:612
6275
  #: classes/gateways/class.pmprogateway_stripe.php:624
6276
  #: classes/gateways/class.pmprogateway_stripe.php:643
 
6277
  msgid "Enable Payment Request Button"
6278
  msgstr ""
6279
 
6280
  #: classes/gateways/class.pmprogateway_stripe.php:630
6281
  #: classes/gateways/class.pmprogateway_stripe.php:642
6282
  #: classes/gateways/class.pmprogateway_stripe.php:661
 
6283
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
6284
  msgstr ""
6285
 
6286
  #: classes/gateways/class.pmprogateway_stripe.php:643
6287
  #: classes/gateways/class.pmprogateway_stripe.php:655
6288
  #: classes/gateways/class.pmprogateway_stripe.php:674
 
6289
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
6290
  msgstr ""
6291
 
6292
  #: classes/gateways/class.pmprogateway_stripe.php:645
6293
  #: classes/gateways/class.pmprogateway_stripe.php:657
6294
  #: classes/gateways/class.pmprogateway_stripe.php:676
 
6295
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
6296
  msgstr ""
6297
 
6298
  #: classes/gateways/class.pmprogateway_stripe.php:647
6299
  #: classes/gateways/class.pmprogateway_stripe.php:659
6300
  #: classes/gateways/class.pmprogateway_stripe.php:678
 
6301
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
6302
  msgstr ""
6303
 
6304
  #: classes/gateways/class.pmprogateway_stripe.php:649
6305
  #: classes/gateways/class.pmprogateway_stripe.php:661
6306
  #: classes/gateways/class.pmprogateway_stripe.php:680
 
6307
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
6308
  msgstr ""
6309
 
6310
  #: classes/gateways/class.pmprogateway_stripe.php:674
6311
  #: classes/gateways/class.pmprogateway_stripe.php:686
6312
  #: classes/gateways/class.pmprogateway_stripe.php:705
 
6313
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
6314
  msgstr ""
6315
 
6316
  #: classes/gateways/class.pmprogateway_stripe.php:695
6317
  #: classes/gateways/class.pmprogateway_stripe.php:707
6318
  #: classes/gateways/class.pmprogateway_stripe.php:726
 
6319
  msgid "Webhook creation failed. You might already have a webhook set up."
6320
  msgstr ""
6321
 
@@ -6325,54 +6453,64 @@ msgstr ""
6325
  #: classes/gateways/class.pmprogateway_stripe.php:847
6326
  #: classes/gateways/class.pmprogateway_stripe.php:792
6327
  #: classes/gateways/class.pmprogateway_stripe.php:866
 
 
6328
  msgid "There was an error deleting the webhook."
6329
  msgstr ""
6330
 
6331
  #: classes/gateways/class.pmprogateway_stripe.php:811
6332
  #: classes/gateways/class.pmprogateway_stripe.php:823
6333
  #: classes/gateways/class.pmprogateway_stripe.php:842
 
6334
  msgid "Webhook creation failed. Please refresh and try again."
6335
  msgstr ""
6336
 
6337
  #: classes/gateways/class.pmprogateway_stripe.php:867
6338
  #: classes/gateways/class.pmprogateway_stripe.php:879
6339
  #: classes/gateways/class.pmprogateway_stripe.php:898
 
6340
  msgid "Verification steps confirmed. Your payment is processing."
6341
  msgstr ""
6342
 
6343
  #: classes/gateways/class.pmprogateway_stripe.php:1262
6344
  #: classes/gateways/class.pmprogateway_stripe.php:1274
6345
  #: classes/gateways/class.pmprogateway_stripe.php:1293
 
6346
  msgid "Pay with Credit Card"
6347
  msgstr ""
6348
 
6349
  #: classes/gateways/class.pmprogateway_stripe.php:1296
6350
  #: classes/gateways/class.pmprogateway_stripe.php:1308
6351
  #: classes/gateways/class.pmprogateway_stripe.php:1327
 
6352
  msgid "CVC"
6353
  msgstr ""
6354
 
6355
  #: classes/gateways/class.pmprogateway_stripe.php:1374
6356
  #: classes/gateways/class.pmprogateway_stripe.php:1386
6357
  #: classes/gateways/class.pmprogateway_stripe.php:1405
 
6358
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
6359
  msgstr ""
6360
 
6361
  #: classes/gateways/class.pmprogateway_stripe.php:1379
6362
  #: classes/gateways/class.pmprogateway_stripe.php:1391
6363
  #: classes/gateways/class.pmprogateway_stripe.php:1410
 
6364
  msgid "Subscription Updates"
6365
  msgstr ""
6366
 
6367
  #: classes/gateways/class.pmprogateway_stripe.php:1383
6368
  #: classes/gateways/class.pmprogateway_stripe.php:1395
6369
  #: classes/gateways/class.pmprogateway_stripe.php:1414
 
6370
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
6371
  msgstr ""
6372
 
6373
  #: classes/gateways/class.pmprogateway_stripe.php:1385
6374
  #: classes/gateways/class.pmprogateway_stripe.php:1397
6375
  #: classes/gateways/class.pmprogateway_stripe.php:1416
 
6376
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
6377
  msgstr ""
6378
 
@@ -6388,6 +6526,10 @@ msgstr ""
6388
  #: classes/gateways/class.pmprogateway_stripe.php:2016
6389
  #: classes/gateways/class.pmprogateway_stripe.php:2029
6390
  #: classes/gateways/class.pmprogateway_stripe.php:2033
 
 
 
 
6391
  msgid "Error: %s"
6392
  msgstr ""
6393
 
@@ -6397,24 +6539,29 @@ msgstr ""
6397
  #: classes/gateways/class.pmprogateway_stripe.php:2182
6398
  #: classes/gateways/class.pmprogateway_stripe.php:2196
6399
  #: classes/gateways/class.pmprogateway_stripe.php:2201
 
 
6400
  msgid "Error getting subscription with Stripe:"
6401
  msgstr ""
6402
 
6403
  #: classes/gateways/class.pmprogateway_stripe.php:2480
6404
  #: classes/gateways/class.pmprogateway_stripe.php:2492
6405
  #: classes/gateways/class.pmprogateway_stripe.php:2514
 
6406
  msgid "Could not cancel the old subscription. Updates have not been processed."
6407
  msgstr ""
6408
 
6409
  #: classes/gateways/class.pmprogateway_stripe.php:2632
6410
  #: classes/gateways/class.pmprogateway_stripe.php:2644
6411
  #: classes/gateways/class.pmprogateway_stripe.php:2666
 
6412
  msgid "Could not cancel old subscription."
6413
  msgstr ""
6414
 
6415
  #: classes/gateways/class.pmprogateway_stripe.php:2648
6416
  #: classes/gateways/class.pmprogateway_stripe.php:2660
6417
  #: classes/gateways/class.pmprogateway_stripe.php:2682
 
6418
  msgid "Could not find the customer."
6419
  msgstr ""
6420
 
@@ -6424,30 +6571,35 @@ msgstr ""
6424
  #: classes/gateways/class.pmprogateway_stripe.php:2834
6425
  #: classes/gateways/class.pmprogateway_stripe.php:2850
6426
  #: classes/gateways/class.pmprogateway_stripe.php:2856
 
6427
  msgid "Error: "
6428
  msgstr ""
6429
 
6430
  #: classes/gateways/class.pmprogateway_stripe.php:2836
6431
  #: classes/gateways/class.pmprogateway_stripe.php:2848
6432
  #: classes/gateways/class.pmprogateway_stripe.php:2870
 
6433
  msgid "Error: Unkown error while refunding charge #%s"
6434
  msgstr ""
6435
 
6436
  #: classes/gateways/class.pmprogateway_stripe.php:3330
6437
  #: classes/gateways/class.pmprogateway_stripe.php:3342
6438
  #: classes/gateways/class.pmprogateway_stripe.php:3364
 
6439
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
6440
  msgstr ""
6441
 
6442
  #: classes/gateways/class.pmprogateway_stripe.php:3347
6443
  #: classes/gateways/class.pmprogateway_stripe.php:3359
6444
  #: classes/gateways/class.pmprogateway_stripe.php:3381
 
6445
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
6446
  msgstr ""
6447
 
6448
  #: classes/gateways/class.pmprogateway_stripe.php:3533
6449
  #: classes/gateways/class.pmprogateway_stripe.php:3545
6450
  #: classes/gateways/class.pmprogateway_stripe.php:3567
 
6451
  msgid "Invalid response from the Stripe Connect server."
6452
  msgstr ""
6453
 
@@ -6455,6 +6607,7 @@ msgstr ""
6455
  #: classes/gateways/class.pmprogateway_stripe.php:3561
6456
  #: classes/gateways/class.pmprogateway_stripe.php:3573
6457
  #: classes/gateways/class.pmprogateway_stripe.php:3595
 
6458
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
6459
  msgstr ""
6460
 
@@ -6462,30 +6615,35 @@ msgstr ""
6462
  #: classes/gateways/class.pmprogateway_stripe.php:3597
6463
  #: classes/gateways/class.pmprogateway_stripe.php:3609
6464
  #: classes/gateways/class.pmprogateway_stripe.php:3631
 
6465
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
6466
  msgstr ""
6467
 
6468
  #: classes/gateways/class.pmprogateway_stripe.php:3768
6469
  #: classes/gateways/class.pmprogateway_stripe.php:3780
6470
  #: classes/gateways/class.pmprogateway_stripe.php:3802
 
6471
  msgid "Last webhook received at"
6472
  msgstr ""
6473
 
6474
  #: classes/gateways/class.pmprogateway_stripe.php:3770
6475
  #: classes/gateways/class.pmprogateway_stripe.php:3782
6476
  #: classes/gateways/class.pmprogateway_stripe.php:3804
 
6477
  msgid "No webhooks have been received."
6478
  msgstr ""
6479
 
6480
  #: classes/gateways/class.pmprogateway_stripe.php:3774
6481
  #: classes/gateways/class.pmprogateway_stripe.php:3786
6482
  #: classes/gateways/class.pmprogateway_stripe.php:3808
 
6483
  msgid "Your webhook may not be working correctly."
6484
  msgstr ""
6485
 
6486
  #: classes/gateways/class.pmprogateway_stripe.php:3776
6487
  #: classes/gateways/class.pmprogateway_stripe.php:3788
6488
  #: classes/gateways/class.pmprogateway_stripe.php:3810
 
6489
  msgid "Click here for info on setting up your webhook with Stripe."
6490
  msgstr ""
6491
 
@@ -8688,11 +8846,13 @@ msgstr ""
8688
 
8689
  #: includes/login.php:429
8690
  #: includes/profile.php:843
 
8691
  msgid "New passwords do not match."
8692
  msgstr ""
8693
 
8694
  #: includes/login.php:433
8695
  #: includes/profile.php:839
 
8696
  msgid "Please complete all fields."
8697
  msgstr ""
8698
 
@@ -8722,17 +8882,21 @@ msgstr ""
8722
 
8723
  #: includes/login.php:688
8724
  #: includes/profile.php:891
 
8725
  msgid "New Password"
8726
  msgstr ""
8727
 
8728
  #: includes/login.php:690
8729
  #: includes/profile.php:894
8730
  #: includes/scripts.php:86
 
 
8731
  msgid "Strength Indicator"
8732
  msgstr ""
8733
 
8734
  #: includes/login.php:694
8735
  #: includes/profile.php:898
 
8736
  msgid "Confirm New Password"
8737
  msgstr ""
8738
 
@@ -8833,21 +8997,25 @@ msgstr ""
8833
  #: includes/privacy.php:182
8834
  #: includes/profile.php:425
8835
  #: includes/profile.php:493
 
8836
  msgid "Level ID"
8837
  msgstr ""
8838
 
8839
  #: includes/privacy.php:190
8840
  #: includes/profile.php:496
 
8841
  msgid "Date Modified"
8842
  msgstr ""
8843
 
8844
  #: includes/privacy.php:194
8845
  #: includes/profile.php:497
 
8846
  msgid "End Date"
8847
  msgstr ""
8848
 
8849
  #: includes/privacy.php:198
8850
  #: includes/profile.php:498
 
8851
  msgid "Level Cost"
8852
  msgstr ""
8853
 
@@ -8956,68 +9124,85 @@ msgid "Membership Levels History"
8956
  msgstr ""
8957
 
8958
  #: includes/profile.php:485
 
8959
  msgid "No membership orders found."
8960
  msgstr ""
8961
 
8962
  #: includes/profile.php:537
 
8963
  msgid "No membership history found."
8964
  msgstr ""
8965
 
8966
  #: includes/profile.php:644
 
8967
  msgid "Log in to edit your profile."
8968
  msgstr ""
8969
 
8970
  #: includes/profile.php:679
 
8971
  msgid "Please enter a display name."
8972
  msgstr ""
8973
 
8974
  #: includes/profile.php:689
 
8975
  msgid "Please enter an email address."
8976
  msgstr ""
8977
 
8978
  #: includes/profile.php:691
 
8979
  msgid "The email address isn&#8217;t correct."
8980
  msgstr ""
8981
 
8982
  #: includes/profile.php:695
 
8983
  msgid "This email is already registered, please choose another one."
8984
  msgstr ""
8985
 
8986
  #: includes/profile.php:722
 
8987
  msgid "Your profile has been updated."
8988
  msgstr ""
8989
 
8990
  #: includes/profile.php:749
 
8991
  msgid "Display name publicly as"
8992
  msgstr ""
8993
 
8994
  #: includes/profile.php:762
 
8995
  msgid "Site administrators must use the WordPress dashboard to update their email address."
8996
  msgstr ""
8997
 
8998
  #: includes/profile.php:785
 
8999
  msgid "Update Profile"
9000
  msgstr ""
9001
 
9002
  #: includes/profile.php:841
 
9003
  msgid "Please enter your current password."
9004
  msgstr ""
9005
 
9006
  #: includes/profile.php:845
 
9007
  msgid "Your current password is incorrect."
9008
  msgstr ""
9009
 
9010
  #: includes/profile.php:856
 
9011
  msgid "Your password has been updated."
9012
  msgstr ""
9013
 
9014
  #: includes/profile.php:886
 
9015
  msgid "Current Password"
9016
  msgstr ""
9017
 
9018
  #: includes/profile.php:888
9019
  #: includes/profile.php:893
9020
  #: includes/profile.php:900
 
 
9021
  msgid "Required Field"
9022
  msgstr ""
9023
 
@@ -9163,10 +9348,12 @@ msgid "That email address is already in use. Please log in, or use a different e
9163
  msgstr ""
9164
 
9165
  #: services/braintree-webhook.php:425
 
9166
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
9167
  msgstr ""
9168
 
9169
  #: services/braintree-webhook.php:427
 
9170
  msgid "A member's Braintree subscription has expired at %s"
9171
  msgstr ""
9172
 
@@ -9501,16 +9688,22 @@ msgstr ""
9501
 
9502
  #: classes/gateways/class.pmprogateway_stripe.php:360
9503
  #: classes/gateways/class.pmprogateway_stripe.php:450
 
 
9504
  msgid "Connected with Legacy Keys"
9505
  msgstr ""
9506
 
9507
  #: classes/gateways/class.pmprogateway_stripe.php:370
9508
  #: classes/gateways/class.pmprogateway_stripe.php:460
 
 
9509
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
9510
  msgstr ""
9511
 
9512
  #: classes/gateways/class.pmprogateway_stripe.php:372
9513
  #: classes/gateways/class.pmprogateway_stripe.php:462
 
 
9514
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
9515
  msgstr ""
9516
 
@@ -9567,13 +9760,49 @@ msgid "missing"
9567
  msgstr ""
9568
 
9569
  #: classes/gateways/class.pmprogateway_stripe.php:533
 
9570
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
9571
  msgstr ""
9572
 
9573
  #: classes/gateways/class.pmprogateway_stripe.php:534
 
9574
  msgid "Click here to use the legacy API settings."
9575
  msgstr ""
9576
 
9577
  #: paid-memberships-pro.php:194
9578
  msgid "Once a month"
9579
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.3\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-10-11T14:00:19+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
384
  #: adminpages/advancedsettings.php:479
385
  #: classes/gateways/class.pmprogateway_stripe.php:634
386
  #: classes/gateways/class.pmprogateway_stripe.php:648
387
+ #: classes/gateways/class.pmprogateway_stripe.php:640
388
+ #: classes/gateways/class.pmprogateway_stripe.php:654
389
  msgid "No"
390
  msgstr ""
391
 
410
  #: adminpages/advancedsettings.php:397
411
  #: classes/gateways/class.pmprogateway_stripe.php:636
412
  #: classes/gateways/class.pmprogateway_stripe.php:650
413
+ #: classes/gateways/class.pmprogateway_stripe.php:642
414
+ #: classes/gateways/class.pmprogateway_stripe.php:656
415
  msgid "Yes"
416
  msgstr ""
417
 
621
  #: classes/class.pmproemail.php:769
622
  #: classes/class.pmproemail.php:771
623
  #: classes/gateways/class.pmprogateway_stripe.php:1333
624
+ #: classes/gateways/class.pmprogateway_stripe.php:1339
625
  msgid "Discount Code"
626
  msgstr ""
627
 
778
  #: adminpages/dashboard.php:224
779
  #: adminpages/dashboard.php:292
780
  #: adminpages/orders.php:1343
781
+ #: includes/profile.php:500
782
  msgid "Level"
783
  msgstr ""
784
 
834
  #: adminpages/orders.php:391
835
  #: adminpages/orders.php:1445
836
  #: adminpages/orders.php:1448
837
+ #: includes/profile.php:762
838
  msgid "Email"
839
  msgstr ""
840
 
847
  #: includes/profile.php:872
848
  #: includes/profile.php:909
849
  #: shortcodes/pmpro_account.php:195
850
+ #: includes/profile.php:884
851
+ #: includes/profile.php:921
852
  msgid "Change Password"
853
  msgstr ""
854
 
933
  #: pages/checkout.php:432
934
  #: classes/gateways/class.pmprogateway_stripe.php:1319
935
  #: classes/gateways/class.pmprogateway_stripe.php:1338
936
+ #: classes/gateways/class.pmprogateway_stripe.php:1344
937
  msgid "Apply"
938
  msgstr ""
939
 
1016
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
1017
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
1018
  #: pages/checkout.php:218
1019
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:498
1020
  msgid "Check Out with PayPal"
1021
  msgstr ""
1022
 
1025
  #: includes/profile.php:747
1026
  #: pages/billing.php:164
1027
  #: pages/checkout.php:234
1028
+ #: includes/profile.php:759
1029
  msgid "First Name"
1030
  msgstr ""
1031
 
1034
  #: includes/profile.php:748
1035
  #: pages/billing.php:168
1036
  #: pages/checkout.php:238
1037
+ #: includes/profile.php:760
1038
  msgid "Last Name"
1039
  msgstr ""
1040
 
1107
  #: pages/checkout.php:367
1108
  #: classes/gateways/class.pmprogateway_stripe.php:1264
1109
  #: classes/gateways/class.pmprogateway_stripe.php:1283
1110
+ #: classes/gateways/class.pmprogateway_stripe.php:1289
1111
  #, php-format
1112
  msgid "We Accept %s"
1113
  msgstr ""
1118
  #: pages/checkout.php:366
1119
  #: classes/gateways/class.pmprogateway_stripe.php:1263
1120
  #: classes/gateways/class.pmprogateway_stripe.php:1282
1121
+ #: classes/gateways/class.pmprogateway_stripe.php:1288
1122
  msgid "Payment Information"
1123
  msgstr ""
1124
 
1134
  #: adminpages/orders.php:679
1135
  #: classes/gateways/class.pmprogateway_stripe.php:1284
1136
  #: classes/gateways/class.pmprogateway_stripe.php:1303
1137
+ #: classes/gateways/class.pmprogateway_stripe.php:1309
1138
  msgid "Card Type"
1139
  msgstr ""
1140
 
1146
  #: pages/checkout.php:389
1147
  #: classes/gateways/class.pmprogateway_stripe.php:1297
1148
  #: classes/gateways/class.pmprogateway_stripe.php:1316
1149
+ #: classes/gateways/class.pmprogateway_stripe.php:1322
1150
  msgid "Card Number"
1151
  msgstr ""
1152
 
1161
  #: classes/gateways/class.pmprogateway_stripe.php:1301
1162
  #: adminpages/discountcodes.php:507
1163
  #: classes/gateways/class.pmprogateway_stripe.php:1320
1164
+ #: classes/gateways/class.pmprogateway_stripe.php:1326
1165
  msgid "Expiration Date"
1166
  msgstr ""
1167
 
1194
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
1195
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
1196
  #: pages/checkout.php:526
1197
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
1198
  msgid "Submit and Check Out"
1199
  msgstr ""
1200
 
1204
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
1205
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
1206
  #: pages/checkout.php:526
1207
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
1208
  msgid "Submit and Confirm"
1209
  msgstr ""
1210
 
1315
  #: pages/billing.php:425
1316
  #: classes/gateways/class.pmprogateway_stripe.php:1403
1317
  #: classes/gateways/class.pmprogateway_stripe.php:1422
1318
+ #: classes/gateways/class.pmprogateway_stripe.php:1428
1319
  msgid "Update"
1320
  msgstr ""
1321
 
1330
  #: pages/cancel.php:96
1331
  #: shortcodes/pmpro_account.php:106
1332
  #: adminpages/orders.php:968
1333
+ #: includes/profile.php:798
1334
+ #: includes/profile.php:922
1335
  msgid "Cancel"
1336
  msgstr ""
1337
 
1714
  #: classes/gateways/class.pmprogateway_stripe.php:2127
1715
  #: classes/gateways/class.pmprogateway_stripe.php:2132
1716
  #: classes/gateways/class.pmprogateway_stripe.php:2137
1717
+ #: classes/gateways/class.pmprogateway_stripe.php:2133
1718
+ #: classes/gateways/class.pmprogateway_stripe.php:2138
1719
+ #: classes/gateways/class.pmprogateway_stripe.php:2143
1720
  msgid "Error creating customer record with Stripe:"
1721
  msgstr ""
1722
 
1727
  #: classes/gateways/class.pmprogateway_stripe.php:2356
1728
  #: classes/gateways/class.pmprogateway_stripe.php:2373
1729
  #: classes/gateways/class.pmprogateway_stripe.php:2378
1730
+ #: classes/gateways/class.pmprogateway_stripe.php:2379
1731
+ #: classes/gateways/class.pmprogateway_stripe.php:2384
1732
  msgid "Error creating plan with Stripe:"
1733
  msgstr ""
1734
 
1739
  #: classes/gateways/class.pmprogateway_stripe.php:2401
1740
  #: classes/gateways/class.pmprogateway_stripe.php:2409
1741
  #: classes/gateways/class.pmprogateway_stripe.php:2423
1742
+ #: classes/gateways/class.pmprogateway_stripe.php:2415
1743
+ #: classes/gateways/class.pmprogateway_stripe.php:2429
1744
  msgid "Error subscribing customer to plan with Stripe:"
1745
  msgstr ""
1746
 
1919
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1920
  #: adminpages/discountcodes.php:608
1921
  #: classes/gateways/class.pmprogateway_stripe.php:1497
1922
+ #: classes/gateways/class.pmprogateway_stripe.php:1503
1923
  msgid "per"
1924
  msgstr ""
1925
 
1933
  #: adminpages/discountcodes.php:612
1934
  #: adminpages/discountcodes.php:699
1935
  #: classes/gateways/class.pmprogateway_stripe.php:1363
1936
+ #: classes/gateways/class.pmprogateway_stripe.php:1369
1937
  msgid "Day(s)"
1938
  msgstr ""
1939
 
1947
  #: adminpages/discountcodes.php:612
1948
  #: adminpages/discountcodes.php:699
1949
  #: classes/gateways/class.pmprogateway_stripe.php:1364
1950
+ #: classes/gateways/class.pmprogateway_stripe.php:1370
1951
  msgid "Week(s)"
1952
  msgstr ""
1953
 
1961
  #: adminpages/discountcodes.php:612
1962
  #: adminpages/discountcodes.php:699
1963
  #: classes/gateways/class.pmprogateway_stripe.php:1365
1964
+ #: classes/gateways/class.pmprogateway_stripe.php:1371
1965
  msgid "Month(s)"
1966
  msgstr ""
1967
 
1975
  #: adminpages/discountcodes.php:612
1976
  #: adminpages/discountcodes.php:699
1977
  #: classes/gateways/class.pmprogateway_stripe.php:1366
1978
+ #: classes/gateways/class.pmprogateway_stripe.php:1372
1979
  msgid "Year(s)"
1980
  msgstr ""
1981
 
2476
  #: adminpages/dashboard.php:294
2477
  #: adminpages/orders.php:742
2478
  #: adminpages/orders.php:1348
2479
+ #: includes/profile.php:505
2480
  msgid "Status"
2481
  msgstr ""
2482
 
2755
  #: adminpages/advancedsettings.php:316
2756
  #: includes/privacy.php:175
2757
  #: includes/profile.php:509
2758
+ #: includes/profile.php:515
2759
  msgid "Never"
2760
  msgstr ""
2761
 
2820
  #: classes/gateways/class.pmprogateway_paypal.php:153
2821
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
2822
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
2823
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:172
2824
  msgid "Gateway Account Email"
2825
  msgstr ""
2826
 
2830
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
2831
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
2832
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
2833
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:180
2834
  msgid "API Username"
2835
  msgstr ""
2836
 
2840
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
2841
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
2842
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
2843
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:188
2844
  msgid "API Password"
2845
  msgstr ""
2846
 
2848
  #: classes/gateways/class.pmprogateway_paypal.php:177
2849
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
2850
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
2851
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:196
2852
  msgid "API Signature"
2853
  msgstr ""
2854
 
2866
  #: classes/gateways/class.pmprogateway_stripe.php:539
2867
  #: classes/gateways/class.pmprogateway_stripe.php:551
2868
  #: classes/gateways/class.pmprogateway_stripe.php:570
2869
+ #: classes/gateways/class.pmprogateway_stripe.php:576
2870
  msgid "Secret Key"
2871
  msgstr ""
2872
 
2874
  #: classes/gateways/class.pmprogateway_stripe.php:523
2875
  #: classes/gateways/class.pmprogateway_stripe.php:535
2876
  #: classes/gateways/class.pmprogateway_stripe.php:554
2877
+ #: classes/gateways/class.pmprogateway_stripe.php:560
2878
  msgid "Publishable Key"
2879
  msgstr ""
2880
 
2938
  #: classes/gateways/class.pmprogateway_stripe.php:598
2939
  #: classes/gateways/class.pmprogateway_stripe.php:610
2940
  #: classes/gateways/class.pmprogateway_stripe.php:629
2941
+ #: classes/gateways/class.pmprogateway_stripe.php:635
2942
  msgid "Show Billing Address Fields"
2943
  msgstr ""
2944
 
2946
  #: classes/gateways/class.pmprogateway_stripe.php:607
2947
  #: classes/gateways/class.pmprogateway_stripe.php:619
2948
  #: classes/gateways/class.pmprogateway_stripe.php:638
2949
+ #: classes/gateways/class.pmprogateway_stripe.php:644
2950
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
2951
  msgstr ""
2952
 
3001
  #: classes/gateways/class.pmprogateway_paypal.php:196
3002
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
3003
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
3004
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:215
3005
  msgid "IPN Handler URL"
3006
  msgstr ""
3007
 
3008
  #: adminpages/paymentsettings.php:502
3009
  #: classes/gateways/class.pmprogateway_paypal.php:199
3010
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
3011
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:218
3012
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
3013
  msgstr ""
3014
 
3359
  #: includes/privacy.php:186
3360
  #: includes/profile.php:495
3361
  #: adminpages/discountcodes.php:489
3362
+ #: includes/profile.php:501
3363
  msgid "Start Date"
3364
  msgstr ""
3365
 
3818
 
3819
  #: services/authnet-silent-post.php:133
3820
  #: services/authnet-silent-post.php:173
3821
+ #: services/authnet-silent-post.php:176
3822
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
3823
  msgstr ""
3824
 
3930
  #: preheaders/checkout.php:823
3931
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
3932
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
3933
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:352
3934
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:411
3935
  msgid "The PayPal Token was lost."
3936
  msgstr ""
3937
 
4135
  #: adminpages/orders.php:1544
4136
  #: adminpages/orders.php:1554
4137
  #: adminpages/orders.php:1553
4138
+ #: includes/profile.php:520
4139
+ #: includes/profile.php:521
4140
+ #: includes/profile.php:522
4141
  msgid "N/A"
4142
  msgstr ""
4143
 
4164
 
4165
  #: adminpages/admin_header.php:152
4166
  #: classes/gateways/class.pmprogateway_stripe.php:76
4167
+ #: classes/gateways/class.pmprogateway_stripe.php:82
4168
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
4169
  msgstr ""
4170
 
4453
  #: adminpages/dashboard.php:174
4454
  #: adminpages/license.php:49
4455
  #: adminpages/dashboard.php:178
4456
+ #: adminpages/license.php:41
4457
  msgid "Your license is invalid or expired."
4458
  msgstr ""
4459
 
4465
  #: adminpages/dashboard.php:177
4466
  #: adminpages/license.php:51
4467
  #: adminpages/dashboard.php:181
4468
+ #: adminpages/license.php:43
4469
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
4470
  msgstr ""
4471
 
4952
  msgstr ""
4953
 
4954
  #: adminpages/license.php:43
4955
+ #: adminpages/license.php:33
4956
  msgid "Paid Memberships Pro Support License"
4957
  msgstr ""
4958
 
4959
  #: adminpages/license.php:47
4960
+ #: adminpages/license.php:39
4961
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
4962
  msgstr ""
4963
 
4964
  #: adminpages/license.php:49
4965
+ #: adminpages/license.php:37
4966
+ #: adminpages/license.php:41
4967
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
4968
  msgstr ""
4969
 
4970
  #: adminpages/license.php:59
4971
+ #: adminpages/license.php:51
4972
  msgid "Enter license key here..."
4973
  msgstr ""
4974
 
4975
  #: adminpages/license.php:61
4976
+ #: adminpages/license.php:53
4977
  msgid "Validate Key"
4978
  msgstr ""
4979
 
4980
  #: adminpages/license.php:95
4981
+ #: adminpages/license.php:87
4982
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
4983
  msgstr ""
4984
 
5734
 
5735
  #: classes/gateways/class.pmprogateway_braintree.php:87
5736
  #: classes/gateways/class.pmprogateway_stripe.php:91
5737
+ #: classes/gateways/class.pmprogateway_stripe.php:97
5738
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
5739
  msgstr ""
5740
 
6054
  msgstr ""
6055
 
6056
  #: classes/gateways/class.pmprogateway_cybersource.php:922
6057
+ #: includes/license.php:159
6058
  msgid "Unknown error."
6059
  msgstr ""
6060
 
6087
  #: classes/gateways/class.pmprogateway_paypal.php:132
6088
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
6089
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
6090
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:151
6091
  msgid "PayPal Settings"
6092
  msgstr ""
6093
 
6094
  #: classes/gateways/class.pmprogateway_paypal.php:146
6095
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
6096
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
6097
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:165
6098
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
6099
  msgstr ""
6100
 
6101
  #: classes/gateways/class.pmprogateway_paypal.php:185
6102
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
6103
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:204
6104
  msgid "Confirmation Step"
6105
  msgstr ""
6106
 
6107
  #: classes/gateways/class.pmprogateway_paypal.php:716
6108
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
6109
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
6110
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:841
6111
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
6112
  msgstr ""
6113
 
6114
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
6115
  #: paid-memberships-pro.php:160
6116
  #: paid-memberships-pro.php:162
6117
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:94
6118
  msgid "PayPal Express"
6119
  msgstr ""
6120
 
6121
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
6122
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:356
6123
  msgid "Checkout was already processed."
6124
  msgstr ""
6125
 
6126
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
6127
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:791
6128
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
6129
  msgstr ""
6130
 
6131
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
6132
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:792
6133
  msgid "Error creating plan with PayPal."
6134
  msgstr ""
6135
 
6150
  #: classes/gateways/class.pmprogateway_stripe.php:252
6151
  #: paid-memberships-pro.php:159
6152
  #: paid-memberships-pro.php:161
6153
+ #: classes/gateways/class.pmprogateway_stripe.php:258
6154
  msgid "Stripe"
6155
  msgstr ""
6156
 
6158
  #: classes/gateways/class.pmprogateway_stripe.php:436
6159
  #: classes/gateways/class.pmprogateway_stripe.php:354
6160
  #: classes/gateways/class.pmprogateway_stripe.php:444
6161
+ #: classes/gateways/class.pmprogateway_stripe.php:360
6162
+ #: classes/gateways/class.pmprogateway_stripe.php:450
6163
  msgid "Stripe Connect Settings"
6164
  msgstr ""
6165
 
6166
  #: classes/gateways/class.pmprogateway_stripe.php:352
6167
  #: classes/gateways/class.pmprogateway_stripe.php:356
6168
+ #: classes/gateways/class.pmprogateway_stripe.php:362
6169
  msgid "Live Mode:"
6170
  msgstr ""
6171
 
6173
  #: classes/gateways/class.pmprogateway_stripe.php:440
6174
  #: classes/gateways/class.pmprogateway_stripe.php:358
6175
  #: classes/gateways/class.pmprogateway_stripe.php:448
6176
+ #: classes/gateways/class.pmprogateway_stripe.php:364
6177
+ #: classes/gateways/class.pmprogateway_stripe.php:454
6178
  msgid "Connected"
6179
  msgstr ""
6180
 
6182
  #: classes/gateways/class.pmprogateway_stripe.php:442
6183
  #: classes/gateways/class.pmprogateway_stripe.php:362
6184
  #: classes/gateways/class.pmprogateway_stripe.php:452
6185
+ #: classes/gateways/class.pmprogateway_stripe.php:368
6186
+ #: classes/gateways/class.pmprogateway_stripe.php:458
6187
  msgid "Not Connected"
6188
  msgstr ""
6189
 
6191
  #: classes/gateways/class.pmprogateway_stripe.php:449
6192
  #: classes/gateways/class.pmprogateway_stripe.php:369
6193
  #: classes/gateways/class.pmprogateway_stripe.php:459
6194
+ #: classes/gateways/class.pmprogateway_stripe.php:375
6195
+ #: classes/gateways/class.pmprogateway_stripe.php:465
6196
  msgid "Your site is using legacy API keys to authenticate with Stripe."
6197
  msgstr ""
6198
 
6199
  #: classes/gateways/class.pmprogateway_stripe.php:364
6200
  #: classes/gateways/class.pmprogateway_stripe.php:371
6201
+ #: classes/gateways/class.pmprogateway_stripe.php:377
6202
  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."
6203
  msgstr ""
6204
 
6206
  #: classes/gateways/class.pmprogateway_stripe.php:458
6207
  #: classes/gateways/class.pmprogateway_stripe.php:380
6208
  #: classes/gateways/class.pmprogateway_stripe.php:470
6209
+ #: classes/gateways/class.pmprogateway_stripe.php:386
6210
+ #: classes/gateways/class.pmprogateway_stripe.php:476
6211
  msgid "Stripe Connection:"
6212
  msgstr ""
6213
 
6215
  #: classes/gateways/class.pmprogateway_stripe.php:482
6216
  #: classes/gateways/class.pmprogateway_stripe.php:396
6217
  #: classes/gateways/class.pmprogateway_stripe.php:494
6218
+ #: classes/gateways/class.pmprogateway_stripe.php:402
6219
+ #: classes/gateways/class.pmprogateway_stripe.php:500
6220
  msgid "Disconnect From Stripe"
6221
  msgstr ""
6222
 
6223
  #: classes/gateways/class.pmprogateway_stripe.php:389
6224
  #: classes/gateways/class.pmprogateway_stripe.php:397
6225
+ #: classes/gateways/class.pmprogateway_stripe.php:403
6226
  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."
6227
  msgstr ""
6228
 
6230
  #: classes/gateways/class.pmprogateway_stripe.php:496
6231
  #: classes/gateways/class.pmprogateway_stripe.php:409
6232
  #: classes/gateways/class.pmprogateway_stripe.php:508
6233
+ #: classes/gateways/class.pmprogateway_stripe.php:415
6234
+ #: classes/gateways/class.pmprogateway_stripe.php:514
6235
  msgid "Connect with Stripe"
6236
  msgstr ""
6237
 
6238
  #: classes/gateways/class.pmprogateway_stripe.php:408
6239
  #: classes/gateways/class.pmprogateway_stripe.php:416
6240
+ #: classes/gateways/class.pmprogateway_stripe.php:422
6241
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
6242
  msgstr ""
6243
 
6244
  #: classes/gateways/class.pmprogateway_stripe.php:411
6245
  #: classes/gateways/class.pmprogateway_stripe.php:419
6246
+ #: classes/gateways/class.pmprogateway_stripe.php:425
6247
  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."
6248
  msgstr ""
6249
 
6254
  #: classes/gateways/class.pmprogateway_stripe.php:519
6255
  #: classes/gateways/class.pmprogateway_stripe.php:559
6256
  #: classes/gateways/class.pmprogateway_stripe.php:578
6257
+ #: classes/gateways/class.pmprogateway_stripe.php:437
6258
+ #: classes/gateways/class.pmprogateway_stripe.php:525
6259
+ #: classes/gateways/class.pmprogateway_stripe.php:584
6260
  msgid "Webhook"
6261
  msgstr ""
6262
 
6267
  #: classes/gateways/class.pmprogateway_stripe.php:523
6268
  #: classes/gateways/class.pmprogateway_stripe.php:594
6269
  #: classes/gateways/class.pmprogateway_stripe.php:613
6270
+ #: classes/gateways/class.pmprogateway_stripe.php:441
6271
+ #: classes/gateways/class.pmprogateway_stripe.php:529
6272
+ #: classes/gateways/class.pmprogateway_stripe.php:619
6273
  msgid "Webhook URL"
6274
  msgstr ""
6275
 
6276
  #: classes/gateways/class.pmprogateway_stripe.php:438
6277
  #: classes/gateways/class.pmprogateway_stripe.php:446
6278
+ #: classes/gateways/class.pmprogateway_stripe.php:452
6279
  msgid "Test Mode:"
6280
  msgstr ""
6281
 
6282
  #: classes/gateways/class.pmprogateway_stripe.php:450
6283
  #: classes/gateways/class.pmprogateway_stripe.php:461
6284
+ #: classes/gateways/class.pmprogateway_stripe.php:467
6285
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
6286
  msgstr ""
6287
 
6288
  #: classes/gateways/class.pmprogateway_stripe.php:483
6289
  #: classes/gateways/class.pmprogateway_stripe.php:495
6290
+ #: classes/gateways/class.pmprogateway_stripe.php:501
6291
  msgid "This will disconnect your site from Stripe in test mode only."
6292
  msgstr ""
6293
 
6294
  #: classes/gateways/class.pmprogateway_stripe.php:518
6295
  #: classes/gateways/class.pmprogateway_stripe.php:530
6296
+ #: classes/gateways/class.pmprogateway_stripe.php:536
6297
  msgid "Stripe API Settings (Legacy)"
6298
  msgstr ""
6299
 
6300
  #: classes/gateways/class.pmprogateway_stripe.php:531
6301
  #: classes/gateways/class.pmprogateway_stripe.php:543
6302
  #: classes/gateways/class.pmprogateway_stripe.php:562
6303
+ #: classes/gateways/class.pmprogateway_stripe.php:568
6304
  msgid "Your Publishable Key appears incorrect."
6305
  msgstr ""
6306
 
6310
  #: classes/gateways/class.pmprogateway_stripe.php:587
6311
  #: classes/gateways/class.pmprogateway_stripe.php:582
6312
  #: classes/gateways/class.pmprogateway_stripe.php:606
6313
+ #: classes/gateways/class.pmprogateway_stripe.php:588
6314
+ #: classes/gateways/class.pmprogateway_stripe.php:612
6315
  msgid "Create Webhook"
6316
  msgstr ""
6317
 
6318
  #: classes/gateways/class.pmprogateway_stripe.php:557
6319
  #: classes/gateways/class.pmprogateway_stripe.php:569
6320
  #: classes/gateways/class.pmprogateway_stripe.php:588
6321
+ #: classes/gateways/class.pmprogateway_stripe.php:594
6322
  msgid "A webhook is set up in Stripe, but it is disabled."
6323
  msgstr ""
6324
 
6325
  #: classes/gateways/class.pmprogateway_stripe.php:564
6326
  #: classes/gateways/class.pmprogateway_stripe.php:576
6327
  #: classes/gateways/class.pmprogateway_stripe.php:595
6328
+ #: classes/gateways/class.pmprogateway_stripe.php:601
6329
  msgid "A webhook is set up in Stripe, but it is using an old API version."
6330
  msgstr ""
6331
 
6332
  #: classes/gateways/class.pmprogateway_stripe.php:564
6333
  #: classes/gateways/class.pmprogateway_stripe.php:576
6334
  #: classes/gateways/class.pmprogateway_stripe.php:595
6335
+ #: classes/gateways/class.pmprogateway_stripe.php:601
6336
  msgid "Rebuild Webhook"
6337
  msgstr ""
6338
 
6345
  #: classes/gateways/class.pmprogateway_stripe.php:601
6346
  #: classes/gateways/class.pmprogateway_stripe.php:741
6347
  #: classes/gateways/class.pmprogateway_stripe.php:857
6348
+ #: classes/gateways/class.pmprogateway_stripe.php:607
6349
+ #: classes/gateways/class.pmprogateway_stripe.php:747
6350
+ #: classes/gateways/class.pmprogateway_stripe.php:863
6351
  msgid "Your webhook is enabled."
6352
  msgstr ""
6353
 
6354
  #: classes/gateways/class.pmprogateway_stripe.php:570
6355
  #: classes/gateways/class.pmprogateway_stripe.php:582
6356
  #: classes/gateways/class.pmprogateway_stripe.php:601
6357
+ #: classes/gateways/class.pmprogateway_stripe.php:607
6358
  msgid "Disable Webhook"
6359
  msgstr ""
6360
 
6370
  #: classes/gateways/class.pmprogateway_stripe.php:768
6371
  #: classes/gateways/class.pmprogateway_stripe.php:785
6372
  #: classes/gateways/class.pmprogateway_stripe.php:819
6373
+ #: classes/gateways/class.pmprogateway_stripe.php:614
6374
+ #: classes/gateways/class.pmprogateway_stripe.php:774
6375
+ #: classes/gateways/class.pmprogateway_stripe.php:791
6376
+ #: classes/gateways/class.pmprogateway_stripe.php:825
6377
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
6378
  msgstr ""
6379
 
6380
  #: classes/gateways/class.pmprogateway_stripe.php:589
6381
  #: classes/gateways/class.pmprogateway_stripe.php:601
6382
  #: classes/gateways/class.pmprogateway_stripe.php:620
6383
+ #: classes/gateways/class.pmprogateway_stripe.php:626
6384
  msgid "Other Stripe Settings"
6385
  msgstr ""
6386
 
6387
  #: classes/gateways/class.pmprogateway_stripe.php:593
6388
  #: classes/gateways/class.pmprogateway_stripe.php:605
6389
  #: classes/gateways/class.pmprogateway_stripe.php:624
6390
+ #: classes/gateways/class.pmprogateway_stripe.php:630
6391
  msgid "Stripe API Version"
6392
  msgstr ""
6393
 
6394
  #: classes/gateways/class.pmprogateway_stripe.php:612
6395
  #: classes/gateways/class.pmprogateway_stripe.php:624
6396
  #: classes/gateways/class.pmprogateway_stripe.php:643
6397
+ #: classes/gateways/class.pmprogateway_stripe.php:649
6398
  msgid "Enable Payment Request Button"
6399
  msgstr ""
6400
 
6401
  #: classes/gateways/class.pmprogateway_stripe.php:630
6402
  #: classes/gateways/class.pmprogateway_stripe.php:642
6403
  #: classes/gateways/class.pmprogateway_stripe.php:661
6404
+ #: classes/gateways/class.pmprogateway_stripe.php:667
6405
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
6406
  msgstr ""
6407
 
6408
  #: classes/gateways/class.pmprogateway_stripe.php:643
6409
  #: classes/gateways/class.pmprogateway_stripe.php:655
6410
  #: classes/gateways/class.pmprogateway_stripe.php:674
6411
+ #: classes/gateways/class.pmprogateway_stripe.php:680
6412
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
6413
  msgstr ""
6414
 
6415
  #: classes/gateways/class.pmprogateway_stripe.php:645
6416
  #: classes/gateways/class.pmprogateway_stripe.php:657
6417
  #: classes/gateways/class.pmprogateway_stripe.php:676
6418
+ #: classes/gateways/class.pmprogateway_stripe.php:682
6419
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
6420
  msgstr ""
6421
 
6422
  #: classes/gateways/class.pmprogateway_stripe.php:647
6423
  #: classes/gateways/class.pmprogateway_stripe.php:659
6424
  #: classes/gateways/class.pmprogateway_stripe.php:678
6425
+ #: classes/gateways/class.pmprogateway_stripe.php:684
6426
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
6427
  msgstr ""
6428
 
6429
  #: classes/gateways/class.pmprogateway_stripe.php:649
6430
  #: classes/gateways/class.pmprogateway_stripe.php:661
6431
  #: classes/gateways/class.pmprogateway_stripe.php:680
6432
+ #: classes/gateways/class.pmprogateway_stripe.php:686
6433
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
6434
  msgstr ""
6435
 
6436
  #: classes/gateways/class.pmprogateway_stripe.php:674
6437
  #: classes/gateways/class.pmprogateway_stripe.php:686
6438
  #: classes/gateways/class.pmprogateway_stripe.php:705
6439
+ #: classes/gateways/class.pmprogateway_stripe.php:711
6440
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
6441
  msgstr ""
6442
 
6443
  #: classes/gateways/class.pmprogateway_stripe.php:695
6444
  #: classes/gateways/class.pmprogateway_stripe.php:707
6445
  #: classes/gateways/class.pmprogateway_stripe.php:726
6446
+ #: classes/gateways/class.pmprogateway_stripe.php:732
6447
  msgid "Webhook creation failed. You might already have a webhook set up."
6448
  msgstr ""
6449
 
6453
  #: classes/gateways/class.pmprogateway_stripe.php:847
6454
  #: classes/gateways/class.pmprogateway_stripe.php:792
6455
  #: classes/gateways/class.pmprogateway_stripe.php:866
6456
+ #: classes/gateways/class.pmprogateway_stripe.php:798
6457
+ #: classes/gateways/class.pmprogateway_stripe.php:872
6458
  msgid "There was an error deleting the webhook."
6459
  msgstr ""
6460
 
6461
  #: classes/gateways/class.pmprogateway_stripe.php:811
6462
  #: classes/gateways/class.pmprogateway_stripe.php:823
6463
  #: classes/gateways/class.pmprogateway_stripe.php:842
6464
+ #: classes/gateways/class.pmprogateway_stripe.php:848
6465
  msgid "Webhook creation failed. Please refresh and try again."
6466
  msgstr ""
6467
 
6468
  #: classes/gateways/class.pmprogateway_stripe.php:867
6469
  #: classes/gateways/class.pmprogateway_stripe.php:879
6470
  #: classes/gateways/class.pmprogateway_stripe.php:898
6471
+ #: classes/gateways/class.pmprogateway_stripe.php:904
6472
  msgid "Verification steps confirmed. Your payment is processing."
6473
  msgstr ""
6474
 
6475
  #: classes/gateways/class.pmprogateway_stripe.php:1262
6476
  #: classes/gateways/class.pmprogateway_stripe.php:1274
6477
  #: classes/gateways/class.pmprogateway_stripe.php:1293
6478
+ #: classes/gateways/class.pmprogateway_stripe.php:1299
6479
  msgid "Pay with Credit Card"
6480
  msgstr ""
6481
 
6482
  #: classes/gateways/class.pmprogateway_stripe.php:1296
6483
  #: classes/gateways/class.pmprogateway_stripe.php:1308
6484
  #: classes/gateways/class.pmprogateway_stripe.php:1327
6485
+ #: classes/gateways/class.pmprogateway_stripe.php:1333
6486
  msgid "CVC"
6487
  msgstr ""
6488
 
6489
  #: classes/gateways/class.pmprogateway_stripe.php:1374
6490
  #: classes/gateways/class.pmprogateway_stripe.php:1386
6491
  #: classes/gateways/class.pmprogateway_stripe.php:1405
6492
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
6493
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
6494
  msgstr ""
6495
 
6496
  #: classes/gateways/class.pmprogateway_stripe.php:1379
6497
  #: classes/gateways/class.pmprogateway_stripe.php:1391
6498
  #: classes/gateways/class.pmprogateway_stripe.php:1410
6499
+ #: classes/gateways/class.pmprogateway_stripe.php:1416
6500
  msgid "Subscription Updates"
6501
  msgstr ""
6502
 
6503
  #: classes/gateways/class.pmprogateway_stripe.php:1383
6504
  #: classes/gateways/class.pmprogateway_stripe.php:1395
6505
  #: classes/gateways/class.pmprogateway_stripe.php:1414
6506
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
6507
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
6508
  msgstr ""
6509
 
6510
  #: classes/gateways/class.pmprogateway_stripe.php:1385
6511
  #: classes/gateways/class.pmprogateway_stripe.php:1397
6512
  #: classes/gateways/class.pmprogateway_stripe.php:1416
6513
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
6514
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
6515
  msgstr ""
6516
 
6526
  #: classes/gateways/class.pmprogateway_stripe.php:2016
6527
  #: classes/gateways/class.pmprogateway_stripe.php:2029
6528
  #: classes/gateways/class.pmprogateway_stripe.php:2033
6529
+ #: classes/gateways/class.pmprogateway_stripe.php:2018
6530
+ #: classes/gateways/class.pmprogateway_stripe.php:2022
6531
+ #: classes/gateways/class.pmprogateway_stripe.php:2035
6532
+ #: classes/gateways/class.pmprogateway_stripe.php:2039
6533
  msgid "Error: %s"
6534
  msgstr ""
6535
 
6539
  #: classes/gateways/class.pmprogateway_stripe.php:2182
6540
  #: classes/gateways/class.pmprogateway_stripe.php:2196
6541
  #: classes/gateways/class.pmprogateway_stripe.php:2201
6542
+ #: classes/gateways/class.pmprogateway_stripe.php:2202
6543
+ #: classes/gateways/class.pmprogateway_stripe.php:2207
6544
  msgid "Error getting subscription with Stripe:"
6545
  msgstr ""
6546
 
6547
  #: classes/gateways/class.pmprogateway_stripe.php:2480
6548
  #: classes/gateways/class.pmprogateway_stripe.php:2492
6549
  #: classes/gateways/class.pmprogateway_stripe.php:2514
6550
+ #: classes/gateways/class.pmprogateway_stripe.php:2520
6551
  msgid "Could not cancel the old subscription. Updates have not been processed."
6552
  msgstr ""
6553
 
6554
  #: classes/gateways/class.pmprogateway_stripe.php:2632
6555
  #: classes/gateways/class.pmprogateway_stripe.php:2644
6556
  #: classes/gateways/class.pmprogateway_stripe.php:2666
6557
+ #: classes/gateways/class.pmprogateway_stripe.php:2672
6558
  msgid "Could not cancel old subscription."
6559
  msgstr ""
6560
 
6561
  #: classes/gateways/class.pmprogateway_stripe.php:2648
6562
  #: classes/gateways/class.pmprogateway_stripe.php:2660
6563
  #: classes/gateways/class.pmprogateway_stripe.php:2682
6564
+ #: classes/gateways/class.pmprogateway_stripe.php:2688
6565
  msgid "Could not find the customer."
6566
  msgstr ""
6567
 
6571
  #: classes/gateways/class.pmprogateway_stripe.php:2834
6572
  #: classes/gateways/class.pmprogateway_stripe.php:2850
6573
  #: classes/gateways/class.pmprogateway_stripe.php:2856
6574
+ #: classes/gateways/class.pmprogateway_stripe.php:2862
6575
  msgid "Error: "
6576
  msgstr ""
6577
 
6578
  #: classes/gateways/class.pmprogateway_stripe.php:2836
6579
  #: classes/gateways/class.pmprogateway_stripe.php:2848
6580
  #: classes/gateways/class.pmprogateway_stripe.php:2870
6581
+ #: classes/gateways/class.pmprogateway_stripe.php:2876
6582
  msgid "Error: Unkown error while refunding charge #%s"
6583
  msgstr ""
6584
 
6585
  #: classes/gateways/class.pmprogateway_stripe.php:3330
6586
  #: classes/gateways/class.pmprogateway_stripe.php:3342
6587
  #: classes/gateways/class.pmprogateway_stripe.php:3364
6588
+ #: classes/gateways/class.pmprogateway_stripe.php:3370
6589
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
6590
  msgstr ""
6591
 
6592
  #: classes/gateways/class.pmprogateway_stripe.php:3347
6593
  #: classes/gateways/class.pmprogateway_stripe.php:3359
6594
  #: classes/gateways/class.pmprogateway_stripe.php:3381
6595
+ #: classes/gateways/class.pmprogateway_stripe.php:3387
6596
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
6597
  msgstr ""
6598
 
6599
  #: classes/gateways/class.pmprogateway_stripe.php:3533
6600
  #: classes/gateways/class.pmprogateway_stripe.php:3545
6601
  #: classes/gateways/class.pmprogateway_stripe.php:3567
6602
+ #: classes/gateways/class.pmprogateway_stripe.php:3573
6603
  msgid "Invalid response from the Stripe Connect server."
6604
  msgstr ""
6605
 
6607
  #: classes/gateways/class.pmprogateway_stripe.php:3561
6608
  #: classes/gateways/class.pmprogateway_stripe.php:3573
6609
  #: classes/gateways/class.pmprogateway_stripe.php:3595
6610
+ #: classes/gateways/class.pmprogateway_stripe.php:3601
6611
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
6612
  msgstr ""
6613
 
6615
  #: classes/gateways/class.pmprogateway_stripe.php:3597
6616
  #: classes/gateways/class.pmprogateway_stripe.php:3609
6617
  #: classes/gateways/class.pmprogateway_stripe.php:3631
6618
+ #: classes/gateways/class.pmprogateway_stripe.php:3637
6619
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
6620
  msgstr ""
6621
 
6622
  #: classes/gateways/class.pmprogateway_stripe.php:3768
6623
  #: classes/gateways/class.pmprogateway_stripe.php:3780
6624
  #: classes/gateways/class.pmprogateway_stripe.php:3802
6625
+ #: classes/gateways/class.pmprogateway_stripe.php:3808
6626
  msgid "Last webhook received at"
6627
  msgstr ""
6628
 
6629
  #: classes/gateways/class.pmprogateway_stripe.php:3770
6630
  #: classes/gateways/class.pmprogateway_stripe.php:3782
6631
  #: classes/gateways/class.pmprogateway_stripe.php:3804
6632
+ #: classes/gateways/class.pmprogateway_stripe.php:3810
6633
  msgid "No webhooks have been received."
6634
  msgstr ""
6635
 
6636
  #: classes/gateways/class.pmprogateway_stripe.php:3774
6637
  #: classes/gateways/class.pmprogateway_stripe.php:3786
6638
  #: classes/gateways/class.pmprogateway_stripe.php:3808
6639
+ #: classes/gateways/class.pmprogateway_stripe.php:3814
6640
  msgid "Your webhook may not be working correctly."
6641
  msgstr ""
6642
 
6643
  #: classes/gateways/class.pmprogateway_stripe.php:3776
6644
  #: classes/gateways/class.pmprogateway_stripe.php:3788
6645
  #: classes/gateways/class.pmprogateway_stripe.php:3810
6646
+ #: classes/gateways/class.pmprogateway_stripe.php:3816
6647
  msgid "Click here for info on setting up your webhook with Stripe."
6648
  msgstr ""
6649
 
8846
 
8847
  #: includes/login.php:429
8848
  #: includes/profile.php:843
8849
+ #: includes/profile.php:855
8850
  msgid "New passwords do not match."
8851
  msgstr ""
8852
 
8853
  #: includes/login.php:433
8854
  #: includes/profile.php:839
8855
+ #: includes/profile.php:851
8856
  msgid "Please complete all fields."
8857
  msgstr ""
8858
 
8882
 
8883
  #: includes/login.php:688
8884
  #: includes/profile.php:891
8885
+ #: includes/profile.php:903
8886
  msgid "New Password"
8887
  msgstr ""
8888
 
8889
  #: includes/login.php:690
8890
  #: includes/profile.php:894
8891
  #: includes/scripts.php:86
8892
+ #: includes/profile.php:906
8893
+ #: includes/scripts.php:85
8894
  msgid "Strength Indicator"
8895
  msgstr ""
8896
 
8897
  #: includes/login.php:694
8898
  #: includes/profile.php:898
8899
+ #: includes/profile.php:910
8900
  msgid "Confirm New Password"
8901
  msgstr ""
8902
 
8997
  #: includes/privacy.php:182
8998
  #: includes/profile.php:425
8999
  #: includes/profile.php:493
9000
+ #: includes/profile.php:499
9001
  msgid "Level ID"
9002
  msgstr ""
9003
 
9004
  #: includes/privacy.php:190
9005
  #: includes/profile.php:496
9006
+ #: includes/profile.php:502
9007
  msgid "Date Modified"
9008
  msgstr ""
9009
 
9010
  #: includes/privacy.php:194
9011
  #: includes/profile.php:497
9012
+ #: includes/profile.php:503
9013
  msgid "End Date"
9014
  msgstr ""
9015
 
9016
  #: includes/privacy.php:198
9017
  #: includes/profile.php:498
9018
+ #: includes/profile.php:504
9019
  msgid "Level Cost"
9020
  msgstr ""
9021
 
9124
  msgstr ""
9125
 
9126
  #: includes/profile.php:485
9127
+ #: includes/profile.php:488
9128
  msgid "No membership orders found."
9129
  msgstr ""
9130
 
9131
  #: includes/profile.php:537
9132
+ #: includes/profile.php:546
9133
  msgid "No membership history found."
9134
  msgstr ""
9135
 
9136
  #: includes/profile.php:644
9137
+ #: includes/profile.php:656
9138
  msgid "Log in to edit your profile."
9139
  msgstr ""
9140
 
9141
  #: includes/profile.php:679
9142
+ #: includes/profile.php:691
9143
  msgid "Please enter a display name."
9144
  msgstr ""
9145
 
9146
  #: includes/profile.php:689
9147
+ #: includes/profile.php:701
9148
  msgid "Please enter an email address."
9149
  msgstr ""
9150
 
9151
  #: includes/profile.php:691
9152
+ #: includes/profile.php:703
9153
  msgid "The email address isn&#8217;t correct."
9154
  msgstr ""
9155
 
9156
  #: includes/profile.php:695
9157
+ #: includes/profile.php:707
9158
  msgid "This email is already registered, please choose another one."
9159
  msgstr ""
9160
 
9161
  #: includes/profile.php:722
9162
+ #: includes/profile.php:734
9163
  msgid "Your profile has been updated."
9164
  msgstr ""
9165
 
9166
  #: includes/profile.php:749
9167
+ #: includes/profile.php:761
9168
  msgid "Display name publicly as"
9169
  msgstr ""
9170
 
9171
  #: includes/profile.php:762
9172
+ #: includes/profile.php:774
9173
  msgid "Site administrators must use the WordPress dashboard to update their email address."
9174
  msgstr ""
9175
 
9176
  #: includes/profile.php:785
9177
+ #: includes/profile.php:797
9178
  msgid "Update Profile"
9179
  msgstr ""
9180
 
9181
  #: includes/profile.php:841
9182
+ #: includes/profile.php:853
9183
  msgid "Please enter your current password."
9184
  msgstr ""
9185
 
9186
  #: includes/profile.php:845
9187
+ #: includes/profile.php:857
9188
  msgid "Your current password is incorrect."
9189
  msgstr ""
9190
 
9191
  #: includes/profile.php:856
9192
+ #: includes/profile.php:868
9193
  msgid "Your password has been updated."
9194
  msgstr ""
9195
 
9196
  #: includes/profile.php:886
9197
+ #: includes/profile.php:898
9198
  msgid "Current Password"
9199
  msgstr ""
9200
 
9201
  #: includes/profile.php:888
9202
  #: includes/profile.php:893
9203
  #: includes/profile.php:900
9204
+ #: includes/profile.php:905
9205
+ #: includes/profile.php:912
9206
  msgid "Required Field"
9207
  msgstr ""
9208
 
9348
  msgstr ""
9349
 
9350
  #: services/braintree-webhook.php:425
9351
+ #: services/braintree-webhook.php:426
9352
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
9353
  msgstr ""
9354
 
9355
  #: services/braintree-webhook.php:427
9356
+ #: services/braintree-webhook.php:428
9357
  msgid "A member's Braintree subscription has expired at %s"
9358
  msgstr ""
9359
 
9688
 
9689
  #: classes/gateways/class.pmprogateway_stripe.php:360
9690
  #: classes/gateways/class.pmprogateway_stripe.php:450
9691
+ #: classes/gateways/class.pmprogateway_stripe.php:366
9692
+ #: classes/gateways/class.pmprogateway_stripe.php:456
9693
  msgid "Connected with Legacy Keys"
9694
  msgstr ""
9695
 
9696
  #: classes/gateways/class.pmprogateway_stripe.php:370
9697
  #: classes/gateways/class.pmprogateway_stripe.php:460
9698
+ #: classes/gateways/class.pmprogateway_stripe.php:376
9699
+ #: classes/gateways/class.pmprogateway_stripe.php:466
9700
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
9701
  msgstr ""
9702
 
9703
  #: classes/gateways/class.pmprogateway_stripe.php:372
9704
  #: classes/gateways/class.pmprogateway_stripe.php:462
9705
+ #: classes/gateways/class.pmprogateway_stripe.php:378
9706
+ #: classes/gateways/class.pmprogateway_stripe.php:468
9707
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
9708
  msgstr ""
9709
 
9760
  msgstr ""
9761
 
9762
  #: classes/gateways/class.pmprogateway_stripe.php:533
9763
+ #: classes/gateways/class.pmprogateway_stripe.php:539
9764
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
9765
  msgstr ""
9766
 
9767
  #: classes/gateways/class.pmprogateway_stripe.php:534
9768
+ #: classes/gateways/class.pmprogateway_stripe.php:540
9769
  msgid "Click here to use the legacy API settings."
9770
  msgstr ""
9771
 
9772
  #: paid-memberships-pro.php:194
9773
  msgid "Once a month"
9774
  msgstr ""
9775
+
9776
+ #: adminpages/license.php:37
9777
+ msgid "There was an issue validating your license key: %s"
9778
+ msgstr ""
9779
+
9780
+ #: includes/email-templates.php:172
9781
+ msgid ""
9782
+ "<p>There was a new member checkout at !!sitename!!.</p>\n"
9783
+ "\n"
9784
+ "<p><strong>They have chosen to pay by check.</strong></p>\n"
9785
+ "\n"
9786
+ "<p>Below are details about the new membership account and a receipt for the initial membership invoice.</p>\n"
9787
+ "\n"
9788
+ "<p>Account: !!display_name!! (!!user_email!!)</p>\n"
9789
+ "<p>Membership Level: !!membership_level_name!!</p>\n"
9790
+ "<p>Membership Fee: !!membership_cost!!</p>\n"
9791
+ "!!membership_expiration!! !!discount_code!!\n"
9792
+ "\n"
9793
+ "<p>\n"
9794
+ "\tInvoice #!!invoice_id!! on !!invoice_date!!<br />\n"
9795
+ "\tTotal Billed: !!invoice_total!!\n"
9796
+ "</p>\n"
9797
+ "\n"
9798
+ "<p>Log in to your membership account here: !!login_url!!</p>"
9799
+ msgstr ""
9800
+
9801
+ #: includes/license.php:112
9802
+ msgid "Missing key."
9803
+ msgstr ""
9804
+
9805
+ #: shortcodes/pmpro_account.php:145
9806
+ msgctxt "A dash is shown when there is no expiration date."
9807
+ msgid "&#8212;"
9808
+ msgstr ""
languages/paid-memberships-pro-es_CL.mo CHANGED
Binary file
languages/paid-memberships-pro-es_CL.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.2\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-09-17T13:57:09+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -498,6 +498,8 @@ msgstr "Expira"
498
  #: adminpages/advancedsettings.php:479
499
  #: classes/gateways/class.pmprogateway_stripe.php:634
500
  #: classes/gateways/class.pmprogateway_stripe.php:648
 
 
501
  msgid "No"
502
  msgstr "No"
503
 
@@ -522,6 +524,8 @@ msgstr "No"
522
  #: adminpages/advancedsettings.php:397
523
  #: classes/gateways/class.pmprogateway_stripe.php:636
524
  #: classes/gateways/class.pmprogateway_stripe.php:650
 
 
525
  msgid "Yes"
526
  msgstr "Si"
527
 
@@ -658,6 +662,7 @@ msgstr "Pasarela de pagos &amp; SSL"
658
  #: adminpages/orders.php:391
659
  #: adminpages/orders.php:1445
660
  #: adminpages/orders.php:1448
 
661
  msgid "Email"
662
  msgstr "Email"
663
 
@@ -938,6 +943,7 @@ msgstr "Cupón"
938
  #: includes/privacy.php:186
939
  #: includes/profile.php:495
940
  #: adminpages/discountcodes.php:489
 
941
  msgid "Start Date"
942
  msgstr "Fecha de inicio"
943
 
@@ -952,6 +958,7 @@ msgstr "Fecha de inicio"
952
  #: classes/gateways/class.pmprogateway_stripe.php:1301
953
  #: adminpages/discountcodes.php:507
954
  #: classes/gateways/class.pmprogateway_stripe.php:1320
 
955
  msgid "Expiration Date"
956
  msgstr "Fecha de expiración"
957
 
@@ -1325,6 +1332,7 @@ msgstr "Cantidad a facturar"
1325
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1326
  #: adminpages/discountcodes.php:608
1327
  #: classes/gateways/class.pmprogateway_stripe.php:1497
 
1328
  msgid "per"
1329
  msgstr "por"
1330
 
@@ -1338,6 +1346,7 @@ msgstr "por"
1338
  #: adminpages/discountcodes.php:612
1339
  #: adminpages/discountcodes.php:699
1340
  #: classes/gateways/class.pmprogateway_stripe.php:1363
 
1341
  msgid "Day(s)"
1342
  msgstr "Día(s)"
1343
 
@@ -1351,6 +1360,7 @@ msgstr "Día(s)"
1351
  #: adminpages/discountcodes.php:612
1352
  #: adminpages/discountcodes.php:699
1353
  #: classes/gateways/class.pmprogateway_stripe.php:1364
 
1354
  msgid "Week(s)"
1355
  msgstr "Semana(s)"
1356
 
@@ -1364,6 +1374,7 @@ msgstr "Semana(s)"
1364
  #: adminpages/discountcodes.php:612
1365
  #: adminpages/discountcodes.php:699
1366
  #: classes/gateways/class.pmprogateway_stripe.php:1365
 
1367
  msgid "Month(s)"
1368
  msgstr "Mes(es)"
1369
 
@@ -1377,6 +1388,7 @@ msgstr "Mes(es)"
1377
  #: adminpages/discountcodes.php:612
1378
  #: adminpages/discountcodes.php:699
1379
  #: classes/gateways/class.pmprogateway_stripe.php:1366
 
1380
  msgid "Year(s)"
1381
  msgstr "Año(s)"
1382
 
@@ -1668,6 +1680,7 @@ msgstr "Se unió"
1668
  #: adminpages/advancedsettings.php:316
1669
  #: includes/privacy.php:175
1670
  #: includes/profile.php:509
 
1671
  msgid "Never"
1672
  msgstr "Nunca"
1673
 
@@ -1870,6 +1883,7 @@ msgstr "p.ej. PayPal Express, PayPal Standard, Credit Card."
1870
  #: adminpages/orders.php:679
1871
  #: classes/gateways/class.pmprogateway_stripe.php:1284
1872
  #: classes/gateways/class.pmprogateway_stripe.php:1303
 
1873
  msgid "Card Type"
1874
  msgstr "Tipo de tarjeta"
1875
 
@@ -1923,6 +1937,7 @@ msgstr "Año de expiración"
1923
  #: adminpages/dashboard.php:294
1924
  #: adminpages/orders.php:742
1925
  #: adminpages/orders.php:1348
 
1926
  msgid "Status"
1927
  msgstr "Estado"
1928
 
@@ -2055,6 +2070,8 @@ msgstr "Guardar pago"
2055
  #: pages/cancel.php:96
2056
  #: shortcodes/pmpro_account.php:106
2057
  #: adminpages/orders.php:968
 
 
2058
  msgid "Cancel"
2059
  msgstr "Cancelar"
2060
 
@@ -2277,6 +2294,7 @@ msgstr "Contraseña"
2277
  #: classes/gateways/class.pmprogateway_paypal.php:153
2278
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
2279
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
 
2280
  msgid "Gateway Account Email"
2281
  msgstr "Email de cuenta de la Pasarela "
2282
 
@@ -2285,6 +2303,7 @@ msgstr "Email de cuenta de la Pasarela "
2285
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
2286
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
2287
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
 
2288
  msgid "API Username"
2289
  msgstr "Nombre de usuario de API (API Username)"
2290
 
@@ -2293,6 +2312,7 @@ msgstr "Nombre de usuario de API (API Username)"
2293
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
2294
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
2295
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
 
2296
  msgid "API Password"
2297
  msgstr "Contraseña de API (API Password)"
2298
 
@@ -2300,6 +2320,7 @@ msgstr "Contraseña de API (API Password)"
2300
  #: classes/gateways/class.pmprogateway_paypal.php:177
2301
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
2302
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
 
2303
  msgid "API Signature"
2304
  msgstr "Firma de API (API Signature)"
2305
 
@@ -2317,6 +2338,7 @@ msgstr "Llave de transaccion (Transaction Key)"
2317
  #: classes/gateways/class.pmprogateway_stripe.php:539
2318
  #: classes/gateways/class.pmprogateway_stripe.php:551
2319
  #: classes/gateways/class.pmprogateway_stripe.php:570
 
2320
  msgid "Secret Key"
2321
  msgstr "Llave secreta (Secret Key)"
2322
 
@@ -2324,6 +2346,7 @@ msgstr "Llave secreta (Secret Key)"
2324
  #: classes/gateways/class.pmprogateway_stripe.php:523
2325
  #: classes/gateways/class.pmprogateway_stripe.php:535
2326
  #: classes/gateways/class.pmprogateway_stripe.php:554
 
2327
  msgid "Publishable Key"
2328
  msgstr "Llave publicable (Publishable Key)"
2329
 
@@ -2427,12 +2450,14 @@ msgstr "Usar la \"Opción Nuclear\" para usar URLs seguras (HTTPS) en tus págin
2427
  #: classes/gateways/class.pmprogateway_paypal.php:196
2428
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
2429
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
 
2430
  msgid "IPN Handler URL"
2431
  msgstr "IPN Handler URL"
2432
 
2433
  #: adminpages/paymentsettings.php:449
2434
  #: classes/gateways/class.pmprogateway_paypal.php:199
2435
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
 
2436
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
2437
  msgstr "Para integrar completamente con Paypal, asegúrate de introducir tu IPN Handler URL a"
2438
 
@@ -2666,6 +2691,7 @@ msgstr "Confirmación de membresía para %s"
2666
  #: classes/class.pmproemail.php:769
2667
  #: classes/class.pmproemail.php:771
2668
  #: classes/gateways/class.pmprogateway_stripe.php:1333
 
2669
  msgid "Discount Code"
2670
  msgstr "Cupón de descuento"
2671
 
@@ -2903,6 +2929,9 @@ msgstr "Se realizó un pago parcial que hemos podido devolver. Por favor contact
2903
  #: classes/gateways/class.pmprogateway_stripe.php:2127
2904
  #: classes/gateways/class.pmprogateway_stripe.php:2132
2905
  #: classes/gateways/class.pmprogateway_stripe.php:2137
 
 
 
2906
  msgid "Error creating customer record with Stripe:"
2907
  msgstr "Error creando entrada para el cliente con Stripe:"
2908
 
@@ -2913,6 +2942,8 @@ msgstr "Error creando entrada para el cliente con Stripe:"
2913
  #: classes/gateways/class.pmprogateway_stripe.php:2356
2914
  #: classes/gateways/class.pmprogateway_stripe.php:2373
2915
  #: classes/gateways/class.pmprogateway_stripe.php:2378
 
 
2916
  msgid "Error creating plan with Stripe:"
2917
  msgstr "Error creando plan con Stripe:"
2918
 
@@ -2923,6 +2954,8 @@ msgstr "Error creando plan con Stripe:"
2923
  #: classes/gateways/class.pmprogateway_stripe.php:2401
2924
  #: classes/gateways/class.pmprogateway_stripe.php:2409
2925
  #: classes/gateways/class.pmprogateway_stripe.php:2423
 
 
2926
  msgid "Error subscribing customer to plan with Stripe:"
2927
  msgstr "Error subscribiendo al cliente al plan con Stripe:"
2928
 
@@ -2951,6 +2984,7 @@ msgstr "Tu membresía esta <strong>activa</strong>."
2951
  #: adminpages/dashboard.php:224
2952
  #: adminpages/dashboard.php:292
2953
  #: adminpages/orders.php:1343
 
2954
  msgid "Level"
2955
  msgstr "Nivel"
2956
 
@@ -2997,6 +3031,8 @@ msgstr "Editar Perfil"
2997
  #: includes/profile.php:872
2998
  #: includes/profile.php:909
2999
  #: shortcodes/pmpro_account.php:195
 
 
3000
  msgid "Change Password"
3001
  msgstr "Cambiar Contraseña"
3002
 
@@ -3061,6 +3097,7 @@ msgstr "Tu subscripción de pago es gestionada por Paypal. Por favor <a href=\"h
3061
  #: includes/profile.php:747
3062
  #: pages/billing.php:164
3063
  #: pages/checkout.php:234
 
3064
  msgid "First Name"
3065
  msgstr "Nombre"
3066
 
@@ -3069,6 +3106,7 @@ msgstr "Nombre"
3069
  #: includes/profile.php:748
3070
  #: pages/billing.php:168
3071
  #: pages/checkout.php:238
 
3072
  msgid "Last Name"
3073
  msgstr "Apellidos"
3074
 
@@ -3163,6 +3201,7 @@ msgstr "Información de la tarjeta de crédito"
3163
  #: pages/checkout.php:389
3164
  #: classes/gateways/class.pmprogateway_stripe.php:1297
3165
  #: classes/gateways/class.pmprogateway_stripe.php:1316
 
3166
  msgid "Card Number"
3167
  msgstr "Número de la Tarjeta"
3168
 
@@ -3186,6 +3225,7 @@ msgstr "¿Que es esto?"
3186
  #: pages/billing.php:425
3187
  #: classes/gateways/class.pmprogateway_stripe.php:1403
3188
  #: classes/gateways/class.pmprogateway_stripe.php:1422
 
3189
  msgid "Update"
3190
  msgstr "Actualizar"
3191
 
@@ -3257,6 +3297,7 @@ msgstr "Haz click aquí para introducir tu cupón de descuento"
3257
  #: pages/checkout.php:432
3258
  #: classes/gateways/class.pmprogateway_stripe.php:1319
3259
  #: classes/gateways/class.pmprogateway_stripe.php:1338
 
3260
  msgid "Apply"
3261
  msgstr "Aplicar"
3262
 
@@ -3323,6 +3364,7 @@ msgstr "Pague con su tarjeta de crédito aquí"
3323
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
3324
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
3325
  #: pages/checkout.php:218
 
3326
  msgid "Check Out with PayPal"
3327
  msgstr "pague con PayPal"
3328
 
@@ -3332,6 +3374,7 @@ msgstr "pague con PayPal"
3332
  #: pages/checkout.php:367
3333
  #: classes/gateways/class.pmprogateway_stripe.php:1264
3334
  #: classes/gateways/class.pmprogateway_stripe.php:1283
 
3335
  #, php-format
3336
  msgid "We Accept %s"
3337
  msgstr "Aceptamos %s"
@@ -3342,6 +3385,7 @@ msgstr "Aceptamos %s"
3342
  #: pages/checkout.php:366
3343
  #: classes/gateways/class.pmprogateway_stripe.php:1263
3344
  #: classes/gateways/class.pmprogateway_stripe.php:1282
 
3345
  msgid "Payment Information"
3346
  msgstr "Información de pago"
3347
 
@@ -3355,6 +3399,7 @@ msgstr "Completa el pago"
3355
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
3356
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
3357
  #: pages/checkout.php:526
 
3358
  msgid "Submit and Check Out"
3359
  msgstr "Envíar y pagar"
3360
 
@@ -3364,6 +3409,7 @@ msgstr "Envíar y pagar"
3364
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
3365
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
3366
  #: pages/checkout.php:526
 
3367
  msgid "Submit and Confirm"
3368
  msgstr "Enviar y confirmar"
3369
 
@@ -3672,6 +3718,8 @@ msgstr "Error desconocido generando tu cuenta. Por favor contactanos para que po
3672
  #: preheaders/checkout.php:803
3673
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
3674
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
 
 
3675
  msgid "The PayPal Token was lost."
3676
  msgstr "El token de PayPal se ha perdido."
3677
 
@@ -3731,6 +3779,7 @@ msgstr "El cupón <strong>%s</strong> ha sido aplicado a tu pago."
3731
 
3732
  #: services/authnet-silent-post.php:133
3733
  #: services/authnet-silent-post.php:173
 
3734
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
3735
  msgstr "<p>Authorize.net ha congelado un pago y está revisandolo.</p><p>Información de pago de Authorize.net"
3736
 
@@ -3883,6 +3932,9 @@ msgstr ""
3883
  #: adminpages/orders.php:1544
3884
  #: adminpages/orders.php:1554
3885
  #: adminpages/orders.php:1553
 
 
 
3886
  msgid "N/A"
3887
  msgstr ""
3888
 
@@ -3917,6 +3969,7 @@ msgstr ""
3917
 
3918
  #: adminpages/admin_header.php:152
3919
  #: classes/gateways/class.pmprogateway_stripe.php:76
 
3920
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
3921
  msgstr ""
3922
 
@@ -4211,6 +4264,7 @@ msgstr ""
4211
  #: adminpages/dashboard.php:174
4212
  #: adminpages/license.php:49
4213
  #: adminpages/dashboard.php:178
 
4214
  msgid "Your license is invalid or expired."
4215
  msgstr ""
4216
 
@@ -4222,6 +4276,7 @@ msgstr ""
4222
  #: adminpages/dashboard.php:177
4223
  #: adminpages/license.php:51
4224
  #: adminpages/dashboard.php:181
 
4225
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
4226
  msgstr ""
4227
 
@@ -4718,26 +4773,33 @@ msgid "Your license key has been validated."
4718
  msgstr ""
4719
 
4720
  #: adminpages/license.php:43
 
4721
  msgid "Paid Memberships Pro Support License"
4722
  msgstr ""
4723
 
4724
  #: adminpages/license.php:47
 
4725
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
4726
  msgstr ""
4727
 
4728
  #: adminpages/license.php:49
 
 
4729
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
4730
  msgstr ""
4731
 
4732
  #: adminpages/license.php:59
 
4733
  msgid "Enter license key here..."
4734
  msgstr ""
4735
 
4736
  #: adminpages/license.php:61
 
4737
  msgid "Validate Key"
4738
  msgstr ""
4739
 
4740
  #: adminpages/license.php:95
 
4741
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
4742
  msgstr ""
4743
 
@@ -5535,6 +5597,7 @@ msgstr ""
5535
 
5536
  #: classes/gateways/class.pmprogateway_braintree.php:87
5537
  #: classes/gateways/class.pmprogateway_stripe.php:91
 
5538
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
5539
  msgstr ""
5540
 
@@ -5862,6 +5925,7 @@ msgid "Your order has been refused."
5862
  msgstr ""
5863
 
5864
  #: classes/gateways/class.pmprogateway_cybersource.php:922
 
5865
  msgid "Unknown error."
5866
  msgstr ""
5867
 
@@ -5894,41 +5958,49 @@ msgstr ""
5894
  #: classes/gateways/class.pmprogateway_paypal.php:132
5895
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
5896
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
 
5897
  msgid "PayPal Settings"
5898
  msgstr ""
5899
 
5900
  #: classes/gateways/class.pmprogateway_paypal.php:146
5901
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
5902
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
 
5903
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
5904
  msgstr ""
5905
 
5906
  #: classes/gateways/class.pmprogateway_paypal.php:185
5907
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
 
5908
  msgid "Confirmation Step"
5909
  msgstr ""
5910
 
5911
  #: classes/gateways/class.pmprogateway_paypal.php:716
5912
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
5913
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
 
5914
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
5915
  msgstr ""
5916
 
5917
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
5918
  #: paid-memberships-pro.php:160
5919
  #: paid-memberships-pro.php:162
 
5920
  msgid "PayPal Express"
5921
  msgstr ""
5922
 
5923
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
 
5924
  msgid "Checkout was already processed."
5925
  msgstr ""
5926
 
5927
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
 
5928
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
5929
  msgstr ""
5930
 
5931
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
 
5932
  msgid "Error creating plan with PayPal."
5933
  msgstr ""
5934
 
@@ -5949,6 +6021,7 @@ msgstr ""
5949
  #: classes/gateways/class.pmprogateway_stripe.php:252
5950
  #: paid-memberships-pro.php:159
5951
  #: paid-memberships-pro.php:161
 
5952
  msgid "Stripe"
5953
  msgstr ""
5954
 
@@ -5956,11 +6029,14 @@ msgstr ""
5956
  #: classes/gateways/class.pmprogateway_stripe.php:436
5957
  #: classes/gateways/class.pmprogateway_stripe.php:354
5958
  #: classes/gateways/class.pmprogateway_stripe.php:444
 
 
5959
  msgid "Stripe Connect Settings"
5960
  msgstr ""
5961
 
5962
  #: classes/gateways/class.pmprogateway_stripe.php:352
5963
  #: classes/gateways/class.pmprogateway_stripe.php:356
 
5964
  msgid "Live Mode:"
5965
  msgstr ""
5966
 
@@ -5968,6 +6044,8 @@ msgstr ""
5968
  #: classes/gateways/class.pmprogateway_stripe.php:440
5969
  #: classes/gateways/class.pmprogateway_stripe.php:358
5970
  #: classes/gateways/class.pmprogateway_stripe.php:448
 
 
5971
  msgid "Connected"
5972
  msgstr ""
5973
 
@@ -5975,6 +6053,8 @@ msgstr ""
5975
  #: classes/gateways/class.pmprogateway_stripe.php:442
5976
  #: classes/gateways/class.pmprogateway_stripe.php:362
5977
  #: classes/gateways/class.pmprogateway_stripe.php:452
 
 
5978
  msgid "Not Connected"
5979
  msgstr ""
5980
 
@@ -5982,11 +6062,14 @@ msgstr ""
5982
  #: classes/gateways/class.pmprogateway_stripe.php:449
5983
  #: classes/gateways/class.pmprogateway_stripe.php:369
5984
  #: classes/gateways/class.pmprogateway_stripe.php:459
 
 
5985
  msgid "Your site is using legacy API keys to authenticate with Stripe."
5986
  msgstr ""
5987
 
5988
  #: classes/gateways/class.pmprogateway_stripe.php:364
5989
  #: classes/gateways/class.pmprogateway_stripe.php:371
 
5990
  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."
5991
  msgstr ""
5992
 
@@ -5994,6 +6077,8 @@ msgstr ""
5994
  #: classes/gateways/class.pmprogateway_stripe.php:458
5995
  #: classes/gateways/class.pmprogateway_stripe.php:380
5996
  #: classes/gateways/class.pmprogateway_stripe.php:470
 
 
5997
  msgid "Stripe Connection:"
5998
  msgstr ""
5999
 
@@ -6001,11 +6086,14 @@ msgstr ""
6001
  #: classes/gateways/class.pmprogateway_stripe.php:482
6002
  #: classes/gateways/class.pmprogateway_stripe.php:396
6003
  #: classes/gateways/class.pmprogateway_stripe.php:494
 
 
6004
  msgid "Disconnect From Stripe"
6005
  msgstr ""
6006
 
6007
  #: classes/gateways/class.pmprogateway_stripe.php:389
6008
  #: classes/gateways/class.pmprogateway_stripe.php:397
 
6009
  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."
6010
  msgstr ""
6011
 
@@ -6013,16 +6101,20 @@ msgstr ""
6013
  #: classes/gateways/class.pmprogateway_stripe.php:496
6014
  #: classes/gateways/class.pmprogateway_stripe.php:409
6015
  #: classes/gateways/class.pmprogateway_stripe.php:508
 
 
6016
  msgid "Connect with Stripe"
6017
  msgstr ""
6018
 
6019
  #: classes/gateways/class.pmprogateway_stripe.php:408
6020
  #: classes/gateways/class.pmprogateway_stripe.php:416
 
6021
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
6022
  msgstr ""
6023
 
6024
  #: classes/gateways/class.pmprogateway_stripe.php:411
6025
  #: classes/gateways/class.pmprogateway_stripe.php:419
 
6026
  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."
6027
  msgstr ""
6028
 
@@ -6033,6 +6125,9 @@ msgstr ""
6033
  #: classes/gateways/class.pmprogateway_stripe.php:519
6034
  #: classes/gateways/class.pmprogateway_stripe.php:559
6035
  #: classes/gateways/class.pmprogateway_stripe.php:578
 
 
 
6036
  msgid "Webhook"
6037
  msgstr ""
6038
 
@@ -6043,32 +6138,40 @@ msgstr ""
6043
  #: classes/gateways/class.pmprogateway_stripe.php:523
6044
  #: classes/gateways/class.pmprogateway_stripe.php:594
6045
  #: classes/gateways/class.pmprogateway_stripe.php:613
 
 
 
6046
  msgid "Webhook URL"
6047
  msgstr ""
6048
 
6049
  #: classes/gateways/class.pmprogateway_stripe.php:438
6050
  #: classes/gateways/class.pmprogateway_stripe.php:446
 
6051
  msgid "Test Mode:"
6052
  msgstr ""
6053
 
6054
  #: classes/gateways/class.pmprogateway_stripe.php:450
6055
  #: classes/gateways/class.pmprogateway_stripe.php:461
 
6056
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
6057
  msgstr ""
6058
 
6059
  #: classes/gateways/class.pmprogateway_stripe.php:483
6060
  #: classes/gateways/class.pmprogateway_stripe.php:495
 
6061
  msgid "This will disconnect your site from Stripe in test mode only."
6062
  msgstr ""
6063
 
6064
  #: classes/gateways/class.pmprogateway_stripe.php:518
6065
  #: classes/gateways/class.pmprogateway_stripe.php:530
 
6066
  msgid "Stripe API Settings (Legacy)"
6067
  msgstr ""
6068
 
6069
  #: classes/gateways/class.pmprogateway_stripe.php:531
6070
  #: classes/gateways/class.pmprogateway_stripe.php:543
6071
  #: classes/gateways/class.pmprogateway_stripe.php:562
 
6072
  msgid "Your Publishable Key appears incorrect."
6073
  msgstr ""
6074
 
@@ -6078,24 +6181,29 @@ msgstr ""
6078
  #: classes/gateways/class.pmprogateway_stripe.php:587
6079
  #: classes/gateways/class.pmprogateway_stripe.php:582
6080
  #: classes/gateways/class.pmprogateway_stripe.php:606
 
 
6081
  msgid "Create Webhook"
6082
  msgstr ""
6083
 
6084
  #: classes/gateways/class.pmprogateway_stripe.php:557
6085
  #: classes/gateways/class.pmprogateway_stripe.php:569
6086
  #: classes/gateways/class.pmprogateway_stripe.php:588
 
6087
  msgid "A webhook is set up in Stripe, but it is disabled."
6088
  msgstr ""
6089
 
6090
  #: classes/gateways/class.pmprogateway_stripe.php:564
6091
  #: classes/gateways/class.pmprogateway_stripe.php:576
6092
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
6093
  msgid "A webhook is set up in Stripe, but it is using an old API version."
6094
  msgstr ""
6095
 
6096
  #: classes/gateways/class.pmprogateway_stripe.php:564
6097
  #: classes/gateways/class.pmprogateway_stripe.php:576
6098
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
6099
  msgid "Rebuild Webhook"
6100
  msgstr ""
6101
 
@@ -6108,12 +6216,16 @@ msgstr ""
6108
  #: classes/gateways/class.pmprogateway_stripe.php:601
6109
  #: classes/gateways/class.pmprogateway_stripe.php:741
6110
  #: classes/gateways/class.pmprogateway_stripe.php:857
 
 
 
6111
  msgid "Your webhook is enabled."
6112
  msgstr ""
6113
 
6114
  #: classes/gateways/class.pmprogateway_stripe.php:570
6115
  #: classes/gateways/class.pmprogateway_stripe.php:582
6116
  #: classes/gateways/class.pmprogateway_stripe.php:601
 
6117
  msgid "Disable Webhook"
6118
  msgstr ""
6119
 
@@ -6129,78 +6241,94 @@ msgstr ""
6129
  #: classes/gateways/class.pmprogateway_stripe.php:768
6130
  #: classes/gateways/class.pmprogateway_stripe.php:785
6131
  #: classes/gateways/class.pmprogateway_stripe.php:819
 
 
 
 
6132
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
6133
  msgstr ""
6134
 
6135
  #: classes/gateways/class.pmprogateway_stripe.php:589
6136
  #: classes/gateways/class.pmprogateway_stripe.php:601
6137
  #: classes/gateways/class.pmprogateway_stripe.php:620
 
6138
  msgid "Other Stripe Settings"
6139
  msgstr ""
6140
 
6141
  #: classes/gateways/class.pmprogateway_stripe.php:593
6142
  #: classes/gateways/class.pmprogateway_stripe.php:605
6143
  #: classes/gateways/class.pmprogateway_stripe.php:624
 
6144
  msgid "Stripe API Version"
6145
  msgstr ""
6146
 
6147
  #: classes/gateways/class.pmprogateway_stripe.php:598
6148
  #: classes/gateways/class.pmprogateway_stripe.php:610
6149
  #: classes/gateways/class.pmprogateway_stripe.php:629
 
6150
  msgid "Show Billing Address Fields"
6151
  msgstr ""
6152
 
6153
  #: classes/gateways/class.pmprogateway_stripe.php:607
6154
  #: classes/gateways/class.pmprogateway_stripe.php:619
6155
  #: classes/gateways/class.pmprogateway_stripe.php:638
 
6156
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
6157
  msgstr ""
6158
 
6159
  #: classes/gateways/class.pmprogateway_stripe.php:612
6160
  #: classes/gateways/class.pmprogateway_stripe.php:624
6161
  #: classes/gateways/class.pmprogateway_stripe.php:643
 
6162
  msgid "Enable Payment Request Button"
6163
  msgstr ""
6164
 
6165
  #: classes/gateways/class.pmprogateway_stripe.php:630
6166
  #: classes/gateways/class.pmprogateway_stripe.php:642
6167
  #: classes/gateways/class.pmprogateway_stripe.php:661
 
6168
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
6169
  msgstr ""
6170
 
6171
  #: classes/gateways/class.pmprogateway_stripe.php:643
6172
  #: classes/gateways/class.pmprogateway_stripe.php:655
6173
  #: classes/gateways/class.pmprogateway_stripe.php:674
 
6174
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
6175
  msgstr ""
6176
 
6177
  #: classes/gateways/class.pmprogateway_stripe.php:645
6178
  #: classes/gateways/class.pmprogateway_stripe.php:657
6179
  #: classes/gateways/class.pmprogateway_stripe.php:676
 
6180
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
6181
  msgstr ""
6182
 
6183
  #: classes/gateways/class.pmprogateway_stripe.php:647
6184
  #: classes/gateways/class.pmprogateway_stripe.php:659
6185
  #: classes/gateways/class.pmprogateway_stripe.php:678
 
6186
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
6187
  msgstr ""
6188
 
6189
  #: classes/gateways/class.pmprogateway_stripe.php:649
6190
  #: classes/gateways/class.pmprogateway_stripe.php:661
6191
  #: classes/gateways/class.pmprogateway_stripe.php:680
 
6192
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
6193
  msgstr ""
6194
 
6195
  #: classes/gateways/class.pmprogateway_stripe.php:674
6196
  #: classes/gateways/class.pmprogateway_stripe.php:686
6197
  #: classes/gateways/class.pmprogateway_stripe.php:705
 
6198
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
6199
  msgstr ""
6200
 
6201
  #: classes/gateways/class.pmprogateway_stripe.php:695
6202
  #: classes/gateways/class.pmprogateway_stripe.php:707
6203
  #: classes/gateways/class.pmprogateway_stripe.php:726
 
6204
  msgid "Webhook creation failed. You might already have a webhook set up."
6205
  msgstr ""
6206
 
@@ -6210,54 +6338,64 @@ msgstr ""
6210
  #: classes/gateways/class.pmprogateway_stripe.php:847
6211
  #: classes/gateways/class.pmprogateway_stripe.php:792
6212
  #: classes/gateways/class.pmprogateway_stripe.php:866
 
 
6213
  msgid "There was an error deleting the webhook."
6214
  msgstr ""
6215
 
6216
  #: classes/gateways/class.pmprogateway_stripe.php:811
6217
  #: classes/gateways/class.pmprogateway_stripe.php:823
6218
  #: classes/gateways/class.pmprogateway_stripe.php:842
 
6219
  msgid "Webhook creation failed. Please refresh and try again."
6220
  msgstr ""
6221
 
6222
  #: classes/gateways/class.pmprogateway_stripe.php:867
6223
  #: classes/gateways/class.pmprogateway_stripe.php:879
6224
  #: classes/gateways/class.pmprogateway_stripe.php:898
 
6225
  msgid "Verification steps confirmed. Your payment is processing."
6226
  msgstr ""
6227
 
6228
  #: classes/gateways/class.pmprogateway_stripe.php:1262
6229
  #: classes/gateways/class.pmprogateway_stripe.php:1274
6230
  #: classes/gateways/class.pmprogateway_stripe.php:1293
 
6231
  msgid "Pay with Credit Card"
6232
  msgstr ""
6233
 
6234
  #: classes/gateways/class.pmprogateway_stripe.php:1296
6235
  #: classes/gateways/class.pmprogateway_stripe.php:1308
6236
  #: classes/gateways/class.pmprogateway_stripe.php:1327
 
6237
  msgid "CVC"
6238
  msgstr ""
6239
 
6240
  #: classes/gateways/class.pmprogateway_stripe.php:1374
6241
  #: classes/gateways/class.pmprogateway_stripe.php:1386
6242
  #: classes/gateways/class.pmprogateway_stripe.php:1405
 
6243
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
6244
  msgstr ""
6245
 
6246
  #: classes/gateways/class.pmprogateway_stripe.php:1379
6247
  #: classes/gateways/class.pmprogateway_stripe.php:1391
6248
  #: classes/gateways/class.pmprogateway_stripe.php:1410
 
6249
  msgid "Subscription Updates"
6250
  msgstr ""
6251
 
6252
  #: classes/gateways/class.pmprogateway_stripe.php:1383
6253
  #: classes/gateways/class.pmprogateway_stripe.php:1395
6254
  #: classes/gateways/class.pmprogateway_stripe.php:1414
 
6255
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
6256
  msgstr ""
6257
 
6258
  #: classes/gateways/class.pmprogateway_stripe.php:1385
6259
  #: classes/gateways/class.pmprogateway_stripe.php:1397
6260
  #: classes/gateways/class.pmprogateway_stripe.php:1416
 
6261
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
6262
  msgstr ""
6263
 
@@ -6273,6 +6411,10 @@ msgstr ""
6273
  #: classes/gateways/class.pmprogateway_stripe.php:2016
6274
  #: classes/gateways/class.pmprogateway_stripe.php:2029
6275
  #: classes/gateways/class.pmprogateway_stripe.php:2033
 
 
 
 
6276
  msgid "Error: %s"
6277
  msgstr ""
6278
 
@@ -6282,24 +6424,29 @@ msgstr ""
6282
  #: classes/gateways/class.pmprogateway_stripe.php:2182
6283
  #: classes/gateways/class.pmprogateway_stripe.php:2196
6284
  #: classes/gateways/class.pmprogateway_stripe.php:2201
 
 
6285
  msgid "Error getting subscription with Stripe:"
6286
  msgstr ""
6287
 
6288
  #: classes/gateways/class.pmprogateway_stripe.php:2480
6289
  #: classes/gateways/class.pmprogateway_stripe.php:2492
6290
  #: classes/gateways/class.pmprogateway_stripe.php:2514
 
6291
  msgid "Could not cancel the old subscription. Updates have not been processed."
6292
  msgstr ""
6293
 
6294
  #: classes/gateways/class.pmprogateway_stripe.php:2632
6295
  #: classes/gateways/class.pmprogateway_stripe.php:2644
6296
  #: classes/gateways/class.pmprogateway_stripe.php:2666
 
6297
  msgid "Could not cancel old subscription."
6298
  msgstr ""
6299
 
6300
  #: classes/gateways/class.pmprogateway_stripe.php:2648
6301
  #: classes/gateways/class.pmprogateway_stripe.php:2660
6302
  #: classes/gateways/class.pmprogateway_stripe.php:2682
 
6303
  msgid "Could not find the customer."
6304
  msgstr ""
6305
 
@@ -6309,30 +6456,35 @@ msgstr ""
6309
  #: classes/gateways/class.pmprogateway_stripe.php:2834
6310
  #: classes/gateways/class.pmprogateway_stripe.php:2850
6311
  #: classes/gateways/class.pmprogateway_stripe.php:2856
 
6312
  msgid "Error: "
6313
  msgstr ""
6314
 
6315
  #: classes/gateways/class.pmprogateway_stripe.php:2836
6316
  #: classes/gateways/class.pmprogateway_stripe.php:2848
6317
  #: classes/gateways/class.pmprogateway_stripe.php:2870
 
6318
  msgid "Error: Unkown error while refunding charge #%s"
6319
  msgstr ""
6320
 
6321
  #: classes/gateways/class.pmprogateway_stripe.php:3330
6322
  #: classes/gateways/class.pmprogateway_stripe.php:3342
6323
  #: classes/gateways/class.pmprogateway_stripe.php:3364
 
6324
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
6325
  msgstr ""
6326
 
6327
  #: classes/gateways/class.pmprogateway_stripe.php:3347
6328
  #: classes/gateways/class.pmprogateway_stripe.php:3359
6329
  #: classes/gateways/class.pmprogateway_stripe.php:3381
 
6330
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
6331
  msgstr ""
6332
 
6333
  #: classes/gateways/class.pmprogateway_stripe.php:3533
6334
  #: classes/gateways/class.pmprogateway_stripe.php:3545
6335
  #: classes/gateways/class.pmprogateway_stripe.php:3567
 
6336
  msgid "Invalid response from the Stripe Connect server."
6337
  msgstr ""
6338
 
@@ -6340,6 +6492,7 @@ msgstr ""
6340
  #: classes/gateways/class.pmprogateway_stripe.php:3561
6341
  #: classes/gateways/class.pmprogateway_stripe.php:3573
6342
  #: classes/gateways/class.pmprogateway_stripe.php:3595
 
6343
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
6344
  msgstr ""
6345
 
@@ -6347,30 +6500,35 @@ msgstr ""
6347
  #: classes/gateways/class.pmprogateway_stripe.php:3597
6348
  #: classes/gateways/class.pmprogateway_stripe.php:3609
6349
  #: classes/gateways/class.pmprogateway_stripe.php:3631
 
6350
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
6351
  msgstr ""
6352
 
6353
  #: classes/gateways/class.pmprogateway_stripe.php:3768
6354
  #: classes/gateways/class.pmprogateway_stripe.php:3780
6355
  #: classes/gateways/class.pmprogateway_stripe.php:3802
 
6356
  msgid "Last webhook received at"
6357
  msgstr ""
6358
 
6359
  #: classes/gateways/class.pmprogateway_stripe.php:3770
6360
  #: classes/gateways/class.pmprogateway_stripe.php:3782
6361
  #: classes/gateways/class.pmprogateway_stripe.php:3804
 
6362
  msgid "No webhooks have been received."
6363
  msgstr ""
6364
 
6365
  #: classes/gateways/class.pmprogateway_stripe.php:3774
6366
  #: classes/gateways/class.pmprogateway_stripe.php:3786
6367
  #: classes/gateways/class.pmprogateway_stripe.php:3808
 
6368
  msgid "Your webhook may not be working correctly."
6369
  msgstr ""
6370
 
6371
  #: classes/gateways/class.pmprogateway_stripe.php:3776
6372
  #: classes/gateways/class.pmprogateway_stripe.php:3788
6373
  #: classes/gateways/class.pmprogateway_stripe.php:3810
 
6374
  msgid "Click here for info on setting up your webhook with Stripe."
6375
  msgstr ""
6376
 
@@ -8605,11 +8763,13 @@ msgstr ""
8605
 
8606
  #: includes/login.php:429
8607
  #: includes/profile.php:843
 
8608
  msgid "New passwords do not match."
8609
  msgstr ""
8610
 
8611
  #: includes/login.php:433
8612
  #: includes/profile.php:839
 
8613
  msgid "Please complete all fields."
8614
  msgstr ""
8615
 
@@ -8639,17 +8799,21 @@ msgstr ""
8639
 
8640
  #: includes/login.php:688
8641
  #: includes/profile.php:891
 
8642
  msgid "New Password"
8643
  msgstr ""
8644
 
8645
  #: includes/login.php:690
8646
  #: includes/profile.php:894
8647
  #: includes/scripts.php:86
 
 
8648
  msgid "Strength Indicator"
8649
  msgstr ""
8650
 
8651
  #: includes/login.php:694
8652
  #: includes/profile.php:898
 
8653
  msgid "Confirm New Password"
8654
  msgstr ""
8655
 
@@ -8750,21 +8914,25 @@ msgstr ""
8750
  #: includes/privacy.php:182
8751
  #: includes/profile.php:425
8752
  #: includes/profile.php:493
 
8753
  msgid "Level ID"
8754
  msgstr ""
8755
 
8756
  #: includes/privacy.php:190
8757
  #: includes/profile.php:496
 
8758
  msgid "Date Modified"
8759
  msgstr ""
8760
 
8761
  #: includes/privacy.php:194
8762
  #: includes/profile.php:497
 
8763
  msgid "End Date"
8764
  msgstr ""
8765
 
8766
  #: includes/privacy.php:198
8767
  #: includes/profile.php:498
 
8768
  msgid "Level Cost"
8769
  msgstr ""
8770
 
@@ -8873,68 +9041,85 @@ msgid "Membership Levels History"
8873
  msgstr ""
8874
 
8875
  #: includes/profile.php:485
 
8876
  msgid "No membership orders found."
8877
  msgstr ""
8878
 
8879
  #: includes/profile.php:537
 
8880
  msgid "No membership history found."
8881
  msgstr ""
8882
 
8883
  #: includes/profile.php:644
 
8884
  msgid "Log in to edit your profile."
8885
  msgstr ""
8886
 
8887
  #: includes/profile.php:679
 
8888
  msgid "Please enter a display name."
8889
  msgstr ""
8890
 
8891
  #: includes/profile.php:689
 
8892
  msgid "Please enter an email address."
8893
  msgstr ""
8894
 
8895
  #: includes/profile.php:691
 
8896
  msgid "The email address isn&#8217;t correct."
8897
  msgstr ""
8898
 
8899
  #: includes/profile.php:695
 
8900
  msgid "This email is already registered, please choose another one."
8901
  msgstr ""
8902
 
8903
  #: includes/profile.php:722
 
8904
  msgid "Your profile has been updated."
8905
  msgstr ""
8906
 
8907
  #: includes/profile.php:749
 
8908
  msgid "Display name publicly as"
8909
  msgstr ""
8910
 
8911
  #: includes/profile.php:762
 
8912
  msgid "Site administrators must use the WordPress dashboard to update their email address."
8913
  msgstr ""
8914
 
8915
  #: includes/profile.php:785
 
8916
  msgid "Update Profile"
8917
  msgstr ""
8918
 
8919
  #: includes/profile.php:841
 
8920
  msgid "Please enter your current password."
8921
  msgstr ""
8922
 
8923
  #: includes/profile.php:845
 
8924
  msgid "Your current password is incorrect."
8925
  msgstr ""
8926
 
8927
  #: includes/profile.php:856
 
8928
  msgid "Your password has been updated."
8929
  msgstr ""
8930
 
8931
  #: includes/profile.php:886
 
8932
  msgid "Current Password"
8933
  msgstr ""
8934
 
8935
  #: includes/profile.php:888
8936
  #: includes/profile.php:893
8937
  #: includes/profile.php:900
 
 
8938
  msgid "Required Field"
8939
  msgstr ""
8940
 
@@ -9097,10 +9282,12 @@ msgid "The %s code has been applied to your order. "
9097
  msgstr ""
9098
 
9099
  #: services/braintree-webhook.php:425
 
9100
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
9101
  msgstr ""
9102
 
9103
  #: services/braintree-webhook.php:427
 
9104
  msgid "A member's Braintree subscription has expired at %s"
9105
  msgstr ""
9106
 
@@ -9435,16 +9622,22 @@ msgstr ""
9435
 
9436
  #: classes/gateways/class.pmprogateway_stripe.php:360
9437
  #: classes/gateways/class.pmprogateway_stripe.php:450
 
 
9438
  msgid "Connected with Legacy Keys"
9439
  msgstr ""
9440
 
9441
  #: classes/gateways/class.pmprogateway_stripe.php:370
9442
  #: classes/gateways/class.pmprogateway_stripe.php:460
 
 
9443
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
9444
  msgstr ""
9445
 
9446
  #: classes/gateways/class.pmprogateway_stripe.php:372
9447
  #: classes/gateways/class.pmprogateway_stripe.php:462
 
 
9448
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
9449
  msgstr ""
9450
 
@@ -9501,13 +9694,49 @@ msgid "missing"
9501
  msgstr ""
9502
 
9503
  #: classes/gateways/class.pmprogateway_stripe.php:533
 
9504
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
9505
  msgstr ""
9506
 
9507
  #: classes/gateways/class.pmprogateway_stripe.php:534
 
9508
  msgid "Click here to use the legacy API settings."
9509
  msgstr ""
9510
 
9511
  #: paid-memberships-pro.php:194
9512
  msgid "Once a month"
9513
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.3\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-10-11T14:00:22+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
498
  #: adminpages/advancedsettings.php:479
499
  #: classes/gateways/class.pmprogateway_stripe.php:634
500
  #: classes/gateways/class.pmprogateway_stripe.php:648
501
+ #: classes/gateways/class.pmprogateway_stripe.php:640
502
+ #: classes/gateways/class.pmprogateway_stripe.php:654
503
  msgid "No"
504
  msgstr "No"
505
 
524
  #: adminpages/advancedsettings.php:397
525
  #: classes/gateways/class.pmprogateway_stripe.php:636
526
  #: classes/gateways/class.pmprogateway_stripe.php:650
527
+ #: classes/gateways/class.pmprogateway_stripe.php:642
528
+ #: classes/gateways/class.pmprogateway_stripe.php:656
529
  msgid "Yes"
530
  msgstr "Si"
531
 
662
  #: adminpages/orders.php:391
663
  #: adminpages/orders.php:1445
664
  #: adminpages/orders.php:1448
665
+ #: includes/profile.php:762
666
  msgid "Email"
667
  msgstr "Email"
668
 
943
  #: includes/privacy.php:186
944
  #: includes/profile.php:495
945
  #: adminpages/discountcodes.php:489
946
+ #: includes/profile.php:501
947
  msgid "Start Date"
948
  msgstr "Fecha de inicio"
949
 
958
  #: classes/gateways/class.pmprogateway_stripe.php:1301
959
  #: adminpages/discountcodes.php:507
960
  #: classes/gateways/class.pmprogateway_stripe.php:1320
961
+ #: classes/gateways/class.pmprogateway_stripe.php:1326
962
  msgid "Expiration Date"
963
  msgstr "Fecha de expiración"
964
 
1332
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1333
  #: adminpages/discountcodes.php:608
1334
  #: classes/gateways/class.pmprogateway_stripe.php:1497
1335
+ #: classes/gateways/class.pmprogateway_stripe.php:1503
1336
  msgid "per"
1337
  msgstr "por"
1338
 
1346
  #: adminpages/discountcodes.php:612
1347
  #: adminpages/discountcodes.php:699
1348
  #: classes/gateways/class.pmprogateway_stripe.php:1363
1349
+ #: classes/gateways/class.pmprogateway_stripe.php:1369
1350
  msgid "Day(s)"
1351
  msgstr "Día(s)"
1352
 
1360
  #: adminpages/discountcodes.php:612
1361
  #: adminpages/discountcodes.php:699
1362
  #: classes/gateways/class.pmprogateway_stripe.php:1364
1363
+ #: classes/gateways/class.pmprogateway_stripe.php:1370
1364
  msgid "Week(s)"
1365
  msgstr "Semana(s)"
1366
 
1374
  #: adminpages/discountcodes.php:612
1375
  #: adminpages/discountcodes.php:699
1376
  #: classes/gateways/class.pmprogateway_stripe.php:1365
1377
+ #: classes/gateways/class.pmprogateway_stripe.php:1371
1378
  msgid "Month(s)"
1379
  msgstr "Mes(es)"
1380
 
1388
  #: adminpages/discountcodes.php:612
1389
  #: adminpages/discountcodes.php:699
1390
  #: classes/gateways/class.pmprogateway_stripe.php:1366
1391
+ #: classes/gateways/class.pmprogateway_stripe.php:1372
1392
  msgid "Year(s)"
1393
  msgstr "Año(s)"
1394
 
1680
  #: adminpages/advancedsettings.php:316
1681
  #: includes/privacy.php:175
1682
  #: includes/profile.php:509
1683
+ #: includes/profile.php:515
1684
  msgid "Never"
1685
  msgstr "Nunca"
1686
 
1883
  #: adminpages/orders.php:679
1884
  #: classes/gateways/class.pmprogateway_stripe.php:1284
1885
  #: classes/gateways/class.pmprogateway_stripe.php:1303
1886
+ #: classes/gateways/class.pmprogateway_stripe.php:1309
1887
  msgid "Card Type"
1888
  msgstr "Tipo de tarjeta"
1889
 
1937
  #: adminpages/dashboard.php:294
1938
  #: adminpages/orders.php:742
1939
  #: adminpages/orders.php:1348
1940
+ #: includes/profile.php:505
1941
  msgid "Status"
1942
  msgstr "Estado"
1943
 
2070
  #: pages/cancel.php:96
2071
  #: shortcodes/pmpro_account.php:106
2072
  #: adminpages/orders.php:968
2073
+ #: includes/profile.php:798
2074
+ #: includes/profile.php:922
2075
  msgid "Cancel"
2076
  msgstr "Cancelar"
2077
 
2294
  #: classes/gateways/class.pmprogateway_paypal.php:153
2295
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
2296
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
2297
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:172
2298
  msgid "Gateway Account Email"
2299
  msgstr "Email de cuenta de la Pasarela "
2300
 
2303
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
2304
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
2305
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
2306
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:180
2307
  msgid "API Username"
2308
  msgstr "Nombre de usuario de API (API Username)"
2309
 
2312
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
2313
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
2314
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
2315
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:188
2316
  msgid "API Password"
2317
  msgstr "Contraseña de API (API Password)"
2318
 
2320
  #: classes/gateways/class.pmprogateway_paypal.php:177
2321
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
2322
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
2323
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:196
2324
  msgid "API Signature"
2325
  msgstr "Firma de API (API Signature)"
2326
 
2338
  #: classes/gateways/class.pmprogateway_stripe.php:539
2339
  #: classes/gateways/class.pmprogateway_stripe.php:551
2340
  #: classes/gateways/class.pmprogateway_stripe.php:570
2341
+ #: classes/gateways/class.pmprogateway_stripe.php:576
2342
  msgid "Secret Key"
2343
  msgstr "Llave secreta (Secret Key)"
2344
 
2346
  #: classes/gateways/class.pmprogateway_stripe.php:523
2347
  #: classes/gateways/class.pmprogateway_stripe.php:535
2348
  #: classes/gateways/class.pmprogateway_stripe.php:554
2349
+ #: classes/gateways/class.pmprogateway_stripe.php:560
2350
  msgid "Publishable Key"
2351
  msgstr "Llave publicable (Publishable Key)"
2352
 
2450
  #: classes/gateways/class.pmprogateway_paypal.php:196
2451
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
2452
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
2453
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:215
2454
  msgid "IPN Handler URL"
2455
  msgstr "IPN Handler URL"
2456
 
2457
  #: adminpages/paymentsettings.php:449
2458
  #: classes/gateways/class.pmprogateway_paypal.php:199
2459
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
2460
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:218
2461
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
2462
  msgstr "Para integrar completamente con Paypal, asegúrate de introducir tu IPN Handler URL a"
2463
 
2691
  #: classes/class.pmproemail.php:769
2692
  #: classes/class.pmproemail.php:771
2693
  #: classes/gateways/class.pmprogateway_stripe.php:1333
2694
+ #: classes/gateways/class.pmprogateway_stripe.php:1339
2695
  msgid "Discount Code"
2696
  msgstr "Cupón de descuento"
2697
 
2929
  #: classes/gateways/class.pmprogateway_stripe.php:2127
2930
  #: classes/gateways/class.pmprogateway_stripe.php:2132
2931
  #: classes/gateways/class.pmprogateway_stripe.php:2137
2932
+ #: classes/gateways/class.pmprogateway_stripe.php:2133
2933
+ #: classes/gateways/class.pmprogateway_stripe.php:2138
2934
+ #: classes/gateways/class.pmprogateway_stripe.php:2143
2935
  msgid "Error creating customer record with Stripe:"
2936
  msgstr "Error creando entrada para el cliente con Stripe:"
2937
 
2942
  #: classes/gateways/class.pmprogateway_stripe.php:2356
2943
  #: classes/gateways/class.pmprogateway_stripe.php:2373
2944
  #: classes/gateways/class.pmprogateway_stripe.php:2378
2945
+ #: classes/gateways/class.pmprogateway_stripe.php:2379
2946
+ #: classes/gateways/class.pmprogateway_stripe.php:2384
2947
  msgid "Error creating plan with Stripe:"
2948
  msgstr "Error creando plan con Stripe:"
2949
 
2954
  #: classes/gateways/class.pmprogateway_stripe.php:2401
2955
  #: classes/gateways/class.pmprogateway_stripe.php:2409
2956
  #: classes/gateways/class.pmprogateway_stripe.php:2423
2957
+ #: classes/gateways/class.pmprogateway_stripe.php:2415
2958
+ #: classes/gateways/class.pmprogateway_stripe.php:2429
2959
  msgid "Error subscribing customer to plan with Stripe:"
2960
  msgstr "Error subscribiendo al cliente al plan con Stripe:"
2961
 
2984
  #: adminpages/dashboard.php:224
2985
  #: adminpages/dashboard.php:292
2986
  #: adminpages/orders.php:1343
2987
+ #: includes/profile.php:500
2988
  msgid "Level"
2989
  msgstr "Nivel"
2990
 
3031
  #: includes/profile.php:872
3032
  #: includes/profile.php:909
3033
  #: shortcodes/pmpro_account.php:195
3034
+ #: includes/profile.php:884
3035
+ #: includes/profile.php:921
3036
  msgid "Change Password"
3037
  msgstr "Cambiar Contraseña"
3038
 
3097
  #: includes/profile.php:747
3098
  #: pages/billing.php:164
3099
  #: pages/checkout.php:234
3100
+ #: includes/profile.php:759
3101
  msgid "First Name"
3102
  msgstr "Nombre"
3103
 
3106
  #: includes/profile.php:748
3107
  #: pages/billing.php:168
3108
  #: pages/checkout.php:238
3109
+ #: includes/profile.php:760
3110
  msgid "Last Name"
3111
  msgstr "Apellidos"
3112
 
3201
  #: pages/checkout.php:389
3202
  #: classes/gateways/class.pmprogateway_stripe.php:1297
3203
  #: classes/gateways/class.pmprogateway_stripe.php:1316
3204
+ #: classes/gateways/class.pmprogateway_stripe.php:1322
3205
  msgid "Card Number"
3206
  msgstr "Número de la Tarjeta"
3207
 
3225
  #: pages/billing.php:425
3226
  #: classes/gateways/class.pmprogateway_stripe.php:1403
3227
  #: classes/gateways/class.pmprogateway_stripe.php:1422
3228
+ #: classes/gateways/class.pmprogateway_stripe.php:1428
3229
  msgid "Update"
3230
  msgstr "Actualizar"
3231
 
3297
  #: pages/checkout.php:432
3298
  #: classes/gateways/class.pmprogateway_stripe.php:1319
3299
  #: classes/gateways/class.pmprogateway_stripe.php:1338
3300
+ #: classes/gateways/class.pmprogateway_stripe.php:1344
3301
  msgid "Apply"
3302
  msgstr "Aplicar"
3303
 
3364
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
3365
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
3366
  #: pages/checkout.php:218
3367
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:498
3368
  msgid "Check Out with PayPal"
3369
  msgstr "pague con PayPal"
3370
 
3374
  #: pages/checkout.php:367
3375
  #: classes/gateways/class.pmprogateway_stripe.php:1264
3376
  #: classes/gateways/class.pmprogateway_stripe.php:1283
3377
+ #: classes/gateways/class.pmprogateway_stripe.php:1289
3378
  #, php-format
3379
  msgid "We Accept %s"
3380
  msgstr "Aceptamos %s"
3385
  #: pages/checkout.php:366
3386
  #: classes/gateways/class.pmprogateway_stripe.php:1263
3387
  #: classes/gateways/class.pmprogateway_stripe.php:1282
3388
+ #: classes/gateways/class.pmprogateway_stripe.php:1288
3389
  msgid "Payment Information"
3390
  msgstr "Información de pago"
3391
 
3399
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
3400
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
3401
  #: pages/checkout.php:526
3402
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
3403
  msgid "Submit and Check Out"
3404
  msgstr "Envíar y pagar"
3405
 
3409
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
3410
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
3411
  #: pages/checkout.php:526
3412
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
3413
  msgid "Submit and Confirm"
3414
  msgstr "Enviar y confirmar"
3415
 
3718
  #: preheaders/checkout.php:803
3719
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
3720
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
3721
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:352
3722
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:411
3723
  msgid "The PayPal Token was lost."
3724
  msgstr "El token de PayPal se ha perdido."
3725
 
3779
 
3780
  #: services/authnet-silent-post.php:133
3781
  #: services/authnet-silent-post.php:173
3782
+ #: services/authnet-silent-post.php:176
3783
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
3784
  msgstr "<p>Authorize.net ha congelado un pago y está revisandolo.</p><p>Información de pago de Authorize.net"
3785
 
3932
  #: adminpages/orders.php:1544
3933
  #: adminpages/orders.php:1554
3934
  #: adminpages/orders.php:1553
3935
+ #: includes/profile.php:520
3936
+ #: includes/profile.php:521
3937
+ #: includes/profile.php:522
3938
  msgid "N/A"
3939
  msgstr ""
3940
 
3969
 
3970
  #: adminpages/admin_header.php:152
3971
  #: classes/gateways/class.pmprogateway_stripe.php:76
3972
+ #: classes/gateways/class.pmprogateway_stripe.php:82
3973
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
3974
  msgstr ""
3975
 
4264
  #: adminpages/dashboard.php:174
4265
  #: adminpages/license.php:49
4266
  #: adminpages/dashboard.php:178
4267
+ #: adminpages/license.php:41
4268
  msgid "Your license is invalid or expired."
4269
  msgstr ""
4270
 
4276
  #: adminpages/dashboard.php:177
4277
  #: adminpages/license.php:51
4278
  #: adminpages/dashboard.php:181
4279
+ #: adminpages/license.php:43
4280
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
4281
  msgstr ""
4282
 
4773
  msgstr ""
4774
 
4775
  #: adminpages/license.php:43
4776
+ #: adminpages/license.php:33
4777
  msgid "Paid Memberships Pro Support License"
4778
  msgstr ""
4779
 
4780
  #: adminpages/license.php:47
4781
+ #: adminpages/license.php:39
4782
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
4783
  msgstr ""
4784
 
4785
  #: adminpages/license.php:49
4786
+ #: adminpages/license.php:37
4787
+ #: adminpages/license.php:41
4788
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
4789
  msgstr ""
4790
 
4791
  #: adminpages/license.php:59
4792
+ #: adminpages/license.php:51
4793
  msgid "Enter license key here..."
4794
  msgstr ""
4795
 
4796
  #: adminpages/license.php:61
4797
+ #: adminpages/license.php:53
4798
  msgid "Validate Key"
4799
  msgstr ""
4800
 
4801
  #: adminpages/license.php:95
4802
+ #: adminpages/license.php:87
4803
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
4804
  msgstr ""
4805
 
5597
 
5598
  #: classes/gateways/class.pmprogateway_braintree.php:87
5599
  #: classes/gateways/class.pmprogateway_stripe.php:91
5600
+ #: classes/gateways/class.pmprogateway_stripe.php:97
5601
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
5602
  msgstr ""
5603
 
5925
  msgstr ""
5926
 
5927
  #: classes/gateways/class.pmprogateway_cybersource.php:922
5928
+ #: includes/license.php:159
5929
  msgid "Unknown error."
5930
  msgstr ""
5931
 
5958
  #: classes/gateways/class.pmprogateway_paypal.php:132
5959
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
5960
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
5961
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:151
5962
  msgid "PayPal Settings"
5963
  msgstr ""
5964
 
5965
  #: classes/gateways/class.pmprogateway_paypal.php:146
5966
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
5967
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
5968
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:165
5969
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
5970
  msgstr ""
5971
 
5972
  #: classes/gateways/class.pmprogateway_paypal.php:185
5973
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
5974
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:204
5975
  msgid "Confirmation Step"
5976
  msgstr ""
5977
 
5978
  #: classes/gateways/class.pmprogateway_paypal.php:716
5979
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
5980
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
5981
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:841
5982
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
5983
  msgstr ""
5984
 
5985
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
5986
  #: paid-memberships-pro.php:160
5987
  #: paid-memberships-pro.php:162
5988
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:94
5989
  msgid "PayPal Express"
5990
  msgstr ""
5991
 
5992
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
5993
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:356
5994
  msgid "Checkout was already processed."
5995
  msgstr ""
5996
 
5997
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
5998
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:791
5999
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
6000
  msgstr ""
6001
 
6002
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
6003
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:792
6004
  msgid "Error creating plan with PayPal."
6005
  msgstr ""
6006
 
6021
  #: classes/gateways/class.pmprogateway_stripe.php:252
6022
  #: paid-memberships-pro.php:159
6023
  #: paid-memberships-pro.php:161
6024
+ #: classes/gateways/class.pmprogateway_stripe.php:258
6025
  msgid "Stripe"
6026
  msgstr ""
6027
 
6029
  #: classes/gateways/class.pmprogateway_stripe.php:436
6030
  #: classes/gateways/class.pmprogateway_stripe.php:354
6031
  #: classes/gateways/class.pmprogateway_stripe.php:444
6032
+ #: classes/gateways/class.pmprogateway_stripe.php:360
6033
+ #: classes/gateways/class.pmprogateway_stripe.php:450
6034
  msgid "Stripe Connect Settings"
6035
  msgstr ""
6036
 
6037
  #: classes/gateways/class.pmprogateway_stripe.php:352
6038
  #: classes/gateways/class.pmprogateway_stripe.php:356
6039
+ #: classes/gateways/class.pmprogateway_stripe.php:362
6040
  msgid "Live Mode:"
6041
  msgstr ""
6042
 
6044
  #: classes/gateways/class.pmprogateway_stripe.php:440
6045
  #: classes/gateways/class.pmprogateway_stripe.php:358
6046
  #: classes/gateways/class.pmprogateway_stripe.php:448
6047
+ #: classes/gateways/class.pmprogateway_stripe.php:364
6048
+ #: classes/gateways/class.pmprogateway_stripe.php:454
6049
  msgid "Connected"
6050
  msgstr ""
6051
 
6053
  #: classes/gateways/class.pmprogateway_stripe.php:442
6054
  #: classes/gateways/class.pmprogateway_stripe.php:362
6055
  #: classes/gateways/class.pmprogateway_stripe.php:452
6056
+ #: classes/gateways/class.pmprogateway_stripe.php:368
6057
+ #: classes/gateways/class.pmprogateway_stripe.php:458
6058
  msgid "Not Connected"
6059
  msgstr ""
6060
 
6062
  #: classes/gateways/class.pmprogateway_stripe.php:449
6063
  #: classes/gateways/class.pmprogateway_stripe.php:369
6064
  #: classes/gateways/class.pmprogateway_stripe.php:459
6065
+ #: classes/gateways/class.pmprogateway_stripe.php:375
6066
+ #: classes/gateways/class.pmprogateway_stripe.php:465
6067
  msgid "Your site is using legacy API keys to authenticate with Stripe."
6068
  msgstr ""
6069
 
6070
  #: classes/gateways/class.pmprogateway_stripe.php:364
6071
  #: classes/gateways/class.pmprogateway_stripe.php:371
6072
+ #: classes/gateways/class.pmprogateway_stripe.php:377
6073
  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."
6074
  msgstr ""
6075
 
6077
  #: classes/gateways/class.pmprogateway_stripe.php:458
6078
  #: classes/gateways/class.pmprogateway_stripe.php:380
6079
  #: classes/gateways/class.pmprogateway_stripe.php:470
6080
+ #: classes/gateways/class.pmprogateway_stripe.php:386
6081
+ #: classes/gateways/class.pmprogateway_stripe.php:476
6082
  msgid "Stripe Connection:"
6083
  msgstr ""
6084
 
6086
  #: classes/gateways/class.pmprogateway_stripe.php:482
6087
  #: classes/gateways/class.pmprogateway_stripe.php:396
6088
  #: classes/gateways/class.pmprogateway_stripe.php:494
6089
+ #: classes/gateways/class.pmprogateway_stripe.php:402
6090
+ #: classes/gateways/class.pmprogateway_stripe.php:500
6091
  msgid "Disconnect From Stripe"
6092
  msgstr ""
6093
 
6094
  #: classes/gateways/class.pmprogateway_stripe.php:389
6095
  #: classes/gateways/class.pmprogateway_stripe.php:397
6096
+ #: classes/gateways/class.pmprogateway_stripe.php:403
6097
  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."
6098
  msgstr ""
6099
 
6101
  #: classes/gateways/class.pmprogateway_stripe.php:496
6102
  #: classes/gateways/class.pmprogateway_stripe.php:409
6103
  #: classes/gateways/class.pmprogateway_stripe.php:508
6104
+ #: classes/gateways/class.pmprogateway_stripe.php:415
6105
+ #: classes/gateways/class.pmprogateway_stripe.php:514
6106
  msgid "Connect with Stripe"
6107
  msgstr ""
6108
 
6109
  #: classes/gateways/class.pmprogateway_stripe.php:408
6110
  #: classes/gateways/class.pmprogateway_stripe.php:416
6111
+ #: classes/gateways/class.pmprogateway_stripe.php:422
6112
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
6113
  msgstr ""
6114
 
6115
  #: classes/gateways/class.pmprogateway_stripe.php:411
6116
  #: classes/gateways/class.pmprogateway_stripe.php:419
6117
+ #: classes/gateways/class.pmprogateway_stripe.php:425
6118
  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."
6119
  msgstr ""
6120
 
6125
  #: classes/gateways/class.pmprogateway_stripe.php:519
6126
  #: classes/gateways/class.pmprogateway_stripe.php:559
6127
  #: classes/gateways/class.pmprogateway_stripe.php:578
6128
+ #: classes/gateways/class.pmprogateway_stripe.php:437
6129
+ #: classes/gateways/class.pmprogateway_stripe.php:525
6130
+ #: classes/gateways/class.pmprogateway_stripe.php:584
6131
  msgid "Webhook"
6132
  msgstr ""
6133
 
6138
  #: classes/gateways/class.pmprogateway_stripe.php:523
6139
  #: classes/gateways/class.pmprogateway_stripe.php:594
6140
  #: classes/gateways/class.pmprogateway_stripe.php:613
6141
+ #: classes/gateways/class.pmprogateway_stripe.php:441
6142
+ #: classes/gateways/class.pmprogateway_stripe.php:529
6143
+ #: classes/gateways/class.pmprogateway_stripe.php:619
6144
  msgid "Webhook URL"
6145
  msgstr ""
6146
 
6147
  #: classes/gateways/class.pmprogateway_stripe.php:438
6148
  #: classes/gateways/class.pmprogateway_stripe.php:446
6149
+ #: classes/gateways/class.pmprogateway_stripe.php:452
6150
  msgid "Test Mode:"
6151
  msgstr ""
6152
 
6153
  #: classes/gateways/class.pmprogateway_stripe.php:450
6154
  #: classes/gateways/class.pmprogateway_stripe.php:461
6155
+ #: classes/gateways/class.pmprogateway_stripe.php:467
6156
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
6157
  msgstr ""
6158
 
6159
  #: classes/gateways/class.pmprogateway_stripe.php:483
6160
  #: classes/gateways/class.pmprogateway_stripe.php:495
6161
+ #: classes/gateways/class.pmprogateway_stripe.php:501
6162
  msgid "This will disconnect your site from Stripe in test mode only."
6163
  msgstr ""
6164
 
6165
  #: classes/gateways/class.pmprogateway_stripe.php:518
6166
  #: classes/gateways/class.pmprogateway_stripe.php:530
6167
+ #: classes/gateways/class.pmprogateway_stripe.php:536
6168
  msgid "Stripe API Settings (Legacy)"
6169
  msgstr ""
6170
 
6171
  #: classes/gateways/class.pmprogateway_stripe.php:531
6172
  #: classes/gateways/class.pmprogateway_stripe.php:543
6173
  #: classes/gateways/class.pmprogateway_stripe.php:562
6174
+ #: classes/gateways/class.pmprogateway_stripe.php:568
6175
  msgid "Your Publishable Key appears incorrect."
6176
  msgstr ""
6177
 
6181
  #: classes/gateways/class.pmprogateway_stripe.php:587
6182
  #: classes/gateways/class.pmprogateway_stripe.php:582
6183
  #: classes/gateways/class.pmprogateway_stripe.php:606
6184
+ #: classes/gateways/class.pmprogateway_stripe.php:588
6185
+ #: classes/gateways/class.pmprogateway_stripe.php:612
6186
  msgid "Create Webhook"
6187
  msgstr ""
6188
 
6189
  #: classes/gateways/class.pmprogateway_stripe.php:557
6190
  #: classes/gateways/class.pmprogateway_stripe.php:569
6191
  #: classes/gateways/class.pmprogateway_stripe.php:588
6192
+ #: classes/gateways/class.pmprogateway_stripe.php:594
6193
  msgid "A webhook is set up in Stripe, but it is disabled."
6194
  msgstr ""
6195
 
6196
  #: classes/gateways/class.pmprogateway_stripe.php:564
6197
  #: classes/gateways/class.pmprogateway_stripe.php:576
6198
  #: classes/gateways/class.pmprogateway_stripe.php:595
6199
+ #: classes/gateways/class.pmprogateway_stripe.php:601
6200
  msgid "A webhook is set up in Stripe, but it is using an old API version."
6201
  msgstr ""
6202
 
6203
  #: classes/gateways/class.pmprogateway_stripe.php:564
6204
  #: classes/gateways/class.pmprogateway_stripe.php:576
6205
  #: classes/gateways/class.pmprogateway_stripe.php:595
6206
+ #: classes/gateways/class.pmprogateway_stripe.php:601
6207
  msgid "Rebuild Webhook"
6208
  msgstr ""
6209
 
6216
  #: classes/gateways/class.pmprogateway_stripe.php:601
6217
  #: classes/gateways/class.pmprogateway_stripe.php:741
6218
  #: classes/gateways/class.pmprogateway_stripe.php:857
6219
+ #: classes/gateways/class.pmprogateway_stripe.php:607
6220
+ #: classes/gateways/class.pmprogateway_stripe.php:747
6221
+ #: classes/gateways/class.pmprogateway_stripe.php:863
6222
  msgid "Your webhook is enabled."
6223
  msgstr ""
6224
 
6225
  #: classes/gateways/class.pmprogateway_stripe.php:570
6226
  #: classes/gateways/class.pmprogateway_stripe.php:582
6227
  #: classes/gateways/class.pmprogateway_stripe.php:601
6228
+ #: classes/gateways/class.pmprogateway_stripe.php:607
6229
  msgid "Disable Webhook"
6230
  msgstr ""
6231
 
6241
  #: classes/gateways/class.pmprogateway_stripe.php:768
6242
  #: classes/gateways/class.pmprogateway_stripe.php:785
6243
  #: classes/gateways/class.pmprogateway_stripe.php:819
6244
+ #: classes/gateways/class.pmprogateway_stripe.php:614
6245
+ #: classes/gateways/class.pmprogateway_stripe.php:774
6246
+ #: classes/gateways/class.pmprogateway_stripe.php:791
6247
+ #: classes/gateways/class.pmprogateway_stripe.php:825
6248
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
6249
  msgstr ""
6250
 
6251
  #: classes/gateways/class.pmprogateway_stripe.php:589
6252
  #: classes/gateways/class.pmprogateway_stripe.php:601
6253
  #: classes/gateways/class.pmprogateway_stripe.php:620
6254
+ #: classes/gateways/class.pmprogateway_stripe.php:626
6255
  msgid "Other Stripe Settings"
6256
  msgstr ""
6257
 
6258
  #: classes/gateways/class.pmprogateway_stripe.php:593
6259
  #: classes/gateways/class.pmprogateway_stripe.php:605
6260
  #: classes/gateways/class.pmprogateway_stripe.php:624
6261
+ #: classes/gateways/class.pmprogateway_stripe.php:630
6262
  msgid "Stripe API Version"
6263
  msgstr ""
6264
 
6265
  #: classes/gateways/class.pmprogateway_stripe.php:598
6266
  #: classes/gateways/class.pmprogateway_stripe.php:610
6267
  #: classes/gateways/class.pmprogateway_stripe.php:629
6268
+ #: classes/gateways/class.pmprogateway_stripe.php:635
6269
  msgid "Show Billing Address Fields"
6270
  msgstr ""
6271
 
6272
  #: classes/gateways/class.pmprogateway_stripe.php:607
6273
  #: classes/gateways/class.pmprogateway_stripe.php:619
6274
  #: classes/gateways/class.pmprogateway_stripe.php:638
6275
+ #: classes/gateways/class.pmprogateway_stripe.php:644
6276
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
6277
  msgstr ""
6278
 
6279
  #: classes/gateways/class.pmprogateway_stripe.php:612
6280
  #: classes/gateways/class.pmprogateway_stripe.php:624
6281
  #: classes/gateways/class.pmprogateway_stripe.php:643
6282
+ #: classes/gateways/class.pmprogateway_stripe.php:649
6283
  msgid "Enable Payment Request Button"
6284
  msgstr ""
6285
 
6286
  #: classes/gateways/class.pmprogateway_stripe.php:630
6287
  #: classes/gateways/class.pmprogateway_stripe.php:642
6288
  #: classes/gateways/class.pmprogateway_stripe.php:661
6289
+ #: classes/gateways/class.pmprogateway_stripe.php:667
6290
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
6291
  msgstr ""
6292
 
6293
  #: classes/gateways/class.pmprogateway_stripe.php:643
6294
  #: classes/gateways/class.pmprogateway_stripe.php:655
6295
  #: classes/gateways/class.pmprogateway_stripe.php:674
6296
+ #: classes/gateways/class.pmprogateway_stripe.php:680
6297
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
6298
  msgstr ""
6299
 
6300
  #: classes/gateways/class.pmprogateway_stripe.php:645
6301
  #: classes/gateways/class.pmprogateway_stripe.php:657
6302
  #: classes/gateways/class.pmprogateway_stripe.php:676
6303
+ #: classes/gateways/class.pmprogateway_stripe.php:682
6304
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
6305
  msgstr ""
6306
 
6307
  #: classes/gateways/class.pmprogateway_stripe.php:647
6308
  #: classes/gateways/class.pmprogateway_stripe.php:659
6309
  #: classes/gateways/class.pmprogateway_stripe.php:678
6310
+ #: classes/gateways/class.pmprogateway_stripe.php:684
6311
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
6312
  msgstr ""
6313
 
6314
  #: classes/gateways/class.pmprogateway_stripe.php:649
6315
  #: classes/gateways/class.pmprogateway_stripe.php:661
6316
  #: classes/gateways/class.pmprogateway_stripe.php:680
6317
+ #: classes/gateways/class.pmprogateway_stripe.php:686
6318
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
6319
  msgstr ""
6320
 
6321
  #: classes/gateways/class.pmprogateway_stripe.php:674
6322
  #: classes/gateways/class.pmprogateway_stripe.php:686
6323
  #: classes/gateways/class.pmprogateway_stripe.php:705
6324
+ #: classes/gateways/class.pmprogateway_stripe.php:711
6325
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
6326
  msgstr ""
6327
 
6328
  #: classes/gateways/class.pmprogateway_stripe.php:695
6329
  #: classes/gateways/class.pmprogateway_stripe.php:707
6330
  #: classes/gateways/class.pmprogateway_stripe.php:726
6331
+ #: classes/gateways/class.pmprogateway_stripe.php:732
6332
  msgid "Webhook creation failed. You might already have a webhook set up."
6333
  msgstr ""
6334
 
6338
  #: classes/gateways/class.pmprogateway_stripe.php:847
6339
  #: classes/gateways/class.pmprogateway_stripe.php:792
6340
  #: classes/gateways/class.pmprogateway_stripe.php:866
6341
+ #: classes/gateways/class.pmprogateway_stripe.php:798
6342
+ #: classes/gateways/class.pmprogateway_stripe.php:872
6343
  msgid "There was an error deleting the webhook."
6344
  msgstr ""
6345
 
6346
  #: classes/gateways/class.pmprogateway_stripe.php:811
6347
  #: classes/gateways/class.pmprogateway_stripe.php:823
6348
  #: classes/gateways/class.pmprogateway_stripe.php:842
6349
+ #: classes/gateways/class.pmprogateway_stripe.php:848
6350
  msgid "Webhook creation failed. Please refresh and try again."
6351
  msgstr ""
6352
 
6353
  #: classes/gateways/class.pmprogateway_stripe.php:867
6354
  #: classes/gateways/class.pmprogateway_stripe.php:879
6355
  #: classes/gateways/class.pmprogateway_stripe.php:898
6356
+ #: classes/gateways/class.pmprogateway_stripe.php:904
6357
  msgid "Verification steps confirmed. Your payment is processing."
6358
  msgstr ""
6359
 
6360
  #: classes/gateways/class.pmprogateway_stripe.php:1262
6361
  #: classes/gateways/class.pmprogateway_stripe.php:1274
6362
  #: classes/gateways/class.pmprogateway_stripe.php:1293
6363
+ #: classes/gateways/class.pmprogateway_stripe.php:1299
6364
  msgid "Pay with Credit Card"
6365
  msgstr ""
6366
 
6367
  #: classes/gateways/class.pmprogateway_stripe.php:1296
6368
  #: classes/gateways/class.pmprogateway_stripe.php:1308
6369
  #: classes/gateways/class.pmprogateway_stripe.php:1327
6370
+ #: classes/gateways/class.pmprogateway_stripe.php:1333
6371
  msgid "CVC"
6372
  msgstr ""
6373
 
6374
  #: classes/gateways/class.pmprogateway_stripe.php:1374
6375
  #: classes/gateways/class.pmprogateway_stripe.php:1386
6376
  #: classes/gateways/class.pmprogateway_stripe.php:1405
6377
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
6378
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
6379
  msgstr ""
6380
 
6381
  #: classes/gateways/class.pmprogateway_stripe.php:1379
6382
  #: classes/gateways/class.pmprogateway_stripe.php:1391
6383
  #: classes/gateways/class.pmprogateway_stripe.php:1410
6384
+ #: classes/gateways/class.pmprogateway_stripe.php:1416
6385
  msgid "Subscription Updates"
6386
  msgstr ""
6387
 
6388
  #: classes/gateways/class.pmprogateway_stripe.php:1383
6389
  #: classes/gateways/class.pmprogateway_stripe.php:1395
6390
  #: classes/gateways/class.pmprogateway_stripe.php:1414
6391
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
6392
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
6393
  msgstr ""
6394
 
6395
  #: classes/gateways/class.pmprogateway_stripe.php:1385
6396
  #: classes/gateways/class.pmprogateway_stripe.php:1397
6397
  #: classes/gateways/class.pmprogateway_stripe.php:1416
6398
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
6399
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
6400
  msgstr ""
6401
 
6411
  #: classes/gateways/class.pmprogateway_stripe.php:2016
6412
  #: classes/gateways/class.pmprogateway_stripe.php:2029
6413
  #: classes/gateways/class.pmprogateway_stripe.php:2033
6414
+ #: classes/gateways/class.pmprogateway_stripe.php:2018
6415
+ #: classes/gateways/class.pmprogateway_stripe.php:2022
6416
+ #: classes/gateways/class.pmprogateway_stripe.php:2035
6417
+ #: classes/gateways/class.pmprogateway_stripe.php:2039
6418
  msgid "Error: %s"
6419
  msgstr ""
6420
 
6424
  #: classes/gateways/class.pmprogateway_stripe.php:2182
6425
  #: classes/gateways/class.pmprogateway_stripe.php:2196
6426
  #: classes/gateways/class.pmprogateway_stripe.php:2201
6427
+ #: classes/gateways/class.pmprogateway_stripe.php:2202
6428
+ #: classes/gateways/class.pmprogateway_stripe.php:2207
6429
  msgid "Error getting subscription with Stripe:"
6430
  msgstr ""
6431
 
6432
  #: classes/gateways/class.pmprogateway_stripe.php:2480
6433
  #: classes/gateways/class.pmprogateway_stripe.php:2492
6434
  #: classes/gateways/class.pmprogateway_stripe.php:2514
6435
+ #: classes/gateways/class.pmprogateway_stripe.php:2520
6436
  msgid "Could not cancel the old subscription. Updates have not been processed."
6437
  msgstr ""
6438
 
6439
  #: classes/gateways/class.pmprogateway_stripe.php:2632
6440
  #: classes/gateways/class.pmprogateway_stripe.php:2644
6441
  #: classes/gateways/class.pmprogateway_stripe.php:2666
6442
+ #: classes/gateways/class.pmprogateway_stripe.php:2672
6443
  msgid "Could not cancel old subscription."
6444
  msgstr ""
6445
 
6446
  #: classes/gateways/class.pmprogateway_stripe.php:2648
6447
  #: classes/gateways/class.pmprogateway_stripe.php:2660
6448
  #: classes/gateways/class.pmprogateway_stripe.php:2682
6449
+ #: classes/gateways/class.pmprogateway_stripe.php:2688
6450
  msgid "Could not find the customer."
6451
  msgstr ""
6452
 
6456
  #: classes/gateways/class.pmprogateway_stripe.php:2834
6457
  #: classes/gateways/class.pmprogateway_stripe.php:2850
6458
  #: classes/gateways/class.pmprogateway_stripe.php:2856
6459
+ #: classes/gateways/class.pmprogateway_stripe.php:2862
6460
  msgid "Error: "
6461
  msgstr ""
6462
 
6463
  #: classes/gateways/class.pmprogateway_stripe.php:2836
6464
  #: classes/gateways/class.pmprogateway_stripe.php:2848
6465
  #: classes/gateways/class.pmprogateway_stripe.php:2870
6466
+ #: classes/gateways/class.pmprogateway_stripe.php:2876
6467
  msgid "Error: Unkown error while refunding charge #%s"
6468
  msgstr ""
6469
 
6470
  #: classes/gateways/class.pmprogateway_stripe.php:3330
6471
  #: classes/gateways/class.pmprogateway_stripe.php:3342
6472
  #: classes/gateways/class.pmprogateway_stripe.php:3364
6473
+ #: classes/gateways/class.pmprogateway_stripe.php:3370
6474
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
6475
  msgstr ""
6476
 
6477
  #: classes/gateways/class.pmprogateway_stripe.php:3347
6478
  #: classes/gateways/class.pmprogateway_stripe.php:3359
6479
  #: classes/gateways/class.pmprogateway_stripe.php:3381
6480
+ #: classes/gateways/class.pmprogateway_stripe.php:3387
6481
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
6482
  msgstr ""
6483
 
6484
  #: classes/gateways/class.pmprogateway_stripe.php:3533
6485
  #: classes/gateways/class.pmprogateway_stripe.php:3545
6486
  #: classes/gateways/class.pmprogateway_stripe.php:3567
6487
+ #: classes/gateways/class.pmprogateway_stripe.php:3573
6488
  msgid "Invalid response from the Stripe Connect server."
6489
  msgstr ""
6490
 
6492
  #: classes/gateways/class.pmprogateway_stripe.php:3561
6493
  #: classes/gateways/class.pmprogateway_stripe.php:3573
6494
  #: classes/gateways/class.pmprogateway_stripe.php:3595
6495
+ #: classes/gateways/class.pmprogateway_stripe.php:3601
6496
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
6497
  msgstr ""
6498
 
6500
  #: classes/gateways/class.pmprogateway_stripe.php:3597
6501
  #: classes/gateways/class.pmprogateway_stripe.php:3609
6502
  #: classes/gateways/class.pmprogateway_stripe.php:3631
6503
+ #: classes/gateways/class.pmprogateway_stripe.php:3637
6504
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
6505
  msgstr ""
6506
 
6507
  #: classes/gateways/class.pmprogateway_stripe.php:3768
6508
  #: classes/gateways/class.pmprogateway_stripe.php:3780
6509
  #: classes/gateways/class.pmprogateway_stripe.php:3802
6510
+ #: classes/gateways/class.pmprogateway_stripe.php:3808
6511
  msgid "Last webhook received at"
6512
  msgstr ""
6513
 
6514
  #: classes/gateways/class.pmprogateway_stripe.php:3770
6515
  #: classes/gateways/class.pmprogateway_stripe.php:3782
6516
  #: classes/gateways/class.pmprogateway_stripe.php:3804
6517
+ #: classes/gateways/class.pmprogateway_stripe.php:3810
6518
  msgid "No webhooks have been received."
6519
  msgstr ""
6520
 
6521
  #: classes/gateways/class.pmprogateway_stripe.php:3774
6522
  #: classes/gateways/class.pmprogateway_stripe.php:3786
6523
  #: classes/gateways/class.pmprogateway_stripe.php:3808
6524
+ #: classes/gateways/class.pmprogateway_stripe.php:3814
6525
  msgid "Your webhook may not be working correctly."
6526
  msgstr ""
6527
 
6528
  #: classes/gateways/class.pmprogateway_stripe.php:3776
6529
  #: classes/gateways/class.pmprogateway_stripe.php:3788
6530
  #: classes/gateways/class.pmprogateway_stripe.php:3810
6531
+ #: classes/gateways/class.pmprogateway_stripe.php:3816
6532
  msgid "Click here for info on setting up your webhook with Stripe."
6533
  msgstr ""
6534
 
8763
 
8764
  #: includes/login.php:429
8765
  #: includes/profile.php:843
8766
+ #: includes/profile.php:855
8767
  msgid "New passwords do not match."
8768
  msgstr ""
8769
 
8770
  #: includes/login.php:433
8771
  #: includes/profile.php:839
8772
+ #: includes/profile.php:851
8773
  msgid "Please complete all fields."
8774
  msgstr ""
8775
 
8799
 
8800
  #: includes/login.php:688
8801
  #: includes/profile.php:891
8802
+ #: includes/profile.php:903
8803
  msgid "New Password"
8804
  msgstr ""
8805
 
8806
  #: includes/login.php:690
8807
  #: includes/profile.php:894
8808
  #: includes/scripts.php:86
8809
+ #: includes/profile.php:906
8810
+ #: includes/scripts.php:85
8811
  msgid "Strength Indicator"
8812
  msgstr ""
8813
 
8814
  #: includes/login.php:694
8815
  #: includes/profile.php:898
8816
+ #: includes/profile.php:910
8817
  msgid "Confirm New Password"
8818
  msgstr ""
8819
 
8914
  #: includes/privacy.php:182
8915
  #: includes/profile.php:425
8916
  #: includes/profile.php:493
8917
+ #: includes/profile.php:499
8918
  msgid "Level ID"
8919
  msgstr ""
8920
 
8921
  #: includes/privacy.php:190
8922
  #: includes/profile.php:496
8923
+ #: includes/profile.php:502
8924
  msgid "Date Modified"
8925
  msgstr ""
8926
 
8927
  #: includes/privacy.php:194
8928
  #: includes/profile.php:497
8929
+ #: includes/profile.php:503
8930
  msgid "End Date"
8931
  msgstr ""
8932
 
8933
  #: includes/privacy.php:198
8934
  #: includes/profile.php:498
8935
+ #: includes/profile.php:504
8936
  msgid "Level Cost"
8937
  msgstr ""
8938
 
9041
  msgstr ""
9042
 
9043
  #: includes/profile.php:485
9044
+ #: includes/profile.php:488
9045
  msgid "No membership orders found."
9046
  msgstr ""
9047
 
9048
  #: includes/profile.php:537
9049
+ #: includes/profile.php:546
9050
  msgid "No membership history found."
9051
  msgstr ""
9052
 
9053
  #: includes/profile.php:644
9054
+ #: includes/profile.php:656
9055
  msgid "Log in to edit your profile."
9056
  msgstr ""
9057
 
9058
  #: includes/profile.php:679
9059
+ #: includes/profile.php:691
9060
  msgid "Please enter a display name."
9061
  msgstr ""
9062
 
9063
  #: includes/profile.php:689
9064
+ #: includes/profile.php:701
9065
  msgid "Please enter an email address."
9066
  msgstr ""
9067
 
9068
  #: includes/profile.php:691
9069
+ #: includes/profile.php:703
9070
  msgid "The email address isn&#8217;t correct."
9071
  msgstr ""
9072
 
9073
  #: includes/profile.php:695
9074
+ #: includes/profile.php:707
9075
  msgid "This email is already registered, please choose another one."
9076
  msgstr ""
9077
 
9078
  #: includes/profile.php:722
9079
+ #: includes/profile.php:734
9080
  msgid "Your profile has been updated."
9081
  msgstr ""
9082
 
9083
  #: includes/profile.php:749
9084
+ #: includes/profile.php:761
9085
  msgid "Display name publicly as"
9086
  msgstr ""
9087
 
9088
  #: includes/profile.php:762
9089
+ #: includes/profile.php:774
9090
  msgid "Site administrators must use the WordPress dashboard to update their email address."
9091
  msgstr ""
9092
 
9093
  #: includes/profile.php:785
9094
+ #: includes/profile.php:797
9095
  msgid "Update Profile"
9096
  msgstr ""
9097
 
9098
  #: includes/profile.php:841
9099
+ #: includes/profile.php:853
9100
  msgid "Please enter your current password."
9101
  msgstr ""
9102
 
9103
  #: includes/profile.php:845
9104
+ #: includes/profile.php:857
9105
  msgid "Your current password is incorrect."
9106
  msgstr ""
9107
 
9108
  #: includes/profile.php:856
9109
+ #: includes/profile.php:868
9110
  msgid "Your password has been updated."
9111
  msgstr ""
9112
 
9113
  #: includes/profile.php:886
9114
+ #: includes/profile.php:898
9115
  msgid "Current Password"
9116
  msgstr ""
9117
 
9118
  #: includes/profile.php:888
9119
  #: includes/profile.php:893
9120
  #: includes/profile.php:900
9121
+ #: includes/profile.php:905
9122
+ #: includes/profile.php:912
9123
  msgid "Required Field"
9124
  msgstr ""
9125
 
9282
  msgstr ""
9283
 
9284
  #: services/braintree-webhook.php:425
9285
+ #: services/braintree-webhook.php:426
9286
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
9287
  msgstr ""
9288
 
9289
  #: services/braintree-webhook.php:427
9290
+ #: services/braintree-webhook.php:428
9291
  msgid "A member's Braintree subscription has expired at %s"
9292
  msgstr ""
9293
 
9622
 
9623
  #: classes/gateways/class.pmprogateway_stripe.php:360
9624
  #: classes/gateways/class.pmprogateway_stripe.php:450
9625
+ #: classes/gateways/class.pmprogateway_stripe.php:366
9626
+ #: classes/gateways/class.pmprogateway_stripe.php:456
9627
  msgid "Connected with Legacy Keys"
9628
  msgstr ""
9629
 
9630
  #: classes/gateways/class.pmprogateway_stripe.php:370
9631
  #: classes/gateways/class.pmprogateway_stripe.php:460
9632
+ #: classes/gateways/class.pmprogateway_stripe.php:376
9633
+ #: classes/gateways/class.pmprogateway_stripe.php:466
9634
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
9635
  msgstr ""
9636
 
9637
  #: classes/gateways/class.pmprogateway_stripe.php:372
9638
  #: classes/gateways/class.pmprogateway_stripe.php:462
9639
+ #: classes/gateways/class.pmprogateway_stripe.php:378
9640
+ #: classes/gateways/class.pmprogateway_stripe.php:468
9641
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
9642
  msgstr ""
9643
 
9694
  msgstr ""
9695
 
9696
  #: classes/gateways/class.pmprogateway_stripe.php:533
9697
+ #: classes/gateways/class.pmprogateway_stripe.php:539
9698
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
9699
  msgstr ""
9700
 
9701
  #: classes/gateways/class.pmprogateway_stripe.php:534
9702
+ #: classes/gateways/class.pmprogateway_stripe.php:540
9703
  msgid "Click here to use the legacy API settings."
9704
  msgstr ""
9705
 
9706
  #: paid-memberships-pro.php:194
9707
  msgid "Once a month"
9708
  msgstr ""
9709
+
9710
+ #: adminpages/license.php:37
9711
+ msgid "There was an issue validating your license key: %s"
9712
+ msgstr ""
9713
+
9714
+ #: includes/email-templates.php:172
9715
+ msgid ""
9716
+ "<p>There was a new member checkout at !!sitename!!.</p>\n"
9717
+ "\n"
9718
+ "<p><strong>They have chosen to pay by check.</strong></p>\n"
9719
+ "\n"
9720
+ "<p>Below are details about the new membership account and a receipt for the initial membership invoice.</p>\n"
9721
+ "\n"
9722
+ "<p>Account: !!display_name!! (!!user_email!!)</p>\n"
9723
+ "<p>Membership Level: !!membership_level_name!!</p>\n"
9724
+ "<p>Membership Fee: !!membership_cost!!</p>\n"
9725
+ "!!membership_expiration!! !!discount_code!!\n"
9726
+ "\n"
9727
+ "<p>\n"
9728
+ "\tInvoice #!!invoice_id!! on !!invoice_date!!<br />\n"
9729
+ "\tTotal Billed: !!invoice_total!!\n"
9730
+ "</p>\n"
9731
+ "\n"
9732
+ "<p>Log in to your membership account here: !!login_url!!</p>"
9733
+ msgstr ""
9734
+
9735
+ #: includes/license.php:112
9736
+ msgid "Missing key."
9737
+ msgstr ""
9738
+
9739
+ #: shortcodes/pmpro_account.php:145
9740
+ msgctxt "A dash is shown when there is no expiration date."
9741
+ msgid "&#8212;"
9742
+ msgstr ""
languages/paid-memberships-pro-es_ES.mo CHANGED
Binary file
languages/paid-memberships-pro-es_ES.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.2\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-09-17T13:57:12+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -518,6 +518,8 @@ msgstr "Expira"
518
  #: adminpages/advancedsettings.php:479
519
  #: classes/gateways/class.pmprogateway_stripe.php:634
520
  #: classes/gateways/class.pmprogateway_stripe.php:648
 
 
521
  msgid "No"
522
  msgstr "No"
523
 
@@ -542,6 +544,8 @@ msgstr "No"
542
  #: adminpages/advancedsettings.php:397
543
  #: classes/gateways/class.pmprogateway_stripe.php:636
544
  #: classes/gateways/class.pmprogateway_stripe.php:650
 
 
545
  msgid "Yes"
546
  msgstr "Si"
547
 
@@ -678,6 +682,7 @@ msgstr "Pasarela de pagos &amp; SSL"
678
  #: adminpages/orders.php:391
679
  #: adminpages/orders.php:1445
680
  #: adminpages/orders.php:1448
 
681
  msgid "Email"
682
  msgstr "Email"
683
 
@@ -958,6 +963,7 @@ msgstr "Cupón"
958
  #: includes/privacy.php:186
959
  #: includes/profile.php:495
960
  #: adminpages/discountcodes.php:489
 
961
  msgid "Start Date"
962
  msgstr "Fecha de inicio"
963
 
@@ -972,6 +978,7 @@ msgstr "Fecha de inicio"
972
  #: classes/gateways/class.pmprogateway_stripe.php:1301
973
  #: adminpages/discountcodes.php:507
974
  #: classes/gateways/class.pmprogateway_stripe.php:1320
 
975
  msgid "Expiration Date"
976
  msgstr "Fecha de expiración"
977
 
@@ -1345,6 +1352,7 @@ msgstr "Cantidad a facturar"
1345
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1346
  #: adminpages/discountcodes.php:608
1347
  #: classes/gateways/class.pmprogateway_stripe.php:1497
 
1348
  msgid "per"
1349
  msgstr "por"
1350
 
@@ -1358,6 +1366,7 @@ msgstr "por"
1358
  #: adminpages/discountcodes.php:612
1359
  #: adminpages/discountcodes.php:699
1360
  #: classes/gateways/class.pmprogateway_stripe.php:1363
 
1361
  msgid "Day(s)"
1362
  msgstr "Día(s)"
1363
 
@@ -1371,6 +1380,7 @@ msgstr "Día(s)"
1371
  #: adminpages/discountcodes.php:612
1372
  #: adminpages/discountcodes.php:699
1373
  #: classes/gateways/class.pmprogateway_stripe.php:1364
 
1374
  msgid "Week(s)"
1375
  msgstr "Semana(s)"
1376
 
@@ -1384,6 +1394,7 @@ msgstr "Semana(s)"
1384
  #: adminpages/discountcodes.php:612
1385
  #: adminpages/discountcodes.php:699
1386
  #: classes/gateways/class.pmprogateway_stripe.php:1365
 
1387
  msgid "Month(s)"
1388
  msgstr "Mes(es)"
1389
 
@@ -1397,6 +1408,7 @@ msgstr "Mes(es)"
1397
  #: adminpages/discountcodes.php:612
1398
  #: adminpages/discountcodes.php:699
1399
  #: classes/gateways/class.pmprogateway_stripe.php:1366
 
1400
  msgid "Year(s)"
1401
  msgstr "Año(s)"
1402
 
@@ -1688,6 +1700,7 @@ msgstr "Se unió"
1688
  #: adminpages/advancedsettings.php:316
1689
  #: includes/privacy.php:175
1690
  #: includes/profile.php:509
 
1691
  msgid "Never"
1692
  msgstr "Nunca"
1693
 
@@ -1890,6 +1903,7 @@ msgstr "p.ej. PayPal Express, PayPal Standard, Credit Card."
1890
  #: adminpages/orders.php:679
1891
  #: classes/gateways/class.pmprogateway_stripe.php:1284
1892
  #: classes/gateways/class.pmprogateway_stripe.php:1303
 
1893
  msgid "Card Type"
1894
  msgstr "Tipo de tarjeta"
1895
 
@@ -1943,6 +1957,7 @@ msgstr "Año de expiración"
1943
  #: adminpages/dashboard.php:294
1944
  #: adminpages/orders.php:742
1945
  #: adminpages/orders.php:1348
 
1946
  msgid "Status"
1947
  msgstr "Estado"
1948
 
@@ -2075,6 +2090,8 @@ msgstr "Guardar pago"
2075
  #: pages/cancel.php:96
2076
  #: shortcodes/pmpro_account.php:106
2077
  #: adminpages/orders.php:968
 
 
2078
  msgid "Cancel"
2079
  msgstr "Cancelar"
2080
 
@@ -2297,6 +2314,7 @@ msgstr "Contraseña"
2297
  #: classes/gateways/class.pmprogateway_paypal.php:153
2298
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
2299
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
 
2300
  msgid "Gateway Account Email"
2301
  msgstr "Email de cuenta de la Pasarela "
2302
 
@@ -2305,6 +2323,7 @@ msgstr "Email de cuenta de la Pasarela "
2305
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
2306
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
2307
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
 
2308
  msgid "API Username"
2309
  msgstr "Nombre de usuario de API (API Username)"
2310
 
@@ -2313,6 +2332,7 @@ msgstr "Nombre de usuario de API (API Username)"
2313
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
2314
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
2315
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
 
2316
  msgid "API Password"
2317
  msgstr "Contraseña de API (API Password)"
2318
 
@@ -2320,6 +2340,7 @@ msgstr "Contraseña de API (API Password)"
2320
  #: classes/gateways/class.pmprogateway_paypal.php:177
2321
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
2322
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
 
2323
  msgid "API Signature"
2324
  msgstr "Firma de API (API Signature)"
2325
 
@@ -2337,6 +2358,7 @@ msgstr "Llave de transaccion (Transaction Key)"
2337
  #: classes/gateways/class.pmprogateway_stripe.php:539
2338
  #: classes/gateways/class.pmprogateway_stripe.php:551
2339
  #: classes/gateways/class.pmprogateway_stripe.php:570
 
2340
  msgid "Secret Key"
2341
  msgstr "Llave secreta (Secret Key)"
2342
 
@@ -2344,6 +2366,7 @@ msgstr "Llave secreta (Secret Key)"
2344
  #: classes/gateways/class.pmprogateway_stripe.php:523
2345
  #: classes/gateways/class.pmprogateway_stripe.php:535
2346
  #: classes/gateways/class.pmprogateway_stripe.php:554
 
2347
  msgid "Publishable Key"
2348
  msgstr "Llave publicable (Publishable Key)"
2349
 
@@ -2447,12 +2470,14 @@ msgstr "Usar la \"Opción Nuclear\" para usar URLs seguras (HTTPS) en tus págin
2447
  #: classes/gateways/class.pmprogateway_paypal.php:196
2448
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
2449
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
 
2450
  msgid "IPN Handler URL"
2451
  msgstr "IPN Handler URL"
2452
 
2453
  #: adminpages/paymentsettings.php:449
2454
  #: classes/gateways/class.pmprogateway_paypal.php:199
2455
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
 
2456
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
2457
  msgstr "Para integrar completamente con Paypal, asegúrate de introducir tu IPN Handler URL a"
2458
 
@@ -2686,6 +2711,7 @@ msgstr "Confirmación de suscripción para %s"
2686
  #: classes/class.pmproemail.php:769
2687
  #: classes/class.pmproemail.php:771
2688
  #: classes/gateways/class.pmprogateway_stripe.php:1333
 
2689
  msgid "Discount Code"
2690
  msgstr "Cupón de descuento"
2691
 
@@ -2923,6 +2949,9 @@ msgstr "Se realizó un pago parcial que hemos podido devolver. Por favor contact
2923
  #: classes/gateways/class.pmprogateway_stripe.php:2127
2924
  #: classes/gateways/class.pmprogateway_stripe.php:2132
2925
  #: classes/gateways/class.pmprogateway_stripe.php:2137
 
 
 
2926
  msgid "Error creating customer record with Stripe:"
2927
  msgstr "Error creando entrada para el cliente con Stripe:"
2928
 
@@ -2933,6 +2962,8 @@ msgstr "Error creando entrada para el cliente con Stripe:"
2933
  #: classes/gateways/class.pmprogateway_stripe.php:2356
2934
  #: classes/gateways/class.pmprogateway_stripe.php:2373
2935
  #: classes/gateways/class.pmprogateway_stripe.php:2378
 
 
2936
  msgid "Error creating plan with Stripe:"
2937
  msgstr "Error creando plan con Stripe:"
2938
 
@@ -2943,6 +2974,8 @@ msgstr "Error creando plan con Stripe:"
2943
  #: classes/gateways/class.pmprogateway_stripe.php:2401
2944
  #: classes/gateways/class.pmprogateway_stripe.php:2409
2945
  #: classes/gateways/class.pmprogateway_stripe.php:2423
 
 
2946
  msgid "Error subscribing customer to plan with Stripe:"
2947
  msgstr "Error subscribiendo al cliente al plan con Stripe:"
2948
 
@@ -2971,6 +3004,7 @@ msgstr "Tu suscripción esta <strong>activa</strong>."
2971
  #: adminpages/dashboard.php:224
2972
  #: adminpages/dashboard.php:292
2973
  #: adminpages/orders.php:1343
 
2974
  msgid "Level"
2975
  msgstr "Nivel"
2976
 
@@ -3017,6 +3051,8 @@ msgstr "Editar Perfil"
3017
  #: includes/profile.php:872
3018
  #: includes/profile.php:909
3019
  #: shortcodes/pmpro_account.php:195
 
 
3020
  msgid "Change Password"
3021
  msgstr "Cambiar Contraseña"
3022
 
@@ -3081,6 +3117,7 @@ msgstr "Tu subscripción de pago es gestionada por Paypal. Por favor <a href=\"h
3081
  #: includes/profile.php:747
3082
  #: pages/billing.php:164
3083
  #: pages/checkout.php:234
 
3084
  msgid "First Name"
3085
  msgstr "Nombre"
3086
 
@@ -3089,6 +3126,7 @@ msgstr "Nombre"
3089
  #: includes/profile.php:748
3090
  #: pages/billing.php:168
3091
  #: pages/checkout.php:238
 
3092
  msgid "Last Name"
3093
  msgstr "Apellidos"
3094
 
@@ -3183,6 +3221,7 @@ msgstr "Información de la tarjeta de crédito"
3183
  #: pages/checkout.php:389
3184
  #: classes/gateways/class.pmprogateway_stripe.php:1297
3185
  #: classes/gateways/class.pmprogateway_stripe.php:1316
 
3186
  msgid "Card Number"
3187
  msgstr "Número de la Tarjeta"
3188
 
@@ -3206,6 +3245,7 @@ msgstr "¿Que es esto?"
3206
  #: pages/billing.php:425
3207
  #: classes/gateways/class.pmprogateway_stripe.php:1403
3208
  #: classes/gateways/class.pmprogateway_stripe.php:1422
 
3209
  msgid "Update"
3210
  msgstr "Actualizar"
3211
 
@@ -3277,6 +3317,7 @@ msgstr "Haz click aquí para introducir tu cupón de descuento"
3277
  #: pages/checkout.php:432
3278
  #: classes/gateways/class.pmprogateway_stripe.php:1319
3279
  #: classes/gateways/class.pmprogateway_stripe.php:1338
 
3280
  msgid "Apply"
3281
  msgstr "Aplicar"
3282
 
@@ -3343,6 +3384,7 @@ msgstr "Pague con su tarjeta de crédito aquí"
3343
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
3344
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
3345
  #: pages/checkout.php:218
 
3346
  msgid "Check Out with PayPal"
3347
  msgstr "pague con PayPal"
3348
 
@@ -3352,6 +3394,7 @@ msgstr "pague con PayPal"
3352
  #: pages/checkout.php:367
3353
  #: classes/gateways/class.pmprogateway_stripe.php:1264
3354
  #: classes/gateways/class.pmprogateway_stripe.php:1283
 
3355
  #, php-format
3356
  msgid "We Accept %s"
3357
  msgstr "Aceptamos %s"
@@ -3362,6 +3405,7 @@ msgstr "Aceptamos %s"
3362
  #: pages/checkout.php:366
3363
  #: classes/gateways/class.pmprogateway_stripe.php:1263
3364
  #: classes/gateways/class.pmprogateway_stripe.php:1282
 
3365
  msgid "Payment Information"
3366
  msgstr "Información de pago"
3367
 
@@ -3375,6 +3419,7 @@ msgstr "Completa el pago"
3375
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
3376
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
3377
  #: pages/checkout.php:526
 
3378
  msgid "Submit and Check Out"
3379
  msgstr "Envíar y pagar"
3380
 
@@ -3384,6 +3429,7 @@ msgstr "Envíar y pagar"
3384
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
3385
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
3386
  #: pages/checkout.php:526
 
3387
  msgid "Submit and Confirm"
3388
  msgstr "Enviar y confirmar"
3389
 
@@ -3692,6 +3738,8 @@ msgstr "Error desconocido generando tu cuenta. Por favor contactanos para que po
3692
  #: preheaders/checkout.php:803
3693
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
3694
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
 
 
3695
  msgid "The PayPal Token was lost."
3696
  msgstr "El token de PayPal se ha perdido."
3697
 
@@ -3751,6 +3799,7 @@ msgstr "El cupón <strong>%s</strong> ha sido aplicado a tu pago."
3751
 
3752
  #: services/authnet-silent-post.php:133
3753
  #: services/authnet-silent-post.php:173
 
3754
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
3755
  msgstr "<p>Authorize.net ha congelado un pago y está revisandolo.</p><p>Información de pago de Authorize.net"
3756
 
@@ -3903,6 +3952,9 @@ msgstr ""
3903
  #: adminpages/orders.php:1544
3904
  #: adminpages/orders.php:1554
3905
  #: adminpages/orders.php:1553
 
 
 
3906
  msgid "N/A"
3907
  msgstr ""
3908
 
@@ -3937,6 +3989,7 @@ msgstr ""
3937
 
3938
  #: adminpages/admin_header.php:152
3939
  #: classes/gateways/class.pmprogateway_stripe.php:76
 
3940
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
3941
  msgstr ""
3942
 
@@ -4231,6 +4284,7 @@ msgstr ""
4231
  #: adminpages/dashboard.php:174
4232
  #: adminpages/license.php:49
4233
  #: adminpages/dashboard.php:178
 
4234
  msgid "Your license is invalid or expired."
4235
  msgstr ""
4236
 
@@ -4242,6 +4296,7 @@ msgstr ""
4242
  #: adminpages/dashboard.php:177
4243
  #: adminpages/license.php:51
4244
  #: adminpages/dashboard.php:181
 
4245
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
4246
  msgstr ""
4247
 
@@ -4738,26 +4793,33 @@ msgid "Your license key has been validated."
4738
  msgstr ""
4739
 
4740
  #: adminpages/license.php:43
 
4741
  msgid "Paid Memberships Pro Support License"
4742
  msgstr ""
4743
 
4744
  #: adminpages/license.php:47
 
4745
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
4746
  msgstr ""
4747
 
4748
  #: adminpages/license.php:49
 
 
4749
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
4750
  msgstr ""
4751
 
4752
  #: adminpages/license.php:59
 
4753
  msgid "Enter license key here..."
4754
  msgstr ""
4755
 
4756
  #: adminpages/license.php:61
 
4757
  msgid "Validate Key"
4758
  msgstr ""
4759
 
4760
  #: adminpages/license.php:95
 
4761
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
4762
  msgstr ""
4763
 
@@ -5555,6 +5617,7 @@ msgstr ""
5555
 
5556
  #: classes/gateways/class.pmprogateway_braintree.php:87
5557
  #: classes/gateways/class.pmprogateway_stripe.php:91
 
5558
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
5559
  msgstr ""
5560
 
@@ -5882,6 +5945,7 @@ msgid "Your order has been refused."
5882
  msgstr ""
5883
 
5884
  #: classes/gateways/class.pmprogateway_cybersource.php:922
 
5885
  msgid "Unknown error."
5886
  msgstr ""
5887
 
@@ -5914,41 +5978,49 @@ msgstr ""
5914
  #: classes/gateways/class.pmprogateway_paypal.php:132
5915
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
5916
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
 
5917
  msgid "PayPal Settings"
5918
  msgstr ""
5919
 
5920
  #: classes/gateways/class.pmprogateway_paypal.php:146
5921
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
5922
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
 
5923
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
5924
  msgstr ""
5925
 
5926
  #: classes/gateways/class.pmprogateway_paypal.php:185
5927
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
 
5928
  msgid "Confirmation Step"
5929
  msgstr ""
5930
 
5931
  #: classes/gateways/class.pmprogateway_paypal.php:716
5932
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
5933
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
 
5934
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
5935
  msgstr ""
5936
 
5937
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
5938
  #: paid-memberships-pro.php:160
5939
  #: paid-memberships-pro.php:162
 
5940
  msgid "PayPal Express"
5941
  msgstr ""
5942
 
5943
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
 
5944
  msgid "Checkout was already processed."
5945
  msgstr ""
5946
 
5947
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
 
5948
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
5949
  msgstr ""
5950
 
5951
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
 
5952
  msgid "Error creating plan with PayPal."
5953
  msgstr ""
5954
 
@@ -5969,6 +6041,7 @@ msgstr ""
5969
  #: classes/gateways/class.pmprogateway_stripe.php:252
5970
  #: paid-memberships-pro.php:159
5971
  #: paid-memberships-pro.php:161
 
5972
  msgid "Stripe"
5973
  msgstr ""
5974
 
@@ -5976,11 +6049,14 @@ msgstr ""
5976
  #: classes/gateways/class.pmprogateway_stripe.php:436
5977
  #: classes/gateways/class.pmprogateway_stripe.php:354
5978
  #: classes/gateways/class.pmprogateway_stripe.php:444
 
 
5979
  msgid "Stripe Connect Settings"
5980
  msgstr ""
5981
 
5982
  #: classes/gateways/class.pmprogateway_stripe.php:352
5983
  #: classes/gateways/class.pmprogateway_stripe.php:356
 
5984
  msgid "Live Mode:"
5985
  msgstr ""
5986
 
@@ -5988,6 +6064,8 @@ msgstr ""
5988
  #: classes/gateways/class.pmprogateway_stripe.php:440
5989
  #: classes/gateways/class.pmprogateway_stripe.php:358
5990
  #: classes/gateways/class.pmprogateway_stripe.php:448
 
 
5991
  msgid "Connected"
5992
  msgstr ""
5993
 
@@ -5995,6 +6073,8 @@ msgstr ""
5995
  #: classes/gateways/class.pmprogateway_stripe.php:442
5996
  #: classes/gateways/class.pmprogateway_stripe.php:362
5997
  #: classes/gateways/class.pmprogateway_stripe.php:452
 
 
5998
  msgid "Not Connected"
5999
  msgstr ""
6000
 
@@ -6002,11 +6082,14 @@ msgstr ""
6002
  #: classes/gateways/class.pmprogateway_stripe.php:449
6003
  #: classes/gateways/class.pmprogateway_stripe.php:369
6004
  #: classes/gateways/class.pmprogateway_stripe.php:459
 
 
6005
  msgid "Your site is using legacy API keys to authenticate with Stripe."
6006
  msgstr ""
6007
 
6008
  #: classes/gateways/class.pmprogateway_stripe.php:364
6009
  #: classes/gateways/class.pmprogateway_stripe.php:371
 
6010
  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."
6011
  msgstr ""
6012
 
@@ -6014,6 +6097,8 @@ msgstr ""
6014
  #: classes/gateways/class.pmprogateway_stripe.php:458
6015
  #: classes/gateways/class.pmprogateway_stripe.php:380
6016
  #: classes/gateways/class.pmprogateway_stripe.php:470
 
 
6017
  msgid "Stripe Connection:"
6018
  msgstr ""
6019
 
@@ -6021,11 +6106,14 @@ msgstr ""
6021
  #: classes/gateways/class.pmprogateway_stripe.php:482
6022
  #: classes/gateways/class.pmprogateway_stripe.php:396
6023
  #: classes/gateways/class.pmprogateway_stripe.php:494
 
 
6024
  msgid "Disconnect From Stripe"
6025
  msgstr ""
6026
 
6027
  #: classes/gateways/class.pmprogateway_stripe.php:389
6028
  #: classes/gateways/class.pmprogateway_stripe.php:397
 
6029
  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."
6030
  msgstr ""
6031
 
@@ -6033,16 +6121,20 @@ msgstr ""
6033
  #: classes/gateways/class.pmprogateway_stripe.php:496
6034
  #: classes/gateways/class.pmprogateway_stripe.php:409
6035
  #: classes/gateways/class.pmprogateway_stripe.php:508
 
 
6036
  msgid "Connect with Stripe"
6037
  msgstr ""
6038
 
6039
  #: classes/gateways/class.pmprogateway_stripe.php:408
6040
  #: classes/gateways/class.pmprogateway_stripe.php:416
 
6041
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
6042
  msgstr ""
6043
 
6044
  #: classes/gateways/class.pmprogateway_stripe.php:411
6045
  #: classes/gateways/class.pmprogateway_stripe.php:419
 
6046
  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."
6047
  msgstr ""
6048
 
@@ -6053,6 +6145,9 @@ msgstr ""
6053
  #: classes/gateways/class.pmprogateway_stripe.php:519
6054
  #: classes/gateways/class.pmprogateway_stripe.php:559
6055
  #: classes/gateways/class.pmprogateway_stripe.php:578
 
 
 
6056
  msgid "Webhook"
6057
  msgstr ""
6058
 
@@ -6063,32 +6158,40 @@ msgstr ""
6063
  #: classes/gateways/class.pmprogateway_stripe.php:523
6064
  #: classes/gateways/class.pmprogateway_stripe.php:594
6065
  #: classes/gateways/class.pmprogateway_stripe.php:613
 
 
 
6066
  msgid "Webhook URL"
6067
  msgstr ""
6068
 
6069
  #: classes/gateways/class.pmprogateway_stripe.php:438
6070
  #: classes/gateways/class.pmprogateway_stripe.php:446
 
6071
  msgid "Test Mode:"
6072
  msgstr ""
6073
 
6074
  #: classes/gateways/class.pmprogateway_stripe.php:450
6075
  #: classes/gateways/class.pmprogateway_stripe.php:461
 
6076
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
6077
  msgstr ""
6078
 
6079
  #: classes/gateways/class.pmprogateway_stripe.php:483
6080
  #: classes/gateways/class.pmprogateway_stripe.php:495
 
6081
  msgid "This will disconnect your site from Stripe in test mode only."
6082
  msgstr ""
6083
 
6084
  #: classes/gateways/class.pmprogateway_stripe.php:518
6085
  #: classes/gateways/class.pmprogateway_stripe.php:530
 
6086
  msgid "Stripe API Settings (Legacy)"
6087
  msgstr ""
6088
 
6089
  #: classes/gateways/class.pmprogateway_stripe.php:531
6090
  #: classes/gateways/class.pmprogateway_stripe.php:543
6091
  #: classes/gateways/class.pmprogateway_stripe.php:562
 
6092
  msgid "Your Publishable Key appears incorrect."
6093
  msgstr ""
6094
 
@@ -6098,24 +6201,29 @@ msgstr ""
6098
  #: classes/gateways/class.pmprogateway_stripe.php:587
6099
  #: classes/gateways/class.pmprogateway_stripe.php:582
6100
  #: classes/gateways/class.pmprogateway_stripe.php:606
 
 
6101
  msgid "Create Webhook"
6102
  msgstr ""
6103
 
6104
  #: classes/gateways/class.pmprogateway_stripe.php:557
6105
  #: classes/gateways/class.pmprogateway_stripe.php:569
6106
  #: classes/gateways/class.pmprogateway_stripe.php:588
 
6107
  msgid "A webhook is set up in Stripe, but it is disabled."
6108
  msgstr ""
6109
 
6110
  #: classes/gateways/class.pmprogateway_stripe.php:564
6111
  #: classes/gateways/class.pmprogateway_stripe.php:576
6112
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
6113
  msgid "A webhook is set up in Stripe, but it is using an old API version."
6114
  msgstr ""
6115
 
6116
  #: classes/gateways/class.pmprogateway_stripe.php:564
6117
  #: classes/gateways/class.pmprogateway_stripe.php:576
6118
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
6119
  msgid "Rebuild Webhook"
6120
  msgstr ""
6121
 
@@ -6128,12 +6236,16 @@ msgstr ""
6128
  #: classes/gateways/class.pmprogateway_stripe.php:601
6129
  #: classes/gateways/class.pmprogateway_stripe.php:741
6130
  #: classes/gateways/class.pmprogateway_stripe.php:857
 
 
 
6131
  msgid "Your webhook is enabled."
6132
  msgstr ""
6133
 
6134
  #: classes/gateways/class.pmprogateway_stripe.php:570
6135
  #: classes/gateways/class.pmprogateway_stripe.php:582
6136
  #: classes/gateways/class.pmprogateway_stripe.php:601
 
6137
  msgid "Disable Webhook"
6138
  msgstr ""
6139
 
@@ -6149,78 +6261,94 @@ msgstr ""
6149
  #: classes/gateways/class.pmprogateway_stripe.php:768
6150
  #: classes/gateways/class.pmprogateway_stripe.php:785
6151
  #: classes/gateways/class.pmprogateway_stripe.php:819
 
 
 
 
6152
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
6153
  msgstr ""
6154
 
6155
  #: classes/gateways/class.pmprogateway_stripe.php:589
6156
  #: classes/gateways/class.pmprogateway_stripe.php:601
6157
  #: classes/gateways/class.pmprogateway_stripe.php:620
 
6158
  msgid "Other Stripe Settings"
6159
  msgstr ""
6160
 
6161
  #: classes/gateways/class.pmprogateway_stripe.php:593
6162
  #: classes/gateways/class.pmprogateway_stripe.php:605
6163
  #: classes/gateways/class.pmprogateway_stripe.php:624
 
6164
  msgid "Stripe API Version"
6165
  msgstr ""
6166
 
6167
  #: classes/gateways/class.pmprogateway_stripe.php:598
6168
  #: classes/gateways/class.pmprogateway_stripe.php:610
6169
  #: classes/gateways/class.pmprogateway_stripe.php:629
 
6170
  msgid "Show Billing Address Fields"
6171
  msgstr ""
6172
 
6173
  #: classes/gateways/class.pmprogateway_stripe.php:607
6174
  #: classes/gateways/class.pmprogateway_stripe.php:619
6175
  #: classes/gateways/class.pmprogateway_stripe.php:638
 
6176
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
6177
  msgstr ""
6178
 
6179
  #: classes/gateways/class.pmprogateway_stripe.php:612
6180
  #: classes/gateways/class.pmprogateway_stripe.php:624
6181
  #: classes/gateways/class.pmprogateway_stripe.php:643
 
6182
  msgid "Enable Payment Request Button"
6183
  msgstr ""
6184
 
6185
  #: classes/gateways/class.pmprogateway_stripe.php:630
6186
  #: classes/gateways/class.pmprogateway_stripe.php:642
6187
  #: classes/gateways/class.pmprogateway_stripe.php:661
 
6188
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
6189
  msgstr ""
6190
 
6191
  #: classes/gateways/class.pmprogateway_stripe.php:643
6192
  #: classes/gateways/class.pmprogateway_stripe.php:655
6193
  #: classes/gateways/class.pmprogateway_stripe.php:674
 
6194
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
6195
  msgstr ""
6196
 
6197
  #: classes/gateways/class.pmprogateway_stripe.php:645
6198
  #: classes/gateways/class.pmprogateway_stripe.php:657
6199
  #: classes/gateways/class.pmprogateway_stripe.php:676
 
6200
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
6201
  msgstr ""
6202
 
6203
  #: classes/gateways/class.pmprogateway_stripe.php:647
6204
  #: classes/gateways/class.pmprogateway_stripe.php:659
6205
  #: classes/gateways/class.pmprogateway_stripe.php:678
 
6206
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
6207
  msgstr ""
6208
 
6209
  #: classes/gateways/class.pmprogateway_stripe.php:649
6210
  #: classes/gateways/class.pmprogateway_stripe.php:661
6211
  #: classes/gateways/class.pmprogateway_stripe.php:680
 
6212
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
6213
  msgstr ""
6214
 
6215
  #: classes/gateways/class.pmprogateway_stripe.php:674
6216
  #: classes/gateways/class.pmprogateway_stripe.php:686
6217
  #: classes/gateways/class.pmprogateway_stripe.php:705
 
6218
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
6219
  msgstr ""
6220
 
6221
  #: classes/gateways/class.pmprogateway_stripe.php:695
6222
  #: classes/gateways/class.pmprogateway_stripe.php:707
6223
  #: classes/gateways/class.pmprogateway_stripe.php:726
 
6224
  msgid "Webhook creation failed. You might already have a webhook set up."
6225
  msgstr ""
6226
 
@@ -6230,54 +6358,64 @@ msgstr ""
6230
  #: classes/gateways/class.pmprogateway_stripe.php:847
6231
  #: classes/gateways/class.pmprogateway_stripe.php:792
6232
  #: classes/gateways/class.pmprogateway_stripe.php:866
 
 
6233
  msgid "There was an error deleting the webhook."
6234
  msgstr ""
6235
 
6236
  #: classes/gateways/class.pmprogateway_stripe.php:811
6237
  #: classes/gateways/class.pmprogateway_stripe.php:823
6238
  #: classes/gateways/class.pmprogateway_stripe.php:842
 
6239
  msgid "Webhook creation failed. Please refresh and try again."
6240
  msgstr ""
6241
 
6242
  #: classes/gateways/class.pmprogateway_stripe.php:867
6243
  #: classes/gateways/class.pmprogateway_stripe.php:879
6244
  #: classes/gateways/class.pmprogateway_stripe.php:898
 
6245
  msgid "Verification steps confirmed. Your payment is processing."
6246
  msgstr ""
6247
 
6248
  #: classes/gateways/class.pmprogateway_stripe.php:1262
6249
  #: classes/gateways/class.pmprogateway_stripe.php:1274
6250
  #: classes/gateways/class.pmprogateway_stripe.php:1293
 
6251
  msgid "Pay with Credit Card"
6252
  msgstr ""
6253
 
6254
  #: classes/gateways/class.pmprogateway_stripe.php:1296
6255
  #: classes/gateways/class.pmprogateway_stripe.php:1308
6256
  #: classes/gateways/class.pmprogateway_stripe.php:1327
 
6257
  msgid "CVC"
6258
  msgstr ""
6259
 
6260
  #: classes/gateways/class.pmprogateway_stripe.php:1374
6261
  #: classes/gateways/class.pmprogateway_stripe.php:1386
6262
  #: classes/gateways/class.pmprogateway_stripe.php:1405
 
6263
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
6264
  msgstr ""
6265
 
6266
  #: classes/gateways/class.pmprogateway_stripe.php:1379
6267
  #: classes/gateways/class.pmprogateway_stripe.php:1391
6268
  #: classes/gateways/class.pmprogateway_stripe.php:1410
 
6269
  msgid "Subscription Updates"
6270
  msgstr ""
6271
 
6272
  #: classes/gateways/class.pmprogateway_stripe.php:1383
6273
  #: classes/gateways/class.pmprogateway_stripe.php:1395
6274
  #: classes/gateways/class.pmprogateway_stripe.php:1414
 
6275
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
6276
  msgstr ""
6277
 
6278
  #: classes/gateways/class.pmprogateway_stripe.php:1385
6279
  #: classes/gateways/class.pmprogateway_stripe.php:1397
6280
  #: classes/gateways/class.pmprogateway_stripe.php:1416
 
6281
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
6282
  msgstr ""
6283
 
@@ -6293,6 +6431,10 @@ msgstr ""
6293
  #: classes/gateways/class.pmprogateway_stripe.php:2016
6294
  #: classes/gateways/class.pmprogateway_stripe.php:2029
6295
  #: classes/gateways/class.pmprogateway_stripe.php:2033
 
 
 
 
6296
  msgid "Error: %s"
6297
  msgstr ""
6298
 
@@ -6302,24 +6444,29 @@ msgstr ""
6302
  #: classes/gateways/class.pmprogateway_stripe.php:2182
6303
  #: classes/gateways/class.pmprogateway_stripe.php:2196
6304
  #: classes/gateways/class.pmprogateway_stripe.php:2201
 
 
6305
  msgid "Error getting subscription with Stripe:"
6306
  msgstr ""
6307
 
6308
  #: classes/gateways/class.pmprogateway_stripe.php:2480
6309
  #: classes/gateways/class.pmprogateway_stripe.php:2492
6310
  #: classes/gateways/class.pmprogateway_stripe.php:2514
 
6311
  msgid "Could not cancel the old subscription. Updates have not been processed."
6312
  msgstr ""
6313
 
6314
  #: classes/gateways/class.pmprogateway_stripe.php:2632
6315
  #: classes/gateways/class.pmprogateway_stripe.php:2644
6316
  #: classes/gateways/class.pmprogateway_stripe.php:2666
 
6317
  msgid "Could not cancel old subscription."
6318
  msgstr ""
6319
 
6320
  #: classes/gateways/class.pmprogateway_stripe.php:2648
6321
  #: classes/gateways/class.pmprogateway_stripe.php:2660
6322
  #: classes/gateways/class.pmprogateway_stripe.php:2682
 
6323
  msgid "Could not find the customer."
6324
  msgstr ""
6325
 
@@ -6329,30 +6476,35 @@ msgstr ""
6329
  #: classes/gateways/class.pmprogateway_stripe.php:2834
6330
  #: classes/gateways/class.pmprogateway_stripe.php:2850
6331
  #: classes/gateways/class.pmprogateway_stripe.php:2856
 
6332
  msgid "Error: "
6333
  msgstr ""
6334
 
6335
  #: classes/gateways/class.pmprogateway_stripe.php:2836
6336
  #: classes/gateways/class.pmprogateway_stripe.php:2848
6337
  #: classes/gateways/class.pmprogateway_stripe.php:2870
 
6338
  msgid "Error: Unkown error while refunding charge #%s"
6339
  msgstr ""
6340
 
6341
  #: classes/gateways/class.pmprogateway_stripe.php:3330
6342
  #: classes/gateways/class.pmprogateway_stripe.php:3342
6343
  #: classes/gateways/class.pmprogateway_stripe.php:3364
 
6344
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
6345
  msgstr ""
6346
 
6347
  #: classes/gateways/class.pmprogateway_stripe.php:3347
6348
  #: classes/gateways/class.pmprogateway_stripe.php:3359
6349
  #: classes/gateways/class.pmprogateway_stripe.php:3381
 
6350
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
6351
  msgstr ""
6352
 
6353
  #: classes/gateways/class.pmprogateway_stripe.php:3533
6354
  #: classes/gateways/class.pmprogateway_stripe.php:3545
6355
  #: classes/gateways/class.pmprogateway_stripe.php:3567
 
6356
  msgid "Invalid response from the Stripe Connect server."
6357
  msgstr ""
6358
 
@@ -6360,6 +6512,7 @@ msgstr ""
6360
  #: classes/gateways/class.pmprogateway_stripe.php:3561
6361
  #: classes/gateways/class.pmprogateway_stripe.php:3573
6362
  #: classes/gateways/class.pmprogateway_stripe.php:3595
 
6363
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
6364
  msgstr ""
6365
 
@@ -6367,30 +6520,35 @@ msgstr ""
6367
  #: classes/gateways/class.pmprogateway_stripe.php:3597
6368
  #: classes/gateways/class.pmprogateway_stripe.php:3609
6369
  #: classes/gateways/class.pmprogateway_stripe.php:3631
 
6370
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
6371
  msgstr ""
6372
 
6373
  #: classes/gateways/class.pmprogateway_stripe.php:3768
6374
  #: classes/gateways/class.pmprogateway_stripe.php:3780
6375
  #: classes/gateways/class.pmprogateway_stripe.php:3802
 
6376
  msgid "Last webhook received at"
6377
  msgstr ""
6378
 
6379
  #: classes/gateways/class.pmprogateway_stripe.php:3770
6380
  #: classes/gateways/class.pmprogateway_stripe.php:3782
6381
  #: classes/gateways/class.pmprogateway_stripe.php:3804
 
6382
  msgid "No webhooks have been received."
6383
  msgstr ""
6384
 
6385
  #: classes/gateways/class.pmprogateway_stripe.php:3774
6386
  #: classes/gateways/class.pmprogateway_stripe.php:3786
6387
  #: classes/gateways/class.pmprogateway_stripe.php:3808
 
6388
  msgid "Your webhook may not be working correctly."
6389
  msgstr ""
6390
 
6391
  #: classes/gateways/class.pmprogateway_stripe.php:3776
6392
  #: classes/gateways/class.pmprogateway_stripe.php:3788
6393
  #: classes/gateways/class.pmprogateway_stripe.php:3810
 
6394
  msgid "Click here for info on setting up your webhook with Stripe."
6395
  msgstr ""
6396
 
@@ -8609,11 +8767,13 @@ msgstr ""
8609
 
8610
  #: includes/login.php:429
8611
  #: includes/profile.php:843
 
8612
  msgid "New passwords do not match."
8613
  msgstr ""
8614
 
8615
  #: includes/login.php:433
8616
  #: includes/profile.php:839
 
8617
  msgid "Please complete all fields."
8618
  msgstr ""
8619
 
@@ -8643,17 +8803,21 @@ msgstr ""
8643
 
8644
  #: includes/login.php:688
8645
  #: includes/profile.php:891
 
8646
  msgid "New Password"
8647
  msgstr ""
8648
 
8649
  #: includes/login.php:690
8650
  #: includes/profile.php:894
8651
  #: includes/scripts.php:86
 
 
8652
  msgid "Strength Indicator"
8653
  msgstr ""
8654
 
8655
  #: includes/login.php:694
8656
  #: includes/profile.php:898
 
8657
  msgid "Confirm New Password"
8658
  msgstr ""
8659
 
@@ -8754,21 +8918,25 @@ msgstr ""
8754
  #: includes/privacy.php:182
8755
  #: includes/profile.php:425
8756
  #: includes/profile.php:493
 
8757
  msgid "Level ID"
8758
  msgstr ""
8759
 
8760
  #: includes/privacy.php:190
8761
  #: includes/profile.php:496
 
8762
  msgid "Date Modified"
8763
  msgstr ""
8764
 
8765
  #: includes/privacy.php:194
8766
  #: includes/profile.php:497
 
8767
  msgid "End Date"
8768
  msgstr ""
8769
 
8770
  #: includes/privacy.php:198
8771
  #: includes/profile.php:498
 
8772
  msgid "Level Cost"
8773
  msgstr ""
8774
 
@@ -8877,68 +9045,85 @@ msgid "Membership Levels History"
8877
  msgstr ""
8878
 
8879
  #: includes/profile.php:485
 
8880
  msgid "No membership orders found."
8881
  msgstr ""
8882
 
8883
  #: includes/profile.php:537
 
8884
  msgid "No membership history found."
8885
  msgstr ""
8886
 
8887
  #: includes/profile.php:644
 
8888
  msgid "Log in to edit your profile."
8889
  msgstr ""
8890
 
8891
  #: includes/profile.php:679
 
8892
  msgid "Please enter a display name."
8893
  msgstr ""
8894
 
8895
  #: includes/profile.php:689
 
8896
  msgid "Please enter an email address."
8897
  msgstr ""
8898
 
8899
  #: includes/profile.php:691
 
8900
  msgid "The email address isn&#8217;t correct."
8901
  msgstr ""
8902
 
8903
  #: includes/profile.php:695
 
8904
  msgid "This email is already registered, please choose another one."
8905
  msgstr ""
8906
 
8907
  #: includes/profile.php:722
 
8908
  msgid "Your profile has been updated."
8909
  msgstr ""
8910
 
8911
  #: includes/profile.php:749
 
8912
  msgid "Display name publicly as"
8913
  msgstr ""
8914
 
8915
  #: includes/profile.php:762
 
8916
  msgid "Site administrators must use the WordPress dashboard to update their email address."
8917
  msgstr ""
8918
 
8919
  #: includes/profile.php:785
 
8920
  msgid "Update Profile"
8921
  msgstr ""
8922
 
8923
  #: includes/profile.php:841
 
8924
  msgid "Please enter your current password."
8925
  msgstr ""
8926
 
8927
  #: includes/profile.php:845
 
8928
  msgid "Your current password is incorrect."
8929
  msgstr ""
8930
 
8931
  #: includes/profile.php:856
 
8932
  msgid "Your password has been updated."
8933
  msgstr ""
8934
 
8935
  #: includes/profile.php:886
 
8936
  msgid "Current Password"
8937
  msgstr ""
8938
 
8939
  #: includes/profile.php:888
8940
  #: includes/profile.php:893
8941
  #: includes/profile.php:900
 
 
8942
  msgid "Required Field"
8943
  msgstr ""
8944
 
@@ -9101,10 +9286,12 @@ msgid "The %s code has been applied to your order. "
9101
  msgstr ""
9102
 
9103
  #: services/braintree-webhook.php:425
 
9104
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
9105
  msgstr ""
9106
 
9107
  #: services/braintree-webhook.php:427
 
9108
  msgid "A member's Braintree subscription has expired at %s"
9109
  msgstr ""
9110
 
@@ -9439,16 +9626,22 @@ msgstr ""
9439
 
9440
  #: classes/gateways/class.pmprogateway_stripe.php:360
9441
  #: classes/gateways/class.pmprogateway_stripe.php:450
 
 
9442
  msgid "Connected with Legacy Keys"
9443
  msgstr ""
9444
 
9445
  #: classes/gateways/class.pmprogateway_stripe.php:370
9446
  #: classes/gateways/class.pmprogateway_stripe.php:460
 
 
9447
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
9448
  msgstr ""
9449
 
9450
  #: classes/gateways/class.pmprogateway_stripe.php:372
9451
  #: classes/gateways/class.pmprogateway_stripe.php:462
 
 
9452
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
9453
  msgstr ""
9454
 
@@ -9505,13 +9698,49 @@ msgid "missing"
9505
  msgstr ""
9506
 
9507
  #: classes/gateways/class.pmprogateway_stripe.php:533
 
9508
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
9509
  msgstr ""
9510
 
9511
  #: classes/gateways/class.pmprogateway_stripe.php:534
 
9512
  msgid "Click here to use the legacy API settings."
9513
  msgstr ""
9514
 
9515
  #: paid-memberships-pro.php:194
9516
  msgid "Once a month"
9517
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.3\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-10-11T14:00:25+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
518
  #: adminpages/advancedsettings.php:479
519
  #: classes/gateways/class.pmprogateway_stripe.php:634
520
  #: classes/gateways/class.pmprogateway_stripe.php:648
521
+ #: classes/gateways/class.pmprogateway_stripe.php:640
522
+ #: classes/gateways/class.pmprogateway_stripe.php:654
523
  msgid "No"
524
  msgstr "No"
525
 
544
  #: adminpages/advancedsettings.php:397
545
  #: classes/gateways/class.pmprogateway_stripe.php:636
546
  #: classes/gateways/class.pmprogateway_stripe.php:650
547
+ #: classes/gateways/class.pmprogateway_stripe.php:642
548
+ #: classes/gateways/class.pmprogateway_stripe.php:656
549
  msgid "Yes"
550
  msgstr "Si"
551
 
682
  #: adminpages/orders.php:391
683
  #: adminpages/orders.php:1445
684
  #: adminpages/orders.php:1448
685
+ #: includes/profile.php:762
686
  msgid "Email"
687
  msgstr "Email"
688
 
963
  #: includes/privacy.php:186
964
  #: includes/profile.php:495
965
  #: adminpages/discountcodes.php:489
966
+ #: includes/profile.php:501
967
  msgid "Start Date"
968
  msgstr "Fecha de inicio"
969
 
978
  #: classes/gateways/class.pmprogateway_stripe.php:1301
979
  #: adminpages/discountcodes.php:507
980
  #: classes/gateways/class.pmprogateway_stripe.php:1320
981
+ #: classes/gateways/class.pmprogateway_stripe.php:1326
982
  msgid "Expiration Date"
983
  msgstr "Fecha de expiración"
984
 
1352
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1353
  #: adminpages/discountcodes.php:608
1354
  #: classes/gateways/class.pmprogateway_stripe.php:1497
1355
+ #: classes/gateways/class.pmprogateway_stripe.php:1503
1356
  msgid "per"
1357
  msgstr "por"
1358
 
1366
  #: adminpages/discountcodes.php:612
1367
  #: adminpages/discountcodes.php:699
1368
  #: classes/gateways/class.pmprogateway_stripe.php:1363
1369
+ #: classes/gateways/class.pmprogateway_stripe.php:1369
1370
  msgid "Day(s)"
1371
  msgstr "Día(s)"
1372
 
1380
  #: adminpages/discountcodes.php:612
1381
  #: adminpages/discountcodes.php:699
1382
  #: classes/gateways/class.pmprogateway_stripe.php:1364
1383
+ #: classes/gateways/class.pmprogateway_stripe.php:1370
1384
  msgid "Week(s)"
1385
  msgstr "Semana(s)"
1386
 
1394
  #: adminpages/discountcodes.php:612
1395
  #: adminpages/discountcodes.php:699
1396
  #: classes/gateways/class.pmprogateway_stripe.php:1365
1397
+ #: classes/gateways/class.pmprogateway_stripe.php:1371
1398
  msgid "Month(s)"
1399
  msgstr "Mes(es)"
1400
 
1408
  #: adminpages/discountcodes.php:612
1409
  #: adminpages/discountcodes.php:699
1410
  #: classes/gateways/class.pmprogateway_stripe.php:1366
1411
+ #: classes/gateways/class.pmprogateway_stripe.php:1372
1412
  msgid "Year(s)"
1413
  msgstr "Año(s)"
1414
 
1700
  #: adminpages/advancedsettings.php:316
1701
  #: includes/privacy.php:175
1702
  #: includes/profile.php:509
1703
+ #: includes/profile.php:515
1704
  msgid "Never"
1705
  msgstr "Nunca"
1706
 
1903
  #: adminpages/orders.php:679
1904
  #: classes/gateways/class.pmprogateway_stripe.php:1284
1905
  #: classes/gateways/class.pmprogateway_stripe.php:1303
1906
+ #: classes/gateways/class.pmprogateway_stripe.php:1309
1907
  msgid "Card Type"
1908
  msgstr "Tipo de tarjeta"
1909
 
1957
  #: adminpages/dashboard.php:294
1958
  #: adminpages/orders.php:742
1959
  #: adminpages/orders.php:1348
1960
+ #: includes/profile.php:505
1961
  msgid "Status"
1962
  msgstr "Estado"
1963
 
2090
  #: pages/cancel.php:96
2091
  #: shortcodes/pmpro_account.php:106
2092
  #: adminpages/orders.php:968
2093
+ #: includes/profile.php:798
2094
+ #: includes/profile.php:922
2095
  msgid "Cancel"
2096
  msgstr "Cancelar"
2097
 
2314
  #: classes/gateways/class.pmprogateway_paypal.php:153
2315
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
2316
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
2317
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:172
2318
  msgid "Gateway Account Email"
2319
  msgstr "Email de cuenta de la Pasarela "
2320
 
2323
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
2324
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
2325
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
2326
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:180
2327
  msgid "API Username"
2328
  msgstr "Nombre de usuario de API (API Username)"
2329
 
2332
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
2333
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
2334
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
2335
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:188
2336
  msgid "API Password"
2337
  msgstr "Contraseña de API (API Password)"
2338
 
2340
  #: classes/gateways/class.pmprogateway_paypal.php:177
2341
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
2342
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
2343
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:196
2344
  msgid "API Signature"
2345
  msgstr "Firma de API (API Signature)"
2346
 
2358
  #: classes/gateways/class.pmprogateway_stripe.php:539
2359
  #: classes/gateways/class.pmprogateway_stripe.php:551
2360
  #: classes/gateways/class.pmprogateway_stripe.php:570
2361
+ #: classes/gateways/class.pmprogateway_stripe.php:576
2362
  msgid "Secret Key"
2363
  msgstr "Llave secreta (Secret Key)"
2364
 
2366
  #: classes/gateways/class.pmprogateway_stripe.php:523
2367
  #: classes/gateways/class.pmprogateway_stripe.php:535
2368
  #: classes/gateways/class.pmprogateway_stripe.php:554
2369
+ #: classes/gateways/class.pmprogateway_stripe.php:560
2370
  msgid "Publishable Key"
2371
  msgstr "Llave publicable (Publishable Key)"
2372
 
2470
  #: classes/gateways/class.pmprogateway_paypal.php:196
2471
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
2472
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
2473
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:215
2474
  msgid "IPN Handler URL"
2475
  msgstr "IPN Handler URL"
2476
 
2477
  #: adminpages/paymentsettings.php:449
2478
  #: classes/gateways/class.pmprogateway_paypal.php:199
2479
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
2480
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:218
2481
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
2482
  msgstr "Para integrar completamente con Paypal, asegúrate de introducir tu IPN Handler URL a"
2483
 
2711
  #: classes/class.pmproemail.php:769
2712
  #: classes/class.pmproemail.php:771
2713
  #: classes/gateways/class.pmprogateway_stripe.php:1333
2714
+ #: classes/gateways/class.pmprogateway_stripe.php:1339
2715
  msgid "Discount Code"
2716
  msgstr "Cupón de descuento"
2717
 
2949
  #: classes/gateways/class.pmprogateway_stripe.php:2127
2950
  #: classes/gateways/class.pmprogateway_stripe.php:2132
2951
  #: classes/gateways/class.pmprogateway_stripe.php:2137
2952
+ #: classes/gateways/class.pmprogateway_stripe.php:2133
2953
+ #: classes/gateways/class.pmprogateway_stripe.php:2138
2954
+ #: classes/gateways/class.pmprogateway_stripe.php:2143
2955
  msgid "Error creating customer record with Stripe:"
2956
  msgstr "Error creando entrada para el cliente con Stripe:"
2957
 
2962
  #: classes/gateways/class.pmprogateway_stripe.php:2356
2963
  #: classes/gateways/class.pmprogateway_stripe.php:2373
2964
  #: classes/gateways/class.pmprogateway_stripe.php:2378
2965
+ #: classes/gateways/class.pmprogateway_stripe.php:2379
2966
+ #: classes/gateways/class.pmprogateway_stripe.php:2384
2967
  msgid "Error creating plan with Stripe:"
2968
  msgstr "Error creando plan con Stripe:"
2969
 
2974
  #: classes/gateways/class.pmprogateway_stripe.php:2401
2975
  #: classes/gateways/class.pmprogateway_stripe.php:2409
2976
  #: classes/gateways/class.pmprogateway_stripe.php:2423
2977
+ #: classes/gateways/class.pmprogateway_stripe.php:2415
2978
+ #: classes/gateways/class.pmprogateway_stripe.php:2429
2979
  msgid "Error subscribing customer to plan with Stripe:"
2980
  msgstr "Error subscribiendo al cliente al plan con Stripe:"
2981
 
3004
  #: adminpages/dashboard.php:224
3005
  #: adminpages/dashboard.php:292
3006
  #: adminpages/orders.php:1343
3007
+ #: includes/profile.php:500
3008
  msgid "Level"
3009
  msgstr "Nivel"
3010
 
3051
  #: includes/profile.php:872
3052
  #: includes/profile.php:909
3053
  #: shortcodes/pmpro_account.php:195
3054
+ #: includes/profile.php:884
3055
+ #: includes/profile.php:921
3056
  msgid "Change Password"
3057
  msgstr "Cambiar Contraseña"
3058
 
3117
  #: includes/profile.php:747
3118
  #: pages/billing.php:164
3119
  #: pages/checkout.php:234
3120
+ #: includes/profile.php:759
3121
  msgid "First Name"
3122
  msgstr "Nombre"
3123
 
3126
  #: includes/profile.php:748
3127
  #: pages/billing.php:168
3128
  #: pages/checkout.php:238
3129
+ #: includes/profile.php:760
3130
  msgid "Last Name"
3131
  msgstr "Apellidos"
3132
 
3221
  #: pages/checkout.php:389
3222
  #: classes/gateways/class.pmprogateway_stripe.php:1297
3223
  #: classes/gateways/class.pmprogateway_stripe.php:1316
3224
+ #: classes/gateways/class.pmprogateway_stripe.php:1322
3225
  msgid "Card Number"
3226
  msgstr "Número de la Tarjeta"
3227
 
3245
  #: pages/billing.php:425
3246
  #: classes/gateways/class.pmprogateway_stripe.php:1403
3247
  #: classes/gateways/class.pmprogateway_stripe.php:1422
3248
+ #: classes/gateways/class.pmprogateway_stripe.php:1428
3249
  msgid "Update"
3250
  msgstr "Actualizar"
3251
 
3317
  #: pages/checkout.php:432
3318
  #: classes/gateways/class.pmprogateway_stripe.php:1319
3319
  #: classes/gateways/class.pmprogateway_stripe.php:1338
3320
+ #: classes/gateways/class.pmprogateway_stripe.php:1344
3321
  msgid "Apply"
3322
  msgstr "Aplicar"
3323
 
3384
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
3385
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
3386
  #: pages/checkout.php:218
3387
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:498
3388
  msgid "Check Out with PayPal"
3389
  msgstr "pague con PayPal"
3390
 
3394
  #: pages/checkout.php:367
3395
  #: classes/gateways/class.pmprogateway_stripe.php:1264
3396
  #: classes/gateways/class.pmprogateway_stripe.php:1283
3397
+ #: classes/gateways/class.pmprogateway_stripe.php:1289
3398
  #, php-format
3399
  msgid "We Accept %s"
3400
  msgstr "Aceptamos %s"
3405
  #: pages/checkout.php:366
3406
  #: classes/gateways/class.pmprogateway_stripe.php:1263
3407
  #: classes/gateways/class.pmprogateway_stripe.php:1282
3408
+ #: classes/gateways/class.pmprogateway_stripe.php:1288
3409
  msgid "Payment Information"
3410
  msgstr "Información de pago"
3411
 
3419
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
3420
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
3421
  #: pages/checkout.php:526
3422
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
3423
  msgid "Submit and Check Out"
3424
  msgstr "Envíar y pagar"
3425
 
3429
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
3430
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
3431
  #: pages/checkout.php:526
3432
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
3433
  msgid "Submit and Confirm"
3434
  msgstr "Enviar y confirmar"
3435
 
3738
  #: preheaders/checkout.php:803
3739
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
3740
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
3741
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:352
3742
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:411
3743
  msgid "The PayPal Token was lost."
3744
  msgstr "El token de PayPal se ha perdido."
3745
 
3799
 
3800
  #: services/authnet-silent-post.php:133
3801
  #: services/authnet-silent-post.php:173
3802
+ #: services/authnet-silent-post.php:176
3803
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
3804
  msgstr "<p>Authorize.net ha congelado un pago y está revisandolo.</p><p>Información de pago de Authorize.net"
3805
 
3952
  #: adminpages/orders.php:1544
3953
  #: adminpages/orders.php:1554
3954
  #: adminpages/orders.php:1553
3955
+ #: includes/profile.php:520
3956
+ #: includes/profile.php:521
3957
+ #: includes/profile.php:522
3958
  msgid "N/A"
3959
  msgstr ""
3960
 
3989
 
3990
  #: adminpages/admin_header.php:152
3991
  #: classes/gateways/class.pmprogateway_stripe.php:76
3992
+ #: classes/gateways/class.pmprogateway_stripe.php:82
3993
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
3994
  msgstr ""
3995
 
4284
  #: adminpages/dashboard.php:174
4285
  #: adminpages/license.php:49
4286
  #: adminpages/dashboard.php:178
4287
+ #: adminpages/license.php:41
4288
  msgid "Your license is invalid or expired."
4289
  msgstr ""
4290
 
4296
  #: adminpages/dashboard.php:177
4297
  #: adminpages/license.php:51
4298
  #: adminpages/dashboard.php:181
4299
+ #: adminpages/license.php:43
4300
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
4301
  msgstr ""
4302
 
4793
  msgstr ""
4794
 
4795
  #: adminpages/license.php:43
4796
+ #: adminpages/license.php:33
4797
  msgid "Paid Memberships Pro Support License"
4798
  msgstr ""
4799
 
4800
  #: adminpages/license.php:47
4801
+ #: adminpages/license.php:39
4802
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
4803
  msgstr ""
4804
 
4805
  #: adminpages/license.php:49
4806
+ #: adminpages/license.php:37
4807
+ #: adminpages/license.php:41
4808
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
4809
  msgstr ""
4810
 
4811
  #: adminpages/license.php:59
4812
+ #: adminpages/license.php:51
4813
  msgid "Enter license key here..."
4814
  msgstr ""
4815
 
4816
  #: adminpages/license.php:61
4817
+ #: adminpages/license.php:53
4818
  msgid "Validate Key"
4819
  msgstr ""
4820
 
4821
  #: adminpages/license.php:95
4822
+ #: adminpages/license.php:87
4823
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
4824
  msgstr ""
4825
 
5617
 
5618
  #: classes/gateways/class.pmprogateway_braintree.php:87
5619
  #: classes/gateways/class.pmprogateway_stripe.php:91
5620
+ #: classes/gateways/class.pmprogateway_stripe.php:97
5621
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
5622
  msgstr ""
5623
 
5945
  msgstr ""
5946
 
5947
  #: classes/gateways/class.pmprogateway_cybersource.php:922
5948
+ #: includes/license.php:159
5949
  msgid "Unknown error."
5950
  msgstr ""
5951
 
5978
  #: classes/gateways/class.pmprogateway_paypal.php:132
5979
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
5980
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
5981
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:151
5982
  msgid "PayPal Settings"
5983
  msgstr ""
5984
 
5985
  #: classes/gateways/class.pmprogateway_paypal.php:146
5986
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
5987
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
5988
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:165
5989
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
5990
  msgstr ""
5991
 
5992
  #: classes/gateways/class.pmprogateway_paypal.php:185
5993
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
5994
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:204
5995
  msgid "Confirmation Step"
5996
  msgstr ""
5997
 
5998
  #: classes/gateways/class.pmprogateway_paypal.php:716
5999
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
6000
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
6001
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:841
6002
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
6003
  msgstr ""
6004
 
6005
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
6006
  #: paid-memberships-pro.php:160
6007
  #: paid-memberships-pro.php:162
6008
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:94
6009
  msgid "PayPal Express"
6010
  msgstr ""
6011
 
6012
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
6013
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:356
6014
  msgid "Checkout was already processed."
6015
  msgstr ""
6016
 
6017
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
6018
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:791
6019
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
6020
  msgstr ""
6021
 
6022
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
6023
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:792
6024
  msgid "Error creating plan with PayPal."
6025
  msgstr ""
6026
 
6041
  #: classes/gateways/class.pmprogateway_stripe.php:252
6042
  #: paid-memberships-pro.php:159
6043
  #: paid-memberships-pro.php:161
6044
+ #: classes/gateways/class.pmprogateway_stripe.php:258
6045
  msgid "Stripe"
6046
  msgstr ""
6047
 
6049
  #: classes/gateways/class.pmprogateway_stripe.php:436
6050
  #: classes/gateways/class.pmprogateway_stripe.php:354
6051
  #: classes/gateways/class.pmprogateway_stripe.php:444
6052
+ #: classes/gateways/class.pmprogateway_stripe.php:360
6053
+ #: classes/gateways/class.pmprogateway_stripe.php:450
6054
  msgid "Stripe Connect Settings"
6055
  msgstr ""
6056
 
6057
  #: classes/gateways/class.pmprogateway_stripe.php:352
6058
  #: classes/gateways/class.pmprogateway_stripe.php:356
6059
+ #: classes/gateways/class.pmprogateway_stripe.php:362
6060
  msgid "Live Mode:"
6061
  msgstr ""
6062
 
6064
  #: classes/gateways/class.pmprogateway_stripe.php:440
6065
  #: classes/gateways/class.pmprogateway_stripe.php:358
6066
  #: classes/gateways/class.pmprogateway_stripe.php:448
6067
+ #: classes/gateways/class.pmprogateway_stripe.php:364
6068
+ #: classes/gateways/class.pmprogateway_stripe.php:454
6069
  msgid "Connected"
6070
  msgstr ""
6071
 
6073
  #: classes/gateways/class.pmprogateway_stripe.php:442
6074
  #: classes/gateways/class.pmprogateway_stripe.php:362
6075
  #: classes/gateways/class.pmprogateway_stripe.php:452
6076
+ #: classes/gateways/class.pmprogateway_stripe.php:368
6077
+ #: classes/gateways/class.pmprogateway_stripe.php:458
6078
  msgid "Not Connected"
6079
  msgstr ""
6080
 
6082
  #: classes/gateways/class.pmprogateway_stripe.php:449
6083
  #: classes/gateways/class.pmprogateway_stripe.php:369
6084
  #: classes/gateways/class.pmprogateway_stripe.php:459
6085
+ #: classes/gateways/class.pmprogateway_stripe.php:375
6086
+ #: classes/gateways/class.pmprogateway_stripe.php:465
6087
  msgid "Your site is using legacy API keys to authenticate with Stripe."
6088
  msgstr ""
6089
 
6090
  #: classes/gateways/class.pmprogateway_stripe.php:364
6091
  #: classes/gateways/class.pmprogateway_stripe.php:371
6092
+ #: classes/gateways/class.pmprogateway_stripe.php:377
6093
  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."
6094
  msgstr ""
6095
 
6097
  #: classes/gateways/class.pmprogateway_stripe.php:458
6098
  #: classes/gateways/class.pmprogateway_stripe.php:380
6099
  #: classes/gateways/class.pmprogateway_stripe.php:470
6100
+ #: classes/gateways/class.pmprogateway_stripe.php:386
6101
+ #: classes/gateways/class.pmprogateway_stripe.php:476
6102
  msgid "Stripe Connection:"
6103
  msgstr ""
6104
 
6106
  #: classes/gateways/class.pmprogateway_stripe.php:482
6107
  #: classes/gateways/class.pmprogateway_stripe.php:396
6108
  #: classes/gateways/class.pmprogateway_stripe.php:494
6109
+ #: classes/gateways/class.pmprogateway_stripe.php:402
6110
+ #: classes/gateways/class.pmprogateway_stripe.php:500
6111
  msgid "Disconnect From Stripe"
6112
  msgstr ""
6113
 
6114
  #: classes/gateways/class.pmprogateway_stripe.php:389
6115
  #: classes/gateways/class.pmprogateway_stripe.php:397
6116
+ #: classes/gateways/class.pmprogateway_stripe.php:403
6117
  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."
6118
  msgstr ""
6119
 
6121
  #: classes/gateways/class.pmprogateway_stripe.php:496
6122
  #: classes/gateways/class.pmprogateway_stripe.php:409
6123
  #: classes/gateways/class.pmprogateway_stripe.php:508
6124
+ #: classes/gateways/class.pmprogateway_stripe.php:415
6125
+ #: classes/gateways/class.pmprogateway_stripe.php:514
6126
  msgid "Connect with Stripe"
6127
  msgstr ""
6128
 
6129
  #: classes/gateways/class.pmprogateway_stripe.php:408
6130
  #: classes/gateways/class.pmprogateway_stripe.php:416
6131
+ #: classes/gateways/class.pmprogateway_stripe.php:422
6132
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
6133
  msgstr ""
6134
 
6135
  #: classes/gateways/class.pmprogateway_stripe.php:411
6136
  #: classes/gateways/class.pmprogateway_stripe.php:419
6137
+ #: classes/gateways/class.pmprogateway_stripe.php:425
6138
  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."
6139
  msgstr ""
6140
 
6145
  #: classes/gateways/class.pmprogateway_stripe.php:519
6146
  #: classes/gateways/class.pmprogateway_stripe.php:559
6147
  #: classes/gateways/class.pmprogateway_stripe.php:578
6148
+ #: classes/gateways/class.pmprogateway_stripe.php:437
6149
+ #: classes/gateways/class.pmprogateway_stripe.php:525
6150
+ #: classes/gateways/class.pmprogateway_stripe.php:584
6151
  msgid "Webhook"
6152
  msgstr ""
6153
 
6158
  #: classes/gateways/class.pmprogateway_stripe.php:523
6159
  #: classes/gateways/class.pmprogateway_stripe.php:594
6160
  #: classes/gateways/class.pmprogateway_stripe.php:613
6161
+ #: classes/gateways/class.pmprogateway_stripe.php:441
6162
+ #: classes/gateways/class.pmprogateway_stripe.php:529
6163
+ #: classes/gateways/class.pmprogateway_stripe.php:619
6164
  msgid "Webhook URL"
6165
  msgstr ""
6166
 
6167
  #: classes/gateways/class.pmprogateway_stripe.php:438
6168
  #: classes/gateways/class.pmprogateway_stripe.php:446
6169
+ #: classes/gateways/class.pmprogateway_stripe.php:452
6170
  msgid "Test Mode:"
6171
  msgstr ""
6172
 
6173
  #: classes/gateways/class.pmprogateway_stripe.php:450
6174
  #: classes/gateways/class.pmprogateway_stripe.php:461
6175
+ #: classes/gateways/class.pmprogateway_stripe.php:467
6176
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
6177
  msgstr ""
6178
 
6179
  #: classes/gateways/class.pmprogateway_stripe.php:483
6180
  #: classes/gateways/class.pmprogateway_stripe.php:495
6181
+ #: classes/gateways/class.pmprogateway_stripe.php:501
6182
  msgid "This will disconnect your site from Stripe in test mode only."
6183
  msgstr ""
6184
 
6185
  #: classes/gateways/class.pmprogateway_stripe.php:518
6186
  #: classes/gateways/class.pmprogateway_stripe.php:530
6187
+ #: classes/gateways/class.pmprogateway_stripe.php:536
6188
  msgid "Stripe API Settings (Legacy)"
6189
  msgstr ""
6190
 
6191
  #: classes/gateways/class.pmprogateway_stripe.php:531
6192
  #: classes/gateways/class.pmprogateway_stripe.php:543
6193
  #: classes/gateways/class.pmprogateway_stripe.php:562
6194
+ #: classes/gateways/class.pmprogateway_stripe.php:568
6195
  msgid "Your Publishable Key appears incorrect."
6196
  msgstr ""
6197
 
6201
  #: classes/gateways/class.pmprogateway_stripe.php:587
6202
  #: classes/gateways/class.pmprogateway_stripe.php:582
6203
  #: classes/gateways/class.pmprogateway_stripe.php:606
6204
+ #: classes/gateways/class.pmprogateway_stripe.php:588
6205
+ #: classes/gateways/class.pmprogateway_stripe.php:612
6206
  msgid "Create Webhook"
6207
  msgstr ""
6208
 
6209
  #: classes/gateways/class.pmprogateway_stripe.php:557
6210
  #: classes/gateways/class.pmprogateway_stripe.php:569
6211
  #: classes/gateways/class.pmprogateway_stripe.php:588
6212
+ #: classes/gateways/class.pmprogateway_stripe.php:594
6213
  msgid "A webhook is set up in Stripe, but it is disabled."
6214
  msgstr ""
6215
 
6216
  #: classes/gateways/class.pmprogateway_stripe.php:564
6217
  #: classes/gateways/class.pmprogateway_stripe.php:576
6218
  #: classes/gateways/class.pmprogateway_stripe.php:595
6219
+ #: classes/gateways/class.pmprogateway_stripe.php:601
6220
  msgid "A webhook is set up in Stripe, but it is using an old API version."
6221
  msgstr ""
6222
 
6223
  #: classes/gateways/class.pmprogateway_stripe.php:564
6224
  #: classes/gateways/class.pmprogateway_stripe.php:576
6225
  #: classes/gateways/class.pmprogateway_stripe.php:595
6226
+ #: classes/gateways/class.pmprogateway_stripe.php:601
6227
  msgid "Rebuild Webhook"
6228
  msgstr ""
6229
 
6236
  #: classes/gateways/class.pmprogateway_stripe.php:601
6237
  #: classes/gateways/class.pmprogateway_stripe.php:741
6238
  #: classes/gateways/class.pmprogateway_stripe.php:857
6239
+ #: classes/gateways/class.pmprogateway_stripe.php:607
6240
+ #: classes/gateways/class.pmprogateway_stripe.php:747
6241
+ #: classes/gateways/class.pmprogateway_stripe.php:863
6242
  msgid "Your webhook is enabled."
6243
  msgstr ""
6244
 
6245
  #: classes/gateways/class.pmprogateway_stripe.php:570
6246
  #: classes/gateways/class.pmprogateway_stripe.php:582
6247
  #: classes/gateways/class.pmprogateway_stripe.php:601
6248
+ #: classes/gateways/class.pmprogateway_stripe.php:607
6249
  msgid "Disable Webhook"
6250
  msgstr ""
6251
 
6261
  #: classes/gateways/class.pmprogateway_stripe.php:768
6262
  #: classes/gateways/class.pmprogateway_stripe.php:785
6263
  #: classes/gateways/class.pmprogateway_stripe.php:819
6264
+ #: classes/gateways/class.pmprogateway_stripe.php:614
6265
+ #: classes/gateways/class.pmprogateway_stripe.php:774
6266
+ #: classes/gateways/class.pmprogateway_stripe.php:791
6267
+ #: classes/gateways/class.pmprogateway_stripe.php:825
6268
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
6269
  msgstr ""
6270
 
6271
  #: classes/gateways/class.pmprogateway_stripe.php:589
6272
  #: classes/gateways/class.pmprogateway_stripe.php:601
6273
  #: classes/gateways/class.pmprogateway_stripe.php:620
6274
+ #: classes/gateways/class.pmprogateway_stripe.php:626
6275
  msgid "Other Stripe Settings"
6276
  msgstr ""
6277
 
6278
  #: classes/gateways/class.pmprogateway_stripe.php:593
6279
  #: classes/gateways/class.pmprogateway_stripe.php:605
6280
  #: classes/gateways/class.pmprogateway_stripe.php:624
6281
+ #: classes/gateways/class.pmprogateway_stripe.php:630
6282
  msgid "Stripe API Version"
6283
  msgstr ""
6284
 
6285
  #: classes/gateways/class.pmprogateway_stripe.php:598
6286
  #: classes/gateways/class.pmprogateway_stripe.php:610
6287
  #: classes/gateways/class.pmprogateway_stripe.php:629
6288
+ #: classes/gateways/class.pmprogateway_stripe.php:635
6289
  msgid "Show Billing Address Fields"
6290
  msgstr ""
6291
 
6292
  #: classes/gateways/class.pmprogateway_stripe.php:607
6293
  #: classes/gateways/class.pmprogateway_stripe.php:619
6294
  #: classes/gateways/class.pmprogateway_stripe.php:638
6295
+ #: classes/gateways/class.pmprogateway_stripe.php:644
6296
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
6297
  msgstr ""
6298
 
6299
  #: classes/gateways/class.pmprogateway_stripe.php:612
6300
  #: classes/gateways/class.pmprogateway_stripe.php:624
6301
  #: classes/gateways/class.pmprogateway_stripe.php:643
6302
+ #: classes/gateways/class.pmprogateway_stripe.php:649
6303
  msgid "Enable Payment Request Button"
6304
  msgstr ""
6305
 
6306
  #: classes/gateways/class.pmprogateway_stripe.php:630
6307
  #: classes/gateways/class.pmprogateway_stripe.php:642
6308
  #: classes/gateways/class.pmprogateway_stripe.php:661
6309
+ #: classes/gateways/class.pmprogateway_stripe.php:667
6310
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
6311
  msgstr ""
6312
 
6313
  #: classes/gateways/class.pmprogateway_stripe.php:643
6314
  #: classes/gateways/class.pmprogateway_stripe.php:655
6315
  #: classes/gateways/class.pmprogateway_stripe.php:674
6316
+ #: classes/gateways/class.pmprogateway_stripe.php:680
6317
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
6318
  msgstr ""
6319
 
6320
  #: classes/gateways/class.pmprogateway_stripe.php:645
6321
  #: classes/gateways/class.pmprogateway_stripe.php:657
6322
  #: classes/gateways/class.pmprogateway_stripe.php:676
6323
+ #: classes/gateways/class.pmprogateway_stripe.php:682
6324
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
6325
  msgstr ""
6326
 
6327
  #: classes/gateways/class.pmprogateway_stripe.php:647
6328
  #: classes/gateways/class.pmprogateway_stripe.php:659
6329
  #: classes/gateways/class.pmprogateway_stripe.php:678
6330
+ #: classes/gateways/class.pmprogateway_stripe.php:684
6331
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
6332
  msgstr ""
6333
 
6334
  #: classes/gateways/class.pmprogateway_stripe.php:649
6335
  #: classes/gateways/class.pmprogateway_stripe.php:661
6336
  #: classes/gateways/class.pmprogateway_stripe.php:680
6337
+ #: classes/gateways/class.pmprogateway_stripe.php:686
6338
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
6339
  msgstr ""
6340
 
6341
  #: classes/gateways/class.pmprogateway_stripe.php:674
6342
  #: classes/gateways/class.pmprogateway_stripe.php:686
6343
  #: classes/gateways/class.pmprogateway_stripe.php:705
6344
+ #: classes/gateways/class.pmprogateway_stripe.php:711
6345
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
6346
  msgstr ""
6347
 
6348
  #: classes/gateways/class.pmprogateway_stripe.php:695
6349
  #: classes/gateways/class.pmprogateway_stripe.php:707
6350
  #: classes/gateways/class.pmprogateway_stripe.php:726
6351
+ #: classes/gateways/class.pmprogateway_stripe.php:732
6352
  msgid "Webhook creation failed. You might already have a webhook set up."
6353
  msgstr ""
6354
 
6358
  #: classes/gateways/class.pmprogateway_stripe.php:847
6359
  #: classes/gateways/class.pmprogateway_stripe.php:792
6360
  #: classes/gateways/class.pmprogateway_stripe.php:866
6361
+ #: classes/gateways/class.pmprogateway_stripe.php:798
6362
+ #: classes/gateways/class.pmprogateway_stripe.php:872
6363
  msgid "There was an error deleting the webhook."
6364
  msgstr ""
6365
 
6366
  #: classes/gateways/class.pmprogateway_stripe.php:811
6367
  #: classes/gateways/class.pmprogateway_stripe.php:823
6368
  #: classes/gateways/class.pmprogateway_stripe.php:842
6369
+ #: classes/gateways/class.pmprogateway_stripe.php:848
6370
  msgid "Webhook creation failed. Please refresh and try again."
6371
  msgstr ""
6372
 
6373
  #: classes/gateways/class.pmprogateway_stripe.php:867
6374
  #: classes/gateways/class.pmprogateway_stripe.php:879
6375
  #: classes/gateways/class.pmprogateway_stripe.php:898
6376
+ #: classes/gateways/class.pmprogateway_stripe.php:904
6377
  msgid "Verification steps confirmed. Your payment is processing."
6378
  msgstr ""
6379
 
6380
  #: classes/gateways/class.pmprogateway_stripe.php:1262
6381
  #: classes/gateways/class.pmprogateway_stripe.php:1274
6382
  #: classes/gateways/class.pmprogateway_stripe.php:1293
6383
+ #: classes/gateways/class.pmprogateway_stripe.php:1299
6384
  msgid "Pay with Credit Card"
6385
  msgstr ""
6386
 
6387
  #: classes/gateways/class.pmprogateway_stripe.php:1296
6388
  #: classes/gateways/class.pmprogateway_stripe.php:1308
6389
  #: classes/gateways/class.pmprogateway_stripe.php:1327
6390
+ #: classes/gateways/class.pmprogateway_stripe.php:1333
6391
  msgid "CVC"
6392
  msgstr ""
6393
 
6394
  #: classes/gateways/class.pmprogateway_stripe.php:1374
6395
  #: classes/gateways/class.pmprogateway_stripe.php:1386
6396
  #: classes/gateways/class.pmprogateway_stripe.php:1405
6397
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
6398
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
6399
  msgstr ""
6400
 
6401
  #: classes/gateways/class.pmprogateway_stripe.php:1379
6402
  #: classes/gateways/class.pmprogateway_stripe.php:1391
6403
  #: classes/gateways/class.pmprogateway_stripe.php:1410
6404
+ #: classes/gateways/class.pmprogateway_stripe.php:1416
6405
  msgid "Subscription Updates"
6406
  msgstr ""
6407
 
6408
  #: classes/gateways/class.pmprogateway_stripe.php:1383
6409
  #: classes/gateways/class.pmprogateway_stripe.php:1395
6410
  #: classes/gateways/class.pmprogateway_stripe.php:1414
6411
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
6412
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
6413
  msgstr ""
6414
 
6415
  #: classes/gateways/class.pmprogateway_stripe.php:1385
6416
  #: classes/gateways/class.pmprogateway_stripe.php:1397
6417
  #: classes/gateways/class.pmprogateway_stripe.php:1416
6418
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
6419
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
6420
  msgstr ""
6421
 
6431
  #: classes/gateways/class.pmprogateway_stripe.php:2016
6432
  #: classes/gateways/class.pmprogateway_stripe.php:2029
6433
  #: classes/gateways/class.pmprogateway_stripe.php:2033
6434
+ #: classes/gateways/class.pmprogateway_stripe.php:2018
6435
+ #: classes/gateways/class.pmprogateway_stripe.php:2022
6436
+ #: classes/gateways/class.pmprogateway_stripe.php:2035
6437
+ #: classes/gateways/class.pmprogateway_stripe.php:2039
6438
  msgid "Error: %s"
6439
  msgstr ""
6440
 
6444
  #: classes/gateways/class.pmprogateway_stripe.php:2182
6445
  #: classes/gateways/class.pmprogateway_stripe.php:2196
6446
  #: classes/gateways/class.pmprogateway_stripe.php:2201
6447
+ #: classes/gateways/class.pmprogateway_stripe.php:2202
6448
+ #: classes/gateways/class.pmprogateway_stripe.php:2207
6449
  msgid "Error getting subscription with Stripe:"
6450
  msgstr ""
6451
 
6452
  #: classes/gateways/class.pmprogateway_stripe.php:2480
6453
  #: classes/gateways/class.pmprogateway_stripe.php:2492
6454
  #: classes/gateways/class.pmprogateway_stripe.php:2514
6455
+ #: classes/gateways/class.pmprogateway_stripe.php:2520
6456
  msgid "Could not cancel the old subscription. Updates have not been processed."
6457
  msgstr ""
6458
 
6459
  #: classes/gateways/class.pmprogateway_stripe.php:2632
6460
  #: classes/gateways/class.pmprogateway_stripe.php:2644
6461
  #: classes/gateways/class.pmprogateway_stripe.php:2666
6462
+ #: classes/gateways/class.pmprogateway_stripe.php:2672
6463
  msgid "Could not cancel old subscription."
6464
  msgstr ""
6465
 
6466
  #: classes/gateways/class.pmprogateway_stripe.php:2648
6467
  #: classes/gateways/class.pmprogateway_stripe.php:2660
6468
  #: classes/gateways/class.pmprogateway_stripe.php:2682
6469
+ #: classes/gateways/class.pmprogateway_stripe.php:2688
6470
  msgid "Could not find the customer."
6471
  msgstr ""
6472
 
6476
  #: classes/gateways/class.pmprogateway_stripe.php:2834
6477
  #: classes/gateways/class.pmprogateway_stripe.php:2850
6478
  #: classes/gateways/class.pmprogateway_stripe.php:2856
6479
+ #: classes/gateways/class.pmprogateway_stripe.php:2862
6480
  msgid "Error: "
6481
  msgstr ""
6482
 
6483
  #: classes/gateways/class.pmprogateway_stripe.php:2836
6484
  #: classes/gateways/class.pmprogateway_stripe.php:2848
6485
  #: classes/gateways/class.pmprogateway_stripe.php:2870
6486
+ #: classes/gateways/class.pmprogateway_stripe.php:2876
6487
  msgid "Error: Unkown error while refunding charge #%s"
6488
  msgstr ""
6489
 
6490
  #: classes/gateways/class.pmprogateway_stripe.php:3330
6491
  #: classes/gateways/class.pmprogateway_stripe.php:3342
6492
  #: classes/gateways/class.pmprogateway_stripe.php:3364
6493
+ #: classes/gateways/class.pmprogateway_stripe.php:3370
6494
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
6495
  msgstr ""
6496
 
6497
  #: classes/gateways/class.pmprogateway_stripe.php:3347
6498
  #: classes/gateways/class.pmprogateway_stripe.php:3359
6499
  #: classes/gateways/class.pmprogateway_stripe.php:3381
6500
+ #: classes/gateways/class.pmprogateway_stripe.php:3387
6501
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
6502
  msgstr ""
6503
 
6504
  #: classes/gateways/class.pmprogateway_stripe.php:3533
6505
  #: classes/gateways/class.pmprogateway_stripe.php:3545
6506
  #: classes/gateways/class.pmprogateway_stripe.php:3567
6507
+ #: classes/gateways/class.pmprogateway_stripe.php:3573
6508
  msgid "Invalid response from the Stripe Connect server."
6509
  msgstr ""
6510
 
6512
  #: classes/gateways/class.pmprogateway_stripe.php:3561
6513
  #: classes/gateways/class.pmprogateway_stripe.php:3573
6514
  #: classes/gateways/class.pmprogateway_stripe.php:3595
6515
+ #: classes/gateways/class.pmprogateway_stripe.php:3601
6516
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
6517
  msgstr ""
6518
 
6520
  #: classes/gateways/class.pmprogateway_stripe.php:3597
6521
  #: classes/gateways/class.pmprogateway_stripe.php:3609
6522
  #: classes/gateways/class.pmprogateway_stripe.php:3631
6523
+ #: classes/gateways/class.pmprogateway_stripe.php:3637
6524
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
6525
  msgstr ""
6526
 
6527
  #: classes/gateways/class.pmprogateway_stripe.php:3768
6528
  #: classes/gateways/class.pmprogateway_stripe.php:3780
6529
  #: classes/gateways/class.pmprogateway_stripe.php:3802
6530
+ #: classes/gateways/class.pmprogateway_stripe.php:3808
6531
  msgid "Last webhook received at"
6532
  msgstr ""
6533
 
6534
  #: classes/gateways/class.pmprogateway_stripe.php:3770
6535
  #: classes/gateways/class.pmprogateway_stripe.php:3782
6536
  #: classes/gateways/class.pmprogateway_stripe.php:3804
6537
+ #: classes/gateways/class.pmprogateway_stripe.php:3810
6538
  msgid "No webhooks have been received."
6539
  msgstr ""
6540
 
6541
  #: classes/gateways/class.pmprogateway_stripe.php:3774
6542
  #: classes/gateways/class.pmprogateway_stripe.php:3786
6543
  #: classes/gateways/class.pmprogateway_stripe.php:3808
6544
+ #: classes/gateways/class.pmprogateway_stripe.php:3814
6545
  msgid "Your webhook may not be working correctly."
6546
  msgstr ""
6547
 
6548
  #: classes/gateways/class.pmprogateway_stripe.php:3776
6549
  #: classes/gateways/class.pmprogateway_stripe.php:3788
6550
  #: classes/gateways/class.pmprogateway_stripe.php:3810
6551
+ #: classes/gateways/class.pmprogateway_stripe.php:3816
6552
  msgid "Click here for info on setting up your webhook with Stripe."
6553
  msgstr ""
6554
 
8767
 
8768
  #: includes/login.php:429
8769
  #: includes/profile.php:843
8770
+ #: includes/profile.php:855
8771
  msgid "New passwords do not match."
8772
  msgstr ""
8773
 
8774
  #: includes/login.php:433
8775
  #: includes/profile.php:839
8776
+ #: includes/profile.php:851
8777
  msgid "Please complete all fields."
8778
  msgstr ""
8779
 
8803
 
8804
  #: includes/login.php:688
8805
  #: includes/profile.php:891
8806
+ #: includes/profile.php:903
8807
  msgid "New Password"
8808
  msgstr ""
8809
 
8810
  #: includes/login.php:690
8811
  #: includes/profile.php:894
8812
  #: includes/scripts.php:86
8813
+ #: includes/profile.php:906
8814
+ #: includes/scripts.php:85
8815
  msgid "Strength Indicator"
8816
  msgstr ""
8817
 
8818
  #: includes/login.php:694
8819
  #: includes/profile.php:898
8820
+ #: includes/profile.php:910
8821
  msgid "Confirm New Password"
8822
  msgstr ""
8823
 
8918
  #: includes/privacy.php:182
8919
  #: includes/profile.php:425
8920
  #: includes/profile.php:493
8921
+ #: includes/profile.php:499
8922
  msgid "Level ID"
8923
  msgstr ""
8924
 
8925
  #: includes/privacy.php:190
8926
  #: includes/profile.php:496
8927
+ #: includes/profile.php:502
8928
  msgid "Date Modified"
8929
  msgstr ""
8930
 
8931
  #: includes/privacy.php:194
8932
  #: includes/profile.php:497
8933
+ #: includes/profile.php:503
8934
  msgid "End Date"
8935
  msgstr ""
8936
 
8937
  #: includes/privacy.php:198
8938
  #: includes/profile.php:498
8939
+ #: includes/profile.php:504
8940
  msgid "Level Cost"
8941
  msgstr ""
8942
 
9045
  msgstr ""
9046
 
9047
  #: includes/profile.php:485
9048
+ #: includes/profile.php:488
9049
  msgid "No membership orders found."
9050
  msgstr ""
9051
 
9052
  #: includes/profile.php:537
9053
+ #: includes/profile.php:546
9054
  msgid "No membership history found."
9055
  msgstr ""
9056
 
9057
  #: includes/profile.php:644
9058
+ #: includes/profile.php:656
9059
  msgid "Log in to edit your profile."
9060
  msgstr ""
9061
 
9062
  #: includes/profile.php:679
9063
+ #: includes/profile.php:691
9064
  msgid "Please enter a display name."
9065
  msgstr ""
9066
 
9067
  #: includes/profile.php:689
9068
+ #: includes/profile.php:701
9069
  msgid "Please enter an email address."
9070
  msgstr ""
9071
 
9072
  #: includes/profile.php:691
9073
+ #: includes/profile.php:703
9074
  msgid "The email address isn&#8217;t correct."
9075
  msgstr ""
9076
 
9077
  #: includes/profile.php:695
9078
+ #: includes/profile.php:707
9079
  msgid "This email is already registered, please choose another one."
9080
  msgstr ""
9081
 
9082
  #: includes/profile.php:722
9083
+ #: includes/profile.php:734
9084
  msgid "Your profile has been updated."
9085
  msgstr ""
9086
 
9087
  #: includes/profile.php:749
9088
+ #: includes/profile.php:761
9089
  msgid "Display name publicly as"
9090
  msgstr ""
9091
 
9092
  #: includes/profile.php:762
9093
+ #: includes/profile.php:774
9094
  msgid "Site administrators must use the WordPress dashboard to update their email address."
9095
  msgstr ""
9096
 
9097
  #: includes/profile.php:785
9098
+ #: includes/profile.php:797
9099
  msgid "Update Profile"
9100
  msgstr ""
9101
 
9102
  #: includes/profile.php:841
9103
+ #: includes/profile.php:853
9104
  msgid "Please enter your current password."
9105
  msgstr ""
9106
 
9107
  #: includes/profile.php:845
9108
+ #: includes/profile.php:857
9109
  msgid "Your current password is incorrect."
9110
  msgstr ""
9111
 
9112
  #: includes/profile.php:856
9113
+ #: includes/profile.php:868
9114
  msgid "Your password has been updated."
9115
  msgstr ""
9116
 
9117
  #: includes/profile.php:886
9118
+ #: includes/profile.php:898
9119
  msgid "Current Password"
9120
  msgstr ""
9121
 
9122
  #: includes/profile.php:888
9123
  #: includes/profile.php:893
9124
  #: includes/profile.php:900
9125
+ #: includes/profile.php:905
9126
+ #: includes/profile.php:912
9127
  msgid "Required Field"
9128
  msgstr ""
9129
 
9286
  msgstr ""
9287
 
9288
  #: services/braintree-webhook.php:425
9289
+ #: services/braintree-webhook.php:426
9290
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
9291
  msgstr ""
9292
 
9293
  #: services/braintree-webhook.php:427
9294
+ #: services/braintree-webhook.php:428
9295
  msgid "A member's Braintree subscription has expired at %s"
9296
  msgstr ""
9297
 
9626
 
9627
  #: classes/gateways/class.pmprogateway_stripe.php:360
9628
  #: classes/gateways/class.pmprogateway_stripe.php:450
9629
+ #: classes/gateways/class.pmprogateway_stripe.php:366
9630
+ #: classes/gateways/class.pmprogateway_stripe.php:456
9631
  msgid "Connected with Legacy Keys"
9632
  msgstr ""
9633
 
9634
  #: classes/gateways/class.pmprogateway_stripe.php:370
9635
  #: classes/gateways/class.pmprogateway_stripe.php:460
9636
+ #: classes/gateways/class.pmprogateway_stripe.php:376
9637
+ #: classes/gateways/class.pmprogateway_stripe.php:466
9638
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
9639
  msgstr ""
9640
 
9641
  #: classes/gateways/class.pmprogateway_stripe.php:372
9642
  #: classes/gateways/class.pmprogateway_stripe.php:462
9643
+ #: classes/gateways/class.pmprogateway_stripe.php:378
9644
+ #: classes/gateways/class.pmprogateway_stripe.php:468
9645
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
9646
  msgstr ""
9647
 
9698
  msgstr ""
9699
 
9700
  #: classes/gateways/class.pmprogateway_stripe.php:533
9701
+ #: classes/gateways/class.pmprogateway_stripe.php:539
9702
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
9703
  msgstr ""
9704
 
9705
  #: classes/gateways/class.pmprogateway_stripe.php:534
9706
+ #: classes/gateways/class.pmprogateway_stripe.php:540
9707
  msgid "Click here to use the legacy API settings."
9708
  msgstr ""
9709
 
9710
  #: paid-memberships-pro.php:194
9711
  msgid "Once a month"
9712
  msgstr ""
9713
+
9714
+ #: adminpages/license.php:37
9715
+ msgid "There was an issue validating your license key: %s"
9716
+ msgstr ""
9717
+
9718
+ #: includes/email-templates.php:172
9719
+ msgid ""
9720
+ "<p>There was a new member checkout at !!sitename!!.</p>\n"
9721
+ "\n"
9722
+ "<p><strong>They have chosen to pay by check.</strong></p>\n"
9723
+ "\n"
9724
+ "<p>Below are details about the new membership account and a receipt for the initial membership invoice.</p>\n"
9725
+ "\n"
9726
+ "<p>Account: !!display_name!! (!!user_email!!)</p>\n"
9727
+ "<p>Membership Level: !!membership_level_name!!</p>\n"
9728
+ "<p>Membership Fee: !!membership_cost!!</p>\n"
9729
+ "!!membership_expiration!! !!discount_code!!\n"
9730
+ "\n"
9731
+ "<p>\n"
9732
+ "\tInvoice #!!invoice_id!! on !!invoice_date!!<br />\n"
9733
+ "\tTotal Billed: !!invoice_total!!\n"
9734
+ "</p>\n"
9735
+ "\n"
9736
+ "<p>Log in to your membership account here: !!login_url!!</p>"
9737
+ msgstr ""
9738
+
9739
+ #: includes/license.php:112
9740
+ msgid "Missing key."
9741
+ msgstr ""
9742
+
9743
+ #: shortcodes/pmpro_account.php:145
9744
+ msgctxt "A dash is shown when there is no expiration date."
9745
+ msgid "&#8212;"
9746
+ msgstr ""
languages/paid-memberships-pro-es_PE.mo CHANGED
Binary file
languages/paid-memberships-pro-es_PE.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.2\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-09-17T13:57:15+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -498,6 +498,8 @@ msgstr "Expira"
498
  #: adminpages/advancedsettings.php:479
499
  #: classes/gateways/class.pmprogateway_stripe.php:634
500
  #: classes/gateways/class.pmprogateway_stripe.php:648
 
 
501
  msgid "No"
502
  msgstr "No"
503
 
@@ -522,6 +524,8 @@ msgstr "No"
522
  #: adminpages/advancedsettings.php:397
523
  #: classes/gateways/class.pmprogateway_stripe.php:636
524
  #: classes/gateways/class.pmprogateway_stripe.php:650
 
 
525
  msgid "Yes"
526
  msgstr "Si"
527
 
@@ -658,6 +662,7 @@ msgstr "Pasarela de pagos &amp; SSL"
658
  #: adminpages/orders.php:391
659
  #: adminpages/orders.php:1445
660
  #: adminpages/orders.php:1448
 
661
  msgid "Email"
662
  msgstr "Email"
663
 
@@ -938,6 +943,7 @@ msgstr "Cupón"
938
  #: includes/privacy.php:186
939
  #: includes/profile.php:495
940
  #: adminpages/discountcodes.php:489
 
941
  msgid "Start Date"
942
  msgstr "Fecha de inicio"
943
 
@@ -952,6 +958,7 @@ msgstr "Fecha de inicio"
952
  #: classes/gateways/class.pmprogateway_stripe.php:1301
953
  #: adminpages/discountcodes.php:507
954
  #: classes/gateways/class.pmprogateway_stripe.php:1320
 
955
  msgid "Expiration Date"
956
  msgstr "Fecha de expiración"
957
 
@@ -1325,6 +1332,7 @@ msgstr "Cantidad a facturar"
1325
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1326
  #: adminpages/discountcodes.php:608
1327
  #: classes/gateways/class.pmprogateway_stripe.php:1497
 
1328
  msgid "per"
1329
  msgstr "por"
1330
 
@@ -1338,6 +1346,7 @@ msgstr "por"
1338
  #: adminpages/discountcodes.php:612
1339
  #: adminpages/discountcodes.php:699
1340
  #: classes/gateways/class.pmprogateway_stripe.php:1363
 
1341
  msgid "Day(s)"
1342
  msgstr "Día(s)"
1343
 
@@ -1351,6 +1360,7 @@ msgstr "Día(s)"
1351
  #: adminpages/discountcodes.php:612
1352
  #: adminpages/discountcodes.php:699
1353
  #: classes/gateways/class.pmprogateway_stripe.php:1364
 
1354
  msgid "Week(s)"
1355
  msgstr "Semana(s)"
1356
 
@@ -1364,6 +1374,7 @@ msgstr "Semana(s)"
1364
  #: adminpages/discountcodes.php:612
1365
  #: adminpages/discountcodes.php:699
1366
  #: classes/gateways/class.pmprogateway_stripe.php:1365
 
1367
  msgid "Month(s)"
1368
  msgstr "Mes(es)"
1369
 
@@ -1377,6 +1388,7 @@ msgstr "Mes(es)"
1377
  #: adminpages/discountcodes.php:612
1378
  #: adminpages/discountcodes.php:699
1379
  #: classes/gateways/class.pmprogateway_stripe.php:1366
 
1380
  msgid "Year(s)"
1381
  msgstr "Año(s)"
1382
 
@@ -1668,6 +1680,7 @@ msgstr "Se unió"
1668
  #: adminpages/advancedsettings.php:316
1669
  #: includes/privacy.php:175
1670
  #: includes/profile.php:509
 
1671
  msgid "Never"
1672
  msgstr "Nunca"
1673
 
@@ -1870,6 +1883,7 @@ msgstr "p.ej. PayPal Express, PayPal Standard, Credit Card."
1870
  #: adminpages/orders.php:679
1871
  #: classes/gateways/class.pmprogateway_stripe.php:1284
1872
  #: classes/gateways/class.pmprogateway_stripe.php:1303
 
1873
  msgid "Card Type"
1874
  msgstr "Tipo de tarjeta"
1875
 
@@ -1923,6 +1937,7 @@ msgstr "Año de expiración"
1923
  #: adminpages/dashboard.php:294
1924
  #: adminpages/orders.php:742
1925
  #: adminpages/orders.php:1348
 
1926
  msgid "Status"
1927
  msgstr "Estado"
1928
 
@@ -2055,6 +2070,8 @@ msgstr "Guardar pago"
2055
  #: pages/cancel.php:96
2056
  #: shortcodes/pmpro_account.php:106
2057
  #: adminpages/orders.php:968
 
 
2058
  msgid "Cancel"
2059
  msgstr "Cancelar"
2060
 
@@ -2277,6 +2294,7 @@ msgstr "Contraseña"
2277
  #: classes/gateways/class.pmprogateway_paypal.php:153
2278
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
2279
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
 
2280
  msgid "Gateway Account Email"
2281
  msgstr "Email de cuenta de la Pasarela "
2282
 
@@ -2285,6 +2303,7 @@ msgstr "Email de cuenta de la Pasarela "
2285
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
2286
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
2287
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
 
2288
  msgid "API Username"
2289
  msgstr "Nombre de usuario de API (API Username)"
2290
 
@@ -2293,6 +2312,7 @@ msgstr "Nombre de usuario de API (API Username)"
2293
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
2294
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
2295
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
 
2296
  msgid "API Password"
2297
  msgstr "Contraseña de API (API Password)"
2298
 
@@ -2300,6 +2320,7 @@ msgstr "Contraseña de API (API Password)"
2300
  #: classes/gateways/class.pmprogateway_paypal.php:177
2301
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
2302
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
 
2303
  msgid "API Signature"
2304
  msgstr "Firma de API (API Signature)"
2305
 
@@ -2317,6 +2338,7 @@ msgstr "Llave de transaccion (Transaction Key)"
2317
  #: classes/gateways/class.pmprogateway_stripe.php:539
2318
  #: classes/gateways/class.pmprogateway_stripe.php:551
2319
  #: classes/gateways/class.pmprogateway_stripe.php:570
 
2320
  msgid "Secret Key"
2321
  msgstr "Llave secreta (Secret Key)"
2322
 
@@ -2324,6 +2346,7 @@ msgstr "Llave secreta (Secret Key)"
2324
  #: classes/gateways/class.pmprogateway_stripe.php:523
2325
  #: classes/gateways/class.pmprogateway_stripe.php:535
2326
  #: classes/gateways/class.pmprogateway_stripe.php:554
 
2327
  msgid "Publishable Key"
2328
  msgstr "Llave publicable (Publishable Key)"
2329
 
@@ -2427,12 +2450,14 @@ msgstr "Usar la \"Opción Nuclear\" para usar URLs seguras (HTTPS) en tus págin
2427
  #: classes/gateways/class.pmprogateway_paypal.php:196
2428
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
2429
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
 
2430
  msgid "IPN Handler URL"
2431
  msgstr "IPN Handler URL"
2432
 
2433
  #: adminpages/paymentsettings.php:449
2434
  #: classes/gateways/class.pmprogateway_paypal.php:199
2435
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
 
2436
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
2437
  msgstr "Para integrar completamente con Paypal, asegúrate de introducir tu IPN Handler URL a"
2438
 
@@ -2666,6 +2691,7 @@ msgstr "Confirmación de membresía para %s"
2666
  #: classes/class.pmproemail.php:769
2667
  #: classes/class.pmproemail.php:771
2668
  #: classes/gateways/class.pmprogateway_stripe.php:1333
 
2669
  msgid "Discount Code"
2670
  msgstr "Cupón de descuento"
2671
 
@@ -2903,6 +2929,9 @@ msgstr "Se realizó un pago parcial que hemos podido devolver. Por favor contact
2903
  #: classes/gateways/class.pmprogateway_stripe.php:2127
2904
  #: classes/gateways/class.pmprogateway_stripe.php:2132
2905
  #: classes/gateways/class.pmprogateway_stripe.php:2137
 
 
 
2906
  msgid "Error creating customer record with Stripe:"
2907
  msgstr "Error creando entrada para el cliente con Stripe:"
2908
 
@@ -2913,6 +2942,8 @@ msgstr "Error creando entrada para el cliente con Stripe:"
2913
  #: classes/gateways/class.pmprogateway_stripe.php:2356
2914
  #: classes/gateways/class.pmprogateway_stripe.php:2373
2915
  #: classes/gateways/class.pmprogateway_stripe.php:2378
 
 
2916
  msgid "Error creating plan with Stripe:"
2917
  msgstr "Error creando plan con Stripe:"
2918
 
@@ -2923,6 +2954,8 @@ msgstr "Error creando plan con Stripe:"
2923
  #: classes/gateways/class.pmprogateway_stripe.php:2401
2924
  #: classes/gateways/class.pmprogateway_stripe.php:2409
2925
  #: classes/gateways/class.pmprogateway_stripe.php:2423
 
 
2926
  msgid "Error subscribing customer to plan with Stripe:"
2927
  msgstr "Error subscribiendo al cliente al plan con Stripe:"
2928
 
@@ -2951,6 +2984,7 @@ msgstr "Tu membresía esta <strong>activa</strong>."
2951
  #: adminpages/dashboard.php:224
2952
  #: adminpages/dashboard.php:292
2953
  #: adminpages/orders.php:1343
 
2954
  msgid "Level"
2955
  msgstr "Nivel"
2956
 
@@ -2997,6 +3031,8 @@ msgstr "Editar Perfil"
2997
  #: includes/profile.php:872
2998
  #: includes/profile.php:909
2999
  #: shortcodes/pmpro_account.php:195
 
 
3000
  msgid "Change Password"
3001
  msgstr "Cambiar Contraseña"
3002
 
@@ -3061,6 +3097,7 @@ msgstr "Tu subscripción de pago es gestionada por Paypal. Por favor <a href=\"h
3061
  #: includes/profile.php:747
3062
  #: pages/billing.php:164
3063
  #: pages/checkout.php:234
 
3064
  msgid "First Name"
3065
  msgstr "Nombre"
3066
 
@@ -3069,6 +3106,7 @@ msgstr "Nombre"
3069
  #: includes/profile.php:748
3070
  #: pages/billing.php:168
3071
  #: pages/checkout.php:238
 
3072
  msgid "Last Name"
3073
  msgstr "Apellidos"
3074
 
@@ -3163,6 +3201,7 @@ msgstr "Información de la tarjeta de crédito"
3163
  #: pages/checkout.php:389
3164
  #: classes/gateways/class.pmprogateway_stripe.php:1297
3165
  #: classes/gateways/class.pmprogateway_stripe.php:1316
 
3166
  msgid "Card Number"
3167
  msgstr "Número de la Tarjeta"
3168
 
@@ -3186,6 +3225,7 @@ msgstr "¿Que es esto?"
3186
  #: pages/billing.php:425
3187
  #: classes/gateways/class.pmprogateway_stripe.php:1403
3188
  #: classes/gateways/class.pmprogateway_stripe.php:1422
 
3189
  msgid "Update"
3190
  msgstr "Actualizar"
3191
 
@@ -3257,6 +3297,7 @@ msgstr "Haz click aquí para introducir tu cupón de descuento"
3257
  #: pages/checkout.php:432
3258
  #: classes/gateways/class.pmprogateway_stripe.php:1319
3259
  #: classes/gateways/class.pmprogateway_stripe.php:1338
 
3260
  msgid "Apply"
3261
  msgstr "Aplicar"
3262
 
@@ -3323,6 +3364,7 @@ msgstr "Pague con su tarjeta de crédito aquí"
3323
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
3324
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
3325
  #: pages/checkout.php:218
 
3326
  msgid "Check Out with PayPal"
3327
  msgstr "pague con PayPal"
3328
 
@@ -3332,6 +3374,7 @@ msgstr "pague con PayPal"
3332
  #: pages/checkout.php:367
3333
  #: classes/gateways/class.pmprogateway_stripe.php:1264
3334
  #: classes/gateways/class.pmprogateway_stripe.php:1283
 
3335
  #, php-format
3336
  msgid "We Accept %s"
3337
  msgstr "Aceptamos %s"
@@ -3342,6 +3385,7 @@ msgstr "Aceptamos %s"
3342
  #: pages/checkout.php:366
3343
  #: classes/gateways/class.pmprogateway_stripe.php:1263
3344
  #: classes/gateways/class.pmprogateway_stripe.php:1282
 
3345
  msgid "Payment Information"
3346
  msgstr "Información de pago"
3347
 
@@ -3355,6 +3399,7 @@ msgstr "Completa el pago"
3355
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
3356
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
3357
  #: pages/checkout.php:526
 
3358
  msgid "Submit and Check Out"
3359
  msgstr "Envíar y pagar"
3360
 
@@ -3364,6 +3409,7 @@ msgstr "Envíar y pagar"
3364
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
3365
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
3366
  #: pages/checkout.php:526
 
3367
  msgid "Submit and Confirm"
3368
  msgstr "Enviar y confirmar"
3369
 
@@ -3672,6 +3718,8 @@ msgstr "Error desconocido generando tu cuenta. Por favor contactanos para que po
3672
  #: preheaders/checkout.php:803
3673
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
3674
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
 
 
3675
  msgid "The PayPal Token was lost."
3676
  msgstr "El token de PayPal se ha perdido."
3677
 
@@ -3731,6 +3779,7 @@ msgstr "El cupón <strong>%s</strong> ha sido aplicado a tu pago."
3731
 
3732
  #: services/authnet-silent-post.php:133
3733
  #: services/authnet-silent-post.php:173
 
3734
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
3735
  msgstr "<p>Authorize.net ha congelado un pago y está revisandolo.</p><p>Información de pago de Authorize.net"
3736
 
@@ -3883,6 +3932,9 @@ msgstr ""
3883
  #: adminpages/orders.php:1544
3884
  #: adminpages/orders.php:1554
3885
  #: adminpages/orders.php:1553
 
 
 
3886
  msgid "N/A"
3887
  msgstr ""
3888
 
@@ -3917,6 +3969,7 @@ msgstr ""
3917
 
3918
  #: adminpages/admin_header.php:152
3919
  #: classes/gateways/class.pmprogateway_stripe.php:76
 
3920
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
3921
  msgstr ""
3922
 
@@ -4211,6 +4264,7 @@ msgstr ""
4211
  #: adminpages/dashboard.php:174
4212
  #: adminpages/license.php:49
4213
  #: adminpages/dashboard.php:178
 
4214
  msgid "Your license is invalid or expired."
4215
  msgstr ""
4216
 
@@ -4222,6 +4276,7 @@ msgstr ""
4222
  #: adminpages/dashboard.php:177
4223
  #: adminpages/license.php:51
4224
  #: adminpages/dashboard.php:181
 
4225
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
4226
  msgstr ""
4227
 
@@ -4718,26 +4773,33 @@ msgid "Your license key has been validated."
4718
  msgstr ""
4719
 
4720
  #: adminpages/license.php:43
 
4721
  msgid "Paid Memberships Pro Support License"
4722
  msgstr ""
4723
 
4724
  #: adminpages/license.php:47
 
4725
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
4726
  msgstr ""
4727
 
4728
  #: adminpages/license.php:49
 
 
4729
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
4730
  msgstr ""
4731
 
4732
  #: adminpages/license.php:59
 
4733
  msgid "Enter license key here..."
4734
  msgstr ""
4735
 
4736
  #: adminpages/license.php:61
 
4737
  msgid "Validate Key"
4738
  msgstr ""
4739
 
4740
  #: adminpages/license.php:95
 
4741
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
4742
  msgstr ""
4743
 
@@ -5535,6 +5597,7 @@ msgstr ""
5535
 
5536
  #: classes/gateways/class.pmprogateway_braintree.php:87
5537
  #: classes/gateways/class.pmprogateway_stripe.php:91
 
5538
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
5539
  msgstr ""
5540
 
@@ -5862,6 +5925,7 @@ msgid "Your order has been refused."
5862
  msgstr ""
5863
 
5864
  #: classes/gateways/class.pmprogateway_cybersource.php:922
 
5865
  msgid "Unknown error."
5866
  msgstr ""
5867
 
@@ -5894,41 +5958,49 @@ msgstr ""
5894
  #: classes/gateways/class.pmprogateway_paypal.php:132
5895
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
5896
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
 
5897
  msgid "PayPal Settings"
5898
  msgstr ""
5899
 
5900
  #: classes/gateways/class.pmprogateway_paypal.php:146
5901
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
5902
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
 
5903
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
5904
  msgstr ""
5905
 
5906
  #: classes/gateways/class.pmprogateway_paypal.php:185
5907
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
 
5908
  msgid "Confirmation Step"
5909
  msgstr ""
5910
 
5911
  #: classes/gateways/class.pmprogateway_paypal.php:716
5912
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
5913
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
 
5914
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
5915
  msgstr ""
5916
 
5917
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
5918
  #: paid-memberships-pro.php:160
5919
  #: paid-memberships-pro.php:162
 
5920
  msgid "PayPal Express"
5921
  msgstr ""
5922
 
5923
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
 
5924
  msgid "Checkout was already processed."
5925
  msgstr ""
5926
 
5927
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
 
5928
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
5929
  msgstr ""
5930
 
5931
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
 
5932
  msgid "Error creating plan with PayPal."
5933
  msgstr ""
5934
 
@@ -5949,6 +6021,7 @@ msgstr ""
5949
  #: classes/gateways/class.pmprogateway_stripe.php:252
5950
  #: paid-memberships-pro.php:159
5951
  #: paid-memberships-pro.php:161
 
5952
  msgid "Stripe"
5953
  msgstr ""
5954
 
@@ -5956,11 +6029,14 @@ msgstr ""
5956
  #: classes/gateways/class.pmprogateway_stripe.php:436
5957
  #: classes/gateways/class.pmprogateway_stripe.php:354
5958
  #: classes/gateways/class.pmprogateway_stripe.php:444
 
 
5959
  msgid "Stripe Connect Settings"
5960
  msgstr ""
5961
 
5962
  #: classes/gateways/class.pmprogateway_stripe.php:352
5963
  #: classes/gateways/class.pmprogateway_stripe.php:356
 
5964
  msgid "Live Mode:"
5965
  msgstr ""
5966
 
@@ -5968,6 +6044,8 @@ msgstr ""
5968
  #: classes/gateways/class.pmprogateway_stripe.php:440
5969
  #: classes/gateways/class.pmprogateway_stripe.php:358
5970
  #: classes/gateways/class.pmprogateway_stripe.php:448
 
 
5971
  msgid "Connected"
5972
  msgstr ""
5973
 
@@ -5975,6 +6053,8 @@ msgstr ""
5975
  #: classes/gateways/class.pmprogateway_stripe.php:442
5976
  #: classes/gateways/class.pmprogateway_stripe.php:362
5977
  #: classes/gateways/class.pmprogateway_stripe.php:452
 
 
5978
  msgid "Not Connected"
5979
  msgstr ""
5980
 
@@ -5982,11 +6062,14 @@ msgstr ""
5982
  #: classes/gateways/class.pmprogateway_stripe.php:449
5983
  #: classes/gateways/class.pmprogateway_stripe.php:369
5984
  #: classes/gateways/class.pmprogateway_stripe.php:459
 
 
5985
  msgid "Your site is using legacy API keys to authenticate with Stripe."
5986
  msgstr ""
5987
 
5988
  #: classes/gateways/class.pmprogateway_stripe.php:364
5989
  #: classes/gateways/class.pmprogateway_stripe.php:371
 
5990
  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."
5991
  msgstr ""
5992
 
@@ -5994,6 +6077,8 @@ msgstr ""
5994
  #: classes/gateways/class.pmprogateway_stripe.php:458
5995
  #: classes/gateways/class.pmprogateway_stripe.php:380
5996
  #: classes/gateways/class.pmprogateway_stripe.php:470
 
 
5997
  msgid "Stripe Connection:"
5998
  msgstr ""
5999
 
@@ -6001,11 +6086,14 @@ msgstr ""
6001
  #: classes/gateways/class.pmprogateway_stripe.php:482
6002
  #: classes/gateways/class.pmprogateway_stripe.php:396
6003
  #: classes/gateways/class.pmprogateway_stripe.php:494
 
 
6004
  msgid "Disconnect From Stripe"
6005
  msgstr ""
6006
 
6007
  #: classes/gateways/class.pmprogateway_stripe.php:389
6008
  #: classes/gateways/class.pmprogateway_stripe.php:397
 
6009
  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."
6010
  msgstr ""
6011
 
@@ -6013,16 +6101,20 @@ msgstr ""
6013
  #: classes/gateways/class.pmprogateway_stripe.php:496
6014
  #: classes/gateways/class.pmprogateway_stripe.php:409
6015
  #: classes/gateways/class.pmprogateway_stripe.php:508
 
 
6016
  msgid "Connect with Stripe"
6017
  msgstr ""
6018
 
6019
  #: classes/gateways/class.pmprogateway_stripe.php:408
6020
  #: classes/gateways/class.pmprogateway_stripe.php:416
 
6021
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
6022
  msgstr ""
6023
 
6024
  #: classes/gateways/class.pmprogateway_stripe.php:411
6025
  #: classes/gateways/class.pmprogateway_stripe.php:419
 
6026
  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."
6027
  msgstr ""
6028
 
@@ -6033,6 +6125,9 @@ msgstr ""
6033
  #: classes/gateways/class.pmprogateway_stripe.php:519
6034
  #: classes/gateways/class.pmprogateway_stripe.php:559
6035
  #: classes/gateways/class.pmprogateway_stripe.php:578
 
 
 
6036
  msgid "Webhook"
6037
  msgstr ""
6038
 
@@ -6043,32 +6138,40 @@ msgstr ""
6043
  #: classes/gateways/class.pmprogateway_stripe.php:523
6044
  #: classes/gateways/class.pmprogateway_stripe.php:594
6045
  #: classes/gateways/class.pmprogateway_stripe.php:613
 
 
 
6046
  msgid "Webhook URL"
6047
  msgstr ""
6048
 
6049
  #: classes/gateways/class.pmprogateway_stripe.php:438
6050
  #: classes/gateways/class.pmprogateway_stripe.php:446
 
6051
  msgid "Test Mode:"
6052
  msgstr ""
6053
 
6054
  #: classes/gateways/class.pmprogateway_stripe.php:450
6055
  #: classes/gateways/class.pmprogateway_stripe.php:461
 
6056
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
6057
  msgstr ""
6058
 
6059
  #: classes/gateways/class.pmprogateway_stripe.php:483
6060
  #: classes/gateways/class.pmprogateway_stripe.php:495
 
6061
  msgid "This will disconnect your site from Stripe in test mode only."
6062
  msgstr ""
6063
 
6064
  #: classes/gateways/class.pmprogateway_stripe.php:518
6065
  #: classes/gateways/class.pmprogateway_stripe.php:530
 
6066
  msgid "Stripe API Settings (Legacy)"
6067
  msgstr ""
6068
 
6069
  #: classes/gateways/class.pmprogateway_stripe.php:531
6070
  #: classes/gateways/class.pmprogateway_stripe.php:543
6071
  #: classes/gateways/class.pmprogateway_stripe.php:562
 
6072
  msgid "Your Publishable Key appears incorrect."
6073
  msgstr ""
6074
 
@@ -6078,24 +6181,29 @@ msgstr ""
6078
  #: classes/gateways/class.pmprogateway_stripe.php:587
6079
  #: classes/gateways/class.pmprogateway_stripe.php:582
6080
  #: classes/gateways/class.pmprogateway_stripe.php:606
 
 
6081
  msgid "Create Webhook"
6082
  msgstr ""
6083
 
6084
  #: classes/gateways/class.pmprogateway_stripe.php:557
6085
  #: classes/gateways/class.pmprogateway_stripe.php:569
6086
  #: classes/gateways/class.pmprogateway_stripe.php:588
 
6087
  msgid "A webhook is set up in Stripe, but it is disabled."
6088
  msgstr ""
6089
 
6090
  #: classes/gateways/class.pmprogateway_stripe.php:564
6091
  #: classes/gateways/class.pmprogateway_stripe.php:576
6092
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
6093
  msgid "A webhook is set up in Stripe, but it is using an old API version."
6094
  msgstr ""
6095
 
6096
  #: classes/gateways/class.pmprogateway_stripe.php:564
6097
  #: classes/gateways/class.pmprogateway_stripe.php:576
6098
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
6099
  msgid "Rebuild Webhook"
6100
  msgstr ""
6101
 
@@ -6108,12 +6216,16 @@ msgstr ""
6108
  #: classes/gateways/class.pmprogateway_stripe.php:601
6109
  #: classes/gateways/class.pmprogateway_stripe.php:741
6110
  #: classes/gateways/class.pmprogateway_stripe.php:857
 
 
 
6111
  msgid "Your webhook is enabled."
6112
  msgstr ""
6113
 
6114
  #: classes/gateways/class.pmprogateway_stripe.php:570
6115
  #: classes/gateways/class.pmprogateway_stripe.php:582
6116
  #: classes/gateways/class.pmprogateway_stripe.php:601
 
6117
  msgid "Disable Webhook"
6118
  msgstr ""
6119
 
@@ -6129,78 +6241,94 @@ msgstr ""
6129
  #: classes/gateways/class.pmprogateway_stripe.php:768
6130
  #: classes/gateways/class.pmprogateway_stripe.php:785
6131
  #: classes/gateways/class.pmprogateway_stripe.php:819
 
 
 
 
6132
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
6133
  msgstr ""
6134
 
6135
  #: classes/gateways/class.pmprogateway_stripe.php:589
6136
  #: classes/gateways/class.pmprogateway_stripe.php:601
6137
  #: classes/gateways/class.pmprogateway_stripe.php:620
 
6138
  msgid "Other Stripe Settings"
6139
  msgstr ""
6140
 
6141
  #: classes/gateways/class.pmprogateway_stripe.php:593
6142
  #: classes/gateways/class.pmprogateway_stripe.php:605
6143
  #: classes/gateways/class.pmprogateway_stripe.php:624
 
6144
  msgid "Stripe API Version"
6145
  msgstr ""
6146
 
6147
  #: classes/gateways/class.pmprogateway_stripe.php:598
6148
  #: classes/gateways/class.pmprogateway_stripe.php:610
6149
  #: classes/gateways/class.pmprogateway_stripe.php:629
 
6150
  msgid "Show Billing Address Fields"
6151
  msgstr ""
6152
 
6153
  #: classes/gateways/class.pmprogateway_stripe.php:607
6154
  #: classes/gateways/class.pmprogateway_stripe.php:619
6155
  #: classes/gateways/class.pmprogateway_stripe.php:638
 
6156
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
6157
  msgstr ""
6158
 
6159
  #: classes/gateways/class.pmprogateway_stripe.php:612
6160
  #: classes/gateways/class.pmprogateway_stripe.php:624
6161
  #: classes/gateways/class.pmprogateway_stripe.php:643
 
6162
  msgid "Enable Payment Request Button"
6163
  msgstr ""
6164
 
6165
  #: classes/gateways/class.pmprogateway_stripe.php:630
6166
  #: classes/gateways/class.pmprogateway_stripe.php:642
6167
  #: classes/gateways/class.pmprogateway_stripe.php:661
 
6168
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
6169
  msgstr ""
6170
 
6171
  #: classes/gateways/class.pmprogateway_stripe.php:643
6172
  #: classes/gateways/class.pmprogateway_stripe.php:655
6173
  #: classes/gateways/class.pmprogateway_stripe.php:674
 
6174
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
6175
  msgstr ""
6176
 
6177
  #: classes/gateways/class.pmprogateway_stripe.php:645
6178
  #: classes/gateways/class.pmprogateway_stripe.php:657
6179
  #: classes/gateways/class.pmprogateway_stripe.php:676
 
6180
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
6181
  msgstr ""
6182
 
6183
  #: classes/gateways/class.pmprogateway_stripe.php:647
6184
  #: classes/gateways/class.pmprogateway_stripe.php:659
6185
  #: classes/gateways/class.pmprogateway_stripe.php:678
 
6186
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
6187
  msgstr ""
6188
 
6189
  #: classes/gateways/class.pmprogateway_stripe.php:649
6190
  #: classes/gateways/class.pmprogateway_stripe.php:661
6191
  #: classes/gateways/class.pmprogateway_stripe.php:680
 
6192
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
6193
  msgstr ""
6194
 
6195
  #: classes/gateways/class.pmprogateway_stripe.php:674
6196
  #: classes/gateways/class.pmprogateway_stripe.php:686
6197
  #: classes/gateways/class.pmprogateway_stripe.php:705
 
6198
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
6199
  msgstr ""
6200
 
6201
  #: classes/gateways/class.pmprogateway_stripe.php:695
6202
  #: classes/gateways/class.pmprogateway_stripe.php:707
6203
  #: classes/gateways/class.pmprogateway_stripe.php:726
 
6204
  msgid "Webhook creation failed. You might already have a webhook set up."
6205
  msgstr ""
6206
 
@@ -6210,54 +6338,64 @@ msgstr ""
6210
  #: classes/gateways/class.pmprogateway_stripe.php:847
6211
  #: classes/gateways/class.pmprogateway_stripe.php:792
6212
  #: classes/gateways/class.pmprogateway_stripe.php:866
 
 
6213
  msgid "There was an error deleting the webhook."
6214
  msgstr ""
6215
 
6216
  #: classes/gateways/class.pmprogateway_stripe.php:811
6217
  #: classes/gateways/class.pmprogateway_stripe.php:823
6218
  #: classes/gateways/class.pmprogateway_stripe.php:842
 
6219
  msgid "Webhook creation failed. Please refresh and try again."
6220
  msgstr ""
6221
 
6222
  #: classes/gateways/class.pmprogateway_stripe.php:867
6223
  #: classes/gateways/class.pmprogateway_stripe.php:879
6224
  #: classes/gateways/class.pmprogateway_stripe.php:898
 
6225
  msgid "Verification steps confirmed. Your payment is processing."
6226
  msgstr ""
6227
 
6228
  #: classes/gateways/class.pmprogateway_stripe.php:1262
6229
  #: classes/gateways/class.pmprogateway_stripe.php:1274
6230
  #: classes/gateways/class.pmprogateway_stripe.php:1293
 
6231
  msgid "Pay with Credit Card"
6232
  msgstr ""
6233
 
6234
  #: classes/gateways/class.pmprogateway_stripe.php:1296
6235
  #: classes/gateways/class.pmprogateway_stripe.php:1308
6236
  #: classes/gateways/class.pmprogateway_stripe.php:1327
 
6237
  msgid "CVC"
6238
  msgstr ""
6239
 
6240
  #: classes/gateways/class.pmprogateway_stripe.php:1374
6241
  #: classes/gateways/class.pmprogateway_stripe.php:1386
6242
  #: classes/gateways/class.pmprogateway_stripe.php:1405
 
6243
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
6244
  msgstr ""
6245
 
6246
  #: classes/gateways/class.pmprogateway_stripe.php:1379
6247
  #: classes/gateways/class.pmprogateway_stripe.php:1391
6248
  #: classes/gateways/class.pmprogateway_stripe.php:1410
 
6249
  msgid "Subscription Updates"
6250
  msgstr ""
6251
 
6252
  #: classes/gateways/class.pmprogateway_stripe.php:1383
6253
  #: classes/gateways/class.pmprogateway_stripe.php:1395
6254
  #: classes/gateways/class.pmprogateway_stripe.php:1414
 
6255
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
6256
  msgstr ""
6257
 
6258
  #: classes/gateways/class.pmprogateway_stripe.php:1385
6259
  #: classes/gateways/class.pmprogateway_stripe.php:1397
6260
  #: classes/gateways/class.pmprogateway_stripe.php:1416
 
6261
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
6262
  msgstr ""
6263
 
@@ -6273,6 +6411,10 @@ msgstr ""
6273
  #: classes/gateways/class.pmprogateway_stripe.php:2016
6274
  #: classes/gateways/class.pmprogateway_stripe.php:2029
6275
  #: classes/gateways/class.pmprogateway_stripe.php:2033
 
 
 
 
6276
  msgid "Error: %s"
6277
  msgstr ""
6278
 
@@ -6282,24 +6424,29 @@ msgstr ""
6282
  #: classes/gateways/class.pmprogateway_stripe.php:2182
6283
  #: classes/gateways/class.pmprogateway_stripe.php:2196
6284
  #: classes/gateways/class.pmprogateway_stripe.php:2201
 
 
6285
  msgid "Error getting subscription with Stripe:"
6286
  msgstr ""
6287
 
6288
  #: classes/gateways/class.pmprogateway_stripe.php:2480
6289
  #: classes/gateways/class.pmprogateway_stripe.php:2492
6290
  #: classes/gateways/class.pmprogateway_stripe.php:2514
 
6291
  msgid "Could not cancel the old subscription. Updates have not been processed."
6292
  msgstr ""
6293
 
6294
  #: classes/gateways/class.pmprogateway_stripe.php:2632
6295
  #: classes/gateways/class.pmprogateway_stripe.php:2644
6296
  #: classes/gateways/class.pmprogateway_stripe.php:2666
 
6297
  msgid "Could not cancel old subscription."
6298
  msgstr ""
6299
 
6300
  #: classes/gateways/class.pmprogateway_stripe.php:2648
6301
  #: classes/gateways/class.pmprogateway_stripe.php:2660
6302
  #: classes/gateways/class.pmprogateway_stripe.php:2682
 
6303
  msgid "Could not find the customer."
6304
  msgstr ""
6305
 
@@ -6309,30 +6456,35 @@ msgstr ""
6309
  #: classes/gateways/class.pmprogateway_stripe.php:2834
6310
  #: classes/gateways/class.pmprogateway_stripe.php:2850
6311
  #: classes/gateways/class.pmprogateway_stripe.php:2856
 
6312
  msgid "Error: "
6313
  msgstr ""
6314
 
6315
  #: classes/gateways/class.pmprogateway_stripe.php:2836
6316
  #: classes/gateways/class.pmprogateway_stripe.php:2848
6317
  #: classes/gateways/class.pmprogateway_stripe.php:2870
 
6318
  msgid "Error: Unkown error while refunding charge #%s"
6319
  msgstr ""
6320
 
6321
  #: classes/gateways/class.pmprogateway_stripe.php:3330
6322
  #: classes/gateways/class.pmprogateway_stripe.php:3342
6323
  #: classes/gateways/class.pmprogateway_stripe.php:3364
 
6324
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
6325
  msgstr ""
6326
 
6327
  #: classes/gateways/class.pmprogateway_stripe.php:3347
6328
  #: classes/gateways/class.pmprogateway_stripe.php:3359
6329
  #: classes/gateways/class.pmprogateway_stripe.php:3381
 
6330
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
6331
  msgstr ""
6332
 
6333
  #: classes/gateways/class.pmprogateway_stripe.php:3533
6334
  #: classes/gateways/class.pmprogateway_stripe.php:3545
6335
  #: classes/gateways/class.pmprogateway_stripe.php:3567
 
6336
  msgid "Invalid response from the Stripe Connect server."
6337
  msgstr ""
6338
 
@@ -6340,6 +6492,7 @@ msgstr ""
6340
  #: classes/gateways/class.pmprogateway_stripe.php:3561
6341
  #: classes/gateways/class.pmprogateway_stripe.php:3573
6342
  #: classes/gateways/class.pmprogateway_stripe.php:3595
 
6343
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
6344
  msgstr ""
6345
 
@@ -6347,30 +6500,35 @@ msgstr ""
6347
  #: classes/gateways/class.pmprogateway_stripe.php:3597
6348
  #: classes/gateways/class.pmprogateway_stripe.php:3609
6349
  #: classes/gateways/class.pmprogateway_stripe.php:3631
 
6350
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
6351
  msgstr ""
6352
 
6353
  #: classes/gateways/class.pmprogateway_stripe.php:3768
6354
  #: classes/gateways/class.pmprogateway_stripe.php:3780
6355
  #: classes/gateways/class.pmprogateway_stripe.php:3802
 
6356
  msgid "Last webhook received at"
6357
  msgstr ""
6358
 
6359
  #: classes/gateways/class.pmprogateway_stripe.php:3770
6360
  #: classes/gateways/class.pmprogateway_stripe.php:3782
6361
  #: classes/gateways/class.pmprogateway_stripe.php:3804
 
6362
  msgid "No webhooks have been received."
6363
  msgstr ""
6364
 
6365
  #: classes/gateways/class.pmprogateway_stripe.php:3774
6366
  #: classes/gateways/class.pmprogateway_stripe.php:3786
6367
  #: classes/gateways/class.pmprogateway_stripe.php:3808
 
6368
  msgid "Your webhook may not be working correctly."
6369
  msgstr ""
6370
 
6371
  #: classes/gateways/class.pmprogateway_stripe.php:3776
6372
  #: classes/gateways/class.pmprogateway_stripe.php:3788
6373
  #: classes/gateways/class.pmprogateway_stripe.php:3810
 
6374
  msgid "Click here for info on setting up your webhook with Stripe."
6375
  msgstr ""
6376
 
@@ -8605,11 +8763,13 @@ msgstr ""
8605
 
8606
  #: includes/login.php:429
8607
  #: includes/profile.php:843
 
8608
  msgid "New passwords do not match."
8609
  msgstr ""
8610
 
8611
  #: includes/login.php:433
8612
  #: includes/profile.php:839
 
8613
  msgid "Please complete all fields."
8614
  msgstr ""
8615
 
@@ -8639,17 +8799,21 @@ msgstr ""
8639
 
8640
  #: includes/login.php:688
8641
  #: includes/profile.php:891
 
8642
  msgid "New Password"
8643
  msgstr ""
8644
 
8645
  #: includes/login.php:690
8646
  #: includes/profile.php:894
8647
  #: includes/scripts.php:86
 
 
8648
  msgid "Strength Indicator"
8649
  msgstr ""
8650
 
8651
  #: includes/login.php:694
8652
  #: includes/profile.php:898
 
8653
  msgid "Confirm New Password"
8654
  msgstr ""
8655
 
@@ -8750,21 +8914,25 @@ msgstr ""
8750
  #: includes/privacy.php:182
8751
  #: includes/profile.php:425
8752
  #: includes/profile.php:493
 
8753
  msgid "Level ID"
8754
  msgstr ""
8755
 
8756
  #: includes/privacy.php:190
8757
  #: includes/profile.php:496
 
8758
  msgid "Date Modified"
8759
  msgstr ""
8760
 
8761
  #: includes/privacy.php:194
8762
  #: includes/profile.php:497
 
8763
  msgid "End Date"
8764
  msgstr ""
8765
 
8766
  #: includes/privacy.php:198
8767
  #: includes/profile.php:498
 
8768
  msgid "Level Cost"
8769
  msgstr ""
8770
 
@@ -8873,68 +9041,85 @@ msgid "Membership Levels History"
8873
  msgstr ""
8874
 
8875
  #: includes/profile.php:485
 
8876
  msgid "No membership orders found."
8877
  msgstr ""
8878
 
8879
  #: includes/profile.php:537
 
8880
  msgid "No membership history found."
8881
  msgstr ""
8882
 
8883
  #: includes/profile.php:644
 
8884
  msgid "Log in to edit your profile."
8885
  msgstr ""
8886
 
8887
  #: includes/profile.php:679
 
8888
  msgid "Please enter a display name."
8889
  msgstr ""
8890
 
8891
  #: includes/profile.php:689
 
8892
  msgid "Please enter an email address."
8893
  msgstr ""
8894
 
8895
  #: includes/profile.php:691
 
8896
  msgid "The email address isn&#8217;t correct."
8897
  msgstr ""
8898
 
8899
  #: includes/profile.php:695
 
8900
  msgid "This email is already registered, please choose another one."
8901
  msgstr ""
8902
 
8903
  #: includes/profile.php:722
 
8904
  msgid "Your profile has been updated."
8905
  msgstr ""
8906
 
8907
  #: includes/profile.php:749
 
8908
  msgid "Display name publicly as"
8909
  msgstr ""
8910
 
8911
  #: includes/profile.php:762
 
8912
  msgid "Site administrators must use the WordPress dashboard to update their email address."
8913
  msgstr ""
8914
 
8915
  #: includes/profile.php:785
 
8916
  msgid "Update Profile"
8917
  msgstr ""
8918
 
8919
  #: includes/profile.php:841
 
8920
  msgid "Please enter your current password."
8921
  msgstr ""
8922
 
8923
  #: includes/profile.php:845
 
8924
  msgid "Your current password is incorrect."
8925
  msgstr ""
8926
 
8927
  #: includes/profile.php:856
 
8928
  msgid "Your password has been updated."
8929
  msgstr ""
8930
 
8931
  #: includes/profile.php:886
 
8932
  msgid "Current Password"
8933
  msgstr ""
8934
 
8935
  #: includes/profile.php:888
8936
  #: includes/profile.php:893
8937
  #: includes/profile.php:900
 
 
8938
  msgid "Required Field"
8939
  msgstr ""
8940
 
@@ -9097,10 +9282,12 @@ msgid "The %s code has been applied to your order. "
9097
  msgstr ""
9098
 
9099
  #: services/braintree-webhook.php:425
 
9100
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
9101
  msgstr ""
9102
 
9103
  #: services/braintree-webhook.php:427
 
9104
  msgid "A member's Braintree subscription has expired at %s"
9105
  msgstr ""
9106
 
@@ -9435,16 +9622,22 @@ msgstr ""
9435
 
9436
  #: classes/gateways/class.pmprogateway_stripe.php:360
9437
  #: classes/gateways/class.pmprogateway_stripe.php:450
 
 
9438
  msgid "Connected with Legacy Keys"
9439
  msgstr ""
9440
 
9441
  #: classes/gateways/class.pmprogateway_stripe.php:370
9442
  #: classes/gateways/class.pmprogateway_stripe.php:460
 
 
9443
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
9444
  msgstr ""
9445
 
9446
  #: classes/gateways/class.pmprogateway_stripe.php:372
9447
  #: classes/gateways/class.pmprogateway_stripe.php:462
 
 
9448
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
9449
  msgstr ""
9450
 
@@ -9501,13 +9694,49 @@ msgid "missing"
9501
  msgstr ""
9502
 
9503
  #: classes/gateways/class.pmprogateway_stripe.php:533
 
9504
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
9505
  msgstr ""
9506
 
9507
  #: classes/gateways/class.pmprogateway_stripe.php:534
 
9508
  msgid "Click here to use the legacy API settings."
9509
  msgstr ""
9510
 
9511
  #: paid-memberships-pro.php:194
9512
  msgid "Once a month"
9513
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.3\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-10-11T14:00:28+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
498
  #: adminpages/advancedsettings.php:479
499
  #: classes/gateways/class.pmprogateway_stripe.php:634
500
  #: classes/gateways/class.pmprogateway_stripe.php:648
501
+ #: classes/gateways/class.pmprogateway_stripe.php:640
502
+ #: classes/gateways/class.pmprogateway_stripe.php:654
503
  msgid "No"
504
  msgstr "No"
505
 
524
  #: adminpages/advancedsettings.php:397
525
  #: classes/gateways/class.pmprogateway_stripe.php:636
526
  #: classes/gateways/class.pmprogateway_stripe.php:650
527
+ #: classes/gateways/class.pmprogateway_stripe.php:642
528
+ #: classes/gateways/class.pmprogateway_stripe.php:656
529
  msgid "Yes"
530
  msgstr "Si"
531
 
662
  #: adminpages/orders.php:391
663
  #: adminpages/orders.php:1445
664
  #: adminpages/orders.php:1448
665
+ #: includes/profile.php:762
666
  msgid "Email"
667
  msgstr "Email"
668
 
943
  #: includes/privacy.php:186
944
  #: includes/profile.php:495
945
  #: adminpages/discountcodes.php:489
946
+ #: includes/profile.php:501
947
  msgid "Start Date"
948
  msgstr "Fecha de inicio"
949
 
958
  #: classes/gateways/class.pmprogateway_stripe.php:1301
959
  #: adminpages/discountcodes.php:507
960
  #: classes/gateways/class.pmprogateway_stripe.php:1320
961
+ #: classes/gateways/class.pmprogateway_stripe.php:1326
962
  msgid "Expiration Date"
963
  msgstr "Fecha de expiración"
964
 
1332
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1333
  #: adminpages/discountcodes.php:608
1334
  #: classes/gateways/class.pmprogateway_stripe.php:1497
1335
+ #: classes/gateways/class.pmprogateway_stripe.php:1503
1336
  msgid "per"
1337
  msgstr "por"
1338
 
1346
  #: adminpages/discountcodes.php:612
1347
  #: adminpages/discountcodes.php:699
1348
  #: classes/gateways/class.pmprogateway_stripe.php:1363
1349
+ #: classes/gateways/class.pmprogateway_stripe.php:1369
1350
  msgid "Day(s)"
1351
  msgstr "Día(s)"
1352
 
1360
  #: adminpages/discountcodes.php:612
1361
  #: adminpages/discountcodes.php:699
1362
  #: classes/gateways/class.pmprogateway_stripe.php:1364
1363
+ #: classes/gateways/class.pmprogateway_stripe.php:1370
1364
  msgid "Week(s)"
1365
  msgstr "Semana(s)"
1366
 
1374
  #: adminpages/discountcodes.php:612
1375
  #: adminpages/discountcodes.php:699
1376
  #: classes/gateways/class.pmprogateway_stripe.php:1365
1377
+ #: classes/gateways/class.pmprogateway_stripe.php:1371
1378
  msgid "Month(s)"
1379
  msgstr "Mes(es)"
1380
 
1388
  #: adminpages/discountcodes.php:612
1389
  #: adminpages/discountcodes.php:699
1390
  #: classes/gateways/class.pmprogateway_stripe.php:1366
1391
+ #: classes/gateways/class.pmprogateway_stripe.php:1372
1392
  msgid "Year(s)"
1393
  msgstr "Año(s)"
1394
 
1680
  #: adminpages/advancedsettings.php:316
1681
  #: includes/privacy.php:175
1682
  #: includes/profile.php:509
1683
+ #: includes/profile.php:515
1684
  msgid "Never"
1685
  msgstr "Nunca"
1686
 
1883
  #: adminpages/orders.php:679
1884
  #: classes/gateways/class.pmprogateway_stripe.php:1284
1885
  #: classes/gateways/class.pmprogateway_stripe.php:1303
1886
+ #: classes/gateways/class.pmprogateway_stripe.php:1309
1887
  msgid "Card Type"
1888
  msgstr "Tipo de tarjeta"
1889
 
1937
  #: adminpages/dashboard.php:294
1938
  #: adminpages/orders.php:742
1939
  #: adminpages/orders.php:1348
1940
+ #: includes/profile.php:505
1941
  msgid "Status"
1942
  msgstr "Estado"
1943
 
2070
  #: pages/cancel.php:96
2071
  #: shortcodes/pmpro_account.php:106
2072
  #: adminpages/orders.php:968
2073
+ #: includes/profile.php:798
2074
+ #: includes/profile.php:922
2075
  msgid "Cancel"
2076
  msgstr "Cancelar"
2077
 
2294
  #: classes/gateways/class.pmprogateway_paypal.php:153
2295
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
2296
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
2297
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:172
2298
  msgid "Gateway Account Email"
2299
  msgstr "Email de cuenta de la Pasarela "
2300
 
2303
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
2304
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
2305
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
2306
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:180
2307
  msgid "API Username"
2308
  msgstr "Nombre de usuario de API (API Username)"
2309
 
2312
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
2313
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
2314
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
2315
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:188
2316
  msgid "API Password"
2317
  msgstr "Contraseña de API (API Password)"
2318
 
2320
  #: classes/gateways/class.pmprogateway_paypal.php:177
2321
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
2322
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
2323
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:196
2324
  msgid "API Signature"
2325
  msgstr "Firma de API (API Signature)"
2326
 
2338
  #: classes/gateways/class.pmprogateway_stripe.php:539
2339
  #: classes/gateways/class.pmprogateway_stripe.php:551
2340
  #: classes/gateways/class.pmprogateway_stripe.php:570
2341
+ #: classes/gateways/class.pmprogateway_stripe.php:576
2342
  msgid "Secret Key"
2343
  msgstr "Llave secreta (Secret Key)"
2344
 
2346
  #: classes/gateways/class.pmprogateway_stripe.php:523
2347
  #: classes/gateways/class.pmprogateway_stripe.php:535
2348
  #: classes/gateways/class.pmprogateway_stripe.php:554
2349
+ #: classes/gateways/class.pmprogateway_stripe.php:560
2350
  msgid "Publishable Key"
2351
  msgstr "Llave publicable (Publishable Key)"
2352
 
2450
  #: classes/gateways/class.pmprogateway_paypal.php:196
2451
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
2452
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
2453
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:215
2454
  msgid "IPN Handler URL"
2455
  msgstr "IPN Handler URL"
2456
 
2457
  #: adminpages/paymentsettings.php:449
2458
  #: classes/gateways/class.pmprogateway_paypal.php:199
2459
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
2460
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:218
2461
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
2462
  msgstr "Para integrar completamente con Paypal, asegúrate de introducir tu IPN Handler URL a"
2463
 
2691
  #: classes/class.pmproemail.php:769
2692
  #: classes/class.pmproemail.php:771
2693
  #: classes/gateways/class.pmprogateway_stripe.php:1333
2694
+ #: classes/gateways/class.pmprogateway_stripe.php:1339
2695
  msgid "Discount Code"
2696
  msgstr "Cupón de descuento"
2697
 
2929
  #: classes/gateways/class.pmprogateway_stripe.php:2127
2930
  #: classes/gateways/class.pmprogateway_stripe.php:2132
2931
  #: classes/gateways/class.pmprogateway_stripe.php:2137
2932
+ #: classes/gateways/class.pmprogateway_stripe.php:2133
2933
+ #: classes/gateways/class.pmprogateway_stripe.php:2138
2934
+ #: classes/gateways/class.pmprogateway_stripe.php:2143
2935
  msgid "Error creating customer record with Stripe:"
2936
  msgstr "Error creando entrada para el cliente con Stripe:"
2937
 
2942
  #: classes/gateways/class.pmprogateway_stripe.php:2356
2943
  #: classes/gateways/class.pmprogateway_stripe.php:2373
2944
  #: classes/gateways/class.pmprogateway_stripe.php:2378
2945
+ #: classes/gateways/class.pmprogateway_stripe.php:2379
2946
+ #: classes/gateways/class.pmprogateway_stripe.php:2384
2947
  msgid "Error creating plan with Stripe:"
2948
  msgstr "Error creando plan con Stripe:"
2949
 
2954
  #: classes/gateways/class.pmprogateway_stripe.php:2401
2955
  #: classes/gateways/class.pmprogateway_stripe.php:2409
2956
  #: classes/gateways/class.pmprogateway_stripe.php:2423
2957
+ #: classes/gateways/class.pmprogateway_stripe.php:2415
2958
+ #: classes/gateways/class.pmprogateway_stripe.php:2429
2959
  msgid "Error subscribing customer to plan with Stripe:"
2960
  msgstr "Error subscribiendo al cliente al plan con Stripe:"
2961
 
2984
  #: adminpages/dashboard.php:224
2985
  #: adminpages/dashboard.php:292
2986
  #: adminpages/orders.php:1343
2987
+ #: includes/profile.php:500
2988
  msgid "Level"
2989
  msgstr "Nivel"
2990
 
3031
  #: includes/profile.php:872
3032
  #: includes/profile.php:909
3033
  #: shortcodes/pmpro_account.php:195
3034
+ #: includes/profile.php:884
3035
+ #: includes/profile.php:921
3036
  msgid "Change Password"
3037
  msgstr "Cambiar Contraseña"
3038
 
3097
  #: includes/profile.php:747
3098
  #: pages/billing.php:164
3099
  #: pages/checkout.php:234
3100
+ #: includes/profile.php:759
3101
  msgid "First Name"
3102
  msgstr "Nombre"
3103
 
3106
  #: includes/profile.php:748
3107
  #: pages/billing.php:168
3108
  #: pages/checkout.php:238
3109
+ #: includes/profile.php:760
3110
  msgid "Last Name"
3111
  msgstr "Apellidos"
3112
 
3201
  #: pages/checkout.php:389
3202
  #: classes/gateways/class.pmprogateway_stripe.php:1297
3203
  #: classes/gateways/class.pmprogateway_stripe.php:1316
3204
+ #: classes/gateways/class.pmprogateway_stripe.php:1322
3205
  msgid "Card Number"
3206
  msgstr "Número de la Tarjeta"
3207
 
3225
  #: pages/billing.php:425
3226
  #: classes/gateways/class.pmprogateway_stripe.php:1403
3227
  #: classes/gateways/class.pmprogateway_stripe.php:1422
3228
+ #: classes/gateways/class.pmprogateway_stripe.php:1428
3229
  msgid "Update"
3230
  msgstr "Actualizar"
3231
 
3297
  #: pages/checkout.php:432
3298
  #: classes/gateways/class.pmprogateway_stripe.php:1319
3299
  #: classes/gateways/class.pmprogateway_stripe.php:1338
3300
+ #: classes/gateways/class.pmprogateway_stripe.php:1344
3301
  msgid "Apply"
3302
  msgstr "Aplicar"
3303
 
3364
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
3365
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
3366
  #: pages/checkout.php:218
3367
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:498
3368
  msgid "Check Out with PayPal"
3369
  msgstr "pague con PayPal"
3370
 
3374
  #: pages/checkout.php:367
3375
  #: classes/gateways/class.pmprogateway_stripe.php:1264
3376
  #: classes/gateways/class.pmprogateway_stripe.php:1283
3377
+ #: classes/gateways/class.pmprogateway_stripe.php:1289
3378
  #, php-format
3379
  msgid "We Accept %s"
3380
  msgstr "Aceptamos %s"
3385
  #: pages/checkout.php:366
3386
  #: classes/gateways/class.pmprogateway_stripe.php:1263
3387
  #: classes/gateways/class.pmprogateway_stripe.php:1282
3388
+ #: classes/gateways/class.pmprogateway_stripe.php:1288
3389
  msgid "Payment Information"
3390
  msgstr "Información de pago"
3391
 
3399
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
3400
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
3401
  #: pages/checkout.php:526
3402
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
3403
  msgid "Submit and Check Out"
3404
  msgstr "Envíar y pagar"
3405
 
3409
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
3410
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
3411
  #: pages/checkout.php:526
3412
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
3413
  msgid "Submit and Confirm"
3414
  msgstr "Enviar y confirmar"
3415
 
3718
  #: preheaders/checkout.php:803
3719
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
3720
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
3721
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:352
3722
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:411
3723
  msgid "The PayPal Token was lost."
3724
  msgstr "El token de PayPal se ha perdido."
3725
 
3779
 
3780
  #: services/authnet-silent-post.php:133
3781
  #: services/authnet-silent-post.php:173
3782
+ #: services/authnet-silent-post.php:176
3783
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
3784
  msgstr "<p>Authorize.net ha congelado un pago y está revisandolo.</p><p>Información de pago de Authorize.net"
3785
 
3932
  #: adminpages/orders.php:1544
3933
  #: adminpages/orders.php:1554
3934
  #: adminpages/orders.php:1553
3935
+ #: includes/profile.php:520
3936
+ #: includes/profile.php:521
3937
+ #: includes/profile.php:522
3938
  msgid "N/A"
3939
  msgstr ""
3940
 
3969
 
3970
  #: adminpages/admin_header.php:152
3971
  #: classes/gateways/class.pmprogateway_stripe.php:76
3972
+ #: classes/gateways/class.pmprogateway_stripe.php:82
3973
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
3974
  msgstr ""
3975
 
4264
  #: adminpages/dashboard.php:174
4265
  #: adminpages/license.php:49
4266
  #: adminpages/dashboard.php:178
4267
+ #: adminpages/license.php:41
4268
  msgid "Your license is invalid or expired."
4269
  msgstr ""
4270
 
4276
  #: adminpages/dashboard.php:177
4277
  #: adminpages/license.php:51
4278
  #: adminpages/dashboard.php:181
4279
+ #: adminpages/license.php:43
4280
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
4281
  msgstr ""
4282
 
4773
  msgstr ""
4774
 
4775
  #: adminpages/license.php:43
4776
+ #: adminpages/license.php:33
4777
  msgid "Paid Memberships Pro Support License"
4778
  msgstr ""
4779
 
4780
  #: adminpages/license.php:47
4781
+ #: adminpages/license.php:39
4782
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
4783
  msgstr ""
4784
 
4785
  #: adminpages/license.php:49
4786
+ #: adminpages/license.php:37
4787
+ #: adminpages/license.php:41
4788
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
4789
  msgstr ""
4790
 
4791
  #: adminpages/license.php:59
4792
+ #: adminpages/license.php:51
4793
  msgid "Enter license key here..."
4794
  msgstr ""
4795
 
4796
  #: adminpages/license.php:61
4797
+ #: adminpages/license.php:53
4798
  msgid "Validate Key"
4799
  msgstr ""
4800
 
4801
  #: adminpages/license.php:95
4802
+ #: adminpages/license.php:87
4803
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
4804
  msgstr ""
4805
 
5597
 
5598
  #: classes/gateways/class.pmprogateway_braintree.php:87
5599
  #: classes/gateways/class.pmprogateway_stripe.php:91
5600
+ #: classes/gateways/class.pmprogateway_stripe.php:97
5601
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
5602
  msgstr ""
5603
 
5925
  msgstr ""
5926
 
5927
  #: classes/gateways/class.pmprogateway_cybersource.php:922
5928
+ #: includes/license.php:159
5929
  msgid "Unknown error."
5930
  msgstr ""
5931
 
5958
  #: classes/gateways/class.pmprogateway_paypal.php:132
5959
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
5960
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
5961
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:151
5962
  msgid "PayPal Settings"
5963
  msgstr ""
5964
 
5965
  #: classes/gateways/class.pmprogateway_paypal.php:146
5966
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
5967
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
5968
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:165
5969
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
5970
  msgstr ""
5971
 
5972
  #: classes/gateways/class.pmprogateway_paypal.php:185
5973
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
5974
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:204
5975
  msgid "Confirmation Step"
5976
  msgstr ""
5977
 
5978
  #: classes/gateways/class.pmprogateway_paypal.php:716
5979
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
5980
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
5981
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:841
5982
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
5983
  msgstr ""
5984
 
5985
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
5986
  #: paid-memberships-pro.php:160
5987
  #: paid-memberships-pro.php:162
5988
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:94
5989
  msgid "PayPal Express"
5990
  msgstr ""
5991
 
5992
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
5993
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:356
5994
  msgid "Checkout was already processed."
5995
  msgstr ""
5996
 
5997
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
5998
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:791
5999
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
6000
  msgstr ""
6001
 
6002
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
6003
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:792
6004
  msgid "Error creating plan with PayPal."
6005
  msgstr ""
6006
 
6021
  #: classes/gateways/class.pmprogateway_stripe.php:252
6022
  #: paid-memberships-pro.php:159
6023
  #: paid-memberships-pro.php:161
6024
+ #: classes/gateways/class.pmprogateway_stripe.php:258
6025
  msgid "Stripe"
6026
  msgstr ""
6027
 
6029
  #: classes/gateways/class.pmprogateway_stripe.php:436
6030
  #: classes/gateways/class.pmprogateway_stripe.php:354
6031
  #: classes/gateways/class.pmprogateway_stripe.php:444
6032
+ #: classes/gateways/class.pmprogateway_stripe.php:360
6033
+ #: classes/gateways/class.pmprogateway_stripe.php:450
6034
  msgid "Stripe Connect Settings"
6035
  msgstr ""
6036
 
6037
  #: classes/gateways/class.pmprogateway_stripe.php:352
6038
  #: classes/gateways/class.pmprogateway_stripe.php:356
6039
+ #: classes/gateways/class.pmprogateway_stripe.php:362
6040
  msgid "Live Mode:"
6041
  msgstr ""
6042
 
6044
  #: classes/gateways/class.pmprogateway_stripe.php:440
6045
  #: classes/gateways/class.pmprogateway_stripe.php:358
6046
  #: classes/gateways/class.pmprogateway_stripe.php:448
6047
+ #: classes/gateways/class.pmprogateway_stripe.php:364
6048
+ #: classes/gateways/class.pmprogateway_stripe.php:454
6049
  msgid "Connected"
6050
  msgstr ""
6051
 
6053
  #: classes/gateways/class.pmprogateway_stripe.php:442
6054
  #: classes/gateways/class.pmprogateway_stripe.php:362
6055
  #: classes/gateways/class.pmprogateway_stripe.php:452
6056
+ #: classes/gateways/class.pmprogateway_stripe.php:368
6057
+ #: classes/gateways/class.pmprogateway_stripe.php:458
6058
  msgid "Not Connected"
6059
  msgstr ""
6060
 
6062
  #: classes/gateways/class.pmprogateway_stripe.php:449
6063
  #: classes/gateways/class.pmprogateway_stripe.php:369
6064
  #: classes/gateways/class.pmprogateway_stripe.php:459
6065
+ #: classes/gateways/class.pmprogateway_stripe.php:375
6066
+ #: classes/gateways/class.pmprogateway_stripe.php:465
6067
  msgid "Your site is using legacy API keys to authenticate with Stripe."
6068
  msgstr ""
6069
 
6070
  #: classes/gateways/class.pmprogateway_stripe.php:364
6071
  #: classes/gateways/class.pmprogateway_stripe.php:371
6072
+ #: classes/gateways/class.pmprogateway_stripe.php:377
6073
  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."
6074
  msgstr ""
6075
 
6077
  #: classes/gateways/class.pmprogateway_stripe.php:458
6078
  #: classes/gateways/class.pmprogateway_stripe.php:380
6079
  #: classes/gateways/class.pmprogateway_stripe.php:470
6080
+ #: classes/gateways/class.pmprogateway_stripe.php:386
6081
+ #: classes/gateways/class.pmprogateway_stripe.php:476
6082
  msgid "Stripe Connection:"
6083
  msgstr ""
6084
 
6086
  #: classes/gateways/class.pmprogateway_stripe.php:482
6087
  #: classes/gateways/class.pmprogateway_stripe.php:396
6088
  #: classes/gateways/class.pmprogateway_stripe.php:494
6089
+ #: classes/gateways/class.pmprogateway_stripe.php:402
6090
+ #: classes/gateways/class.pmprogateway_stripe.php:500
6091
  msgid "Disconnect From Stripe"
6092
  msgstr ""
6093
 
6094
  #: classes/gateways/class.pmprogateway_stripe.php:389
6095
  #: classes/gateways/class.pmprogateway_stripe.php:397
6096
+ #: classes/gateways/class.pmprogateway_stripe.php:403
6097
  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."
6098
  msgstr ""
6099
 
6101
  #: classes/gateways/class.pmprogateway_stripe.php:496
6102
  #: classes/gateways/class.pmprogateway_stripe.php:409
6103
  #: classes/gateways/class.pmprogateway_stripe.php:508
6104
+ #: classes/gateways/class.pmprogateway_stripe.php:415
6105
+ #: classes/gateways/class.pmprogateway_stripe.php:514
6106
  msgid "Connect with Stripe"
6107
  msgstr ""
6108
 
6109
  #: classes/gateways/class.pmprogateway_stripe.php:408
6110
  #: classes/gateways/class.pmprogateway_stripe.php:416
6111
+ #: classes/gateways/class.pmprogateway_stripe.php:422
6112
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
6113
  msgstr ""
6114
 
6115
  #: classes/gateways/class.pmprogateway_stripe.php:411
6116
  #: classes/gateways/class.pmprogateway_stripe.php:419
6117
+ #: classes/gateways/class.pmprogateway_stripe.php:425
6118
  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."
6119
  msgstr ""
6120
 
6125
  #: classes/gateways/class.pmprogateway_stripe.php:519
6126
  #: classes/gateways/class.pmprogateway_stripe.php:559
6127
  #: classes/gateways/class.pmprogateway_stripe.php:578
6128
+ #: classes/gateways/class.pmprogateway_stripe.php:437
6129
+ #: classes/gateways/class.pmprogateway_stripe.php:525
6130
+ #: classes/gateways/class.pmprogateway_stripe.php:584
6131
  msgid "Webhook"
6132
  msgstr ""
6133
 
6138
  #: classes/gateways/class.pmprogateway_stripe.php:523
6139
  #: classes/gateways/class.pmprogateway_stripe.php:594
6140
  #: classes/gateways/class.pmprogateway_stripe.php:613
6141
+ #: classes/gateways/class.pmprogateway_stripe.php:441
6142
+ #: classes/gateways/class.pmprogateway_stripe.php:529
6143
+ #: classes/gateways/class.pmprogateway_stripe.php:619
6144
  msgid "Webhook URL"
6145
  msgstr ""
6146
 
6147
  #: classes/gateways/class.pmprogateway_stripe.php:438
6148
  #: classes/gateways/class.pmprogateway_stripe.php:446
6149
+ #: classes/gateways/class.pmprogateway_stripe.php:452
6150
  msgid "Test Mode:"
6151
  msgstr ""
6152
 
6153
  #: classes/gateways/class.pmprogateway_stripe.php:450
6154
  #: classes/gateways/class.pmprogateway_stripe.php:461
6155
+ #: classes/gateways/class.pmprogateway_stripe.php:467
6156
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
6157
  msgstr ""
6158
 
6159
  #: classes/gateways/class.pmprogateway_stripe.php:483
6160
  #: classes/gateways/class.pmprogateway_stripe.php:495
6161
+ #: classes/gateways/class.pmprogateway_stripe.php:501
6162
  msgid "This will disconnect your site from Stripe in test mode only."
6163
  msgstr ""
6164
 
6165
  #: classes/gateways/class.pmprogateway_stripe.php:518
6166
  #: classes/gateways/class.pmprogateway_stripe.php:530
6167
+ #: classes/gateways/class.pmprogateway_stripe.php:536
6168
  msgid "Stripe API Settings (Legacy)"
6169
  msgstr ""
6170
 
6171
  #: classes/gateways/class.pmprogateway_stripe.php:531
6172
  #: classes/gateways/class.pmprogateway_stripe.php:543
6173
  #: classes/gateways/class.pmprogateway_stripe.php:562
6174
+ #: classes/gateways/class.pmprogateway_stripe.php:568
6175
  msgid "Your Publishable Key appears incorrect."
6176
  msgstr ""
6177
 
6181
  #: classes/gateways/class.pmprogateway_stripe.php:587
6182
  #: classes/gateways/class.pmprogateway_stripe.php:582
6183
  #: classes/gateways/class.pmprogateway_stripe.php:606
6184
+ #: classes/gateways/class.pmprogateway_stripe.php:588
6185
+ #: classes/gateways/class.pmprogateway_stripe.php:612
6186
  msgid "Create Webhook"
6187
  msgstr ""
6188
 
6189
  #: classes/gateways/class.pmprogateway_stripe.php:557
6190
  #: classes/gateways/class.pmprogateway_stripe.php:569
6191
  #: classes/gateways/class.pmprogateway_stripe.php:588
6192
+ #: classes/gateways/class.pmprogateway_stripe.php:594
6193
  msgid "A webhook is set up in Stripe, but it is disabled."
6194
  msgstr ""
6195
 
6196
  #: classes/gateways/class.pmprogateway_stripe.php:564
6197
  #: classes/gateways/class.pmprogateway_stripe.php:576
6198
  #: classes/gateways/class.pmprogateway_stripe.php:595
6199
+ #: classes/gateways/class.pmprogateway_stripe.php:601
6200
  msgid "A webhook is set up in Stripe, but it is using an old API version."
6201
  msgstr ""
6202
 
6203
  #: classes/gateways/class.pmprogateway_stripe.php:564
6204
  #: classes/gateways/class.pmprogateway_stripe.php:576
6205
  #: classes/gateways/class.pmprogateway_stripe.php:595
6206
+ #: classes/gateways/class.pmprogateway_stripe.php:601
6207
  msgid "Rebuild Webhook"
6208
  msgstr ""
6209
 
6216
  #: classes/gateways/class.pmprogateway_stripe.php:601
6217
  #: classes/gateways/class.pmprogateway_stripe.php:741
6218
  #: classes/gateways/class.pmprogateway_stripe.php:857
6219
+ #: classes/gateways/class.pmprogateway_stripe.php:607
6220
+ #: classes/gateways/class.pmprogateway_stripe.php:747
6221
+ #: classes/gateways/class.pmprogateway_stripe.php:863
6222
  msgid "Your webhook is enabled."
6223
  msgstr ""
6224
 
6225
  #: classes/gateways/class.pmprogateway_stripe.php:570
6226
  #: classes/gateways/class.pmprogateway_stripe.php:582
6227
  #: classes/gateways/class.pmprogateway_stripe.php:601
6228
+ #: classes/gateways/class.pmprogateway_stripe.php:607
6229
  msgid "Disable Webhook"
6230
  msgstr ""
6231
 
6241
  #: classes/gateways/class.pmprogateway_stripe.php:768
6242
  #: classes/gateways/class.pmprogateway_stripe.php:785
6243
  #: classes/gateways/class.pmprogateway_stripe.php:819
6244
+ #: classes/gateways/class.pmprogateway_stripe.php:614
6245
+ #: classes/gateways/class.pmprogateway_stripe.php:774
6246
+ #: classes/gateways/class.pmprogateway_stripe.php:791
6247
+ #: classes/gateways/class.pmprogateway_stripe.php:825
6248
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
6249
  msgstr ""
6250
 
6251
  #: classes/gateways/class.pmprogateway_stripe.php:589
6252
  #: classes/gateways/class.pmprogateway_stripe.php:601
6253
  #: classes/gateways/class.pmprogateway_stripe.php:620
6254
+ #: classes/gateways/class.pmprogateway_stripe.php:626
6255
  msgid "Other Stripe Settings"
6256
  msgstr ""
6257
 
6258
  #: classes/gateways/class.pmprogateway_stripe.php:593
6259
  #: classes/gateways/class.pmprogateway_stripe.php:605
6260
  #: classes/gateways/class.pmprogateway_stripe.php:624
6261
+ #: classes/gateways/class.pmprogateway_stripe.php:630
6262
  msgid "Stripe API Version"
6263
  msgstr ""
6264
 
6265
  #: classes/gateways/class.pmprogateway_stripe.php:598
6266
  #: classes/gateways/class.pmprogateway_stripe.php:610
6267
  #: classes/gateways/class.pmprogateway_stripe.php:629
6268
+ #: classes/gateways/class.pmprogateway_stripe.php:635
6269
  msgid "Show Billing Address Fields"
6270
  msgstr ""
6271
 
6272
  #: classes/gateways/class.pmprogateway_stripe.php:607
6273
  #: classes/gateways/class.pmprogateway_stripe.php:619
6274
  #: classes/gateways/class.pmprogateway_stripe.php:638
6275
+ #: classes/gateways/class.pmprogateway_stripe.php:644
6276
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
6277
  msgstr ""
6278
 
6279
  #: classes/gateways/class.pmprogateway_stripe.php:612
6280
  #: classes/gateways/class.pmprogateway_stripe.php:624
6281
  #: classes/gateways/class.pmprogateway_stripe.php:643
6282
+ #: classes/gateways/class.pmprogateway_stripe.php:649
6283
  msgid "Enable Payment Request Button"
6284
  msgstr ""
6285
 
6286
  #: classes/gateways/class.pmprogateway_stripe.php:630
6287
  #: classes/gateways/class.pmprogateway_stripe.php:642
6288
  #: classes/gateways/class.pmprogateway_stripe.php:661
6289
+ #: classes/gateways/class.pmprogateway_stripe.php:667
6290
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
6291
  msgstr ""
6292
 
6293
  #: classes/gateways/class.pmprogateway_stripe.php:643
6294
  #: classes/gateways/class.pmprogateway_stripe.php:655
6295
  #: classes/gateways/class.pmprogateway_stripe.php:674
6296
+ #: classes/gateways/class.pmprogateway_stripe.php:680
6297
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
6298
  msgstr ""
6299
 
6300
  #: classes/gateways/class.pmprogateway_stripe.php:645
6301
  #: classes/gateways/class.pmprogateway_stripe.php:657
6302
  #: classes/gateways/class.pmprogateway_stripe.php:676
6303
+ #: classes/gateways/class.pmprogateway_stripe.php:682
6304
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
6305
  msgstr ""
6306
 
6307
  #: classes/gateways/class.pmprogateway_stripe.php:647
6308
  #: classes/gateways/class.pmprogateway_stripe.php:659
6309
  #: classes/gateways/class.pmprogateway_stripe.php:678
6310
+ #: classes/gateways/class.pmprogateway_stripe.php:684
6311
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
6312
  msgstr ""
6313
 
6314
  #: classes/gateways/class.pmprogateway_stripe.php:649
6315
  #: classes/gateways/class.pmprogateway_stripe.php:661
6316
  #: classes/gateways/class.pmprogateway_stripe.php:680
6317
+ #: classes/gateways/class.pmprogateway_stripe.php:686
6318
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
6319
  msgstr ""
6320
 
6321
  #: classes/gateways/class.pmprogateway_stripe.php:674
6322
  #: classes/gateways/class.pmprogateway_stripe.php:686
6323
  #: classes/gateways/class.pmprogateway_stripe.php:705
6324
+ #: classes/gateways/class.pmprogateway_stripe.php:711
6325
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
6326
  msgstr ""
6327
 
6328
  #: classes/gateways/class.pmprogateway_stripe.php:695
6329
  #: classes/gateways/class.pmprogateway_stripe.php:707
6330
  #: classes/gateways/class.pmprogateway_stripe.php:726
6331
+ #: classes/gateways/class.pmprogateway_stripe.php:732
6332
  msgid "Webhook creation failed. You might already have a webhook set up."
6333
  msgstr ""
6334
 
6338
  #: classes/gateways/class.pmprogateway_stripe.php:847
6339
  #: classes/gateways/class.pmprogateway_stripe.php:792
6340
  #: classes/gateways/class.pmprogateway_stripe.php:866
6341
+ #: classes/gateways/class.pmprogateway_stripe.php:798
6342
+ #: classes/gateways/class.pmprogateway_stripe.php:872
6343
  msgid "There was an error deleting the webhook."
6344
  msgstr ""
6345
 
6346
  #: classes/gateways/class.pmprogateway_stripe.php:811
6347
  #: classes/gateways/class.pmprogateway_stripe.php:823
6348
  #: classes/gateways/class.pmprogateway_stripe.php:842
6349
+ #: classes/gateways/class.pmprogateway_stripe.php:848
6350
  msgid "Webhook creation failed. Please refresh and try again."
6351
  msgstr ""
6352
 
6353
  #: classes/gateways/class.pmprogateway_stripe.php:867
6354
  #: classes/gateways/class.pmprogateway_stripe.php:879
6355
  #: classes/gateways/class.pmprogateway_stripe.php:898
6356
+ #: classes/gateways/class.pmprogateway_stripe.php:904
6357
  msgid "Verification steps confirmed. Your payment is processing."
6358
  msgstr ""
6359
 
6360
  #: classes/gateways/class.pmprogateway_stripe.php:1262
6361
  #: classes/gateways/class.pmprogateway_stripe.php:1274
6362
  #: classes/gateways/class.pmprogateway_stripe.php:1293
6363
+ #: classes/gateways/class.pmprogateway_stripe.php:1299
6364
  msgid "Pay with Credit Card"
6365
  msgstr ""
6366
 
6367
  #: classes/gateways/class.pmprogateway_stripe.php:1296
6368
  #: classes/gateways/class.pmprogateway_stripe.php:1308
6369
  #: classes/gateways/class.pmprogateway_stripe.php:1327
6370
+ #: classes/gateways/class.pmprogateway_stripe.php:1333
6371
  msgid "CVC"
6372
  msgstr ""
6373
 
6374
  #: classes/gateways/class.pmprogateway_stripe.php:1374
6375
  #: classes/gateways/class.pmprogateway_stripe.php:1386
6376
  #: classes/gateways/class.pmprogateway_stripe.php:1405
6377
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
6378
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
6379
  msgstr ""
6380
 
6381
  #: classes/gateways/class.pmprogateway_stripe.php:1379
6382
  #: classes/gateways/class.pmprogateway_stripe.php:1391
6383
  #: classes/gateways/class.pmprogateway_stripe.php:1410
6384
+ #: classes/gateways/class.pmprogateway_stripe.php:1416
6385
  msgid "Subscription Updates"
6386
  msgstr ""
6387
 
6388
  #: classes/gateways/class.pmprogateway_stripe.php:1383
6389
  #: classes/gateways/class.pmprogateway_stripe.php:1395
6390
  #: classes/gateways/class.pmprogateway_stripe.php:1414
6391
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
6392
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
6393
  msgstr ""
6394
 
6395
  #: classes/gateways/class.pmprogateway_stripe.php:1385
6396
  #: classes/gateways/class.pmprogateway_stripe.php:1397
6397
  #: classes/gateways/class.pmprogateway_stripe.php:1416
6398
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
6399
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
6400
  msgstr ""
6401
 
6411
  #: classes/gateways/class.pmprogateway_stripe.php:2016
6412
  #: classes/gateways/class.pmprogateway_stripe.php:2029
6413
  #: classes/gateways/class.pmprogateway_stripe.php:2033
6414
+ #: classes/gateways/class.pmprogateway_stripe.php:2018
6415
+ #: classes/gateways/class.pmprogateway_stripe.php:2022
6416
+ #: classes/gateways/class.pmprogateway_stripe.php:2035
6417
+ #: classes/gateways/class.pmprogateway_stripe.php:2039
6418
  msgid "Error: %s"
6419
  msgstr ""
6420
 
6424
  #: classes/gateways/class.pmprogateway_stripe.php:2182
6425
  #: classes/gateways/class.pmprogateway_stripe.php:2196
6426
  #: classes/gateways/class.pmprogateway_stripe.php:2201
6427
+ #: classes/gateways/class.pmprogateway_stripe.php:2202
6428
+ #: classes/gateways/class.pmprogateway_stripe.php:2207
6429
  msgid "Error getting subscription with Stripe:"
6430
  msgstr ""
6431
 
6432
  #: classes/gateways/class.pmprogateway_stripe.php:2480
6433
  #: classes/gateways/class.pmprogateway_stripe.php:2492
6434
  #: classes/gateways/class.pmprogateway_stripe.php:2514
6435
+ #: classes/gateways/class.pmprogateway_stripe.php:2520
6436
  msgid "Could not cancel the old subscription. Updates have not been processed."
6437
  msgstr ""
6438
 
6439
  #: classes/gateways/class.pmprogateway_stripe.php:2632
6440
  #: classes/gateways/class.pmprogateway_stripe.php:2644
6441
  #: classes/gateways/class.pmprogateway_stripe.php:2666
6442
+ #: classes/gateways/class.pmprogateway_stripe.php:2672
6443
  msgid "Could not cancel old subscription."
6444
  msgstr ""
6445
 
6446
  #: classes/gateways/class.pmprogateway_stripe.php:2648
6447
  #: classes/gateways/class.pmprogateway_stripe.php:2660
6448
  #: classes/gateways/class.pmprogateway_stripe.php:2682
6449
+ #: classes/gateways/class.pmprogateway_stripe.php:2688
6450
  msgid "Could not find the customer."
6451
  msgstr ""
6452
 
6456
  #: classes/gateways/class.pmprogateway_stripe.php:2834
6457
  #: classes/gateways/class.pmprogateway_stripe.php:2850
6458
  #: classes/gateways/class.pmprogateway_stripe.php:2856
6459
+ #: classes/gateways/class.pmprogateway_stripe.php:2862
6460
  msgid "Error: "
6461
  msgstr ""
6462
 
6463
  #: classes/gateways/class.pmprogateway_stripe.php:2836
6464
  #: classes/gateways/class.pmprogateway_stripe.php:2848
6465
  #: classes/gateways/class.pmprogateway_stripe.php:2870
6466
+ #: classes/gateways/class.pmprogateway_stripe.php:2876
6467
  msgid "Error: Unkown error while refunding charge #%s"
6468
  msgstr ""
6469
 
6470
  #: classes/gateways/class.pmprogateway_stripe.php:3330
6471
  #: classes/gateways/class.pmprogateway_stripe.php:3342
6472
  #: classes/gateways/class.pmprogateway_stripe.php:3364
6473
+ #: classes/gateways/class.pmprogateway_stripe.php:3370
6474
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
6475
  msgstr ""
6476
 
6477
  #: classes/gateways/class.pmprogateway_stripe.php:3347
6478
  #: classes/gateways/class.pmprogateway_stripe.php:3359
6479
  #: classes/gateways/class.pmprogateway_stripe.php:3381
6480
+ #: classes/gateways/class.pmprogateway_stripe.php:3387
6481
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
6482
  msgstr ""
6483
 
6484
  #: classes/gateways/class.pmprogateway_stripe.php:3533
6485
  #: classes/gateways/class.pmprogateway_stripe.php:3545
6486
  #: classes/gateways/class.pmprogateway_stripe.php:3567
6487
+ #: classes/gateways/class.pmprogateway_stripe.php:3573
6488
  msgid "Invalid response from the Stripe Connect server."
6489
  msgstr ""
6490
 
6492
  #: classes/gateways/class.pmprogateway_stripe.php:3561
6493
  #: classes/gateways/class.pmprogateway_stripe.php:3573
6494
  #: classes/gateways/class.pmprogateway_stripe.php:3595
6495
+ #: classes/gateways/class.pmprogateway_stripe.php:3601
6496
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
6497
  msgstr ""
6498
 
6500
  #: classes/gateways/class.pmprogateway_stripe.php:3597
6501
  #: classes/gateways/class.pmprogateway_stripe.php:3609
6502
  #: classes/gateways/class.pmprogateway_stripe.php:3631
6503
+ #: classes/gateways/class.pmprogateway_stripe.php:3637
6504
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
6505
  msgstr ""
6506
 
6507
  #: classes/gateways/class.pmprogateway_stripe.php:3768
6508
  #: classes/gateways/class.pmprogateway_stripe.php:3780
6509
  #: classes/gateways/class.pmprogateway_stripe.php:3802
6510
+ #: classes/gateways/class.pmprogateway_stripe.php:3808
6511
  msgid "Last webhook received at"
6512
  msgstr ""
6513
 
6514
  #: classes/gateways/class.pmprogateway_stripe.php:3770
6515
  #: classes/gateways/class.pmprogateway_stripe.php:3782
6516
  #: classes/gateways/class.pmprogateway_stripe.php:3804
6517
+ #: classes/gateways/class.pmprogateway_stripe.php:3810
6518
  msgid "No webhooks have been received."
6519
  msgstr ""
6520
 
6521
  #: classes/gateways/class.pmprogateway_stripe.php:3774
6522
  #: classes/gateways/class.pmprogateway_stripe.php:3786
6523
  #: classes/gateways/class.pmprogateway_stripe.php:3808
6524
+ #: classes/gateways/class.pmprogateway_stripe.php:3814
6525
  msgid "Your webhook may not be working correctly."
6526
  msgstr ""
6527
 
6528
  #: classes/gateways/class.pmprogateway_stripe.php:3776
6529
  #: classes/gateways/class.pmprogateway_stripe.php:3788
6530
  #: classes/gateways/class.pmprogateway_stripe.php:3810
6531
+ #: classes/gateways/class.pmprogateway_stripe.php:3816
6532
  msgid "Click here for info on setting up your webhook with Stripe."
6533
  msgstr ""
6534
 
8763
 
8764
  #: includes/login.php:429
8765
  #: includes/profile.php:843
8766
+ #: includes/profile.php:855
8767
  msgid "New passwords do not match."
8768
  msgstr ""
8769
 
8770
  #: includes/login.php:433
8771
  #: includes/profile.php:839
8772
+ #: includes/profile.php:851
8773
  msgid "Please complete all fields."
8774
  msgstr ""
8775
 
8799
 
8800
  #: includes/login.php:688
8801
  #: includes/profile.php:891
8802
+ #: includes/profile.php:903
8803
  msgid "New Password"
8804
  msgstr ""
8805
 
8806
  #: includes/login.php:690
8807
  #: includes/profile.php:894
8808
  #: includes/scripts.php:86
8809
+ #: includes/profile.php:906
8810
+ #: includes/scripts.php:85
8811
  msgid "Strength Indicator"
8812
  msgstr ""
8813
 
8814
  #: includes/login.php:694
8815
  #: includes/profile.php:898
8816
+ #: includes/profile.php:910
8817
  msgid "Confirm New Password"
8818
  msgstr ""
8819
 
8914
  #: includes/privacy.php:182
8915
  #: includes/profile.php:425
8916
  #: includes/profile.php:493
8917
+ #: includes/profile.php:499
8918
  msgid "Level ID"
8919
  msgstr ""
8920
 
8921
  #: includes/privacy.php:190
8922
  #: includes/profile.php:496
8923
+ #: includes/profile.php:502
8924
  msgid "Date Modified"
8925
  msgstr ""
8926
 
8927
  #: includes/privacy.php:194
8928
  #: includes/profile.php:497
8929
+ #: includes/profile.php:503
8930
  msgid "End Date"
8931
  msgstr ""
8932
 
8933
  #: includes/privacy.php:198
8934
  #: includes/profile.php:498
8935
+ #: includes/profile.php:504
8936
  msgid "Level Cost"
8937
  msgstr ""
8938
 
9041
  msgstr ""
9042
 
9043
  #: includes/profile.php:485
9044
+ #: includes/profile.php:488
9045
  msgid "No membership orders found."
9046
  msgstr ""
9047
 
9048
  #: includes/profile.php:537
9049
+ #: includes/profile.php:546
9050
  msgid "No membership history found."
9051
  msgstr ""
9052
 
9053
  #: includes/profile.php:644
9054
+ #: includes/profile.php:656
9055
  msgid "Log in to edit your profile."
9056
  msgstr ""
9057
 
9058
  #: includes/profile.php:679
9059
+ #: includes/profile.php:691
9060
  msgid "Please enter a display name."
9061
  msgstr ""
9062
 
9063
  #: includes/profile.php:689
9064
+ #: includes/profile.php:701
9065
  msgid "Please enter an email address."
9066
  msgstr ""
9067
 
9068
  #: includes/profile.php:691
9069
+ #: includes/profile.php:703
9070
  msgid "The email address isn&#8217;t correct."
9071
  msgstr ""
9072
 
9073
  #: includes/profile.php:695
9074
+ #: includes/profile.php:707
9075
  msgid "This email is already registered, please choose another one."
9076
  msgstr ""
9077
 
9078
  #: includes/profile.php:722
9079
+ #: includes/profile.php:734
9080
  msgid "Your profile has been updated."
9081
  msgstr ""
9082
 
9083
  #: includes/profile.php:749
9084
+ #: includes/profile.php:761
9085
  msgid "Display name publicly as"
9086
  msgstr ""
9087
 
9088
  #: includes/profile.php:762
9089
+ #: includes/profile.php:774
9090
  msgid "Site administrators must use the WordPress dashboard to update their email address."
9091
  msgstr ""
9092
 
9093
  #: includes/profile.php:785
9094
+ #: includes/profile.php:797
9095
  msgid "Update Profile"
9096
  msgstr ""
9097
 
9098
  #: includes/profile.php:841
9099
+ #: includes/profile.php:853
9100
  msgid "Please enter your current password."
9101
  msgstr ""
9102
 
9103
  #: includes/profile.php:845
9104
+ #: includes/profile.php:857
9105
  msgid "Your current password is incorrect."
9106
  msgstr ""
9107
 
9108
  #: includes/profile.php:856
9109
+ #: includes/profile.php:868
9110
  msgid "Your password has been updated."
9111
  msgstr ""
9112
 
9113
  #: includes/profile.php:886
9114
+ #: includes/profile.php:898
9115
  msgid "Current Password"
9116
  msgstr ""
9117
 
9118
  #: includes/profile.php:888
9119
  #: includes/profile.php:893
9120
  #: includes/profile.php:900
9121
+ #: includes/profile.php:905
9122
+ #: includes/profile.php:912
9123
  msgid "Required Field"
9124
  msgstr ""
9125
 
9282
  msgstr ""
9283
 
9284
  #: services/braintree-webhook.php:425
9285
+ #: services/braintree-webhook.php:426
9286
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
9287
  msgstr ""
9288
 
9289
  #: services/braintree-webhook.php:427
9290
+ #: services/braintree-webhook.php:428
9291
  msgid "A member's Braintree subscription has expired at %s"
9292
  msgstr ""
9293
 
9622
 
9623
  #: classes/gateways/class.pmprogateway_stripe.php:360
9624
  #: classes/gateways/class.pmprogateway_stripe.php:450
9625
+ #: classes/gateways/class.pmprogateway_stripe.php:366
9626
+ #: classes/gateways/class.pmprogateway_stripe.php:456
9627
  msgid "Connected with Legacy Keys"
9628
  msgstr ""
9629
 
9630
  #: classes/gateways/class.pmprogateway_stripe.php:370
9631
  #: classes/gateways/class.pmprogateway_stripe.php:460
9632
+ #: classes/gateways/class.pmprogateway_stripe.php:376
9633
+ #: classes/gateways/class.pmprogateway_stripe.php:466
9634
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
9635
  msgstr ""
9636
 
9637
  #: classes/gateways/class.pmprogateway_stripe.php:372
9638
  #: classes/gateways/class.pmprogateway_stripe.php:462
9639
+ #: classes/gateways/class.pmprogateway_stripe.php:378
9640
+ #: classes/gateways/class.pmprogateway_stripe.php:468
9641
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
9642
  msgstr ""
9643
 
9694
  msgstr ""
9695
 
9696
  #: classes/gateways/class.pmprogateway_stripe.php:533
9697
+ #: classes/gateways/class.pmprogateway_stripe.php:539
9698
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
9699
  msgstr ""
9700
 
9701
  #: classes/gateways/class.pmprogateway_stripe.php:534
9702
+ #: classes/gateways/class.pmprogateway_stripe.php:540
9703
  msgid "Click here to use the legacy API settings."
9704
  msgstr ""
9705
 
9706
  #: paid-memberships-pro.php:194
9707
  msgid "Once a month"
9708
  msgstr ""
9709
+
9710
+ #: adminpages/license.php:37
9711
+ msgid "There was an issue validating your license key: %s"
9712
+ msgstr ""
9713
+
9714
+ #: includes/email-templates.php:172
9715
+ msgid ""
9716
+ "<p>There was a new member checkout at !!sitename!!.</p>\n"
9717
+ "\n"
9718
+ "<p><strong>They have chosen to pay by check.</strong></p>\n"
9719
+ "\n"
9720
+ "<p>Below are details about the new membership account and a receipt for the initial membership invoice.</p>\n"
9721
+ "\n"
9722
+ "<p>Account: !!display_name!! (!!user_email!!)</p>\n"
9723
+ "<p>Membership Level: !!membership_level_name!!</p>\n"
9724
+ "<p>Membership Fee: !!membership_cost!!</p>\n"
9725
+ "!!membership_expiration!! !!discount_code!!\n"
9726
+ "\n"
9727
+ "<p>\n"
9728
+ "\tInvoice #!!invoice_id!! on !!invoice_date!!<br />\n"
9729
+ "\tTotal Billed: !!invoice_total!!\n"
9730
+ "</p>\n"
9731
+ "\n"
9732
+ "<p>Log in to your membership account here: !!login_url!!</p>"
9733
+ msgstr ""
9734
+
9735
+ #: includes/license.php:112
9736
+ msgid "Missing key."
9737
+ msgstr ""
9738
+
9739
+ #: shortcodes/pmpro_account.php:145
9740
+ msgctxt "A dash is shown when there is no expiration date."
9741
+ msgid "&#8212;"
9742
+ msgstr ""
languages/paid-memberships-pro-et_EE.mo CHANGED
Binary file
languages/paid-memberships-pro-et_EE.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.2\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-09-17T13:57:18+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -258,6 +258,9 @@ msgstr "WordPress.org"
258
  #: adminpages/orders.php:1544
259
  #: adminpages/orders.php:1554
260
  #: adminpages/orders.php:1553
 
 
 
261
  msgid "N/A"
262
  msgstr "Ei ole kättesaadav"
263
 
@@ -437,6 +440,7 @@ msgstr "Makse meetod &amp; SSL"
437
  #: adminpages/orders.php:391
438
  #: adminpages/orders.php:1445
439
  #: adminpages/orders.php:1448
 
440
  msgid "Email"
441
  msgstr "Email"
442
 
@@ -622,6 +626,8 @@ msgstr "Peida reklaame liikmete eest?"
622
  #: adminpages/advancedsettings.php:479
623
  #: classes/gateways/class.pmprogateway_stripe.php:634
624
  #: classes/gateways/class.pmprogateway_stripe.php:648
 
 
625
  msgid "No"
626
  msgstr "Ei"
627
 
@@ -719,6 +725,8 @@ msgstr "multilehed ainult"
719
  #: adminpages/advancedsettings.php:397
720
  #: classes/gateways/class.pmprogateway_stripe.php:636
721
  #: classes/gateways/class.pmprogateway_stripe.php:650
 
 
722
  msgid "Yes"
723
  msgstr "Jah"
724
 
@@ -997,6 +1005,7 @@ msgstr "Kood"
997
  #: includes/privacy.php:186
998
  #: includes/profile.php:495
999
  #: adminpages/discountcodes.php:489
 
1000
  msgid "Start Date"
1001
  msgstr "Alguse kuupäev"
1002
 
@@ -1028,6 +1037,7 @@ msgstr "Alguse kuupäev"
1028
  #: classes/gateways/class.pmprogateway_stripe.php:1301
1029
  #: adminpages/discountcodes.php:507
1030
  #: classes/gateways/class.pmprogateway_stripe.php:1320
 
1031
  msgid "Expiration Date"
1032
  msgstr "Aegumise kuupäev"
1033
 
@@ -1166,6 +1176,7 @@ msgstr "Arve summa"
1166
  #: adminpages/discountcodes.php:612
1167
  #: adminpages/discountcodes.php:699
1168
  #: classes/gateways/class.pmprogateway_stripe.php:1363
 
1169
  msgid "Day(s)"
1170
  msgstr "päev(i)"
1171
 
@@ -1198,6 +1209,7 @@ msgstr "päev(i)"
1198
  #: adminpages/discountcodes.php:612
1199
  #: adminpages/discountcodes.php:699
1200
  #: classes/gateways/class.pmprogateway_stripe.php:1365
 
1201
  msgid "Month(s)"
1202
  msgstr "Kuu(d)"
1203
 
@@ -1230,6 +1242,7 @@ msgstr "Kuu(d)"
1230
  #: adminpages/discountcodes.php:612
1231
  #: adminpages/discountcodes.php:699
1232
  #: classes/gateways/class.pmprogateway_stripe.php:1364
 
1233
  msgid "Week(s)"
1234
  msgstr "Nädal(ad)"
1235
 
@@ -1262,6 +1275,7 @@ msgstr "Nädal(ad)"
1262
  #: adminpages/discountcodes.php:612
1263
  #: adminpages/discountcodes.php:699
1264
  #: classes/gateways/class.pmprogateway_stripe.php:1366
 
1265
  msgid "Year(s)"
1266
  msgstr "aasta(d)"
1267
 
@@ -1853,6 +1867,7 @@ msgstr "Arve detailid"
1853
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1854
  #: adminpages/discountcodes.php:608
1855
  #: classes/gateways/class.pmprogateway_stripe.php:1497
 
1856
  msgid "per"
1857
  msgstr "kohta"
1858
 
@@ -2066,6 +2081,8 @@ msgstr "Salvesta tase"
2066
  #: pages/cancel.php:96
2067
  #: shortcodes/pmpro_account.php:106
2068
  #: adminpages/orders.php:968
 
 
2069
  msgid "Cancel"
2070
  msgstr "Tühista"
2071
 
@@ -2709,6 +2726,7 @@ msgstr "näiteks PayPal Express, PayPal Standard, Credit Card."
2709
  #: adminpages/orders.php:679
2710
  #: classes/gateways/class.pmprogateway_stripe.php:1284
2711
  #: classes/gateways/class.pmprogateway_stripe.php:1303
 
2712
  msgid "Card Type"
2713
  msgstr "Kaardi tüüp"
2714
 
@@ -2781,6 +2799,7 @@ msgstr "Aegumise aasta"
2781
  #: adminpages/dashboard.php:294
2782
  #: adminpages/orders.php:742
2783
  #: adminpages/orders.php:1348
 
2784
  msgid "Status"
2785
  msgstr "Olek"
2786
 
@@ -4097,6 +4116,7 @@ msgstr "Teie liikme kinnitus %s tasemele"
4097
  #: classes/class.pmproemail.php:769
4098
  #: classes/class.pmproemail.php:771
4099
  #: classes/gateways/class.pmprogateway_stripe.php:1333
 
4100
  msgid "Discount Code"
4101
  msgstr "Allahindluse kood"
4102
 
@@ -4545,6 +4565,7 @@ msgstr "Täielikuks Braintree-ga integreerimiseks, veenduge, et olete seadistanu
4545
  #: pages/checkout.php:366
4546
  #: classes/gateways/class.pmprogateway_stripe.php:1263
4547
  #: classes/gateways/class.pmprogateway_stripe.php:1282
 
4548
  msgid "Payment Information"
4549
  msgstr "Makse informatsioon"
4550
 
@@ -4566,6 +4587,7 @@ msgstr "Makse informatsioon"
4566
  #: pages/checkout.php:367
4567
  #: classes/gateways/class.pmprogateway_stripe.php:1264
4568
  #: classes/gateways/class.pmprogateway_stripe.php:1283
 
4569
  #, php-format
4570
  msgid "We Accept %s"
4571
  msgstr "Me aktsepteerime %s"
@@ -4593,6 +4615,7 @@ msgstr "Me aktsepteerime %s"
4593
  #: pages/checkout.php:389
4594
  #: classes/gateways/class.pmprogateway_stripe.php:1297
4595
  #: classes/gateways/class.pmprogateway_stripe.php:1316
 
4596
  msgid "Card Number"
4597
  msgstr "Kaardi number"
4598
 
@@ -4665,6 +4688,7 @@ msgstr "mis see on?"
4665
  #: pages/checkout.php:432
4666
  #: classes/gateways/class.pmprogateway_stripe.php:1319
4667
  #: classes/gateways/class.pmprogateway_stripe.php:1338
 
4668
  msgid "Apply"
4669
  msgstr "Rakenda"
4670
 
@@ -4899,6 +4923,7 @@ msgstr "PayPal Website Payments Pro"
4899
  #: classes/gateways/class.pmprogateway_paypal.php:132
4900
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
4901
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
 
4902
  msgid "PayPal Settings"
4903
  msgstr "PayPal seaded"
4904
 
@@ -4920,6 +4945,7 @@ msgstr "Me ei soovita kasutada PayPal Standard'it. Soovitame kasutada PayPal Exp
4920
  #: classes/gateways/class.pmprogateway_paypal.php:153
4921
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
4922
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
 
4923
  msgid "Gateway Account Email"
4924
  msgstr "Makse meetodi konto email"
4925
 
@@ -4938,6 +4964,7 @@ msgstr "Makse meetodi konto email"
4938
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
4939
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
4940
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
 
4941
  msgid "API Username"
4942
  msgstr "API Kasutajanimi"
4943
 
@@ -4956,6 +4983,7 @@ msgstr "API Kasutajanimi"
4956
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
4957
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
4958
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
 
4959
  msgid "API Password"
4960
  msgstr "API Parool"
4961
 
@@ -4969,6 +4997,7 @@ msgstr "API Parool"
4969
  #: classes/gateways/class.pmprogateway_paypal.php:177
4970
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
4971
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
 
4972
  msgid "API Signature"
4973
  msgstr "API Allkiri"
4974
 
@@ -4983,6 +5012,7 @@ msgstr "API Allkiri"
4983
  #: classes/gateways/class.pmprogateway_paypal.php:196
4984
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
4985
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
 
4986
  msgid "IPN Handler URL"
4987
  msgstr "IPN Handler URL"
4988
 
@@ -5008,6 +5038,7 @@ msgstr "See URL edastati PayPal'ile kõikide uute hindade ja tellimuste jaoks. T
5008
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
5009
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
5010
  #: pages/checkout.php:218
 
5011
  msgid "Check Out with PayPal"
5012
  msgstr "Välju PayPal-iga"
5013
 
@@ -5026,6 +5057,7 @@ msgstr "Välju PayPal-iga"
5026
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
5027
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5028
  #: pages/checkout.php:526
 
5029
  msgid "Submit and Check Out"
5030
  msgstr "Esitada ja välju"
5031
 
@@ -5047,6 +5079,7 @@ msgstr "Esitada ja välju"
5047
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5048
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
5049
  #: pages/checkout.php:526
 
5050
  msgid "Submit and Confirm"
5051
  msgstr "Esita ja kinnita"
5052
 
@@ -5066,6 +5099,7 @@ msgstr "Esita ja kinnita"
5066
  #: classes/gateways/class.pmprogateway_paypal.php:716
5067
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
5068
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
 
5069
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
5070
  msgstr "Palun võtke ühendust saidi omanikuga või tühistage tellimus PayPal-is et veenduda, teid ei maksustata edasi minnes."
5071
 
@@ -5078,6 +5112,7 @@ msgstr "Palun võtke ühendust saidi omanikuga või tühistage tellimus PayPal-i
5078
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
5079
  #: paid-memberships-pro.php:160
5080
  #: paid-memberships-pro.php:162
 
5081
  msgid "PayPal Express"
5082
  msgstr "PayPal Express"
5083
 
@@ -5089,6 +5124,7 @@ msgstr "PayPal Express"
5089
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
5090
  #: classes/gateways/class.pmprogateway_paypal.php:199
5091
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
 
5092
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
5093
  msgstr "Täielikuks integratsiooniks PayPal-iga, tehke kindlaks, et seate oma IPN Handler URL-i "
5094
 
@@ -5110,6 +5146,8 @@ msgstr "Täielikuks integratsiooniks PayPal-iga, tehke kindlaks, et seate oma IP
5110
  #: preheaders/checkout.php:823
5111
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
5112
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
 
 
5113
  msgid "The PayPal Token was lost."
5114
  msgstr "PayPal'i Token läks kaduma."
5115
 
@@ -5139,6 +5177,7 @@ msgstr "Siin on sinu IPN URL viiteks. Te EI TOHIKS seda lisada oma PayPal seadet
5139
  #: classes/gateways/class.pmprogateway_stripe.php:252
5140
  #: paid-memberships-pro.php:159
5141
  #: paid-memberships-pro.php:161
 
5142
  msgid "Stripe"
5143
  msgstr "Stripe"
5144
 
@@ -5157,6 +5196,7 @@ msgstr "Stripe seaded"
5157
  #: classes/gateways/class.pmprogateway_stripe.php:539
5158
  #: classes/gateways/class.pmprogateway_stripe.php:551
5159
  #: classes/gateways/class.pmprogateway_stripe.php:570
 
5160
  msgid "Secret Key"
5161
  msgstr "Sala võti"
5162
 
@@ -5169,6 +5209,7 @@ msgstr "Sala võti"
5169
  #: classes/gateways/class.pmprogateway_stripe.php:523
5170
  #: classes/gateways/class.pmprogateway_stripe.php:535
5171
  #: classes/gateways/class.pmprogateway_stripe.php:554
 
5172
  msgid "Publishable Key"
5173
  msgstr "Avalikustatav võti"
5174
 
@@ -5181,6 +5222,7 @@ msgstr "Avalikustatav võti"
5181
  #: classes/gateways/class.pmprogateway_stripe.php:598
5182
  #: classes/gateways/class.pmprogateway_stripe.php:610
5183
  #: classes/gateways/class.pmprogateway_stripe.php:629
 
5184
  msgid "Show Billing Address Fields"
5185
  msgstr "Näita arve aadressi välju"
5186
 
@@ -5192,6 +5234,7 @@ msgstr "Näita arve aadressi välju"
5192
  #: classes/gateways/class.pmprogateway_stripe.php:607
5193
  #: classes/gateways/class.pmprogateway_stripe.php:619
5194
  #: classes/gateways/class.pmprogateway_stripe.php:638
 
5195
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
5196
  msgstr "Stripe ei vaja arve aadressi välju. Valige 'Ei' , et peita neid oma väljumise lehel.<br /><strong>Kui EI tehke kindlaks, et olete välja lülitanud aadressi kinnituse Stripe \"köögi\" seadetest.</strong>"
5197
 
@@ -5212,6 +5255,7 @@ msgstr "Täielikuks integratsiooniks Stripe-iga, tehke kindlaks, et seate oma We
5212
  #: classes/gateways/class.pmprogateway_stripe.php:1379
5213
  #: classes/gateways/class.pmprogateway_stripe.php:1391
5214
  #: classes/gateways/class.pmprogateway_stripe.php:1410
 
5215
  msgid "Subscription Updates"
5216
  msgstr "Tellimuse uuendused"
5217
 
@@ -5222,6 +5266,7 @@ msgstr "Tellimuse uuendused"
5222
  #: classes/gateways/class.pmprogateway_stripe.php:1383
5223
  #: classes/gateways/class.pmprogateway_stripe.php:1395
5224
  #: classes/gateways/class.pmprogateway_stripe.php:1414
 
5225
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
5226
  msgstr "Tellimuse uuendused lubavad muuta liikme liikmeväärtuste eelmääratletud ajal. Kindlasti muljuge uuendage profiili pärast muutuste tegemist."
5227
 
@@ -5232,6 +5277,7 @@ msgstr "Tellimuse uuendused lubavad muuta liikme liikmeväärtuste eelmääratle
5232
  #: classes/gateways/class.pmprogateway_stripe.php:1385
5233
  #: classes/gateways/class.pmprogateway_stripe.php:1397
5234
  #: classes/gateways/class.pmprogateway_stripe.php:1416
 
5235
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
5236
  msgstr "Tellimuse uuendused lubavad muuta liikme liikmeväärtuste eelmääratletud ajal. Kindlasti muljuge uuendage profiili pärast muutuste tegemist."
5237
 
@@ -5248,6 +5294,7 @@ msgstr "Tellimuse uuendused lubavad muuta liikme liikmeväärtuste eelmääratle
5248
  #: pages/billing.php:425
5249
  #: classes/gateways/class.pmprogateway_stripe.php:1403
5250
  #: classes/gateways/class.pmprogateway_stripe.php:1422
 
5251
  msgid "Update"
5252
  msgstr "Uuendage"
5253
 
@@ -5258,6 +5305,7 @@ msgstr "Uuendage"
5258
  #: classes/gateways/class.pmprogateway_stripe.php:2480
5259
  #: classes/gateways/class.pmprogateway_stripe.php:2492
5260
  #: classes/gateways/class.pmprogateway_stripe.php:2514
 
5261
  msgid "Could not cancel the old subscription. Updates have not been processed."
5262
  msgstr "Ei saanud vana tellimust tühistada. Värskendusi pole töödeldud."
5263
 
@@ -5281,6 +5329,9 @@ msgstr "Ei saanud vana tellimust tühistada. Värskendusi pole töödeldud."
5281
  #: classes/gateways/class.pmprogateway_stripe.php:2127
5282
  #: classes/gateways/class.pmprogateway_stripe.php:2132
5283
  #: classes/gateways/class.pmprogateway_stripe.php:2137
 
 
 
5284
  msgid "Error creating customer record with Stripe:"
5285
  msgstr "Ei õnnestu luua kliendikirjet Stripe-iga:"
5286
 
@@ -5291,6 +5342,8 @@ msgstr "Ei õnnestu luua kliendikirjet Stripe-iga:"
5291
  #: classes/gateways/class.pmprogateway_stripe.php:2182
5292
  #: classes/gateways/class.pmprogateway_stripe.php:2196
5293
  #: classes/gateways/class.pmprogateway_stripe.php:2201
 
 
5294
  msgid "Error getting subscription with Stripe:"
5295
  msgstr "Viga tellimuse saamisel Stripe-iga:"
5296
 
@@ -5319,6 +5372,8 @@ msgstr "Viga tellimuse saamisel Stripe-iga:"
5319
  #: classes/gateways/class.pmprogateway_stripe.php:2356
5320
  #: classes/gateways/class.pmprogateway_stripe.php:2373
5321
  #: classes/gateways/class.pmprogateway_stripe.php:2378
 
 
5322
  msgid "Error creating plan with Stripe:"
5323
  msgstr "Ei õnnestu luua plaani Stripe-iga:"
5324
 
@@ -5342,6 +5397,8 @@ msgstr "Ei õnnestu luua plaani Stripe-iga:"
5342
  #: classes/gateways/class.pmprogateway_stripe.php:2401
5343
  #: classes/gateways/class.pmprogateway_stripe.php:2409
5344
  #: classes/gateways/class.pmprogateway_stripe.php:2423
 
 
5345
  msgid "Error subscribing customer to plan with Stripe:"
5346
  msgstr "Ei õnnestu tellimisel kliendikirje plaani luua Stripe-iga:"
5347
 
@@ -5359,6 +5416,7 @@ msgstr "Ei õnnestu tellimisel kliendikirje plaani luua Stripe-iga:"
5359
  #: classes/gateways/class.pmprogateway_stripe.php:2632
5360
  #: classes/gateways/class.pmprogateway_stripe.php:2644
5361
  #: classes/gateways/class.pmprogateway_stripe.php:2666
 
5362
  msgid "Could not cancel old subscription."
5363
  msgstr "Ei saanud tühistada vana tellimust."
5364
 
@@ -5373,6 +5431,7 @@ msgstr "Ei saanud tühistada vana tellimust."
5373
  #: classes/gateways/class.pmprogateway_stripe.php:2648
5374
  #: classes/gateways/class.pmprogateway_stripe.php:2660
5375
  #: classes/gateways/class.pmprogateway_stripe.php:2682
 
5376
  msgid "Could not find the customer."
5377
  msgstr "Ei suutnud leida klienti."
5378
 
@@ -6378,6 +6437,7 @@ msgstr "Teie litsentsi võti valideeriti."
6378
 
6379
  #: includes/license.php:81
6380
  #: adminpages/license.php:43
 
6381
  msgid "Paid Memberships Pro Support License"
6382
  msgstr "Paid Memberships Pro toetuse litsents"
6383
 
@@ -6397,6 +6457,7 @@ msgstr "Külastage PMPro-d <a href=\"http://www.paidmembershipspro.com/login/?re
6397
  #: adminpages/dashboard.php:174
6398
  #: adminpages/license.php:49
6399
  #: adminpages/dashboard.php:178
 
6400
  msgid "Your license is invalid or expired."
6401
  msgstr "Teie litsentsi võti on kas vale või aegunud."
6402
 
@@ -6407,6 +6468,7 @@ msgstr "<p><strong>Tänan!</strong> Kasutati kehtivat<strong>%s</strong> litsent
6407
 
6408
  #: includes/license.php:100
6409
  #: adminpages/license.php:59
 
6410
  msgid "Enter license key here..."
6411
  msgstr "Sisestage litsentsi võti siia...."
6412
 
@@ -6585,6 +6647,7 @@ msgstr "logi välja"
6585
  #: adminpages/dashboard.php:224
6586
  #: adminpages/dashboard.php:292
6587
  #: adminpages/orders.php:1343
 
6588
  msgid "Level"
6589
  msgstr "Tase"
6590
 
@@ -6642,6 +6705,7 @@ msgstr "Teie makse tellimust haldab PayPal. Palun <a href=\"http://www.paypal.c
6642
  #: includes/profile.php:747
6643
  #: pages/billing.php:164
6644
  #: pages/checkout.php:234
 
6645
  msgid "First Name"
6646
  msgstr "Eesnimi"
6647
 
@@ -6658,6 +6722,7 @@ msgstr "Eesnimi"
6658
  #: includes/profile.php:748
6659
  #: pages/billing.php:168
6660
  #: pages/checkout.php:238
 
6661
  msgid "Last Name"
6662
  msgstr "Perekonnanimi"
6663
 
@@ -7700,6 +7765,7 @@ msgstr "Kood <strong>%s</strong> on lisatud teie tellimusele."
7700
  #: services/authnet-silent-post.php:133
7701
  #: services/authnet-silent-post.php:138
7702
  #: services/authnet-silent-post.php:173
 
7703
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
7704
  msgstr "<p>Makset hoitakse üle vaatamiseks Authorize.net-is.</p><p> Makse informatsioon Authorize.net-ist"
7705
 
@@ -7765,6 +7831,8 @@ msgstr "Muuda profiili"
7765
  #: includes/profile.php:872
7766
  #: includes/profile.php:909
7767
  #: shortcodes/pmpro_account.php:195
 
 
7768
  msgid "Change Password"
7769
  msgstr "Muuda parooli"
7770
 
@@ -7856,6 +7924,7 @@ msgstr "iga"
7856
  #: adminpages/advancedsettings.php:316
7857
  #: includes/privacy.php:175
7858
  #: includes/profile.php:509
 
7859
  msgid "Never"
7860
  msgstr "Mitte kunagi"
7861
 
@@ -8162,6 +8231,7 @@ msgstr ""
8162
 
8163
  #: adminpages/admin_header.php:152
8164
  #: classes/gateways/class.pmprogateway_stripe.php:76
 
8165
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
8166
  msgstr ""
8167
 
@@ -8434,6 +8504,7 @@ msgstr ""
8434
  #: adminpages/dashboard.php:177
8435
  #: adminpages/license.php:51
8436
  #: adminpages/dashboard.php:181
 
8437
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
8438
  msgstr ""
8439
 
@@ -8874,18 +8945,23 @@ msgid "Discount Code Applied"
8874
  msgstr ""
8875
 
8876
  #: adminpages/license.php:47
 
8877
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
8878
  msgstr ""
8879
 
8880
  #: adminpages/license.php:49
 
 
8881
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
8882
  msgstr ""
8883
 
8884
  #: adminpages/license.php:61
 
8885
  msgid "Validate Key"
8886
  msgstr ""
8887
 
8888
  #: adminpages/license.php:95
 
8889
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
8890
  msgstr ""
8891
 
@@ -9446,6 +9522,7 @@ msgstr ""
9446
 
9447
  #: classes/gateways/class.pmprogateway_braintree.php:87
9448
  #: classes/gateways/class.pmprogateway_stripe.php:91
 
9449
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
9450
  msgstr ""
9451
 
@@ -9743,6 +9820,7 @@ msgid "Your order has been refused."
9743
  msgstr ""
9744
 
9745
  #: classes/gateways/class.pmprogateway_cybersource.php:922
 
9746
  msgid "Unknown error."
9747
  msgstr ""
9748
 
@@ -9757,23 +9835,28 @@ msgstr ""
9757
  #: classes/gateways/class.pmprogateway_paypal.php:146
9758
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
9759
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
 
9760
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
9761
  msgstr ""
9762
 
9763
  #: classes/gateways/class.pmprogateway_paypal.php:185
9764
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
 
9765
  msgid "Confirmation Step"
9766
  msgstr ""
9767
 
9768
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
 
9769
  msgid "Checkout was already processed."
9770
  msgstr ""
9771
 
9772
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
 
9773
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
9774
  msgstr ""
9775
 
9776
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
 
9777
  msgid "Error creating plan with PayPal."
9778
  msgstr ""
9779
 
@@ -9785,11 +9868,14 @@ msgstr ""
9785
  #: classes/gateways/class.pmprogateway_stripe.php:436
9786
  #: classes/gateways/class.pmprogateway_stripe.php:354
9787
  #: classes/gateways/class.pmprogateway_stripe.php:444
 
 
9788
  msgid "Stripe Connect Settings"
9789
  msgstr ""
9790
 
9791
  #: classes/gateways/class.pmprogateway_stripe.php:352
9792
  #: classes/gateways/class.pmprogateway_stripe.php:356
 
9793
  msgid "Live Mode:"
9794
  msgstr ""
9795
 
@@ -9797,6 +9883,8 @@ msgstr ""
9797
  #: classes/gateways/class.pmprogateway_stripe.php:440
9798
  #: classes/gateways/class.pmprogateway_stripe.php:358
9799
  #: classes/gateways/class.pmprogateway_stripe.php:448
 
 
9800
  msgid "Connected"
9801
  msgstr ""
9802
 
@@ -9804,6 +9892,8 @@ msgstr ""
9804
  #: classes/gateways/class.pmprogateway_stripe.php:442
9805
  #: classes/gateways/class.pmprogateway_stripe.php:362
9806
  #: classes/gateways/class.pmprogateway_stripe.php:452
 
 
9807
  msgid "Not Connected"
9808
  msgstr ""
9809
 
@@ -9811,11 +9901,14 @@ msgstr ""
9811
  #: classes/gateways/class.pmprogateway_stripe.php:449
9812
  #: classes/gateways/class.pmprogateway_stripe.php:369
9813
  #: classes/gateways/class.pmprogateway_stripe.php:459
 
 
9814
  msgid "Your site is using legacy API keys to authenticate with Stripe."
9815
  msgstr ""
9816
 
9817
  #: classes/gateways/class.pmprogateway_stripe.php:364
9818
  #: classes/gateways/class.pmprogateway_stripe.php:371
 
9819
  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."
9820
  msgstr ""
9821
 
@@ -9823,6 +9916,8 @@ msgstr ""
9823
  #: classes/gateways/class.pmprogateway_stripe.php:458
9824
  #: classes/gateways/class.pmprogateway_stripe.php:380
9825
  #: classes/gateways/class.pmprogateway_stripe.php:470
 
 
9826
  msgid "Stripe Connection:"
9827
  msgstr ""
9828
 
@@ -9830,11 +9925,14 @@ msgstr ""
9830
  #: classes/gateways/class.pmprogateway_stripe.php:482
9831
  #: classes/gateways/class.pmprogateway_stripe.php:396
9832
  #: classes/gateways/class.pmprogateway_stripe.php:494
 
 
9833
  msgid "Disconnect From Stripe"
9834
  msgstr ""
9835
 
9836
  #: classes/gateways/class.pmprogateway_stripe.php:389
9837
  #: classes/gateways/class.pmprogateway_stripe.php:397
 
9838
  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."
9839
  msgstr ""
9840
 
@@ -9842,16 +9940,20 @@ msgstr ""
9842
  #: classes/gateways/class.pmprogateway_stripe.php:496
9843
  #: classes/gateways/class.pmprogateway_stripe.php:409
9844
  #: classes/gateways/class.pmprogateway_stripe.php:508
 
 
9845
  msgid "Connect with Stripe"
9846
  msgstr ""
9847
 
9848
  #: classes/gateways/class.pmprogateway_stripe.php:408
9849
  #: classes/gateways/class.pmprogateway_stripe.php:416
 
9850
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
9851
  msgstr ""
9852
 
9853
  #: classes/gateways/class.pmprogateway_stripe.php:411
9854
  #: classes/gateways/class.pmprogateway_stripe.php:419
 
9855
  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."
9856
  msgstr ""
9857
 
@@ -9862,6 +9964,9 @@ msgstr ""
9862
  #: classes/gateways/class.pmprogateway_stripe.php:519
9863
  #: classes/gateways/class.pmprogateway_stripe.php:559
9864
  #: classes/gateways/class.pmprogateway_stripe.php:578
 
 
 
9865
  msgid "Webhook"
9866
  msgstr ""
9867
 
@@ -9872,32 +9977,40 @@ msgstr ""
9872
  #: classes/gateways/class.pmprogateway_stripe.php:523
9873
  #: classes/gateways/class.pmprogateway_stripe.php:594
9874
  #: classes/gateways/class.pmprogateway_stripe.php:613
 
 
 
9875
  msgid "Webhook URL"
9876
  msgstr ""
9877
 
9878
  #: classes/gateways/class.pmprogateway_stripe.php:438
9879
  #: classes/gateways/class.pmprogateway_stripe.php:446
 
9880
  msgid "Test Mode:"
9881
  msgstr ""
9882
 
9883
  #: classes/gateways/class.pmprogateway_stripe.php:450
9884
  #: classes/gateways/class.pmprogateway_stripe.php:461
 
9885
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
9886
  msgstr ""
9887
 
9888
  #: classes/gateways/class.pmprogateway_stripe.php:483
9889
  #: classes/gateways/class.pmprogateway_stripe.php:495
 
9890
  msgid "This will disconnect your site from Stripe in test mode only."
9891
  msgstr ""
9892
 
9893
  #: classes/gateways/class.pmprogateway_stripe.php:518
9894
  #: classes/gateways/class.pmprogateway_stripe.php:530
 
9895
  msgid "Stripe API Settings (Legacy)"
9896
  msgstr ""
9897
 
9898
  #: classes/gateways/class.pmprogateway_stripe.php:531
9899
  #: classes/gateways/class.pmprogateway_stripe.php:543
9900
  #: classes/gateways/class.pmprogateway_stripe.php:562
 
9901
  msgid "Your Publishable Key appears incorrect."
9902
  msgstr ""
9903
 
@@ -9907,24 +10020,29 @@ msgstr ""
9907
  #: classes/gateways/class.pmprogateway_stripe.php:587
9908
  #: classes/gateways/class.pmprogateway_stripe.php:582
9909
  #: classes/gateways/class.pmprogateway_stripe.php:606
 
 
9910
  msgid "Create Webhook"
9911
  msgstr ""
9912
 
9913
  #: classes/gateways/class.pmprogateway_stripe.php:557
9914
  #: classes/gateways/class.pmprogateway_stripe.php:569
9915
  #: classes/gateways/class.pmprogateway_stripe.php:588
 
9916
  msgid "A webhook is set up in Stripe, but it is disabled."
9917
  msgstr ""
9918
 
9919
  #: classes/gateways/class.pmprogateway_stripe.php:564
9920
  #: classes/gateways/class.pmprogateway_stripe.php:576
9921
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
9922
  msgid "A webhook is set up in Stripe, but it is using an old API version."
9923
  msgstr ""
9924
 
9925
  #: classes/gateways/class.pmprogateway_stripe.php:564
9926
  #: classes/gateways/class.pmprogateway_stripe.php:576
9927
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
9928
  msgid "Rebuild Webhook"
9929
  msgstr ""
9930
 
@@ -9937,12 +10055,16 @@ msgstr ""
9937
  #: classes/gateways/class.pmprogateway_stripe.php:601
9938
  #: classes/gateways/class.pmprogateway_stripe.php:741
9939
  #: classes/gateways/class.pmprogateway_stripe.php:857
 
 
 
9940
  msgid "Your webhook is enabled."
9941
  msgstr ""
9942
 
9943
  #: classes/gateways/class.pmprogateway_stripe.php:570
9944
  #: classes/gateways/class.pmprogateway_stripe.php:582
9945
  #: classes/gateways/class.pmprogateway_stripe.php:601
 
9946
  msgid "Disable Webhook"
9947
  msgstr ""
9948
 
@@ -9958,66 +10080,80 @@ msgstr ""
9958
  #: classes/gateways/class.pmprogateway_stripe.php:768
9959
  #: classes/gateways/class.pmprogateway_stripe.php:785
9960
  #: classes/gateways/class.pmprogateway_stripe.php:819
 
 
 
 
9961
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
9962
  msgstr ""
9963
 
9964
  #: classes/gateways/class.pmprogateway_stripe.php:589
9965
  #: classes/gateways/class.pmprogateway_stripe.php:601
9966
  #: classes/gateways/class.pmprogateway_stripe.php:620
 
9967
  msgid "Other Stripe Settings"
9968
  msgstr ""
9969
 
9970
  #: classes/gateways/class.pmprogateway_stripe.php:593
9971
  #: classes/gateways/class.pmprogateway_stripe.php:605
9972
  #: classes/gateways/class.pmprogateway_stripe.php:624
 
9973
  msgid "Stripe API Version"
9974
  msgstr ""
9975
 
9976
  #: classes/gateways/class.pmprogateway_stripe.php:612
9977
  #: classes/gateways/class.pmprogateway_stripe.php:624
9978
  #: classes/gateways/class.pmprogateway_stripe.php:643
 
9979
  msgid "Enable Payment Request Button"
9980
  msgstr ""
9981
 
9982
  #: classes/gateways/class.pmprogateway_stripe.php:630
9983
  #: classes/gateways/class.pmprogateway_stripe.php:642
9984
  #: classes/gateways/class.pmprogateway_stripe.php:661
 
9985
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
9986
  msgstr ""
9987
 
9988
  #: classes/gateways/class.pmprogateway_stripe.php:643
9989
  #: classes/gateways/class.pmprogateway_stripe.php:655
9990
  #: classes/gateways/class.pmprogateway_stripe.php:674
 
9991
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
9992
  msgstr ""
9993
 
9994
  #: classes/gateways/class.pmprogateway_stripe.php:645
9995
  #: classes/gateways/class.pmprogateway_stripe.php:657
9996
  #: classes/gateways/class.pmprogateway_stripe.php:676
 
9997
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
9998
  msgstr ""
9999
 
10000
  #: classes/gateways/class.pmprogateway_stripe.php:647
10001
  #: classes/gateways/class.pmprogateway_stripe.php:659
10002
  #: classes/gateways/class.pmprogateway_stripe.php:678
 
10003
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
10004
  msgstr ""
10005
 
10006
  #: classes/gateways/class.pmprogateway_stripe.php:649
10007
  #: classes/gateways/class.pmprogateway_stripe.php:661
10008
  #: classes/gateways/class.pmprogateway_stripe.php:680
 
10009
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
10010
  msgstr ""
10011
 
10012
  #: classes/gateways/class.pmprogateway_stripe.php:674
10013
  #: classes/gateways/class.pmprogateway_stripe.php:686
10014
  #: classes/gateways/class.pmprogateway_stripe.php:705
 
10015
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
10016
  msgstr ""
10017
 
10018
  #: classes/gateways/class.pmprogateway_stripe.php:695
10019
  #: classes/gateways/class.pmprogateway_stripe.php:707
10020
  #: classes/gateways/class.pmprogateway_stripe.php:726
 
10021
  msgid "Webhook creation failed. You might already have a webhook set up."
10022
  msgstr ""
10023
 
@@ -10027,36 +10163,43 @@ msgstr ""
10027
  #: classes/gateways/class.pmprogateway_stripe.php:847
10028
  #: classes/gateways/class.pmprogateway_stripe.php:792
10029
  #: classes/gateways/class.pmprogateway_stripe.php:866
 
 
10030
  msgid "There was an error deleting the webhook."
10031
  msgstr ""
10032
 
10033
  #: classes/gateways/class.pmprogateway_stripe.php:811
10034
  #: classes/gateways/class.pmprogateway_stripe.php:823
10035
  #: classes/gateways/class.pmprogateway_stripe.php:842
 
10036
  msgid "Webhook creation failed. Please refresh and try again."
10037
  msgstr ""
10038
 
10039
  #: classes/gateways/class.pmprogateway_stripe.php:867
10040
  #: classes/gateways/class.pmprogateway_stripe.php:879
10041
  #: classes/gateways/class.pmprogateway_stripe.php:898
 
10042
  msgid "Verification steps confirmed. Your payment is processing."
10043
  msgstr ""
10044
 
10045
  #: classes/gateways/class.pmprogateway_stripe.php:1262
10046
  #: classes/gateways/class.pmprogateway_stripe.php:1274
10047
  #: classes/gateways/class.pmprogateway_stripe.php:1293
 
10048
  msgid "Pay with Credit Card"
10049
  msgstr ""
10050
 
10051
  #: classes/gateways/class.pmprogateway_stripe.php:1296
10052
  #: classes/gateways/class.pmprogateway_stripe.php:1308
10053
  #: classes/gateways/class.pmprogateway_stripe.php:1327
 
10054
  msgid "CVC"
10055
  msgstr ""
10056
 
10057
  #: classes/gateways/class.pmprogateway_stripe.php:1374
10058
  #: classes/gateways/class.pmprogateway_stripe.php:1386
10059
  #: classes/gateways/class.pmprogateway_stripe.php:1405
 
10060
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
10061
  msgstr ""
10062
 
@@ -10072,6 +10215,10 @@ msgstr ""
10072
  #: classes/gateways/class.pmprogateway_stripe.php:2016
10073
  #: classes/gateways/class.pmprogateway_stripe.php:2029
10074
  #: classes/gateways/class.pmprogateway_stripe.php:2033
 
 
 
 
10075
  msgid "Error: %s"
10076
  msgstr ""
10077
 
@@ -10081,30 +10228,35 @@ msgstr ""
10081
  #: classes/gateways/class.pmprogateway_stripe.php:2834
10082
  #: classes/gateways/class.pmprogateway_stripe.php:2850
10083
  #: classes/gateways/class.pmprogateway_stripe.php:2856
 
10084
  msgid "Error: "
10085
  msgstr ""
10086
 
10087
  #: classes/gateways/class.pmprogateway_stripe.php:2836
10088
  #: classes/gateways/class.pmprogateway_stripe.php:2848
10089
  #: classes/gateways/class.pmprogateway_stripe.php:2870
 
10090
  msgid "Error: Unkown error while refunding charge #%s"
10091
  msgstr ""
10092
 
10093
  #: classes/gateways/class.pmprogateway_stripe.php:3330
10094
  #: classes/gateways/class.pmprogateway_stripe.php:3342
10095
  #: classes/gateways/class.pmprogateway_stripe.php:3364
 
10096
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
10097
  msgstr ""
10098
 
10099
  #: classes/gateways/class.pmprogateway_stripe.php:3347
10100
  #: classes/gateways/class.pmprogateway_stripe.php:3359
10101
  #: classes/gateways/class.pmprogateway_stripe.php:3381
 
10102
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
10103
  msgstr ""
10104
 
10105
  #: classes/gateways/class.pmprogateway_stripe.php:3533
10106
  #: classes/gateways/class.pmprogateway_stripe.php:3545
10107
  #: classes/gateways/class.pmprogateway_stripe.php:3567
 
10108
  msgid "Invalid response from the Stripe Connect server."
10109
  msgstr ""
10110
 
@@ -10112,6 +10264,7 @@ msgstr ""
10112
  #: classes/gateways/class.pmprogateway_stripe.php:3561
10113
  #: classes/gateways/class.pmprogateway_stripe.php:3573
10114
  #: classes/gateways/class.pmprogateway_stripe.php:3595
 
10115
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
10116
  msgstr ""
10117
 
@@ -10119,30 +10272,35 @@ msgstr ""
10119
  #: classes/gateways/class.pmprogateway_stripe.php:3597
10120
  #: classes/gateways/class.pmprogateway_stripe.php:3609
10121
  #: classes/gateways/class.pmprogateway_stripe.php:3631
 
10122
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
10123
  msgstr ""
10124
 
10125
  #: classes/gateways/class.pmprogateway_stripe.php:3768
10126
  #: classes/gateways/class.pmprogateway_stripe.php:3780
10127
  #: classes/gateways/class.pmprogateway_stripe.php:3802
 
10128
  msgid "Last webhook received at"
10129
  msgstr ""
10130
 
10131
  #: classes/gateways/class.pmprogateway_stripe.php:3770
10132
  #: classes/gateways/class.pmprogateway_stripe.php:3782
10133
  #: classes/gateways/class.pmprogateway_stripe.php:3804
 
10134
  msgid "No webhooks have been received."
10135
  msgstr ""
10136
 
10137
  #: classes/gateways/class.pmprogateway_stripe.php:3774
10138
  #: classes/gateways/class.pmprogateway_stripe.php:3786
10139
  #: classes/gateways/class.pmprogateway_stripe.php:3808
 
10140
  msgid "Your webhook may not be working correctly."
10141
  msgstr ""
10142
 
10143
  #: classes/gateways/class.pmprogateway_stripe.php:3776
10144
  #: classes/gateways/class.pmprogateway_stripe.php:3788
10145
  #: classes/gateways/class.pmprogateway_stripe.php:3810
 
10146
  msgid "Click here for info on setting up your webhook with Stripe."
10147
  msgstr ""
10148
 
@@ -12259,11 +12417,13 @@ msgstr ""
12259
 
12260
  #: includes/login.php:429
12261
  #: includes/profile.php:843
 
12262
  msgid "New passwords do not match."
12263
  msgstr ""
12264
 
12265
  #: includes/login.php:433
12266
  #: includes/profile.php:839
 
12267
  msgid "Please complete all fields."
12268
  msgstr ""
12269
 
@@ -12293,17 +12453,21 @@ msgstr ""
12293
 
12294
  #: includes/login.php:688
12295
  #: includes/profile.php:891
 
12296
  msgid "New Password"
12297
  msgstr ""
12298
 
12299
  #: includes/login.php:690
12300
  #: includes/profile.php:894
12301
  #: includes/scripts.php:86
 
 
12302
  msgid "Strength Indicator"
12303
  msgstr ""
12304
 
12305
  #: includes/login.php:694
12306
  #: includes/profile.php:898
 
12307
  msgid "Confirm New Password"
12308
  msgstr ""
12309
 
@@ -12400,21 +12564,25 @@ msgstr ""
12400
  #: includes/privacy.php:182
12401
  #: includes/profile.php:425
12402
  #: includes/profile.php:493
 
12403
  msgid "Level ID"
12404
  msgstr ""
12405
 
12406
  #: includes/privacy.php:190
12407
  #: includes/profile.php:496
 
12408
  msgid "Date Modified"
12409
  msgstr ""
12410
 
12411
  #: includes/privacy.php:194
12412
  #: includes/profile.php:497
 
12413
  msgid "End Date"
12414
  msgstr ""
12415
 
12416
  #: includes/privacy.php:198
12417
  #: includes/profile.php:498
 
12418
  msgid "Level Cost"
12419
  msgstr ""
12420
 
@@ -12513,68 +12681,85 @@ msgid "Membership Levels History"
12513
  msgstr ""
12514
 
12515
  #: includes/profile.php:485
 
12516
  msgid "No membership orders found."
12517
  msgstr ""
12518
 
12519
  #: includes/profile.php:537
 
12520
  msgid "No membership history found."
12521
  msgstr ""
12522
 
12523
  #: includes/profile.php:644
 
12524
  msgid "Log in to edit your profile."
12525
  msgstr ""
12526
 
12527
  #: includes/profile.php:679
 
12528
  msgid "Please enter a display name."
12529
  msgstr ""
12530
 
12531
  #: includes/profile.php:689
 
12532
  msgid "Please enter an email address."
12533
  msgstr ""
12534
 
12535
  #: includes/profile.php:691
 
12536
  msgid "The email address isn&#8217;t correct."
12537
  msgstr ""
12538
 
12539
  #: includes/profile.php:695
 
12540
  msgid "This email is already registered, please choose another one."
12541
  msgstr ""
12542
 
12543
  #: includes/profile.php:722
 
12544
  msgid "Your profile has been updated."
12545
  msgstr ""
12546
 
12547
  #: includes/profile.php:749
 
12548
  msgid "Display name publicly as"
12549
  msgstr ""
12550
 
12551
  #: includes/profile.php:762
 
12552
  msgid "Site administrators must use the WordPress dashboard to update their email address."
12553
  msgstr ""
12554
 
12555
  #: includes/profile.php:785
 
12556
  msgid "Update Profile"
12557
  msgstr ""
12558
 
12559
  #: includes/profile.php:841
 
12560
  msgid "Please enter your current password."
12561
  msgstr ""
12562
 
12563
  #: includes/profile.php:845
 
12564
  msgid "Your current password is incorrect."
12565
  msgstr ""
12566
 
12567
  #: includes/profile.php:856
 
12568
  msgid "Your password has been updated."
12569
  msgstr ""
12570
 
12571
  #: includes/profile.php:886
 
12572
  msgid "Current Password"
12573
  msgstr ""
12574
 
12575
  #: includes/profile.php:888
12576
  #: includes/profile.php:893
12577
  #: includes/profile.php:900
 
 
12578
  msgid "Required Field"
12579
  msgstr ""
12580
 
@@ -12679,10 +12864,12 @@ msgid "That email address is already in use. Please log in, or use a different e
12679
  msgstr ""
12680
 
12681
  #: services/braintree-webhook.php:425
 
12682
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
12683
  msgstr ""
12684
 
12685
  #: services/braintree-webhook.php:427
 
12686
  msgid "A member's Braintree subscription has expired at %s"
12687
  msgstr ""
12688
 
@@ -13001,16 +13188,22 @@ msgstr ""
13001
 
13002
  #: classes/gateways/class.pmprogateway_stripe.php:360
13003
  #: classes/gateways/class.pmprogateway_stripe.php:450
 
 
13004
  msgid "Connected with Legacy Keys"
13005
  msgstr ""
13006
 
13007
  #: classes/gateways/class.pmprogateway_stripe.php:370
13008
  #: classes/gateways/class.pmprogateway_stripe.php:460
 
 
13009
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
13010
  msgstr ""
13011
 
13012
  #: classes/gateways/class.pmprogateway_stripe.php:372
13013
  #: classes/gateways/class.pmprogateway_stripe.php:462
 
 
13014
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
13015
  msgstr ""
13016
 
@@ -13067,13 +13260,49 @@ msgid "missing"
13067
  msgstr ""
13068
 
13069
  #: classes/gateways/class.pmprogateway_stripe.php:533
 
13070
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
13071
  msgstr ""
13072
 
13073
  #: classes/gateways/class.pmprogateway_stripe.php:534
 
13074
  msgid "Click here to use the legacy API settings."
13075
  msgstr ""
13076
 
13077
  #: paid-memberships-pro.php:194
13078
  msgid "Once a month"
13079
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.3\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-10-11T14:00:31+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
258
  #: adminpages/orders.php:1544
259
  #: adminpages/orders.php:1554
260
  #: adminpages/orders.php:1553
261
+ #: includes/profile.php:520
262
+ #: includes/profile.php:521
263
+ #: includes/profile.php:522
264
  msgid "N/A"
265
  msgstr "Ei ole kättesaadav"
266
 
440
  #: adminpages/orders.php:391
441
  #: adminpages/orders.php:1445
442
  #: adminpages/orders.php:1448
443
+ #: includes/profile.php:762
444
  msgid "Email"
445
  msgstr "Email"
446
 
626
  #: adminpages/advancedsettings.php:479
627
  #: classes/gateways/class.pmprogateway_stripe.php:634
628
  #: classes/gateways/class.pmprogateway_stripe.php:648
629
+ #: classes/gateways/class.pmprogateway_stripe.php:640
630
+ #: classes/gateways/class.pmprogateway_stripe.php:654
631
  msgid "No"
632
  msgstr "Ei"
633
 
725
  #: adminpages/advancedsettings.php:397
726
  #: classes/gateways/class.pmprogateway_stripe.php:636
727
  #: classes/gateways/class.pmprogateway_stripe.php:650
728
+ #: classes/gateways/class.pmprogateway_stripe.php:642
729
+ #: classes/gateways/class.pmprogateway_stripe.php:656
730
  msgid "Yes"
731
  msgstr "Jah"
732
 
1005
  #: includes/privacy.php:186
1006
  #: includes/profile.php:495
1007
  #: adminpages/discountcodes.php:489
1008
+ #: includes/profile.php:501
1009
  msgid "Start Date"
1010
  msgstr "Alguse kuupäev"
1011
 
1037
  #: classes/gateways/class.pmprogateway_stripe.php:1301
1038
  #: adminpages/discountcodes.php:507
1039
  #: classes/gateways/class.pmprogateway_stripe.php:1320
1040
+ #: classes/gateways/class.pmprogateway_stripe.php:1326
1041
  msgid "Expiration Date"
1042
  msgstr "Aegumise kuupäev"
1043
 
1176
  #: adminpages/discountcodes.php:612
1177
  #: adminpages/discountcodes.php:699
1178
  #: classes/gateways/class.pmprogateway_stripe.php:1363
1179
+ #: classes/gateways/class.pmprogateway_stripe.php:1369
1180
  msgid "Day(s)"
1181
  msgstr "päev(i)"
1182
 
1209
  #: adminpages/discountcodes.php:612
1210
  #: adminpages/discountcodes.php:699
1211
  #: classes/gateways/class.pmprogateway_stripe.php:1365
1212
+ #: classes/gateways/class.pmprogateway_stripe.php:1371
1213
  msgid "Month(s)"
1214
  msgstr "Kuu(d)"
1215
 
1242
  #: adminpages/discountcodes.php:612
1243
  #: adminpages/discountcodes.php:699
1244
  #: classes/gateways/class.pmprogateway_stripe.php:1364
1245
+ #: classes/gateways/class.pmprogateway_stripe.php:1370
1246
  msgid "Week(s)"
1247
  msgstr "Nädal(ad)"
1248
 
1275
  #: adminpages/discountcodes.php:612
1276
  #: adminpages/discountcodes.php:699
1277
  #: classes/gateways/class.pmprogateway_stripe.php:1366
1278
+ #: classes/gateways/class.pmprogateway_stripe.php:1372
1279
  msgid "Year(s)"
1280
  msgstr "aasta(d)"
1281
 
1867
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1868
  #: adminpages/discountcodes.php:608
1869
  #: classes/gateways/class.pmprogateway_stripe.php:1497
1870
+ #: classes/gateways/class.pmprogateway_stripe.php:1503
1871
  msgid "per"
1872
  msgstr "kohta"
1873
 
2081
  #: pages/cancel.php:96
2082
  #: shortcodes/pmpro_account.php:106
2083
  #: adminpages/orders.php:968
2084
+ #: includes/profile.php:798
2085
+ #: includes/profile.php:922
2086
  msgid "Cancel"
2087
  msgstr "Tühista"
2088
 
2726
  #: adminpages/orders.php:679
2727
  #: classes/gateways/class.pmprogateway_stripe.php:1284
2728
  #: classes/gateways/class.pmprogateway_stripe.php:1303
2729
+ #: classes/gateways/class.pmprogateway_stripe.php:1309
2730
  msgid "Card Type"
2731
  msgstr "Kaardi tüüp"
2732
 
2799
  #: adminpages/dashboard.php:294
2800
  #: adminpages/orders.php:742
2801
  #: adminpages/orders.php:1348
2802
+ #: includes/profile.php:505
2803
  msgid "Status"
2804
  msgstr "Olek"
2805
 
4116
  #: classes/class.pmproemail.php:769
4117
  #: classes/class.pmproemail.php:771
4118
  #: classes/gateways/class.pmprogateway_stripe.php:1333
4119
+ #: classes/gateways/class.pmprogateway_stripe.php:1339
4120
  msgid "Discount Code"
4121
  msgstr "Allahindluse kood"
4122
 
4565
  #: pages/checkout.php:366
4566
  #: classes/gateways/class.pmprogateway_stripe.php:1263
4567
  #: classes/gateways/class.pmprogateway_stripe.php:1282
4568
+ #: classes/gateways/class.pmprogateway_stripe.php:1288
4569
  msgid "Payment Information"
4570
  msgstr "Makse informatsioon"
4571
 
4587
  #: pages/checkout.php:367
4588
  #: classes/gateways/class.pmprogateway_stripe.php:1264
4589
  #: classes/gateways/class.pmprogateway_stripe.php:1283
4590
+ #: classes/gateways/class.pmprogateway_stripe.php:1289
4591
  #, php-format
4592
  msgid "We Accept %s"
4593
  msgstr "Me aktsepteerime %s"
4615
  #: pages/checkout.php:389
4616
  #: classes/gateways/class.pmprogateway_stripe.php:1297
4617
  #: classes/gateways/class.pmprogateway_stripe.php:1316
4618
+ #: classes/gateways/class.pmprogateway_stripe.php:1322
4619
  msgid "Card Number"
4620
  msgstr "Kaardi number"
4621
 
4688
  #: pages/checkout.php:432
4689
  #: classes/gateways/class.pmprogateway_stripe.php:1319
4690
  #: classes/gateways/class.pmprogateway_stripe.php:1338
4691
+ #: classes/gateways/class.pmprogateway_stripe.php:1344
4692
  msgid "Apply"
4693
  msgstr "Rakenda"
4694
 
4923
  #: classes/gateways/class.pmprogateway_paypal.php:132
4924
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
4925
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
4926
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:151
4927
  msgid "PayPal Settings"
4928
  msgstr "PayPal seaded"
4929
 
4945
  #: classes/gateways/class.pmprogateway_paypal.php:153
4946
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
4947
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
4948
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:172
4949
  msgid "Gateway Account Email"
4950
  msgstr "Makse meetodi konto email"
4951
 
4964
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
4965
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
4966
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
4967
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:180
4968
  msgid "API Username"
4969
  msgstr "API Kasutajanimi"
4970
 
4983
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
4984
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
4985
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
4986
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:188
4987
  msgid "API Password"
4988
  msgstr "API Parool"
4989
 
4997
  #: classes/gateways/class.pmprogateway_paypal.php:177
4998
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
4999
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
5000
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:196
5001
  msgid "API Signature"
5002
  msgstr "API Allkiri"
5003
 
5012
  #: classes/gateways/class.pmprogateway_paypal.php:196
5013
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
5014
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
5015
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:215
5016
  msgid "IPN Handler URL"
5017
  msgstr "IPN Handler URL"
5018
 
5038
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
5039
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
5040
  #: pages/checkout.php:218
5041
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:498
5042
  msgid "Check Out with PayPal"
5043
  msgstr "Välju PayPal-iga"
5044
 
5057
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
5058
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5059
  #: pages/checkout.php:526
5060
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
5061
  msgid "Submit and Check Out"
5062
  msgstr "Esitada ja välju"
5063
 
5079
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5080
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
5081
  #: pages/checkout.php:526
5082
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
5083
  msgid "Submit and Confirm"
5084
  msgstr "Esita ja kinnita"
5085
 
5099
  #: classes/gateways/class.pmprogateway_paypal.php:716
5100
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
5101
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
5102
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:841
5103
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
5104
  msgstr "Palun võtke ühendust saidi omanikuga või tühistage tellimus PayPal-is et veenduda, teid ei maksustata edasi minnes."
5105
 
5112
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
5113
  #: paid-memberships-pro.php:160
5114
  #: paid-memberships-pro.php:162
5115
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:94
5116
  msgid "PayPal Express"
5117
  msgstr "PayPal Express"
5118
 
5124
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
5125
  #: classes/gateways/class.pmprogateway_paypal.php:199
5126
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
5127
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:218
5128
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
5129
  msgstr "Täielikuks integratsiooniks PayPal-iga, tehke kindlaks, et seate oma IPN Handler URL-i "
5130
 
5146
  #: preheaders/checkout.php:823
5147
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
5148
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
5149
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:352
5150
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:411
5151
  msgid "The PayPal Token was lost."
5152
  msgstr "PayPal'i Token läks kaduma."
5153
 
5177
  #: classes/gateways/class.pmprogateway_stripe.php:252
5178
  #: paid-memberships-pro.php:159
5179
  #: paid-memberships-pro.php:161
5180
+ #: classes/gateways/class.pmprogateway_stripe.php:258
5181
  msgid "Stripe"
5182
  msgstr "Stripe"
5183
 
5196
  #: classes/gateways/class.pmprogateway_stripe.php:539
5197
  #: classes/gateways/class.pmprogateway_stripe.php:551
5198
  #: classes/gateways/class.pmprogateway_stripe.php:570
5199
+ #: classes/gateways/class.pmprogateway_stripe.php:576
5200
  msgid "Secret Key"
5201
  msgstr "Sala võti"
5202
 
5209
  #: classes/gateways/class.pmprogateway_stripe.php:523
5210
  #: classes/gateways/class.pmprogateway_stripe.php:535
5211
  #: classes/gateways/class.pmprogateway_stripe.php:554
5212
+ #: classes/gateways/class.pmprogateway_stripe.php:560
5213
  msgid "Publishable Key"
5214
  msgstr "Avalikustatav võti"
5215
 
5222
  #: classes/gateways/class.pmprogateway_stripe.php:598
5223
  #: classes/gateways/class.pmprogateway_stripe.php:610
5224
  #: classes/gateways/class.pmprogateway_stripe.php:629
5225
+ #: classes/gateways/class.pmprogateway_stripe.php:635
5226
  msgid "Show Billing Address Fields"
5227
  msgstr "Näita arve aadressi välju"
5228
 
5234
  #: classes/gateways/class.pmprogateway_stripe.php:607
5235
  #: classes/gateways/class.pmprogateway_stripe.php:619
5236
  #: classes/gateways/class.pmprogateway_stripe.php:638
5237
+ #: classes/gateways/class.pmprogateway_stripe.php:644
5238
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
5239
  msgstr "Stripe ei vaja arve aadressi välju. Valige 'Ei' , et peita neid oma väljumise lehel.<br /><strong>Kui EI tehke kindlaks, et olete välja lülitanud aadressi kinnituse Stripe \"köögi\" seadetest.</strong>"
5240
 
5255
  #: classes/gateways/class.pmprogateway_stripe.php:1379
5256
  #: classes/gateways/class.pmprogateway_stripe.php:1391
5257
  #: classes/gateways/class.pmprogateway_stripe.php:1410
5258
+ #: classes/gateways/class.pmprogateway_stripe.php:1416
5259
  msgid "Subscription Updates"
5260
  msgstr "Tellimuse uuendused"
5261
 
5266
  #: classes/gateways/class.pmprogateway_stripe.php:1383
5267
  #: classes/gateways/class.pmprogateway_stripe.php:1395
5268
  #: classes/gateways/class.pmprogateway_stripe.php:1414
5269
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
5270
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
5271
  msgstr "Tellimuse uuendused lubavad muuta liikme liikmeväärtuste eelmääratletud ajal. Kindlasti muljuge uuendage profiili pärast muutuste tegemist."
5272
 
5277
  #: classes/gateways/class.pmprogateway_stripe.php:1385
5278
  #: classes/gateways/class.pmprogateway_stripe.php:1397
5279
  #: classes/gateways/class.pmprogateway_stripe.php:1416
5280
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
5281
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
5282
  msgstr "Tellimuse uuendused lubavad muuta liikme liikmeväärtuste eelmääratletud ajal. Kindlasti muljuge uuendage profiili pärast muutuste tegemist."
5283
 
5294
  #: pages/billing.php:425
5295
  #: classes/gateways/class.pmprogateway_stripe.php:1403
5296
  #: classes/gateways/class.pmprogateway_stripe.php:1422
5297
+ #: classes/gateways/class.pmprogateway_stripe.php:1428
5298
  msgid "Update"
5299
  msgstr "Uuendage"
5300
 
5305
  #: classes/gateways/class.pmprogateway_stripe.php:2480
5306
  #: classes/gateways/class.pmprogateway_stripe.php:2492
5307
  #: classes/gateways/class.pmprogateway_stripe.php:2514
5308
+ #: classes/gateways/class.pmprogateway_stripe.php:2520
5309
  msgid "Could not cancel the old subscription. Updates have not been processed."
5310
  msgstr "Ei saanud vana tellimust tühistada. Värskendusi pole töödeldud."
5311
 
5329
  #: classes/gateways/class.pmprogateway_stripe.php:2127
5330
  #: classes/gateways/class.pmprogateway_stripe.php:2132
5331
  #: classes/gateways/class.pmprogateway_stripe.php:2137
5332
+ #: classes/gateways/class.pmprogateway_stripe.php:2133
5333
+ #: classes/gateways/class.pmprogateway_stripe.php:2138
5334
+ #: classes/gateways/class.pmprogateway_stripe.php:2143
5335
  msgid "Error creating customer record with Stripe:"
5336
  msgstr "Ei õnnestu luua kliendikirjet Stripe-iga:"
5337
 
5342
  #: classes/gateways/class.pmprogateway_stripe.php:2182
5343
  #: classes/gateways/class.pmprogateway_stripe.php:2196
5344
  #: classes/gateways/class.pmprogateway_stripe.php:2201
5345
+ #: classes/gateways/class.pmprogateway_stripe.php:2202
5346
+ #: classes/gateways/class.pmprogateway_stripe.php:2207
5347
  msgid "Error getting subscription with Stripe:"
5348
  msgstr "Viga tellimuse saamisel Stripe-iga:"
5349
 
5372
  #: classes/gateways/class.pmprogateway_stripe.php:2356
5373
  #: classes/gateways/class.pmprogateway_stripe.php:2373
5374
  #: classes/gateways/class.pmprogateway_stripe.php:2378
5375
+ #: classes/gateways/class.pmprogateway_stripe.php:2379
5376
+ #: classes/gateways/class.pmprogateway_stripe.php:2384
5377
  msgid "Error creating plan with Stripe:"
5378
  msgstr "Ei õnnestu luua plaani Stripe-iga:"
5379
 
5397
  #: classes/gateways/class.pmprogateway_stripe.php:2401
5398
  #: classes/gateways/class.pmprogateway_stripe.php:2409
5399
  #: classes/gateways/class.pmprogateway_stripe.php:2423
5400
+ #: classes/gateways/class.pmprogateway_stripe.php:2415
5401
+ #: classes/gateways/class.pmprogateway_stripe.php:2429
5402
  msgid "Error subscribing customer to plan with Stripe:"
5403
  msgstr "Ei õnnestu tellimisel kliendikirje plaani luua Stripe-iga:"
5404
 
5416
  #: classes/gateways/class.pmprogateway_stripe.php:2632
5417
  #: classes/gateways/class.pmprogateway_stripe.php:2644
5418
  #: classes/gateways/class.pmprogateway_stripe.php:2666
5419
+ #: classes/gateways/class.pmprogateway_stripe.php:2672
5420
  msgid "Could not cancel old subscription."
5421
  msgstr "Ei saanud tühistada vana tellimust."
5422
 
5431
  #: classes/gateways/class.pmprogateway_stripe.php:2648
5432
  #: classes/gateways/class.pmprogateway_stripe.php:2660
5433
  #: classes/gateways/class.pmprogateway_stripe.php:2682
5434
+ #: classes/gateways/class.pmprogateway_stripe.php:2688
5435
  msgid "Could not find the customer."
5436
  msgstr "Ei suutnud leida klienti."
5437
 
6437
 
6438
  #: includes/license.php:81
6439
  #: adminpages/license.php:43
6440
+ #: adminpages/license.php:33
6441
  msgid "Paid Memberships Pro Support License"
6442
  msgstr "Paid Memberships Pro toetuse litsents"
6443
 
6457
  #: adminpages/dashboard.php:174
6458
  #: adminpages/license.php:49
6459
  #: adminpages/dashboard.php:178
6460
+ #: adminpages/license.php:41
6461
  msgid "Your license is invalid or expired."
6462
  msgstr "Teie litsentsi võti on kas vale või aegunud."
6463
 
6468
 
6469
  #: includes/license.php:100
6470
  #: adminpages/license.php:59
6471
+ #: adminpages/license.php:51
6472
  msgid "Enter license key here..."
6473
  msgstr "Sisestage litsentsi võti siia...."
6474
 
6647
  #: adminpages/dashboard.php:224
6648
  #: adminpages/dashboard.php:292
6649
  #: adminpages/orders.php:1343
6650
+ #: includes/profile.php:500
6651
  msgid "Level"
6652
  msgstr "Tase"
6653
 
6705
  #: includes/profile.php:747
6706
  #: pages/billing.php:164
6707
  #: pages/checkout.php:234
6708
+ #: includes/profile.php:759
6709
  msgid "First Name"
6710
  msgstr "Eesnimi"
6711
 
6722
  #: includes/profile.php:748
6723
  #: pages/billing.php:168
6724
  #: pages/checkout.php:238
6725
+ #: includes/profile.php:760
6726
  msgid "Last Name"
6727
  msgstr "Perekonnanimi"
6728
 
7765
  #: services/authnet-silent-post.php:133
7766
  #: services/authnet-silent-post.php:138
7767
  #: services/authnet-silent-post.php:173
7768
+ #: services/authnet-silent-post.php:176
7769
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
7770
  msgstr "<p>Makset hoitakse üle vaatamiseks Authorize.net-is.</p><p> Makse informatsioon Authorize.net-ist"
7771
 
7831
  #: includes/profile.php:872
7832
  #: includes/profile.php:909
7833
  #: shortcodes/pmpro_account.php:195
7834
+ #: includes/profile.php:884
7835
+ #: includes/profile.php:921
7836
  msgid "Change Password"
7837
  msgstr "Muuda parooli"
7838
 
7924
  #: adminpages/advancedsettings.php:316
7925
  #: includes/privacy.php:175
7926
  #: includes/profile.php:509
7927
+ #: includes/profile.php:515
7928
  msgid "Never"
7929
  msgstr "Mitte kunagi"
7930
 
8231
 
8232
  #: adminpages/admin_header.php:152
8233
  #: classes/gateways/class.pmprogateway_stripe.php:76
8234
+ #: classes/gateways/class.pmprogateway_stripe.php:82
8235
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
8236
  msgstr ""
8237
 
8504
  #: adminpages/dashboard.php:177
8505
  #: adminpages/license.php:51
8506
  #: adminpages/dashboard.php:181
8507
+ #: adminpages/license.php:43
8508
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
8509
  msgstr ""
8510
 
8945
  msgstr ""
8946
 
8947
  #: adminpages/license.php:47
8948
+ #: adminpages/license.php:39
8949
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
8950
  msgstr ""
8951
 
8952
  #: adminpages/license.php:49
8953
+ #: adminpages/license.php:37
8954
+ #: adminpages/license.php:41
8955
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
8956
  msgstr ""
8957
 
8958
  #: adminpages/license.php:61
8959
+ #: adminpages/license.php:53
8960
  msgid "Validate Key"
8961
  msgstr ""
8962
 
8963
  #: adminpages/license.php:95
8964
+ #: adminpages/license.php:87
8965
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
8966
  msgstr ""
8967
 
9522
 
9523
  #: classes/gateways/class.pmprogateway_braintree.php:87
9524
  #: classes/gateways/class.pmprogateway_stripe.php:91
9525
+ #: classes/gateways/class.pmprogateway_stripe.php:97
9526
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
9527
  msgstr ""
9528
 
9820
  msgstr ""
9821
 
9822
  #: classes/gateways/class.pmprogateway_cybersource.php:922
9823
+ #: includes/license.php:159
9824
  msgid "Unknown error."
9825
  msgstr ""
9826
 
9835
  #: classes/gateways/class.pmprogateway_paypal.php:146
9836
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
9837
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
9838
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:165
9839
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
9840
  msgstr ""
9841
 
9842
  #: classes/gateways/class.pmprogateway_paypal.php:185
9843
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
9844
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:204
9845
  msgid "Confirmation Step"
9846
  msgstr ""
9847
 
9848
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
9849
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:356
9850
  msgid "Checkout was already processed."
9851
  msgstr ""
9852
 
9853
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
9854
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:791
9855
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
9856
  msgstr ""
9857
 
9858
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
9859
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:792
9860
  msgid "Error creating plan with PayPal."
9861
  msgstr ""
9862
 
9868
  #: classes/gateways/class.pmprogateway_stripe.php:436
9869
  #: classes/gateways/class.pmprogateway_stripe.php:354
9870
  #: classes/gateways/class.pmprogateway_stripe.php:444
9871
+ #: classes/gateways/class.pmprogateway_stripe.php:360
9872
+ #: classes/gateways/class.pmprogateway_stripe.php:450
9873
  msgid "Stripe Connect Settings"
9874
  msgstr ""
9875
 
9876
  #: classes/gateways/class.pmprogateway_stripe.php:352
9877
  #: classes/gateways/class.pmprogateway_stripe.php:356
9878
+ #: classes/gateways/class.pmprogateway_stripe.php:362
9879
  msgid "Live Mode:"
9880
  msgstr ""
9881
 
9883
  #: classes/gateways/class.pmprogateway_stripe.php:440
9884
  #: classes/gateways/class.pmprogateway_stripe.php:358
9885
  #: classes/gateways/class.pmprogateway_stripe.php:448
9886
+ #: classes/gateways/class.pmprogateway_stripe.php:364
9887
+ #: classes/gateways/class.pmprogateway_stripe.php:454
9888
  msgid "Connected"
9889
  msgstr ""
9890
 
9892
  #: classes/gateways/class.pmprogateway_stripe.php:442
9893
  #: classes/gateways/class.pmprogateway_stripe.php:362
9894
  #: classes/gateways/class.pmprogateway_stripe.php:452
9895
+ #: classes/gateways/class.pmprogateway_stripe.php:368
9896
+ #: classes/gateways/class.pmprogateway_stripe.php:458
9897
  msgid "Not Connected"
9898
  msgstr ""
9899
 
9901
  #: classes/gateways/class.pmprogateway_stripe.php:449
9902
  #: classes/gateways/class.pmprogateway_stripe.php:369
9903
  #: classes/gateways/class.pmprogateway_stripe.php:459
9904
+ #: classes/gateways/class.pmprogateway_stripe.php:375
9905
+ #: classes/gateways/class.pmprogateway_stripe.php:465
9906
  msgid "Your site is using legacy API keys to authenticate with Stripe."
9907
  msgstr ""
9908
 
9909
  #: classes/gateways/class.pmprogateway_stripe.php:364
9910
  #: classes/gateways/class.pmprogateway_stripe.php:371
9911
+ #: classes/gateways/class.pmprogateway_stripe.php:377
9912
  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."
9913
  msgstr ""
9914
 
9916
  #: classes/gateways/class.pmprogateway_stripe.php:458
9917
  #: classes/gateways/class.pmprogateway_stripe.php:380
9918
  #: classes/gateways/class.pmprogateway_stripe.php:470
9919
+ #: classes/gateways/class.pmprogateway_stripe.php:386
9920
+ #: classes/gateways/class.pmprogateway_stripe.php:476
9921
  msgid "Stripe Connection:"
9922
  msgstr ""
9923
 
9925
  #: classes/gateways/class.pmprogateway_stripe.php:482
9926
  #: classes/gateways/class.pmprogateway_stripe.php:396
9927
  #: classes/gateways/class.pmprogateway_stripe.php:494
9928
+ #: classes/gateways/class.pmprogateway_stripe.php:402
9929
+ #: classes/gateways/class.pmprogateway_stripe.php:500
9930
  msgid "Disconnect From Stripe"
9931
  msgstr ""
9932
 
9933
  #: classes/gateways/class.pmprogateway_stripe.php:389
9934
  #: classes/gateways/class.pmprogateway_stripe.php:397
9935
+ #: classes/gateways/class.pmprogateway_stripe.php:403
9936
  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."
9937
  msgstr ""
9938
 
9940
  #: classes/gateways/class.pmprogateway_stripe.php:496
9941
  #: classes/gateways/class.pmprogateway_stripe.php:409
9942
  #: classes/gateways/class.pmprogateway_stripe.php:508
9943
+ #: classes/gateways/class.pmprogateway_stripe.php:415
9944
+ #: classes/gateways/class.pmprogateway_stripe.php:514
9945
  msgid "Connect with Stripe"
9946
  msgstr ""
9947
 
9948
  #: classes/gateways/class.pmprogateway_stripe.php:408
9949
  #: classes/gateways/class.pmprogateway_stripe.php:416
9950
+ #: classes/gateways/class.pmprogateway_stripe.php:422
9951
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
9952
  msgstr ""
9953
 
9954
  #: classes/gateways/class.pmprogateway_stripe.php:411
9955
  #: classes/gateways/class.pmprogateway_stripe.php:419
9956
+ #: classes/gateways/class.pmprogateway_stripe.php:425
9957
  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."
9958
  msgstr ""
9959
 
9964
  #: classes/gateways/class.pmprogateway_stripe.php:519
9965
  #: classes/gateways/class.pmprogateway_stripe.php:559
9966
  #: classes/gateways/class.pmprogateway_stripe.php:578
9967
+ #: classes/gateways/class.pmprogateway_stripe.php:437
9968
+ #: classes/gateways/class.pmprogateway_stripe.php:525
9969
+ #: classes/gateways/class.pmprogateway_stripe.php:584
9970
  msgid "Webhook"
9971
  msgstr ""
9972
 
9977
  #: classes/gateways/class.pmprogateway_stripe.php:523
9978
  #: classes/gateways/class.pmprogateway_stripe.php:594
9979
  #: classes/gateways/class.pmprogateway_stripe.php:613
9980
+ #: classes/gateways/class.pmprogateway_stripe.php:441
9981
+ #: classes/gateways/class.pmprogateway_stripe.php:529
9982
+ #: classes/gateways/class.pmprogateway_stripe.php:619
9983
  msgid "Webhook URL"
9984
  msgstr ""
9985
 
9986
  #: classes/gateways/class.pmprogateway_stripe.php:438
9987
  #: classes/gateways/class.pmprogateway_stripe.php:446
9988
+ #: classes/gateways/class.pmprogateway_stripe.php:452
9989
  msgid "Test Mode:"
9990
  msgstr ""
9991
 
9992
  #: classes/gateways/class.pmprogateway_stripe.php:450
9993
  #: classes/gateways/class.pmprogateway_stripe.php:461
9994
+ #: classes/gateways/class.pmprogateway_stripe.php:467
9995
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
9996
  msgstr ""
9997
 
9998
  #: classes/gateways/class.pmprogateway_stripe.php:483
9999
  #: classes/gateways/class.pmprogateway_stripe.php:495
10000
+ #: classes/gateways/class.pmprogateway_stripe.php:501
10001
  msgid "This will disconnect your site from Stripe in test mode only."
10002
  msgstr ""
10003
 
10004
  #: classes/gateways/class.pmprogateway_stripe.php:518
10005
  #: classes/gateways/class.pmprogateway_stripe.php:530
10006
+ #: classes/gateways/class.pmprogateway_stripe.php:536
10007
  msgid "Stripe API Settings (Legacy)"
10008
  msgstr ""
10009
 
10010
  #: classes/gateways/class.pmprogateway_stripe.php:531
10011
  #: classes/gateways/class.pmprogateway_stripe.php:543
10012
  #: classes/gateways/class.pmprogateway_stripe.php:562
10013
+ #: classes/gateways/class.pmprogateway_stripe.php:568
10014
  msgid "Your Publishable Key appears incorrect."
10015
  msgstr ""
10016
 
10020
  #: classes/gateways/class.pmprogateway_stripe.php:587
10021
  #: classes/gateways/class.pmprogateway_stripe.php:582
10022
  #: classes/gateways/class.pmprogateway_stripe.php:606
10023
+ #: classes/gateways/class.pmprogateway_stripe.php:588
10024
+ #: classes/gateways/class.pmprogateway_stripe.php:612
10025
  msgid "Create Webhook"
10026
  msgstr ""
10027
 
10028
  #: classes/gateways/class.pmprogateway_stripe.php:557
10029
  #: classes/gateways/class.pmprogateway_stripe.php:569
10030
  #: classes/gateways/class.pmprogateway_stripe.php:588
10031
+ #: classes/gateways/class.pmprogateway_stripe.php:594
10032
  msgid "A webhook is set up in Stripe, but it is disabled."
10033
  msgstr ""
10034
 
10035
  #: classes/gateways/class.pmprogateway_stripe.php:564
10036
  #: classes/gateways/class.pmprogateway_stripe.php:576
10037
  #: classes/gateways/class.pmprogateway_stripe.php:595
10038
+ #: classes/gateways/class.pmprogateway_stripe.php:601
10039
  msgid "A webhook is set up in Stripe, but it is using an old API version."
10040
  msgstr ""
10041
 
10042
  #: classes/gateways/class.pmprogateway_stripe.php:564
10043
  #: classes/gateways/class.pmprogateway_stripe.php:576
10044
  #: classes/gateways/class.pmprogateway_stripe.php:595
10045
+ #: classes/gateways/class.pmprogateway_stripe.php:601
10046
  msgid "Rebuild Webhook"
10047
  msgstr ""
10048
 
10055
  #: classes/gateways/class.pmprogateway_stripe.php:601
10056
  #: classes/gateways/class.pmprogateway_stripe.php:741
10057
  #: classes/gateways/class.pmprogateway_stripe.php:857
10058
+ #: classes/gateways/class.pmprogateway_stripe.php:607
10059
+ #: classes/gateways/class.pmprogateway_stripe.php:747
10060
+ #: classes/gateways/class.pmprogateway_stripe.php:863
10061
  msgid "Your webhook is enabled."
10062
  msgstr ""
10063
 
10064
  #: classes/gateways/class.pmprogateway_stripe.php:570
10065
  #: classes/gateways/class.pmprogateway_stripe.php:582
10066
  #: classes/gateways/class.pmprogateway_stripe.php:601
10067
+ #: classes/gateways/class.pmprogateway_stripe.php:607
10068
  msgid "Disable Webhook"
10069
  msgstr ""
10070
 
10080
  #: classes/gateways/class.pmprogateway_stripe.php:768
10081
  #: classes/gateways/class.pmprogateway_stripe.php:785
10082
  #: classes/gateways/class.pmprogateway_stripe.php:819
10083
+ #: classes/gateways/class.pmprogateway_stripe.php:614
10084
+ #: classes/gateways/class.pmprogateway_stripe.php:774
10085
+ #: classes/gateways/class.pmprogateway_stripe.php:791
10086
+ #: classes/gateways/class.pmprogateway_stripe.php:825
10087
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
10088
  msgstr ""
10089
 
10090
  #: classes/gateways/class.pmprogateway_stripe.php:589
10091
  #: classes/gateways/class.pmprogateway_stripe.php:601
10092
  #: classes/gateways/class.pmprogateway_stripe.php:620
10093
+ #: classes/gateways/class.pmprogateway_stripe.php:626
10094
  msgid "Other Stripe Settings"
10095
  msgstr ""
10096
 
10097
  #: classes/gateways/class.pmprogateway_stripe.php:593
10098
  #: classes/gateways/class.pmprogateway_stripe.php:605
10099
  #: classes/gateways/class.pmprogateway_stripe.php:624
10100
+ #: classes/gateways/class.pmprogateway_stripe.php:630
10101
  msgid "Stripe API Version"
10102
  msgstr ""
10103
 
10104
  #: classes/gateways/class.pmprogateway_stripe.php:612
10105
  #: classes/gateways/class.pmprogateway_stripe.php:624
10106
  #: classes/gateways/class.pmprogateway_stripe.php:643
10107
+ #: classes/gateways/class.pmprogateway_stripe.php:649
10108
  msgid "Enable Payment Request Button"
10109
  msgstr ""
10110
 
10111
  #: classes/gateways/class.pmprogateway_stripe.php:630
10112
  #: classes/gateways/class.pmprogateway_stripe.php:642
10113
  #: classes/gateways/class.pmprogateway_stripe.php:661
10114
+ #: classes/gateways/class.pmprogateway_stripe.php:667
10115
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
10116
  msgstr ""
10117
 
10118
  #: classes/gateways/class.pmprogateway_stripe.php:643
10119
  #: classes/gateways/class.pmprogateway_stripe.php:655
10120
  #: classes/gateways/class.pmprogateway_stripe.php:674
10121
+ #: classes/gateways/class.pmprogateway_stripe.php:680
10122
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
10123
  msgstr ""
10124
 
10125
  #: classes/gateways/class.pmprogateway_stripe.php:645
10126
  #: classes/gateways/class.pmprogateway_stripe.php:657
10127
  #: classes/gateways/class.pmprogateway_stripe.php:676
10128
+ #: classes/gateways/class.pmprogateway_stripe.php:682
10129
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
10130
  msgstr ""
10131
 
10132
  #: classes/gateways/class.pmprogateway_stripe.php:647
10133
  #: classes/gateways/class.pmprogateway_stripe.php:659
10134
  #: classes/gateways/class.pmprogateway_stripe.php:678
10135
+ #: classes/gateways/class.pmprogateway_stripe.php:684
10136
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
10137
  msgstr ""
10138
 
10139
  #: classes/gateways/class.pmprogateway_stripe.php:649
10140
  #: classes/gateways/class.pmprogateway_stripe.php:661
10141
  #: classes/gateways/class.pmprogateway_stripe.php:680
10142
+ #: classes/gateways/class.pmprogateway_stripe.php:686
10143
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
10144
  msgstr ""
10145
 
10146
  #: classes/gateways/class.pmprogateway_stripe.php:674
10147
  #: classes/gateways/class.pmprogateway_stripe.php:686
10148
  #: classes/gateways/class.pmprogateway_stripe.php:705
10149
+ #: classes/gateways/class.pmprogateway_stripe.php:711
10150
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
10151
  msgstr ""
10152
 
10153
  #: classes/gateways/class.pmprogateway_stripe.php:695
10154
  #: classes/gateways/class.pmprogateway_stripe.php:707
10155
  #: classes/gateways/class.pmprogateway_stripe.php:726
10156
+ #: classes/gateways/class.pmprogateway_stripe.php:732
10157
  msgid "Webhook creation failed. You might already have a webhook set up."
10158
  msgstr ""
10159
 
10163
  #: classes/gateways/class.pmprogateway_stripe.php:847
10164
  #: classes/gateways/class.pmprogateway_stripe.php:792
10165
  #: classes/gateways/class.pmprogateway_stripe.php:866
10166
+ #: classes/gateways/class.pmprogateway_stripe.php:798
10167
+ #: classes/gateways/class.pmprogateway_stripe.php:872
10168
  msgid "There was an error deleting the webhook."
10169
  msgstr ""
10170
 
10171
  #: classes/gateways/class.pmprogateway_stripe.php:811
10172
  #: classes/gateways/class.pmprogateway_stripe.php:823
10173
  #: classes/gateways/class.pmprogateway_stripe.php:842
10174
+ #: classes/gateways/class.pmprogateway_stripe.php:848
10175
  msgid "Webhook creation failed. Please refresh and try again."
10176
  msgstr ""
10177
 
10178
  #: classes/gateways/class.pmprogateway_stripe.php:867
10179
  #: classes/gateways/class.pmprogateway_stripe.php:879
10180
  #: classes/gateways/class.pmprogateway_stripe.php:898
10181
+ #: classes/gateways/class.pmprogateway_stripe.php:904
10182
  msgid "Verification steps confirmed. Your payment is processing."
10183
  msgstr ""
10184
 
10185
  #: classes/gateways/class.pmprogateway_stripe.php:1262
10186
  #: classes/gateways/class.pmprogateway_stripe.php:1274
10187
  #: classes/gateways/class.pmprogateway_stripe.php:1293
10188
+ #: classes/gateways/class.pmprogateway_stripe.php:1299
10189
  msgid "Pay with Credit Card"
10190
  msgstr ""
10191
 
10192
  #: classes/gateways/class.pmprogateway_stripe.php:1296
10193
  #: classes/gateways/class.pmprogateway_stripe.php:1308
10194
  #: classes/gateways/class.pmprogateway_stripe.php:1327
10195
+ #: classes/gateways/class.pmprogateway_stripe.php:1333
10196
  msgid "CVC"
10197
  msgstr ""
10198
 
10199
  #: classes/gateways/class.pmprogateway_stripe.php:1374
10200
  #: classes/gateways/class.pmprogateway_stripe.php:1386
10201
  #: classes/gateways/class.pmprogateway_stripe.php:1405
10202
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
10203
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
10204
  msgstr ""
10205
 
10215
  #: classes/gateways/class.pmprogateway_stripe.php:2016
10216
  #: classes/gateways/class.pmprogateway_stripe.php:2029
10217
  #: classes/gateways/class.pmprogateway_stripe.php:2033
10218
+ #: classes/gateways/class.pmprogateway_stripe.php:2018
10219
+ #: classes/gateways/class.pmprogateway_stripe.php:2022
10220
+ #: classes/gateways/class.pmprogateway_stripe.php:2035
10221
+ #: classes/gateways/class.pmprogateway_stripe.php:2039
10222
  msgid "Error: %s"
10223
  msgstr ""
10224
 
10228
  #: classes/gateways/class.pmprogateway_stripe.php:2834
10229
  #: classes/gateways/class.pmprogateway_stripe.php:2850
10230
  #: classes/gateways/class.pmprogateway_stripe.php:2856
10231
+ #: classes/gateways/class.pmprogateway_stripe.php:2862
10232
  msgid "Error: "
10233
  msgstr ""
10234
 
10235
  #: classes/gateways/class.pmprogateway_stripe.php:2836
10236
  #: classes/gateways/class.pmprogateway_stripe.php:2848
10237
  #: classes/gateways/class.pmprogateway_stripe.php:2870
10238
+ #: classes/gateways/class.pmprogateway_stripe.php:2876
10239
  msgid "Error: Unkown error while refunding charge #%s"
10240
  msgstr ""
10241
 
10242
  #: classes/gateways/class.pmprogateway_stripe.php:3330
10243
  #: classes/gateways/class.pmprogateway_stripe.php:3342
10244
  #: classes/gateways/class.pmprogateway_stripe.php:3364
10245
+ #: classes/gateways/class.pmprogateway_stripe.php:3370
10246
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
10247
  msgstr ""
10248
 
10249
  #: classes/gateways/class.pmprogateway_stripe.php:3347
10250
  #: classes/gateways/class.pmprogateway_stripe.php:3359
10251
  #: classes/gateways/class.pmprogateway_stripe.php:3381
10252
+ #: classes/gateways/class.pmprogateway_stripe.php:3387
10253
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
10254
  msgstr ""
10255
 
10256
  #: classes/gateways/class.pmprogateway_stripe.php:3533
10257
  #: classes/gateways/class.pmprogateway_stripe.php:3545
10258
  #: classes/gateways/class.pmprogateway_stripe.php:3567
10259
+ #: classes/gateways/class.pmprogateway_stripe.php:3573
10260
  msgid "Invalid response from the Stripe Connect server."
10261
  msgstr ""
10262
 
10264
  #: classes/gateways/class.pmprogateway_stripe.php:3561
10265
  #: classes/gateways/class.pmprogateway_stripe.php:3573
10266
  #: classes/gateways/class.pmprogateway_stripe.php:3595
10267
+ #: classes/gateways/class.pmprogateway_stripe.php:3601
10268
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
10269
  msgstr ""
10270
 
10272
  #: classes/gateways/class.pmprogateway_stripe.php:3597
10273
  #: classes/gateways/class.pmprogateway_stripe.php:3609
10274
  #: classes/gateways/class.pmprogateway_stripe.php:3631
10275
+ #: classes/gateways/class.pmprogateway_stripe.php:3637
10276
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
10277
  msgstr ""
10278
 
10279
  #: classes/gateways/class.pmprogateway_stripe.php:3768
10280
  #: classes/gateways/class.pmprogateway_stripe.php:3780
10281
  #: classes/gateways/class.pmprogateway_stripe.php:3802
10282
+ #: classes/gateways/class.pmprogateway_stripe.php:3808
10283
  msgid "Last webhook received at"
10284
  msgstr ""
10285
 
10286
  #: classes/gateways/class.pmprogateway_stripe.php:3770
10287
  #: classes/gateways/class.pmprogateway_stripe.php:3782
10288
  #: classes/gateways/class.pmprogateway_stripe.php:3804
10289
+ #: classes/gateways/class.pmprogateway_stripe.php:3810
10290
  msgid "No webhooks have been received."
10291
  msgstr ""
10292
 
10293
  #: classes/gateways/class.pmprogateway_stripe.php:3774
10294
  #: classes/gateways/class.pmprogateway_stripe.php:3786
10295
  #: classes/gateways/class.pmprogateway_stripe.php:3808
10296
+ #: classes/gateways/class.pmprogateway_stripe.php:3814
10297
  msgid "Your webhook may not be working correctly."
10298
  msgstr ""
10299
 
10300
  #: classes/gateways/class.pmprogateway_stripe.php:3776
10301
  #: classes/gateways/class.pmprogateway_stripe.php:3788
10302
  #: classes/gateways/class.pmprogateway_stripe.php:3810
10303
+ #: classes/gateways/class.pmprogateway_stripe.php:3816
10304
  msgid "Click here for info on setting up your webhook with Stripe."
10305
  msgstr ""
10306
 
12417
 
12418
  #: includes/login.php:429
12419
  #: includes/profile.php:843
12420
+ #: includes/profile.php:855
12421
  msgid "New passwords do not match."
12422
  msgstr ""
12423
 
12424
  #: includes/login.php:433
12425
  #: includes/profile.php:839
12426
+ #: includes/profile.php:851
12427
  msgid "Please complete all fields."
12428
  msgstr ""
12429
 
12453
 
12454
  #: includes/login.php:688
12455
  #: includes/profile.php:891
12456
+ #: includes/profile.php:903
12457
  msgid "New Password"
12458
  msgstr ""
12459
 
12460
  #: includes/login.php:690
12461
  #: includes/profile.php:894
12462
  #: includes/scripts.php:86
12463
+ #: includes/profile.php:906
12464
+ #: includes/scripts.php:85
12465
  msgid "Strength Indicator"
12466
  msgstr ""
12467
 
12468
  #: includes/login.php:694
12469
  #: includes/profile.php:898
12470
+ #: includes/profile.php:910
12471
  msgid "Confirm New Password"
12472
  msgstr ""
12473
 
12564
  #: includes/privacy.php:182
12565
  #: includes/profile.php:425
12566
  #: includes/profile.php:493
12567
+ #: includes/profile.php:499
12568
  msgid "Level ID"
12569
  msgstr ""
12570
 
12571
  #: includes/privacy.php:190
12572
  #: includes/profile.php:496
12573
+ #: includes/profile.php:502
12574
  msgid "Date Modified"
12575
  msgstr ""
12576
 
12577
  #: includes/privacy.php:194
12578
  #: includes/profile.php:497
12579
+ #: includes/profile.php:503
12580
  msgid "End Date"
12581
  msgstr ""
12582
 
12583
  #: includes/privacy.php:198
12584
  #: includes/profile.php:498
12585
+ #: includes/profile.php:504
12586
  msgid "Level Cost"
12587
  msgstr ""
12588
 
12681
  msgstr ""
12682
 
12683
  #: includes/profile.php:485
12684
+ #: includes/profile.php:488
12685
  msgid "No membership orders found."
12686
  msgstr ""
12687
 
12688
  #: includes/profile.php:537
12689
+ #: includes/profile.php:546
12690
  msgid "No membership history found."
12691
  msgstr ""
12692
 
12693
  #: includes/profile.php:644
12694
+ #: includes/profile.php:656
12695
  msgid "Log in to edit your profile."
12696
  msgstr ""
12697
 
12698
  #: includes/profile.php:679
12699
+ #: includes/profile.php:691
12700
  msgid "Please enter a display name."
12701
  msgstr ""
12702
 
12703
  #: includes/profile.php:689
12704
+ #: includes/profile.php:701
12705
  msgid "Please enter an email address."
12706
  msgstr ""
12707
 
12708
  #: includes/profile.php:691
12709
+ #: includes/profile.php:703
12710
  msgid "The email address isn&#8217;t correct."
12711
  msgstr ""
12712
 
12713
  #: includes/profile.php:695
12714
+ #: includes/profile.php:707
12715
  msgid "This email is already registered, please choose another one."
12716
  msgstr ""
12717
 
12718
  #: includes/profile.php:722
12719
+ #: includes/profile.php:734
12720
  msgid "Your profile has been updated."
12721
  msgstr ""
12722
 
12723
  #: includes/profile.php:749
12724
+ #: includes/profile.php:761
12725
  msgid "Display name publicly as"
12726
  msgstr ""
12727
 
12728
  #: includes/profile.php:762
12729
+ #: includes/profile.php:774
12730
  msgid "Site administrators must use the WordPress dashboard to update their email address."
12731
  msgstr ""
12732
 
12733
  #: includes/profile.php:785
12734
+ #: includes/profile.php:797
12735
  msgid "Update Profile"
12736
  msgstr ""
12737
 
12738
  #: includes/profile.php:841
12739
+ #: includes/profile.php:853
12740
  msgid "Please enter your current password."
12741
  msgstr ""
12742
 
12743
  #: includes/profile.php:845
12744
+ #: includes/profile.php:857
12745
  msgid "Your current password is incorrect."
12746
  msgstr ""
12747
 
12748
  #: includes/profile.php:856
12749
+ #: includes/profile.php:868
12750
  msgid "Your password has been updated."
12751
  msgstr ""
12752
 
12753
  #: includes/profile.php:886
12754
+ #: includes/profile.php:898
12755
  msgid "Current Password"
12756
  msgstr ""
12757
 
12758
  #: includes/profile.php:888
12759
  #: includes/profile.php:893
12760
  #: includes/profile.php:900
12761
+ #: includes/profile.php:905
12762
+ #: includes/profile.php:912
12763
  msgid "Required Field"
12764
  msgstr ""
12765
 
12864
  msgstr ""
12865
 
12866
  #: services/braintree-webhook.php:425
12867
+ #: services/braintree-webhook.php:426
12868
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
12869
  msgstr ""
12870
 
12871
  #: services/braintree-webhook.php:427
12872
+ #: services/braintree-webhook.php:428
12873
  msgid "A member's Braintree subscription has expired at %s"
12874
  msgstr ""
12875
 
13188
 
13189
  #: classes/gateways/class.pmprogateway_stripe.php:360
13190
  #: classes/gateways/class.pmprogateway_stripe.php:450
13191
+ #: classes/gateways/class.pmprogateway_stripe.php:366
13192
+ #: classes/gateways/class.pmprogateway_stripe.php:456
13193
  msgid "Connected with Legacy Keys"
13194
  msgstr ""
13195
 
13196
  #: classes/gateways/class.pmprogateway_stripe.php:370
13197
  #: classes/gateways/class.pmprogateway_stripe.php:460
13198
+ #: classes/gateways/class.pmprogateway_stripe.php:376
13199
+ #: classes/gateways/class.pmprogateway_stripe.php:466
13200
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
13201
  msgstr ""
13202
 
13203
  #: classes/gateways/class.pmprogateway_stripe.php:372
13204
  #: classes/gateways/class.pmprogateway_stripe.php:462
13205
+ #: classes/gateways/class.pmprogateway_stripe.php:378
13206
+ #: classes/gateways/class.pmprogateway_stripe.php:468
13207
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
13208
  msgstr ""
13209
 
13260
  msgstr ""
13261
 
13262
  #: classes/gateways/class.pmprogateway_stripe.php:533
13263
+ #: classes/gateways/class.pmprogateway_stripe.php:539
13264
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
13265
  msgstr ""
13266
 
13267
  #: classes/gateways/class.pmprogateway_stripe.php:534
13268
+ #: classes/gateways/class.pmprogateway_stripe.php:540
13269
  msgid "Click here to use the legacy API settings."
13270
  msgstr ""
13271
 
13272
  #: paid-memberships-pro.php:194
13273
  msgid "Once a month"
13274
  msgstr ""
13275
+
13276
+ #: adminpages/license.php:37
13277
+ msgid "There was an issue validating your license key: %s"
13278
+ msgstr ""
13279
+
13280
+ #: includes/email-templates.php:172
13281
+ msgid ""
13282
+ "<p>There was a new member checkout at !!sitename!!.</p>\n"
13283
+ "\n"
13284
+ "<p><strong>They have chosen to pay by check.</strong></p>\n"
13285
+ "\n"
13286
+ "<p>Below are details about the new membership account and a receipt for the initial membership invoice.</p>\n"
13287
+ "\n"
13288
+ "<p>Account: !!display_name!! (!!user_email!!)</p>\n"
13289
+ "<p>Membership Level: !!membership_level_name!!</p>\n"
13290
+ "<p>Membership Fee: !!membership_cost!!</p>\n"
13291
+ "!!membership_expiration!! !!discount_code!!\n"
13292
+ "\n"
13293
+ "<p>\n"
13294
+ "\tInvoice #!!invoice_id!! on !!invoice_date!!<br />\n"
13295
+ "\tTotal Billed: !!invoice_total!!\n"
13296
+ "</p>\n"
13297
+ "\n"
13298
+ "<p>Log in to your membership account here: !!login_url!!</p>"
13299
+ msgstr ""
13300
+
13301
+ #: includes/license.php:112
13302
+ msgid "Missing key."
13303
+ msgstr ""
13304
+
13305
+ #: shortcodes/pmpro_account.php:145
13306
+ msgctxt "A dash is shown when there is no expiration date."
13307
+ msgid "&#8212;"
13308
+ msgstr ""
languages/paid-memberships-pro-fa_IR.mo CHANGED
Binary file
languages/paid-memberships-pro-fa_IR.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.2\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-09-17T13:57:20+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -257,6 +257,9 @@ msgstr "WordPress.org"
257
  #: adminpages/orders.php:1544
258
  #: adminpages/orders.php:1554
259
  #: adminpages/orders.php:1553
 
 
 
260
  msgid "N/A"
261
  msgstr "N/A"
262
 
@@ -435,6 +438,7 @@ msgstr "درگاه پرداخت و گواهی اس اس ال"
435
  #: adminpages/orders.php:391
436
  #: adminpages/orders.php:1445
437
  #: adminpages/orders.php:1448
 
438
  msgid "Email"
439
  msgstr "ایمیل"
440
 
@@ -620,6 +624,8 @@ msgstr "مخفی سازی تبلیغات از دید اعضاء؟"
620
  #: adminpages/advancedsettings.php:479
621
  #: classes/gateways/class.pmprogateway_stripe.php:634
622
  #: classes/gateways/class.pmprogateway_stripe.php:648
 
 
623
  msgid "No"
624
  msgstr "خیر"
625
 
@@ -717,6 +723,8 @@ msgstr "تنها چند سایت"
717
  #: adminpages/advancedsettings.php:397
718
  #: classes/gateways/class.pmprogateway_stripe.php:636
719
  #: classes/gateways/class.pmprogateway_stripe.php:650
 
 
720
  msgid "Yes"
721
  msgstr "بله"
722
 
@@ -990,6 +998,7 @@ msgstr "کد"
990
  #: includes/privacy.php:186
991
  #: includes/profile.php:495
992
  #: adminpages/discountcodes.php:489
 
993
  msgid "Start Date"
994
  msgstr "تاریخ شروع"
995
 
@@ -1018,6 +1027,7 @@ msgstr "تاریخ شروع"
1018
  #: classes/gateways/class.pmprogateway_stripe.php:1301
1019
  #: adminpages/discountcodes.php:507
1020
  #: classes/gateways/class.pmprogateway_stripe.php:1320
 
1021
  msgid "Expiration Date"
1022
  msgstr "تاریخ انقضاء"
1023
 
@@ -1155,6 +1165,7 @@ msgstr "مقدار صورتحساب"
1155
  #: adminpages/discountcodes.php:612
1156
  #: adminpages/discountcodes.php:699
1157
  #: classes/gateways/class.pmprogateway_stripe.php:1363
 
1158
  msgid "Day(s)"
1159
  msgstr "روز"
1160
 
@@ -1186,6 +1197,7 @@ msgstr "روز"
1186
  #: adminpages/discountcodes.php:612
1187
  #: adminpages/discountcodes.php:699
1188
  #: classes/gateways/class.pmprogateway_stripe.php:1365
 
1189
  msgid "Month(s)"
1190
  msgstr "ماه"
1191
 
@@ -1217,6 +1229,7 @@ msgstr "ماه"
1217
  #: adminpages/discountcodes.php:612
1218
  #: adminpages/discountcodes.php:699
1219
  #: classes/gateways/class.pmprogateway_stripe.php:1364
 
1220
  msgid "Week(s)"
1221
  msgstr "هفته"
1222
 
@@ -1248,6 +1261,7 @@ msgstr "هفته"
1248
  #: adminpages/discountcodes.php:612
1249
  #: adminpages/discountcodes.php:699
1250
  #: classes/gateways/class.pmprogateway_stripe.php:1366
 
1251
  msgid "Year(s)"
1252
  msgstr "سال"
1253
 
@@ -1833,6 +1847,7 @@ msgstr "جزیئات صورتحساب"
1833
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1834
  #: adminpages/discountcodes.php:608
1835
  #: classes/gateways/class.pmprogateway_stripe.php:1497
 
1836
  msgid "per"
1837
  msgstr "به ازای"
1838
 
@@ -2043,6 +2058,8 @@ msgstr "ذخیره سطح"
2043
  #: pages/cancel.php:96
2044
  #: shortcodes/pmpro_account.php:106
2045
  #: adminpages/orders.php:968
 
 
2046
  msgid "Cancel"
2047
  msgstr "لغو کردن"
2048
 
@@ -2627,6 +2644,7 @@ msgstr "به عنوان مثال، پی پال اکسپرس، پی پال است
2627
  #: adminpages/orders.php:679
2628
  #: classes/gateways/class.pmprogateway_stripe.php:1284
2629
  #: classes/gateways/class.pmprogateway_stripe.php:1303
 
2630
  msgid "Card Type"
2631
  msgstr "نوع کارت"
2632
 
@@ -2692,6 +2710,7 @@ msgstr "سال انقضا"
2692
  #: adminpages/dashboard.php:294
2693
  #: adminpages/orders.php:742
2694
  #: adminpages/orders.php:1348
 
2695
  msgid "Status"
2696
  msgstr "وضعیت"
2697
 
@@ -3899,6 +3918,7 @@ msgstr "تایید عضویت شما برای %s"
3899
  #: classes/class.pmproemail.php:769
3900
  #: classes/class.pmproemail.php:771
3901
  #: classes/gateways/class.pmprogateway_stripe.php:1333
 
3902
  msgid "Discount Code"
3903
  msgstr "کد تخفیف"
3904
 
@@ -4338,6 +4358,7 @@ msgstr "برای ادغام کامل با Braintree، مطمئن شوید که
4338
  #: pages/checkout.php:366
4339
  #: classes/gateways/class.pmprogateway_stripe.php:1263
4340
  #: classes/gateways/class.pmprogateway_stripe.php:1282
 
4341
  msgid "Payment Information"
4342
  msgstr "اطلاعات پرداخت"
4343
 
@@ -4357,6 +4378,7 @@ msgstr "اطلاعات پرداخت"
4357
  #: pages/checkout.php:367
4358
  #: classes/gateways/class.pmprogateway_stripe.php:1264
4359
  #: classes/gateways/class.pmprogateway_stripe.php:1283
 
4360
  #, php-format
4361
  msgid "We Accept %s"
4362
  msgstr "ما پذیرفتیم %s"
@@ -4381,6 +4403,7 @@ msgstr "ما پذیرفتیم %s"
4381
  #: pages/checkout.php:389
4382
  #: classes/gateways/class.pmprogateway_stripe.php:1297
4383
  #: classes/gateways/class.pmprogateway_stripe.php:1316
 
4384
  msgid "Card Number"
4385
  msgstr "شماره کارت"
4386
 
@@ -4444,6 +4467,7 @@ msgstr "این چیست؟"
4444
  #: pages/checkout.php:432
4445
  #: classes/gateways/class.pmprogateway_stripe.php:1319
4446
  #: classes/gateways/class.pmprogateway_stripe.php:1338
 
4447
  msgid "Apply"
4448
  msgstr "اعمال"
4449
 
@@ -4674,6 +4698,7 @@ msgstr "PayPal Website Payments Pro"
4674
  #: classes/gateways/class.pmprogateway_paypal.php:132
4675
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
4676
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
 
4677
  msgid "PayPal Settings"
4678
  msgstr "تنظیمات PayPal"
4679
 
@@ -4695,6 +4720,7 @@ msgstr "ما استفاده از پی پال استاندارد را توصیه
4695
  #: classes/gateways/class.pmprogateway_paypal.php:153
4696
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
4697
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
 
4698
  msgid "Gateway Account Email"
4699
  msgstr "ایمیل حساب کاربری درگاه پرداخت"
4700
 
@@ -4713,6 +4739,7 @@ msgstr "ایمیل حساب کاربری درگاه پرداخت"
4713
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
4714
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
4715
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
 
4716
  msgid "API Username"
4717
  msgstr "نام کاربری API"
4718
 
@@ -4731,6 +4758,7 @@ msgstr "نام کاربری API"
4731
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
4732
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
4733
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
 
4734
  msgid "API Password"
4735
  msgstr "رمز عبور API"
4736
 
@@ -4744,6 +4772,7 @@ msgstr "رمز عبور API"
4744
  #: classes/gateways/class.pmprogateway_paypal.php:177
4745
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
4746
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
 
4747
  msgid "API Signature"
4748
  msgstr "امضاء API"
4749
 
@@ -4758,6 +4787,7 @@ msgstr "امضاء API"
4758
  #: classes/gateways/class.pmprogateway_paypal.php:196
4759
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
4760
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
 
4761
  msgid "IPN Handler URL"
4762
  msgstr "آدرس IPN Handler"
4763
 
@@ -4782,6 +4812,7 @@ msgstr "This URL is passed to PayPal for all new charges and subscriptions. You
4782
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
4783
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
4784
  #: pages/checkout.php:218
 
4785
  msgid "Check Out with PayPal"
4786
  msgstr "Check Out with PayPal"
4787
 
@@ -4799,6 +4830,7 @@ msgstr "Check Out with PayPal"
4799
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
4800
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
4801
  #: pages/checkout.php:526
 
4802
  msgid "Submit and Check Out"
4803
  msgstr "Submit and Check Out"
4804
 
@@ -4819,6 +4851,7 @@ msgstr "Submit and Check Out"
4819
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
4820
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
4821
  #: pages/checkout.php:526
 
4822
  msgid "Submit and Confirm"
4823
  msgstr "Submit and Confirm"
4824
 
@@ -4838,6 +4871,7 @@ msgstr "Submit and Confirm"
4838
  #: classes/gateways/class.pmprogateway_paypal.php:716
4839
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
4840
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
 
4841
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
4842
  msgstr "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
4843
 
@@ -4849,6 +4883,7 @@ msgstr "Please contact the site owner or cancel your subscription from within Pa
4849
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
4850
  #: paid-memberships-pro.php:160
4851
  #: paid-memberships-pro.php:162
 
4852
  msgid "PayPal Express"
4853
  msgstr "PayPal Express"
4854
 
@@ -4860,6 +4895,7 @@ msgstr "PayPal Express"
4860
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
4861
  #: classes/gateways/class.pmprogateway_paypal.php:199
4862
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
 
4863
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
4864
  msgstr "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
4865
 
@@ -4881,6 +4917,8 @@ msgstr "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
4881
  #: preheaders/checkout.php:823
4882
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
4883
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
 
 
4884
  msgid "The PayPal Token was lost."
4885
  msgstr "The PayPal Token was lost."
4886
 
@@ -4908,6 +4946,7 @@ msgstr "Here is your IPN URL for reference. You SHOULD NOT set this in your PayP
4908
  #: classes/gateways/class.pmprogateway_stripe.php:252
4909
  #: paid-memberships-pro.php:159
4910
  #: paid-memberships-pro.php:161
 
4911
  msgid "Stripe"
4912
  msgstr "Stripe"
4913
 
@@ -4926,6 +4965,7 @@ msgstr "Stripe Settings"
4926
  #: classes/gateways/class.pmprogateway_stripe.php:539
4927
  #: classes/gateways/class.pmprogateway_stripe.php:551
4928
  #: classes/gateways/class.pmprogateway_stripe.php:570
 
4929
  msgid "Secret Key"
4930
  msgstr "Secret Key"
4931
 
@@ -4938,6 +4978,7 @@ msgstr "Secret Key"
4938
  #: classes/gateways/class.pmprogateway_stripe.php:523
4939
  #: classes/gateways/class.pmprogateway_stripe.php:535
4940
  #: classes/gateways/class.pmprogateway_stripe.php:554
 
4941
  msgid "Publishable Key"
4942
  msgstr "Publishable Key"
4943
 
@@ -4950,6 +4991,7 @@ msgstr "Publishable Key"
4950
  #: classes/gateways/class.pmprogateway_stripe.php:598
4951
  #: classes/gateways/class.pmprogateway_stripe.php:610
4952
  #: classes/gateways/class.pmprogateway_stripe.php:629
 
4953
  msgid "Show Billing Address Fields"
4954
  msgstr "Show Billing Address Fields"
4955
 
@@ -4961,6 +5003,7 @@ msgstr "Show Billing Address Fields"
4961
  #: classes/gateways/class.pmprogateway_stripe.php:607
4962
  #: classes/gateways/class.pmprogateway_stripe.php:619
4963
  #: classes/gateways/class.pmprogateway_stripe.php:638
 
4964
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
4965
  msgstr "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
4966
 
@@ -4980,6 +5023,7 @@ msgstr "To fully integrate with Stripe, be sure to set your Web Hook URL to"
4980
  #: classes/gateways/class.pmprogateway_stripe.php:1379
4981
  #: classes/gateways/class.pmprogateway_stripe.php:1391
4982
  #: classes/gateways/class.pmprogateway_stripe.php:1410
 
4983
  msgid "Subscription Updates"
4984
  msgstr "به روز رسانی اشتراک"
4985
 
@@ -4989,6 +5033,7 @@ msgstr "به روز رسانی اشتراک"
4989
  #: classes/gateways/class.pmprogateway_stripe.php:1383
4990
  #: classes/gateways/class.pmprogateway_stripe.php:1395
4991
  #: classes/gateways/class.pmprogateway_stripe.php:1414
 
4992
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
4993
  msgstr "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
4994
 
@@ -4998,6 +5043,7 @@ msgstr "Subscription updates, allow you to change the member's subscription valu
4998
  #: classes/gateways/class.pmprogateway_stripe.php:1385
4999
  #: classes/gateways/class.pmprogateway_stripe.php:1397
5000
  #: classes/gateways/class.pmprogateway_stripe.php:1416
 
5001
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
5002
  msgstr "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
5003
 
@@ -5012,6 +5058,7 @@ msgstr "Subscription updates, allow you to change the member's subscription valu
5012
  #: pages/billing.php:425
5013
  #: classes/gateways/class.pmprogateway_stripe.php:1403
5014
  #: classes/gateways/class.pmprogateway_stripe.php:1422
 
5015
  msgid "Update"
5016
  msgstr "‌بروزرسانی"
5017
 
@@ -5021,6 +5068,7 @@ msgstr "‌بروزرسانی"
5021
  #: classes/gateways/class.pmprogateway_stripe.php:2480
5022
  #: classes/gateways/class.pmprogateway_stripe.php:2492
5023
  #: classes/gateways/class.pmprogateway_stripe.php:2514
 
5024
  msgid "Could not cancel the old subscription. Updates have not been processed."
5025
  msgstr "قادر به لغو اشتراک قبل نمی باشد. به روز رسانی پردازش نشده است."
5026
 
@@ -5043,6 +5091,9 @@ msgstr "قادر به لغو اشتراک قبل نمی باشد. به روز ر
5043
  #: classes/gateways/class.pmprogateway_stripe.php:2127
5044
  #: classes/gateways/class.pmprogateway_stripe.php:2132
5045
  #: classes/gateways/class.pmprogateway_stripe.php:2137
 
 
 
5046
  msgid "Error creating customer record with Stripe:"
5047
  msgstr "خطا در ایجاد رکورد مشتری با Stripe:"
5048
 
@@ -5070,6 +5121,8 @@ msgstr "خطا در ایجاد رکورد مشتری با Stripe:"
5070
  #: classes/gateways/class.pmprogateway_stripe.php:2356
5071
  #: classes/gateways/class.pmprogateway_stripe.php:2373
5072
  #: classes/gateways/class.pmprogateway_stripe.php:2378
 
 
5073
  msgid "Error creating plan with Stripe:"
5074
  msgstr "خطا در ایجاد پلن با Stripe:"
5075
 
@@ -5092,6 +5145,8 @@ msgstr "خطا در ایجاد پلن با Stripe:"
5092
  #: classes/gateways/class.pmprogateway_stripe.php:2401
5093
  #: classes/gateways/class.pmprogateway_stripe.php:2409
5094
  #: classes/gateways/class.pmprogateway_stripe.php:2423
 
 
5095
  msgid "Error subscribing customer to plan with Stripe:"
5096
  msgstr "خطا در عضویت مشتری در پلن با Stripe:"
5097
 
@@ -5108,6 +5163,7 @@ msgstr "خطا در عضویت مشتری در پلن با Stripe:"
5108
  #: classes/gateways/class.pmprogateway_stripe.php:2632
5109
  #: classes/gateways/class.pmprogateway_stripe.php:2644
5110
  #: classes/gateways/class.pmprogateway_stripe.php:2666
 
5111
  msgid "Could not cancel old subscription."
5112
  msgstr "اشتراک های قدیمی را نمی توان لغو کرد"
5113
 
@@ -5121,6 +5177,7 @@ msgstr "اشتراک های قدیمی را نمی توان لغو کرد"
5121
  #: classes/gateways/class.pmprogateway_stripe.php:2648
5122
  #: classes/gateways/class.pmprogateway_stripe.php:2660
5123
  #: classes/gateways/class.pmprogateway_stripe.php:2682
 
5124
  msgid "Could not find the customer."
5125
  msgstr "مشتری پیدا نشد"
5126
 
@@ -6062,6 +6119,7 @@ msgstr "کلید لایسنس شما اعتبار سنجی شد."
6062
 
6063
  #: includes/license.php:81
6064
  #: adminpages/license.php:43
 
6065
  msgid "Paid Memberships Pro Support License"
6066
  msgstr "لایسنس پشتیبانی Paid Memberships Pro"
6067
 
@@ -6081,6 +6139,7 @@ msgstr "Visit the PMPro <a href=\"http://www.paidmembershipspro.com/login/?redir
6081
  #: adminpages/dashboard.php:174
6082
  #: adminpages/license.php:49
6083
  #: adminpages/dashboard.php:178
 
6084
  msgid "Your license is invalid or expired."
6085
  msgstr "مجوز شما غیر معتبر یا منقضی شده است."
6086
 
@@ -6091,6 +6150,7 @@ msgstr "<p><strong>Thank you!</strong> A valid <strong>%s</strong> license key h
6091
 
6092
  #: includes/license.php:100
6093
  #: adminpages/license.php:59
 
6094
  msgid "Enter license key here..."
6095
  msgstr "کلید مجوز را اینجا وارد کنید ..."
6096
 
@@ -6264,6 +6324,7 @@ msgstr "خروج"
6264
  #: adminpages/dashboard.php:224
6265
  #: adminpages/dashboard.php:292
6266
  #: adminpages/orders.php:1343
 
6267
  msgid "Level"
6268
  msgstr "سطح"
6269
 
@@ -6320,6 +6381,7 @@ msgstr "پرداخت اشتراک شما با پی پال صورت گرفته ل
6320
  #: includes/profile.php:747
6321
  #: pages/billing.php:164
6322
  #: pages/checkout.php:234
 
6323
  msgid "First Name"
6324
  msgstr "نام"
6325
 
@@ -6335,6 +6397,7 @@ msgstr "نام"
6335
  #: includes/profile.php:748
6336
  #: pages/billing.php:168
6337
  #: pages/checkout.php:238
 
6338
  msgid "Last Name"
6339
  msgstr "نام خانوادگی"
6340
 
@@ -7331,6 +7394,7 @@ msgstr "کد <strong>%s</strong> روی سفارش شما اعمال گردید.
7331
  #: services/authnet-silent-post.php:133
7332
  #: services/authnet-silent-post.php:138
7333
  #: services/authnet-silent-post.php:173
 
7334
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
7335
  msgstr "<p>پرداخت در انتظار اعتبار سنجی Authorize.net.</p><p>اطلاعات فرم پرداخت Authorize.net"
7336
 
@@ -7389,6 +7453,8 @@ msgstr "ویرایش پروفایل"
7389
  #: includes/profile.php:872
7390
  #: includes/profile.php:909
7391
  #: shortcodes/pmpro_account.php:195
 
 
7392
  msgid "Change Password"
7393
  msgstr "تغییر رمز عبور"
7394
 
@@ -7476,6 +7542,7 @@ msgstr "هر"
7476
  #: adminpages/advancedsettings.php:316
7477
  #: includes/privacy.php:175
7478
  #: includes/profile.php:509
 
7479
  msgid "Never"
7480
  msgstr "هرگز"
7481
 
@@ -7722,6 +7789,7 @@ msgstr ""
7722
 
7723
  #: adminpages/admin_header.php:152
7724
  #: classes/gateways/class.pmprogateway_stripe.php:76
 
7725
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
7726
  msgstr ""
7727
 
@@ -7994,6 +8062,7 @@ msgstr ""
7994
  #: adminpages/dashboard.php:177
7995
  #: adminpages/license.php:51
7996
  #: adminpages/dashboard.php:181
 
7997
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
7998
  msgstr ""
7999
 
@@ -8454,18 +8523,23 @@ msgid "Send Email"
8454
  msgstr ""
8455
 
8456
  #: adminpages/license.php:47
 
8457
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
8458
  msgstr ""
8459
 
8460
  #: adminpages/license.php:49
 
 
8461
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
8462
  msgstr ""
8463
 
8464
  #: adminpages/license.php:61
 
8465
  msgid "Validate Key"
8466
  msgstr ""
8467
 
8468
  #: adminpages/license.php:95
 
8469
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
8470
  msgstr ""
8471
 
@@ -9061,6 +9135,7 @@ msgstr ""
9061
 
9062
  #: classes/gateways/class.pmprogateway_braintree.php:87
9063
  #: classes/gateways/class.pmprogateway_stripe.php:91
 
9064
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
9065
  msgstr ""
9066
 
@@ -9358,6 +9433,7 @@ msgid "Your order has been refused."
9358
  msgstr ""
9359
 
9360
  #: classes/gateways/class.pmprogateway_cybersource.php:922
 
9361
  msgid "Unknown error."
9362
  msgstr ""
9363
 
@@ -9372,23 +9448,28 @@ msgstr ""
9372
  #: classes/gateways/class.pmprogateway_paypal.php:146
9373
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
9374
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
 
9375
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
9376
  msgstr ""
9377
 
9378
  #: classes/gateways/class.pmprogateway_paypal.php:185
9379
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
 
9380
  msgid "Confirmation Step"
9381
  msgstr ""
9382
 
9383
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
 
9384
  msgid "Checkout was already processed."
9385
  msgstr ""
9386
 
9387
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
 
9388
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
9389
  msgstr ""
9390
 
9391
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
 
9392
  msgid "Error creating plan with PayPal."
9393
  msgstr ""
9394
 
@@ -9400,11 +9481,14 @@ msgstr ""
9400
  #: classes/gateways/class.pmprogateway_stripe.php:436
9401
  #: classes/gateways/class.pmprogateway_stripe.php:354
9402
  #: classes/gateways/class.pmprogateway_stripe.php:444
 
 
9403
  msgid "Stripe Connect Settings"
9404
  msgstr ""
9405
 
9406
  #: classes/gateways/class.pmprogateway_stripe.php:352
9407
  #: classes/gateways/class.pmprogateway_stripe.php:356
 
9408
  msgid "Live Mode:"
9409
  msgstr ""
9410
 
@@ -9412,6 +9496,8 @@ msgstr ""
9412
  #: classes/gateways/class.pmprogateway_stripe.php:440
9413
  #: classes/gateways/class.pmprogateway_stripe.php:358
9414
  #: classes/gateways/class.pmprogateway_stripe.php:448
 
 
9415
  msgid "Connected"
9416
  msgstr ""
9417
 
@@ -9419,6 +9505,8 @@ msgstr ""
9419
  #: classes/gateways/class.pmprogateway_stripe.php:442
9420
  #: classes/gateways/class.pmprogateway_stripe.php:362
9421
  #: classes/gateways/class.pmprogateway_stripe.php:452
 
 
9422
  msgid "Not Connected"
9423
  msgstr ""
9424
 
@@ -9426,11 +9514,14 @@ msgstr ""
9426
  #: classes/gateways/class.pmprogateway_stripe.php:449
9427
  #: classes/gateways/class.pmprogateway_stripe.php:369
9428
  #: classes/gateways/class.pmprogateway_stripe.php:459
 
 
9429
  msgid "Your site is using legacy API keys to authenticate with Stripe."
9430
  msgstr ""
9431
 
9432
  #: classes/gateways/class.pmprogateway_stripe.php:364
9433
  #: classes/gateways/class.pmprogateway_stripe.php:371
 
9434
  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."
9435
  msgstr ""
9436
 
@@ -9438,6 +9529,8 @@ msgstr ""
9438
  #: classes/gateways/class.pmprogateway_stripe.php:458
9439
  #: classes/gateways/class.pmprogateway_stripe.php:380
9440
  #: classes/gateways/class.pmprogateway_stripe.php:470
 
 
9441
  msgid "Stripe Connection:"
9442
  msgstr ""
9443
 
@@ -9445,11 +9538,14 @@ msgstr ""
9445
  #: classes/gateways/class.pmprogateway_stripe.php:482
9446
  #: classes/gateways/class.pmprogateway_stripe.php:396
9447
  #: classes/gateways/class.pmprogateway_stripe.php:494
 
 
9448
  msgid "Disconnect From Stripe"
9449
  msgstr ""
9450
 
9451
  #: classes/gateways/class.pmprogateway_stripe.php:389
9452
  #: classes/gateways/class.pmprogateway_stripe.php:397
 
9453
  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."
9454
  msgstr ""
9455
 
@@ -9457,16 +9553,20 @@ msgstr ""
9457
  #: classes/gateways/class.pmprogateway_stripe.php:496
9458
  #: classes/gateways/class.pmprogateway_stripe.php:409
9459
  #: classes/gateways/class.pmprogateway_stripe.php:508
 
 
9460
  msgid "Connect with Stripe"
9461
  msgstr ""
9462
 
9463
  #: classes/gateways/class.pmprogateway_stripe.php:408
9464
  #: classes/gateways/class.pmprogateway_stripe.php:416
 
9465
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
9466
  msgstr ""
9467
 
9468
  #: classes/gateways/class.pmprogateway_stripe.php:411
9469
  #: classes/gateways/class.pmprogateway_stripe.php:419
 
9470
  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."
9471
  msgstr ""
9472
 
@@ -9477,6 +9577,9 @@ msgstr ""
9477
  #: classes/gateways/class.pmprogateway_stripe.php:519
9478
  #: classes/gateways/class.pmprogateway_stripe.php:559
9479
  #: classes/gateways/class.pmprogateway_stripe.php:578
 
 
 
9480
  msgid "Webhook"
9481
  msgstr ""
9482
 
@@ -9487,32 +9590,40 @@ msgstr ""
9487
  #: classes/gateways/class.pmprogateway_stripe.php:523
9488
  #: classes/gateways/class.pmprogateway_stripe.php:594
9489
  #: classes/gateways/class.pmprogateway_stripe.php:613
 
 
 
9490
  msgid "Webhook URL"
9491
  msgstr ""
9492
 
9493
  #: classes/gateways/class.pmprogateway_stripe.php:438
9494
  #: classes/gateways/class.pmprogateway_stripe.php:446
 
9495
  msgid "Test Mode:"
9496
  msgstr ""
9497
 
9498
  #: classes/gateways/class.pmprogateway_stripe.php:450
9499
  #: classes/gateways/class.pmprogateway_stripe.php:461
 
9500
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
9501
  msgstr ""
9502
 
9503
  #: classes/gateways/class.pmprogateway_stripe.php:483
9504
  #: classes/gateways/class.pmprogateway_stripe.php:495
 
9505
  msgid "This will disconnect your site from Stripe in test mode only."
9506
  msgstr ""
9507
 
9508
  #: classes/gateways/class.pmprogateway_stripe.php:518
9509
  #: classes/gateways/class.pmprogateway_stripe.php:530
 
9510
  msgid "Stripe API Settings (Legacy)"
9511
  msgstr ""
9512
 
9513
  #: classes/gateways/class.pmprogateway_stripe.php:531
9514
  #: classes/gateways/class.pmprogateway_stripe.php:543
9515
  #: classes/gateways/class.pmprogateway_stripe.php:562
 
9516
  msgid "Your Publishable Key appears incorrect."
9517
  msgstr ""
9518
 
@@ -9522,24 +9633,29 @@ msgstr ""
9522
  #: classes/gateways/class.pmprogateway_stripe.php:587
9523
  #: classes/gateways/class.pmprogateway_stripe.php:582
9524
  #: classes/gateways/class.pmprogateway_stripe.php:606
 
 
9525
  msgid "Create Webhook"
9526
  msgstr ""
9527
 
9528
  #: classes/gateways/class.pmprogateway_stripe.php:557
9529
  #: classes/gateways/class.pmprogateway_stripe.php:569
9530
  #: classes/gateways/class.pmprogateway_stripe.php:588
 
9531
  msgid "A webhook is set up in Stripe, but it is disabled."
9532
  msgstr ""
9533
 
9534
  #: classes/gateways/class.pmprogateway_stripe.php:564
9535
  #: classes/gateways/class.pmprogateway_stripe.php:576
9536
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
9537
  msgid "A webhook is set up in Stripe, but it is using an old API version."
9538
  msgstr ""
9539
 
9540
  #: classes/gateways/class.pmprogateway_stripe.php:564
9541
  #: classes/gateways/class.pmprogateway_stripe.php:576
9542
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
9543
  msgid "Rebuild Webhook"
9544
  msgstr ""
9545
 
@@ -9552,12 +9668,16 @@ msgstr ""
9552
  #: classes/gateways/class.pmprogateway_stripe.php:601
9553
  #: classes/gateways/class.pmprogateway_stripe.php:741
9554
  #: classes/gateways/class.pmprogateway_stripe.php:857
 
 
 
9555
  msgid "Your webhook is enabled."
9556
  msgstr ""
9557
 
9558
  #: classes/gateways/class.pmprogateway_stripe.php:570
9559
  #: classes/gateways/class.pmprogateway_stripe.php:582
9560
  #: classes/gateways/class.pmprogateway_stripe.php:601
 
9561
  msgid "Disable Webhook"
9562
  msgstr ""
9563
 
@@ -9573,66 +9693,80 @@ msgstr ""
9573
  #: classes/gateways/class.pmprogateway_stripe.php:768
9574
  #: classes/gateways/class.pmprogateway_stripe.php:785
9575
  #: classes/gateways/class.pmprogateway_stripe.php:819
 
 
 
 
9576
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
9577
  msgstr ""
9578
 
9579
  #: classes/gateways/class.pmprogateway_stripe.php:589
9580
  #: classes/gateways/class.pmprogateway_stripe.php:601
9581
  #: classes/gateways/class.pmprogateway_stripe.php:620
 
9582
  msgid "Other Stripe Settings"
9583
  msgstr ""
9584
 
9585
  #: classes/gateways/class.pmprogateway_stripe.php:593
9586
  #: classes/gateways/class.pmprogateway_stripe.php:605
9587
  #: classes/gateways/class.pmprogateway_stripe.php:624
 
9588
  msgid "Stripe API Version"
9589
  msgstr ""
9590
 
9591
  #: classes/gateways/class.pmprogateway_stripe.php:612
9592
  #: classes/gateways/class.pmprogateway_stripe.php:624
9593
  #: classes/gateways/class.pmprogateway_stripe.php:643
 
9594
  msgid "Enable Payment Request Button"
9595
  msgstr ""
9596
 
9597
  #: classes/gateways/class.pmprogateway_stripe.php:630
9598
  #: classes/gateways/class.pmprogateway_stripe.php:642
9599
  #: classes/gateways/class.pmprogateway_stripe.php:661
 
9600
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
9601
  msgstr ""
9602
 
9603
  #: classes/gateways/class.pmprogateway_stripe.php:643
9604
  #: classes/gateways/class.pmprogateway_stripe.php:655
9605
  #: classes/gateways/class.pmprogateway_stripe.php:674
 
9606
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
9607
  msgstr ""
9608
 
9609
  #: classes/gateways/class.pmprogateway_stripe.php:645
9610
  #: classes/gateways/class.pmprogateway_stripe.php:657
9611
  #: classes/gateways/class.pmprogateway_stripe.php:676
 
9612
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
9613
  msgstr ""
9614
 
9615
  #: classes/gateways/class.pmprogateway_stripe.php:647
9616
  #: classes/gateways/class.pmprogateway_stripe.php:659
9617
  #: classes/gateways/class.pmprogateway_stripe.php:678
 
9618
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
9619
  msgstr ""
9620
 
9621
  #: classes/gateways/class.pmprogateway_stripe.php:649
9622
  #: classes/gateways/class.pmprogateway_stripe.php:661
9623
  #: classes/gateways/class.pmprogateway_stripe.php:680
 
9624
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
9625
  msgstr ""
9626
 
9627
  #: classes/gateways/class.pmprogateway_stripe.php:674
9628
  #: classes/gateways/class.pmprogateway_stripe.php:686
9629
  #: classes/gateways/class.pmprogateway_stripe.php:705
 
9630
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
9631
  msgstr ""
9632
 
9633
  #: classes/gateways/class.pmprogateway_stripe.php:695
9634
  #: classes/gateways/class.pmprogateway_stripe.php:707
9635
  #: classes/gateways/class.pmprogateway_stripe.php:726
 
9636
  msgid "Webhook creation failed. You might already have a webhook set up."
9637
  msgstr ""
9638
 
@@ -9642,36 +9776,43 @@ msgstr ""
9642
  #: classes/gateways/class.pmprogateway_stripe.php:847
9643
  #: classes/gateways/class.pmprogateway_stripe.php:792
9644
  #: classes/gateways/class.pmprogateway_stripe.php:866
 
 
9645
  msgid "There was an error deleting the webhook."
9646
  msgstr ""
9647
 
9648
  #: classes/gateways/class.pmprogateway_stripe.php:811
9649
  #: classes/gateways/class.pmprogateway_stripe.php:823
9650
  #: classes/gateways/class.pmprogateway_stripe.php:842
 
9651
  msgid "Webhook creation failed. Please refresh and try again."
9652
  msgstr ""
9653
 
9654
  #: classes/gateways/class.pmprogateway_stripe.php:867
9655
  #: classes/gateways/class.pmprogateway_stripe.php:879
9656
  #: classes/gateways/class.pmprogateway_stripe.php:898
 
9657
  msgid "Verification steps confirmed. Your payment is processing."
9658
  msgstr ""
9659
 
9660
  #: classes/gateways/class.pmprogateway_stripe.php:1262
9661
  #: classes/gateways/class.pmprogateway_stripe.php:1274
9662
  #: classes/gateways/class.pmprogateway_stripe.php:1293
 
9663
  msgid "Pay with Credit Card"
9664
  msgstr ""
9665
 
9666
  #: classes/gateways/class.pmprogateway_stripe.php:1296
9667
  #: classes/gateways/class.pmprogateway_stripe.php:1308
9668
  #: classes/gateways/class.pmprogateway_stripe.php:1327
 
9669
  msgid "CVC"
9670
  msgstr ""
9671
 
9672
  #: classes/gateways/class.pmprogateway_stripe.php:1374
9673
  #: classes/gateways/class.pmprogateway_stripe.php:1386
9674
  #: classes/gateways/class.pmprogateway_stripe.php:1405
 
9675
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
9676
  msgstr ""
9677
 
@@ -9687,6 +9828,10 @@ msgstr ""
9687
  #: classes/gateways/class.pmprogateway_stripe.php:2016
9688
  #: classes/gateways/class.pmprogateway_stripe.php:2029
9689
  #: classes/gateways/class.pmprogateway_stripe.php:2033
 
 
 
 
9690
  msgid "Error: %s"
9691
  msgstr ""
9692
 
@@ -9696,6 +9841,8 @@ msgstr ""
9696
  #: classes/gateways/class.pmprogateway_stripe.php:2182
9697
  #: classes/gateways/class.pmprogateway_stripe.php:2196
9698
  #: classes/gateways/class.pmprogateway_stripe.php:2201
 
 
9699
  msgid "Error getting subscription with Stripe:"
9700
  msgstr ""
9701
 
@@ -9705,30 +9852,35 @@ msgstr ""
9705
  #: classes/gateways/class.pmprogateway_stripe.php:2834
9706
  #: classes/gateways/class.pmprogateway_stripe.php:2850
9707
  #: classes/gateways/class.pmprogateway_stripe.php:2856
 
9708
  msgid "Error: "
9709
  msgstr ""
9710
 
9711
  #: classes/gateways/class.pmprogateway_stripe.php:2836
9712
  #: classes/gateways/class.pmprogateway_stripe.php:2848
9713
  #: classes/gateways/class.pmprogateway_stripe.php:2870
 
9714
  msgid "Error: Unkown error while refunding charge #%s"
9715
  msgstr ""
9716
 
9717
  #: classes/gateways/class.pmprogateway_stripe.php:3330
9718
  #: classes/gateways/class.pmprogateway_stripe.php:3342
9719
  #: classes/gateways/class.pmprogateway_stripe.php:3364
 
9720
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
9721
  msgstr ""
9722
 
9723
  #: classes/gateways/class.pmprogateway_stripe.php:3347
9724
  #: classes/gateways/class.pmprogateway_stripe.php:3359
9725
  #: classes/gateways/class.pmprogateway_stripe.php:3381
 
9726
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
9727
  msgstr ""
9728
 
9729
  #: classes/gateways/class.pmprogateway_stripe.php:3533
9730
  #: classes/gateways/class.pmprogateway_stripe.php:3545
9731
  #: classes/gateways/class.pmprogateway_stripe.php:3567
 
9732
  msgid "Invalid response from the Stripe Connect server."
9733
  msgstr ""
9734
 
@@ -9736,6 +9888,7 @@ msgstr ""
9736
  #: classes/gateways/class.pmprogateway_stripe.php:3561
9737
  #: classes/gateways/class.pmprogateway_stripe.php:3573
9738
  #: classes/gateways/class.pmprogateway_stripe.php:3595
 
9739
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
9740
  msgstr ""
9741
 
@@ -9743,30 +9896,35 @@ msgstr ""
9743
  #: classes/gateways/class.pmprogateway_stripe.php:3597
9744
  #: classes/gateways/class.pmprogateway_stripe.php:3609
9745
  #: classes/gateways/class.pmprogateway_stripe.php:3631
 
9746
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
9747
  msgstr ""
9748
 
9749
  #: classes/gateways/class.pmprogateway_stripe.php:3768
9750
  #: classes/gateways/class.pmprogateway_stripe.php:3780
9751
  #: classes/gateways/class.pmprogateway_stripe.php:3802
 
9752
  msgid "Last webhook received at"
9753
  msgstr ""
9754
 
9755
  #: classes/gateways/class.pmprogateway_stripe.php:3770
9756
  #: classes/gateways/class.pmprogateway_stripe.php:3782
9757
  #: classes/gateways/class.pmprogateway_stripe.php:3804
 
9758
  msgid "No webhooks have been received."
9759
  msgstr ""
9760
 
9761
  #: classes/gateways/class.pmprogateway_stripe.php:3774
9762
  #: classes/gateways/class.pmprogateway_stripe.php:3786
9763
  #: classes/gateways/class.pmprogateway_stripe.php:3808
 
9764
  msgid "Your webhook may not be working correctly."
9765
  msgstr ""
9766
 
9767
  #: classes/gateways/class.pmprogateway_stripe.php:3776
9768
  #: classes/gateways/class.pmprogateway_stripe.php:3788
9769
  #: classes/gateways/class.pmprogateway_stripe.php:3810
 
9770
  msgid "Click here for info on setting up your webhook with Stripe."
9771
  msgstr ""
9772
 
@@ -11883,11 +12041,13 @@ msgstr ""
11883
 
11884
  #: includes/login.php:429
11885
  #: includes/profile.php:843
 
11886
  msgid "New passwords do not match."
11887
  msgstr ""
11888
 
11889
  #: includes/login.php:433
11890
  #: includes/profile.php:839
 
11891
  msgid "Please complete all fields."
11892
  msgstr ""
11893
 
@@ -11917,17 +12077,21 @@ msgstr ""
11917
 
11918
  #: includes/login.php:688
11919
  #: includes/profile.php:891
 
11920
  msgid "New Password"
11921
  msgstr ""
11922
 
11923
  #: includes/login.php:690
11924
  #: includes/profile.php:894
11925
  #: includes/scripts.php:86
 
 
11926
  msgid "Strength Indicator"
11927
  msgstr ""
11928
 
11929
  #: includes/login.php:694
11930
  #: includes/profile.php:898
 
11931
  msgid "Confirm New Password"
11932
  msgstr ""
11933
 
@@ -12024,21 +12188,25 @@ msgstr ""
12024
  #: includes/privacy.php:182
12025
  #: includes/profile.php:425
12026
  #: includes/profile.php:493
 
12027
  msgid "Level ID"
12028
  msgstr ""
12029
 
12030
  #: includes/privacy.php:190
12031
  #: includes/profile.php:496
 
12032
  msgid "Date Modified"
12033
  msgstr ""
12034
 
12035
  #: includes/privacy.php:194
12036
  #: includes/profile.php:497
 
12037
  msgid "End Date"
12038
  msgstr ""
12039
 
12040
  #: includes/privacy.php:198
12041
  #: includes/profile.php:498
 
12042
  msgid "Level Cost"
12043
  msgstr ""
12044
 
@@ -12137,68 +12305,85 @@ msgid "Membership Levels History"
12137
  msgstr ""
12138
 
12139
  #: includes/profile.php:485
 
12140
  msgid "No membership orders found."
12141
  msgstr ""
12142
 
12143
  #: includes/profile.php:537
 
12144
  msgid "No membership history found."
12145
  msgstr ""
12146
 
12147
  #: includes/profile.php:644
 
12148
  msgid "Log in to edit your profile."
12149
  msgstr ""
12150
 
12151
  #: includes/profile.php:679
 
12152
  msgid "Please enter a display name."
12153
  msgstr ""
12154
 
12155
  #: includes/profile.php:689
 
12156
  msgid "Please enter an email address."
12157
  msgstr ""
12158
 
12159
  #: includes/profile.php:691
 
12160
  msgid "The email address isn&#8217;t correct."
12161
  msgstr ""
12162
 
12163
  #: includes/profile.php:695
 
12164
  msgid "This email is already registered, please choose another one."
12165
  msgstr ""
12166
 
12167
  #: includes/profile.php:722
 
12168
  msgid "Your profile has been updated."
12169
  msgstr ""
12170
 
12171
  #: includes/profile.php:749
 
12172
  msgid "Display name publicly as"
12173
  msgstr ""
12174
 
12175
  #: includes/profile.php:762
 
12176
  msgid "Site administrators must use the WordPress dashboard to update their email address."
12177
  msgstr ""
12178
 
12179
  #: includes/profile.php:785
 
12180
  msgid "Update Profile"
12181
  msgstr ""
12182
 
12183
  #: includes/profile.php:841
 
12184
  msgid "Please enter your current password."
12185
  msgstr ""
12186
 
12187
  #: includes/profile.php:845
 
12188
  msgid "Your current password is incorrect."
12189
  msgstr ""
12190
 
12191
  #: includes/profile.php:856
 
12192
  msgid "Your password has been updated."
12193
  msgstr ""
12194
 
12195
  #: includes/profile.php:886
 
12196
  msgid "Current Password"
12197
  msgstr ""
12198
 
12199
  #: includes/profile.php:888
12200
  #: includes/profile.php:893
12201
  #: includes/profile.php:900
 
 
12202
  msgid "Required Field"
12203
  msgstr ""
12204
 
@@ -12303,10 +12488,12 @@ msgid "That email address is already in use. Please log in, or use a different e
12303
  msgstr ""
12304
 
12305
  #: services/braintree-webhook.php:425
 
12306
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
12307
  msgstr ""
12308
 
12309
  #: services/braintree-webhook.php:427
 
12310
  msgid "A member's Braintree subscription has expired at %s"
12311
  msgstr ""
12312
 
@@ -12625,16 +12812,22 @@ msgstr ""
12625
 
12626
  #: classes/gateways/class.pmprogateway_stripe.php:360
12627
  #: classes/gateways/class.pmprogateway_stripe.php:450
 
 
12628
  msgid "Connected with Legacy Keys"
12629
  msgstr ""
12630
 
12631
  #: classes/gateways/class.pmprogateway_stripe.php:370
12632
  #: classes/gateways/class.pmprogateway_stripe.php:460
 
 
12633
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
12634
  msgstr ""
12635
 
12636
  #: classes/gateways/class.pmprogateway_stripe.php:372
12637
  #: classes/gateways/class.pmprogateway_stripe.php:462
 
 
12638
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
12639
  msgstr ""
12640
 
@@ -12691,13 +12884,49 @@ msgid "missing"
12691
  msgstr ""
12692
 
12693
  #: classes/gateways/class.pmprogateway_stripe.php:533
 
12694
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
12695
  msgstr ""
12696
 
12697
  #: classes/gateways/class.pmprogateway_stripe.php:534
 
12698
  msgid "Click here to use the legacy API settings."
12699
  msgstr ""
12700
 
12701
  #: paid-memberships-pro.php:194
12702
  msgid "Once a month"
12703
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.3\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-10-11T14:00:34+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
257
  #: adminpages/orders.php:1544
258
  #: adminpages/orders.php:1554
259
  #: adminpages/orders.php:1553
260
+ #: includes/profile.php:520
261
+ #: includes/profile.php:521
262
+ #: includes/profile.php:522
263
  msgid "N/A"
264
  msgstr "N/A"
265
 
438
  #: adminpages/orders.php:391
439
  #: adminpages/orders.php:1445
440
  #: adminpages/orders.php:1448
441
+ #: includes/profile.php:762
442
  msgid "Email"
443
  msgstr "ایمیل"
444
 
624
  #: adminpages/advancedsettings.php:479
625
  #: classes/gateways/class.pmprogateway_stripe.php:634
626
  #: classes/gateways/class.pmprogateway_stripe.php:648
627
+ #: classes/gateways/class.pmprogateway_stripe.php:640
628
+ #: classes/gateways/class.pmprogateway_stripe.php:654
629
  msgid "No"
630
  msgstr "خیر"
631
 
723
  #: adminpages/advancedsettings.php:397
724
  #: classes/gateways/class.pmprogateway_stripe.php:636
725
  #: classes/gateways/class.pmprogateway_stripe.php:650
726
+ #: classes/gateways/class.pmprogateway_stripe.php:642
727
+ #: classes/gateways/class.pmprogateway_stripe.php:656
728
  msgid "Yes"
729
  msgstr "بله"
730
 
998
  #: includes/privacy.php:186
999
  #: includes/profile.php:495
1000
  #: adminpages/discountcodes.php:489
1001
+ #: includes/profile.php:501
1002
  msgid "Start Date"
1003
  msgstr "تاریخ شروع"
1004
 
1027
  #: classes/gateways/class.pmprogateway_stripe.php:1301
1028
  #: adminpages/discountcodes.php:507
1029
  #: classes/gateways/class.pmprogateway_stripe.php:1320
1030
+ #: classes/gateways/class.pmprogateway_stripe.php:1326
1031
  msgid "Expiration Date"
1032
  msgstr "تاریخ انقضاء"
1033
 
1165
  #: adminpages/discountcodes.php:612
1166
  #: adminpages/discountcodes.php:699
1167
  #: classes/gateways/class.pmprogateway_stripe.php:1363
1168
+ #: classes/gateways/class.pmprogateway_stripe.php:1369
1169
  msgid "Day(s)"
1170
  msgstr "روز"
1171
 
1197
  #: adminpages/discountcodes.php:612
1198
  #: adminpages/discountcodes.php:699
1199
  #: classes/gateways/class.pmprogateway_stripe.php:1365
1200
+ #: classes/gateways/class.pmprogateway_stripe.php:1371
1201
  msgid "Month(s)"
1202
  msgstr "ماه"
1203
 
1229
  #: adminpages/discountcodes.php:612
1230
  #: adminpages/discountcodes.php:699
1231
  #: classes/gateways/class.pmprogateway_stripe.php:1364
1232
+ #: classes/gateways/class.pmprogateway_stripe.php:1370
1233
  msgid "Week(s)"
1234
  msgstr "هفته"
1235
 
1261
  #: adminpages/discountcodes.php:612
1262
  #: adminpages/discountcodes.php:699
1263
  #: classes/gateways/class.pmprogateway_stripe.php:1366
1264
+ #: classes/gateways/class.pmprogateway_stripe.php:1372
1265
  msgid "Year(s)"
1266
  msgstr "سال"
1267
 
1847
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1848
  #: adminpages/discountcodes.php:608
1849
  #: classes/gateways/class.pmprogateway_stripe.php:1497
1850
+ #: classes/gateways/class.pmprogateway_stripe.php:1503
1851
  msgid "per"
1852
  msgstr "به ازای"
1853
 
2058
  #: pages/cancel.php:96
2059
  #: shortcodes/pmpro_account.php:106
2060
  #: adminpages/orders.php:968
2061
+ #: includes/profile.php:798
2062
+ #: includes/profile.php:922
2063
  msgid "Cancel"
2064
  msgstr "لغو کردن"
2065
 
2644
  #: adminpages/orders.php:679
2645
  #: classes/gateways/class.pmprogateway_stripe.php:1284
2646
  #: classes/gateways/class.pmprogateway_stripe.php:1303
2647
+ #: classes/gateways/class.pmprogateway_stripe.php:1309
2648
  msgid "Card Type"
2649
  msgstr "نوع کارت"
2650
 
2710
  #: adminpages/dashboard.php:294
2711
  #: adminpages/orders.php:742
2712
  #: adminpages/orders.php:1348
2713
+ #: includes/profile.php:505
2714
  msgid "Status"
2715
  msgstr "وضعیت"
2716
 
3918
  #: classes/class.pmproemail.php:769
3919
  #: classes/class.pmproemail.php:771
3920
  #: classes/gateways/class.pmprogateway_stripe.php:1333
3921
+ #: classes/gateways/class.pmprogateway_stripe.php:1339
3922
  msgid "Discount Code"
3923
  msgstr "کد تخفیف"
3924
 
4358
  #: pages/checkout.php:366
4359
  #: classes/gateways/class.pmprogateway_stripe.php:1263
4360
  #: classes/gateways/class.pmprogateway_stripe.php:1282
4361
+ #: classes/gateways/class.pmprogateway_stripe.php:1288
4362
  msgid "Payment Information"
4363
  msgstr "اطلاعات پرداخت"
4364
 
4378
  #: pages/checkout.php:367
4379
  #: classes/gateways/class.pmprogateway_stripe.php:1264
4380
  #: classes/gateways/class.pmprogateway_stripe.php:1283
4381
+ #: classes/gateways/class.pmprogateway_stripe.php:1289
4382
  #, php-format
4383
  msgid "We Accept %s"
4384
  msgstr "ما پذیرفتیم %s"
4403
  #: pages/checkout.php:389
4404
  #: classes/gateways/class.pmprogateway_stripe.php:1297
4405
  #: classes/gateways/class.pmprogateway_stripe.php:1316
4406
+ #: classes/gateways/class.pmprogateway_stripe.php:1322
4407
  msgid "Card Number"
4408
  msgstr "شماره کارت"
4409
 
4467
  #: pages/checkout.php:432
4468
  #: classes/gateways/class.pmprogateway_stripe.php:1319
4469
  #: classes/gateways/class.pmprogateway_stripe.php:1338
4470
+ #: classes/gateways/class.pmprogateway_stripe.php:1344
4471
  msgid "Apply"
4472
  msgstr "اعمال"
4473
 
4698
  #: classes/gateways/class.pmprogateway_paypal.php:132
4699
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
4700
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
4701
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:151
4702
  msgid "PayPal Settings"
4703
  msgstr "تنظیمات PayPal"
4704
 
4720
  #: classes/gateways/class.pmprogateway_paypal.php:153
4721
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
4722
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
4723
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:172
4724
  msgid "Gateway Account Email"
4725
  msgstr "ایمیل حساب کاربری درگاه پرداخت"
4726
 
4739
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
4740
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
4741
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
4742
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:180
4743
  msgid "API Username"
4744
  msgstr "نام کاربری API"
4745
 
4758
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
4759
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
4760
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
4761
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:188
4762
  msgid "API Password"
4763
  msgstr "رمز عبور API"
4764
 
4772
  #: classes/gateways/class.pmprogateway_paypal.php:177
4773
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
4774
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
4775
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:196
4776
  msgid "API Signature"
4777
  msgstr "امضاء API"
4778
 
4787
  #: classes/gateways/class.pmprogateway_paypal.php:196
4788
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
4789
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
4790
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:215
4791
  msgid "IPN Handler URL"
4792
  msgstr "آدرس IPN Handler"
4793
 
4812
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
4813
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
4814
  #: pages/checkout.php:218
4815
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:498
4816
  msgid "Check Out with PayPal"
4817
  msgstr "Check Out with PayPal"
4818
 
4830
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
4831
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
4832
  #: pages/checkout.php:526
4833
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
4834
  msgid "Submit and Check Out"
4835
  msgstr "Submit and Check Out"
4836
 
4851
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
4852
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
4853
  #: pages/checkout.php:526
4854
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
4855
  msgid "Submit and Confirm"
4856
  msgstr "Submit and Confirm"
4857
 
4871
  #: classes/gateways/class.pmprogateway_paypal.php:716
4872
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
4873
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
4874
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:841
4875
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
4876
  msgstr "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
4877
 
4883
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
4884
  #: paid-memberships-pro.php:160
4885
  #: paid-memberships-pro.php:162
4886
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:94
4887
  msgid "PayPal Express"
4888
  msgstr "PayPal Express"
4889
 
4895
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
4896
  #: classes/gateways/class.pmprogateway_paypal.php:199
4897
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
4898
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:218
4899
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
4900
  msgstr "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
4901
 
4917
  #: preheaders/checkout.php:823
4918
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
4919
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
4920
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:352
4921
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:411
4922
  msgid "The PayPal Token was lost."
4923
  msgstr "The PayPal Token was lost."
4924
 
4946
  #: classes/gateways/class.pmprogateway_stripe.php:252
4947
  #: paid-memberships-pro.php:159
4948
  #: paid-memberships-pro.php:161
4949
+ #: classes/gateways/class.pmprogateway_stripe.php:258
4950
  msgid "Stripe"
4951
  msgstr "Stripe"
4952
 
4965
  #: classes/gateways/class.pmprogateway_stripe.php:539
4966
  #: classes/gateways/class.pmprogateway_stripe.php:551
4967
  #: classes/gateways/class.pmprogateway_stripe.php:570
4968
+ #: classes/gateways/class.pmprogateway_stripe.php:576
4969
  msgid "Secret Key"
4970
  msgstr "Secret Key"
4971
 
4978
  #: classes/gateways/class.pmprogateway_stripe.php:523
4979
  #: classes/gateways/class.pmprogateway_stripe.php:535
4980
  #: classes/gateways/class.pmprogateway_stripe.php:554
4981
+ #: classes/gateways/class.pmprogateway_stripe.php:560
4982
  msgid "Publishable Key"
4983
  msgstr "Publishable Key"
4984
 
4991
  #: classes/gateways/class.pmprogateway_stripe.php:598
4992
  #: classes/gateways/class.pmprogateway_stripe.php:610
4993
  #: classes/gateways/class.pmprogateway_stripe.php:629
4994
+ #: classes/gateways/class.pmprogateway_stripe.php:635
4995
  msgid "Show Billing Address Fields"
4996
  msgstr "Show Billing Address Fields"
4997
 
5003
  #: classes/gateways/class.pmprogateway_stripe.php:607
5004
  #: classes/gateways/class.pmprogateway_stripe.php:619
5005
  #: classes/gateways/class.pmprogateway_stripe.php:638
5006
+ #: classes/gateways/class.pmprogateway_stripe.php:644
5007
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
5008
  msgstr "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
5009
 
5023
  #: classes/gateways/class.pmprogateway_stripe.php:1379
5024
  #: classes/gateways/class.pmprogateway_stripe.php:1391
5025
  #: classes/gateways/class.pmprogateway_stripe.php:1410
5026
+ #: classes/gateways/class.pmprogateway_stripe.php:1416
5027
  msgid "Subscription Updates"
5028
  msgstr "به روز رسانی اشتراک"
5029
 
5033
  #: classes/gateways/class.pmprogateway_stripe.php:1383
5034
  #: classes/gateways/class.pmprogateway_stripe.php:1395
5035
  #: classes/gateways/class.pmprogateway_stripe.php:1414
5036
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
5037
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
5038
  msgstr "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
5039
 
5043
  #: classes/gateways/class.pmprogateway_stripe.php:1385
5044
  #: classes/gateways/class.pmprogateway_stripe.php:1397
5045
  #: classes/gateways/class.pmprogateway_stripe.php:1416
5046
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
5047
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
5048
  msgstr "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
5049
 
5058
  #: pages/billing.php:425
5059
  #: classes/gateways/class.pmprogateway_stripe.php:1403
5060
  #: classes/gateways/class.pmprogateway_stripe.php:1422
5061
+ #: classes/gateways/class.pmprogateway_stripe.php:1428
5062
  msgid "Update"
5063
  msgstr "‌بروزرسانی"
5064
 
5068
  #: classes/gateways/class.pmprogateway_stripe.php:2480
5069
  #: classes/gateways/class.pmprogateway_stripe.php:2492
5070
  #: classes/gateways/class.pmprogateway_stripe.php:2514
5071
+ #: classes/gateways/class.pmprogateway_stripe.php:2520
5072
  msgid "Could not cancel the old subscription. Updates have not been processed."
5073
  msgstr "قادر به لغو اشتراک قبل نمی باشد. به روز رسانی پردازش نشده است."
5074
 
5091
  #: classes/gateways/class.pmprogateway_stripe.php:2127
5092
  #: classes/gateways/class.pmprogateway_stripe.php:2132
5093
  #: classes/gateways/class.pmprogateway_stripe.php:2137
5094
+ #: classes/gateways/class.pmprogateway_stripe.php:2133
5095
+ #: classes/gateways/class.pmprogateway_stripe.php:2138
5096
+ #: classes/gateways/class.pmprogateway_stripe.php:2143
5097
  msgid "Error creating customer record with Stripe:"
5098
  msgstr "خطا در ایجاد رکورد مشتری با Stripe:"
5099
 
5121
  #: classes/gateways/class.pmprogateway_stripe.php:2356
5122
  #: classes/gateways/class.pmprogateway_stripe.php:2373
5123
  #: classes/gateways/class.pmprogateway_stripe.php:2378
5124
+ #: classes/gateways/class.pmprogateway_stripe.php:2379
5125
+ #: classes/gateways/class.pmprogateway_stripe.php:2384
5126
  msgid "Error creating plan with Stripe:"
5127
  msgstr "خطا در ایجاد پلن با Stripe:"
5128
 
5145
  #: classes/gateways/class.pmprogateway_stripe.php:2401
5146
  #: classes/gateways/class.pmprogateway_stripe.php:2409
5147
  #: classes/gateways/class.pmprogateway_stripe.php:2423
5148
+ #: classes/gateways/class.pmprogateway_stripe.php:2415
5149
+ #: classes/gateways/class.pmprogateway_stripe.php:2429
5150
  msgid "Error subscribing customer to plan with Stripe:"
5151
  msgstr "خطا در عضویت مشتری در پلن با Stripe:"
5152
 
5163
  #: classes/gateways/class.pmprogateway_stripe.php:2632
5164
  #: classes/gateways/class.pmprogateway_stripe.php:2644
5165
  #: classes/gateways/class.pmprogateway_stripe.php:2666
5166
+ #: classes/gateways/class.pmprogateway_stripe.php:2672
5167
  msgid "Could not cancel old subscription."
5168
  msgstr "اشتراک های قدیمی را نمی توان لغو کرد"
5169
 
5177
  #: classes/gateways/class.pmprogateway_stripe.php:2648
5178
  #: classes/gateways/class.pmprogateway_stripe.php:2660
5179
  #: classes/gateways/class.pmprogateway_stripe.php:2682
5180
+ #: classes/gateways/class.pmprogateway_stripe.php:2688
5181
  msgid "Could not find the customer."
5182
  msgstr "مشتری پیدا نشد"
5183
 
6119
 
6120
  #: includes/license.php:81
6121
  #: adminpages/license.php:43
6122
+ #: adminpages/license.php:33
6123
  msgid "Paid Memberships Pro Support License"
6124
  msgstr "لایسنس پشتیبانی Paid Memberships Pro"
6125
 
6139
  #: adminpages/dashboard.php:174
6140
  #: adminpages/license.php:49
6141
  #: adminpages/dashboard.php:178
6142
+ #: adminpages/license.php:41
6143
  msgid "Your license is invalid or expired."
6144
  msgstr "مجوز شما غیر معتبر یا منقضی شده است."
6145
 
6150
 
6151
  #: includes/license.php:100
6152
  #: adminpages/license.php:59
6153
+ #: adminpages/license.php:51
6154
  msgid "Enter license key here..."
6155
  msgstr "کلید مجوز را اینجا وارد کنید ..."
6156
 
6324
  #: adminpages/dashboard.php:224
6325
  #: adminpages/dashboard.php:292
6326
  #: adminpages/orders.php:1343
6327
+ #: includes/profile.php:500
6328
  msgid "Level"
6329
  msgstr "سطح"
6330
 
6381
  #: includes/profile.php:747
6382
  #: pages/billing.php:164
6383
  #: pages/checkout.php:234
6384
+ #: includes/profile.php:759
6385
  msgid "First Name"
6386
  msgstr "نام"
6387
 
6397
  #: includes/profile.php:748
6398
  #: pages/billing.php:168
6399
  #: pages/checkout.php:238
6400
+ #: includes/profile.php:760
6401
  msgid "Last Name"
6402
  msgstr "نام خانوادگی"
6403
 
7394
  #: services/authnet-silent-post.php:133
7395
  #: services/authnet-silent-post.php:138
7396
  #: services/authnet-silent-post.php:173
7397
+ #: services/authnet-silent-post.php:176
7398
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
7399
  msgstr "<p>پرداخت در انتظار اعتبار سنجی Authorize.net.</p><p>اطلاعات فرم پرداخت Authorize.net"
7400
 
7453
  #: includes/profile.php:872
7454
  #: includes/profile.php:909
7455
  #: shortcodes/pmpro_account.php:195
7456
+ #: includes/profile.php:884
7457
+ #: includes/profile.php:921
7458
  msgid "Change Password"
7459
  msgstr "تغییر رمز عبور"
7460
 
7542
  #: adminpages/advancedsettings.php:316
7543
  #: includes/privacy.php:175
7544
  #: includes/profile.php:509
7545
+ #: includes/profile.php:515
7546
  msgid "Never"
7547
  msgstr "هرگز"
7548
 
7789
 
7790
  #: adminpages/admin_header.php:152
7791
  #: classes/gateways/class.pmprogateway_stripe.php:76
7792
+ #: classes/gateways/class.pmprogateway_stripe.php:82
7793
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
7794
  msgstr ""
7795
 
8062
  #: adminpages/dashboard.php:177
8063
  #: adminpages/license.php:51
8064
  #: adminpages/dashboard.php:181
8065
+ #: adminpages/license.php:43
8066
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
8067
  msgstr ""
8068
 
8523
  msgstr ""
8524
 
8525
  #: adminpages/license.php:47
8526
+ #: adminpages/license.php:39
8527
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
8528
  msgstr ""
8529
 
8530
  #: adminpages/license.php:49
8531
+ #: adminpages/license.php:37
8532
+ #: adminpages/license.php:41
8533
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
8534
  msgstr ""
8535
 
8536
  #: adminpages/license.php:61
8537
+ #: adminpages/license.php:53
8538
  msgid "Validate Key"
8539
  msgstr ""
8540
 
8541
  #: adminpages/license.php:95
8542
+ #: adminpages/license.php:87
8543
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
8544
  msgstr ""
8545
 
9135
 
9136
  #: classes/gateways/class.pmprogateway_braintree.php:87
9137
  #: classes/gateways/class.pmprogateway_stripe.php:91
9138
+ #: classes/gateways/class.pmprogateway_stripe.php:97
9139
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
9140
  msgstr ""
9141
 
9433
  msgstr ""
9434
 
9435
  #: classes/gateways/class.pmprogateway_cybersource.php:922
9436
+ #: includes/license.php:159
9437
  msgid "Unknown error."
9438
  msgstr ""
9439
 
9448
  #: classes/gateways/class.pmprogateway_paypal.php:146
9449
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
9450
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
9451
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:165
9452
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
9453
  msgstr ""
9454
 
9455
  #: classes/gateways/class.pmprogateway_paypal.php:185
9456
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
9457
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:204
9458
  msgid "Confirmation Step"
9459
  msgstr ""
9460
 
9461
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
9462
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:356
9463
  msgid "Checkout was already processed."
9464
  msgstr ""
9465
 
9466
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
9467
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:791
9468
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
9469
  msgstr ""
9470
 
9471
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
9472
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:792
9473
  msgid "Error creating plan with PayPal."
9474
  msgstr ""
9475
 
9481
  #: classes/gateways/class.pmprogateway_stripe.php:436
9482
  #: classes/gateways/class.pmprogateway_stripe.php:354
9483
  #: classes/gateways/class.pmprogateway_stripe.php:444
9484
+ #: classes/gateways/class.pmprogateway_stripe.php:360
9485
+ #: classes/gateways/class.pmprogateway_stripe.php:450
9486
  msgid "Stripe Connect Settings"
9487
  msgstr ""
9488
 
9489
  #: classes/gateways/class.pmprogateway_stripe.php:352
9490
  #: classes/gateways/class.pmprogateway_stripe.php:356
9491
+ #: classes/gateways/class.pmprogateway_stripe.php:362
9492
  msgid "Live Mode:"
9493
  msgstr ""
9494
 
9496
  #: classes/gateways/class.pmprogateway_stripe.php:440
9497
  #: classes/gateways/class.pmprogateway_stripe.php:358
9498
  #: classes/gateways/class.pmprogateway_stripe.php:448
9499
+ #: classes/gateways/class.pmprogateway_stripe.php:364
9500
+ #: classes/gateways/class.pmprogateway_stripe.php:454
9501
  msgid "Connected"
9502
  msgstr ""
9503
 
9505
  #: classes/gateways/class.pmprogateway_stripe.php:442
9506
  #: classes/gateways/class.pmprogateway_stripe.php:362
9507
  #: classes/gateways/class.pmprogateway_stripe.php:452
9508
+ #: classes/gateways/class.pmprogateway_stripe.php:368
9509
+ #: classes/gateways/class.pmprogateway_stripe.php:458
9510
  msgid "Not Connected"
9511
  msgstr ""
9512
 
9514
  #: classes/gateways/class.pmprogateway_stripe.php:449
9515
  #: classes/gateways/class.pmprogateway_stripe.php:369
9516
  #: classes/gateways/class.pmprogateway_stripe.php:459
9517
+ #: classes/gateways/class.pmprogateway_stripe.php:375
9518
+ #: classes/gateways/class.pmprogateway_stripe.php:465
9519
  msgid "Your site is using legacy API keys to authenticate with Stripe."
9520
  msgstr ""
9521
 
9522
  #: classes/gateways/class.pmprogateway_stripe.php:364
9523
  #: classes/gateways/class.pmprogateway_stripe.php:371
9524
+ #: classes/gateways/class.pmprogateway_stripe.php:377
9525
  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."
9526
  msgstr ""
9527
 
9529
  #: classes/gateways/class.pmprogateway_stripe.php:458
9530
  #: classes/gateways/class.pmprogateway_stripe.php:380
9531
  #: classes/gateways/class.pmprogateway_stripe.php:470
9532
+ #: classes/gateways/class.pmprogateway_stripe.php:386
9533
+ #: classes/gateways/class.pmprogateway_stripe.php:476
9534
  msgid "Stripe Connection:"
9535
  msgstr ""
9536
 
9538
  #: classes/gateways/class.pmprogateway_stripe.php:482
9539
  #: classes/gateways/class.pmprogateway_stripe.php:396
9540
  #: classes/gateways/class.pmprogateway_stripe.php:494
9541
+ #: classes/gateways/class.pmprogateway_stripe.php:402
9542
+ #: classes/gateways/class.pmprogateway_stripe.php:500
9543
  msgid "Disconnect From Stripe"
9544
  msgstr ""
9545
 
9546
  #: classes/gateways/class.pmprogateway_stripe.php:389
9547
  #: classes/gateways/class.pmprogateway_stripe.php:397
9548
+ #: classes/gateways/class.pmprogateway_stripe.php:403
9549
  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."
9550
  msgstr ""
9551
 
9553
  #: classes/gateways/class.pmprogateway_stripe.php:496
9554
  #: classes/gateways/class.pmprogateway_stripe.php:409
9555
  #: classes/gateways/class.pmprogateway_stripe.php:508
9556
+ #: classes/gateways/class.pmprogateway_stripe.php:415
9557
+ #: classes/gateways/class.pmprogateway_stripe.php:514
9558
  msgid "Connect with Stripe"
9559
  msgstr ""
9560
 
9561
  #: classes/gateways/class.pmprogateway_stripe.php:408
9562
  #: classes/gateways/class.pmprogateway_stripe.php:416
9563
+ #: classes/gateways/class.pmprogateway_stripe.php:422
9564
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
9565
  msgstr ""
9566
 
9567
  #: classes/gateways/class.pmprogateway_stripe.php:411
9568
  #: classes/gateways/class.pmprogateway_stripe.php:419
9569
+ #: classes/gateways/class.pmprogateway_stripe.php:425
9570
  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."
9571
  msgstr ""
9572
 
9577
  #: classes/gateways/class.pmprogateway_stripe.php:519
9578
  #: classes/gateways/class.pmprogateway_stripe.php:559
9579
  #: classes/gateways/class.pmprogateway_stripe.php:578
9580
+ #: classes/gateways/class.pmprogateway_stripe.php:437
9581
+ #: classes/gateways/class.pmprogateway_stripe.php:525
9582
+ #: classes/gateways/class.pmprogateway_stripe.php:584
9583
  msgid "Webhook"
9584
  msgstr ""
9585
 
9590
  #: classes/gateways/class.pmprogateway_stripe.php:523
9591
  #: classes/gateways/class.pmprogateway_stripe.php:594
9592
  #: classes/gateways/class.pmprogateway_stripe.php:613
9593
+ #: classes/gateways/class.pmprogateway_stripe.php:441
9594
+ #: classes/gateways/class.pmprogateway_stripe.php:529
9595
+ #: classes/gateways/class.pmprogateway_stripe.php:619
9596
  msgid "Webhook URL"
9597
  msgstr ""
9598
 
9599
  #: classes/gateways/class.pmprogateway_stripe.php:438
9600
  #: classes/gateways/class.pmprogateway_stripe.php:446
9601
+ #: classes/gateways/class.pmprogateway_stripe.php:452
9602
  msgid "Test Mode:"
9603
  msgstr ""
9604
 
9605
  #: classes/gateways/class.pmprogateway_stripe.php:450
9606
  #: classes/gateways/class.pmprogateway_stripe.php:461
9607
+ #: classes/gateways/class.pmprogateway_stripe.php:467
9608
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
9609
  msgstr ""
9610
 
9611
  #: classes/gateways/class.pmprogateway_stripe.php:483
9612
  #: classes/gateways/class.pmprogateway_stripe.php:495
9613
+ #: classes/gateways/class.pmprogateway_stripe.php:501
9614
  msgid "This will disconnect your site from Stripe in test mode only."
9615
  msgstr ""
9616
 
9617
  #: classes/gateways/class.pmprogateway_stripe.php:518
9618
  #: classes/gateways/class.pmprogateway_stripe.php:530
9619
+ #: classes/gateways/class.pmprogateway_stripe.php:536
9620
  msgid "Stripe API Settings (Legacy)"
9621
  msgstr ""
9622
 
9623
  #: classes/gateways/class.pmprogateway_stripe.php:531
9624
  #: classes/gateways/class.pmprogateway_stripe.php:543
9625
  #: classes/gateways/class.pmprogateway_stripe.php:562
9626
+ #: classes/gateways/class.pmprogateway_stripe.php:568
9627
  msgid "Your Publishable Key appears incorrect."
9628
  msgstr ""
9629
 
9633
  #: classes/gateways/class.pmprogateway_stripe.php:587
9634
  #: classes/gateways/class.pmprogateway_stripe.php:582
9635
  #: classes/gateways/class.pmprogateway_stripe.php:606
9636
+ #: classes/gateways/class.pmprogateway_stripe.php:588
9637
+ #: classes/gateways/class.pmprogateway_stripe.php:612
9638
  msgid "Create Webhook"
9639
  msgstr ""
9640
 
9641
  #: classes/gateways/class.pmprogateway_stripe.php:557
9642
  #: classes/gateways/class.pmprogateway_stripe.php:569
9643
  #: classes/gateways/class.pmprogateway_stripe.php:588
9644
+ #: classes/gateways/class.pmprogateway_stripe.php:594
9645
  msgid "A webhook is set up in Stripe, but it is disabled."
9646
  msgstr ""
9647
 
9648
  #: classes/gateways/class.pmprogateway_stripe.php:564
9649
  #: classes/gateways/class.pmprogateway_stripe.php:576
9650
  #: classes/gateways/class.pmprogateway_stripe.php:595
9651
+ #: classes/gateways/class.pmprogateway_stripe.php:601
9652
  msgid "A webhook is set up in Stripe, but it is using an old API version."
9653
  msgstr ""
9654
 
9655
  #: classes/gateways/class.pmprogateway_stripe.php:564
9656
  #: classes/gateways/class.pmprogateway_stripe.php:576
9657
  #: classes/gateways/class.pmprogateway_stripe.php:595
9658
+ #: classes/gateways/class.pmprogateway_stripe.php:601
9659
  msgid "Rebuild Webhook"
9660
  msgstr ""
9661
 
9668
  #: classes/gateways/class.pmprogateway_stripe.php:601
9669
  #: classes/gateways/class.pmprogateway_stripe.php:741
9670
  #: classes/gateways/class.pmprogateway_stripe.php:857
9671
+ #: classes/gateways/class.pmprogateway_stripe.php:607
9672
+ #: classes/gateways/class.pmprogateway_stripe.php:747
9673
+ #: classes/gateways/class.pmprogateway_stripe.php:863
9674
  msgid "Your webhook is enabled."
9675
  msgstr ""
9676
 
9677
  #: classes/gateways/class.pmprogateway_stripe.php:570
9678
  #: classes/gateways/class.pmprogateway_stripe.php:582
9679
  #: classes/gateways/class.pmprogateway_stripe.php:601
9680
+ #: classes/gateways/class.pmprogateway_stripe.php:607
9681
  msgid "Disable Webhook"
9682
  msgstr ""
9683
 
9693
  #: classes/gateways/class.pmprogateway_stripe.php:768
9694
  #: classes/gateways/class.pmprogateway_stripe.php:785
9695
  #: classes/gateways/class.pmprogateway_stripe.php:819
9696
+ #: classes/gateways/class.pmprogateway_stripe.php:614
9697
+ #: classes/gateways/class.pmprogateway_stripe.php:774
9698
+ #: classes/gateways/class.pmprogateway_stripe.php:791
9699
+ #: classes/gateways/class.pmprogateway_stripe.php:825
9700
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
9701
  msgstr ""
9702
 
9703
  #: classes/gateways/class.pmprogateway_stripe.php:589
9704
  #: classes/gateways/class.pmprogateway_stripe.php:601
9705
  #: classes/gateways/class.pmprogateway_stripe.php:620
9706
+ #: classes/gateways/class.pmprogateway_stripe.php:626
9707
  msgid "Other Stripe Settings"
9708
  msgstr ""
9709
 
9710
  #: classes/gateways/class.pmprogateway_stripe.php:593
9711
  #: classes/gateways/class.pmprogateway_stripe.php:605
9712
  #: classes/gateways/class.pmprogateway_stripe.php:624
9713
+ #: classes/gateways/class.pmprogateway_stripe.php:630
9714
  msgid "Stripe API Version"
9715
  msgstr ""
9716
 
9717
  #: classes/gateways/class.pmprogateway_stripe.php:612
9718
  #: classes/gateways/class.pmprogateway_stripe.php:624
9719
  #: classes/gateways/class.pmprogateway_stripe.php:643
9720
+ #: classes/gateways/class.pmprogateway_stripe.php:649
9721
  msgid "Enable Payment Request Button"
9722
  msgstr ""
9723
 
9724
  #: classes/gateways/class.pmprogateway_stripe.php:630
9725
  #: classes/gateways/class.pmprogateway_stripe.php:642
9726
  #: classes/gateways/class.pmprogateway_stripe.php:661
9727
+ #: classes/gateways/class.pmprogateway_stripe.php:667
9728
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
9729
  msgstr ""
9730
 
9731
  #: classes/gateways/class.pmprogateway_stripe.php:643
9732
  #: classes/gateways/class.pmprogateway_stripe.php:655
9733
  #: classes/gateways/class.pmprogateway_stripe.php:674
9734
+ #: classes/gateways/class.pmprogateway_stripe.php:680
9735
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
9736
  msgstr ""
9737
 
9738
  #: classes/gateways/class.pmprogateway_stripe.php:645
9739
  #: classes/gateways/class.pmprogateway_stripe.php:657
9740
  #: classes/gateways/class.pmprogateway_stripe.php:676
9741
+ #: classes/gateways/class.pmprogateway_stripe.php:682
9742
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
9743
  msgstr ""
9744
 
9745
  #: classes/gateways/class.pmprogateway_stripe.php:647
9746
  #: classes/gateways/class.pmprogateway_stripe.php:659
9747
  #: classes/gateways/class.pmprogateway_stripe.php:678
9748
+ #: classes/gateways/class.pmprogateway_stripe.php:684
9749
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
9750
  msgstr ""
9751
 
9752
  #: classes/gateways/class.pmprogateway_stripe.php:649
9753
  #: classes/gateways/class.pmprogateway_stripe.php:661
9754
  #: classes/gateways/class.pmprogateway_stripe.php:680
9755
+ #: classes/gateways/class.pmprogateway_stripe.php:686
9756
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
9757
  msgstr ""
9758
 
9759
  #: classes/gateways/class.pmprogateway_stripe.php:674
9760
  #: classes/gateways/class.pmprogateway_stripe.php:686
9761
  #: classes/gateways/class.pmprogateway_stripe.php:705
9762
+ #: classes/gateways/class.pmprogateway_stripe.php:711
9763
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
9764
  msgstr ""
9765
 
9766
  #: classes/gateways/class.pmprogateway_stripe.php:695
9767
  #: classes/gateways/class.pmprogateway_stripe.php:707
9768
  #: classes/gateways/class.pmprogateway_stripe.php:726
9769
+ #: classes/gateways/class.pmprogateway_stripe.php:732
9770
  msgid "Webhook creation failed. You might already have a webhook set up."
9771
  msgstr ""
9772
 
9776
  #: classes/gateways/class.pmprogateway_stripe.php:847
9777
  #: classes/gateways/class.pmprogateway_stripe.php:792
9778
  #: classes/gateways/class.pmprogateway_stripe.php:866
9779
+ #: classes/gateways/class.pmprogateway_stripe.php:798
9780
+ #: classes/gateways/class.pmprogateway_stripe.php:872
9781
  msgid "There was an error deleting the webhook."
9782
  msgstr ""
9783
 
9784
  #: classes/gateways/class.pmprogateway_stripe.php:811
9785
  #: classes/gateways/class.pmprogateway_stripe.php:823
9786
  #: classes/gateways/class.pmprogateway_stripe.php:842
9787
+ #: classes/gateways/class.pmprogateway_stripe.php:848
9788
  msgid "Webhook creation failed. Please refresh and try again."
9789
  msgstr ""
9790
 
9791
  #: classes/gateways/class.pmprogateway_stripe.php:867
9792
  #: classes/gateways/class.pmprogateway_stripe.php:879
9793
  #: classes/gateways/class.pmprogateway_stripe.php:898
9794
+ #: classes/gateways/class.pmprogateway_stripe.php:904
9795
  msgid "Verification steps confirmed. Your payment is processing."
9796
  msgstr ""
9797
 
9798
  #: classes/gateways/class.pmprogateway_stripe.php:1262
9799
  #: classes/gateways/class.pmprogateway_stripe.php:1274
9800
  #: classes/gateways/class.pmprogateway_stripe.php:1293
9801
+ #: classes/gateways/class.pmprogateway_stripe.php:1299
9802
  msgid "Pay with Credit Card"
9803
  msgstr ""
9804
 
9805
  #: classes/gateways/class.pmprogateway_stripe.php:1296
9806
  #: classes/gateways/class.pmprogateway_stripe.php:1308
9807
  #: classes/gateways/class.pmprogateway_stripe.php:1327
9808
+ #: classes/gateways/class.pmprogateway_stripe.php:1333
9809
  msgid "CVC"
9810
  msgstr ""
9811
 
9812
  #: classes/gateways/class.pmprogateway_stripe.php:1374
9813
  #: classes/gateways/class.pmprogateway_stripe.php:1386
9814
  #: classes/gateways/class.pmprogateway_stripe.php:1405
9815
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
9816
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
9817
  msgstr ""
9818
 
9828
  #: classes/gateways/class.pmprogateway_stripe.php:2016
9829
  #: classes/gateways/class.pmprogateway_stripe.php:2029
9830
  #: classes/gateways/class.pmprogateway_stripe.php:2033
9831
+ #: classes/gateways/class.pmprogateway_stripe.php:2018
9832
+ #: classes/gateways/class.pmprogateway_stripe.php:2022
9833
+ #: classes/gateways/class.pmprogateway_stripe.php:2035
9834
+ #: classes/gateways/class.pmprogateway_stripe.php:2039
9835
  msgid "Error: %s"
9836
  msgstr ""
9837
 
9841
  #: classes/gateways/class.pmprogateway_stripe.php:2182
9842
  #: classes/gateways/class.pmprogateway_stripe.php:2196
9843
  #: classes/gateways/class.pmprogateway_stripe.php:2201
9844
+ #: classes/gateways/class.pmprogateway_stripe.php:2202
9845
+ #: classes/gateways/class.pmprogateway_stripe.php:2207
9846
  msgid "Error getting subscription with Stripe:"
9847
  msgstr ""
9848
 
9852
  #: classes/gateways/class.pmprogateway_stripe.php:2834
9853
  #: classes/gateways/class.pmprogateway_stripe.php:2850
9854
  #: classes/gateways/class.pmprogateway_stripe.php:2856
9855
+ #: classes/gateways/class.pmprogateway_stripe.php:2862
9856
  msgid "Error: "
9857
  msgstr ""
9858
 
9859
  #: classes/gateways/class.pmprogateway_stripe.php:2836
9860
  #: classes/gateways/class.pmprogateway_stripe.php:2848
9861
  #: classes/gateways/class.pmprogateway_stripe.php:2870
9862
+ #: classes/gateways/class.pmprogateway_stripe.php:2876
9863
  msgid "Error: Unkown error while refunding charge #%s"
9864
  msgstr ""
9865
 
9866
  #: classes/gateways/class.pmprogateway_stripe.php:3330
9867
  #: classes/gateways/class.pmprogateway_stripe.php:3342
9868
  #: classes/gateways/class.pmprogateway_stripe.php:3364
9869
+ #: classes/gateways/class.pmprogateway_stripe.php:3370
9870
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
9871
  msgstr ""
9872
 
9873
  #: classes/gateways/class.pmprogateway_stripe.php:3347
9874
  #: classes/gateways/class.pmprogateway_stripe.php:3359
9875
  #: classes/gateways/class.pmprogateway_stripe.php:3381
9876
+ #: classes/gateways/class.pmprogateway_stripe.php:3387
9877
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
9878
  msgstr ""
9879
 
9880
  #: classes/gateways/class.pmprogateway_stripe.php:3533
9881
  #: classes/gateways/class.pmprogateway_stripe.php:3545
9882
  #: classes/gateways/class.pmprogateway_stripe.php:3567
9883
+ #: classes/gateways/class.pmprogateway_stripe.php:3573
9884
  msgid "Invalid response from the Stripe Connect server."
9885
  msgstr ""
9886
 
9888
  #: classes/gateways/class.pmprogateway_stripe.php:3561
9889
  #: classes/gateways/class.pmprogateway_stripe.php:3573
9890
  #: classes/gateways/class.pmprogateway_stripe.php:3595
9891
+ #: classes/gateways/class.pmprogateway_stripe.php:3601
9892
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
9893
  msgstr ""
9894
 
9896
  #: classes/gateways/class.pmprogateway_stripe.php:3597
9897
  #: classes/gateways/class.pmprogateway_stripe.php:3609
9898
  #: classes/gateways/class.pmprogateway_stripe.php:3631
9899
+ #: classes/gateways/class.pmprogateway_stripe.php:3637
9900
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
9901
  msgstr ""
9902
 
9903
  #: classes/gateways/class.pmprogateway_stripe.php:3768
9904
  #: classes/gateways/class.pmprogateway_stripe.php:3780
9905
  #: classes/gateways/class.pmprogateway_stripe.php:3802
9906
+ #: classes/gateways/class.pmprogateway_stripe.php:3808
9907
  msgid "Last webhook received at"
9908
  msgstr ""
9909
 
9910
  #: classes/gateways/class.pmprogateway_stripe.php:3770
9911
  #: classes/gateways/class.pmprogateway_stripe.php:3782
9912
  #: classes/gateways/class.pmprogateway_stripe.php:3804
9913
+ #: classes/gateways/class.pmprogateway_stripe.php:3810
9914
  msgid "No webhooks have been received."
9915
  msgstr ""
9916
 
9917
  #: classes/gateways/class.pmprogateway_stripe.php:3774
9918
  #: classes/gateways/class.pmprogateway_stripe.php:3786
9919
  #: classes/gateways/class.pmprogateway_stripe.php:3808
9920
+ #: classes/gateways/class.pmprogateway_stripe.php:3814
9921
  msgid "Your webhook may not be working correctly."
9922
  msgstr ""
9923
 
9924
  #: classes/gateways/class.pmprogateway_stripe.php:3776
9925
  #: classes/gateways/class.pmprogateway_stripe.php:3788
9926
  #: classes/gateways/class.pmprogateway_stripe.php:3810
9927
+ #: classes/gateways/class.pmprogateway_stripe.php:3816
9928
  msgid "Click here for info on setting up your webhook with Stripe."
9929
  msgstr ""
9930
 
12041
 
12042
  #: includes/login.php:429
12043
  #: includes/profile.php:843
12044
+ #: includes/profile.php:855
12045
  msgid "New passwords do not match."
12046
  msgstr ""
12047
 
12048
  #: includes/login.php:433
12049
  #: includes/profile.php:839
12050
+ #: includes/profile.php:851
12051
  msgid "Please complete all fields."
12052
  msgstr ""
12053
 
12077
 
12078
  #: includes/login.php:688
12079
  #: includes/profile.php:891
12080
+ #: includes/profile.php:903
12081
  msgid "New Password"
12082
  msgstr ""
12083
 
12084
  #: includes/login.php:690
12085
  #: includes/profile.php:894
12086
  #: includes/scripts.php:86
12087
+ #: includes/profile.php:906
12088
+ #: includes/scripts.php:85
12089
  msgid "Strength Indicator"
12090
  msgstr ""
12091
 
12092
  #: includes/login.php:694
12093
  #: includes/profile.php:898
12094
+ #: includes/profile.php:910
12095
  msgid "Confirm New Password"
12096
  msgstr ""
12097
 
12188
  #: includes/privacy.php:182
12189
  #: includes/profile.php:425
12190
  #: includes/profile.php:493
12191
+ #: includes/profile.php:499
12192
  msgid "Level ID"
12193
  msgstr ""
12194
 
12195
  #: includes/privacy.php:190
12196
  #: includes/profile.php:496
12197
+ #: includes/profile.php:502
12198
  msgid "Date Modified"
12199
  msgstr ""
12200
 
12201
  #: includes/privacy.php:194
12202
  #: includes/profile.php:497
12203
+ #: includes/profile.php:503
12204
  msgid "End Date"
12205
  msgstr ""
12206
 
12207
  #: includes/privacy.php:198
12208
  #: includes/profile.php:498
12209
+ #: includes/profile.php:504
12210
  msgid "Level Cost"
12211
  msgstr ""
12212
 
12305
  msgstr ""
12306
 
12307
  #: includes/profile.php:485
12308
+ #: includes/profile.php:488
12309
  msgid "No membership orders found."
12310
  msgstr ""
12311
 
12312
  #: includes/profile.php:537
12313
+ #: includes/profile.php:546
12314
  msgid "No membership history found."
12315
  msgstr ""
12316
 
12317
  #: includes/profile.php:644
12318
+ #: includes/profile.php:656
12319
  msgid "Log in to edit your profile."
12320
  msgstr ""
12321
 
12322
  #: includes/profile.php:679
12323
+ #: includes/profile.php:691
12324
  msgid "Please enter a display name."
12325
  msgstr ""
12326
 
12327
  #: includes/profile.php:689
12328
+ #: includes/profile.php:701
12329
  msgid "Please enter an email address."
12330
  msgstr ""
12331
 
12332
  #: includes/profile.php:691
12333
+ #: includes/profile.php:703
12334
  msgid "The email address isn&#8217;t correct."
12335
  msgstr ""
12336
 
12337
  #: includes/profile.php:695
12338
+ #: includes/profile.php:707
12339
  msgid "This email is already registered, please choose another one."
12340
  msgstr ""
12341
 
12342
  #: includes/profile.php:722
12343
+ #: includes/profile.php:734
12344
  msgid "Your profile has been updated."
12345
  msgstr ""
12346
 
12347
  #: includes/profile.php:749
12348
+ #: includes/profile.php:761
12349
  msgid "Display name publicly as"
12350
  msgstr ""
12351
 
12352
  #: includes/profile.php:762
12353
+ #: includes/profile.php:774
12354
  msgid "Site administrators must use the WordPress dashboard to update their email address."
12355
  msgstr ""
12356
 
12357
  #: includes/profile.php:785
12358
+ #: includes/profile.php:797
12359
  msgid "Update Profile"
12360
  msgstr ""
12361
 
12362
  #: includes/profile.php:841
12363
+ #: includes/profile.php:853
12364
  msgid "Please enter your current password."
12365
  msgstr ""
12366
 
12367
  #: includes/profile.php:845
12368
+ #: includes/profile.php:857
12369
  msgid "Your current password is incorrect."
12370
  msgstr ""
12371
 
12372
  #: includes/profile.php:856
12373
+ #: includes/profile.php:868
12374
  msgid "Your password has been updated."
12375
  msgstr ""
12376
 
12377
  #: includes/profile.php:886
12378
+ #: includes/profile.php:898
12379
  msgid "Current Password"
12380
  msgstr ""
12381
 
12382
  #: includes/profile.php:888
12383
  #: includes/profile.php:893
12384
  #: includes/profile.php:900
12385
+ #: includes/profile.php:905
12386
+ #: includes/profile.php:912
12387
  msgid "Required Field"
12388
  msgstr ""
12389
 
12488
  msgstr ""
12489
 
12490
  #: services/braintree-webhook.php:425
12491
+ #: services/braintree-webhook.php:426
12492
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
12493
  msgstr ""
12494
 
12495
  #: services/braintree-webhook.php:427
12496
+ #: services/braintree-webhook.php:428
12497
  msgid "A member's Braintree subscription has expired at %s"
12498
  msgstr ""
12499
 
12812
 
12813
  #: classes/gateways/class.pmprogateway_stripe.php:360
12814
  #: classes/gateways/class.pmprogateway_stripe.php:450
12815
+ #: classes/gateways/class.pmprogateway_stripe.php:366
12816
+ #: classes/gateways/class.pmprogateway_stripe.php:456
12817
  msgid "Connected with Legacy Keys"
12818
  msgstr ""
12819
 
12820
  #: classes/gateways/class.pmprogateway_stripe.php:370
12821
  #: classes/gateways/class.pmprogateway_stripe.php:460
12822
+ #: classes/gateways/class.pmprogateway_stripe.php:376
12823
+ #: classes/gateways/class.pmprogateway_stripe.php:466
12824
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
12825
  msgstr ""
12826
 
12827
  #: classes/gateways/class.pmprogateway_stripe.php:372
12828
  #: classes/gateways/class.pmprogateway_stripe.php:462
12829
+ #: classes/gateways/class.pmprogateway_stripe.php:378
12830
+ #: classes/gateways/class.pmprogateway_stripe.php:468
12831
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
12832
  msgstr ""
12833
 
12884
  msgstr ""
12885
 
12886
  #: classes/gateways/class.pmprogateway_stripe.php:533
12887
+ #: classes/gateways/class.pmprogateway_stripe.php:539
12888
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
12889
  msgstr ""
12890
 
12891
  #: classes/gateways/class.pmprogateway_stripe.php:534
12892
+ #: classes/gateways/class.pmprogateway_stripe.php:540
12893
  msgid "Click here to use the legacy API settings."
12894
  msgstr ""
12895
 
12896
  #: paid-memberships-pro.php:194
12897
  msgid "Once a month"
12898
  msgstr ""
12899
+
12900
+ #: adminpages/license.php:37
12901
+ msgid "There was an issue validating your license key: %s"
12902
+ msgstr ""
12903
+
12904
+ #: includes/email-templates.php:172
12905
+ msgid ""
12906
+ "<p>There was a new member checkout at !!sitename!!.</p>\n"
12907
+ "\n"
12908
+ "<p><strong>They have chosen to pay by check.</strong></p>\n"
12909
+ "\n"
12910
+ "<p>Below are details about the new membership account and a receipt for the initial membership invoice.</p>\n"
12911
+ "\n"
12912
+ "<p>Account: !!display_name!! (!!user_email!!)</p>\n"
12913
+ "<p>Membership Level: !!membership_level_name!!</p>\n"
12914
+ "<p>Membership Fee: !!membership_cost!!</p>\n"
12915
+ "!!membership_expiration!! !!discount_code!!\n"
12916
+ "\n"
12917
+ "<p>\n"
12918
+ "\tInvoice #!!invoice_id!! on !!invoice_date!!<br />\n"
12919
+ "\tTotal Billed: !!invoice_total!!\n"
12920
+ "</p>\n"
12921
+ "\n"
12922
+ "<p>Log in to your membership account here: !!login_url!!</p>"
12923
+ msgstr ""
12924
+
12925
+ #: includes/license.php:112
12926
+ msgid "Missing key."
12927
+ msgstr ""
12928
+
12929
+ #: shortcodes/pmpro_account.php:145
12930
+ msgctxt "A dash is shown when there is no expiration date."
12931
+ msgid "&#8212;"
12932
+ msgstr ""
languages/paid-memberships-pro-fi.mo CHANGED
Binary file
languages/paid-memberships-pro-fi.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.2\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-09-17T13:57:23+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -173,6 +173,7 @@ msgstr "Maksuväylä &amp; SSL"
173
  #: adminpages/orders.php:391
174
  #: adminpages/orders.php:1445
175
  #: adminpages/orders.php:1448
 
176
  msgid "Email"
177
  msgstr "Sähköposti"
178
 
@@ -311,6 +312,8 @@ msgstr "Piilota mainokset tilaajilta?"
311
  #: adminpages/advancedsettings.php:479
312
  #: classes/gateways/class.pmprogateway_stripe.php:634
313
  #: classes/gateways/class.pmprogateway_stripe.php:648
 
 
314
  msgid "No"
315
  msgstr "Ei"
316
 
@@ -371,6 +374,8 @@ msgstr "vain multisite"
371
  #: adminpages/advancedsettings.php:397
372
  #: classes/gateways/class.pmprogateway_stripe.php:636
373
  #: classes/gateways/class.pmprogateway_stripe.php:650
 
 
374
  msgid "Yes"
375
  msgstr "Kyllä"
376
 
@@ -564,6 +569,7 @@ msgstr "Koodi"
564
  #: includes/privacy.php:186
565
  #: includes/profile.php:495
566
  #: adminpages/discountcodes.php:489
 
567
  msgid "Start Date"
568
  msgstr "Alkamispäivä"
569
 
@@ -580,6 +586,7 @@ msgstr "Alkamispäivä"
580
  #: classes/gateways/class.pmprogateway_stripe.php:1301
581
  #: adminpages/discountcodes.php:507
582
  #: classes/gateways/class.pmprogateway_stripe.php:1320
 
583
  msgid "Expiration Date"
584
  msgstr "Päättymispäivä"
585
 
@@ -658,6 +665,7 @@ msgstr "Maksu"
658
  #: adminpages/discountcodes.php:612
659
  #: adminpages/discountcodes.php:699
660
  #: classes/gateways/class.pmprogateway_stripe.php:1363
 
661
  msgid "Day(s)"
662
  msgstr "Päivä(ä)"
663
 
@@ -675,6 +683,7 @@ msgstr "Päivä(ä)"
675
  #: adminpages/discountcodes.php:612
676
  #: adminpages/discountcodes.php:699
677
  #: classes/gateways/class.pmprogateway_stripe.php:1364
 
678
  msgid "Week(s)"
679
  msgstr "Viikko(a)"
680
 
@@ -692,6 +701,7 @@ msgstr "Viikko(a)"
692
  #: adminpages/discountcodes.php:612
693
  #: adminpages/discountcodes.php:699
694
  #: classes/gateways/class.pmprogateway_stripe.php:1365
 
695
  msgid "Month(s)"
696
  msgstr "Kuukautta"
697
 
@@ -709,6 +719,7 @@ msgstr "Kuukautta"
709
  #: adminpages/discountcodes.php:612
710
  #: adminpages/discountcodes.php:699
711
  #: classes/gateways/class.pmprogateway_stripe.php:1366
 
712
  msgid "Year(s)"
713
  msgstr "Vuotta"
714
 
@@ -1063,6 +1074,7 @@ msgstr "Laskutuksen asetukset"
1063
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1064
  #: adminpages/discountcodes.php:608
1065
  #: classes/gateways/class.pmprogateway_stripe.php:1497
 
1066
  msgid "per"
1067
  msgstr ""
1068
 
@@ -1184,6 +1196,8 @@ msgstr "Tallenna taso"
1184
  #: pages/cancel.php:96
1185
  #: shortcodes/pmpro_account.php:106
1186
  #: adminpages/orders.php:968
 
 
1187
  msgid "Cancel"
1188
  msgstr "Peruuta"
1189
 
@@ -1577,6 +1591,7 @@ msgstr "kuten. PayPal Express, PayPal Standard, Luottokortti."
1577
  #: adminpages/orders.php:679
1578
  #: classes/gateways/class.pmprogateway_stripe.php:1284
1579
  #: classes/gateways/class.pmprogateway_stripe.php:1303
 
1580
  msgid "Card Type"
1581
  msgstr "Korttityyppi"
1582
 
@@ -1631,6 +1646,7 @@ msgstr "Vanhentumisvuosi"
1631
  #: adminpages/dashboard.php:294
1632
  #: adminpages/orders.php:742
1633
  #: adminpages/orders.php:1348
 
1634
  msgid "Status"
1635
  msgstr "Tila"
1636
 
@@ -2487,6 +2503,7 @@ msgstr ""
2487
  #: classes/class.pmproemail.php:769
2488
  #: classes/class.pmproemail.php:771
2489
  #: classes/gateways/class.pmprogateway_stripe.php:1333
 
2490
  msgid "Discount Code"
2491
  msgstr "Alennuskoodi"
2492
 
@@ -2756,6 +2773,7 @@ msgstr ""
2756
  #: pages/checkout.php:367
2757
  #: classes/gateways/class.pmprogateway_stripe.php:1264
2758
  #: classes/gateways/class.pmprogateway_stripe.php:1283
 
2759
  #, php-format
2760
  msgid "We Accept %s"
2761
  msgstr "Maksuvälineenä käyvät %s"
@@ -2768,6 +2786,7 @@ msgstr "Maksuvälineenä käyvät %s"
2768
  #: pages/checkout.php:366
2769
  #: classes/gateways/class.pmprogateway_stripe.php:1263
2770
  #: classes/gateways/class.pmprogateway_stripe.php:1282
 
2771
  msgid "Payment Information"
2772
  msgstr "Maksutiedot"
2773
 
@@ -2781,6 +2800,7 @@ msgstr "Maksutiedot"
2781
  #: pages/checkout.php:389
2782
  #: classes/gateways/class.pmprogateway_stripe.php:1297
2783
  #: classes/gateways/class.pmprogateway_stripe.php:1316
 
2784
  msgid "Card Number"
2785
  msgstr "Kortin numero"
2786
 
@@ -2810,6 +2830,7 @@ msgstr ""
2810
  #: pages/checkout.php:432
2811
  #: classes/gateways/class.pmprogateway_stripe.php:1319
2812
  #: classes/gateways/class.pmprogateway_stripe.php:1338
 
2813
  msgid "Apply"
2814
  msgstr "Käytä"
2815
 
@@ -2959,6 +2980,7 @@ msgstr ""
2959
  #: classes/gateways/class.pmprogateway_paypal.php:132
2960
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
2961
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
 
2962
  msgid "PayPal Settings"
2963
  msgstr ""
2964
 
@@ -2974,6 +2996,7 @@ msgstr ""
2974
  #: classes/gateways/class.pmprogateway_paypal.php:153
2975
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
2976
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
 
2977
  msgid "Gateway Account Email"
2978
  msgstr ""
2979
 
@@ -2985,6 +3008,7 @@ msgstr ""
2985
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
2986
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
2987
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
 
2988
  msgid "API Username"
2989
  msgstr ""
2990
 
@@ -2996,6 +3020,7 @@ msgstr ""
2996
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
2997
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
2998
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
 
2999
  msgid "API Password"
3000
  msgstr ""
3001
 
@@ -3005,6 +3030,7 @@ msgstr ""
3005
  #: classes/gateways/class.pmprogateway_paypal.php:177
3006
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
3007
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
 
3008
  msgid "API Signature"
3009
  msgstr ""
3010
 
@@ -3014,6 +3040,7 @@ msgstr ""
3014
  #: classes/gateways/class.pmprogateway_paypal.php:196
3015
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
3016
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
 
3017
  msgid "IPN Handler URL"
3018
  msgstr ""
3019
 
@@ -3029,6 +3056,7 @@ msgstr ""
3029
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
3030
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
3031
  #: pages/checkout.php:218
 
3032
  msgid "Check Out with PayPal"
3033
  msgstr ""
3034
 
@@ -3040,6 +3068,7 @@ msgstr ""
3040
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
3041
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
3042
  #: pages/checkout.php:526
 
3043
  msgid "Submit and Check Out"
3044
  msgstr ""
3045
 
@@ -3053,6 +3082,7 @@ msgstr ""
3053
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
3054
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
3055
  #: pages/checkout.php:526
 
3056
  msgid "Submit and Confirm"
3057
  msgstr ""
3058
 
@@ -3062,6 +3092,7 @@ msgstr ""
3062
  #: classes/gateways/class.pmprogateway_paypal.php:716
3063
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
3064
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
 
3065
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
3066
  msgstr ""
3067
 
@@ -3070,12 +3101,14 @@ msgstr ""
3070
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
3071
  #: paid-memberships-pro.php:160
3072
  #: paid-memberships-pro.php:162
 
3073
  msgid "PayPal Express"
3074
  msgstr ""
3075
 
3076
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
3077
  #: classes/gateways/class.pmprogateway_paypal.php:199
3078
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
 
3079
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
3080
  msgstr ""
3081
 
@@ -3083,6 +3116,8 @@ msgstr ""
3083
  #: classes/gateways/class.pmprogateway_paypalexpress.php:320
3084
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
3085
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
 
 
3086
  msgid "The PayPal Token was lost."
3087
  msgstr ""
3088
 
@@ -3104,6 +3139,7 @@ msgstr ""
3104
  #: classes/gateways/class.pmprogateway_stripe.php:252
3105
  #: paid-memberships-pro.php:159
3106
  #: paid-memberships-pro.php:161
 
3107
  msgid "Stripe"
3108
  msgstr ""
3109
 
@@ -3115,6 +3151,7 @@ msgstr ""
3115
  #: classes/gateways/class.pmprogateway_stripe.php:539
3116
  #: classes/gateways/class.pmprogateway_stripe.php:551
3117
  #: classes/gateways/class.pmprogateway_stripe.php:570
 
3118
  msgid "Secret Key"
3119
  msgstr ""
3120
 
@@ -3122,6 +3159,7 @@ msgstr ""
3122
  #: classes/gateways/class.pmprogateway_stripe.php:523
3123
  #: classes/gateways/class.pmprogateway_stripe.php:535
3124
  #: classes/gateways/class.pmprogateway_stripe.php:554
 
3125
  msgid "Publishable Key"
3126
  msgstr ""
3127
 
@@ -3129,6 +3167,7 @@ msgstr ""
3129
  #: classes/gateways/class.pmprogateway_stripe.php:598
3130
  #: classes/gateways/class.pmprogateway_stripe.php:610
3131
  #: classes/gateways/class.pmprogateway_stripe.php:629
 
3132
  msgid "Show Billing Address Fields"
3133
  msgstr ""
3134
 
@@ -3136,6 +3175,7 @@ msgstr ""
3136
  #: classes/gateways/class.pmprogateway_stripe.php:607
3137
  #: classes/gateways/class.pmprogateway_stripe.php:619
3138
  #: classes/gateways/class.pmprogateway_stripe.php:638
 
3139
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
3140
  msgstr ""
3141
 
@@ -3147,6 +3187,7 @@ msgstr ""
3147
  #: classes/gateways/class.pmprogateway_stripe.php:1379
3148
  #: classes/gateways/class.pmprogateway_stripe.php:1391
3149
  #: classes/gateways/class.pmprogateway_stripe.php:1410
 
3150
  msgid "Subscription Updates"
3151
  msgstr ""
3152
 
@@ -3154,6 +3195,7 @@ msgstr ""
3154
  #: classes/gateways/class.pmprogateway_stripe.php:1383
3155
  #: classes/gateways/class.pmprogateway_stripe.php:1395
3156
  #: classes/gateways/class.pmprogateway_stripe.php:1414
 
3157
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
3158
  msgstr ""
3159
 
@@ -3161,6 +3203,7 @@ msgstr ""
3161
  #: classes/gateways/class.pmprogateway_stripe.php:1385
3162
  #: classes/gateways/class.pmprogateway_stripe.php:1397
3163
  #: classes/gateways/class.pmprogateway_stripe.php:1416
 
3164
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
3165
  msgstr ""
3166
 
@@ -3170,6 +3213,7 @@ msgstr ""
3170
  #: pages/billing.php:425
3171
  #: classes/gateways/class.pmprogateway_stripe.php:1403
3172
  #: classes/gateways/class.pmprogateway_stripe.php:1422
 
3173
  msgid "Update"
3174
  msgstr "Päivitä"
3175
 
@@ -3177,6 +3221,7 @@ msgstr "Päivitä"
3177
  #: classes/gateways/class.pmprogateway_stripe.php:2480
3178
  #: classes/gateways/class.pmprogateway_stripe.php:2492
3179
  #: classes/gateways/class.pmprogateway_stripe.php:2514
 
3180
  msgid "Could not cancel the old subscription. Updates have not been processed."
3181
  msgstr ""
3182
 
@@ -3190,6 +3235,9 @@ msgstr ""
3190
  #: classes/gateways/class.pmprogateway_stripe.php:2127
3191
  #: classes/gateways/class.pmprogateway_stripe.php:2132
3192
  #: classes/gateways/class.pmprogateway_stripe.php:2137
 
 
 
3193
  msgid "Error creating customer record with Stripe:"
3194
  msgstr ""
3195
 
@@ -3201,6 +3249,8 @@ msgstr ""
3201
  #: classes/gateways/class.pmprogateway_stripe.php:2356
3202
  #: classes/gateways/class.pmprogateway_stripe.php:2373
3203
  #: classes/gateways/class.pmprogateway_stripe.php:2378
 
 
3204
  msgid "Error creating plan with Stripe:"
3205
  msgstr ""
3206
 
@@ -3211,6 +3261,8 @@ msgstr ""
3211
  #: classes/gateways/class.pmprogateway_stripe.php:2401
3212
  #: classes/gateways/class.pmprogateway_stripe.php:2409
3213
  #: classes/gateways/class.pmprogateway_stripe.php:2423
 
 
3214
  msgid "Error subscribing customer to plan with Stripe:"
3215
  msgstr ""
3216
 
@@ -3218,6 +3270,7 @@ msgstr ""
3218
  #: classes/gateways/class.pmprogateway_stripe.php:2632
3219
  #: classes/gateways/class.pmprogateway_stripe.php:2644
3220
  #: classes/gateways/class.pmprogateway_stripe.php:2666
 
3221
  msgid "Could not cancel old subscription."
3222
  msgstr ""
3223
 
@@ -3225,6 +3278,7 @@ msgstr ""
3225
  #: classes/gateways/class.pmprogateway_stripe.php:2648
3226
  #: classes/gateways/class.pmprogateway_stripe.php:2660
3227
  #: classes/gateways/class.pmprogateway_stripe.php:2682
 
3228
  msgid "Could not find the customer."
3229
  msgstr ""
3230
 
@@ -3810,6 +3864,7 @@ msgstr "uloskirjaus"
3810
  #: adminpages/dashboard.php:224
3811
  #: adminpages/dashboard.php:292
3812
  #: adminpages/orders.php:1343
 
3813
  msgid "Level"
3814
  msgstr "Taso"
3815
 
@@ -3845,6 +3900,7 @@ msgstr ""
3845
  #: includes/profile.php:747
3846
  #: pages/billing.php:164
3847
  #: pages/checkout.php:234
 
3848
  msgid "First Name"
3849
  msgstr "Etunimi"
3850
 
@@ -3853,6 +3909,7 @@ msgstr "Etunimi"
3853
  #: includes/profile.php:748
3854
  #: pages/billing.php:168
3855
  #: pages/checkout.php:238
 
3856
  msgid "Last Name"
3857
  msgstr "Sukunimi"
3858
 
@@ -4463,6 +4520,7 @@ msgstr ""
4463
 
4464
  #: services/authnet-silent-post.php:141
4465
  #: services/authnet-silent-post.php:173
 
4466
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
4467
  msgstr ""
4468
 
@@ -4506,6 +4564,8 @@ msgstr "Muokkaa profiilia"
4506
  #: includes/profile.php:872
4507
  #: includes/profile.php:909
4508
  #: shortcodes/pmpro_account.php:195
 
 
4509
  msgid "Change Password"
4510
  msgstr "Muuta salasanasi"
4511
 
@@ -4578,6 +4638,7 @@ msgstr ""
4578
  #: adminpages/advancedsettings.php:316
4579
  #: includes/privacy.php:175
4580
  #: includes/profile.php:509
 
4581
  #~ msgid "Never"
4582
  #~ msgstr "Ei koskaan"
4583
 
@@ -4739,6 +4800,9 @@ msgstr ""
4739
  #: adminpages/orders.php:1544
4740
  #: adminpages/orders.php:1554
4741
  #: adminpages/orders.php:1553
 
 
 
4742
  msgid "N/A"
4743
  msgstr ""
4744
 
@@ -4765,6 +4829,7 @@ msgstr ""
4765
 
4766
  #: adminpages/admin_header.php:152
4767
  #: classes/gateways/class.pmprogateway_stripe.php:76
 
4768
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
4769
  msgstr ""
4770
 
@@ -5032,6 +5097,7 @@ msgstr ""
5032
  #: adminpages/dashboard.php:174
5033
  #: adminpages/license.php:49
5034
  #: adminpages/dashboard.php:178
 
5035
  msgid "Your license is invalid or expired."
5036
  msgstr ""
5037
 
@@ -5043,6 +5109,7 @@ msgstr ""
5043
  #: adminpages/dashboard.php:177
5044
  #: adminpages/license.php:51
5045
  #: adminpages/dashboard.php:181
 
5046
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
5047
  msgstr ""
5048
 
@@ -5524,26 +5591,33 @@ msgid "Your license key has been validated."
5524
  msgstr ""
5525
 
5526
  #: adminpages/license.php:43
 
5527
  msgid "Paid Memberships Pro Support License"
5528
  msgstr ""
5529
 
5530
  #: adminpages/license.php:47
 
5531
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
5532
  msgstr ""
5533
 
5534
  #: adminpages/license.php:49
 
 
5535
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
5536
  msgstr ""
5537
 
5538
  #: adminpages/license.php:59
 
5539
  msgid "Enter license key here..."
5540
  msgstr ""
5541
 
5542
  #: adminpages/license.php:61
 
5543
  msgid "Validate Key"
5544
  msgstr ""
5545
 
5546
  #: adminpages/license.php:95
 
5547
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
5548
  msgstr ""
5549
 
@@ -6184,6 +6258,7 @@ msgstr ""
6184
 
6185
  #: classes/gateways/class.pmprogateway_braintree.php:87
6186
  #: classes/gateways/class.pmprogateway_stripe.php:91
 
6187
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
6188
  msgstr ""
6189
 
@@ -6492,6 +6567,7 @@ msgid "Your order has been refused."
6492
  msgstr ""
6493
 
6494
  #: classes/gateways/class.pmprogateway_cybersource.php:922
 
6495
  msgid "Unknown error."
6496
  msgstr ""
6497
 
@@ -6506,23 +6582,28 @@ msgstr ""
6506
  #: classes/gateways/class.pmprogateway_paypal.php:146
6507
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
6508
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
 
6509
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
6510
  msgstr ""
6511
 
6512
  #: classes/gateways/class.pmprogateway_paypal.php:185
6513
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
 
6514
  msgid "Confirmation Step"
6515
  msgstr ""
6516
 
6517
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
 
6518
  msgid "Checkout was already processed."
6519
  msgstr ""
6520
 
6521
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
 
6522
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
6523
  msgstr ""
6524
 
6525
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
 
6526
  msgid "Error creating plan with PayPal."
6527
  msgstr ""
6528
 
@@ -6534,11 +6615,14 @@ msgstr ""
6534
  #: classes/gateways/class.pmprogateway_stripe.php:436
6535
  #: classes/gateways/class.pmprogateway_stripe.php:354
6536
  #: classes/gateways/class.pmprogateway_stripe.php:444
 
 
6537
  msgid "Stripe Connect Settings"
6538
  msgstr ""
6539
 
6540
  #: classes/gateways/class.pmprogateway_stripe.php:352
6541
  #: classes/gateways/class.pmprogateway_stripe.php:356
 
6542
  msgid "Live Mode:"
6543
  msgstr ""
6544
 
@@ -6546,6 +6630,8 @@ msgstr ""
6546
  #: classes/gateways/class.pmprogateway_stripe.php:440
6547
  #: classes/gateways/class.pmprogateway_stripe.php:358
6548
  #: classes/gateways/class.pmprogateway_stripe.php:448
 
 
6549
  msgid "Connected"
6550
  msgstr ""
6551
 
@@ -6553,6 +6639,8 @@ msgstr ""
6553
  #: classes/gateways/class.pmprogateway_stripe.php:442
6554
  #: classes/gateways/class.pmprogateway_stripe.php:362
6555
  #: classes/gateways/class.pmprogateway_stripe.php:452
 
 
6556
  msgid "Not Connected"
6557
  msgstr ""
6558
 
@@ -6560,11 +6648,14 @@ msgstr ""
6560
  #: classes/gateways/class.pmprogateway_stripe.php:449
6561
  #: classes/gateways/class.pmprogateway_stripe.php:369
6562
  #: classes/gateways/class.pmprogateway_stripe.php:459
 
 
6563
  msgid "Your site is using legacy API keys to authenticate with Stripe."
6564
  msgstr ""
6565
 
6566
  #: classes/gateways/class.pmprogateway_stripe.php:364
6567
  #: classes/gateways/class.pmprogateway_stripe.php:371
 
6568
  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."
6569
  msgstr ""
6570
 
@@ -6572,6 +6663,8 @@ msgstr ""
6572
  #: classes/gateways/class.pmprogateway_stripe.php:458
6573
  #: classes/gateways/class.pmprogateway_stripe.php:380
6574
  #: classes/gateways/class.pmprogateway_stripe.php:470
 
 
6575
  msgid "Stripe Connection:"
6576
  msgstr ""
6577
 
@@ -6579,11 +6672,14 @@ msgstr ""
6579
  #: classes/gateways/class.pmprogateway_stripe.php:482
6580
  #: classes/gateways/class.pmprogateway_stripe.php:396
6581
  #: classes/gateways/class.pmprogateway_stripe.php:494
 
 
6582
  msgid "Disconnect From Stripe"
6583
  msgstr ""
6584
 
6585
  #: classes/gateways/class.pmprogateway_stripe.php:389
6586
  #: classes/gateways/class.pmprogateway_stripe.php:397
 
6587
  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."
6588
  msgstr ""
6589
 
@@ -6591,16 +6687,20 @@ msgstr ""
6591
  #: classes/gateways/class.pmprogateway_stripe.php:496
6592
  #: classes/gateways/class.pmprogateway_stripe.php:409
6593
  #: classes/gateways/class.pmprogateway_stripe.php:508
 
 
6594
  msgid "Connect with Stripe"
6595
  msgstr ""
6596
 
6597
  #: classes/gateways/class.pmprogateway_stripe.php:408
6598
  #: classes/gateways/class.pmprogateway_stripe.php:416
 
6599
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
6600
  msgstr ""
6601
 
6602
  #: classes/gateways/class.pmprogateway_stripe.php:411
6603
  #: classes/gateways/class.pmprogateway_stripe.php:419
 
6604
  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."
6605
  msgstr ""
6606
 
@@ -6611,6 +6711,9 @@ msgstr ""
6611
  #: classes/gateways/class.pmprogateway_stripe.php:519
6612
  #: classes/gateways/class.pmprogateway_stripe.php:559
6613
  #: classes/gateways/class.pmprogateway_stripe.php:578
 
 
 
6614
  msgid "Webhook"
6615
  msgstr ""
6616
 
@@ -6621,32 +6724,40 @@ msgstr ""
6621
  #: classes/gateways/class.pmprogateway_stripe.php:523
6622
  #: classes/gateways/class.pmprogateway_stripe.php:594
6623
  #: classes/gateways/class.pmprogateway_stripe.php:613
 
 
 
6624
  msgid "Webhook URL"
6625
  msgstr ""
6626
 
6627
  #: classes/gateways/class.pmprogateway_stripe.php:438
6628
  #: classes/gateways/class.pmprogateway_stripe.php:446
 
6629
  msgid "Test Mode:"
6630
  msgstr ""
6631
 
6632
  #: classes/gateways/class.pmprogateway_stripe.php:450
6633
  #: classes/gateways/class.pmprogateway_stripe.php:461
 
6634
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
6635
  msgstr ""
6636
 
6637
  #: classes/gateways/class.pmprogateway_stripe.php:483
6638
  #: classes/gateways/class.pmprogateway_stripe.php:495
 
6639
  msgid "This will disconnect your site from Stripe in test mode only."
6640
  msgstr ""
6641
 
6642
  #: classes/gateways/class.pmprogateway_stripe.php:518
6643
  #: classes/gateways/class.pmprogateway_stripe.php:530
 
6644
  msgid "Stripe API Settings (Legacy)"
6645
  msgstr ""
6646
 
6647
  #: classes/gateways/class.pmprogateway_stripe.php:531
6648
  #: classes/gateways/class.pmprogateway_stripe.php:543
6649
  #: classes/gateways/class.pmprogateway_stripe.php:562
 
6650
  msgid "Your Publishable Key appears incorrect."
6651
  msgstr ""
6652
 
@@ -6656,24 +6767,29 @@ msgstr ""
6656
  #: classes/gateways/class.pmprogateway_stripe.php:587
6657
  #: classes/gateways/class.pmprogateway_stripe.php:582
6658
  #: classes/gateways/class.pmprogateway_stripe.php:606
 
 
6659
  msgid "Create Webhook"
6660
  msgstr ""
6661
 
6662
  #: classes/gateways/class.pmprogateway_stripe.php:557
6663
  #: classes/gateways/class.pmprogateway_stripe.php:569
6664
  #: classes/gateways/class.pmprogateway_stripe.php:588
 
6665
  msgid "A webhook is set up in Stripe, but it is disabled."
6666
  msgstr ""
6667
 
6668
  #: classes/gateways/class.pmprogateway_stripe.php:564
6669
  #: classes/gateways/class.pmprogateway_stripe.php:576
6670
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
6671
  msgid "A webhook is set up in Stripe, but it is using an old API version."
6672
  msgstr ""
6673
 
6674
  #: classes/gateways/class.pmprogateway_stripe.php:564
6675
  #: classes/gateways/class.pmprogateway_stripe.php:576
6676
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
6677
  msgid "Rebuild Webhook"
6678
  msgstr ""
6679
 
@@ -6686,12 +6802,16 @@ msgstr ""
6686
  #: classes/gateways/class.pmprogateway_stripe.php:601
6687
  #: classes/gateways/class.pmprogateway_stripe.php:741
6688
  #: classes/gateways/class.pmprogateway_stripe.php:857
 
 
 
6689
  msgid "Your webhook is enabled."
6690
  msgstr ""
6691
 
6692
  #: classes/gateways/class.pmprogateway_stripe.php:570
6693
  #: classes/gateways/class.pmprogateway_stripe.php:582
6694
  #: classes/gateways/class.pmprogateway_stripe.php:601
 
6695
  msgid "Disable Webhook"
6696
  msgstr ""
6697
 
@@ -6707,66 +6827,80 @@ msgstr ""
6707
  #: classes/gateways/class.pmprogateway_stripe.php:768
6708
  #: classes/gateways/class.pmprogateway_stripe.php:785
6709
  #: classes/gateways/class.pmprogateway_stripe.php:819
 
 
 
 
6710
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
6711
  msgstr ""
6712
 
6713
  #: classes/gateways/class.pmprogateway_stripe.php:589
6714
  #: classes/gateways/class.pmprogateway_stripe.php:601
6715
  #: classes/gateways/class.pmprogateway_stripe.php:620
 
6716
  msgid "Other Stripe Settings"
6717
  msgstr ""
6718
 
6719
  #: classes/gateways/class.pmprogateway_stripe.php:593
6720
  #: classes/gateways/class.pmprogateway_stripe.php:605
6721
  #: classes/gateways/class.pmprogateway_stripe.php:624
 
6722
  msgid "Stripe API Version"
6723
  msgstr ""
6724
 
6725
  #: classes/gateways/class.pmprogateway_stripe.php:612
6726
  #: classes/gateways/class.pmprogateway_stripe.php:624
6727
  #: classes/gateways/class.pmprogateway_stripe.php:643
 
6728
  msgid "Enable Payment Request Button"
6729
  msgstr ""
6730
 
6731
  #: classes/gateways/class.pmprogateway_stripe.php:630
6732
  #: classes/gateways/class.pmprogateway_stripe.php:642
6733
  #: classes/gateways/class.pmprogateway_stripe.php:661
 
6734
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
6735
  msgstr ""
6736
 
6737
  #: classes/gateways/class.pmprogateway_stripe.php:643
6738
  #: classes/gateways/class.pmprogateway_stripe.php:655
6739
  #: classes/gateways/class.pmprogateway_stripe.php:674
 
6740
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
6741
  msgstr ""
6742
 
6743
  #: classes/gateways/class.pmprogateway_stripe.php:645
6744
  #: classes/gateways/class.pmprogateway_stripe.php:657
6745
  #: classes/gateways/class.pmprogateway_stripe.php:676
 
6746
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
6747
  msgstr ""
6748
 
6749
  #: classes/gateways/class.pmprogateway_stripe.php:647
6750
  #: classes/gateways/class.pmprogateway_stripe.php:659
6751
  #: classes/gateways/class.pmprogateway_stripe.php:678
 
6752
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
6753
  msgstr ""
6754
 
6755
  #: classes/gateways/class.pmprogateway_stripe.php:649
6756
  #: classes/gateways/class.pmprogateway_stripe.php:661
6757
  #: classes/gateways/class.pmprogateway_stripe.php:680
 
6758
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
6759
  msgstr ""
6760
 
6761
  #: classes/gateways/class.pmprogateway_stripe.php:674
6762
  #: classes/gateways/class.pmprogateway_stripe.php:686
6763
  #: classes/gateways/class.pmprogateway_stripe.php:705
 
6764
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
6765
  msgstr ""
6766
 
6767
  #: classes/gateways/class.pmprogateway_stripe.php:695
6768
  #: classes/gateways/class.pmprogateway_stripe.php:707
6769
  #: classes/gateways/class.pmprogateway_stripe.php:726
 
6770
  msgid "Webhook creation failed. You might already have a webhook set up."
6771
  msgstr ""
6772
 
@@ -6776,36 +6910,43 @@ msgstr ""
6776
  #: classes/gateways/class.pmprogateway_stripe.php:847
6777
  #: classes/gateways/class.pmprogateway_stripe.php:792
6778
  #: classes/gateways/class.pmprogateway_stripe.php:866
 
 
6779
  msgid "There was an error deleting the webhook."
6780
  msgstr ""
6781
 
6782
  #: classes/gateways/class.pmprogateway_stripe.php:811
6783
  #: classes/gateways/class.pmprogateway_stripe.php:823
6784
  #: classes/gateways/class.pmprogateway_stripe.php:842
 
6785
  msgid "Webhook creation failed. Please refresh and try again."
6786
  msgstr ""
6787
 
6788
  #: classes/gateways/class.pmprogateway_stripe.php:867
6789
  #: classes/gateways/class.pmprogateway_stripe.php:879
6790
  #: classes/gateways/class.pmprogateway_stripe.php:898
 
6791
  msgid "Verification steps confirmed. Your payment is processing."
6792
  msgstr ""
6793
 
6794
  #: classes/gateways/class.pmprogateway_stripe.php:1262
6795
  #: classes/gateways/class.pmprogateway_stripe.php:1274
6796
  #: classes/gateways/class.pmprogateway_stripe.php:1293
 
6797
  msgid "Pay with Credit Card"
6798
  msgstr ""
6799
 
6800
  #: classes/gateways/class.pmprogateway_stripe.php:1296
6801
  #: classes/gateways/class.pmprogateway_stripe.php:1308
6802
  #: classes/gateways/class.pmprogateway_stripe.php:1327
 
6803
  msgid "CVC"
6804
  msgstr ""
6805
 
6806
  #: classes/gateways/class.pmprogateway_stripe.php:1374
6807
  #: classes/gateways/class.pmprogateway_stripe.php:1386
6808
  #: classes/gateways/class.pmprogateway_stripe.php:1405
 
6809
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
6810
  msgstr ""
6811
 
@@ -6821,6 +6962,10 @@ msgstr ""
6821
  #: classes/gateways/class.pmprogateway_stripe.php:2016
6822
  #: classes/gateways/class.pmprogateway_stripe.php:2029
6823
  #: classes/gateways/class.pmprogateway_stripe.php:2033
 
 
 
 
6824
  msgid "Error: %s"
6825
  msgstr ""
6826
 
@@ -6830,6 +6975,8 @@ msgstr ""
6830
  #: classes/gateways/class.pmprogateway_stripe.php:2182
6831
  #: classes/gateways/class.pmprogateway_stripe.php:2196
6832
  #: classes/gateways/class.pmprogateway_stripe.php:2201
 
 
6833
  msgid "Error getting subscription with Stripe:"
6834
  msgstr ""
6835
 
@@ -6839,30 +6986,35 @@ msgstr ""
6839
  #: classes/gateways/class.pmprogateway_stripe.php:2834
6840
  #: classes/gateways/class.pmprogateway_stripe.php:2850
6841
  #: classes/gateways/class.pmprogateway_stripe.php:2856
 
6842
  msgid "Error: "
6843
  msgstr ""
6844
 
6845
  #: classes/gateways/class.pmprogateway_stripe.php:2836
6846
  #: classes/gateways/class.pmprogateway_stripe.php:2848
6847
  #: classes/gateways/class.pmprogateway_stripe.php:2870
 
6848
  msgid "Error: Unkown error while refunding charge #%s"
6849
  msgstr ""
6850
 
6851
  #: classes/gateways/class.pmprogateway_stripe.php:3330
6852
  #: classes/gateways/class.pmprogateway_stripe.php:3342
6853
  #: classes/gateways/class.pmprogateway_stripe.php:3364
 
6854
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
6855
  msgstr ""
6856
 
6857
  #: classes/gateways/class.pmprogateway_stripe.php:3347
6858
  #: classes/gateways/class.pmprogateway_stripe.php:3359
6859
  #: classes/gateways/class.pmprogateway_stripe.php:3381
 
6860
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
6861
  msgstr ""
6862
 
6863
  #: classes/gateways/class.pmprogateway_stripe.php:3533
6864
  #: classes/gateways/class.pmprogateway_stripe.php:3545
6865
  #: classes/gateways/class.pmprogateway_stripe.php:3567
 
6866
  msgid "Invalid response from the Stripe Connect server."
6867
  msgstr ""
6868
 
@@ -6870,6 +7022,7 @@ msgstr ""
6870
  #: classes/gateways/class.pmprogateway_stripe.php:3561
6871
  #: classes/gateways/class.pmprogateway_stripe.php:3573
6872
  #: classes/gateways/class.pmprogateway_stripe.php:3595
 
6873
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
6874
  msgstr ""
6875
 
@@ -6877,30 +7030,35 @@ msgstr ""
6877
  #: classes/gateways/class.pmprogateway_stripe.php:3597
6878
  #: classes/gateways/class.pmprogateway_stripe.php:3609
6879
  #: classes/gateways/class.pmprogateway_stripe.php:3631
 
6880
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
6881
  msgstr ""
6882
 
6883
  #: classes/gateways/class.pmprogateway_stripe.php:3768
6884
  #: classes/gateways/class.pmprogateway_stripe.php:3780
6885
  #: classes/gateways/class.pmprogateway_stripe.php:3802
 
6886
  msgid "Last webhook received at"
6887
  msgstr ""
6888
 
6889
  #: classes/gateways/class.pmprogateway_stripe.php:3770
6890
  #: classes/gateways/class.pmprogateway_stripe.php:3782
6891
  #: classes/gateways/class.pmprogateway_stripe.php:3804
 
6892
  msgid "No webhooks have been received."
6893
  msgstr ""
6894
 
6895
  #: classes/gateways/class.pmprogateway_stripe.php:3774
6896
  #: classes/gateways/class.pmprogateway_stripe.php:3786
6897
  #: classes/gateways/class.pmprogateway_stripe.php:3808
 
6898
  msgid "Your webhook may not be working correctly."
6899
  msgstr ""
6900
 
6901
  #: classes/gateways/class.pmprogateway_stripe.php:3776
6902
  #: classes/gateways/class.pmprogateway_stripe.php:3788
6903
  #: classes/gateways/class.pmprogateway_stripe.php:3810
 
6904
  msgid "Click here for info on setting up your webhook with Stripe."
6905
  msgstr ""
6906
 
@@ -9017,11 +9175,13 @@ msgstr ""
9017
 
9018
  #: includes/login.php:429
9019
  #: includes/profile.php:843
 
9020
  msgid "New passwords do not match."
9021
  msgstr ""
9022
 
9023
  #: includes/login.php:433
9024
  #: includes/profile.php:839
 
9025
  msgid "Please complete all fields."
9026
  msgstr ""
9027
 
@@ -9051,17 +9211,21 @@ msgstr ""
9051
 
9052
  #: includes/login.php:688
9053
  #: includes/profile.php:891
 
9054
  msgid "New Password"
9055
  msgstr ""
9056
 
9057
  #: includes/login.php:690
9058
  #: includes/profile.php:894
9059
  #: includes/scripts.php:86
 
 
9060
  msgid "Strength Indicator"
9061
  msgstr ""
9062
 
9063
  #: includes/login.php:694
9064
  #: includes/profile.php:898
 
9065
  msgid "Confirm New Password"
9066
  msgstr ""
9067
 
@@ -9162,21 +9326,25 @@ msgstr ""
9162
  #: includes/privacy.php:182
9163
  #: includes/profile.php:425
9164
  #: includes/profile.php:493
 
9165
  msgid "Level ID"
9166
  msgstr ""
9167
 
9168
  #: includes/privacy.php:190
9169
  #: includes/profile.php:496
 
9170
  msgid "Date Modified"
9171
  msgstr ""
9172
 
9173
  #: includes/privacy.php:194
9174
  #: includes/profile.php:497
 
9175
  msgid "End Date"
9176
  msgstr ""
9177
 
9178
  #: includes/privacy.php:198
9179
  #: includes/profile.php:498
 
9180
  msgid "Level Cost"
9181
  msgstr ""
9182
 
@@ -9275,68 +9443,85 @@ msgid "Membership Levels History"
9275
  msgstr ""
9276
 
9277
  #: includes/profile.php:485
 
9278
  msgid "No membership orders found."
9279
  msgstr ""
9280
 
9281
  #: includes/profile.php:537
 
9282
  msgid "No membership history found."
9283
  msgstr ""
9284
 
9285
  #: includes/profile.php:644
 
9286
  msgid "Log in to edit your profile."
9287
  msgstr ""
9288
 
9289
  #: includes/profile.php:679
 
9290
  msgid "Please enter a display name."
9291
  msgstr ""
9292
 
9293
  #: includes/profile.php:689
 
9294
  msgid "Please enter an email address."
9295
  msgstr ""
9296
 
9297
  #: includes/profile.php:691
 
9298
  msgid "The email address isn&#8217;t correct."
9299
  msgstr ""
9300
 
9301
  #: includes/profile.php:695
 
9302
  msgid "This email is already registered, please choose another one."
9303
  msgstr ""
9304
 
9305
  #: includes/profile.php:722
 
9306
  msgid "Your profile has been updated."
9307
  msgstr ""
9308
 
9309
  #: includes/profile.php:749
 
9310
  msgid "Display name publicly as"
9311
  msgstr ""
9312
 
9313
  #: includes/profile.php:762
 
9314
  msgid "Site administrators must use the WordPress dashboard to update their email address."
9315
  msgstr ""
9316
 
9317
  #: includes/profile.php:785
 
9318
  msgid "Update Profile"
9319
  msgstr ""
9320
 
9321
  #: includes/profile.php:841
 
9322
  msgid "Please enter your current password."
9323
  msgstr ""
9324
 
9325
  #: includes/profile.php:845
 
9326
  msgid "Your current password is incorrect."
9327
  msgstr ""
9328
 
9329
  #: includes/profile.php:856
 
9330
  msgid "Your password has been updated."
9331
  msgstr ""
9332
 
9333
  #: includes/profile.php:886
 
9334
  msgid "Current Password"
9335
  msgstr ""
9336
 
9337
  #: includes/profile.php:888
9338
  #: includes/profile.php:893
9339
  #: includes/profile.php:900
 
 
9340
  msgid "Required Field"
9341
  msgstr ""
9342
 
@@ -9450,10 +9635,12 @@ msgid "That email address is already in use. Please log in, or use a different e
9450
  msgstr ""
9451
 
9452
  #: services/braintree-webhook.php:425
 
9453
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
9454
  msgstr ""
9455
 
9456
  #: services/braintree-webhook.php:427
 
9457
  msgid "A member's Braintree subscription has expired at %s"
9458
  msgstr ""
9459
 
@@ -9772,16 +9959,22 @@ msgstr ""
9772
 
9773
  #: classes/gateways/class.pmprogateway_stripe.php:360
9774
  #: classes/gateways/class.pmprogateway_stripe.php:450
 
 
9775
  msgid "Connected with Legacy Keys"
9776
  msgstr ""
9777
 
9778
  #: classes/gateways/class.pmprogateway_stripe.php:370
9779
  #: classes/gateways/class.pmprogateway_stripe.php:460
 
 
9780
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
9781
  msgstr ""
9782
 
9783
  #: classes/gateways/class.pmprogateway_stripe.php:372
9784
  #: classes/gateways/class.pmprogateway_stripe.php:462
 
 
9785
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
9786
  msgstr ""
9787
 
@@ -9838,13 +10031,49 @@ msgid "missing"
9838
  msgstr ""
9839
 
9840
  #: classes/gateways/class.pmprogateway_stripe.php:533
 
9841
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
9842
  msgstr ""
9843
 
9844
  #: classes/gateways/class.pmprogateway_stripe.php:534
 
9845
  msgid "Click here to use the legacy API settings."
9846
  msgstr ""
9847
 
9848
  #: paid-memberships-pro.php:194
9849
  msgid "Once a month"
9850
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.3\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-10-11T14:00:36+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
173
  #: adminpages/orders.php:391
174
  #: adminpages/orders.php:1445
175
  #: adminpages/orders.php:1448
176
+ #: includes/profile.php:762
177
  msgid "Email"
178
  msgstr "Sähköposti"
179
 
312
  #: adminpages/advancedsettings.php:479
313
  #: classes/gateways/class.pmprogateway_stripe.php:634
314
  #: classes/gateways/class.pmprogateway_stripe.php:648
315
+ #: classes/gateways/class.pmprogateway_stripe.php:640
316
+ #: classes/gateways/class.pmprogateway_stripe.php:654
317
  msgid "No"
318
  msgstr "Ei"
319
 
374
  #: adminpages/advancedsettings.php:397
375
  #: classes/gateways/class.pmprogateway_stripe.php:636
376
  #: classes/gateways/class.pmprogateway_stripe.php:650
377
+ #: classes/gateways/class.pmprogateway_stripe.php:642
378
+ #: classes/gateways/class.pmprogateway_stripe.php:656
379
  msgid "Yes"
380
  msgstr "Kyllä"
381
 
569
  #: includes/privacy.php:186
570
  #: includes/profile.php:495
571
  #: adminpages/discountcodes.php:489
572
+ #: includes/profile.php:501
573
  msgid "Start Date"
574
  msgstr "Alkamispäivä"
575
 
586
  #: classes/gateways/class.pmprogateway_stripe.php:1301
587
  #: adminpages/discountcodes.php:507
588
  #: classes/gateways/class.pmprogateway_stripe.php:1320
589
+ #: classes/gateways/class.pmprogateway_stripe.php:1326
590
  msgid "Expiration Date"
591
  msgstr "Päättymispäivä"
592
 
665
  #: adminpages/discountcodes.php:612
666
  #: adminpages/discountcodes.php:699
667
  #: classes/gateways/class.pmprogateway_stripe.php:1363
668
+ #: classes/gateways/class.pmprogateway_stripe.php:1369
669
  msgid "Day(s)"
670
  msgstr "Päivä(ä)"
671
 
683
  #: adminpages/discountcodes.php:612
684
  #: adminpages/discountcodes.php:699
685
  #: classes/gateways/class.pmprogateway_stripe.php:1364
686
+ #: classes/gateways/class.pmprogateway_stripe.php:1370
687
  msgid "Week(s)"
688
  msgstr "Viikko(a)"
689
 
701
  #: adminpages/discountcodes.php:612
702
  #: adminpages/discountcodes.php:699
703
  #: classes/gateways/class.pmprogateway_stripe.php:1365
704
+ #: classes/gateways/class.pmprogateway_stripe.php:1371
705
  msgid "Month(s)"
706
  msgstr "Kuukautta"
707
 
719
  #: adminpages/discountcodes.php:612
720
  #: adminpages/discountcodes.php:699
721
  #: classes/gateways/class.pmprogateway_stripe.php:1366
722
+ #: classes/gateways/class.pmprogateway_stripe.php:1372
723
  msgid "Year(s)"
724
  msgstr "Vuotta"
725
 
1074
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1075
  #: adminpages/discountcodes.php:608
1076
  #: classes/gateways/class.pmprogateway_stripe.php:1497
1077
+ #: classes/gateways/class.pmprogateway_stripe.php:1503
1078
  msgid "per"
1079
  msgstr ""
1080
 
1196
  #: pages/cancel.php:96
1197
  #: shortcodes/pmpro_account.php:106
1198
  #: adminpages/orders.php:968
1199
+ #: includes/profile.php:798
1200
+ #: includes/profile.php:922
1201
  msgid "Cancel"
1202
  msgstr "Peruuta"
1203
 
1591
  #: adminpages/orders.php:679
1592
  #: classes/gateways/class.pmprogateway_stripe.php:1284
1593
  #: classes/gateways/class.pmprogateway_stripe.php:1303
1594
+ #: classes/gateways/class.pmprogateway_stripe.php:1309
1595
  msgid "Card Type"
1596
  msgstr "Korttityyppi"
1597
 
1646
  #: adminpages/dashboard.php:294
1647
  #: adminpages/orders.php:742
1648
  #: adminpages/orders.php:1348
1649
+ #: includes/profile.php:505
1650
  msgid "Status"
1651
  msgstr "Tila"
1652
 
2503
  #: classes/class.pmproemail.php:769
2504
  #: classes/class.pmproemail.php:771
2505
  #: classes/gateways/class.pmprogateway_stripe.php:1333
2506
+ #: classes/gateways/class.pmprogateway_stripe.php:1339
2507
  msgid "Discount Code"
2508
  msgstr "Alennuskoodi"
2509
 
2773
  #: pages/checkout.php:367
2774
  #: classes/gateways/class.pmprogateway_stripe.php:1264
2775
  #: classes/gateways/class.pmprogateway_stripe.php:1283
2776
+ #: classes/gateways/class.pmprogateway_stripe.php:1289
2777
  #, php-format
2778
  msgid "We Accept %s"
2779
  msgstr "Maksuvälineenä käyvät %s"
2786
  #: pages/checkout.php:366
2787
  #: classes/gateways/class.pmprogateway_stripe.php:1263
2788
  #: classes/gateways/class.pmprogateway_stripe.php:1282
2789
+ #: classes/gateways/class.pmprogateway_stripe.php:1288
2790
  msgid "Payment Information"
2791
  msgstr "Maksutiedot"
2792
 
2800
  #: pages/checkout.php:389
2801
  #: classes/gateways/class.pmprogateway_stripe.php:1297
2802
  #: classes/gateways/class.pmprogateway_stripe.php:1316
2803
+ #: classes/gateways/class.pmprogateway_stripe.php:1322
2804
  msgid "Card Number"
2805
  msgstr "Kortin numero"
2806
 
2830
  #: pages/checkout.php:432
2831
  #: classes/gateways/class.pmprogateway_stripe.php:1319
2832
  #: classes/gateways/class.pmprogateway_stripe.php:1338
2833
+ #: classes/gateways/class.pmprogateway_stripe.php:1344
2834
  msgid "Apply"
2835
  msgstr "Käytä"
2836
 
2980
  #: classes/gateways/class.pmprogateway_paypal.php:132
2981
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
2982
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
2983
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:151
2984
  msgid "PayPal Settings"
2985
  msgstr ""
2986
 
2996
  #: classes/gateways/class.pmprogateway_paypal.php:153
2997
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
2998
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
2999
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:172
3000
  msgid "Gateway Account Email"
3001
  msgstr ""
3002
 
3008
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
3009
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
3010
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
3011
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:180
3012
  msgid "API Username"
3013
  msgstr ""
3014
 
3020
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
3021
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
3022
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
3023
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:188
3024
  msgid "API Password"
3025
  msgstr ""
3026
 
3030
  #: classes/gateways/class.pmprogateway_paypal.php:177
3031
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
3032
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
3033
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:196
3034
  msgid "API Signature"
3035
  msgstr ""
3036
 
3040
  #: classes/gateways/class.pmprogateway_paypal.php:196
3041
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
3042
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
3043
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:215
3044
  msgid "IPN Handler URL"
3045
  msgstr ""
3046
 
3056
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
3057
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
3058
  #: pages/checkout.php:218
3059
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:498
3060
  msgid "Check Out with PayPal"
3061
  msgstr ""
3062
 
3068
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
3069
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
3070
  #: pages/checkout.php:526
3071
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
3072
  msgid "Submit and Check Out"
3073
  msgstr ""
3074
 
3082
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
3083
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
3084
  #: pages/checkout.php:526
3085
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
3086
  msgid "Submit and Confirm"
3087
  msgstr ""
3088
 
3092
  #: classes/gateways/class.pmprogateway_paypal.php:716
3093
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
3094
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
3095
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:841
3096
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
3097
  msgstr ""
3098
 
3101
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
3102
  #: paid-memberships-pro.php:160
3103
  #: paid-memberships-pro.php:162
3104
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:94
3105
  msgid "PayPal Express"
3106
  msgstr ""
3107
 
3108
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
3109
  #: classes/gateways/class.pmprogateway_paypal.php:199
3110
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
3111
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:218
3112
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
3113
  msgstr ""
3114
 
3116
  #: classes/gateways/class.pmprogateway_paypalexpress.php:320
3117
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
3118
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
3119
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:352
3120
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:411
3121
  msgid "The PayPal Token was lost."
3122
  msgstr ""
3123
 
3139
  #: classes/gateways/class.pmprogateway_stripe.php:252
3140
  #: paid-memberships-pro.php:159
3141
  #: paid-memberships-pro.php:161
3142
+ #: classes/gateways/class.pmprogateway_stripe.php:258
3143
  msgid "Stripe"
3144
  msgstr ""
3145
 
3151
  #: classes/gateways/class.pmprogateway_stripe.php:539
3152
  #: classes/gateways/class.pmprogateway_stripe.php:551
3153
  #: classes/gateways/class.pmprogateway_stripe.php:570
3154
+ #: classes/gateways/class.pmprogateway_stripe.php:576
3155
  msgid "Secret Key"
3156
  msgstr ""
3157
 
3159
  #: classes/gateways/class.pmprogateway_stripe.php:523
3160
  #: classes/gateways/class.pmprogateway_stripe.php:535
3161
  #: classes/gateways/class.pmprogateway_stripe.php:554
3162
+ #: classes/gateways/class.pmprogateway_stripe.php:560
3163
  msgid "Publishable Key"
3164
  msgstr ""
3165
 
3167
  #: classes/gateways/class.pmprogateway_stripe.php:598
3168
  #: classes/gateways/class.pmprogateway_stripe.php:610
3169
  #: classes/gateways/class.pmprogateway_stripe.php:629
3170
+ #: classes/gateways/class.pmprogateway_stripe.php:635
3171
  msgid "Show Billing Address Fields"
3172
  msgstr ""
3173
 
3175
  #: classes/gateways/class.pmprogateway_stripe.php:607
3176
  #: classes/gateways/class.pmprogateway_stripe.php:619
3177
  #: classes/gateways/class.pmprogateway_stripe.php:638
3178
+ #: classes/gateways/class.pmprogateway_stripe.php:644
3179
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
3180
  msgstr ""
3181
 
3187
  #: classes/gateways/class.pmprogateway_stripe.php:1379
3188
  #: classes/gateways/class.pmprogateway_stripe.php:1391
3189
  #: classes/gateways/class.pmprogateway_stripe.php:1410
3190
+ #: classes/gateways/class.pmprogateway_stripe.php:1416
3191
  msgid "Subscription Updates"
3192
  msgstr ""
3193
 
3195
  #: classes/gateways/class.pmprogateway_stripe.php:1383
3196
  #: classes/gateways/class.pmprogateway_stripe.php:1395
3197
  #: classes/gateways/class.pmprogateway_stripe.php:1414
3198
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
3199
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
3200
  msgstr ""
3201
 
3203
  #: classes/gateways/class.pmprogateway_stripe.php:1385
3204
  #: classes/gateways/class.pmprogateway_stripe.php:1397
3205
  #: classes/gateways/class.pmprogateway_stripe.php:1416
3206
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
3207
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
3208
  msgstr ""
3209
 
3213
  #: pages/billing.php:425
3214
  #: classes/gateways/class.pmprogateway_stripe.php:1403
3215
  #: classes/gateways/class.pmprogateway_stripe.php:1422
3216
+ #: classes/gateways/class.pmprogateway_stripe.php:1428
3217
  msgid "Update"
3218
  msgstr "Päivitä"
3219
 
3221
  #: classes/gateways/class.pmprogateway_stripe.php:2480
3222
  #: classes/gateways/class.pmprogateway_stripe.php:2492
3223
  #: classes/gateways/class.pmprogateway_stripe.php:2514
3224
+ #: classes/gateways/class.pmprogateway_stripe.php:2520
3225
  msgid "Could not cancel the old subscription. Updates have not been processed."
3226
  msgstr ""
3227
 
3235
  #: classes/gateways/class.pmprogateway_stripe.php:2127
3236
  #: classes/gateways/class.pmprogateway_stripe.php:2132
3237
  #: classes/gateways/class.pmprogateway_stripe.php:2137
3238
+ #: classes/gateways/class.pmprogateway_stripe.php:2133
3239
+ #: classes/gateways/class.pmprogateway_stripe.php:2138
3240
+ #: classes/gateways/class.pmprogateway_stripe.php:2143
3241
  msgid "Error creating customer record with Stripe:"
3242
  msgstr ""
3243
 
3249
  #: classes/gateways/class.pmprogateway_stripe.php:2356
3250
  #: classes/gateways/class.pmprogateway_stripe.php:2373
3251
  #: classes/gateways/class.pmprogateway_stripe.php:2378
3252
+ #: classes/gateways/class.pmprogateway_stripe.php:2379
3253
+ #: classes/gateways/class.pmprogateway_stripe.php:2384
3254
  msgid "Error creating plan with Stripe:"
3255
  msgstr ""
3256
 
3261
  #: classes/gateways/class.pmprogateway_stripe.php:2401
3262
  #: classes/gateways/class.pmprogateway_stripe.php:2409
3263
  #: classes/gateways/class.pmprogateway_stripe.php:2423
3264
+ #: classes/gateways/class.pmprogateway_stripe.php:2415
3265
+ #: classes/gateways/class.pmprogateway_stripe.php:2429
3266
  msgid "Error subscribing customer to plan with Stripe:"
3267
  msgstr ""
3268
 
3270
  #: classes/gateways/class.pmprogateway_stripe.php:2632
3271
  #: classes/gateways/class.pmprogateway_stripe.php:2644
3272
  #: classes/gateways/class.pmprogateway_stripe.php:2666
3273
+ #: classes/gateways/class.pmprogateway_stripe.php:2672
3274
  msgid "Could not cancel old subscription."
3275
  msgstr ""
3276
 
3278
  #: classes/gateways/class.pmprogateway_stripe.php:2648
3279
  #: classes/gateways/class.pmprogateway_stripe.php:2660
3280
  #: classes/gateways/class.pmprogateway_stripe.php:2682
3281
+ #: classes/gateways/class.pmprogateway_stripe.php:2688
3282
  msgid "Could not find the customer."
3283
  msgstr ""
3284
 
3864
  #: adminpages/dashboard.php:224
3865
  #: adminpages/dashboard.php:292
3866
  #: adminpages/orders.php:1343
3867
+ #: includes/profile.php:500
3868
  msgid "Level"
3869
  msgstr "Taso"
3870
 
3900
  #: includes/profile.php:747
3901
  #: pages/billing.php:164
3902
  #: pages/checkout.php:234
3903
+ #: includes/profile.php:759
3904
  msgid "First Name"
3905
  msgstr "Etunimi"
3906
 
3909
  #: includes/profile.php:748
3910
  #: pages/billing.php:168
3911
  #: pages/checkout.php:238
3912
+ #: includes/profile.php:760
3913
  msgid "Last Name"
3914
  msgstr "Sukunimi"
3915
 
4520
 
4521
  #: services/authnet-silent-post.php:141
4522
  #: services/authnet-silent-post.php:173
4523
+ #: services/authnet-silent-post.php:176
4524
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
4525
  msgstr ""
4526
 
4564
  #: includes/profile.php:872
4565
  #: includes/profile.php:909
4566
  #: shortcodes/pmpro_account.php:195
4567
+ #: includes/profile.php:884
4568
+ #: includes/profile.php:921
4569
  msgid "Change Password"
4570
  msgstr "Muuta salasanasi"
4571
 
4638
  #: adminpages/advancedsettings.php:316
4639
  #: includes/privacy.php:175
4640
  #: includes/profile.php:509
4641
+ #: includes/profile.php:515
4642
  #~ msgid "Never"
4643
  #~ msgstr "Ei koskaan"
4644
 
4800
  #: adminpages/orders.php:1544
4801
  #: adminpages/orders.php:1554
4802
  #: adminpages/orders.php:1553
4803
+ #: includes/profile.php:520
4804
+ #: includes/profile.php:521
4805
+ #: includes/profile.php:522
4806
  msgid "N/A"
4807
  msgstr ""
4808
 
4829
 
4830
  #: adminpages/admin_header.php:152
4831
  #: classes/gateways/class.pmprogateway_stripe.php:76
4832
+ #: classes/gateways/class.pmprogateway_stripe.php:82
4833
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
4834
  msgstr ""
4835
 
5097
  #: adminpages/dashboard.php:174
5098
  #: adminpages/license.php:49
5099
  #: adminpages/dashboard.php:178
5100
+ #: adminpages/license.php:41
5101
  msgid "Your license is invalid or expired."
5102
  msgstr ""
5103
 
5109
  #: adminpages/dashboard.php:177
5110
  #: adminpages/license.php:51
5111
  #: adminpages/dashboard.php:181
5112
+ #: adminpages/license.php:43
5113
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
5114
  msgstr ""
5115
 
5591
  msgstr ""
5592
 
5593
  #: adminpages/license.php:43
5594
+ #: adminpages/license.php:33
5595
  msgid "Paid Memberships Pro Support License"
5596
  msgstr ""
5597
 
5598
  #: adminpages/license.php:47
5599
+ #: adminpages/license.php:39
5600
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
5601
  msgstr ""
5602
 
5603
  #: adminpages/license.php:49
5604
+ #: adminpages/license.php:37
5605
+ #: adminpages/license.php:41
5606
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
5607
  msgstr ""
5608
 
5609
  #: adminpages/license.php:59
5610
+ #: adminpages/license.php:51
5611
  msgid "Enter license key here..."
5612
  msgstr ""
5613
 
5614
  #: adminpages/license.php:61
5615
+ #: adminpages/license.php:53
5616
  msgid "Validate Key"
5617
  msgstr ""
5618
 
5619
  #: adminpages/license.php:95
5620
+ #: adminpages/license.php:87
5621
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
5622
  msgstr ""
5623
 
6258
 
6259
  #: classes/gateways/class.pmprogateway_braintree.php:87
6260
  #: classes/gateways/class.pmprogateway_stripe.php:91
6261
+ #: classes/gateways/class.pmprogateway_stripe.php:97
6262
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
6263
  msgstr ""
6264
 
6567
  msgstr ""
6568
 
6569
  #: classes/gateways/class.pmprogateway_cybersource.php:922
6570
+ #: includes/license.php:159
6571
  msgid "Unknown error."
6572
  msgstr ""
6573
 
6582
  #: classes/gateways/class.pmprogateway_paypal.php:146
6583
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
6584
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
6585
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:165
6586
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
6587
  msgstr ""
6588
 
6589
  #: classes/gateways/class.pmprogateway_paypal.php:185
6590
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
6591
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:204
6592
  msgid "Confirmation Step"
6593
  msgstr ""
6594
 
6595
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
6596
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:356
6597
  msgid "Checkout was already processed."
6598
  msgstr ""
6599
 
6600
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
6601
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:791
6602
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
6603
  msgstr ""
6604
 
6605
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
6606
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:792
6607
  msgid "Error creating plan with PayPal."
6608
  msgstr ""
6609
 
6615
  #: classes/gateways/class.pmprogateway_stripe.php:436
6616
  #: classes/gateways/class.pmprogateway_stripe.php:354
6617
  #: classes/gateways/class.pmprogateway_stripe.php:444
6618
+ #: classes/gateways/class.pmprogateway_stripe.php:360
6619
+ #: classes/gateways/class.pmprogateway_stripe.php:450
6620
  msgid "Stripe Connect Settings"
6621
  msgstr ""
6622
 
6623
  #: classes/gateways/class.pmprogateway_stripe.php:352
6624
  #: classes/gateways/class.pmprogateway_stripe.php:356
6625
+ #: classes/gateways/class.pmprogateway_stripe.php:362
6626
  msgid "Live Mode:"
6627
  msgstr ""
6628
 
6630
  #: classes/gateways/class.pmprogateway_stripe.php:440
6631
  #: classes/gateways/class.pmprogateway_stripe.php:358
6632
  #: classes/gateways/class.pmprogateway_stripe.php:448
6633
+ #: classes/gateways/class.pmprogateway_stripe.php:364
6634
+ #: classes/gateways/class.pmprogateway_stripe.php:454
6635
  msgid "Connected"
6636
  msgstr ""
6637
 
6639
  #: classes/gateways/class.pmprogateway_stripe.php:442
6640
  #: classes/gateways/class.pmprogateway_stripe.php:362
6641
  #: classes/gateways/class.pmprogateway_stripe.php:452
6642
+ #: classes/gateways/class.pmprogateway_stripe.php:368
6643
+ #: classes/gateways/class.pmprogateway_stripe.php:458
6644
  msgid "Not Connected"
6645
  msgstr ""
6646
 
6648
  #: classes/gateways/class.pmprogateway_stripe.php:449
6649
  #: classes/gateways/class.pmprogateway_stripe.php:369
6650
  #: classes/gateways/class.pmprogateway_stripe.php:459
6651
+ #: classes/gateways/class.pmprogateway_stripe.php:375
6652
+ #: classes/gateways/class.pmprogateway_stripe.php:465
6653
  msgid "Your site is using legacy API keys to authenticate with Stripe."
6654
  msgstr ""
6655
 
6656
  #: classes/gateways/class.pmprogateway_stripe.php:364
6657
  #: classes/gateways/class.pmprogateway_stripe.php:371
6658
+ #: classes/gateways/class.pmprogateway_stripe.php:377
6659
  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."
6660
  msgstr ""
6661
 
6663
  #: classes/gateways/class.pmprogateway_stripe.php:458
6664
  #: classes/gateways/class.pmprogateway_stripe.php:380
6665
  #: classes/gateways/class.pmprogateway_stripe.php:470
6666
+ #: classes/gateways/class.pmprogateway_stripe.php:386
6667
+ #: classes/gateways/class.pmprogateway_stripe.php:476
6668
  msgid "Stripe Connection:"
6669
  msgstr ""
6670
 
6672
  #: classes/gateways/class.pmprogateway_stripe.php:482
6673
  #: classes/gateways/class.pmprogateway_stripe.php:396
6674
  #: classes/gateways/class.pmprogateway_stripe.php:494
6675
+ #: classes/gateways/class.pmprogateway_stripe.php:402
6676
+ #: classes/gateways/class.pmprogateway_stripe.php:500
6677
  msgid "Disconnect From Stripe"
6678
  msgstr ""
6679
 
6680
  #: classes/gateways/class.pmprogateway_stripe.php:389
6681
  #: classes/gateways/class.pmprogateway_stripe.php:397
6682
+ #: classes/gateways/class.pmprogateway_stripe.php:403
6683
  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."
6684
  msgstr ""
6685
 
6687
  #: classes/gateways/class.pmprogateway_stripe.php:496
6688
  #: classes/gateways/class.pmprogateway_stripe.php:409
6689
  #: classes/gateways/class.pmprogateway_stripe.php:508
6690
+ #: classes/gateways/class.pmprogateway_stripe.php:415
6691
+ #: classes/gateways/class.pmprogateway_stripe.php:514
6692
  msgid "Connect with Stripe"
6693
  msgstr ""
6694
 
6695
  #: classes/gateways/class.pmprogateway_stripe.php:408
6696
  #: classes/gateways/class.pmprogateway_stripe.php:416
6697
+ #: classes/gateways/class.pmprogateway_stripe.php:422
6698
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
6699
  msgstr ""
6700
 
6701
  #: classes/gateways/class.pmprogateway_stripe.php:411
6702
  #: classes/gateways/class.pmprogateway_stripe.php:419
6703
+ #: classes/gateways/class.pmprogateway_stripe.php:425
6704
  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."
6705
  msgstr ""
6706
 
6711
  #: classes/gateways/class.pmprogateway_stripe.php:519
6712
  #: classes/gateways/class.pmprogateway_stripe.php:559
6713
  #: classes/gateways/class.pmprogateway_stripe.php:578
6714
+ #: classes/gateways/class.pmprogateway_stripe.php:437
6715
+ #: classes/gateways/class.pmprogateway_stripe.php:525
6716
+ #: classes/gateways/class.pmprogateway_stripe.php:584
6717
  msgid "Webhook"
6718
  msgstr ""
6719
 
6724
  #: classes/gateways/class.pmprogateway_stripe.php:523
6725
  #: classes/gateways/class.pmprogateway_stripe.php:594
6726
  #: classes/gateways/class.pmprogateway_stripe.php:613
6727
+ #: classes/gateways/class.pmprogateway_stripe.php:441
6728
+ #: classes/gateways/class.pmprogateway_stripe.php:529
6729
+ #: classes/gateways/class.pmprogateway_stripe.php:619
6730
  msgid "Webhook URL"
6731
  msgstr ""
6732
 
6733
  #: classes/gateways/class.pmprogateway_stripe.php:438
6734
  #: classes/gateways/class.pmprogateway_stripe.php:446
6735
+ #: classes/gateways/class.pmprogateway_stripe.php:452
6736
  msgid "Test Mode:"
6737
  msgstr ""
6738
 
6739
  #: classes/gateways/class.pmprogateway_stripe.php:450
6740
  #: classes/gateways/class.pmprogateway_stripe.php:461
6741
+ #: classes/gateways/class.pmprogateway_stripe.php:467
6742
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
6743
  msgstr ""
6744
 
6745
  #: classes/gateways/class.pmprogateway_stripe.php:483
6746
  #: classes/gateways/class.pmprogateway_stripe.php:495
6747
+ #: classes/gateways/class.pmprogateway_stripe.php:501
6748
  msgid "This will disconnect your site from Stripe in test mode only."
6749
  msgstr ""
6750
 
6751
  #: classes/gateways/class.pmprogateway_stripe.php:518
6752
  #: classes/gateways/class.pmprogateway_stripe.php:530
6753
+ #: classes/gateways/class.pmprogateway_stripe.php:536
6754
  msgid "Stripe API Settings (Legacy)"
6755
  msgstr ""
6756
 
6757
  #: classes/gateways/class.pmprogateway_stripe.php:531
6758
  #: classes/gateways/class.pmprogateway_stripe.php:543
6759
  #: classes/gateways/class.pmprogateway_stripe.php:562
6760
+ #: classes/gateways/class.pmprogateway_stripe.php:568
6761
  msgid "Your Publishable Key appears incorrect."
6762
  msgstr ""
6763
 
6767
  #: classes/gateways/class.pmprogateway_stripe.php:587
6768
  #: classes/gateways/class.pmprogateway_stripe.php:582
6769
  #: classes/gateways/class.pmprogateway_stripe.php:606
6770
+ #: classes/gateways/class.pmprogateway_stripe.php:588
6771
+ #: classes/gateways/class.pmprogateway_stripe.php:612
6772
  msgid "Create Webhook"
6773
  msgstr ""
6774
 
6775
  #: classes/gateways/class.pmprogateway_stripe.php:557
6776
  #: classes/gateways/class.pmprogateway_stripe.php:569
6777
  #: classes/gateways/class.pmprogateway_stripe.php:588
6778
+ #: classes/gateways/class.pmprogateway_stripe.php:594
6779
  msgid "A webhook is set up in Stripe, but it is disabled."
6780
  msgstr ""
6781
 
6782
  #: classes/gateways/class.pmprogateway_stripe.php:564
6783
  #: classes/gateways/class.pmprogateway_stripe.php:576
6784
  #: classes/gateways/class.pmprogateway_stripe.php:595
6785
+ #: classes/gateways/class.pmprogateway_stripe.php:601
6786
  msgid "A webhook is set up in Stripe, but it is using an old API version."
6787
  msgstr ""
6788
 
6789
  #: classes/gateways/class.pmprogateway_stripe.php:564
6790
  #: classes/gateways/class.pmprogateway_stripe.php:576
6791
  #: classes/gateways/class.pmprogateway_stripe.php:595
6792
+ #: classes/gateways/class.pmprogateway_stripe.php:601
6793
  msgid "Rebuild Webhook"
6794
  msgstr ""
6795
 
6802
  #: classes/gateways/class.pmprogateway_stripe.php:601
6803
  #: classes/gateways/class.pmprogateway_stripe.php:741
6804
  #: classes/gateways/class.pmprogateway_stripe.php:857
6805
+ #: classes/gateways/class.pmprogateway_stripe.php:607
6806
+ #: classes/gateways/class.pmprogateway_stripe.php:747
6807
+ #: classes/gateways/class.pmprogateway_stripe.php:863
6808
  msgid "Your webhook is enabled."
6809
  msgstr ""
6810
 
6811
  #: classes/gateways/class.pmprogateway_stripe.php:570
6812
  #: classes/gateways/class.pmprogateway_stripe.php:582
6813
  #: classes/gateways/class.pmprogateway_stripe.php:601
6814
+ #: classes/gateways/class.pmprogateway_stripe.php:607
6815
  msgid "Disable Webhook"
6816
  msgstr ""
6817
 
6827
  #: classes/gateways/class.pmprogateway_stripe.php:768
6828
  #: classes/gateways/class.pmprogateway_stripe.php:785
6829
  #: classes/gateways/class.pmprogateway_stripe.php:819
6830
+ #: classes/gateways/class.pmprogateway_stripe.php:614
6831
+ #: classes/gateways/class.pmprogateway_stripe.php:774
6832
+ #: classes/gateways/class.pmprogateway_stripe.php:791
6833
+ #: classes/gateways/class.pmprogateway_stripe.php:825
6834
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
6835
  msgstr ""
6836
 
6837
  #: classes/gateways/class.pmprogateway_stripe.php:589
6838
  #: classes/gateways/class.pmprogateway_stripe.php:601
6839
  #: classes/gateways/class.pmprogateway_stripe.php:620
6840
+ #: classes/gateways/class.pmprogateway_stripe.php:626
6841
  msgid "Other Stripe Settings"
6842
  msgstr ""
6843
 
6844
  #: classes/gateways/class.pmprogateway_stripe.php:593
6845
  #: classes/gateways/class.pmprogateway_stripe.php:605
6846
  #: classes/gateways/class.pmprogateway_stripe.php:624
6847
+ #: classes/gateways/class.pmprogateway_stripe.php:630
6848
  msgid "Stripe API Version"
6849
  msgstr ""
6850
 
6851
  #: classes/gateways/class.pmprogateway_stripe.php:612
6852
  #: classes/gateways/class.pmprogateway_stripe.php:624
6853
  #: classes/gateways/class.pmprogateway_stripe.php:643
6854
+ #: classes/gateways/class.pmprogateway_stripe.php:649
6855
  msgid "Enable Payment Request Button"
6856
  msgstr ""
6857
 
6858
  #: classes/gateways/class.pmprogateway_stripe.php:630
6859
  #: classes/gateways/class.pmprogateway_stripe.php:642
6860
  #: classes/gateways/class.pmprogateway_stripe.php:661
6861
+ #: classes/gateways/class.pmprogateway_stripe.php:667
6862
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
6863
  msgstr ""
6864
 
6865
  #: classes/gateways/class.pmprogateway_stripe.php:643
6866
  #: classes/gateways/class.pmprogateway_stripe.php:655
6867
  #: classes/gateways/class.pmprogateway_stripe.php:674
6868
+ #: classes/gateways/class.pmprogateway_stripe.php:680
6869
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
6870
  msgstr ""
6871
 
6872
  #: classes/gateways/class.pmprogateway_stripe.php:645
6873
  #: classes/gateways/class.pmprogateway_stripe.php:657
6874
  #: classes/gateways/class.pmprogateway_stripe.php:676
6875
+ #: classes/gateways/class.pmprogateway_stripe.php:682
6876
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
6877
  msgstr ""
6878
 
6879
  #: classes/gateways/class.pmprogateway_stripe.php:647
6880
  #: classes/gateways/class.pmprogateway_stripe.php:659
6881
  #: classes/gateways/class.pmprogateway_stripe.php:678
6882
+ #: classes/gateways/class.pmprogateway_stripe.php:684
6883
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
6884
  msgstr ""
6885
 
6886
  #: classes/gateways/class.pmprogateway_stripe.php:649
6887
  #: classes/gateways/class.pmprogateway_stripe.php:661
6888
  #: classes/gateways/class.pmprogateway_stripe.php:680
6889
+ #: classes/gateways/class.pmprogateway_stripe.php:686
6890
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
6891
  msgstr ""
6892
 
6893
  #: classes/gateways/class.pmprogateway_stripe.php:674
6894
  #: classes/gateways/class.pmprogateway_stripe.php:686
6895
  #: classes/gateways/class.pmprogateway_stripe.php:705
6896
+ #: classes/gateways/class.pmprogateway_stripe.php:711
6897
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
6898
  msgstr ""
6899
 
6900
  #: classes/gateways/class.pmprogateway_stripe.php:695
6901
  #: classes/gateways/class.pmprogateway_stripe.php:707
6902
  #: classes/gateways/class.pmprogateway_stripe.php:726
6903
+ #: classes/gateways/class.pmprogateway_stripe.php:732
6904
  msgid "Webhook creation failed. You might already have a webhook set up."
6905
  msgstr ""
6906
 
6910
  #: classes/gateways/class.pmprogateway_stripe.php:847
6911
  #: classes/gateways/class.pmprogateway_stripe.php:792
6912
  #: classes/gateways/class.pmprogateway_stripe.php:866
6913
+ #: classes/gateways/class.pmprogateway_stripe.php:798
6914
+ #: classes/gateways/class.pmprogateway_stripe.php:872
6915
  msgid "There was an error deleting the webhook."
6916
  msgstr ""
6917
 
6918
  #: classes/gateways/class.pmprogateway_stripe.php:811
6919
  #: classes/gateways/class.pmprogateway_stripe.php:823
6920
  #: classes/gateways/class.pmprogateway_stripe.php:842
6921
+ #: classes/gateways/class.pmprogateway_stripe.php:848
6922
  msgid "Webhook creation failed. Please refresh and try again."
6923
  msgstr ""
6924
 
6925
  #: classes/gateways/class.pmprogateway_stripe.php:867
6926
  #: classes/gateways/class.pmprogateway_stripe.php:879
6927
  #: classes/gateways/class.pmprogateway_stripe.php:898
6928
+ #: classes/gateways/class.pmprogateway_stripe.php:904
6929
  msgid "Verification steps confirmed. Your payment is processing."
6930
  msgstr ""
6931
 
6932
  #: classes/gateways/class.pmprogateway_stripe.php:1262
6933
  #: classes/gateways/class.pmprogateway_stripe.php:1274
6934
  #: classes/gateways/class.pmprogateway_stripe.php:1293
6935
+ #: classes/gateways/class.pmprogateway_stripe.php:1299
6936
  msgid "Pay with Credit Card"
6937
  msgstr ""
6938
 
6939
  #: classes/gateways/class.pmprogateway_stripe.php:1296
6940
  #: classes/gateways/class.pmprogateway_stripe.php:1308
6941
  #: classes/gateways/class.pmprogateway_stripe.php:1327
6942
+ #: classes/gateways/class.pmprogateway_stripe.php:1333
6943
  msgid "CVC"
6944
  msgstr ""
6945
 
6946
  #: classes/gateways/class.pmprogateway_stripe.php:1374
6947
  #: classes/gateways/class.pmprogateway_stripe.php:1386
6948
  #: classes/gateways/class.pmprogateway_stripe.php:1405
6949
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
6950
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
6951
  msgstr ""
6952
 
6962
  #: classes/gateways/class.pmprogateway_stripe.php:2016
6963
  #: classes/gateways/class.pmprogateway_stripe.php:2029
6964
  #: classes/gateways/class.pmprogateway_stripe.php:2033
6965
+ #: classes/gateways/class.pmprogateway_stripe.php:2018
6966
+ #: classes/gateways/class.pmprogateway_stripe.php:2022
6967
+ #: classes/gateways/class.pmprogateway_stripe.php:2035
6968
+ #: classes/gateways/class.pmprogateway_stripe.php:2039
6969
  msgid "Error: %s"
6970
  msgstr ""
6971
 
6975
  #: classes/gateways/class.pmprogateway_stripe.php:2182
6976
  #: classes/gateways/class.pmprogateway_stripe.php:2196
6977
  #: classes/gateways/class.pmprogateway_stripe.php:2201
6978
+ #: classes/gateways/class.pmprogateway_stripe.php:2202
6979
+ #: classes/gateways/class.pmprogateway_stripe.php:2207
6980
  msgid "Error getting subscription with Stripe:"
6981
  msgstr ""
6982
 
6986
  #: classes/gateways/class.pmprogateway_stripe.php:2834
6987
  #: classes/gateways/class.pmprogateway_stripe.php:2850
6988
  #: classes/gateways/class.pmprogateway_stripe.php:2856
6989
+ #: classes/gateways/class.pmprogateway_stripe.php:2862
6990
  msgid "Error: "
6991
  msgstr ""
6992
 
6993
  #: classes/gateways/class.pmprogateway_stripe.php:2836
6994
  #: classes/gateways/class.pmprogateway_stripe.php:2848
6995
  #: classes/gateways/class.pmprogateway_stripe.php:2870
6996
+ #: classes/gateways/class.pmprogateway_stripe.php:2876
6997
  msgid "Error: Unkown error while refunding charge #%s"
6998
  msgstr ""
6999
 
7000
  #: classes/gateways/class.pmprogateway_stripe.php:3330
7001
  #: classes/gateways/class.pmprogateway_stripe.php:3342
7002
  #: classes/gateways/class.pmprogateway_stripe.php:3364
7003
+ #: classes/gateways/class.pmprogateway_stripe.php:3370
7004
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
7005
  msgstr ""
7006
 
7007
  #: classes/gateways/class.pmprogateway_stripe.php:3347
7008
  #: classes/gateways/class.pmprogateway_stripe.php:3359
7009
  #: classes/gateways/class.pmprogateway_stripe.php:3381
7010
+ #: classes/gateways/class.pmprogateway_stripe.php:3387
7011
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
7012
  msgstr ""
7013
 
7014
  #: classes/gateways/class.pmprogateway_stripe.php:3533
7015
  #: classes/gateways/class.pmprogateway_stripe.php:3545
7016
  #: classes/gateways/class.pmprogateway_stripe.php:3567
7017
+ #: classes/gateways/class.pmprogateway_stripe.php:3573
7018
  msgid "Invalid response from the Stripe Connect server."
7019
  msgstr ""
7020
 
7022
  #: classes/gateways/class.pmprogateway_stripe.php:3561
7023
  #: classes/gateways/class.pmprogateway_stripe.php:3573
7024
  #: classes/gateways/class.pmprogateway_stripe.php:3595
7025
+ #: classes/gateways/class.pmprogateway_stripe.php:3601
7026
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
7027
  msgstr ""
7028
 
7030
  #: classes/gateways/class.pmprogateway_stripe.php:3597
7031
  #: classes/gateways/class.pmprogateway_stripe.php:3609
7032
  #: classes/gateways/class.pmprogateway_stripe.php:3631
7033
+ #: classes/gateways/class.pmprogateway_stripe.php:3637
7034
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
7035
  msgstr ""
7036
 
7037
  #: classes/gateways/class.pmprogateway_stripe.php:3768
7038
  #: classes/gateways/class.pmprogateway_stripe.php:3780
7039
  #: classes/gateways/class.pmprogateway_stripe.php:3802
7040
+ #: classes/gateways/class.pmprogateway_stripe.php:3808
7041
  msgid "Last webhook received at"
7042
  msgstr ""
7043
 
7044
  #: classes/gateways/class.pmprogateway_stripe.php:3770
7045
  #: classes/gateways/class.pmprogateway_stripe.php:3782
7046
  #: classes/gateways/class.pmprogateway_stripe.php:3804
7047
+ #: classes/gateways/class.pmprogateway_stripe.php:3810
7048
  msgid "No webhooks have been received."
7049
  msgstr ""
7050
 
7051
  #: classes/gateways/class.pmprogateway_stripe.php:3774
7052
  #: classes/gateways/class.pmprogateway_stripe.php:3786
7053
  #: classes/gateways/class.pmprogateway_stripe.php:3808
7054
+ #: classes/gateways/class.pmprogateway_stripe.php:3814
7055
  msgid "Your webhook may not be working correctly."
7056
  msgstr ""
7057
 
7058
  #: classes/gateways/class.pmprogateway_stripe.php:3776
7059
  #: classes/gateways/class.pmprogateway_stripe.php:3788
7060
  #: classes/gateways/class.pmprogateway_stripe.php:3810
7061
+ #: classes/gateways/class.pmprogateway_stripe.php:3816
7062
  msgid "Click here for info on setting up your webhook with Stripe."
7063
  msgstr ""
7064
 
9175
 
9176
  #: includes/login.php:429
9177
  #: includes/profile.php:843
9178
+ #: includes/profile.php:855
9179
  msgid "New passwords do not match."
9180
  msgstr ""
9181
 
9182
  #: includes/login.php:433
9183
  #: includes/profile.php:839
9184
+ #: includes/profile.php:851
9185
  msgid "Please complete all fields."
9186
  msgstr ""
9187
 
9211
 
9212
  #: includes/login.php:688
9213
  #: includes/profile.php:891
9214
+ #: includes/profile.php:903
9215
  msgid "New Password"
9216
  msgstr ""
9217
 
9218
  #: includes/login.php:690
9219
  #: includes/profile.php:894
9220
  #: includes/scripts.php:86
9221
+ #: includes/profile.php:906
9222
+ #: includes/scripts.php:85
9223
  msgid "Strength Indicator"
9224
  msgstr ""
9225
 
9226
  #: includes/login.php:694
9227
  #: includes/profile.php:898
9228
+ #: includes/profile.php:910
9229
  msgid "Confirm New Password"
9230
  msgstr ""
9231
 
9326
  #: includes/privacy.php:182
9327
  #: includes/profile.php:425
9328
  #: includes/profile.php:493
9329
+ #: includes/profile.php:499
9330
  msgid "Level ID"
9331
  msgstr ""
9332
 
9333
  #: includes/privacy.php:190
9334
  #: includes/profile.php:496
9335
+ #: includes/profile.php:502
9336
  msgid "Date Modified"
9337
  msgstr ""
9338
 
9339
  #: includes/privacy.php:194
9340
  #: includes/profile.php:497
9341
+ #: includes/profile.php:503
9342
  msgid "End Date"
9343
  msgstr ""
9344
 
9345
  #: includes/privacy.php:198
9346
  #: includes/profile.php:498
9347
+ #: includes/profile.php:504
9348
  msgid "Level Cost"
9349
  msgstr ""
9350
 
9443
  msgstr ""
9444
 
9445
  #: includes/profile.php:485
9446
+ #: includes/profile.php:488
9447
  msgid "No membership orders found."
9448
  msgstr ""
9449
 
9450
  #: includes/profile.php:537
9451
+ #: includes/profile.php:546
9452
  msgid "No membership history found."
9453
  msgstr ""
9454
 
9455
  #: includes/profile.php:644
9456
+ #: includes/profile.php:656
9457
  msgid "Log in to edit your profile."
9458
  msgstr ""
9459
 
9460
  #: includes/profile.php:679
9461
+ #: includes/profile.php:691
9462
  msgid "Please enter a display name."
9463
  msgstr ""
9464
 
9465
  #: includes/profile.php:689
9466
+ #: includes/profile.php:701
9467
  msgid "Please enter an email address."
9468
  msgstr ""
9469
 
9470
  #: includes/profile.php:691
9471
+ #: includes/profile.php:703
9472
  msgid "The email address isn&#8217;t correct."
9473
  msgstr ""
9474
 
9475
  #: includes/profile.php:695
9476
+ #: includes/profile.php:707
9477
  msgid "This email is already registered, please choose another one."
9478
  msgstr ""
9479
 
9480
  #: includes/profile.php:722
9481
+ #: includes/profile.php:734
9482
  msgid "Your profile has been updated."
9483
  msgstr ""
9484
 
9485
  #: includes/profile.php:749
9486
+ #: includes/profile.php:761
9487
  msgid "Display name publicly as"
9488
  msgstr ""
9489
 
9490
  #: includes/profile.php:762
9491
+ #: includes/profile.php:774
9492
  msgid "Site administrators must use the WordPress dashboard to update their email address."
9493
  msgstr ""
9494
 
9495
  #: includes/profile.php:785
9496
+ #: includes/profile.php:797
9497
  msgid "Update Profile"
9498
  msgstr ""
9499
 
9500
  #: includes/profile.php:841
9501
+ #: includes/profile.php:853
9502
  msgid "Please enter your current password."
9503
  msgstr ""
9504
 
9505
  #: includes/profile.php:845
9506
+ #: includes/profile.php:857
9507
  msgid "Your current password is incorrect."
9508
  msgstr ""
9509
 
9510
  #: includes/profile.php:856
9511
+ #: includes/profile.php:868
9512
  msgid "Your password has been updated."
9513
  msgstr ""
9514
 
9515
  #: includes/profile.php:886
9516
+ #: includes/profile.php:898
9517
  msgid "Current Password"
9518
  msgstr ""
9519
 
9520
  #: includes/profile.php:888
9521
  #: includes/profile.php:893
9522
  #: includes/profile.php:900
9523
+ #: includes/profile.php:905
9524
+ #: includes/profile.php:912
9525
  msgid "Required Field"
9526
  msgstr ""
9527
 
9635
  msgstr ""
9636
 
9637
  #: services/braintree-webhook.php:425
9638
+ #: services/braintree-webhook.php:426
9639
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
9640
  msgstr ""
9641
 
9642
  #: services/braintree-webhook.php:427
9643
+ #: services/braintree-webhook.php:428
9644
  msgid "A member's Braintree subscription has expired at %s"
9645
  msgstr ""
9646
 
9959
 
9960
  #: classes/gateways/class.pmprogateway_stripe.php:360
9961
  #: classes/gateways/class.pmprogateway_stripe.php:450
9962
+ #: classes/gateways/class.pmprogateway_stripe.php:366
9963
+ #: classes/gateways/class.pmprogateway_stripe.php:456
9964
  msgid "Connected with Legacy Keys"
9965
  msgstr ""
9966
 
9967
  #: classes/gateways/class.pmprogateway_stripe.php:370
9968
  #: classes/gateways/class.pmprogateway_stripe.php:460
9969
+ #: classes/gateways/class.pmprogateway_stripe.php:376
9970
+ #: classes/gateways/class.pmprogateway_stripe.php:466
9971
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
9972
  msgstr ""
9973
 
9974
  #: classes/gateways/class.pmprogateway_stripe.php:372
9975
  #: classes/gateways/class.pmprogateway_stripe.php:462
9976
+ #: classes/gateways/class.pmprogateway_stripe.php:378
9977
+ #: classes/gateways/class.pmprogateway_stripe.php:468
9978
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
9979
  msgstr ""
9980
 
10031
  msgstr ""
10032
 
10033
  #: classes/gateways/class.pmprogateway_stripe.php:533
10034
+ #: classes/gateways/class.pmprogateway_stripe.php:539
10035
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
10036
  msgstr ""
10037
 
10038
  #: classes/gateways/class.pmprogateway_stripe.php:534
10039
+ #: classes/gateways/class.pmprogateway_stripe.php:540
10040
  msgid "Click here to use the legacy API settings."
10041
  msgstr ""
10042
 
10043
  #: paid-memberships-pro.php:194
10044
  msgid "Once a month"
10045
  msgstr ""
10046
+
10047
+ #: adminpages/license.php:37
10048
+ msgid "There was an issue validating your license key: %s"
10049
+ msgstr ""
10050
+
10051
+ #: includes/email-templates.php:172
10052
+ msgid ""
10053
+ "<p>There was a new member checkout at !!sitename!!.</p>\n"
10054
+ "\n"
10055
+ "<p><strong>They have chosen to pay by check.</strong></p>\n"
10056
+ "\n"
10057
+ "<p>Below are details about the new membership account and a receipt for the initial membership invoice.</p>\n"
10058
+ "\n"
10059
+ "<p>Account: !!display_name!! (!!user_email!!)</p>\n"
10060
+ "<p>Membership Level: !!membership_level_name!!</p>\n"
10061
+ "<p>Membership Fee: !!membership_cost!!</p>\n"
10062
+ "!!membership_expiration!! !!discount_code!!\n"
10063
+ "\n"
10064
+ "<p>\n"
10065
+ "\tInvoice #!!invoice_id!! on !!invoice_date!!<br />\n"
10066
+ "\tTotal Billed: !!invoice_total!!\n"
10067
+ "</p>\n"
10068
+ "\n"
10069
+ "<p>Log in to your membership account here: !!login_url!!</p>"
10070
+ msgstr ""
10071
+
10072
+ #: includes/license.php:112
10073
+ msgid "Missing key."
10074
+ msgstr ""
10075
+
10076
+ #: shortcodes/pmpro_account.php:145
10077
+ msgctxt "A dash is shown when there is no expiration date."
10078
+ msgid "&#8212;"
10079
+ msgstr ""
languages/paid-memberships-pro-fr_FR.mo CHANGED
Binary file
languages/paid-memberships-pro-fr_FR.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.2\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-09-17T13:57:26+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -173,6 +173,7 @@ msgstr "Passerelle de paiement et SSL"
173
  #: adminpages/orders.php:391
174
  #: adminpages/orders.php:1445
175
  #: adminpages/orders.php:1448
 
176
  msgid "Email"
177
  msgstr "Courriel"
178
 
@@ -311,6 +312,8 @@ msgstr "Masquer les publicités pour les membres?"
311
  #: adminpages/advancedsettings.php:479
312
  #: classes/gateways/class.pmprogateway_stripe.php:634
313
  #: classes/gateways/class.pmprogateway_stripe.php:648
 
 
314
  msgid "No"
315
  msgstr "Non"
316
 
@@ -371,6 +374,8 @@ msgstr "multisite seulement"
371
  #: adminpages/advancedsettings.php:397
372
  #: classes/gateways/class.pmprogateway_stripe.php:636
373
  #: classes/gateways/class.pmprogateway_stripe.php:650
 
 
374
  msgid "Yes"
375
  msgstr "Oui"
376
 
@@ -564,6 +569,7 @@ msgstr "Code"
564
  #: includes/privacy.php:186
565
  #: includes/profile.php:495
566
  #: adminpages/discountcodes.php:489
 
567
  msgid "Start Date"
568
  msgstr "date de début"
569
 
@@ -580,6 +586,7 @@ msgstr "date de début"
580
  #: classes/gateways/class.pmprogateway_stripe.php:1301
581
  #: adminpages/discountcodes.php:507
582
  #: classes/gateways/class.pmprogateway_stripe.php:1320
 
583
  msgid "Expiration Date"
584
  msgstr "date d'expiration"
585
 
@@ -658,6 +665,7 @@ msgstr "Montant payé"
658
  #: adminpages/discountcodes.php:612
659
  #: adminpages/discountcodes.php:699
660
  #: classes/gateways/class.pmprogateway_stripe.php:1363
 
661
  msgid "Day(s)"
662
  msgstr "Jour(s)"
663
 
@@ -675,6 +683,7 @@ msgstr "Jour(s)"
675
  #: adminpages/discountcodes.php:612
676
  #: adminpages/discountcodes.php:699
677
  #: classes/gateways/class.pmprogateway_stripe.php:1364
 
678
  msgid "Week(s)"
679
  msgstr "Semaine(s)"
680
 
@@ -692,6 +701,7 @@ msgstr "Semaine(s)"
692
  #: adminpages/discountcodes.php:612
693
  #: adminpages/discountcodes.php:699
694
  #: classes/gateways/class.pmprogateway_stripe.php:1365
 
695
  msgid "Month(s)"
696
  msgstr "Mois"
697
 
@@ -709,6 +719,7 @@ msgstr "Mois"
709
  #: adminpages/discountcodes.php:612
710
  #: adminpages/discountcodes.php:699
711
  #: classes/gateways/class.pmprogateway_stripe.php:1366
 
712
  msgid "Year(s)"
713
  msgstr "Année(s)"
714
 
@@ -1064,6 +1075,7 @@ msgstr "Détails de facturation"
1064
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1065
  #: adminpages/discountcodes.php:608
1066
  #: classes/gateways/class.pmprogateway_stripe.php:1497
 
1067
  msgid "per"
1068
  msgstr "par"
1069
 
@@ -1185,6 +1197,8 @@ msgstr "Enregistrer le niveau d'adhésion"
1185
  #: pages/cancel.php:96
1186
  #: shortcodes/pmpro_account.php:106
1187
  #: adminpages/orders.php:968
 
 
1188
  msgid "Cancel"
1189
  msgstr "Annuler"
1190
 
@@ -1585,6 +1599,7 @@ msgstr "c'est-à-dire PayPal Express, PayPal Standard ou carte de crédit."
1585
  #: adminpages/orders.php:679
1586
  #: classes/gateways/class.pmprogateway_stripe.php:1284
1587
  #: classes/gateways/class.pmprogateway_stripe.php:1303
 
1588
  msgid "Card Type"
1589
  msgstr "Type de carte"
1590
 
@@ -1639,6 +1654,7 @@ msgstr "Année d'expiration"
1639
  #: adminpages/dashboard.php:294
1640
  #: adminpages/orders.php:742
1641
  #: adminpages/orders.php:1348
 
1642
  msgid "Status"
1643
  msgstr "Statut"
1644
 
@@ -2482,6 +2498,7 @@ msgstr "Votre confirmation d'adhésion pour %s"
2482
  #: classes/class.pmproemail.php:769
2483
  #: classes/class.pmproemail.php:771
2484
  #: classes/gateways/class.pmprogateway_stripe.php:1333
 
2485
  msgid "Discount Code"
2486
  msgstr "Code de remise"
2487
 
@@ -2751,6 +2768,7 @@ msgstr "Afin d'intégrer pleinement avec Braintree, veillez à régler votre Web
2751
  #: pages/checkout.php:367
2752
  #: classes/gateways/class.pmprogateway_stripe.php:1264
2753
  #: classes/gateways/class.pmprogateway_stripe.php:1283
 
2754
  #, php-format
2755
  msgid "We Accept %s"
2756
  msgstr "Nous acceptons %s"
@@ -2763,6 +2781,7 @@ msgstr "Nous acceptons %s"
2763
  #: pages/checkout.php:366
2764
  #: classes/gateways/class.pmprogateway_stripe.php:1263
2765
  #: classes/gateways/class.pmprogateway_stripe.php:1282
 
2766
  msgid "Payment Information"
2767
  msgstr "Information de paiement"
2768
 
@@ -2776,6 +2795,7 @@ msgstr "Information de paiement"
2776
  #: pages/checkout.php:389
2777
  #: classes/gateways/class.pmprogateway_stripe.php:1297
2778
  #: classes/gateways/class.pmprogateway_stripe.php:1316
 
2779
  msgid "Card Number"
2780
  msgstr "Numéro de la carte"
2781
 
@@ -2808,6 +2828,7 @@ msgstr "qu'est ce que c'est ?"
2808
  #: pages/checkout.php:432
2809
  #: classes/gateways/class.pmprogateway_stripe.php:1319
2810
  #: classes/gateways/class.pmprogateway_stripe.php:1338
 
2811
  msgid "Apply"
2812
  msgstr "Soumettre"
2813
 
@@ -2957,6 +2978,7 @@ msgstr ""
2957
  #: classes/gateways/class.pmprogateway_paypal.php:132
2958
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
2959
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
 
2960
  msgid "PayPal Settings"
2961
  msgstr "Réglages PayPal"
2962
 
@@ -2972,6 +2994,7 @@ msgstr "Nous ne recommandons pas l'usage de PayPal Standard. Nous vous suggéron
2972
  #: classes/gateways/class.pmprogateway_paypal.php:153
2973
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
2974
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
 
2975
  msgid "Gateway Account Email"
2976
  msgstr "Courriel du compte"
2977
 
@@ -2983,6 +3006,7 @@ msgstr "Courriel du compte"
2983
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
2984
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
2985
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
 
2986
  msgid "API Username"
2987
  msgstr "Nom d'utilisateur API"
2988
 
@@ -2994,6 +3018,7 @@ msgstr "Nom d'utilisateur API"
2994
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
2995
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
2996
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
 
2997
  msgid "API Password"
2998
  msgstr "Mot de passe API"
2999
 
@@ -3003,6 +3028,7 @@ msgstr "Mot de passe API"
3003
  #: classes/gateways/class.pmprogateway_paypal.php:177
3004
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
3005
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
 
3006
  msgid "API Signature"
3007
  msgstr "Signature API"
3008
 
@@ -3012,6 +3038,7 @@ msgstr "Signature API"
3012
  #: classes/gateways/class.pmprogateway_paypal.php:196
3013
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
3014
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
 
3015
  msgid "IPN Handler URL"
3016
  msgstr "IPN module URL"
3017
 
@@ -3027,6 +3054,7 @@ msgstr "Cette URL est transmise à PayPal pour tous les paiements et abonnements
3027
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
3028
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
3029
  #: pages/checkout.php:218
 
3030
  msgid "Check Out with PayPal"
3031
  msgstr "Payer avec Paypal"
3032
 
@@ -3038,6 +3066,7 @@ msgstr "Payer avec Paypal"
3038
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
3039
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
3040
  #: pages/checkout.php:526
 
3041
  msgid "Submit and Check Out"
3042
  msgstr "Soumettre et payer"
3043
 
@@ -3051,6 +3080,7 @@ msgstr "Soumettre et payer"
3051
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
3052
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
3053
  #: pages/checkout.php:526
 
3054
  msgid "Submit and Confirm"
3055
  msgstr "Soumettre et confirmer"
3056
 
@@ -3060,6 +3090,7 @@ msgstr "Soumettre et confirmer"
3060
  #: classes/gateways/class.pmprogateway_paypal.php:716
3061
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
3062
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
 
3063
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
3064
  msgstr "Veuillez contacter le propriétaire du site ou bien annuler votre abonnement depuis PayPal pour être sûr de ne pas être débité en continuant."
3065
 
@@ -3068,12 +3099,14 @@ msgstr "Veuillez contacter le propriétaire du site ou bien annuler votre abonne
3068
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
3069
  #: paid-memberships-pro.php:160
3070
  #: paid-memberships-pro.php:162
 
3071
  msgid "PayPal Express"
3072
  msgstr "PayPal Express"
3073
 
3074
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
3075
  #: classes/gateways/class.pmprogateway_paypal.php:199
3076
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
 
3077
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
3078
  msgstr "Pour entièrement intégrer avec PayPal, assurez-vous de mettre votre URL module IPN à"
3079
 
@@ -3081,6 +3114,8 @@ msgstr "Pour entièrement intégrer avec PayPal, assurez-vous de mettre votre UR
3081
  #: classes/gateways/class.pmprogateway_paypalexpress.php:320
3082
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
3083
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
 
 
3084
  msgid "The PayPal Token was lost."
3085
  msgstr "Le jeton PayPal a été perdu."
3086
 
@@ -3102,6 +3137,7 @@ msgstr "Voici pour mémoire votre IPN URL. Vous de DEVRIEZ PAS l'entrer dans vot
3102
  #: classes/gateways/class.pmprogateway_stripe.php:252
3103
  #: paid-memberships-pro.php:159
3104
  #: paid-memberships-pro.php:161
 
3105
  msgid "Stripe"
3106
  msgstr ""
3107
 
@@ -3113,6 +3149,7 @@ msgstr "Réglages Stripe"
3113
  #: classes/gateways/class.pmprogateway_stripe.php:539
3114
  #: classes/gateways/class.pmprogateway_stripe.php:551
3115
  #: classes/gateways/class.pmprogateway_stripe.php:570
 
3116
  msgid "Secret Key"
3117
  msgstr "Clé secrète"
3118
 
@@ -3120,6 +3157,7 @@ msgstr "Clé secrète"
3120
  #: classes/gateways/class.pmprogateway_stripe.php:523
3121
  #: classes/gateways/class.pmprogateway_stripe.php:535
3122
  #: classes/gateways/class.pmprogateway_stripe.php:554
 
3123
  msgid "Publishable Key"
3124
  msgstr "Clé publique"
3125
 
@@ -3127,6 +3165,7 @@ msgstr "Clé publique"
3127
  #: classes/gateways/class.pmprogateway_stripe.php:598
3128
  #: classes/gateways/class.pmprogateway_stripe.php:610
3129
  #: classes/gateways/class.pmprogateway_stripe.php:629
 
3130
  msgid "Show Billing Address Fields"
3131
  msgstr "Afficher les champs d'adresse de facturation"
3132
 
@@ -3134,6 +3173,7 @@ msgstr "Afficher les champs d'adresse de facturation"
3134
  #: classes/gateways/class.pmprogateway_stripe.php:607
3135
  #: classes/gateways/class.pmprogateway_stripe.php:619
3136
  #: classes/gateways/class.pmprogateway_stripe.php:638
 
3137
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
3138
  msgstr ""
3139
 
@@ -3145,6 +3185,7 @@ msgstr "Afin d'intégrer pleinement avec Stripe, veillez à régler votre Web Ho
3145
  #: classes/gateways/class.pmprogateway_stripe.php:1379
3146
  #: classes/gateways/class.pmprogateway_stripe.php:1391
3147
  #: classes/gateways/class.pmprogateway_stripe.php:1410
 
3148
  msgid "Subscription Updates"
3149
  msgstr ""
3150
 
@@ -3152,6 +3193,7 @@ msgstr ""
3152
  #: classes/gateways/class.pmprogateway_stripe.php:1383
3153
  #: classes/gateways/class.pmprogateway_stripe.php:1395
3154
  #: classes/gateways/class.pmprogateway_stripe.php:1414
 
3155
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
3156
  msgstr ""
3157
 
@@ -3159,6 +3201,7 @@ msgstr ""
3159
  #: classes/gateways/class.pmprogateway_stripe.php:1385
3160
  #: classes/gateways/class.pmprogateway_stripe.php:1397
3161
  #: classes/gateways/class.pmprogateway_stripe.php:1416
 
3162
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
3163
  msgstr ""
3164
 
@@ -3168,6 +3211,7 @@ msgstr ""
3168
  #: pages/billing.php:425
3169
  #: classes/gateways/class.pmprogateway_stripe.php:1403
3170
  #: classes/gateways/class.pmprogateway_stripe.php:1422
 
3171
  msgid "Update"
3172
  msgstr "Mettre à jour"
3173
 
@@ -3175,6 +3219,7 @@ msgstr "Mettre à jour"
3175
  #: classes/gateways/class.pmprogateway_stripe.php:2480
3176
  #: classes/gateways/class.pmprogateway_stripe.php:2492
3177
  #: classes/gateways/class.pmprogateway_stripe.php:2514
 
3178
  msgid "Could not cancel the old subscription. Updates have not been processed."
3179
  msgstr ""
3180
 
@@ -3188,6 +3233,9 @@ msgstr ""
3188
  #: classes/gateways/class.pmprogateway_stripe.php:2127
3189
  #: classes/gateways/class.pmprogateway_stripe.php:2132
3190
  #: classes/gateways/class.pmprogateway_stripe.php:2137
 
 
 
3191
  msgid "Error creating customer record with Stripe:"
3192
  msgstr "Erreur de création du dossier client avec Stripe:"
3193
 
@@ -3199,6 +3247,8 @@ msgstr "Erreur de création du dossier client avec Stripe:"
3199
  #: classes/gateways/class.pmprogateway_stripe.php:2356
3200
  #: classes/gateways/class.pmprogateway_stripe.php:2373
3201
  #: classes/gateways/class.pmprogateway_stripe.php:2378
 
 
3202
  msgid "Error creating plan with Stripe:"
3203
  msgstr ""
3204
 
@@ -3209,6 +3259,8 @@ msgstr ""
3209
  #: classes/gateways/class.pmprogateway_stripe.php:2401
3210
  #: classes/gateways/class.pmprogateway_stripe.php:2409
3211
  #: classes/gateways/class.pmprogateway_stripe.php:2423
 
 
3212
  msgid "Error subscribing customer to plan with Stripe:"
3213
  msgstr ""
3214
 
@@ -3216,6 +3268,7 @@ msgstr ""
3216
  #: classes/gateways/class.pmprogateway_stripe.php:2632
3217
  #: classes/gateways/class.pmprogateway_stripe.php:2644
3218
  #: classes/gateways/class.pmprogateway_stripe.php:2666
 
3219
  msgid "Could not cancel old subscription."
3220
  msgstr ""
3221
 
@@ -3223,6 +3276,7 @@ msgstr ""
3223
  #: classes/gateways/class.pmprogateway_stripe.php:2648
3224
  #: classes/gateways/class.pmprogateway_stripe.php:2660
3225
  #: classes/gateways/class.pmprogateway_stripe.php:2682
 
3226
  msgid "Could not find the customer."
3227
  msgstr ""
3228
 
@@ -3785,6 +3839,7 @@ msgstr "déconnexion"
3785
  #: adminpages/dashboard.php:224
3786
  #: adminpages/dashboard.php:292
3787
  #: adminpages/orders.php:1343
 
3788
  msgid "Level"
3789
  msgstr "Niveau"
3790
 
@@ -3820,6 +3875,7 @@ msgstr "Votre abonnement est géré par PayPal. S'il vous plait <a href=\"http:/
3820
  #: includes/profile.php:747
3821
  #: pages/billing.php:164
3822
  #: pages/checkout.php:234
 
3823
  msgid "First Name"
3824
  msgstr "Prénom"
3825
 
@@ -3828,6 +3884,7 @@ msgstr "Prénom"
3828
  #: includes/profile.php:748
3829
  #: pages/billing.php:168
3830
  #: pages/checkout.php:238
 
3831
  msgid "Last Name"
3832
  msgstr "Nom"
3833
 
@@ -4442,6 +4499,7 @@ msgstr "Le code de réduction <strong>%s</strong> a été appliqué à votre com
4442
 
4443
  #: services/authnet-silent-post.php:141
4444
  #: services/authnet-silent-post.php:173
 
4445
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
4446
  msgstr "<p>Un paiement est retenu pour examen par Authorize.net.</p><p>Conditions de vente de Authorize.net"
4447
 
@@ -4485,6 +4543,8 @@ msgstr "Éditer le profil"
4485
  #: includes/profile.php:872
4486
  #: includes/profile.php:909
4487
  #: shortcodes/pmpro_account.php:195
 
 
4488
  msgid "Change Password"
4489
  msgstr "Changer le mot de passe"
4490
 
@@ -4550,6 +4610,7 @@ msgstr "Liens pour les membres"
4550
  #: adminpages/advancedsettings.php:316
4551
  #: includes/privacy.php:175
4552
  #: includes/profile.php:509
 
4553
  #~ msgid "Never"
4554
  #~ msgstr "Jamais"
4555
 
@@ -4783,6 +4844,9 @@ msgstr ""
4783
  #: adminpages/orders.php:1544
4784
  #: adminpages/orders.php:1554
4785
  #: adminpages/orders.php:1553
 
 
 
4786
  msgid "N/A"
4787
  msgstr ""
4788
 
@@ -4809,6 +4873,7 @@ msgstr ""
4809
 
4810
  #: adminpages/admin_header.php:152
4811
  #: classes/gateways/class.pmprogateway_stripe.php:76
 
4812
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
4813
  msgstr ""
4814
 
@@ -5076,6 +5141,7 @@ msgstr ""
5076
  #: adminpages/dashboard.php:174
5077
  #: adminpages/license.php:49
5078
  #: adminpages/dashboard.php:178
 
5079
  msgid "Your license is invalid or expired."
5080
  msgstr ""
5081
 
@@ -5087,6 +5153,7 @@ msgstr ""
5087
  #: adminpages/dashboard.php:177
5088
  #: adminpages/license.php:51
5089
  #: adminpages/dashboard.php:181
 
5090
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
5091
  msgstr ""
5092
 
@@ -5568,26 +5635,33 @@ msgid "Your license key has been validated."
5568
  msgstr ""
5569
 
5570
  #: adminpages/license.php:43
 
5571
  msgid "Paid Memberships Pro Support License"
5572
  msgstr ""
5573
 
5574
  #: adminpages/license.php:47
 
5575
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
5576
  msgstr ""
5577
 
5578
  #: adminpages/license.php:49
 
 
5579
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
5580
  msgstr ""
5581
 
5582
  #: adminpages/license.php:59
 
5583
  msgid "Enter license key here..."
5584
  msgstr ""
5585
 
5586
  #: adminpages/license.php:61
 
5587
  msgid "Validate Key"
5588
  msgstr ""
5589
 
5590
  #: adminpages/license.php:95
 
5591
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
5592
  msgstr ""
5593
 
@@ -6201,6 +6275,7 @@ msgstr ""
6201
 
6202
  #: classes/gateways/class.pmprogateway_braintree.php:87
6203
  #: classes/gateways/class.pmprogateway_stripe.php:91
 
6204
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
6205
  msgstr ""
6206
 
@@ -6498,6 +6573,7 @@ msgid "Your order has been refused."
6498
  msgstr ""
6499
 
6500
  #: classes/gateways/class.pmprogateway_cybersource.php:922
 
6501
  msgid "Unknown error."
6502
  msgstr ""
6503
 
@@ -6512,23 +6588,28 @@ msgstr ""
6512
  #: classes/gateways/class.pmprogateway_paypal.php:146
6513
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
6514
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
 
6515
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
6516
  msgstr ""
6517
 
6518
  #: classes/gateways/class.pmprogateway_paypal.php:185
6519
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
 
6520
  msgid "Confirmation Step"
6521
  msgstr ""
6522
 
6523
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
 
6524
  msgid "Checkout was already processed."
6525
  msgstr ""
6526
 
6527
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
 
6528
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
6529
  msgstr ""
6530
 
6531
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
 
6532
  msgid "Error creating plan with PayPal."
6533
  msgstr ""
6534
 
@@ -6540,11 +6621,14 @@ msgstr ""
6540
  #: classes/gateways/class.pmprogateway_stripe.php:436
6541
  #: classes/gateways/class.pmprogateway_stripe.php:354
6542
  #: classes/gateways/class.pmprogateway_stripe.php:444
 
 
6543
  msgid "Stripe Connect Settings"
6544
  msgstr ""
6545
 
6546
  #: classes/gateways/class.pmprogateway_stripe.php:352
6547
  #: classes/gateways/class.pmprogateway_stripe.php:356
 
6548
  msgid "Live Mode:"
6549
  msgstr ""
6550
 
@@ -6552,6 +6636,8 @@ msgstr ""
6552
  #: classes/gateways/class.pmprogateway_stripe.php:440
6553
  #: classes/gateways/class.pmprogateway_stripe.php:358
6554
  #: classes/gateways/class.pmprogateway_stripe.php:448
 
 
6555
  msgid "Connected"
6556
  msgstr ""
6557
 
@@ -6559,6 +6645,8 @@ msgstr ""
6559
  #: classes/gateways/class.pmprogateway_stripe.php:442
6560
  #: classes/gateways/class.pmprogateway_stripe.php:362
6561
  #: classes/gateways/class.pmprogateway_stripe.php:452
 
 
6562
  msgid "Not Connected"
6563
  msgstr ""
6564
 
@@ -6566,11 +6654,14 @@ msgstr ""
6566
  #: classes/gateways/class.pmprogateway_stripe.php:449
6567
  #: classes/gateways/class.pmprogateway_stripe.php:369
6568
  #: classes/gateways/class.pmprogateway_stripe.php:459
 
 
6569
  msgid "Your site is using legacy API keys to authenticate with Stripe."
6570
  msgstr ""
6571
 
6572
  #: classes/gateways/class.pmprogateway_stripe.php:364
6573
  #: classes/gateways/class.pmprogateway_stripe.php:371
 
6574
  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."
6575
  msgstr ""
6576
 
@@ -6578,6 +6669,8 @@ msgstr ""
6578
  #: classes/gateways/class.pmprogateway_stripe.php:458
6579
  #: classes/gateways/class.pmprogateway_stripe.php:380
6580
  #: classes/gateways/class.pmprogateway_stripe.php:470
 
 
6581
  msgid "Stripe Connection:"
6582
  msgstr ""
6583
 
@@ -6585,11 +6678,14 @@ msgstr ""
6585
  #: classes/gateways/class.pmprogateway_stripe.php:482
6586
  #: classes/gateways/class.pmprogateway_stripe.php:396
6587
  #: classes/gateways/class.pmprogateway_stripe.php:494
 
 
6588
  msgid "Disconnect From Stripe"
6589
  msgstr ""
6590
 
6591
  #: classes/gateways/class.pmprogateway_stripe.php:389
6592
  #: classes/gateways/class.pmprogateway_stripe.php:397
 
6593
  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."
6594
  msgstr ""
6595
 
@@ -6597,16 +6693,20 @@ msgstr ""
6597
  #: classes/gateways/class.pmprogateway_stripe.php:496
6598
  #: classes/gateways/class.pmprogateway_stripe.php:409
6599
  #: classes/gateways/class.pmprogateway_stripe.php:508
 
 
6600
  msgid "Connect with Stripe"
6601
  msgstr ""
6602
 
6603
  #: classes/gateways/class.pmprogateway_stripe.php:408
6604
  #: classes/gateways/class.pmprogateway_stripe.php:416
 
6605
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
6606
  msgstr ""
6607
 
6608
  #: classes/gateways/class.pmprogateway_stripe.php:411
6609
  #: classes/gateways/class.pmprogateway_stripe.php:419
 
6610
  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."
6611
  msgstr ""
6612
 
@@ -6617,6 +6717,9 @@ msgstr ""
6617
  #: classes/gateways/class.pmprogateway_stripe.php:519
6618
  #: classes/gateways/class.pmprogateway_stripe.php:559
6619
  #: classes/gateways/class.pmprogateway_stripe.php:578
 
 
 
6620
  msgid "Webhook"
6621
  msgstr ""
6622
 
@@ -6627,32 +6730,40 @@ msgstr ""
6627
  #: classes/gateways/class.pmprogateway_stripe.php:523
6628
  #: classes/gateways/class.pmprogateway_stripe.php:594
6629
  #: classes/gateways/class.pmprogateway_stripe.php:613
 
 
 
6630
  msgid "Webhook URL"
6631
  msgstr ""
6632
 
6633
  #: classes/gateways/class.pmprogateway_stripe.php:438
6634
  #: classes/gateways/class.pmprogateway_stripe.php:446
 
6635
  msgid "Test Mode:"
6636
  msgstr ""
6637
 
6638
  #: classes/gateways/class.pmprogateway_stripe.php:450
6639
  #: classes/gateways/class.pmprogateway_stripe.php:461
 
6640
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
6641
  msgstr ""
6642
 
6643
  #: classes/gateways/class.pmprogateway_stripe.php:483
6644
  #: classes/gateways/class.pmprogateway_stripe.php:495
 
6645
  msgid "This will disconnect your site from Stripe in test mode only."
6646
  msgstr ""
6647
 
6648
  #: classes/gateways/class.pmprogateway_stripe.php:518
6649
  #: classes/gateways/class.pmprogateway_stripe.php:530
 
6650
  msgid "Stripe API Settings (Legacy)"
6651
  msgstr ""
6652
 
6653
  #: classes/gateways/class.pmprogateway_stripe.php:531
6654
  #: classes/gateways/class.pmprogateway_stripe.php:543
6655
  #: classes/gateways/class.pmprogateway_stripe.php:562
 
6656
  msgid "Your Publishable Key appears incorrect."
6657
  msgstr ""
6658
 
@@ -6662,24 +6773,29 @@ msgstr ""
6662
  #: classes/gateways/class.pmprogateway_stripe.php:587
6663
  #: classes/gateways/class.pmprogateway_stripe.php:582
6664
  #: classes/gateways/class.pmprogateway_stripe.php:606
 
 
6665
  msgid "Create Webhook"
6666
  msgstr ""
6667
 
6668
  #: classes/gateways/class.pmprogateway_stripe.php:557
6669
  #: classes/gateways/class.pmprogateway_stripe.php:569
6670
  #: classes/gateways/class.pmprogateway_stripe.php:588
 
6671
  msgid "A webhook is set up in Stripe, but it is disabled."
6672
  msgstr ""
6673
 
6674
  #: classes/gateways/class.pmprogateway_stripe.php:564
6675
  #: classes/gateways/class.pmprogateway_stripe.php:576
6676
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
6677
  msgid "A webhook is set up in Stripe, but it is using an old API version."
6678
  msgstr ""
6679
 
6680
  #: classes/gateways/class.pmprogateway_stripe.php:564
6681
  #: classes/gateways/class.pmprogateway_stripe.php:576
6682
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
6683
  msgid "Rebuild Webhook"
6684
  msgstr ""
6685
 
@@ -6692,12 +6808,16 @@ msgstr ""
6692
  #: classes/gateways/class.pmprogateway_stripe.php:601
6693
  #: classes/gateways/class.pmprogateway_stripe.php:741
6694
  #: classes/gateways/class.pmprogateway_stripe.php:857
 
 
 
6695
  msgid "Your webhook is enabled."
6696
  msgstr ""
6697
 
6698
  #: classes/gateways/class.pmprogateway_stripe.php:570
6699
  #: classes/gateways/class.pmprogateway_stripe.php:582
6700
  #: classes/gateways/class.pmprogateway_stripe.php:601
 
6701
  msgid "Disable Webhook"
6702
  msgstr ""
6703
 
@@ -6713,66 +6833,80 @@ msgstr ""
6713
  #: classes/gateways/class.pmprogateway_stripe.php:768
6714
  #: classes/gateways/class.pmprogateway_stripe.php:785
6715
  #: classes/gateways/class.pmprogateway_stripe.php:819
 
 
 
 
6716
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
6717
  msgstr ""
6718
 
6719
  #: classes/gateways/class.pmprogateway_stripe.php:589
6720
  #: classes/gateways/class.pmprogateway_stripe.php:601
6721
  #: classes/gateways/class.pmprogateway_stripe.php:620
 
6722
  msgid "Other Stripe Settings"
6723
  msgstr ""
6724
 
6725
  #: classes/gateways/class.pmprogateway_stripe.php:593
6726
  #: classes/gateways/class.pmprogateway_stripe.php:605
6727
  #: classes/gateways/class.pmprogateway_stripe.php:624
 
6728
  msgid "Stripe API Version"
6729
  msgstr ""
6730
 
6731
  #: classes/gateways/class.pmprogateway_stripe.php:612
6732
  #: classes/gateways/class.pmprogateway_stripe.php:624
6733
  #: classes/gateways/class.pmprogateway_stripe.php:643
 
6734
  msgid "Enable Payment Request Button"
6735
  msgstr ""
6736
 
6737
  #: classes/gateways/class.pmprogateway_stripe.php:630
6738
  #: classes/gateways/class.pmprogateway_stripe.php:642
6739
  #: classes/gateways/class.pmprogateway_stripe.php:661
 
6740
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
6741
  msgstr ""
6742
 
6743
  #: classes/gateways/class.pmprogateway_stripe.php:643
6744
  #: classes/gateways/class.pmprogateway_stripe.php:655
6745
  #: classes/gateways/class.pmprogateway_stripe.php:674
 
6746
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
6747
  msgstr ""
6748
 
6749
  #: classes/gateways/class.pmprogateway_stripe.php:645
6750
  #: classes/gateways/class.pmprogateway_stripe.php:657
6751
  #: classes/gateways/class.pmprogateway_stripe.php:676
 
6752
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
6753
  msgstr ""
6754
 
6755
  #: classes/gateways/class.pmprogateway_stripe.php:647
6756
  #: classes/gateways/class.pmprogateway_stripe.php:659
6757
  #: classes/gateways/class.pmprogateway_stripe.php:678
 
6758
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
6759
  msgstr ""
6760
 
6761
  #: classes/gateways/class.pmprogateway_stripe.php:649
6762
  #: classes/gateways/class.pmprogateway_stripe.php:661
6763
  #: classes/gateways/class.pmprogateway_stripe.php:680
 
6764
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
6765
  msgstr ""
6766
 
6767
  #: classes/gateways/class.pmprogateway_stripe.php:674
6768
  #: classes/gateways/class.pmprogateway_stripe.php:686
6769
  #: classes/gateways/class.pmprogateway_stripe.php:705
 
6770
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
6771
  msgstr ""
6772
 
6773
  #: classes/gateways/class.pmprogateway_stripe.php:695
6774
  #: classes/gateways/class.pmprogateway_stripe.php:707
6775
  #: classes/gateways/class.pmprogateway_stripe.php:726
 
6776
  msgid "Webhook creation failed. You might already have a webhook set up."
6777
  msgstr ""
6778
 
@@ -6782,36 +6916,43 @@ msgstr ""
6782
  #: classes/gateways/class.pmprogateway_stripe.php:847
6783
  #: classes/gateways/class.pmprogateway_stripe.php:792
6784
  #: classes/gateways/class.pmprogateway_stripe.php:866
 
 
6785
  msgid "There was an error deleting the webhook."
6786
  msgstr ""
6787
 
6788
  #: classes/gateways/class.pmprogateway_stripe.php:811
6789
  #: classes/gateways/class.pmprogateway_stripe.php:823
6790
  #: classes/gateways/class.pmprogateway_stripe.php:842
 
6791
  msgid "Webhook creation failed. Please refresh and try again."
6792
  msgstr ""
6793
 
6794
  #: classes/gateways/class.pmprogateway_stripe.php:867
6795
  #: classes/gateways/class.pmprogateway_stripe.php:879
6796
  #: classes/gateways/class.pmprogateway_stripe.php:898
 
6797
  msgid "Verification steps confirmed. Your payment is processing."
6798
  msgstr ""
6799
 
6800
  #: classes/gateways/class.pmprogateway_stripe.php:1262
6801
  #: classes/gateways/class.pmprogateway_stripe.php:1274
6802
  #: classes/gateways/class.pmprogateway_stripe.php:1293
 
6803
  msgid "Pay with Credit Card"
6804
  msgstr ""
6805
 
6806
  #: classes/gateways/class.pmprogateway_stripe.php:1296
6807
  #: classes/gateways/class.pmprogateway_stripe.php:1308
6808
  #: classes/gateways/class.pmprogateway_stripe.php:1327
 
6809
  msgid "CVC"
6810
  msgstr ""
6811
 
6812
  #: classes/gateways/class.pmprogateway_stripe.php:1374
6813
  #: classes/gateways/class.pmprogateway_stripe.php:1386
6814
  #: classes/gateways/class.pmprogateway_stripe.php:1405
 
6815
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
6816
  msgstr ""
6817
 
@@ -6827,6 +6968,10 @@ msgstr ""
6827
  #: classes/gateways/class.pmprogateway_stripe.php:2016
6828
  #: classes/gateways/class.pmprogateway_stripe.php:2029
6829
  #: classes/gateways/class.pmprogateway_stripe.php:2033
 
 
 
 
6830
  msgid "Error: %s"
6831
  msgstr ""
6832
 
@@ -6836,6 +6981,8 @@ msgstr ""
6836
  #: classes/gateways/class.pmprogateway_stripe.php:2182
6837
  #: classes/gateways/class.pmprogateway_stripe.php:2196
6838
  #: classes/gateways/class.pmprogateway_stripe.php:2201
 
 
6839
  msgid "Error getting subscription with Stripe:"
6840
  msgstr ""
6841
 
@@ -6845,30 +6992,35 @@ msgstr ""
6845
  #: classes/gateways/class.pmprogateway_stripe.php:2834
6846
  #: classes/gateways/class.pmprogateway_stripe.php:2850
6847
  #: classes/gateways/class.pmprogateway_stripe.php:2856
 
6848
  msgid "Error: "
6849
  msgstr ""
6850
 
6851
  #: classes/gateways/class.pmprogateway_stripe.php:2836
6852
  #: classes/gateways/class.pmprogateway_stripe.php:2848
6853
  #: classes/gateways/class.pmprogateway_stripe.php:2870
 
6854
  msgid "Error: Unkown error while refunding charge #%s"
6855
  msgstr ""
6856
 
6857
  #: classes/gateways/class.pmprogateway_stripe.php:3330
6858
  #: classes/gateways/class.pmprogateway_stripe.php:3342
6859
  #: classes/gateways/class.pmprogateway_stripe.php:3364
 
6860
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
6861
  msgstr ""
6862
 
6863
  #: classes/gateways/class.pmprogateway_stripe.php:3347
6864
  #: classes/gateways/class.pmprogateway_stripe.php:3359
6865
  #: classes/gateways/class.pmprogateway_stripe.php:3381
 
6866
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
6867
  msgstr ""
6868
 
6869
  #: classes/gateways/class.pmprogateway_stripe.php:3533
6870
  #: classes/gateways/class.pmprogateway_stripe.php:3545
6871
  #: classes/gateways/class.pmprogateway_stripe.php:3567
 
6872
  msgid "Invalid response from the Stripe Connect server."
6873
  msgstr ""
6874
 
@@ -6876,6 +7028,7 @@ msgstr ""
6876
  #: classes/gateways/class.pmprogateway_stripe.php:3561
6877
  #: classes/gateways/class.pmprogateway_stripe.php:3573
6878
  #: classes/gateways/class.pmprogateway_stripe.php:3595
 
6879
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
6880
  msgstr ""
6881
 
@@ -6883,30 +7036,35 @@ msgstr ""
6883
  #: classes/gateways/class.pmprogateway_stripe.php:3597
6884
  #: classes/gateways/class.pmprogateway_stripe.php:3609
6885
  #: classes/gateways/class.pmprogateway_stripe.php:3631
 
6886
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
6887
  msgstr ""
6888
 
6889
  #: classes/gateways/class.pmprogateway_stripe.php:3768
6890
  #: classes/gateways/class.pmprogateway_stripe.php:3780
6891
  #: classes/gateways/class.pmprogateway_stripe.php:3802
 
6892
  msgid "Last webhook received at"
6893
  msgstr ""
6894
 
6895
  #: classes/gateways/class.pmprogateway_stripe.php:3770
6896
  #: classes/gateways/class.pmprogateway_stripe.php:3782
6897
  #: classes/gateways/class.pmprogateway_stripe.php:3804
 
6898
  msgid "No webhooks have been received."
6899
  msgstr ""
6900
 
6901
  #: classes/gateways/class.pmprogateway_stripe.php:3774
6902
  #: classes/gateways/class.pmprogateway_stripe.php:3786
6903
  #: classes/gateways/class.pmprogateway_stripe.php:3808
 
6904
  msgid "Your webhook may not be working correctly."
6905
  msgstr ""
6906
 
6907
  #: classes/gateways/class.pmprogateway_stripe.php:3776
6908
  #: classes/gateways/class.pmprogateway_stripe.php:3788
6909
  #: classes/gateways/class.pmprogateway_stripe.php:3810
 
6910
  msgid "Click here for info on setting up your webhook with Stripe."
6911
  msgstr ""
6912
 
@@ -9026,11 +9184,13 @@ msgstr ""
9026
 
9027
  #: includes/login.php:429
9028
  #: includes/profile.php:843
 
9029
  msgid "New passwords do not match."
9030
  msgstr ""
9031
 
9032
  #: includes/login.php:433
9033
  #: includes/profile.php:839
 
9034
  msgid "Please complete all fields."
9035
  msgstr ""
9036
 
@@ -9060,17 +9220,21 @@ msgstr ""
9060
 
9061
  #: includes/login.php:688
9062
  #: includes/profile.php:891
 
9063
  msgid "New Password"
9064
  msgstr ""
9065
 
9066
  #: includes/login.php:690
9067
  #: includes/profile.php:894
9068
  #: includes/scripts.php:86
 
 
9069
  msgid "Strength Indicator"
9070
  msgstr ""
9071
 
9072
  #: includes/login.php:694
9073
  #: includes/profile.php:898
 
9074
  msgid "Confirm New Password"
9075
  msgstr ""
9076
 
@@ -9171,21 +9335,25 @@ msgstr ""
9171
  #: includes/privacy.php:182
9172
  #: includes/profile.php:425
9173
  #: includes/profile.php:493
 
9174
  msgid "Level ID"
9175
  msgstr ""
9176
 
9177
  #: includes/privacy.php:190
9178
  #: includes/profile.php:496
 
9179
  msgid "Date Modified"
9180
  msgstr ""
9181
 
9182
  #: includes/privacy.php:194
9183
  #: includes/profile.php:497
 
9184
  msgid "End Date"
9185
  msgstr ""
9186
 
9187
  #: includes/privacy.php:198
9188
  #: includes/profile.php:498
 
9189
  msgid "Level Cost"
9190
  msgstr ""
9191
 
@@ -9284,68 +9452,85 @@ msgid "Membership Levels History"
9284
  msgstr ""
9285
 
9286
  #: includes/profile.php:485
 
9287
  msgid "No membership orders found."
9288
  msgstr ""
9289
 
9290
  #: includes/profile.php:537
 
9291
  msgid "No membership history found."
9292
  msgstr ""
9293
 
9294
  #: includes/profile.php:644
 
9295
  msgid "Log in to edit your profile."
9296
  msgstr ""
9297
 
9298
  #: includes/profile.php:679
 
9299
  msgid "Please enter a display name."
9300
  msgstr ""
9301
 
9302
  #: includes/profile.php:689
 
9303
  msgid "Please enter an email address."
9304
  msgstr ""
9305
 
9306
  #: includes/profile.php:691
 
9307
  msgid "The email address isn&#8217;t correct."
9308
  msgstr ""
9309
 
9310
  #: includes/profile.php:695
 
9311
  msgid "This email is already registered, please choose another one."
9312
  msgstr ""
9313
 
9314
  #: includes/profile.php:722
 
9315
  msgid "Your profile has been updated."
9316
  msgstr ""
9317
 
9318
  #: includes/profile.php:749
 
9319
  msgid "Display name publicly as"
9320
  msgstr ""
9321
 
9322
  #: includes/profile.php:762
 
9323
  msgid "Site administrators must use the WordPress dashboard to update their email address."
9324
  msgstr ""
9325
 
9326
  #: includes/profile.php:785
 
9327
  msgid "Update Profile"
9328
  msgstr ""
9329
 
9330
  #: includes/profile.php:841
 
9331
  msgid "Please enter your current password."
9332
  msgstr ""
9333
 
9334
  #: includes/profile.php:845
 
9335
  msgid "Your current password is incorrect."
9336
  msgstr ""
9337
 
9338
  #: includes/profile.php:856
 
9339
  msgid "Your password has been updated."
9340
  msgstr ""
9341
 
9342
  #: includes/profile.php:886
 
9343
  msgid "Current Password"
9344
  msgstr ""
9345
 
9346
  #: includes/profile.php:888
9347
  #: includes/profile.php:893
9348
  #: includes/profile.php:900
 
 
9349
  msgid "Required Field"
9350
  msgstr ""
9351
 
@@ -9458,10 +9643,12 @@ msgid "That email address is already in use. Please log in, or use a different e
9458
  msgstr ""
9459
 
9460
  #: services/braintree-webhook.php:425
 
9461
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
9462
  msgstr ""
9463
 
9464
  #: services/braintree-webhook.php:427
 
9465
  msgid "A member's Braintree subscription has expired at %s"
9466
  msgstr ""
9467
 
@@ -9780,16 +9967,22 @@ msgstr ""
9780
 
9781
  #: classes/gateways/class.pmprogateway_stripe.php:360
9782
  #: classes/gateways/class.pmprogateway_stripe.php:450
 
 
9783
  msgid "Connected with Legacy Keys"
9784
  msgstr ""
9785
 
9786
  #: classes/gateways/class.pmprogateway_stripe.php:370
9787
  #: classes/gateways/class.pmprogateway_stripe.php:460
 
 
9788
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
9789
  msgstr ""
9790
 
9791
  #: classes/gateways/class.pmprogateway_stripe.php:372
9792
  #: classes/gateways/class.pmprogateway_stripe.php:462
 
 
9793
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
9794
  msgstr ""
9795
 
@@ -9846,13 +10039,49 @@ msgid "missing"
9846
  msgstr ""
9847
 
9848
  #: classes/gateways/class.pmprogateway_stripe.php:533
 
9849
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
9850
  msgstr ""
9851
 
9852
  #: classes/gateways/class.pmprogateway_stripe.php:534
 
9853
  msgid "Click here to use the legacy API settings."
9854
  msgstr ""
9855
 
9856
  #: paid-memberships-pro.php:194
9857
  msgid "Once a month"
9858
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.3\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-10-11T14:00:39+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
173
  #: adminpages/orders.php:391
174
  #: adminpages/orders.php:1445
175
  #: adminpages/orders.php:1448
176
+ #: includes/profile.php:762
177
  msgid "Email"
178
  msgstr "Courriel"
179
 
312
  #: adminpages/advancedsettings.php:479
313
  #: classes/gateways/class.pmprogateway_stripe.php:634
314
  #: classes/gateways/class.pmprogateway_stripe.php:648
315
+ #: classes/gateways/class.pmprogateway_stripe.php:640
316
+ #: classes/gateways/class.pmprogateway_stripe.php:654
317
  msgid "No"
318
  msgstr "Non"
319
 
374
  #: adminpages/advancedsettings.php:397
375
  #: classes/gateways/class.pmprogateway_stripe.php:636
376
  #: classes/gateways/class.pmprogateway_stripe.php:650
377
+ #: classes/gateways/class.pmprogateway_stripe.php:642
378
+ #: classes/gateways/class.pmprogateway_stripe.php:656
379
  msgid "Yes"
380
  msgstr "Oui"
381
 
569
  #: includes/privacy.php:186
570
  #: includes/profile.php:495
571
  #: adminpages/discountcodes.php:489
572
+ #: includes/profile.php:501
573
  msgid "Start Date"
574
  msgstr "date de début"
575
 
586
  #: classes/gateways/class.pmprogateway_stripe.php:1301
587
  #: adminpages/discountcodes.php:507
588
  #: classes/gateways/class.pmprogateway_stripe.php:1320
589
+ #: classes/gateways/class.pmprogateway_stripe.php:1326
590
  msgid "Expiration Date"
591
  msgstr "date d'expiration"
592
 
665
  #: adminpages/discountcodes.php:612
666
  #: adminpages/discountcodes.php:699
667
  #: classes/gateways/class.pmprogateway_stripe.php:1363
668
+ #: classes/gateways/class.pmprogateway_stripe.php:1369
669
  msgid "Day(s)"
670
  msgstr "Jour(s)"
671
 
683
  #: adminpages/discountcodes.php:612
684
  #: adminpages/discountcodes.php:699
685
  #: classes/gateways/class.pmprogateway_stripe.php:1364
686
+ #: classes/gateways/class.pmprogateway_stripe.php:1370
687
  msgid "Week(s)"
688
  msgstr "Semaine(s)"
689
 
701
  #: adminpages/discountcodes.php:612
702
  #: adminpages/discountcodes.php:699
703
  #: classes/gateways/class.pmprogateway_stripe.php:1365
704
+ #: classes/gateways/class.pmprogateway_stripe.php:1371
705
  msgid "Month(s)"
706
  msgstr "Mois"
707
 
719
  #: adminpages/discountcodes.php:612
720
  #: adminpages/discountcodes.php:699
721
  #: classes/gateways/class.pmprogateway_stripe.php:1366
722
+ #: classes/gateways/class.pmprogateway_stripe.php:1372
723
  msgid "Year(s)"
724
  msgstr "Année(s)"
725
 
1075
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1076
  #: adminpages/discountcodes.php:608
1077
  #: classes/gateways/class.pmprogateway_stripe.php:1497
1078
+ #: classes/gateways/class.pmprogateway_stripe.php:1503
1079
  msgid "per"
1080
  msgstr "par"
1081
 
1197
  #: pages/cancel.php:96
1198
  #: shortcodes/pmpro_account.php:106
1199
  #: adminpages/orders.php:968
1200
+ #: includes/profile.php:798
1201
+ #: includes/profile.php:922
1202
  msgid "Cancel"
1203
  msgstr "Annuler"
1204
 
1599
  #: adminpages/orders.php:679
1600
  #: classes/gateways/class.pmprogateway_stripe.php:1284
1601
  #: classes/gateways/class.pmprogateway_stripe.php:1303
1602
+ #: classes/gateways/class.pmprogateway_stripe.php:1309
1603
  msgid "Card Type"
1604
  msgstr "Type de carte"
1605
 
1654
  #: adminpages/dashboard.php:294
1655
  #: adminpages/orders.php:742
1656
  #: adminpages/orders.php:1348
1657
+ #: includes/profile.php:505
1658
  msgid "Status"
1659
  msgstr "Statut"
1660
 
2498
  #: classes/class.pmproemail.php:769
2499
  #: classes/class.pmproemail.php:771
2500
  #: classes/gateways/class.pmprogateway_stripe.php:1333
2501
+ #: classes/gateways/class.pmprogateway_stripe.php:1339
2502
  msgid "Discount Code"
2503
  msgstr "Code de remise"
2504
 
2768
  #: pages/checkout.php:367
2769
  #: classes/gateways/class.pmprogateway_stripe.php:1264
2770
  #: classes/gateways/class.pmprogateway_stripe.php:1283
2771
+ #: classes/gateways/class.pmprogateway_stripe.php:1289
2772
  #, php-format
2773
  msgid "We Accept %s"
2774
  msgstr "Nous acceptons %s"
2781
  #: pages/checkout.php:366
2782
  #: classes/gateways/class.pmprogateway_stripe.php:1263
2783
  #: classes/gateways/class.pmprogateway_stripe.php:1282
2784
+ #: classes/gateways/class.pmprogateway_stripe.php:1288
2785
  msgid "Payment Information"
2786
  msgstr "Information de paiement"
2787
 
2795
  #: pages/checkout.php:389
2796
  #: classes/gateways/class.pmprogateway_stripe.php:1297
2797
  #: classes/gateways/class.pmprogateway_stripe.php:1316
2798
+ #: classes/gateways/class.pmprogateway_stripe.php:1322
2799
  msgid "Card Number"
2800
  msgstr "Numéro de la carte"
2801
 
2828
  #: pages/checkout.php:432
2829
  #: classes/gateways/class.pmprogateway_stripe.php:1319
2830
  #: classes/gateways/class.pmprogateway_stripe.php:1338
2831
+ #: classes/gateways/class.pmprogateway_stripe.php:1344
2832
  msgid "Apply"
2833
  msgstr "Soumettre"
2834
 
2978
  #: classes/gateways/class.pmprogateway_paypal.php:132
2979
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
2980
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
2981
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:151
2982
  msgid "PayPal Settings"
2983
  msgstr "Réglages PayPal"
2984
 
2994
  #: classes/gateways/class.pmprogateway_paypal.php:153
2995
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
2996
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
2997
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:172
2998
  msgid "Gateway Account Email"
2999
  msgstr "Courriel du compte"
3000
 
3006
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
3007
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
3008
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
3009
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:180
3010
  msgid "API Username"
3011
  msgstr "Nom d'utilisateur API"
3012
 
3018
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
3019
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
3020
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
3021
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:188
3022
  msgid "API Password"
3023
  msgstr "Mot de passe API"
3024
 
3028
  #: classes/gateways/class.pmprogateway_paypal.php:177
3029
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
3030
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
3031
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:196
3032
  msgid "API Signature"
3033
  msgstr "Signature API"
3034
 
3038
  #: classes/gateways/class.pmprogateway_paypal.php:196
3039
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
3040
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
3041
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:215
3042
  msgid "IPN Handler URL"
3043
  msgstr "IPN module URL"
3044
 
3054
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
3055
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
3056
  #: pages/checkout.php:218
3057
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:498
3058
  msgid "Check Out with PayPal"
3059
  msgstr "Payer avec Paypal"
3060
 
3066
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
3067
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
3068
  #: pages/checkout.php:526
3069
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
3070
  msgid "Submit and Check Out"
3071
  msgstr "Soumettre et payer"
3072
 
3080
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
3081
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
3082
  #: pages/checkout.php:526
3083
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
3084
  msgid "Submit and Confirm"
3085
  msgstr "Soumettre et confirmer"
3086
 
3090
  #: classes/gateways/class.pmprogateway_paypal.php:716
3091
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
3092
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
3093
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:841
3094
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
3095
  msgstr "Veuillez contacter le propriétaire du site ou bien annuler votre abonnement depuis PayPal pour être sûr de ne pas être débité en continuant."
3096
 
3099
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
3100
  #: paid-memberships-pro.php:160
3101
  #: paid-memberships-pro.php:162
3102
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:94
3103
  msgid "PayPal Express"
3104
  msgstr "PayPal Express"
3105
 
3106
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
3107
  #: classes/gateways/class.pmprogateway_paypal.php:199
3108
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
3109
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:218
3110
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
3111
  msgstr "Pour entièrement intégrer avec PayPal, assurez-vous de mettre votre URL module IPN à"
3112
 
3114
  #: classes/gateways/class.pmprogateway_paypalexpress.php:320
3115
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
3116
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
3117
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:352
3118
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:411
3119
  msgid "The PayPal Token was lost."
3120
  msgstr "Le jeton PayPal a été perdu."
3121
 
3137
  #: classes/gateways/class.pmprogateway_stripe.php:252
3138
  #: paid-memberships-pro.php:159
3139
  #: paid-memberships-pro.php:161
3140
+ #: classes/gateways/class.pmprogateway_stripe.php:258
3141
  msgid "Stripe"
3142
  msgstr ""
3143
 
3149
  #: classes/gateways/class.pmprogateway_stripe.php:539
3150
  #: classes/gateways/class.pmprogateway_stripe.php:551
3151
  #: classes/gateways/class.pmprogateway_stripe.php:570
3152
+ #: classes/gateways/class.pmprogateway_stripe.php:576
3153
  msgid "Secret Key"
3154
  msgstr "Clé secrète"
3155
 
3157
  #: classes/gateways/class.pmprogateway_stripe.php:523
3158
  #: classes/gateways/class.pmprogateway_stripe.php:535
3159
  #: classes/gateways/class.pmprogateway_stripe.php:554
3160
+ #: classes/gateways/class.pmprogateway_stripe.php:560
3161
  msgid "Publishable Key"
3162
  msgstr "Clé publique"
3163
 
3165
  #: classes/gateways/class.pmprogateway_stripe.php:598
3166
  #: classes/gateways/class.pmprogateway_stripe.php:610
3167
  #: classes/gateways/class.pmprogateway_stripe.php:629
3168
+ #: classes/gateways/class.pmprogateway_stripe.php:635
3169
  msgid "Show Billing Address Fields"
3170
  msgstr "Afficher les champs d'adresse de facturation"
3171
 
3173
  #: classes/gateways/class.pmprogateway_stripe.php:607
3174
  #: classes/gateways/class.pmprogateway_stripe.php:619
3175
  #: classes/gateways/class.pmprogateway_stripe.php:638
3176
+ #: classes/gateways/class.pmprogateway_stripe.php:644
3177
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
3178
  msgstr ""
3179
 
3185
  #: classes/gateways/class.pmprogateway_stripe.php:1379
3186
  #: classes/gateways/class.pmprogateway_stripe.php:1391
3187
  #: classes/gateways/class.pmprogateway_stripe.php:1410
3188
+ #: classes/gateways/class.pmprogateway_stripe.php:1416
3189
  msgid "Subscription Updates"
3190
  msgstr ""
3191
 
3193
  #: classes/gateways/class.pmprogateway_stripe.php:1383
3194
  #: classes/gateways/class.pmprogateway_stripe.php:1395
3195
  #: classes/gateways/class.pmprogateway_stripe.php:1414
3196
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
3197
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
3198
  msgstr ""
3199
 
3201
  #: classes/gateways/class.pmprogateway_stripe.php:1385
3202
  #: classes/gateways/class.pmprogateway_stripe.php:1397
3203
  #: classes/gateways/class.pmprogateway_stripe.php:1416
3204
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
3205
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
3206
  msgstr ""
3207
 
3211
  #: pages/billing.php:425
3212
  #: classes/gateways/class.pmprogateway_stripe.php:1403
3213
  #: classes/gateways/class.pmprogateway_stripe.php:1422
3214
+ #: classes/gateways/class.pmprogateway_stripe.php:1428
3215
  msgid "Update"
3216
  msgstr "Mettre à jour"
3217
 
3219
  #: classes/gateways/class.pmprogateway_stripe.php:2480
3220
  #: classes/gateways/class.pmprogateway_stripe.php:2492
3221
  #: classes/gateways/class.pmprogateway_stripe.php:2514
3222
+ #: classes/gateways/class.pmprogateway_stripe.php:2520
3223
  msgid "Could not cancel the old subscription. Updates have not been processed."
3224
  msgstr ""
3225
 
3233
  #: classes/gateways/class.pmprogateway_stripe.php:2127
3234
  #: classes/gateways/class.pmprogateway_stripe.php:2132
3235
  #: classes/gateways/class.pmprogateway_stripe.php:2137
3236
+ #: classes/gateways/class.pmprogateway_stripe.php:2133
3237
+ #: classes/gateways/class.pmprogateway_stripe.php:2138
3238
+ #: classes/gateways/class.pmprogateway_stripe.php:2143
3239
  msgid "Error creating customer record with Stripe:"
3240
  msgstr "Erreur de création du dossier client avec Stripe:"
3241
 
3247
  #: classes/gateways/class.pmprogateway_stripe.php:2356
3248
  #: classes/gateways/class.pmprogateway_stripe.php:2373
3249
  #: classes/gateways/class.pmprogateway_stripe.php:2378
3250
+ #: classes/gateways/class.pmprogateway_stripe.php:2379
3251
+ #: classes/gateways/class.pmprogateway_stripe.php:2384
3252
  msgid "Error creating plan with Stripe:"
3253
  msgstr ""
3254
 
3259
  #: classes/gateways/class.pmprogateway_stripe.php:2401
3260
  #: classes/gateways/class.pmprogateway_stripe.php:2409
3261
  #: classes/gateways/class.pmprogateway_stripe.php:2423
3262
+ #: classes/gateways/class.pmprogateway_stripe.php:2415
3263
+ #: classes/gateways/class.pmprogateway_stripe.php:2429
3264
  msgid "Error subscribing customer to plan with Stripe:"
3265
  msgstr ""
3266
 
3268
  #: classes/gateways/class.pmprogateway_stripe.php:2632
3269
  #: classes/gateways/class.pmprogateway_stripe.php:2644
3270
  #: classes/gateways/class.pmprogateway_stripe.php:2666
3271
+ #: classes/gateways/class.pmprogateway_stripe.php:2672
3272
  msgid "Could not cancel old subscription."
3273
  msgstr ""
3274
 
3276
  #: classes/gateways/class.pmprogateway_stripe.php:2648
3277
  #: classes/gateways/class.pmprogateway_stripe.php:2660
3278
  #: classes/gateways/class.pmprogateway_stripe.php:2682
3279
+ #: classes/gateways/class.pmprogateway_stripe.php:2688
3280
  msgid "Could not find the customer."
3281
  msgstr ""
3282
 
3839
  #: adminpages/dashboard.php:224
3840
  #: adminpages/dashboard.php:292
3841
  #: adminpages/orders.php:1343
3842
+ #: includes/profile.php:500
3843
  msgid "Level"
3844
  msgstr "Niveau"
3845
 
3875
  #: includes/profile.php:747
3876
  #: pages/billing.php:164
3877
  #: pages/checkout.php:234
3878
+ #: includes/profile.php:759
3879
  msgid "First Name"
3880
  msgstr "Prénom"
3881
 
3884
  #: includes/profile.php:748
3885
  #: pages/billing.php:168
3886
  #: pages/checkout.php:238
3887
+ #: includes/profile.php:760
3888
  msgid "Last Name"
3889
  msgstr "Nom"
3890
 
4499
 
4500
  #: services/authnet-silent-post.php:141
4501
  #: services/authnet-silent-post.php:173
4502
+ #: services/authnet-silent-post.php:176
4503
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
4504
  msgstr "<p>Un paiement est retenu pour examen par Authorize.net.</p><p>Conditions de vente de Authorize.net"
4505
 
4543
  #: includes/profile.php:872
4544
  #: includes/profile.php:909
4545
  #: shortcodes/pmpro_account.php:195
4546
+ #: includes/profile.php:884
4547
+ #: includes/profile.php:921
4548
  msgid "Change Password"
4549
  msgstr "Changer le mot de passe"
4550
 
4610
  #: adminpages/advancedsettings.php:316
4611
  #: includes/privacy.php:175
4612
  #: includes/profile.php:509
4613
+ #: includes/profile.php:515
4614
  #~ msgid "Never"
4615
  #~ msgstr "Jamais"
4616
 
4844
  #: adminpages/orders.php:1544
4845
  #: adminpages/orders.php:1554
4846
  #: adminpages/orders.php:1553
4847
+ #: includes/profile.php:520
4848
+ #: includes/profile.php:521
4849
+ #: includes/profile.php:522
4850
  msgid "N/A"
4851
  msgstr ""
4852
 
4873
 
4874
  #: adminpages/admin_header.php:152
4875
  #: classes/gateways/class.pmprogateway_stripe.php:76
4876
+ #: classes/gateways/class.pmprogateway_stripe.php:82
4877
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
4878
  msgstr ""
4879
 
5141
  #: adminpages/dashboard.php:174
5142
  #: adminpages/license.php:49
5143
  #: adminpages/dashboard.php:178
5144
+ #: adminpages/license.php:41
5145
  msgid "Your license is invalid or expired."
5146
  msgstr ""
5147
 
5153
  #: adminpages/dashboard.php:177
5154
  #: adminpages/license.php:51
5155
  #: adminpages/dashboard.php:181
5156
+ #: adminpages/license.php:43
5157
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
5158
  msgstr ""
5159
 
5635
  msgstr ""
5636
 
5637
  #: adminpages/license.php:43
5638
+ #: adminpages/license.php:33
5639
  msgid "Paid Memberships Pro Support License"
5640
  msgstr ""
5641
 
5642
  #: adminpages/license.php:47
5643
+ #: adminpages/license.php:39
5644
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
5645
  msgstr ""
5646
 
5647
  #: adminpages/license.php:49
5648
+ #: adminpages/license.php:37
5649
+ #: adminpages/license.php:41
5650
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
5651
  msgstr ""
5652
 
5653
  #: adminpages/license.php:59
5654
+ #: adminpages/license.php:51
5655
  msgid "Enter license key here..."
5656
  msgstr ""
5657
 
5658
  #: adminpages/license.php:61
5659
+ #: adminpages/license.php:53
5660
  msgid "Validate Key"
5661
  msgstr ""
5662
 
5663
  #: adminpages/license.php:95
5664
+ #: adminpages/license.php:87
5665
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
5666
  msgstr ""
5667
 
6275
 
6276
  #: classes/gateways/class.pmprogateway_braintree.php:87
6277
  #: classes/gateways/class.pmprogateway_stripe.php:91
6278
+ #: classes/gateways/class.pmprogateway_stripe.php:97
6279
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
6280
  msgstr ""
6281
 
6573
  msgstr ""
6574
 
6575
  #: classes/gateways/class.pmprogateway_cybersource.php:922
6576
+ #: includes/license.php:159
6577
  msgid "Unknown error."
6578
  msgstr ""
6579
 
6588
  #: classes/gateways/class.pmprogateway_paypal.php:146
6589
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
6590
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
6591
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:165
6592
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
6593
  msgstr ""
6594
 
6595
  #: classes/gateways/class.pmprogateway_paypal.php:185
6596
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
6597
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:204
6598
  msgid "Confirmation Step"
6599
  msgstr ""
6600
 
6601
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
6602
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:356
6603
  msgid "Checkout was already processed."
6604
  msgstr ""
6605
 
6606
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
6607
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:791
6608
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
6609
  msgstr ""
6610
 
6611
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
6612
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:792
6613
  msgid "Error creating plan with PayPal."
6614
  msgstr ""
6615
 
6621
  #: classes/gateways/class.pmprogateway_stripe.php:436
6622
  #: classes/gateways/class.pmprogateway_stripe.php:354
6623
  #: classes/gateways/class.pmprogateway_stripe.php:444
6624
+ #: classes/gateways/class.pmprogateway_stripe.php:360
6625
+ #: classes/gateways/class.pmprogateway_stripe.php:450
6626
  msgid "Stripe Connect Settings"
6627
  msgstr ""
6628
 
6629
  #: classes/gateways/class.pmprogateway_stripe.php:352
6630
  #: classes/gateways/class.pmprogateway_stripe.php:356
6631
+ #: classes/gateways/class.pmprogateway_stripe.php:362
6632
  msgid "Live Mode:"
6633
  msgstr ""
6634
 
6636
  #: classes/gateways/class.pmprogateway_stripe.php:440
6637
  #: classes/gateways/class.pmprogateway_stripe.php:358
6638
  #: classes/gateways/class.pmprogateway_stripe.php:448
6639
+ #: classes/gateways/class.pmprogateway_stripe.php:364
6640
+ #: classes/gateways/class.pmprogateway_stripe.php:454
6641
  msgid "Connected"
6642
  msgstr ""
6643
 
6645
  #: classes/gateways/class.pmprogateway_stripe.php:442
6646
  #: classes/gateways/class.pmprogateway_stripe.php:362
6647
  #: classes/gateways/class.pmprogateway_stripe.php:452
6648
+ #: classes/gateways/class.pmprogateway_stripe.php:368
6649
+ #: classes/gateways/class.pmprogateway_stripe.php:458
6650
  msgid "Not Connected"
6651
  msgstr ""
6652
 
6654
  #: classes/gateways/class.pmprogateway_stripe.php:449
6655
  #: classes/gateways/class.pmprogateway_stripe.php:369
6656
  #: classes/gateways/class.pmprogateway_stripe.php:459
6657
+ #: classes/gateways/class.pmprogateway_stripe.php:375
6658
+ #: classes/gateways/class.pmprogateway_stripe.php:465
6659
  msgid "Your site is using legacy API keys to authenticate with Stripe."
6660
  msgstr ""
6661
 
6662
  #: classes/gateways/class.pmprogateway_stripe.php:364
6663
  #: classes/gateways/class.pmprogateway_stripe.php:371
6664
+ #: classes/gateways/class.pmprogateway_stripe.php:377
6665
  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."
6666
  msgstr ""
6667
 
6669
  #: classes/gateways/class.pmprogateway_stripe.php:458
6670
  #: classes/gateways/class.pmprogateway_stripe.php:380
6671
  #: classes/gateways/class.pmprogateway_stripe.php:470
6672
+ #: classes/gateways/class.pmprogateway_stripe.php:386
6673
+ #: classes/gateways/class.pmprogateway_stripe.php:476
6674
  msgid "Stripe Connection:"
6675
  msgstr ""
6676
 
6678
  #: classes/gateways/class.pmprogateway_stripe.php:482
6679
  #: classes/gateways/class.pmprogateway_stripe.php:396
6680
  #: classes/gateways/class.pmprogateway_stripe.php:494
6681
+ #: classes/gateways/class.pmprogateway_stripe.php:402
6682
+ #: classes/gateways/class.pmprogateway_stripe.php:500
6683
  msgid "Disconnect From Stripe"
6684
  msgstr ""
6685
 
6686
  #: classes/gateways/class.pmprogateway_stripe.php:389
6687
  #: classes/gateways/class.pmprogateway_stripe.php:397
6688
+ #: classes/gateways/class.pmprogateway_stripe.php:403
6689
  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."
6690
  msgstr ""
6691
 
6693
  #: classes/gateways/class.pmprogateway_stripe.php:496
6694
  #: classes/gateways/class.pmprogateway_stripe.php:409
6695
  #: classes/gateways/class.pmprogateway_stripe.php:508
6696
+ #: classes/gateways/class.pmprogateway_stripe.php:415
6697
+ #: classes/gateways/class.pmprogateway_stripe.php:514
6698
  msgid "Connect with Stripe"
6699
  msgstr ""
6700
 
6701
  #: classes/gateways/class.pmprogateway_stripe.php:408
6702
  #: classes/gateways/class.pmprogateway_stripe.php:416
6703
+ #: classes/gateways/class.pmprogateway_stripe.php:422
6704
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
6705
  msgstr ""
6706
 
6707
  #: classes/gateways/class.pmprogateway_stripe.php:411
6708
  #: classes/gateways/class.pmprogateway_stripe.php:419
6709
+ #: classes/gateways/class.pmprogateway_stripe.php:425
6710
  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."
6711
  msgstr ""
6712
 
6717
  #: classes/gateways/class.pmprogateway_stripe.php:519
6718
  #: classes/gateways/class.pmprogateway_stripe.php:559
6719
  #: classes/gateways/class.pmprogateway_stripe.php:578
6720
+ #: classes/gateways/class.pmprogateway_stripe.php:437
6721
+ #: classes/gateways/class.pmprogateway_stripe.php:525
6722
+ #: classes/gateways/class.pmprogateway_stripe.php:584
6723
  msgid "Webhook"
6724
  msgstr ""
6725
 
6730
  #: classes/gateways/class.pmprogateway_stripe.php:523
6731
  #: classes/gateways/class.pmprogateway_stripe.php:594
6732
  #: classes/gateways/class.pmprogateway_stripe.php:613
6733
+ #: classes/gateways/class.pmprogateway_stripe.php:441
6734
+ #: classes/gateways/class.pmprogateway_stripe.php:529
6735
+ #: classes/gateways/class.pmprogateway_stripe.php:619
6736
  msgid "Webhook URL"
6737
  msgstr ""
6738
 
6739
  #: classes/gateways/class.pmprogateway_stripe.php:438
6740
  #: classes/gateways/class.pmprogateway_stripe.php:446
6741
+ #: classes/gateways/class.pmprogateway_stripe.php:452
6742
  msgid "Test Mode:"
6743
  msgstr ""
6744
 
6745
  #: classes/gateways/class.pmprogateway_stripe.php:450
6746
  #: classes/gateways/class.pmprogateway_stripe.php:461
6747
+ #: classes/gateways/class.pmprogateway_stripe.php:467
6748
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
6749
  msgstr ""
6750
 
6751
  #: classes/gateways/class.pmprogateway_stripe.php:483
6752
  #: classes/gateways/class.pmprogateway_stripe.php:495
6753
+ #: classes/gateways/class.pmprogateway_stripe.php:501
6754
  msgid "This will disconnect your site from Stripe in test mode only."
6755
  msgstr ""
6756
 
6757
  #: classes/gateways/class.pmprogateway_stripe.php:518
6758
  #: classes/gateways/class.pmprogateway_stripe.php:530
6759
+ #: classes/gateways/class.pmprogateway_stripe.php:536
6760
  msgid "Stripe API Settings (Legacy)"
6761
  msgstr ""
6762
 
6763
  #: classes/gateways/class.pmprogateway_stripe.php:531
6764
  #: classes/gateways/class.pmprogateway_stripe.php:543
6765
  #: classes/gateways/class.pmprogateway_stripe.php:562
6766
+ #: classes/gateways/class.pmprogateway_stripe.php:568
6767
  msgid "Your Publishable Key appears incorrect."
6768
  msgstr ""
6769
 
6773
  #: classes/gateways/class.pmprogateway_stripe.php:587
6774
  #: classes/gateways/class.pmprogateway_stripe.php:582
6775
  #: classes/gateways/class.pmprogateway_stripe.php:606
6776
+ #: classes/gateways/class.pmprogateway_stripe.php:588
6777
+ #: classes/gateways/class.pmprogateway_stripe.php:612
6778
  msgid "Create Webhook"
6779
  msgstr ""
6780
 
6781
  #: classes/gateways/class.pmprogateway_stripe.php:557
6782
  #: classes/gateways/class.pmprogateway_stripe.php:569
6783
  #: classes/gateways/class.pmprogateway_stripe.php:588
6784
+ #: classes/gateways/class.pmprogateway_stripe.php:594
6785
  msgid "A webhook is set up in Stripe, but it is disabled."
6786
  msgstr ""
6787
 
6788
  #: classes/gateways/class.pmprogateway_stripe.php:564
6789
  #: classes/gateways/class.pmprogateway_stripe.php:576
6790
  #: classes/gateways/class.pmprogateway_stripe.php:595
6791
+ #: classes/gateways/class.pmprogateway_stripe.php:601
6792
  msgid "A webhook is set up in Stripe, but it is using an old API version."
6793
  msgstr ""
6794
 
6795
  #: classes/gateways/class.pmprogateway_stripe.php:564
6796
  #: classes/gateways/class.pmprogateway_stripe.php:576
6797
  #: classes/gateways/class.pmprogateway_stripe.php:595
6798
+ #: classes/gateways/class.pmprogateway_stripe.php:601
6799
  msgid "Rebuild Webhook"
6800
  msgstr ""
6801
 
6808
  #: classes/gateways/class.pmprogateway_stripe.php:601
6809
  #: classes/gateways/class.pmprogateway_stripe.php:741
6810
  #: classes/gateways/class.pmprogateway_stripe.php:857
6811
+ #: classes/gateways/class.pmprogateway_stripe.php:607
6812
+ #: classes/gateways/class.pmprogateway_stripe.php:747
6813
+ #: classes/gateways/class.pmprogateway_stripe.php:863
6814
  msgid "Your webhook is enabled."
6815
  msgstr ""
6816
 
6817
  #: classes/gateways/class.pmprogateway_stripe.php:570
6818
  #: classes/gateways/class.pmprogateway_stripe.php:582
6819
  #: classes/gateways/class.pmprogateway_stripe.php:601
6820
+ #: classes/gateways/class.pmprogateway_stripe.php:607
6821
  msgid "Disable Webhook"
6822
  msgstr ""
6823
 
6833
  #: classes/gateways/class.pmprogateway_stripe.php:768
6834
  #: classes/gateways/class.pmprogateway_stripe.php:785
6835
  #: classes/gateways/class.pmprogateway_stripe.php:819
6836
+ #: classes/gateways/class.pmprogateway_stripe.php:614
6837
+ #: classes/gateways/class.pmprogateway_stripe.php:774
6838
+ #: classes/gateways/class.pmprogateway_stripe.php:791
6839
+ #: classes/gateways/class.pmprogateway_stripe.php:825
6840
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
6841
  msgstr ""
6842
 
6843
  #: classes/gateways/class.pmprogateway_stripe.php:589
6844
  #: classes/gateways/class.pmprogateway_stripe.php:601
6845
  #: classes/gateways/class.pmprogateway_stripe.php:620
6846
+ #: classes/gateways/class.pmprogateway_stripe.php:626
6847
  msgid "Other Stripe Settings"
6848
  msgstr ""
6849
 
6850
  #: classes/gateways/class.pmprogateway_stripe.php:593
6851
  #: classes/gateways/class.pmprogateway_stripe.php:605
6852
  #: classes/gateways/class.pmprogateway_stripe.php:624
6853
+ #: classes/gateways/class.pmprogateway_stripe.php:630
6854
  msgid "Stripe API Version"
6855
  msgstr ""
6856
 
6857
  #: classes/gateways/class.pmprogateway_stripe.php:612
6858
  #: classes/gateways/class.pmprogateway_stripe.php:624
6859
  #: classes/gateways/class.pmprogateway_stripe.php:643
6860
+ #: classes/gateways/class.pmprogateway_stripe.php:649
6861
  msgid "Enable Payment Request Button"
6862
  msgstr ""
6863
 
6864
  #: classes/gateways/class.pmprogateway_stripe.php:630
6865
  #: classes/gateways/class.pmprogateway_stripe.php:642
6866
  #: classes/gateways/class.pmprogateway_stripe.php:661
6867
+ #: classes/gateways/class.pmprogateway_stripe.php:667
6868
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
6869
  msgstr ""
6870
 
6871
  #: classes/gateways/class.pmprogateway_stripe.php:643
6872
  #: classes/gateways/class.pmprogateway_stripe.php:655
6873
  #: classes/gateways/class.pmprogateway_stripe.php:674
6874
+ #: classes/gateways/class.pmprogateway_stripe.php:680
6875
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
6876
  msgstr ""
6877
 
6878
  #: classes/gateways/class.pmprogateway_stripe.php:645
6879
  #: classes/gateways/class.pmprogateway_stripe.php:657
6880
  #: classes/gateways/class.pmprogateway_stripe.php:676
6881
+ #: classes/gateways/class.pmprogateway_stripe.php:682
6882
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
6883
  msgstr ""
6884
 
6885
  #: classes/gateways/class.pmprogateway_stripe.php:647
6886
  #: classes/gateways/class.pmprogateway_stripe.php:659
6887
  #: classes/gateways/class.pmprogateway_stripe.php:678
6888
+ #: classes/gateways/class.pmprogateway_stripe.php:684
6889
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
6890
  msgstr ""
6891
 
6892
  #: classes/gateways/class.pmprogateway_stripe.php:649
6893
  #: classes/gateways/class.pmprogateway_stripe.php:661
6894
  #: classes/gateways/class.pmprogateway_stripe.php:680
6895
+ #: classes/gateways/class.pmprogateway_stripe.php:686
6896
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
6897
  msgstr ""
6898
 
6899
  #: classes/gateways/class.pmprogateway_stripe.php:674
6900
  #: classes/gateways/class.pmprogateway_stripe.php:686
6901
  #: classes/gateways/class.pmprogateway_stripe.php:705
6902
+ #: classes/gateways/class.pmprogateway_stripe.php:711
6903
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
6904
  msgstr ""
6905
 
6906
  #: classes/gateways/class.pmprogateway_stripe.php:695
6907
  #: classes/gateways/class.pmprogateway_stripe.php:707
6908
  #: classes/gateways/class.pmprogateway_stripe.php:726
6909
+ #: classes/gateways/class.pmprogateway_stripe.php:732
6910
  msgid "Webhook creation failed. You might already have a webhook set up."
6911
  msgstr ""
6912
 
6916
  #: classes/gateways/class.pmprogateway_stripe.php:847
6917
  #: classes/gateways/class.pmprogateway_stripe.php:792
6918
  #: classes/gateways/class.pmprogateway_stripe.php:866
6919
+ #: classes/gateways/class.pmprogateway_stripe.php:798
6920
+ #: classes/gateways/class.pmprogateway_stripe.php:872
6921
  msgid "There was an error deleting the webhook."
6922
  msgstr ""
6923
 
6924
  #: classes/gateways/class.pmprogateway_stripe.php:811
6925
  #: classes/gateways/class.pmprogateway_stripe.php:823
6926
  #: classes/gateways/class.pmprogateway_stripe.php:842
6927
+ #: classes/gateways/class.pmprogateway_stripe.php:848
6928
  msgid "Webhook creation failed. Please refresh and try again."
6929
  msgstr ""
6930
 
6931
  #: classes/gateways/class.pmprogateway_stripe.php:867
6932
  #: classes/gateways/class.pmprogateway_stripe.php:879
6933
  #: classes/gateways/class.pmprogateway_stripe.php:898
6934
+ #: classes/gateways/class.pmprogateway_stripe.php:904
6935
  msgid "Verification steps confirmed. Your payment is processing."
6936
  msgstr ""
6937
 
6938
  #: classes/gateways/class.pmprogateway_stripe.php:1262
6939
  #: classes/gateways/class.pmprogateway_stripe.php:1274
6940
  #: classes/gateways/class.pmprogateway_stripe.php:1293
6941
+ #: classes/gateways/class.pmprogateway_stripe.php:1299
6942
  msgid "Pay with Credit Card"
6943
  msgstr ""
6944
 
6945
  #: classes/gateways/class.pmprogateway_stripe.php:1296
6946
  #: classes/gateways/class.pmprogateway_stripe.php:1308
6947
  #: classes/gateways/class.pmprogateway_stripe.php:1327
6948
+ #: classes/gateways/class.pmprogateway_stripe.php:1333
6949
  msgid "CVC"
6950
  msgstr ""
6951
 
6952
  #: classes/gateways/class.pmprogateway_stripe.php:1374
6953
  #: classes/gateways/class.pmprogateway_stripe.php:1386
6954
  #: classes/gateways/class.pmprogateway_stripe.php:1405
6955
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
6956
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
6957
  msgstr ""
6958
 
6968
  #: classes/gateways/class.pmprogateway_stripe.php:2016
6969
  #: classes/gateways/class.pmprogateway_stripe.php:2029
6970
  #: classes/gateways/class.pmprogateway_stripe.php:2033
6971
+ #: classes/gateways/class.pmprogateway_stripe.php:2018
6972
+ #: classes/gateways/class.pmprogateway_stripe.php:2022
6973
+ #: classes/gateways/class.pmprogateway_stripe.php:2035
6974
+ #: classes/gateways/class.pmprogateway_stripe.php:2039
6975
  msgid "Error: %s"
6976
  msgstr ""
6977
 
6981
  #: classes/gateways/class.pmprogateway_stripe.php:2182
6982
  #: classes/gateways/class.pmprogateway_stripe.php:2196
6983
  #: classes/gateways/class.pmprogateway_stripe.php:2201
6984
+ #: classes/gateways/class.pmprogateway_stripe.php:2202
6985
+ #: classes/gateways/class.pmprogateway_stripe.php:2207
6986
  msgid "Error getting subscription with Stripe:"
6987
  msgstr ""
6988
 
6992
  #: classes/gateways/class.pmprogateway_stripe.php:2834
6993
  #: classes/gateways/class.pmprogateway_stripe.php:2850
6994
  #: classes/gateways/class.pmprogateway_stripe.php:2856
6995
+ #: classes/gateways/class.pmprogateway_stripe.php:2862
6996
  msgid "Error: "
6997
  msgstr ""
6998
 
6999
  #: classes/gateways/class.pmprogateway_stripe.php:2836
7000
  #: classes/gateways/class.pmprogateway_stripe.php:2848
7001
  #: classes/gateways/class.pmprogateway_stripe.php:2870
7002
+ #: classes/gateways/class.pmprogateway_stripe.php:2876
7003
  msgid "Error: Unkown error while refunding charge #%s"
7004
  msgstr ""
7005
 
7006
  #: classes/gateways/class.pmprogateway_stripe.php:3330
7007
  #: classes/gateways/class.pmprogateway_stripe.php:3342
7008
  #: classes/gateways/class.pmprogateway_stripe.php:3364
7009
+ #: classes/gateways/class.pmprogateway_stripe.php:3370
7010
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
7011
  msgstr ""
7012
 
7013
  #: classes/gateways/class.pmprogateway_stripe.php:3347
7014
  #: classes/gateways/class.pmprogateway_stripe.php:3359
7015
  #: classes/gateways/class.pmprogateway_stripe.php:3381
7016
+ #: classes/gateways/class.pmprogateway_stripe.php:3387
7017
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
7018
  msgstr ""
7019
 
7020
  #: classes/gateways/class.pmprogateway_stripe.php:3533
7021
  #: classes/gateways/class.pmprogateway_stripe.php:3545
7022
  #: classes/gateways/class.pmprogateway_stripe.php:3567
7023
+ #: classes/gateways/class.pmprogateway_stripe.php:3573
7024
  msgid "Invalid response from the Stripe Connect server."
7025
  msgstr ""
7026
 
7028
  #: classes/gateways/class.pmprogateway_stripe.php:3561
7029
  #: classes/gateways/class.pmprogateway_stripe.php:3573
7030
  #: classes/gateways/class.pmprogateway_stripe.php:3595
7031
+ #: classes/gateways/class.pmprogateway_stripe.php:3601
7032
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
7033
  msgstr ""
7034
 
7036
  #: classes/gateways/class.pmprogateway_stripe.php:3597
7037
  #: classes/gateways/class.pmprogateway_stripe.php:3609
7038
  #: classes/gateways/class.pmprogateway_stripe.php:3631
7039
+ #: classes/gateways/class.pmprogateway_stripe.php:3637
7040
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
7041
  msgstr ""
7042
 
7043
  #: classes/gateways/class.pmprogateway_stripe.php:3768
7044
  #: classes/gateways/class.pmprogateway_stripe.php:3780
7045
  #: classes/gateways/class.pmprogateway_stripe.php:3802
7046
+ #: classes/gateways/class.pmprogateway_stripe.php:3808
7047
  msgid "Last webhook received at"
7048
  msgstr ""
7049
 
7050
  #: classes/gateways/class.pmprogateway_stripe.php:3770
7051
  #: classes/gateways/class.pmprogateway_stripe.php:3782
7052
  #: classes/gateways/class.pmprogateway_stripe.php:3804
7053
+ #: classes/gateways/class.pmprogateway_stripe.php:3810
7054
  msgid "No webhooks have been received."
7055
  msgstr ""
7056
 
7057
  #: classes/gateways/class.pmprogateway_stripe.php:3774
7058
  #: classes/gateways/class.pmprogateway_stripe.php:3786
7059
  #: classes/gateways/class.pmprogateway_stripe.php:3808
7060
+ #: classes/gateways/class.pmprogateway_stripe.php:3814
7061
  msgid "Your webhook may not be working correctly."
7062
  msgstr ""
7063
 
7064
  #: classes/gateways/class.pmprogateway_stripe.php:3776
7065
  #: classes/gateways/class.pmprogateway_stripe.php:3788
7066
  #: classes/gateways/class.pmprogateway_stripe.php:3810
7067
+ #: classes/gateways/class.pmprogateway_stripe.php:3816
7068
  msgid "Click here for info on setting up your webhook with Stripe."
7069
  msgstr ""
7070
 
9184
 
9185
  #: includes/login.php:429
9186
  #: includes/profile.php:843
9187
+ #: includes/profile.php:855
9188
  msgid "New passwords do not match."
9189
  msgstr ""
9190
 
9191
  #: includes/login.php:433
9192
  #: includes/profile.php:839
9193
+ #: includes/profile.php:851
9194
  msgid "Please complete all fields."
9195
  msgstr ""
9196
 
9220
 
9221
  #: includes/login.php:688
9222
  #: includes/profile.php:891
9223
+ #: includes/profile.php:903
9224
  msgid "New Password"
9225
  msgstr ""
9226
 
9227
  #: includes/login.php:690
9228
  #: includes/profile.php:894
9229
  #: includes/scripts.php:86
9230
+ #: includes/profile.php:906
9231
+ #: includes/scripts.php:85
9232
  msgid "Strength Indicator"
9233
  msgstr ""
9234
 
9235
  #: includes/login.php:694
9236
  #: includes/profile.php:898
9237
+ #: includes/profile.php:910
9238
  msgid "Confirm New Password"
9239
  msgstr ""
9240
 
9335
  #: includes/privacy.php:182
9336
  #: includes/profile.php:425
9337
  #: includes/profile.php:493
9338
+ #: includes/profile.php:499
9339
  msgid "Level ID"
9340
  msgstr ""
9341
 
9342
  #: includes/privacy.php:190
9343
  #: includes/profile.php:496
9344
+ #: includes/profile.php:502
9345
  msgid "Date Modified"
9346
  msgstr ""
9347
 
9348
  #: includes/privacy.php:194
9349
  #: includes/profile.php:497
9350
+ #: includes/profile.php:503
9351
  msgid "End Date"
9352
  msgstr ""
9353
 
9354
  #: includes/privacy.php:198
9355
  #: includes/profile.php:498
9356
+ #: includes/profile.php:504
9357
  msgid "Level Cost"
9358
  msgstr ""
9359
 
9452
  msgstr ""
9453
 
9454
  #: includes/profile.php:485
9455
+ #: includes/profile.php:488
9456
  msgid "No membership orders found."
9457
  msgstr ""
9458
 
9459
  #: includes/profile.php:537
9460
+ #: includes/profile.php:546
9461
  msgid "No membership history found."
9462
  msgstr ""
9463
 
9464
  #: includes/profile.php:644
9465
+ #: includes/profile.php:656
9466
  msgid "Log in to edit your profile."
9467
  msgstr ""
9468
 
9469
  #: includes/profile.php:679
9470
+ #: includes/profile.php:691
9471
  msgid "Please enter a display name."
9472
  msgstr ""
9473
 
9474
  #: includes/profile.php:689
9475
+ #: includes/profile.php:701
9476
  msgid "Please enter an email address."
9477
  msgstr ""
9478
 
9479
  #: includes/profile.php:691
9480
+ #: includes/profile.php:703
9481
  msgid "The email address isn&#8217;t correct."
9482
  msgstr ""
9483
 
9484
  #: includes/profile.php:695
9485
+ #: includes/profile.php:707
9486
  msgid "This email is already registered, please choose another one."
9487
  msgstr ""
9488
 
9489
  #: includes/profile.php:722
9490
+ #: includes/profile.php:734
9491
  msgid "Your profile has been updated."
9492
  msgstr ""
9493
 
9494
  #: includes/profile.php:749
9495
+ #: includes/profile.php:761
9496
  msgid "Display name publicly as"
9497
  msgstr ""
9498
 
9499
  #: includes/profile.php:762
9500
+ #: includes/profile.php:774
9501
  msgid "Site administrators must use the WordPress dashboard to update their email address."
9502
  msgstr ""
9503
 
9504
  #: includes/profile.php:785
9505
+ #: includes/profile.php:797
9506
  msgid "Update Profile"
9507
  msgstr ""
9508
 
9509
  #: includes/profile.php:841
9510
+ #: includes/profile.php:853
9511
  msgid "Please enter your current password."
9512
  msgstr ""
9513
 
9514
  #: includes/profile.php:845
9515
+ #: includes/profile.php:857
9516
  msgid "Your current password is incorrect."
9517
  msgstr ""
9518
 
9519
  #: includes/profile.php:856
9520
+ #: includes/profile.php:868
9521
  msgid "Your password has been updated."
9522
  msgstr ""
9523
 
9524
  #: includes/profile.php:886
9525
+ #: includes/profile.php:898
9526
  msgid "Current Password"
9527
  msgstr ""
9528
 
9529
  #: includes/profile.php:888
9530
  #: includes/profile.php:893
9531
  #: includes/profile.php:900
9532
+ #: includes/profile.php:905
9533
+ #: includes/profile.php:912
9534
  msgid "Required Field"
9535
  msgstr ""
9536
 
9643
  msgstr ""
9644
 
9645
  #: services/braintree-webhook.php:425
9646
+ #: services/braintree-webhook.php:426
9647
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
9648
  msgstr ""
9649
 
9650
  #: services/braintree-webhook.php:427
9651
+ #: services/braintree-webhook.php:428
9652
  msgid "A member's Braintree subscription has expired at %s"
9653
  msgstr ""
9654
 
9967
 
9968
  #: classes/gateways/class.pmprogateway_stripe.php:360
9969
  #: classes/gateways/class.pmprogateway_stripe.php:450
9970
+ #: classes/gateways/class.pmprogateway_stripe.php:366
9971
+ #: classes/gateways/class.pmprogateway_stripe.php:456
9972
  msgid "Connected with Legacy Keys"
9973
  msgstr ""
9974
 
9975
  #: classes/gateways/class.pmprogateway_stripe.php:370
9976
  #: classes/gateways/class.pmprogateway_stripe.php:460
9977
+ #: classes/gateways/class.pmprogateway_stripe.php:376
9978
+ #: classes/gateways/class.pmprogateway_stripe.php:466
9979
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
9980
  msgstr ""
9981
 
9982
  #: classes/gateways/class.pmprogateway_stripe.php:372
9983
  #: classes/gateways/class.pmprogateway_stripe.php:462
9984
+ #: classes/gateways/class.pmprogateway_stripe.php:378
9985
+ #: classes/gateways/class.pmprogateway_stripe.php:468
9986
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
9987
  msgstr ""
9988
 
10039
  msgstr ""
10040
 
10041
  #: classes/gateways/class.pmprogateway_stripe.php:533
10042
+ #: classes/gateways/class.pmprogateway_stripe.php:539
10043
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
10044
  msgstr ""
10045
 
10046
  #: classes/gateways/class.pmprogateway_stripe.php:534
10047
+ #: classes/gateways/class.pmprogateway_stripe.php:540
10048
  msgid "Click here to use the legacy API settings."
10049
  msgstr ""
10050
 
10051
  #: paid-memberships-pro.php:194
10052
  msgid "Once a month"
10053
  msgstr ""
10054
+
10055
+ #: adminpages/license.php:37
10056
+ msgid "There was an issue validating your license key: %s"
10057
+ msgstr ""
10058
+
10059
+ #: includes/email-templates.php:172
10060
+ msgid ""
10061
+ "<p>There was a new member checkout at !!sitename!!.</p>\n"
10062
+ "\n"
10063
+ "<p><strong>They have chosen to pay by check.</strong></p>\n"
10064
+ "\n"
10065
+ "<p>Below are details about the new membership account and a receipt for the initial membership invoice.</p>\n"
10066
+ "\n"
10067
+ "<p>Account: !!display_name!! (!!user_email!!)</p>\n"
10068
+ "<p>Membership Level: !!membership_level_name!!</p>\n"
10069
+ "<p>Membership Fee: !!membership_cost!!</p>\n"
10070
+ "!!membership_expiration!! !!discount_code!!\n"
10071
+ "\n"
10072
+ "<p>\n"
10073
+ "\tInvoice #!!invoice_id!! on !!invoice_date!!<br />\n"
10074
+ "\tTotal Billed: !!invoice_total!!\n"
10075
+ "</p>\n"
10076
+ "\n"
10077
+ "<p>Log in to your membership account here: !!login_url!!</p>"
10078
+ msgstr ""
10079
+
10080
+ #: includes/license.php:112
10081
+ msgid "Missing key."
10082
+ msgstr ""
10083
+
10084
+ #: shortcodes/pmpro_account.php:145
10085
+ msgctxt "A dash is shown when there is no expiration date."
10086
+ msgid "&#8212;"
10087
+ msgstr ""
languages/paid-memberships-pro-he_IL.mo CHANGED
Binary file
languages/paid-memberships-pro-he_IL.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.2\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-09-17T13:57:29+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -261,6 +261,9 @@ msgstr ""
261
  #: adminpages/orders.php:1544
262
  #: adminpages/orders.php:1554
263
  #: adminpages/orders.php:1553
 
 
 
264
  msgid "N/A"
265
  msgstr ""
266
 
@@ -444,6 +447,7 @@ msgstr ""
444
  #: adminpages/orders.php:391
445
  #: adminpages/orders.php:1445
446
  #: adminpages/orders.php:1448
 
447
  msgid "Email"
448
  msgstr "‎אימייל"
449
 
@@ -632,6 +636,8 @@ msgstr ""
632
  #: adminpages/advancedsettings.php:479
633
  #: classes/gateways/class.pmprogateway_stripe.php:634
634
  #: classes/gateways/class.pmprogateway_stripe.php:648
 
 
635
  msgid "No"
636
  msgstr ""
637
 
@@ -730,6 +736,8 @@ msgstr ""
730
  #: adminpages/advancedsettings.php:397
731
  #: classes/gateways/class.pmprogateway_stripe.php:636
732
  #: classes/gateways/class.pmprogateway_stripe.php:650
 
 
733
  msgid "Yes"
734
  msgstr ""
735
 
@@ -1031,6 +1039,7 @@ msgstr ""
1031
  #: includes/privacy.php:186
1032
  #: includes/profile.php:495
1033
  #: adminpages/discountcodes.php:489
 
1034
  msgid "Start Date"
1035
  msgstr ""
1036
 
@@ -1066,6 +1075,7 @@ msgstr ""
1066
  #: classes/gateways/class.pmprogateway_stripe.php:1301
1067
  #: adminpages/discountcodes.php:507
1068
  #: classes/gateways/class.pmprogateway_stripe.php:1320
 
1069
  msgid "Expiration Date"
1070
  msgstr "תוקף"
1071
 
@@ -1216,6 +1226,7 @@ msgstr ""
1216
  #: adminpages/discountcodes.php:612
1217
  #: adminpages/discountcodes.php:699
1218
  #: classes/gateways/class.pmprogateway_stripe.php:1363
 
1219
  msgid "Day(s)"
1220
  msgstr ""
1221
 
@@ -1251,6 +1262,7 @@ msgstr ""
1251
  #: adminpages/discountcodes.php:612
1252
  #: adminpages/discountcodes.php:699
1253
  #: classes/gateways/class.pmprogateway_stripe.php:1365
 
1254
  msgid "Month(s)"
1255
  msgstr ""
1256
 
@@ -1286,6 +1298,7 @@ msgstr ""
1286
  #: adminpages/discountcodes.php:612
1287
  #: adminpages/discountcodes.php:699
1288
  #: classes/gateways/class.pmprogateway_stripe.php:1364
 
1289
  msgid "Week(s)"
1290
  msgstr ""
1291
 
@@ -1321,6 +1334,7 @@ msgstr ""
1321
  #: adminpages/discountcodes.php:612
1322
  #: adminpages/discountcodes.php:699
1323
  #: classes/gateways/class.pmprogateway_stripe.php:1366
 
1324
  msgid "Year(s)"
1325
  msgstr ""
1326
 
@@ -1942,6 +1956,7 @@ msgstr ""
1942
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1943
  #: adminpages/discountcodes.php:608
1944
  #: classes/gateways/class.pmprogateway_stripe.php:1497
 
1945
  msgid "per"
1946
  msgstr ""
1947
 
@@ -2157,6 +2172,8 @@ msgstr ""
2157
  #: pages/cancel.php:96
2158
  #: shortcodes/pmpro_account.php:106
2159
  #: adminpages/orders.php:968
 
 
2160
  msgid "Cancel"
2161
  msgstr ""
2162
 
@@ -2835,6 +2852,7 @@ msgstr "לדוגמא פייפאל אקספרס, פייפאל סטנדרטי או
2835
  #: adminpages/orders.php:679
2836
  #: classes/gateways/class.pmprogateway_stripe.php:1284
2837
  #: classes/gateways/class.pmprogateway_stripe.php:1303
 
2838
  msgid "Card Type"
2839
  msgstr ""
2840
 
@@ -2915,6 +2933,7 @@ msgstr "תקף עד שנת"
2915
  #: adminpages/dashboard.php:294
2916
  #: adminpages/orders.php:742
2917
  #: adminpages/orders.php:1348
 
2918
  msgid "Status"
2919
  msgstr ""
2920
 
@@ -4346,6 +4365,7 @@ msgstr ""
4346
  #: classes/class.pmproemail.php:769
4347
  #: classes/class.pmproemail.php:771
4348
  #: classes/gateways/class.pmprogateway_stripe.php:1333
 
4349
  msgid "Discount Code"
4350
  msgstr ""
4351
 
@@ -4803,6 +4823,7 @@ msgstr ""
4803
  #: pages/checkout.php:366
4804
  #: classes/gateways/class.pmprogateway_stripe.php:1263
4805
  #: classes/gateways/class.pmprogateway_stripe.php:1282
 
4806
  msgid "Payment Information"
4807
  msgstr ""
4808
 
@@ -4827,6 +4848,7 @@ msgstr ""
4827
  #: pages/checkout.php:367
4828
  #: classes/gateways/class.pmprogateway_stripe.php:1264
4829
  #: classes/gateways/class.pmprogateway_stripe.php:1283
 
4830
  #, php-format
4831
  msgid "We Accept %s"
4832
  msgstr ""
@@ -4857,6 +4879,7 @@ msgstr ""
4857
  #: pages/checkout.php:389
4858
  #: classes/gateways/class.pmprogateway_stripe.php:1297
4859
  #: classes/gateways/class.pmprogateway_stripe.php:1316
 
4860
  msgid "Card Number"
4861
  msgstr "מספר כרטיס"
4862
 
@@ -4938,6 +4961,7 @@ msgstr "איפה זה?"
4938
  #: pages/checkout.php:432
4939
  #: classes/gateways/class.pmprogateway_stripe.php:1319
4940
  #: classes/gateways/class.pmprogateway_stripe.php:1338
 
4941
  msgid "Apply"
4942
  msgstr ""
4943
 
@@ -5190,6 +5214,7 @@ msgstr ""
5190
  #: classes/gateways/class.pmprogateway_paypal.php:132
5191
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
5192
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
 
5193
  msgid "PayPal Settings"
5194
  msgstr "הגדרות פייפאל"
5195
 
@@ -5211,6 +5236,7 @@ msgstr ""
5211
  #: classes/gateways/class.pmprogateway_paypal.php:153
5212
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
5213
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
 
5214
  msgid "Gateway Account Email"
5215
  msgstr ""
5216
 
@@ -5230,6 +5256,7 @@ msgstr ""
5230
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
5231
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
5232
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
 
5233
  msgid "API Username"
5234
  msgstr ""
5235
 
@@ -5249,6 +5276,7 @@ msgstr ""
5249
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
5250
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
5251
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
 
5252
  msgid "API Password"
5253
  msgstr ""
5254
 
@@ -5262,6 +5290,7 @@ msgstr ""
5262
  #: classes/gateways/class.pmprogateway_paypal.php:177
5263
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
5264
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
 
5265
  msgid "API Signature"
5266
  msgstr ""
5267
 
@@ -5276,6 +5305,7 @@ msgstr ""
5276
  #: classes/gateways/class.pmprogateway_paypal.php:196
5277
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
5278
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
 
5279
  msgid "IPN Handler URL"
5280
  msgstr ""
5281
 
@@ -5301,6 +5331,7 @@ msgstr ""
5301
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
5302
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
5303
  #: pages/checkout.php:218
 
5304
  msgid "Check Out with PayPal"
5305
  msgstr "שלם עם פייפאל"
5306
 
@@ -5320,6 +5351,7 @@ msgstr "שלם עם פייפאל"
5320
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
5321
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5322
  #: pages/checkout.php:526
 
5323
  msgid "Submit and Check Out"
5324
  msgstr "שלח ושלם"
5325
 
@@ -5343,6 +5375,7 @@ msgstr "שלח ושלם"
5343
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5344
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
5345
  #: pages/checkout.php:526
 
5346
  msgid "Submit and Confirm"
5347
  msgstr ""
5348
 
@@ -5364,6 +5397,7 @@ msgstr ""
5364
  #: classes/gateways/class.pmprogateway_paypal.php:716
5365
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
5366
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
 
5367
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
5368
  msgstr "אנא צור עימנו קשר ונעזור לך לבטל את התשלום."
5369
 
@@ -5378,6 +5412,7 @@ msgstr "אנא צור עימנו קשר ונעזור לך לבטל את התשל
5378
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
5379
  #: paid-memberships-pro.php:160
5380
  #: paid-memberships-pro.php:162
 
5381
  msgid "PayPal Express"
5382
  msgstr "פייפאל אקספרס"
5383
 
@@ -5389,6 +5424,7 @@ msgstr "פייפאל אקספרס"
5389
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
5390
  #: classes/gateways/class.pmprogateway_paypal.php:199
5391
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
 
5392
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
5393
  msgstr ""
5394
 
@@ -5410,6 +5446,8 @@ msgstr ""
5410
  #: preheaders/checkout.php:823
5411
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
5412
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
 
 
5413
  msgid "The PayPal Token was lost."
5414
  msgstr "האות מפייפאל אבד."
5415
 
@@ -5449,6 +5487,7 @@ msgstr ""
5449
  #: classes/gateways/class.pmprogateway_stripe.php:252
5450
  #: paid-memberships-pro.php:159
5451
  #: paid-memberships-pro.php:161
 
5452
  msgid "Stripe"
5453
  msgstr ""
5454
 
@@ -5469,6 +5508,7 @@ msgstr ""
5469
  #: classes/gateways/class.pmprogateway_stripe.php:539
5470
  #: classes/gateways/class.pmprogateway_stripe.php:551
5471
  #: classes/gateways/class.pmprogateway_stripe.php:570
 
5472
  msgid "Secret Key"
5473
  msgstr ""
5474
 
@@ -5482,6 +5522,7 @@ msgstr ""
5482
  #: classes/gateways/class.pmprogateway_stripe.php:523
5483
  #: classes/gateways/class.pmprogateway_stripe.php:535
5484
  #: classes/gateways/class.pmprogateway_stripe.php:554
 
5485
  msgid "Publishable Key"
5486
  msgstr ""
5487
 
@@ -5495,6 +5536,7 @@ msgstr ""
5495
  #: classes/gateways/class.pmprogateway_stripe.php:598
5496
  #: classes/gateways/class.pmprogateway_stripe.php:610
5497
  #: classes/gateways/class.pmprogateway_stripe.php:629
 
5498
  msgid "Show Billing Address Fields"
5499
  msgstr "הצג שדות פרטי חיוב"
5500
 
@@ -5507,6 +5549,7 @@ msgstr "הצג שדות פרטי חיוב"
5507
  #: classes/gateways/class.pmprogateway_stripe.php:607
5508
  #: classes/gateways/class.pmprogateway_stripe.php:619
5509
  #: classes/gateways/class.pmprogateway_stripe.php:638
 
5510
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
5511
  msgstr ""
5512
 
@@ -5529,6 +5572,7 @@ msgstr ""
5529
  #: classes/gateways/class.pmprogateway_stripe.php:1379
5530
  #: classes/gateways/class.pmprogateway_stripe.php:1391
5531
  #: classes/gateways/class.pmprogateway_stripe.php:1410
 
5532
  msgid "Subscription Updates"
5533
  msgstr ""
5534
 
@@ -5540,6 +5584,7 @@ msgstr ""
5540
  #: classes/gateways/class.pmprogateway_stripe.php:1383
5541
  #: classes/gateways/class.pmprogateway_stripe.php:1395
5542
  #: classes/gateways/class.pmprogateway_stripe.php:1414
 
5543
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
5544
  msgstr ""
5545
 
@@ -5551,6 +5596,7 @@ msgstr ""
5551
  #: classes/gateways/class.pmprogateway_stripe.php:1385
5552
  #: classes/gateways/class.pmprogateway_stripe.php:1397
5553
  #: classes/gateways/class.pmprogateway_stripe.php:1416
 
5554
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
5555
  msgstr ""
5556
 
@@ -5569,6 +5615,7 @@ msgstr ""
5569
  #: pages/billing.php:425
5570
  #: classes/gateways/class.pmprogateway_stripe.php:1403
5571
  #: classes/gateways/class.pmprogateway_stripe.php:1422
 
5572
  msgid "Update"
5573
  msgstr ""
5574
 
@@ -5580,6 +5627,7 @@ msgstr ""
5580
  #: classes/gateways/class.pmprogateway_stripe.php:2480
5581
  #: classes/gateways/class.pmprogateway_stripe.php:2492
5582
  #: classes/gateways/class.pmprogateway_stripe.php:2514
 
5583
  msgid "Could not cancel the old subscription. Updates have not been processed."
5584
  msgstr ""
5585
 
@@ -5605,6 +5653,9 @@ msgstr ""
5605
  #: classes/gateways/class.pmprogateway_stripe.php:2127
5606
  #: classes/gateways/class.pmprogateway_stripe.php:2132
5607
  #: classes/gateways/class.pmprogateway_stripe.php:2137
 
 
 
5608
  msgid "Error creating customer record with Stripe:"
5609
  msgstr ""
5610
 
@@ -5617,6 +5668,8 @@ msgstr ""
5617
  #: classes/gateways/class.pmprogateway_stripe.php:2182
5618
  #: classes/gateways/class.pmprogateway_stripe.php:2196
5619
  #: classes/gateways/class.pmprogateway_stripe.php:2201
 
 
5620
  msgid "Error getting subscription with Stripe:"
5621
  msgstr ""
5622
 
@@ -5647,6 +5700,8 @@ msgstr ""
5647
  #: classes/gateways/class.pmprogateway_stripe.php:2356
5648
  #: classes/gateways/class.pmprogateway_stripe.php:2373
5649
  #: classes/gateways/class.pmprogateway_stripe.php:2378
 
 
5650
  msgid "Error creating plan with Stripe:"
5651
  msgstr ""
5652
 
@@ -5672,6 +5727,8 @@ msgstr ""
5672
  #: classes/gateways/class.pmprogateway_stripe.php:2401
5673
  #: classes/gateways/class.pmprogateway_stripe.php:2409
5674
  #: classes/gateways/class.pmprogateway_stripe.php:2423
 
 
5675
  msgid "Error subscribing customer to plan with Stripe:"
5676
  msgstr ""
5677
 
@@ -5691,6 +5748,7 @@ msgstr ""
5691
  #: classes/gateways/class.pmprogateway_stripe.php:2632
5692
  #: classes/gateways/class.pmprogateway_stripe.php:2644
5693
  #: classes/gateways/class.pmprogateway_stripe.php:2666
 
5694
  msgid "Could not cancel old subscription."
5695
  msgstr ""
5696
 
@@ -5707,6 +5765,7 @@ msgstr ""
5707
  #: classes/gateways/class.pmprogateway_stripe.php:2648
5708
  #: classes/gateways/class.pmprogateway_stripe.php:2660
5709
  #: classes/gateways/class.pmprogateway_stripe.php:2682
 
5710
  msgid "Could not find the customer."
5711
  msgstr ""
5712
 
@@ -6776,6 +6835,7 @@ msgstr "‎הרישיון שלך תקף‫.‬"
6776
 
6777
  #: includes/license.php:81
6778
  #: adminpages/license.php:43
 
6779
  msgid "Paid Memberships Pro Support License"
6780
  msgstr ""
6781
 
@@ -6795,6 +6855,7 @@ msgstr ""
6795
  #: adminpages/dashboard.php:174
6796
  #: adminpages/license.php:49
6797
  #: adminpages/dashboard.php:178
 
6798
  msgid "Your license is invalid or expired."
6799
  msgstr ""
6800
 
@@ -6805,6 +6866,7 @@ msgstr ""
6805
 
6806
  #: includes/license.php:100
6807
  #: adminpages/license.php:59
 
6808
  msgid "Enter license key here..."
6809
  msgstr ""
6810
 
@@ -7010,6 +7072,7 @@ msgstr "‎התנתק"
7010
  #: adminpages/dashboard.php:224
7011
  #: adminpages/dashboard.php:292
7012
  #: adminpages/orders.php:1343
 
7013
  msgid "Level"
7014
  msgstr "‎דרגה"
7015
 
@@ -7070,6 +7133,7 @@ msgstr ""
7070
  #: includes/profile.php:747
7071
  #: pages/billing.php:164
7072
  #: pages/checkout.php:234
 
7073
  msgid "First Name"
7074
  msgstr "‎שם פרטי"
7075
 
@@ -7087,6 +7151,7 @@ msgstr "‎שם פרטי"
7087
  #: includes/profile.php:748
7088
  #: pages/billing.php:168
7089
  #: pages/checkout.php:238
 
7090
  msgid "Last Name"
7091
  msgstr "‎שם משפחה"
7092
 
@@ -8172,6 +8237,7 @@ msgstr "הקוד ‪%s תקף על ההזמנה שלך."
8172
  #: services/authnet-silent-post.php:138
8173
  #: services/authnet-silent-post.php:141
8174
  #: services/authnet-silent-post.php:173
 
8175
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
8176
  msgstr "‏<p>התשלום עובר בדיקה</p><p>פרטי תשלום מ: Authorize.net"
8177
 
@@ -8239,6 +8305,8 @@ msgstr "ערוך פרופיל"
8239
  #: includes/profile.php:872
8240
  #: includes/profile.php:909
8241
  #: shortcodes/pmpro_account.php:195
 
 
8242
  msgid "Change Password"
8243
  msgstr "\\ שנה סיסמה"
8244
 
@@ -8334,6 +8402,7 @@ msgstr ""
8334
  #: adminpages/advancedsettings.php:316
8335
  #: includes/privacy.php:175
8336
  #: includes/profile.php:509
 
8337
  msgid "Never"
8338
  msgstr ""
8339
 
@@ -8671,6 +8740,7 @@ msgstr ""
8671
 
8672
  #: adminpages/admin_header.php:152
8673
  #: classes/gateways/class.pmprogateway_stripe.php:76
 
8674
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
8675
  msgstr ""
8676
 
@@ -8943,6 +9013,7 @@ msgstr ""
8943
  #: adminpages/dashboard.php:177
8944
  #: adminpages/license.php:51
8945
  #: adminpages/dashboard.php:181
 
8946
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
8947
  msgstr ""
8948
 
@@ -9379,18 +9450,23 @@ msgid "Discount Code Applied"
9379
  msgstr ""
9380
 
9381
  #: adminpages/license.php:47
 
9382
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
9383
  msgstr ""
9384
 
9385
  #: adminpages/license.php:49
 
 
9386
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
9387
  msgstr ""
9388
 
9389
  #: adminpages/license.php:61
 
9390
  msgid "Validate Key"
9391
  msgstr ""
9392
 
9393
  #: adminpages/license.php:95
 
9394
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
9395
  msgstr ""
9396
 
@@ -9905,6 +9981,7 @@ msgstr ""
9905
 
9906
  #: classes/gateways/class.pmprogateway_braintree.php:87
9907
  #: classes/gateways/class.pmprogateway_stripe.php:91
 
9908
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
9909
  msgstr ""
9910
 
@@ -10202,6 +10279,7 @@ msgid "Your order has been refused."
10202
  msgstr ""
10203
 
10204
  #: classes/gateways/class.pmprogateway_cybersource.php:922
 
10205
  msgid "Unknown error."
10206
  msgstr ""
10207
 
@@ -10216,23 +10294,28 @@ msgstr ""
10216
  #: classes/gateways/class.pmprogateway_paypal.php:146
10217
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
10218
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
 
10219
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
10220
  msgstr ""
10221
 
10222
  #: classes/gateways/class.pmprogateway_paypal.php:185
10223
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
 
10224
  msgid "Confirmation Step"
10225
  msgstr ""
10226
 
10227
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
 
10228
  msgid "Checkout was already processed."
10229
  msgstr ""
10230
 
10231
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
 
10232
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
10233
  msgstr ""
10234
 
10235
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
 
10236
  msgid "Error creating plan with PayPal."
10237
  msgstr ""
10238
 
@@ -10244,11 +10327,14 @@ msgstr ""
10244
  #: classes/gateways/class.pmprogateway_stripe.php:436
10245
  #: classes/gateways/class.pmprogateway_stripe.php:354
10246
  #: classes/gateways/class.pmprogateway_stripe.php:444
 
 
10247
  msgid "Stripe Connect Settings"
10248
  msgstr ""
10249
 
10250
  #: classes/gateways/class.pmprogateway_stripe.php:352
10251
  #: classes/gateways/class.pmprogateway_stripe.php:356
 
10252
  msgid "Live Mode:"
10253
  msgstr ""
10254
 
@@ -10256,6 +10342,8 @@ msgstr ""
10256
  #: classes/gateways/class.pmprogateway_stripe.php:440
10257
  #: classes/gateways/class.pmprogateway_stripe.php:358
10258
  #: classes/gateways/class.pmprogateway_stripe.php:448
 
 
10259
  msgid "Connected"
10260
  msgstr ""
10261
 
@@ -10263,6 +10351,8 @@ msgstr ""
10263
  #: classes/gateways/class.pmprogateway_stripe.php:442
10264
  #: classes/gateways/class.pmprogateway_stripe.php:362
10265
  #: classes/gateways/class.pmprogateway_stripe.php:452
 
 
10266
  msgid "Not Connected"
10267
  msgstr ""
10268
 
@@ -10270,11 +10360,14 @@ msgstr ""
10270
  #: classes/gateways/class.pmprogateway_stripe.php:449
10271
  #: classes/gateways/class.pmprogateway_stripe.php:369
10272
  #: classes/gateways/class.pmprogateway_stripe.php:459
 
 
10273
  msgid "Your site is using legacy API keys to authenticate with Stripe."
10274
  msgstr ""
10275
 
10276
  #: classes/gateways/class.pmprogateway_stripe.php:364
10277
  #: classes/gateways/class.pmprogateway_stripe.php:371
 
10278
  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."
10279
  msgstr ""
10280
 
@@ -10282,6 +10375,8 @@ msgstr ""
10282
  #: classes/gateways/class.pmprogateway_stripe.php:458
10283
  #: classes/gateways/class.pmprogateway_stripe.php:380
10284
  #: classes/gateways/class.pmprogateway_stripe.php:470
 
 
10285
  msgid "Stripe Connection:"
10286
  msgstr ""
10287
 
@@ -10289,11 +10384,14 @@ msgstr ""
10289
  #: classes/gateways/class.pmprogateway_stripe.php:482
10290
  #: classes/gateways/class.pmprogateway_stripe.php:396
10291
  #: classes/gateways/class.pmprogateway_stripe.php:494
 
 
10292
  msgid "Disconnect From Stripe"
10293
  msgstr ""
10294
 
10295
  #: classes/gateways/class.pmprogateway_stripe.php:389
10296
  #: classes/gateways/class.pmprogateway_stripe.php:397
 
10297
  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."
10298
  msgstr ""
10299
 
@@ -10301,16 +10399,20 @@ msgstr ""
10301
  #: classes/gateways/class.pmprogateway_stripe.php:496
10302
  #: classes/gateways/class.pmprogateway_stripe.php:409
10303
  #: classes/gateways/class.pmprogateway_stripe.php:508
 
 
10304
  msgid "Connect with Stripe"
10305
  msgstr ""
10306
 
10307
  #: classes/gateways/class.pmprogateway_stripe.php:408
10308
  #: classes/gateways/class.pmprogateway_stripe.php:416
 
10309
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
10310
  msgstr ""
10311
 
10312
  #: classes/gateways/class.pmprogateway_stripe.php:411
10313
  #: classes/gateways/class.pmprogateway_stripe.php:419
 
10314
  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."
10315
  msgstr ""
10316
 
@@ -10321,6 +10423,9 @@ msgstr ""
10321
  #: classes/gateways/class.pmprogateway_stripe.php:519
10322
  #: classes/gateways/class.pmprogateway_stripe.php:559
10323
  #: classes/gateways/class.pmprogateway_stripe.php:578
 
 
 
10324
  msgid "Webhook"
10325
  msgstr ""
10326
 
@@ -10331,32 +10436,40 @@ msgstr ""
10331
  #: classes/gateways/class.pmprogateway_stripe.php:523
10332
  #: classes/gateways/class.pmprogateway_stripe.php:594
10333
  #: classes/gateways/class.pmprogateway_stripe.php:613
 
 
 
10334
  msgid "Webhook URL"
10335
  msgstr ""
10336
 
10337
  #: classes/gateways/class.pmprogateway_stripe.php:438
10338
  #: classes/gateways/class.pmprogateway_stripe.php:446
 
10339
  msgid "Test Mode:"
10340
  msgstr ""
10341
 
10342
  #: classes/gateways/class.pmprogateway_stripe.php:450
10343
  #: classes/gateways/class.pmprogateway_stripe.php:461
 
10344
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
10345
  msgstr ""
10346
 
10347
  #: classes/gateways/class.pmprogateway_stripe.php:483
10348
  #: classes/gateways/class.pmprogateway_stripe.php:495
 
10349
  msgid "This will disconnect your site from Stripe in test mode only."
10350
  msgstr ""
10351
 
10352
  #: classes/gateways/class.pmprogateway_stripe.php:518
10353
  #: classes/gateways/class.pmprogateway_stripe.php:530
 
10354
  msgid "Stripe API Settings (Legacy)"
10355
  msgstr ""
10356
 
10357
  #: classes/gateways/class.pmprogateway_stripe.php:531
10358
  #: classes/gateways/class.pmprogateway_stripe.php:543
10359
  #: classes/gateways/class.pmprogateway_stripe.php:562
 
10360
  msgid "Your Publishable Key appears incorrect."
10361
  msgstr ""
10362
 
@@ -10366,24 +10479,29 @@ msgstr ""
10366
  #: classes/gateways/class.pmprogateway_stripe.php:587
10367
  #: classes/gateways/class.pmprogateway_stripe.php:582
10368
  #: classes/gateways/class.pmprogateway_stripe.php:606
 
 
10369
  msgid "Create Webhook"
10370
  msgstr ""
10371
 
10372
  #: classes/gateways/class.pmprogateway_stripe.php:557
10373
  #: classes/gateways/class.pmprogateway_stripe.php:569
10374
  #: classes/gateways/class.pmprogateway_stripe.php:588
 
10375
  msgid "A webhook is set up in Stripe, but it is disabled."
10376
  msgstr ""
10377
 
10378
  #: classes/gateways/class.pmprogateway_stripe.php:564
10379
  #: classes/gateways/class.pmprogateway_stripe.php:576
10380
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
10381
  msgid "A webhook is set up in Stripe, but it is using an old API version."
10382
  msgstr ""
10383
 
10384
  #: classes/gateways/class.pmprogateway_stripe.php:564
10385
  #: classes/gateways/class.pmprogateway_stripe.php:576
10386
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
10387
  msgid "Rebuild Webhook"
10388
  msgstr ""
10389
 
@@ -10396,12 +10514,16 @@ msgstr ""
10396
  #: classes/gateways/class.pmprogateway_stripe.php:601
10397
  #: classes/gateways/class.pmprogateway_stripe.php:741
10398
  #: classes/gateways/class.pmprogateway_stripe.php:857
 
 
 
10399
  msgid "Your webhook is enabled."
10400
  msgstr ""
10401
 
10402
  #: classes/gateways/class.pmprogateway_stripe.php:570
10403
  #: classes/gateways/class.pmprogateway_stripe.php:582
10404
  #: classes/gateways/class.pmprogateway_stripe.php:601
 
10405
  msgid "Disable Webhook"
10406
  msgstr ""
10407
 
@@ -10417,66 +10539,80 @@ msgstr ""
10417
  #: classes/gateways/class.pmprogateway_stripe.php:768
10418
  #: classes/gateways/class.pmprogateway_stripe.php:785
10419
  #: classes/gateways/class.pmprogateway_stripe.php:819
 
 
 
 
10420
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
10421
  msgstr ""
10422
 
10423
  #: classes/gateways/class.pmprogateway_stripe.php:589
10424
  #: classes/gateways/class.pmprogateway_stripe.php:601
10425
  #: classes/gateways/class.pmprogateway_stripe.php:620
 
10426
  msgid "Other Stripe Settings"
10427
  msgstr ""
10428
 
10429
  #: classes/gateways/class.pmprogateway_stripe.php:593
10430
  #: classes/gateways/class.pmprogateway_stripe.php:605
10431
  #: classes/gateways/class.pmprogateway_stripe.php:624
 
10432
  msgid "Stripe API Version"
10433
  msgstr ""
10434
 
10435
  #: classes/gateways/class.pmprogateway_stripe.php:612
10436
  #: classes/gateways/class.pmprogateway_stripe.php:624
10437
  #: classes/gateways/class.pmprogateway_stripe.php:643
 
10438
  msgid "Enable Payment Request Button"
10439
  msgstr ""
10440
 
10441
  #: classes/gateways/class.pmprogateway_stripe.php:630
10442
  #: classes/gateways/class.pmprogateway_stripe.php:642
10443
  #: classes/gateways/class.pmprogateway_stripe.php:661
 
10444
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
10445
  msgstr ""
10446
 
10447
  #: classes/gateways/class.pmprogateway_stripe.php:643
10448
  #: classes/gateways/class.pmprogateway_stripe.php:655
10449
  #: classes/gateways/class.pmprogateway_stripe.php:674
 
10450
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
10451
  msgstr ""
10452
 
10453
  #: classes/gateways/class.pmprogateway_stripe.php:645
10454
  #: classes/gateways/class.pmprogateway_stripe.php:657
10455
  #: classes/gateways/class.pmprogateway_stripe.php:676
 
10456
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
10457
  msgstr ""
10458
 
10459
  #: classes/gateways/class.pmprogateway_stripe.php:647
10460
  #: classes/gateways/class.pmprogateway_stripe.php:659
10461
  #: classes/gateways/class.pmprogateway_stripe.php:678
 
10462
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
10463
  msgstr ""
10464
 
10465
  #: classes/gateways/class.pmprogateway_stripe.php:649
10466
  #: classes/gateways/class.pmprogateway_stripe.php:661
10467
  #: classes/gateways/class.pmprogateway_stripe.php:680
 
10468
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
10469
  msgstr ""
10470
 
10471
  #: classes/gateways/class.pmprogateway_stripe.php:674
10472
  #: classes/gateways/class.pmprogateway_stripe.php:686
10473
  #: classes/gateways/class.pmprogateway_stripe.php:705
 
10474
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
10475
  msgstr ""
10476
 
10477
  #: classes/gateways/class.pmprogateway_stripe.php:695
10478
  #: classes/gateways/class.pmprogateway_stripe.php:707
10479
  #: classes/gateways/class.pmprogateway_stripe.php:726
 
10480
  msgid "Webhook creation failed. You might already have a webhook set up."
10481
  msgstr ""
10482
 
@@ -10486,36 +10622,43 @@ msgstr ""
10486
  #: classes/gateways/class.pmprogateway_stripe.php:847
10487
  #: classes/gateways/class.pmprogateway_stripe.php:792
10488
  #: classes/gateways/class.pmprogateway_stripe.php:866
 
 
10489
  msgid "There was an error deleting the webhook."
10490
  msgstr ""
10491
 
10492
  #: classes/gateways/class.pmprogateway_stripe.php:811
10493
  #: classes/gateways/class.pmprogateway_stripe.php:823
10494
  #: classes/gateways/class.pmprogateway_stripe.php:842
 
10495
  msgid "Webhook creation failed. Please refresh and try again."
10496
  msgstr ""
10497
 
10498
  #: classes/gateways/class.pmprogateway_stripe.php:867
10499
  #: classes/gateways/class.pmprogateway_stripe.php:879
10500
  #: classes/gateways/class.pmprogateway_stripe.php:898
 
10501
  msgid "Verification steps confirmed. Your payment is processing."
10502
  msgstr ""
10503
 
10504
  #: classes/gateways/class.pmprogateway_stripe.php:1262
10505
  #: classes/gateways/class.pmprogateway_stripe.php:1274
10506
  #: classes/gateways/class.pmprogateway_stripe.php:1293
 
10507
  msgid "Pay with Credit Card"
10508
  msgstr ""
10509
 
10510
  #: classes/gateways/class.pmprogateway_stripe.php:1296
10511
  #: classes/gateways/class.pmprogateway_stripe.php:1308
10512
  #: classes/gateways/class.pmprogateway_stripe.php:1327
 
10513
  msgid "CVC"
10514
  msgstr ""
10515
 
10516
  #: classes/gateways/class.pmprogateway_stripe.php:1374
10517
  #: classes/gateways/class.pmprogateway_stripe.php:1386
10518
  #: classes/gateways/class.pmprogateway_stripe.php:1405
 
10519
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
10520
  msgstr ""
10521
 
@@ -10531,6 +10674,10 @@ msgstr ""
10531
  #: classes/gateways/class.pmprogateway_stripe.php:2016
10532
  #: classes/gateways/class.pmprogateway_stripe.php:2029
10533
  #: classes/gateways/class.pmprogateway_stripe.php:2033
 
 
 
 
10534
  msgid "Error: %s"
10535
  msgstr ""
10536
 
@@ -10540,30 +10687,35 @@ msgstr ""
10540
  #: classes/gateways/class.pmprogateway_stripe.php:2834
10541
  #: classes/gateways/class.pmprogateway_stripe.php:2850
10542
  #: classes/gateways/class.pmprogateway_stripe.php:2856
 
10543
  msgid "Error: "
10544
  msgstr ""
10545
 
10546
  #: classes/gateways/class.pmprogateway_stripe.php:2836
10547
  #: classes/gateways/class.pmprogateway_stripe.php:2848
10548
  #: classes/gateways/class.pmprogateway_stripe.php:2870
 
10549
  msgid "Error: Unkown error while refunding charge #%s"
10550
  msgstr ""
10551
 
10552
  #: classes/gateways/class.pmprogateway_stripe.php:3330
10553
  #: classes/gateways/class.pmprogateway_stripe.php:3342
10554
  #: classes/gateways/class.pmprogateway_stripe.php:3364
 
10555
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
10556
  msgstr ""
10557
 
10558
  #: classes/gateways/class.pmprogateway_stripe.php:3347
10559
  #: classes/gateways/class.pmprogateway_stripe.php:3359
10560
  #: classes/gateways/class.pmprogateway_stripe.php:3381
 
10561
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
10562
  msgstr ""
10563
 
10564
  #: classes/gateways/class.pmprogateway_stripe.php:3533
10565
  #: classes/gateways/class.pmprogateway_stripe.php:3545
10566
  #: classes/gateways/class.pmprogateway_stripe.php:3567
 
10567
  msgid "Invalid response from the Stripe Connect server."
10568
  msgstr ""
10569
 
@@ -10571,6 +10723,7 @@ msgstr ""
10571
  #: classes/gateways/class.pmprogateway_stripe.php:3561
10572
  #: classes/gateways/class.pmprogateway_stripe.php:3573
10573
  #: classes/gateways/class.pmprogateway_stripe.php:3595
 
10574
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
10575
  msgstr ""
10576
 
@@ -10578,30 +10731,35 @@ msgstr ""
10578
  #: classes/gateways/class.pmprogateway_stripe.php:3597
10579
  #: classes/gateways/class.pmprogateway_stripe.php:3609
10580
  #: classes/gateways/class.pmprogateway_stripe.php:3631
 
10581
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
10582
  msgstr ""
10583
 
10584
  #: classes/gateways/class.pmprogateway_stripe.php:3768
10585
  #: classes/gateways/class.pmprogateway_stripe.php:3780
10586
  #: classes/gateways/class.pmprogateway_stripe.php:3802
 
10587
  msgid "Last webhook received at"
10588
  msgstr ""
10589
 
10590
  #: classes/gateways/class.pmprogateway_stripe.php:3770
10591
  #: classes/gateways/class.pmprogateway_stripe.php:3782
10592
  #: classes/gateways/class.pmprogateway_stripe.php:3804
 
10593
  msgid "No webhooks have been received."
10594
  msgstr ""
10595
 
10596
  #: classes/gateways/class.pmprogateway_stripe.php:3774
10597
  #: classes/gateways/class.pmprogateway_stripe.php:3786
10598
  #: classes/gateways/class.pmprogateway_stripe.php:3808
 
10599
  msgid "Your webhook may not be working correctly."
10600
  msgstr ""
10601
 
10602
  #: classes/gateways/class.pmprogateway_stripe.php:3776
10603
  #: classes/gateways/class.pmprogateway_stripe.php:3788
10604
  #: classes/gateways/class.pmprogateway_stripe.php:3810
 
10605
  msgid "Click here for info on setting up your webhook with Stripe."
10606
  msgstr ""
10607
 
@@ -12706,11 +12864,13 @@ msgstr ""
12706
 
12707
  #: includes/login.php:429
12708
  #: includes/profile.php:843
 
12709
  msgid "New passwords do not match."
12710
  msgstr ""
12711
 
12712
  #: includes/login.php:433
12713
  #: includes/profile.php:839
 
12714
  msgid "Please complete all fields."
12715
  msgstr ""
12716
 
@@ -12740,17 +12900,21 @@ msgstr ""
12740
 
12741
  #: includes/login.php:688
12742
  #: includes/profile.php:891
 
12743
  msgid "New Password"
12744
  msgstr ""
12745
 
12746
  #: includes/login.php:690
12747
  #: includes/profile.php:894
12748
  #: includes/scripts.php:86
 
 
12749
  msgid "Strength Indicator"
12750
  msgstr ""
12751
 
12752
  #: includes/login.php:694
12753
  #: includes/profile.php:898
 
12754
  msgid "Confirm New Password"
12755
  msgstr ""
12756
 
@@ -12847,21 +13011,25 @@ msgstr ""
12847
  #: includes/privacy.php:182
12848
  #: includes/profile.php:425
12849
  #: includes/profile.php:493
 
12850
  msgid "Level ID"
12851
  msgstr ""
12852
 
12853
  #: includes/privacy.php:190
12854
  #: includes/profile.php:496
 
12855
  msgid "Date Modified"
12856
  msgstr ""
12857
 
12858
  #: includes/privacy.php:194
12859
  #: includes/profile.php:497
 
12860
  msgid "End Date"
12861
  msgstr ""
12862
 
12863
  #: includes/privacy.php:198
12864
  #: includes/profile.php:498
 
12865
  msgid "Level Cost"
12866
  msgstr ""
12867
 
@@ -12960,68 +13128,85 @@ msgid "Membership Levels History"
12960
  msgstr ""
12961
 
12962
  #: includes/profile.php:485
 
12963
  msgid "No membership orders found."
12964
  msgstr ""
12965
 
12966
  #: includes/profile.php:537
 
12967
  msgid "No membership history found."
12968
  msgstr ""
12969
 
12970
  #: includes/profile.php:644
 
12971
  msgid "Log in to edit your profile."
12972
  msgstr ""
12973
 
12974
  #: includes/profile.php:679
 
12975
  msgid "Please enter a display name."
12976
  msgstr ""
12977
 
12978
  #: includes/profile.php:689
 
12979
  msgid "Please enter an email address."
12980
  msgstr ""
12981
 
12982
  #: includes/profile.php:691
 
12983
  msgid "The email address isn&#8217;t correct."
12984
  msgstr ""
12985
 
12986
  #: includes/profile.php:695
 
12987
  msgid "This email is already registered, please choose another one."
12988
  msgstr ""
12989
 
12990
  #: includes/profile.php:722
 
12991
  msgid "Your profile has been updated."
12992
  msgstr ""
12993
 
12994
  #: includes/profile.php:749
 
12995
  msgid "Display name publicly as"
12996
  msgstr ""
12997
 
12998
  #: includes/profile.php:762
 
12999
  msgid "Site administrators must use the WordPress dashboard to update their email address."
13000
  msgstr ""
13001
 
13002
  #: includes/profile.php:785
 
13003
  msgid "Update Profile"
13004
  msgstr ""
13005
 
13006
  #: includes/profile.php:841
 
13007
  msgid "Please enter your current password."
13008
  msgstr ""
13009
 
13010
  #: includes/profile.php:845
 
13011
  msgid "Your current password is incorrect."
13012
  msgstr ""
13013
 
13014
  #: includes/profile.php:856
 
13015
  msgid "Your password has been updated."
13016
  msgstr ""
13017
 
13018
  #: includes/profile.php:886
 
13019
  msgid "Current Password"
13020
  msgstr ""
13021
 
13022
  #: includes/profile.php:888
13023
  #: includes/profile.php:893
13024
  #: includes/profile.php:900
 
 
13025
  msgid "Required Field"
13026
  msgstr ""
13027
 
@@ -13118,10 +13303,12 @@ msgid "That email address is already in use. Please log in, or use a different e
13118
  msgstr ""
13119
 
13120
  #: services/braintree-webhook.php:425
 
13121
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
13122
  msgstr ""
13123
 
13124
  #: services/braintree-webhook.php:427
 
13125
  msgid "A member's Braintree subscription has expired at %s"
13126
  msgstr ""
13127
 
@@ -13440,16 +13627,22 @@ msgstr ""
13440
 
13441
  #: classes/gateways/class.pmprogateway_stripe.php:360
13442
  #: classes/gateways/class.pmprogateway_stripe.php:450
 
 
13443
  msgid "Connected with Legacy Keys"
13444
  msgstr ""
13445
 
13446
  #: classes/gateways/class.pmprogateway_stripe.php:370
13447
  #: classes/gateways/class.pmprogateway_stripe.php:460
 
 
13448
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
13449
  msgstr ""
13450
 
13451
  #: classes/gateways/class.pmprogateway_stripe.php:372
13452
  #: classes/gateways/class.pmprogateway_stripe.php:462
 
 
13453
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
13454
  msgstr ""
13455
 
@@ -13506,9 +13699,45 @@ msgid "missing"
13506
  msgstr ""
13507
 
13508
  #: classes/gateways/class.pmprogateway_stripe.php:533
 
13509
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
13510
  msgstr ""
13511
 
13512
  #: classes/gateways/class.pmprogateway_stripe.php:534
 
13513
  msgid "Click here to use the legacy API settings."
13514
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.3\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-10-11T14:00:42+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
261
  #: adminpages/orders.php:1544
262
  #: adminpages/orders.php:1554
263
  #: adminpages/orders.php:1553
264
+ #: includes/profile.php:520
265
+ #: includes/profile.php:521
266
+ #: includes/profile.php:522
267
  msgid "N/A"
268
  msgstr ""
269
 
447
  #: adminpages/orders.php:391
448
  #: adminpages/orders.php:1445
449
  #: adminpages/orders.php:1448
450
+ #: includes/profile.php:762
451
  msgid "Email"
452
  msgstr "‎אימייל"
453
 
636
  #: adminpages/advancedsettings.php:479
637
  #: classes/gateways/class.pmprogateway_stripe.php:634
638
  #: classes/gateways/class.pmprogateway_stripe.php:648
639
+ #: classes/gateways/class.pmprogateway_stripe.php:640
640
+ #: classes/gateways/class.pmprogateway_stripe.php:654
641
  msgid "No"
642
  msgstr ""
643
 
736
  #: adminpages/advancedsettings.php:397
737
  #: classes/gateways/class.pmprogateway_stripe.php:636
738
  #: classes/gateways/class.pmprogateway_stripe.php:650
739
+ #: classes/gateways/class.pmprogateway_stripe.php:642
740
+ #: classes/gateways/class.pmprogateway_stripe.php:656
741
  msgid "Yes"
742
  msgstr ""
743
 
1039
  #: includes/privacy.php:186
1040
  #: includes/profile.php:495
1041
  #: adminpages/discountcodes.php:489
1042
+ #: includes/profile.php:501
1043
  msgid "Start Date"
1044
  msgstr ""
1045
 
1075
  #: classes/gateways/class.pmprogateway_stripe.php:1301
1076
  #: adminpages/discountcodes.php:507
1077
  #: classes/gateways/class.pmprogateway_stripe.php:1320
1078
+ #: classes/gateways/class.pmprogateway_stripe.php:1326
1079
  msgid "Expiration Date"
1080
  msgstr "תוקף"
1081
 
1226
  #: adminpages/discountcodes.php:612
1227
  #: adminpages/discountcodes.php:699
1228
  #: classes/gateways/class.pmprogateway_stripe.php:1363
1229
+ #: classes/gateways/class.pmprogateway_stripe.php:1369
1230
  msgid "Day(s)"
1231
  msgstr ""
1232
 
1262
  #: adminpages/discountcodes.php:612
1263
  #: adminpages/discountcodes.php:699
1264
  #: classes/gateways/class.pmprogateway_stripe.php:1365
1265
+ #: classes/gateways/class.pmprogateway_stripe.php:1371
1266
  msgid "Month(s)"
1267
  msgstr ""
1268
 
1298
  #: adminpages/discountcodes.php:612
1299
  #: adminpages/discountcodes.php:699
1300
  #: classes/gateways/class.pmprogateway_stripe.php:1364
1301
+ #: classes/gateways/class.pmprogateway_stripe.php:1370
1302
  msgid "Week(s)"
1303
  msgstr ""
1304
 
1334
  #: adminpages/discountcodes.php:612
1335
  #: adminpages/discountcodes.php:699
1336
  #: classes/gateways/class.pmprogateway_stripe.php:1366
1337
+ #: classes/gateways/class.pmprogateway_stripe.php:1372
1338
  msgid "Year(s)"
1339
  msgstr ""
1340
 
1956
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1957
  #: adminpages/discountcodes.php:608
1958
  #: classes/gateways/class.pmprogateway_stripe.php:1497
1959
+ #: classes/gateways/class.pmprogateway_stripe.php:1503
1960
  msgid "per"
1961
  msgstr ""
1962
 
2172
  #: pages/cancel.php:96
2173
  #: shortcodes/pmpro_account.php:106
2174
  #: adminpages/orders.php:968
2175
+ #: includes/profile.php:798
2176
+ #: includes/profile.php:922
2177
  msgid "Cancel"
2178
  msgstr ""
2179
 
2852
  #: adminpages/orders.php:679
2853
  #: classes/gateways/class.pmprogateway_stripe.php:1284
2854
  #: classes/gateways/class.pmprogateway_stripe.php:1303
2855
+ #: classes/gateways/class.pmprogateway_stripe.php:1309
2856
  msgid "Card Type"
2857
  msgstr ""
2858
 
2933
  #: adminpages/dashboard.php:294
2934
  #: adminpages/orders.php:742
2935
  #: adminpages/orders.php:1348
2936
+ #: includes/profile.php:505
2937
  msgid "Status"
2938
  msgstr ""
2939
 
4365
  #: classes/class.pmproemail.php:769
4366
  #: classes/class.pmproemail.php:771
4367
  #: classes/gateways/class.pmprogateway_stripe.php:1333
4368
+ #: classes/gateways/class.pmprogateway_stripe.php:1339
4369
  msgid "Discount Code"
4370
  msgstr ""
4371
 
4823
  #: pages/checkout.php:366
4824
  #: classes/gateways/class.pmprogateway_stripe.php:1263
4825
  #: classes/gateways/class.pmprogateway_stripe.php:1282
4826
+ #: classes/gateways/class.pmprogateway_stripe.php:1288
4827
  msgid "Payment Information"
4828
  msgstr ""
4829
 
4848
  #: pages/checkout.php:367
4849
  #: classes/gateways/class.pmprogateway_stripe.php:1264
4850
  #: classes/gateways/class.pmprogateway_stripe.php:1283
4851
+ #: classes/gateways/class.pmprogateway_stripe.php:1289
4852
  #, php-format
4853
  msgid "We Accept %s"
4854
  msgstr ""
4879
  #: pages/checkout.php:389
4880
  #: classes/gateways/class.pmprogateway_stripe.php:1297
4881
  #: classes/gateways/class.pmprogateway_stripe.php:1316
4882
+ #: classes/gateways/class.pmprogateway_stripe.php:1322
4883
  msgid "Card Number"
4884
  msgstr "מספר כרטיס"
4885
 
4961
  #: pages/checkout.php:432
4962
  #: classes/gateways/class.pmprogateway_stripe.php:1319
4963
  #: classes/gateways/class.pmprogateway_stripe.php:1338
4964
+ #: classes/gateways/class.pmprogateway_stripe.php:1344
4965
  msgid "Apply"
4966
  msgstr ""
4967
 
5214
  #: classes/gateways/class.pmprogateway_paypal.php:132
5215
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
5216
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
5217
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:151
5218
  msgid "PayPal Settings"
5219
  msgstr "הגדרות פייפאל"
5220
 
5236
  #: classes/gateways/class.pmprogateway_paypal.php:153
5237
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
5238
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
5239
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:172
5240
  msgid "Gateway Account Email"
5241
  msgstr ""
5242
 
5256
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
5257
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
5258
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
5259
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:180
5260
  msgid "API Username"
5261
  msgstr ""
5262
 
5276
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
5277
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
5278
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
5279
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:188
5280
  msgid "API Password"
5281
  msgstr ""
5282
 
5290
  #: classes/gateways/class.pmprogateway_paypal.php:177
5291
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
5292
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
5293
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:196
5294
  msgid "API Signature"
5295
  msgstr ""
5296
 
5305
  #: classes/gateways/class.pmprogateway_paypal.php:196
5306
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
5307
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
5308
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:215
5309
  msgid "IPN Handler URL"
5310
  msgstr ""
5311
 
5331
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
5332
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
5333
  #: pages/checkout.php:218
5334
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:498
5335
  msgid "Check Out with PayPal"
5336
  msgstr "שלם עם פייפאל"
5337
 
5351
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
5352
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5353
  #: pages/checkout.php:526
5354
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
5355
  msgid "Submit and Check Out"
5356
  msgstr "שלח ושלם"
5357
 
5375
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5376
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
5377
  #: pages/checkout.php:526
5378
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
5379
  msgid "Submit and Confirm"
5380
  msgstr ""
5381
 
5397
  #: classes/gateways/class.pmprogateway_paypal.php:716
5398
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
5399
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
5400
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:841
5401
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
5402
  msgstr "אנא צור עימנו קשר ונעזור לך לבטל את התשלום."
5403
 
5412
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
5413
  #: paid-memberships-pro.php:160
5414
  #: paid-memberships-pro.php:162
5415
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:94
5416
  msgid "PayPal Express"
5417
  msgstr "פייפאל אקספרס"
5418
 
5424
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
5425
  #: classes/gateways/class.pmprogateway_paypal.php:199
5426
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
5427
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:218
5428
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
5429
  msgstr ""
5430
 
5446
  #: preheaders/checkout.php:823
5447
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
5448
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
5449
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:352
5450
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:411
5451
  msgid "The PayPal Token was lost."
5452
  msgstr "האות מפייפאל אבד."
5453
 
5487
  #: classes/gateways/class.pmprogateway_stripe.php:252
5488
  #: paid-memberships-pro.php:159
5489
  #: paid-memberships-pro.php:161
5490
+ #: classes/gateways/class.pmprogateway_stripe.php:258
5491
  msgid "Stripe"
5492
  msgstr ""
5493
 
5508
  #: classes/gateways/class.pmprogateway_stripe.php:539
5509
  #: classes/gateways/class.pmprogateway_stripe.php:551
5510
  #: classes/gateways/class.pmprogateway_stripe.php:570
5511
+ #: classes/gateways/class.pmprogateway_stripe.php:576
5512
  msgid "Secret Key"
5513
  msgstr ""
5514
 
5522
  #: classes/gateways/class.pmprogateway_stripe.php:523
5523
  #: classes/gateways/class.pmprogateway_stripe.php:535
5524
  #: classes/gateways/class.pmprogateway_stripe.php:554
5525
+ #: classes/gateways/class.pmprogateway_stripe.php:560
5526
  msgid "Publishable Key"
5527
  msgstr ""
5528
 
5536
  #: classes/gateways/class.pmprogateway_stripe.php:598
5537
  #: classes/gateways/class.pmprogateway_stripe.php:610
5538
  #: classes/gateways/class.pmprogateway_stripe.php:629
5539
+ #: classes/gateways/class.pmprogateway_stripe.php:635
5540
  msgid "Show Billing Address Fields"
5541
  msgstr "הצג שדות פרטי חיוב"
5542
 
5549
  #: classes/gateways/class.pmprogateway_stripe.php:607
5550
  #: classes/gateways/class.pmprogateway_stripe.php:619
5551
  #: classes/gateways/class.pmprogateway_stripe.php:638
5552
+ #: classes/gateways/class.pmprogateway_stripe.php:644
5553
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
5554
  msgstr ""
5555
 
5572
  #: classes/gateways/class.pmprogateway_stripe.php:1379
5573
  #: classes/gateways/class.pmprogateway_stripe.php:1391
5574
  #: classes/gateways/class.pmprogateway_stripe.php:1410
5575
+ #: classes/gateways/class.pmprogateway_stripe.php:1416
5576
  msgid "Subscription Updates"
5577
  msgstr ""
5578
 
5584
  #: classes/gateways/class.pmprogateway_stripe.php:1383
5585
  #: classes/gateways/class.pmprogateway_stripe.php:1395
5586
  #: classes/gateways/class.pmprogateway_stripe.php:1414
5587
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
5588
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
5589
  msgstr ""
5590
 
5596
  #: classes/gateways/class.pmprogateway_stripe.php:1385
5597
  #: classes/gateways/class.pmprogateway_stripe.php:1397
5598
  #: classes/gateways/class.pmprogateway_stripe.php:1416
5599
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
5600
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
5601
  msgstr ""
5602
 
5615
  #: pages/billing.php:425
5616
  #: classes/gateways/class.pmprogateway_stripe.php:1403
5617
  #: classes/gateways/class.pmprogateway_stripe.php:1422
5618
+ #: classes/gateways/class.pmprogateway_stripe.php:1428
5619
  msgid "Update"
5620
  msgstr ""
5621
 
5627
  #: classes/gateways/class.pmprogateway_stripe.php:2480
5628
  #: classes/gateways/class.pmprogateway_stripe.php:2492
5629
  #: classes/gateways/class.pmprogateway_stripe.php:2514
5630
+ #: classes/gateways/class.pmprogateway_stripe.php:2520
5631
  msgid "Could not cancel the old subscription. Updates have not been processed."
5632
  msgstr ""
5633
 
5653
  #: classes/gateways/class.pmprogateway_stripe.php:2127
5654
  #: classes/gateways/class.pmprogateway_stripe.php:2132
5655
  #: classes/gateways/class.pmprogateway_stripe.php:2137
5656
+ #: classes/gateways/class.pmprogateway_stripe.php:2133
5657
+ #: classes/gateways/class.pmprogateway_stripe.php:2138
5658
+ #: classes/gateways/class.pmprogateway_stripe.php:2143
5659
  msgid "Error creating customer record with Stripe:"
5660
  msgstr ""
5661
 
5668
  #: classes/gateways/class.pmprogateway_stripe.php:2182
5669
  #: classes/gateways/class.pmprogateway_stripe.php:2196
5670
  #: classes/gateways/class.pmprogateway_stripe.php:2201
5671
+ #: classes/gateways/class.pmprogateway_stripe.php:2202
5672
+ #: classes/gateways/class.pmprogateway_stripe.php:2207
5673
  msgid "Error getting subscription with Stripe:"
5674
  msgstr ""
5675
 
5700
  #: classes/gateways/class.pmprogateway_stripe.php:2356
5701
  #: classes/gateways/class.pmprogateway_stripe.php:2373
5702
  #: classes/gateways/class.pmprogateway_stripe.php:2378
5703
+ #: classes/gateways/class.pmprogateway_stripe.php:2379
5704
+ #: classes/gateways/class.pmprogateway_stripe.php:2384
5705
  msgid "Error creating plan with Stripe:"
5706
  msgstr ""
5707
 
5727
  #: classes/gateways/class.pmprogateway_stripe.php:2401
5728
  #: classes/gateways/class.pmprogateway_stripe.php:2409
5729
  #: classes/gateways/class.pmprogateway_stripe.php:2423
5730
+ #: classes/gateways/class.pmprogateway_stripe.php:2415
5731
+ #: classes/gateways/class.pmprogateway_stripe.php:2429
5732
  msgid "Error subscribing customer to plan with Stripe:"
5733
  msgstr ""
5734
 
5748
  #: classes/gateways/class.pmprogateway_stripe.php:2632
5749
  #: classes/gateways/class.pmprogateway_stripe.php:2644
5750
  #: classes/gateways/class.pmprogateway_stripe.php:2666
5751
+ #: classes/gateways/class.pmprogateway_stripe.php:2672
5752
  msgid "Could not cancel old subscription."
5753
  msgstr ""
5754
 
5765
  #: classes/gateways/class.pmprogateway_stripe.php:2648
5766
  #: classes/gateways/class.pmprogateway_stripe.php:2660
5767
  #: classes/gateways/class.pmprogateway_stripe.php:2682
5768
+ #: classes/gateways/class.pmprogateway_stripe.php:2688
5769
  msgid "Could not find the customer."
5770
  msgstr ""
5771
 
6835
 
6836
  #: includes/license.php:81
6837
  #: adminpages/license.php:43
6838
+ #: adminpages/license.php:33
6839
  msgid "Paid Memberships Pro Support License"
6840
  msgstr ""
6841
 
6855
  #: adminpages/dashboard.php:174
6856
  #: adminpages/license.php:49
6857
  #: adminpages/dashboard.php:178
6858
+ #: adminpages/license.php:41
6859
  msgid "Your license is invalid or expired."
6860
  msgstr ""
6861
 
6866
 
6867
  #: includes/license.php:100
6868
  #: adminpages/license.php:59
6869
+ #: adminpages/license.php:51
6870
  msgid "Enter license key here..."
6871
  msgstr ""
6872
 
7072
  #: adminpages/dashboard.php:224
7073
  #: adminpages/dashboard.php:292
7074
  #: adminpages/orders.php:1343
7075
+ #: includes/profile.php:500
7076
  msgid "Level"
7077
  msgstr "‎דרגה"
7078
 
7133
  #: includes/profile.php:747
7134
  #: pages/billing.php:164
7135
  #: pages/checkout.php:234
7136
+ #: includes/profile.php:759
7137
  msgid "First Name"
7138
  msgstr "‎שם פרטי"
7139
 
7151
  #: includes/profile.php:748
7152
  #: pages/billing.php:168
7153
  #: pages/checkout.php:238
7154
+ #: includes/profile.php:760
7155
  msgid "Last Name"
7156
  msgstr "‎שם משפחה"
7157
 
8237
  #: services/authnet-silent-post.php:138
8238
  #: services/authnet-silent-post.php:141
8239
  #: services/authnet-silent-post.php:173
8240
+ #: services/authnet-silent-post.php:176
8241
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
8242
  msgstr "‏<p>התשלום עובר בדיקה</p><p>פרטי תשלום מ: Authorize.net"
8243
 
8305
  #: includes/profile.php:872
8306
  #: includes/profile.php:909
8307
  #: shortcodes/pmpro_account.php:195
8308
+ #: includes/profile.php:884
8309
+ #: includes/profile.php:921
8310
  msgid "Change Password"
8311
  msgstr "\\ שנה סיסמה"
8312
 
8402
  #: adminpages/advancedsettings.php:316
8403
  #: includes/privacy.php:175
8404
  #: includes/profile.php:509
8405
+ #: includes/profile.php:515
8406
  msgid "Never"
8407
  msgstr ""
8408
 
8740
 
8741
  #: adminpages/admin_header.php:152
8742
  #: classes/gateways/class.pmprogateway_stripe.php:76
8743
+ #: classes/gateways/class.pmprogateway_stripe.php:82
8744
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
8745
  msgstr ""
8746
 
9013
  #: adminpages/dashboard.php:177
9014
  #: adminpages/license.php:51
9015
  #: adminpages/dashboard.php:181
9016
+ #: adminpages/license.php:43
9017
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
9018
  msgstr ""
9019
 
9450
  msgstr ""
9451
 
9452
  #: adminpages/license.php:47
9453
+ #: adminpages/license.php:39
9454
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
9455
  msgstr ""
9456
 
9457
  #: adminpages/license.php:49
9458
+ #: adminpages/license.php:37
9459
+ #: adminpages/license.php:41
9460
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
9461
  msgstr ""
9462
 
9463
  #: adminpages/license.php:61
9464
+ #: adminpages/license.php:53
9465
  msgid "Validate Key"
9466
  msgstr ""
9467
 
9468
  #: adminpages/license.php:95
9469
+ #: adminpages/license.php:87
9470
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
9471
  msgstr ""
9472
 
9981
 
9982
  #: classes/gateways/class.pmprogateway_braintree.php:87
9983
  #: classes/gateways/class.pmprogateway_stripe.php:91
9984
+ #: classes/gateways/class.pmprogateway_stripe.php:97
9985
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
9986
  msgstr ""
9987
 
10279
  msgstr ""
10280
 
10281
  #: classes/gateways/class.pmprogateway_cybersource.php:922
10282
+ #: includes/license.php:159
10283
  msgid "Unknown error."
10284
  msgstr ""
10285
 
10294
  #: classes/gateways/class.pmprogateway_paypal.php:146
10295
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
10296
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
10297
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:165
10298
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
10299
  msgstr ""
10300
 
10301
  #: classes/gateways/class.pmprogateway_paypal.php:185
10302
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
10303
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:204
10304
  msgid "Confirmation Step"
10305
  msgstr ""
10306
 
10307
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
10308
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:356
10309
  msgid "Checkout was already processed."
10310
  msgstr ""
10311
 
10312
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
10313
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:791
10314
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
10315
  msgstr ""
10316
 
10317
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
10318
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:792
10319
  msgid "Error creating plan with PayPal."
10320
  msgstr ""
10321
 
10327
  #: classes/gateways/class.pmprogateway_stripe.php:436
10328
  #: classes/gateways/class.pmprogateway_stripe.php:354
10329
  #: classes/gateways/class.pmprogateway_stripe.php:444
10330
+ #: classes/gateways/class.pmprogateway_stripe.php:360
10331
+ #: classes/gateways/class.pmprogateway_stripe.php:450
10332
  msgid "Stripe Connect Settings"
10333
  msgstr ""
10334
 
10335
  #: classes/gateways/class.pmprogateway_stripe.php:352
10336
  #: classes/gateways/class.pmprogateway_stripe.php:356
10337
+ #: classes/gateways/class.pmprogateway_stripe.php:362
10338
  msgid "Live Mode:"
10339
  msgstr ""
10340
 
10342
  #: classes/gateways/class.pmprogateway_stripe.php:440
10343
  #: classes/gateways/class.pmprogateway_stripe.php:358
10344
  #: classes/gateways/class.pmprogateway_stripe.php:448
10345
+ #: classes/gateways/class.pmprogateway_stripe.php:364
10346
+ #: classes/gateways/class.pmprogateway_stripe.php:454
10347
  msgid "Connected"
10348
  msgstr ""
10349
 
10351
  #: classes/gateways/class.pmprogateway_stripe.php:442
10352
  #: classes/gateways/class.pmprogateway_stripe.php:362
10353
  #: classes/gateways/class.pmprogateway_stripe.php:452
10354
+ #: classes/gateways/class.pmprogateway_stripe.php:368
10355
+ #: classes/gateways/class.pmprogateway_stripe.php:458
10356
  msgid "Not Connected"
10357
  msgstr ""
10358
 
10360
  #: classes/gateways/class.pmprogateway_stripe.php:449
10361
  #: classes/gateways/class.pmprogateway_stripe.php:369
10362
  #: classes/gateways/class.pmprogateway_stripe.php:459
10363
+ #: classes/gateways/class.pmprogateway_stripe.php:375
10364
+ #: classes/gateways/class.pmprogateway_stripe.php:465
10365
  msgid "Your site is using legacy API keys to authenticate with Stripe."
10366
  msgstr ""
10367
 
10368
  #: classes/gateways/class.pmprogateway_stripe.php:364
10369
  #: classes/gateways/class.pmprogateway_stripe.php:371
10370
+ #: classes/gateways/class.pmprogateway_stripe.php:377
10371
  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."
10372
  msgstr ""
10373
 
10375
  #: classes/gateways/class.pmprogateway_stripe.php:458
10376
  #: classes/gateways/class.pmprogateway_stripe.php:380
10377
  #: classes/gateways/class.pmprogateway_stripe.php:470
10378
+ #: classes/gateways/class.pmprogateway_stripe.php:386
10379
+ #: classes/gateways/class.pmprogateway_stripe.php:476
10380
  msgid "Stripe Connection:"
10381
  msgstr ""
10382
 
10384
  #: classes/gateways/class.pmprogateway_stripe.php:482
10385
  #: classes/gateways/class.pmprogateway_stripe.php:396
10386
  #: classes/gateways/class.pmprogateway_stripe.php:494
10387
+ #: classes/gateways/class.pmprogateway_stripe.php:402
10388
+ #: classes/gateways/class.pmprogateway_stripe.php:500
10389
  msgid "Disconnect From Stripe"
10390
  msgstr ""
10391
 
10392
  #: classes/gateways/class.pmprogateway_stripe.php:389
10393
  #: classes/gateways/class.pmprogateway_stripe.php:397
10394
+ #: classes/gateways/class.pmprogateway_stripe.php:403
10395
  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."
10396
  msgstr ""
10397
 
10399
  #: classes/gateways/class.pmprogateway_stripe.php:496
10400
  #: classes/gateways/class.pmprogateway_stripe.php:409
10401
  #: classes/gateways/class.pmprogateway_stripe.php:508
10402
+ #: classes/gateways/class.pmprogateway_stripe.php:415
10403
+ #: classes/gateways/class.pmprogateway_stripe.php:514
10404
  msgid "Connect with Stripe"
10405
  msgstr ""
10406
 
10407
  #: classes/gateways/class.pmprogateway_stripe.php:408
10408
  #: classes/gateways/class.pmprogateway_stripe.php:416
10409
+ #: classes/gateways/class.pmprogateway_stripe.php:422
10410
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
10411
  msgstr ""
10412
 
10413
  #: classes/gateways/class.pmprogateway_stripe.php:411
10414
  #: classes/gateways/class.pmprogateway_stripe.php:419
10415
+ #: classes/gateways/class.pmprogateway_stripe.php:425
10416
  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."
10417
  msgstr ""
10418
 
10423
  #: classes/gateways/class.pmprogateway_stripe.php:519
10424
  #: classes/gateways/class.pmprogateway_stripe.php:559
10425
  #: classes/gateways/class.pmprogateway_stripe.php:578
10426
+ #: classes/gateways/class.pmprogateway_stripe.php:437
10427
+ #: classes/gateways/class.pmprogateway_stripe.php:525
10428
+ #: classes/gateways/class.pmprogateway_stripe.php:584
10429
  msgid "Webhook"
10430
  msgstr ""
10431
 
10436
  #: classes/gateways/class.pmprogateway_stripe.php:523
10437
  #: classes/gateways/class.pmprogateway_stripe.php:594
10438
  #: classes/gateways/class.pmprogateway_stripe.php:613
10439
+ #: classes/gateways/class.pmprogateway_stripe.php:441
10440
+ #: classes/gateways/class.pmprogateway_stripe.php:529
10441
+ #: classes/gateways/class.pmprogateway_stripe.php:619
10442
  msgid "Webhook URL"
10443
  msgstr ""
10444
 
10445
  #: classes/gateways/class.pmprogateway_stripe.php:438
10446
  #: classes/gateways/class.pmprogateway_stripe.php:446
10447
+ #: classes/gateways/class.pmprogateway_stripe.php:452
10448
  msgid "Test Mode:"
10449
  msgstr ""
10450
 
10451
  #: classes/gateways/class.pmprogateway_stripe.php:450
10452
  #: classes/gateways/class.pmprogateway_stripe.php:461
10453
+ #: classes/gateways/class.pmprogateway_stripe.php:467
10454
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
10455
  msgstr ""
10456
 
10457
  #: classes/gateways/class.pmprogateway_stripe.php:483
10458
  #: classes/gateways/class.pmprogateway_stripe.php:495
10459
+ #: classes/gateways/class.pmprogateway_stripe.php:501
10460
  msgid "This will disconnect your site from Stripe in test mode only."
10461
  msgstr ""
10462
 
10463
  #: classes/gateways/class.pmprogateway_stripe.php:518
10464
  #: classes/gateways/class.pmprogateway_stripe.php:530
10465
+ #: classes/gateways/class.pmprogateway_stripe.php:536
10466
  msgid "Stripe API Settings (Legacy)"
10467
  msgstr ""
10468
 
10469
  #: classes/gateways/class.pmprogateway_stripe.php:531
10470
  #: classes/gateways/class.pmprogateway_stripe.php:543
10471
  #: classes/gateways/class.pmprogateway_stripe.php:562
10472
+ #: classes/gateways/class.pmprogateway_stripe.php:568
10473
  msgid "Your Publishable Key appears incorrect."
10474
  msgstr ""
10475
 
10479
  #: classes/gateways/class.pmprogateway_stripe.php:587
10480
  #: classes/gateways/class.pmprogateway_stripe.php:582
10481
  #: classes/gateways/class.pmprogateway_stripe.php:606
10482
+ #: classes/gateways/class.pmprogateway_stripe.php:588
10483
+ #: classes/gateways/class.pmprogateway_stripe.php:612
10484
  msgid "Create Webhook"
10485
  msgstr ""
10486
 
10487
  #: classes/gateways/class.pmprogateway_stripe.php:557
10488
  #: classes/gateways/class.pmprogateway_stripe.php:569
10489
  #: classes/gateways/class.pmprogateway_stripe.php:588
10490
+ #: classes/gateways/class.pmprogateway_stripe.php:594
10491
  msgid "A webhook is set up in Stripe, but it is disabled."
10492
  msgstr ""
10493
 
10494
  #: classes/gateways/class.pmprogateway_stripe.php:564
10495
  #: classes/gateways/class.pmprogateway_stripe.php:576
10496
  #: classes/gateways/class.pmprogateway_stripe.php:595
10497
+ #: classes/gateways/class.pmprogateway_stripe.php:601
10498
  msgid "A webhook is set up in Stripe, but it is using an old API version."
10499
  msgstr ""
10500
 
10501
  #: classes/gateways/class.pmprogateway_stripe.php:564
10502
  #: classes/gateways/class.pmprogateway_stripe.php:576
10503
  #: classes/gateways/class.pmprogateway_stripe.php:595
10504
+ #: classes/gateways/class.pmprogateway_stripe.php:601
10505
  msgid "Rebuild Webhook"
10506
  msgstr ""
10507
 
10514
  #: classes/gateways/class.pmprogateway_stripe.php:601
10515
  #: classes/gateways/class.pmprogateway_stripe.php:741
10516
  #: classes/gateways/class.pmprogateway_stripe.php:857
10517
+ #: classes/gateways/class.pmprogateway_stripe.php:607
10518
+ #: classes/gateways/class.pmprogateway_stripe.php:747
10519
+ #: classes/gateways/class.pmprogateway_stripe.php:863
10520
  msgid "Your webhook is enabled."
10521
  msgstr ""
10522
 
10523
  #: classes/gateways/class.pmprogateway_stripe.php:570
10524
  #: classes/gateways/class.pmprogateway_stripe.php:582
10525
  #: classes/gateways/class.pmprogateway_stripe.php:601
10526
+ #: classes/gateways/class.pmprogateway_stripe.php:607
10527
  msgid "Disable Webhook"
10528
  msgstr ""
10529
 
10539
  #: classes/gateways/class.pmprogateway_stripe.php:768
10540
  #: classes/gateways/class.pmprogateway_stripe.php:785
10541
  #: classes/gateways/class.pmprogateway_stripe.php:819
10542
+ #: classes/gateways/class.pmprogateway_stripe.php:614
10543
+ #: classes/gateways/class.pmprogateway_stripe.php:774
10544
+ #: classes/gateways/class.pmprogateway_stripe.php:791
10545
+ #: classes/gateways/class.pmprogateway_stripe.php:825
10546
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
10547
  msgstr ""
10548
 
10549
  #: classes/gateways/class.pmprogateway_stripe.php:589
10550
  #: classes/gateways/class.pmprogateway_stripe.php:601
10551
  #: classes/gateways/class.pmprogateway_stripe.php:620
10552
+ #: classes/gateways/class.pmprogateway_stripe.php:626
10553
  msgid "Other Stripe Settings"
10554
  msgstr ""
10555
 
10556
  #: classes/gateways/class.pmprogateway_stripe.php:593
10557
  #: classes/gateways/class.pmprogateway_stripe.php:605
10558
  #: classes/gateways/class.pmprogateway_stripe.php:624
10559
+ #: classes/gateways/class.pmprogateway_stripe.php:630
10560
  msgid "Stripe API Version"
10561
  msgstr ""
10562
 
10563
  #: classes/gateways/class.pmprogateway_stripe.php:612
10564
  #: classes/gateways/class.pmprogateway_stripe.php:624
10565
  #: classes/gateways/class.pmprogateway_stripe.php:643
10566
+ #: classes/gateways/class.pmprogateway_stripe.php:649
10567
  msgid "Enable Payment Request Button"
10568
  msgstr ""
10569
 
10570
  #: classes/gateways/class.pmprogateway_stripe.php:630
10571
  #: classes/gateways/class.pmprogateway_stripe.php:642
10572
  #: classes/gateways/class.pmprogateway_stripe.php:661
10573
+ #: classes/gateways/class.pmprogateway_stripe.php:667
10574
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
10575
  msgstr ""
10576
 
10577
  #: classes/gateways/class.pmprogateway_stripe.php:643
10578
  #: classes/gateways/class.pmprogateway_stripe.php:655
10579
  #: classes/gateways/class.pmprogateway_stripe.php:674
10580
+ #: classes/gateways/class.pmprogateway_stripe.php:680
10581
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
10582
  msgstr ""
10583
 
10584
  #: classes/gateways/class.pmprogateway_stripe.php:645
10585
  #: classes/gateways/class.pmprogateway_stripe.php:657
10586
  #: classes/gateways/class.pmprogateway_stripe.php:676
10587
+ #: classes/gateways/class.pmprogateway_stripe.php:682
10588
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
10589
  msgstr ""
10590
 
10591
  #: classes/gateways/class.pmprogateway_stripe.php:647
10592
  #: classes/gateways/class.pmprogateway_stripe.php:659
10593
  #: classes/gateways/class.pmprogateway_stripe.php:678
10594
+ #: classes/gateways/class.pmprogateway_stripe.php:684
10595
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
10596
  msgstr ""
10597
 
10598
  #: classes/gateways/class.pmprogateway_stripe.php:649
10599
  #: classes/gateways/class.pmprogateway_stripe.php:661
10600
  #: classes/gateways/class.pmprogateway_stripe.php:680
10601
+ #: classes/gateways/class.pmprogateway_stripe.php:686
10602
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
10603
  msgstr ""
10604
 
10605
  #: classes/gateways/class.pmprogateway_stripe.php:674
10606
  #: classes/gateways/class.pmprogateway_stripe.php:686
10607
  #: classes/gateways/class.pmprogateway_stripe.php:705
10608
+ #: classes/gateways/class.pmprogateway_stripe.php:711
10609
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
10610
  msgstr ""
10611
 
10612
  #: classes/gateways/class.pmprogateway_stripe.php:695
10613
  #: classes/gateways/class.pmprogateway_stripe.php:707
10614
  #: classes/gateways/class.pmprogateway_stripe.php:726
10615
+ #: classes/gateways/class.pmprogateway_stripe.php:732
10616
  msgid "Webhook creation failed. You might already have a webhook set up."
10617
  msgstr ""
10618
 
10622
  #: classes/gateways/class.pmprogateway_stripe.php:847
10623
  #: classes/gateways/class.pmprogateway_stripe.php:792
10624
  #: classes/gateways/class.pmprogateway_stripe.php:866
10625
+ #: classes/gateways/class.pmprogateway_stripe.php:798
10626
+ #: classes/gateways/class.pmprogateway_stripe.php:872
10627
  msgid "There was an error deleting the webhook."
10628
  msgstr ""
10629
 
10630
  #: classes/gateways/class.pmprogateway_stripe.php:811
10631
  #: classes/gateways/class.pmprogateway_stripe.php:823
10632
  #: classes/gateways/class.pmprogateway_stripe.php:842
10633
+ #: classes/gateways/class.pmprogateway_stripe.php:848
10634
  msgid "Webhook creation failed. Please refresh and try again."
10635
  msgstr ""
10636
 
10637
  #: classes/gateways/class.pmprogateway_stripe.php:867
10638
  #: classes/gateways/class.pmprogateway_stripe.php:879
10639
  #: classes/gateways/class.pmprogateway_stripe.php:898
10640
+ #: classes/gateways/class.pmprogateway_stripe.php:904
10641
  msgid "Verification steps confirmed. Your payment is processing."
10642
  msgstr ""
10643
 
10644
  #: classes/gateways/class.pmprogateway_stripe.php:1262
10645
  #: classes/gateways/class.pmprogateway_stripe.php:1274
10646
  #: classes/gateways/class.pmprogateway_stripe.php:1293
10647
+ #: classes/gateways/class.pmprogateway_stripe.php:1299
10648
  msgid "Pay with Credit Card"
10649
  msgstr ""
10650
 
10651
  #: classes/gateways/class.pmprogateway_stripe.php:1296
10652
  #: classes/gateways/class.pmprogateway_stripe.php:1308
10653
  #: classes/gateways/class.pmprogateway_stripe.php:1327
10654
+ #: classes/gateways/class.pmprogateway_stripe.php:1333
10655
  msgid "CVC"
10656
  msgstr ""
10657
 
10658
  #: classes/gateways/class.pmprogateway_stripe.php:1374
10659
  #: classes/gateways/class.pmprogateway_stripe.php:1386
10660
  #: classes/gateways/class.pmprogateway_stripe.php:1405
10661
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
10662
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
10663
  msgstr ""
10664
 
10674
  #: classes/gateways/class.pmprogateway_stripe.php:2016
10675
  #: classes/gateways/class.pmprogateway_stripe.php:2029
10676
  #: classes/gateways/class.pmprogateway_stripe.php:2033
10677
+ #: classes/gateways/class.pmprogateway_stripe.php:2018
10678
+ #: classes/gateways/class.pmprogateway_stripe.php:2022
10679
+ #: classes/gateways/class.pmprogateway_stripe.php:2035
10680
+ #: classes/gateways/class.pmprogateway_stripe.php:2039
10681
  msgid "Error: %s"
10682
  msgstr ""
10683
 
10687
  #: classes/gateways/class.pmprogateway_stripe.php:2834
10688
  #: classes/gateways/class.pmprogateway_stripe.php:2850
10689
  #: classes/gateways/class.pmprogateway_stripe.php:2856
10690
+ #: classes/gateways/class.pmprogateway_stripe.php:2862
10691
  msgid "Error: "
10692
  msgstr ""
10693
 
10694
  #: classes/gateways/class.pmprogateway_stripe.php:2836
10695
  #: classes/gateways/class.pmprogateway_stripe.php:2848
10696
  #: classes/gateways/class.pmprogateway_stripe.php:2870
10697
+ #: classes/gateways/class.pmprogateway_stripe.php:2876
10698
  msgid "Error: Unkown error while refunding charge #%s"
10699
  msgstr ""
10700
 
10701
  #: classes/gateways/class.pmprogateway_stripe.php:3330
10702
  #: classes/gateways/class.pmprogateway_stripe.php:3342
10703
  #: classes/gateways/class.pmprogateway_stripe.php:3364
10704
+ #: classes/gateways/class.pmprogateway_stripe.php:3370
10705
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
10706
  msgstr ""
10707
 
10708
  #: classes/gateways/class.pmprogateway_stripe.php:3347
10709
  #: classes/gateways/class.pmprogateway_stripe.php:3359
10710
  #: classes/gateways/class.pmprogateway_stripe.php:3381
10711
+ #: classes/gateways/class.pmprogateway_stripe.php:3387
10712
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
10713
  msgstr ""
10714
 
10715
  #: classes/gateways/class.pmprogateway_stripe.php:3533
10716
  #: classes/gateways/class.pmprogateway_stripe.php:3545
10717
  #: classes/gateways/class.pmprogateway_stripe.php:3567
10718
+ #: classes/gateways/class.pmprogateway_stripe.php:3573
10719
  msgid "Invalid response from the Stripe Connect server."
10720
  msgstr ""
10721
 
10723
  #: classes/gateways/class.pmprogateway_stripe.php:3561
10724
  #: classes/gateways/class.pmprogateway_stripe.php:3573
10725
  #: classes/gateways/class.pmprogateway_stripe.php:3595
10726
+ #: classes/gateways/class.pmprogateway_stripe.php:3601
10727
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
10728
  msgstr ""
10729
 
10731
  #: classes/gateways/class.pmprogateway_stripe.php:3597
10732
  #: classes/gateways/class.pmprogateway_stripe.php:3609
10733
  #: classes/gateways/class.pmprogateway_stripe.php:3631
10734
+ #: classes/gateways/class.pmprogateway_stripe.php:3637
10735
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
10736
  msgstr ""
10737
 
10738
  #: classes/gateways/class.pmprogateway_stripe.php:3768
10739
  #: classes/gateways/class.pmprogateway_stripe.php:3780
10740
  #: classes/gateways/class.pmprogateway_stripe.php:3802
10741
+ #: classes/gateways/class.pmprogateway_stripe.php:3808
10742
  msgid "Last webhook received at"
10743
  msgstr ""
10744
 
10745
  #: classes/gateways/class.pmprogateway_stripe.php:3770
10746
  #: classes/gateways/class.pmprogateway_stripe.php:3782
10747
  #: classes/gateways/class.pmprogateway_stripe.php:3804
10748
+ #: classes/gateways/class.pmprogateway_stripe.php:3810
10749
  msgid "No webhooks have been received."
10750
  msgstr ""
10751
 
10752
  #: classes/gateways/class.pmprogateway_stripe.php:3774
10753
  #: classes/gateways/class.pmprogateway_stripe.php:3786
10754
  #: classes/gateways/class.pmprogateway_stripe.php:3808
10755
+ #: classes/gateways/class.pmprogateway_stripe.php:3814
10756
  msgid "Your webhook may not be working correctly."
10757
  msgstr ""
10758
 
10759
  #: classes/gateways/class.pmprogateway_stripe.php:3776
10760
  #: classes/gateways/class.pmprogateway_stripe.php:3788
10761
  #: classes/gateways/class.pmprogateway_stripe.php:3810
10762
+ #: classes/gateways/class.pmprogateway_stripe.php:3816
10763
  msgid "Click here for info on setting up your webhook with Stripe."
10764
  msgstr ""
10765
 
12864
 
12865
  #: includes/login.php:429
12866
  #: includes/profile.php:843
12867
+ #: includes/profile.php:855
12868
  msgid "New passwords do not match."
12869
  msgstr ""
12870
 
12871
  #: includes/login.php:433
12872
  #: includes/profile.php:839
12873
+ #: includes/profile.php:851
12874
  msgid "Please complete all fields."
12875
  msgstr ""
12876
 
12900
 
12901
  #: includes/login.php:688
12902
  #: includes/profile.php:891
12903
+ #: includes/profile.php:903
12904
  msgid "New Password"
12905
  msgstr ""
12906
 
12907
  #: includes/login.php:690
12908
  #: includes/profile.php:894
12909
  #: includes/scripts.php:86
12910
+ #: includes/profile.php:906
12911
+ #: includes/scripts.php:85
12912
  msgid "Strength Indicator"
12913
  msgstr ""
12914
 
12915
  #: includes/login.php:694
12916
  #: includes/profile.php:898
12917
+ #: includes/profile.php:910
12918
  msgid "Confirm New Password"
12919
  msgstr ""
12920
 
13011
  #: includes/privacy.php:182
13012
  #: includes/profile.php:425
13013
  #: includes/profile.php:493
13014
+ #: includes/profile.php:499
13015
  msgid "Level ID"
13016
  msgstr ""
13017
 
13018
  #: includes/privacy.php:190
13019
  #: includes/profile.php:496
13020
+ #: includes/profile.php:502
13021
  msgid "Date Modified"
13022
  msgstr ""
13023
 
13024
  #: includes/privacy.php:194
13025
  #: includes/profile.php:497
13026
+ #: includes/profile.php:503
13027
  msgid "End Date"
13028
  msgstr ""
13029
 
13030
  #: includes/privacy.php:198
13031
  #: includes/profile.php:498
13032
+ #: includes/profile.php:504
13033
  msgid "Level Cost"
13034
  msgstr ""
13035
 
13128
  msgstr ""
13129
 
13130
  #: includes/profile.php:485
13131
+ #: includes/profile.php:488
13132
  msgid "No membership orders found."
13133
  msgstr ""
13134
 
13135
  #: includes/profile.php:537
13136
+ #: includes/profile.php:546
13137
  msgid "No membership history found."
13138
  msgstr ""
13139
 
13140
  #: includes/profile.php:644
13141
+ #: includes/profile.php:656
13142
  msgid "Log in to edit your profile."
13143
  msgstr ""
13144
 
13145
  #: includes/profile.php:679
13146
+ #: includes/profile.php:691
13147
  msgid "Please enter a display name."
13148
  msgstr ""
13149
 
13150
  #: includes/profile.php:689
13151
+ #: includes/profile.php:701
13152
  msgid "Please enter an email address."
13153
  msgstr ""
13154
 
13155
  #: includes/profile.php:691
13156
+ #: includes/profile.php:703
13157
  msgid "The email address isn&#8217;t correct."
13158
  msgstr ""
13159
 
13160
  #: includes/profile.php:695
13161
+ #: includes/profile.php:707
13162
  msgid "This email is already registered, please choose another one."
13163
  msgstr ""
13164
 
13165
  #: includes/profile.php:722
13166
+ #: includes/profile.php:734
13167
  msgid "Your profile has been updated."
13168
  msgstr ""
13169
 
13170
  #: includes/profile.php:749
13171
+ #: includes/profile.php:761
13172
  msgid "Display name publicly as"
13173
  msgstr ""
13174
 
13175
  #: includes/profile.php:762
13176
+ #: includes/profile.php:774
13177
  msgid "Site administrators must use the WordPress dashboard to update their email address."
13178
  msgstr ""
13179
 
13180
  #: includes/profile.php:785
13181
+ #: includes/profile.php:797
13182
  msgid "Update Profile"
13183
  msgstr ""
13184
 
13185
  #: includes/profile.php:841
13186
+ #: includes/profile.php:853
13187
  msgid "Please enter your current password."
13188
  msgstr ""
13189
 
13190
  #: includes/profile.php:845
13191
+ #: includes/profile.php:857
13192
  msgid "Your current password is incorrect."
13193
  msgstr ""
13194
 
13195
  #: includes/profile.php:856
13196
+ #: includes/profile.php:868
13197
  msgid "Your password has been updated."
13198
  msgstr ""
13199
 
13200
  #: includes/profile.php:886
13201
+ #: includes/profile.php:898
13202
  msgid "Current Password"
13203
  msgstr ""
13204
 
13205
  #: includes/profile.php:888
13206
  #: includes/profile.php:893
13207
  #: includes/profile.php:900
13208
+ #: includes/profile.php:905
13209
+ #: includes/profile.php:912
13210
  msgid "Required Field"
13211
  msgstr ""
13212
 
13303
  msgstr ""
13304
 
13305
  #: services/braintree-webhook.php:425
13306
+ #: services/braintree-webhook.php:426
13307
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
13308
  msgstr ""
13309
 
13310
  #: services/braintree-webhook.php:427
13311
+ #: services/braintree-webhook.php:428
13312
  msgid "A member's Braintree subscription has expired at %s"
13313
  msgstr ""
13314
 
13627
 
13628
  #: classes/gateways/class.pmprogateway_stripe.php:360
13629
  #: classes/gateways/class.pmprogateway_stripe.php:450
13630
+ #: classes/gateways/class.pmprogateway_stripe.php:366
13631
+ #: classes/gateways/class.pmprogateway_stripe.php:456
13632
  msgid "Connected with Legacy Keys"
13633
  msgstr ""
13634
 
13635
  #: classes/gateways/class.pmprogateway_stripe.php:370
13636
  #: classes/gateways/class.pmprogateway_stripe.php:460
13637
+ #: classes/gateways/class.pmprogateway_stripe.php:376
13638
+ #: classes/gateways/class.pmprogateway_stripe.php:466
13639
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
13640
  msgstr ""
13641
 
13642
  #: classes/gateways/class.pmprogateway_stripe.php:372
13643
  #: classes/gateways/class.pmprogateway_stripe.php:462
13644
+ #: classes/gateways/class.pmprogateway_stripe.php:378
13645
+ #: classes/gateways/class.pmprogateway_stripe.php:468
13646
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
13647
  msgstr ""
13648
 
13699
  msgstr ""
13700
 
13701
  #: classes/gateways/class.pmprogateway_stripe.php:533
13702
+ #: classes/gateways/class.pmprogateway_stripe.php:539
13703
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
13704
  msgstr ""
13705
 
13706
  #: classes/gateways/class.pmprogateway_stripe.php:534
13707
+ #: classes/gateways/class.pmprogateway_stripe.php:540
13708
  msgid "Click here to use the legacy API settings."
13709
  msgstr ""
13710
+
13711
+ #: adminpages/license.php:37
13712
+ msgid "There was an issue validating your license key: %s"
13713
+ msgstr ""
13714
+
13715
+ #: includes/email-templates.php:172
13716
+ msgid ""
13717
+ "<p>There was a new member checkout at !!sitename!!.</p>\n"
13718
+ "\n"
13719
+ "<p><strong>They have chosen to pay by check.</strong></p>\n"
13720
+ "\n"
13721
+ "<p>Below are details about the new membership account and a receipt for the initial membership invoice.</p>\n"
13722
+ "\n"
13723
+ "<p>Account: !!display_name!! (!!user_email!!)</p>\n"
13724
+ "<p>Membership Level: !!membership_level_name!!</p>\n"
13725
+ "<p>Membership Fee: !!membership_cost!!</p>\n"
13726
+ "!!membership_expiration!! !!discount_code!!\n"
13727
+ "\n"
13728
+ "<p>\n"
13729
+ "\tInvoice #!!invoice_id!! on !!invoice_date!!<br />\n"
13730
+ "\tTotal Billed: !!invoice_total!!\n"
13731
+ "</p>\n"
13732
+ "\n"
13733
+ "<p>Log in to your membership account here: !!login_url!!</p>"
13734
+ msgstr ""
13735
+
13736
+ #: includes/license.php:112
13737
+ msgid "Missing key."
13738
+ msgstr ""
13739
+
13740
+ #: shortcodes/pmpro_account.php:145
13741
+ msgctxt "A dash is shown when there is no expiration date."
13742
+ msgid "&#8212;"
13743
+ msgstr ""
languages/paid-memberships-pro-it_IT.mo CHANGED
Binary file
languages/paid-memberships-pro-it_IT.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.2\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-09-17T13:57:31+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -297,6 +297,9 @@ msgstr "WordPress.org"
297
  #: adminpages/orders.php:1544
298
  #: adminpages/orders.php:1554
299
  #: adminpages/orders.php:1553
 
 
 
300
  msgid "N/A"
301
  msgstr "N/A"
302
 
@@ -487,6 +490,7 @@ msgstr "Pagamento &amp; SSL"
487
  #: adminpages/orders.php:391
488
  #: adminpages/orders.php:1445
489
  #: adminpages/orders.php:1448
 
490
  msgid "Email"
491
  msgstr "Email"
492
 
@@ -680,6 +684,8 @@ msgstr "Nascondere gli Annunci da tutti i membri?"
680
  #: adminpages/advancedsettings.php:479
681
  #: classes/gateways/class.pmprogateway_stripe.php:634
682
  #: classes/gateways/class.pmprogateway_stripe.php:648
 
 
683
  msgid "No"
684
  msgstr "No"
685
 
@@ -783,6 +789,8 @@ msgstr "solo per multisito"
783
  #: adminpages/advancedsettings.php:397
784
  #: classes/gateways/class.pmprogateway_stripe.php:636
785
  #: classes/gateways/class.pmprogateway_stripe.php:650
 
 
786
  msgid "Yes"
787
  msgstr "Sì"
788
 
@@ -1095,6 +1103,7 @@ msgstr "Codice"
1095
  #: includes/privacy.php:186
1096
  #: includes/profile.php:495
1097
  #: adminpages/discountcodes.php:489
 
1098
  msgid "Start Date"
1099
  msgstr "Data Inizio Validità"
1100
 
@@ -1140,6 +1149,7 @@ msgstr "Data Inizio Validità"
1140
  #: classes/gateways/class.pmprogateway_stripe.php:1301
1141
  #: adminpages/discountcodes.php:507
1142
  #: classes/gateways/class.pmprogateway_stripe.php:1320
 
1143
  msgid "Expiration Date"
1144
  msgstr "Data Scadenza"
1145
 
@@ -1294,6 +1304,7 @@ msgstr "Importo della fatturazione"
1294
  #: adminpages/discountcodes.php:612
1295
  #: adminpages/discountcodes.php:699
1296
  #: classes/gateways/class.pmprogateway_stripe.php:1363
 
1297
  msgid "Day(s)"
1298
  msgstr "Giorno(i)"
1299
 
@@ -1333,6 +1344,7 @@ msgstr "Giorno(i)"
1333
  #: adminpages/discountcodes.php:612
1334
  #: adminpages/discountcodes.php:699
1335
  #: classes/gateways/class.pmprogateway_stripe.php:1365
 
1336
  msgid "Month(s)"
1337
  msgstr "Mese(i)"
1338
 
@@ -1372,6 +1384,7 @@ msgstr "Mese(i)"
1372
  #: adminpages/discountcodes.php:612
1373
  #: adminpages/discountcodes.php:699
1374
  #: classes/gateways/class.pmprogateway_stripe.php:1364
 
1375
  msgid "Week(s)"
1376
  msgstr "Settimana(e)"
1377
 
@@ -1411,6 +1424,7 @@ msgstr "Settimana(e)"
1411
  #: adminpages/discountcodes.php:612
1412
  #: adminpages/discountcodes.php:699
1413
  #: classes/gateways/class.pmprogateway_stripe.php:1366
 
1414
  msgid "Year(s)"
1415
  msgstr "Anno(i)"
1416
 
@@ -2048,6 +2062,7 @@ msgstr "Informazioni di pagamento"
2048
  #: classes/gateways/class.pmprogateway_stripe.php:1478
2049
  #: adminpages/discountcodes.php:608
2050
  #: classes/gateways/class.pmprogateway_stripe.php:1497
 
2051
  msgid "per"
2052
  msgstr "ogni"
2053
 
@@ -2276,6 +2291,8 @@ msgstr "Salva Livello"
2276
  #: pages/cancel.php:96
2277
  #: shortcodes/pmpro_account.php:106
2278
  #: adminpages/orders.php:968
 
 
2279
  msgid "Cancel"
2280
  msgstr "Annulla"
2281
 
@@ -3054,6 +3071,7 @@ msgstr "esempio PayPal Express, PayPal Standard, Credit Card."
3054
  #: adminpages/orders.php:679
3055
  #: classes/gateways/class.pmprogateway_stripe.php:1284
3056
  #: classes/gateways/class.pmprogateway_stripe.php:1303
 
3057
  msgid "Card Type"
3058
  msgstr "Tipo di carta"
3059
 
@@ -3148,6 +3166,7 @@ msgstr "Anno scadenza"
3148
  #: adminpages/dashboard.php:294
3149
  #: adminpages/orders.php:742
3150
  #: adminpages/orders.php:1348
 
3151
  msgid "Status"
3152
  msgstr "Stato"
3153
 
@@ -4708,6 +4727,7 @@ msgstr "La tua conferma di iscrizione per %s"
4708
  #: classes/class.pmproemail.php:769
4709
  #: classes/class.pmproemail.php:771
4710
  #: classes/gateways/class.pmprogateway_stripe.php:1333
 
4711
  msgid "Discount Code"
4712
  msgstr "Codice Sconto"
4713
 
@@ -5238,6 +5258,7 @@ msgstr "Per l'integrazione completa con Braintree accertati di aver impostato il
5238
  #: pages/checkout.php:366
5239
  #: classes/gateways/class.pmprogateway_stripe.php:1263
5240
  #: classes/gateways/class.pmprogateway_stripe.php:1282
 
5241
  msgid "Payment Information"
5242
  msgstr "Informazioni di Pagamento"
5243
 
@@ -5269,6 +5290,7 @@ msgstr "Informazioni di Pagamento"
5269
  #: pages/checkout.php:367
5270
  #: classes/gateways/class.pmprogateway_stripe.php:1264
5271
  #: classes/gateways/class.pmprogateway_stripe.php:1283
 
5272
  #, php-format
5273
  msgid "We Accept %s"
5274
  msgstr "Accettiamo %s"
@@ -5309,6 +5331,7 @@ msgstr "Accettiamo %s"
5309
  #: pages/checkout.php:389
5310
  #: classes/gateways/class.pmprogateway_stripe.php:1297
5311
  #: classes/gateways/class.pmprogateway_stripe.php:1316
 
5312
  msgid "Card Number"
5313
  msgstr "Numero di Carta"
5314
 
@@ -5425,6 +5448,7 @@ msgstr "cos'è?"
5425
  #: pages/checkout.php:432
5426
  #: classes/gateways/class.pmprogateway_stripe.php:1319
5427
  #: classes/gateways/class.pmprogateway_stripe.php:1338
 
5428
  msgid "Apply"
5429
  msgstr "Applica"
5430
 
@@ -5712,6 +5736,7 @@ msgstr "PayPal Website Payments Pro"
5712
  #: classes/gateways/class.pmprogateway_paypal.php:132
5713
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
5714
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
 
5715
  msgid "PayPal Settings"
5716
  msgstr "Impostazioni PayPal"
5717
 
@@ -5737,6 +5762,7 @@ msgstr "Vi raccomandiamo di non usare PayPal Standard. Vi consigliamo invece di
5737
  #: classes/gateways/class.pmprogateway_paypal.php:153
5738
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
5739
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
 
5740
  msgid "Gateway Account Email"
5741
  msgstr "Gateway Account Email"
5742
 
@@ -5758,6 +5784,7 @@ msgstr "Gateway Account Email"
5758
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
5759
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
5760
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
 
5761
  msgid "API Username"
5762
  msgstr "API Username"
5763
 
@@ -5779,6 +5806,7 @@ msgstr "API Username"
5779
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
5780
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
5781
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
 
5782
  msgid "API Password"
5783
  msgstr "API Password"
5784
 
@@ -5794,6 +5822,7 @@ msgstr "API Password"
5794
  #: classes/gateways/class.pmprogateway_paypal.php:177
5795
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
5796
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
 
5797
  msgid "API Signature"
5798
  msgstr "API Signature"
5799
 
@@ -5801,6 +5830,7 @@ msgstr "API Signature"
5801
  #: classes/gateways/class.pmprogateway_paypalexpress.php:182
5802
  #: classes/gateways/class.pmprogateway_paypal.php:185
5803
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
 
5804
  msgid "Confirmation Step"
5805
  msgstr "Conferma"
5806
 
@@ -5817,6 +5847,7 @@ msgstr "Conferma"
5817
  #: classes/gateways/class.pmprogateway_paypal.php:196
5818
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
5819
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
 
5820
  msgid "IPN Handler URL"
5821
  msgstr "IPN Handler URL"
5822
 
@@ -5846,6 +5877,7 @@ msgstr "Questa URL viene trasmessa a PayPal per tutti i nuovi pagamenti e sottos
5846
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
5847
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
5848
  #: pages/checkout.php:218
 
5849
  msgid "Check Out with PayPal"
5850
  msgstr "Paga con PayPal"
5851
 
@@ -5872,6 +5904,7 @@ msgstr "Paga con PayPal"
5872
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
5873
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5874
  #: pages/checkout.php:526
 
5875
  msgid "Submit and Check Out"
5876
  msgstr "Invia e Paga"
5877
 
@@ -5902,6 +5935,7 @@ msgstr "Invia e Paga"
5902
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5903
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
5904
  #: pages/checkout.php:526
 
5905
  msgid "Submit and Confirm"
5906
  msgstr "Invia e Conferma"
5907
 
@@ -5927,6 +5961,7 @@ msgstr "Invia e Conferma"
5927
  #: classes/gateways/class.pmprogateway_paypal.php:716
5928
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
5929
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
 
5930
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
5931
  msgstr "Ti preghiamo di contattare il proprietario del sito o cancellare la tua iscrizione da PayPal per esser sicuro che non ti vengano ancora addebitati altri importi in futuro."
5932
 
@@ -5942,6 +5977,7 @@ msgstr "Ti preghiamo di contattare il proprietario del sito o cancellare la tua
5942
  #: paid-memberships-pro.php:129
5943
  #: paid-memberships-pro.php:160
5944
  #: paid-memberships-pro.php:162
 
5945
  msgid "PayPal Express"
5946
  msgstr "PayPal Express"
5947
 
@@ -5954,6 +5990,7 @@ msgstr "PayPal Express"
5954
  #: classes/gateways/class.pmprogateway_paypalexpress.php:173
5955
  #: classes/gateways/class.pmprogateway_paypal.php:199
5956
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
 
5957
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
5958
  msgstr "Per l'integrazione completa con PayPal accertati di aver impostato l'IPN Handler URL come"
5959
 
@@ -5977,6 +6014,8 @@ msgstr "Per l'integrazione completa con PayPal accertati di aver impostato l'IPN
5977
  #: preheaders/checkout.php:823
5978
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
5979
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
 
 
5980
  msgid "The PayPal Token was lost."
5981
  msgstr "Il Token PayPal è stato perso."
5982
 
@@ -6021,6 +6060,7 @@ msgstr "Il %s gateway dipende dall'estensione %s PHP. Per favore abilitala, o ch
6021
  #: classes/gateways/class.pmprogateway_stripe.php:252
6022
  #: paid-memberships-pro.php:159
6023
  #: paid-memberships-pro.php:161
 
6024
  msgid "Stripe"
6025
  msgstr "Stripe"
6026
 
@@ -6045,6 +6085,7 @@ msgstr "Impostazioni Stripe"
6045
  #: classes/gateways/class.pmprogateway_stripe.php:539
6046
  #: classes/gateways/class.pmprogateway_stripe.php:551
6047
  #: classes/gateways/class.pmprogateway_stripe.php:570
 
6048
  msgid "Secret Key"
6049
  msgstr "Secret Key"
6050
 
@@ -6060,6 +6101,7 @@ msgstr "Secret Key"
6060
  #: classes/gateways/class.pmprogateway_stripe.php:523
6061
  #: classes/gateways/class.pmprogateway_stripe.php:535
6062
  #: classes/gateways/class.pmprogateway_stripe.php:554
 
6063
  msgid "Publishable Key"
6064
  msgstr "Publishable Key"
6065
 
@@ -6075,6 +6117,7 @@ msgstr "Publishable Key"
6075
  #: classes/gateways/class.pmprogateway_stripe.php:598
6076
  #: classes/gateways/class.pmprogateway_stripe.php:610
6077
  #: classes/gateways/class.pmprogateway_stripe.php:629
 
6078
  msgid "Show Billing Address Fields"
6079
  msgstr "Mostra Campi Indirizzo di Fatturazione"
6080
 
@@ -6089,6 +6132,7 @@ msgstr "Mostra Campi Indirizzo di Fatturazione"
6089
  #: classes/gateways/class.pmprogateway_stripe.php:607
6090
  #: classes/gateways/class.pmprogateway_stripe.php:619
6091
  #: classes/gateways/class.pmprogateway_stripe.php:638
 
6092
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
6093
  msgstr "Stripe non necessita dei campi per l'indirizzo di fatturazione. Selezionare 'No' per nascondere questi campi nella pagina di pagamento. <br /><strong> Se No, assicirarsi di disabilitare verifica dell'indirizzo nelle impostazioni della bacheca di Stripe</strong>"
6094
 
@@ -6117,6 +6161,7 @@ msgstr "Per l'integrazione completa con Stripe accertati di aver impostato il We
6117
  #: classes/gateways/class.pmprogateway_stripe.php:1379
6118
  #: classes/gateways/class.pmprogateway_stripe.php:1391
6119
  #: classes/gateways/class.pmprogateway_stripe.php:1410
 
6120
  msgid "Subscription Updates"
6121
  msgstr "Aggiornamenti Sottoscrizioni"
6122
 
@@ -6132,6 +6177,7 @@ msgstr "Aggiornamenti Sottoscrizioni"
6132
  #: classes/gateways/class.pmprogateway_stripe.php:1383
6133
  #: classes/gateways/class.pmprogateway_stripe.php:1395
6134
  #: classes/gateways/class.pmprogateway_stripe.php:1414
 
6135
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
6136
  msgstr "Aggiornamenti Sottoscrizione, ti consente di impostare i valori della sottoscrizione di un membro a scadenze predefinite. Accertati di cliccare Aggiorna Profilo dopo aver effettuato i cambiamenti."
6137
 
@@ -6147,6 +6193,7 @@ msgstr "Aggiornamenti Sottoscrizione, ti consente di impostare i valori della so
6147
  #: classes/gateways/class.pmprogateway_stripe.php:1385
6148
  #: classes/gateways/class.pmprogateway_stripe.php:1397
6149
  #: classes/gateways/class.pmprogateway_stripe.php:1416
 
6150
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
6151
  msgstr "Aggiornamenti Sottoscrizione, ti consente di impostare i valori della sottoscrizione di un membro a scadenze predefinite. Accertati di cliccare Aggiorna Profilo dopo aver effettuato i cambiamenti."
6152
 
@@ -6173,6 +6220,7 @@ msgstr "Aggiornamenti Sottoscrizione, ti consente di impostare i valori della so
6173
  #: pages/billing.php:425
6174
  #: classes/gateways/class.pmprogateway_stripe.php:1403
6175
  #: classes/gateways/class.pmprogateway_stripe.php:1422
 
6176
  msgid "Update"
6177
  msgstr "Aggiorna"
6178
 
@@ -6188,6 +6236,7 @@ msgstr "Aggiorna"
6188
  #: classes/gateways/class.pmprogateway_stripe.php:2480
6189
  #: classes/gateways/class.pmprogateway_stripe.php:2492
6190
  #: classes/gateways/class.pmprogateway_stripe.php:2514
 
6191
  msgid "Could not cancel the old subscription. Updates have not been processed."
6192
  msgstr "Non è possibile cancellare la vecchia iscrizione. Gli aggiornamenti non sono ancora stati eseguiti."
6193
 
@@ -6218,6 +6267,9 @@ msgstr "Non è possibile cancellare la vecchia iscrizione. Gli aggiornamenti non
6218
  #: classes/gateways/class.pmprogateway_stripe.php:2127
6219
  #: classes/gateways/class.pmprogateway_stripe.php:2132
6220
  #: classes/gateways/class.pmprogateway_stripe.php:2137
 
 
 
6221
  msgid "Error creating customer record with Stripe:"
6222
  msgstr "Errore nella creazione del cliente su Stripe:"
6223
 
@@ -6235,6 +6287,8 @@ msgstr "Errore nella creazione del cliente su Stripe:"
6235
  #: classes/gateways/class.pmprogateway_stripe.php:2182
6236
  #: classes/gateways/class.pmprogateway_stripe.php:2196
6237
  #: classes/gateways/class.pmprogateway_stripe.php:2201
 
 
6238
  msgid "Error getting subscription with Stripe:"
6239
  msgstr "Errore nella creazione dell'iscrizione con Stripe:"
6240
 
@@ -6270,6 +6324,8 @@ msgstr "Errore nella creazione dell'iscrizione con Stripe:"
6270
  #: classes/gateways/class.pmprogateway_stripe.php:2356
6271
  #: classes/gateways/class.pmprogateway_stripe.php:2373
6272
  #: classes/gateways/class.pmprogateway_stripe.php:2378
 
 
6273
  msgid "Error creating plan with Stripe:"
6274
  msgstr "Errore nella creazione del piano su Stripe:"
6275
 
@@ -6300,6 +6356,8 @@ msgstr "Errore nella creazione del piano su Stripe:"
6300
  #: classes/gateways/class.pmprogateway_stripe.php:2401
6301
  #: classes/gateways/class.pmprogateway_stripe.php:2409
6302
  #: classes/gateways/class.pmprogateway_stripe.php:2423
 
 
6303
  msgid "Error subscribing customer to plan with Stripe:"
6304
  msgstr "Errore nell'iscrizione del cliente su Stripe:"
6305
 
@@ -6324,6 +6382,7 @@ msgstr "Errore nell'iscrizione del cliente su Stripe:"
6324
  #: classes/gateways/class.pmprogateway_stripe.php:2632
6325
  #: classes/gateways/class.pmprogateway_stripe.php:2644
6326
  #: classes/gateways/class.pmprogateway_stripe.php:2666
 
6327
  msgid "Could not cancel old subscription."
6328
  msgstr "Non è possibile cancellare la vecchia iscrizione."
6329
 
@@ -6345,6 +6404,7 @@ msgstr "Non è possibile cancellare la vecchia iscrizione."
6345
  #: classes/gateways/class.pmprogateway_stripe.php:2648
6346
  #: classes/gateways/class.pmprogateway_stripe.php:2660
6347
  #: classes/gateways/class.pmprogateway_stripe.php:2682
 
6348
  msgid "Could not find the customer."
6349
  msgstr "Il Cliente non è stato trovato."
6350
 
@@ -6356,6 +6416,7 @@ msgstr "Il Cliente non è stato trovato."
6356
  #: classes/gateways/class.pmprogateway_stripe.php:2834
6357
  #: classes/gateways/class.pmprogateway_stripe.php:2850
6358
  #: classes/gateways/class.pmprogateway_stripe.php:2856
 
6359
  msgid "Error: "
6360
  msgstr "Errore: "
6361
 
@@ -6364,6 +6425,7 @@ msgstr "Errore: "
6364
  #: classes/gateways/class.pmprogateway_stripe.php:2836
6365
  #: classes/gateways/class.pmprogateway_stripe.php:2848
6366
  #: classes/gateways/class.pmprogateway_stripe.php:2870
 
6367
  #, php-format
6368
  msgid "Error: Unkown error while refunding charge #%s"
6369
  msgstr "Errore: Errore sconosciuto mentre veniva effettuato il rimborso #%s"
@@ -7639,6 +7701,7 @@ msgstr "La tua chiave di licenza è stata convalidata."
7639
 
7640
  #: includes/license.php:81
7641
  #: adminpages/license.php:43
 
7642
  msgid "Paid Memberships Pro Support License"
7643
  msgstr "Licenza Supporto Paid Memberships Pro"
7644
 
@@ -7658,6 +7721,7 @@ msgstr "Visita la pagina <a href=\"http://www.paidmembershipspro.com/login/?redi
7658
  #: adminpages/dashboard.php:174
7659
  #: adminpages/license.php:49
7660
  #: adminpages/dashboard.php:178
 
7661
  msgid "Your license is invalid or expired."
7662
  msgstr "La tua licenza non è valida o è scaduta."
7663
 
@@ -7668,6 +7732,7 @@ msgstr "<p><strong>Grazie!</strong> Una Chiave di Licenza valida <strong>%s</str
7668
 
7669
  #: includes/license.php:100
7670
  #: adminpages/license.php:59
 
7671
  msgid "Enter license key here..."
7672
  msgstr "Inserisci Chiave di Licenza qui..."
7673
 
@@ -7891,6 +7956,7 @@ msgstr "esci"
7891
  #: adminpages/dashboard.php:224
7892
  #: adminpages/dashboard.php:292
7893
  #: adminpages/orders.php:1343
 
7894
  msgid "Level"
7895
  msgstr "Livello"
7896
 
@@ -7963,6 +8029,7 @@ msgstr "Il pagamento è gestito da PayPal. <a href=\"http://www.paypal.com\">Eff
7963
  #: includes/profile.php:747
7964
  #: pages/billing.php:164
7965
  #: pages/checkout.php:234
 
7966
  msgid "First Name"
7967
  msgstr "Nome"
7968
 
@@ -7984,6 +8051,7 @@ msgstr "Nome"
7984
  #: includes/profile.php:748
7985
  #: pages/billing.php:168
7986
  #: pages/checkout.php:238
 
7987
  msgid "Last Name"
7988
  msgstr "Cognome"
7989
 
@@ -9241,6 +9309,7 @@ msgstr "Il codice <strong>%s</strong> è stato applicato all'ordine."
9241
  #: services/authnet-silent-post.php:144
9242
  #: services/authnet-silent-post.php:145
9243
  #: services/authnet-silent-post.php:173
 
9244
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
9245
  msgstr "<p>Un pagamento è in attesa di verifica da parte di Authorize.net.</p><p>Informazione di pagamento da Authorize.net"
9246
 
@@ -9323,6 +9392,8 @@ msgstr "Modifica il Profilo"
9323
  #: includes/profile.php:872
9324
  #: includes/profile.php:909
9325
  #: shortcodes/pmpro_account.php:195
 
 
9326
  msgid "Change Password"
9327
  msgstr "Cambia Password"
9328
 
@@ -9422,6 +9493,7 @@ msgstr "tutti"
9422
  #: adminpages/advancedsettings.php:316
9423
  #: includes/privacy.php:175
9424
  #: includes/profile.php:509
 
9425
  msgid "Never"
9426
  msgstr "Mai"
9427
 
@@ -9807,6 +9879,7 @@ msgstr ""
9807
 
9808
  #: adminpages/admin_header.php:152
9809
  #: classes/gateways/class.pmprogateway_stripe.php:76
 
9810
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
9811
  msgstr ""
9812
 
@@ -10079,6 +10152,7 @@ msgstr ""
10079
  #: adminpages/dashboard.php:177
10080
  #: adminpages/license.php:51
10081
  #: adminpages/dashboard.php:181
 
10082
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
10083
  msgstr ""
10084
 
@@ -10500,18 +10574,23 @@ msgid "Discount Code Applied"
10500
  msgstr ""
10501
 
10502
  #: adminpages/license.php:47
 
10503
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
10504
  msgstr ""
10505
 
10506
  #: adminpages/license.php:49
 
 
10507
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
10508
  msgstr ""
10509
 
10510
  #: adminpages/license.php:61
 
10511
  msgid "Validate Key"
10512
  msgstr ""
10513
 
10514
  #: adminpages/license.php:95
 
10515
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
10516
  msgstr ""
10517
 
@@ -11022,6 +11101,7 @@ msgstr ""
11022
 
11023
  #: classes/gateways/class.pmprogateway_braintree.php:87
11024
  #: classes/gateways/class.pmprogateway_stripe.php:91
 
11025
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
11026
  msgstr ""
11027
 
@@ -11319,6 +11399,7 @@ msgid "Your order has been refused."
11319
  msgstr ""
11320
 
11321
  #: classes/gateways/class.pmprogateway_cybersource.php:922
 
11322
  msgid "Unknown error."
11323
  msgstr ""
11324
 
@@ -11333,18 +11414,22 @@ msgstr ""
11333
  #: classes/gateways/class.pmprogateway_paypal.php:146
11334
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
11335
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
 
11336
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
11337
  msgstr ""
11338
 
11339
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
 
11340
  msgid "Checkout was already processed."
11341
  msgstr ""
11342
 
11343
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
 
11344
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
11345
  msgstr ""
11346
 
11347
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
 
11348
  msgid "Error creating plan with PayPal."
11349
  msgstr ""
11350
 
@@ -11356,11 +11441,14 @@ msgstr ""
11356
  #: classes/gateways/class.pmprogateway_stripe.php:436
11357
  #: classes/gateways/class.pmprogateway_stripe.php:354
11358
  #: classes/gateways/class.pmprogateway_stripe.php:444
 
 
11359
  msgid "Stripe Connect Settings"
11360
  msgstr ""
11361
 
11362
  #: classes/gateways/class.pmprogateway_stripe.php:352
11363
  #: classes/gateways/class.pmprogateway_stripe.php:356
 
11364
  msgid "Live Mode:"
11365
  msgstr ""
11366
 
@@ -11368,6 +11456,8 @@ msgstr ""
11368
  #: classes/gateways/class.pmprogateway_stripe.php:440
11369
  #: classes/gateways/class.pmprogateway_stripe.php:358
11370
  #: classes/gateways/class.pmprogateway_stripe.php:448
 
 
11371
  msgid "Connected"
11372
  msgstr ""
11373
 
@@ -11375,6 +11465,8 @@ msgstr ""
11375
  #: classes/gateways/class.pmprogateway_stripe.php:442
11376
  #: classes/gateways/class.pmprogateway_stripe.php:362
11377
  #: classes/gateways/class.pmprogateway_stripe.php:452
 
 
11378
  msgid "Not Connected"
11379
  msgstr ""
11380
 
@@ -11382,11 +11474,14 @@ msgstr ""
11382
  #: classes/gateways/class.pmprogateway_stripe.php:449
11383
  #: classes/gateways/class.pmprogateway_stripe.php:369
11384
  #: classes/gateways/class.pmprogateway_stripe.php:459
 
 
11385
  msgid "Your site is using legacy API keys to authenticate with Stripe."
11386
  msgstr ""
11387
 
11388
  #: classes/gateways/class.pmprogateway_stripe.php:364
11389
  #: classes/gateways/class.pmprogateway_stripe.php:371
 
11390
  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."
11391
  msgstr ""
11392
 
@@ -11394,6 +11489,8 @@ msgstr ""
11394
  #: classes/gateways/class.pmprogateway_stripe.php:458
11395
  #: classes/gateways/class.pmprogateway_stripe.php:380
11396
  #: classes/gateways/class.pmprogateway_stripe.php:470
 
 
11397
  msgid "Stripe Connection:"
11398
  msgstr ""
11399
 
@@ -11401,11 +11498,14 @@ msgstr ""
11401
  #: classes/gateways/class.pmprogateway_stripe.php:482
11402
  #: classes/gateways/class.pmprogateway_stripe.php:396
11403
  #: classes/gateways/class.pmprogateway_stripe.php:494
 
 
11404
  msgid "Disconnect From Stripe"
11405
  msgstr ""
11406
 
11407
  #: classes/gateways/class.pmprogateway_stripe.php:389
11408
  #: classes/gateways/class.pmprogateway_stripe.php:397
 
11409
  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."
11410
  msgstr ""
11411
 
@@ -11413,16 +11513,20 @@ msgstr ""
11413
  #: classes/gateways/class.pmprogateway_stripe.php:496
11414
  #: classes/gateways/class.pmprogateway_stripe.php:409
11415
  #: classes/gateways/class.pmprogateway_stripe.php:508
 
 
11416
  msgid "Connect with Stripe"
11417
  msgstr ""
11418
 
11419
  #: classes/gateways/class.pmprogateway_stripe.php:408
11420
  #: classes/gateways/class.pmprogateway_stripe.php:416
 
11421
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
11422
  msgstr ""
11423
 
11424
  #: classes/gateways/class.pmprogateway_stripe.php:411
11425
  #: classes/gateways/class.pmprogateway_stripe.php:419
 
11426
  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."
11427
  msgstr ""
11428
 
@@ -11433,6 +11537,9 @@ msgstr ""
11433
  #: classes/gateways/class.pmprogateway_stripe.php:519
11434
  #: classes/gateways/class.pmprogateway_stripe.php:559
11435
  #: classes/gateways/class.pmprogateway_stripe.php:578
 
 
 
11436
  msgid "Webhook"
11437
  msgstr ""
11438
 
@@ -11443,32 +11550,40 @@ msgstr ""
11443
  #: classes/gateways/class.pmprogateway_stripe.php:523
11444
  #: classes/gateways/class.pmprogateway_stripe.php:594
11445
  #: classes/gateways/class.pmprogateway_stripe.php:613
 
 
 
11446
  msgid "Webhook URL"
11447
  msgstr ""
11448
 
11449
  #: classes/gateways/class.pmprogateway_stripe.php:438
11450
  #: classes/gateways/class.pmprogateway_stripe.php:446
 
11451
  msgid "Test Mode:"
11452
  msgstr ""
11453
 
11454
  #: classes/gateways/class.pmprogateway_stripe.php:450
11455
  #: classes/gateways/class.pmprogateway_stripe.php:461
 
11456
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
11457
  msgstr ""
11458
 
11459
  #: classes/gateways/class.pmprogateway_stripe.php:483
11460
  #: classes/gateways/class.pmprogateway_stripe.php:495
 
11461
  msgid "This will disconnect your site from Stripe in test mode only."
11462
  msgstr ""
11463
 
11464
  #: classes/gateways/class.pmprogateway_stripe.php:518
11465
  #: classes/gateways/class.pmprogateway_stripe.php:530
 
11466
  msgid "Stripe API Settings (Legacy)"
11467
  msgstr ""
11468
 
11469
  #: classes/gateways/class.pmprogateway_stripe.php:531
11470
  #: classes/gateways/class.pmprogateway_stripe.php:543
11471
  #: classes/gateways/class.pmprogateway_stripe.php:562
 
11472
  msgid "Your Publishable Key appears incorrect."
11473
  msgstr ""
11474
 
@@ -11478,24 +11593,29 @@ msgstr ""
11478
  #: classes/gateways/class.pmprogateway_stripe.php:587
11479
  #: classes/gateways/class.pmprogateway_stripe.php:582
11480
  #: classes/gateways/class.pmprogateway_stripe.php:606
 
 
11481
  msgid "Create Webhook"
11482
  msgstr ""
11483
 
11484
  #: classes/gateways/class.pmprogateway_stripe.php:557
11485
  #: classes/gateways/class.pmprogateway_stripe.php:569
11486
  #: classes/gateways/class.pmprogateway_stripe.php:588
 
11487
  msgid "A webhook is set up in Stripe, but it is disabled."
11488
  msgstr ""
11489
 
11490
  #: classes/gateways/class.pmprogateway_stripe.php:564
11491
  #: classes/gateways/class.pmprogateway_stripe.php:576
11492
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
11493
  msgid "A webhook is set up in Stripe, but it is using an old API version."
11494
  msgstr ""
11495
 
11496
  #: classes/gateways/class.pmprogateway_stripe.php:564
11497
  #: classes/gateways/class.pmprogateway_stripe.php:576
11498
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
11499
  msgid "Rebuild Webhook"
11500
  msgstr ""
11501
 
@@ -11508,12 +11628,16 @@ msgstr ""
11508
  #: classes/gateways/class.pmprogateway_stripe.php:601
11509
  #: classes/gateways/class.pmprogateway_stripe.php:741
11510
  #: classes/gateways/class.pmprogateway_stripe.php:857
 
 
 
11511
  msgid "Your webhook is enabled."
11512
  msgstr ""
11513
 
11514
  #: classes/gateways/class.pmprogateway_stripe.php:570
11515
  #: classes/gateways/class.pmprogateway_stripe.php:582
11516
  #: classes/gateways/class.pmprogateway_stripe.php:601
 
11517
  msgid "Disable Webhook"
11518
  msgstr ""
11519
 
@@ -11529,66 +11653,80 @@ msgstr ""
11529
  #: classes/gateways/class.pmprogateway_stripe.php:768
11530
  #: classes/gateways/class.pmprogateway_stripe.php:785
11531
  #: classes/gateways/class.pmprogateway_stripe.php:819
 
 
 
 
11532
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
11533
  msgstr ""
11534
 
11535
  #: classes/gateways/class.pmprogateway_stripe.php:589
11536
  #: classes/gateways/class.pmprogateway_stripe.php:601
11537
  #: classes/gateways/class.pmprogateway_stripe.php:620
 
11538
  msgid "Other Stripe Settings"
11539
  msgstr ""
11540
 
11541
  #: classes/gateways/class.pmprogateway_stripe.php:593
11542
  #: classes/gateways/class.pmprogateway_stripe.php:605
11543
  #: classes/gateways/class.pmprogateway_stripe.php:624
 
11544
  msgid "Stripe API Version"
11545
  msgstr ""
11546
 
11547
  #: classes/gateways/class.pmprogateway_stripe.php:612
11548
  #: classes/gateways/class.pmprogateway_stripe.php:624
11549
  #: classes/gateways/class.pmprogateway_stripe.php:643
 
11550
  msgid "Enable Payment Request Button"
11551
  msgstr ""
11552
 
11553
  #: classes/gateways/class.pmprogateway_stripe.php:630
11554
  #: classes/gateways/class.pmprogateway_stripe.php:642
11555
  #: classes/gateways/class.pmprogateway_stripe.php:661
 
11556
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
11557
  msgstr ""
11558
 
11559
  #: classes/gateways/class.pmprogateway_stripe.php:643
11560
  #: classes/gateways/class.pmprogateway_stripe.php:655
11561
  #: classes/gateways/class.pmprogateway_stripe.php:674
 
11562
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
11563
  msgstr ""
11564
 
11565
  #: classes/gateways/class.pmprogateway_stripe.php:645
11566
  #: classes/gateways/class.pmprogateway_stripe.php:657
11567
  #: classes/gateways/class.pmprogateway_stripe.php:676
 
11568
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
11569
  msgstr ""
11570
 
11571
  #: classes/gateways/class.pmprogateway_stripe.php:647
11572
  #: classes/gateways/class.pmprogateway_stripe.php:659
11573
  #: classes/gateways/class.pmprogateway_stripe.php:678
 
11574
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
11575
  msgstr ""
11576
 
11577
  #: classes/gateways/class.pmprogateway_stripe.php:649
11578
  #: classes/gateways/class.pmprogateway_stripe.php:661
11579
  #: classes/gateways/class.pmprogateway_stripe.php:680
 
11580
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
11581
  msgstr ""
11582
 
11583
  #: classes/gateways/class.pmprogateway_stripe.php:674
11584
  #: classes/gateways/class.pmprogateway_stripe.php:686
11585
  #: classes/gateways/class.pmprogateway_stripe.php:705
 
11586
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
11587
  msgstr ""
11588
 
11589
  #: classes/gateways/class.pmprogateway_stripe.php:695
11590
  #: classes/gateways/class.pmprogateway_stripe.php:707
11591
  #: classes/gateways/class.pmprogateway_stripe.php:726
 
11592
  msgid "Webhook creation failed. You might already have a webhook set up."
11593
  msgstr ""
11594
 
@@ -11598,36 +11736,43 @@ msgstr ""
11598
  #: classes/gateways/class.pmprogateway_stripe.php:847
11599
  #: classes/gateways/class.pmprogateway_stripe.php:792
11600
  #: classes/gateways/class.pmprogateway_stripe.php:866
 
 
11601
  msgid "There was an error deleting the webhook."
11602
  msgstr ""
11603
 
11604
  #: classes/gateways/class.pmprogateway_stripe.php:811
11605
  #: classes/gateways/class.pmprogateway_stripe.php:823
11606
  #: classes/gateways/class.pmprogateway_stripe.php:842
 
11607
  msgid "Webhook creation failed. Please refresh and try again."
11608
  msgstr ""
11609
 
11610
  #: classes/gateways/class.pmprogateway_stripe.php:867
11611
  #: classes/gateways/class.pmprogateway_stripe.php:879
11612
  #: classes/gateways/class.pmprogateway_stripe.php:898
 
11613
  msgid "Verification steps confirmed. Your payment is processing."
11614
  msgstr ""
11615
 
11616
  #: classes/gateways/class.pmprogateway_stripe.php:1262
11617
  #: classes/gateways/class.pmprogateway_stripe.php:1274
11618
  #: classes/gateways/class.pmprogateway_stripe.php:1293
 
11619
  msgid "Pay with Credit Card"
11620
  msgstr ""
11621
 
11622
  #: classes/gateways/class.pmprogateway_stripe.php:1296
11623
  #: classes/gateways/class.pmprogateway_stripe.php:1308
11624
  #: classes/gateways/class.pmprogateway_stripe.php:1327
 
11625
  msgid "CVC"
11626
  msgstr ""
11627
 
11628
  #: classes/gateways/class.pmprogateway_stripe.php:1374
11629
  #: classes/gateways/class.pmprogateway_stripe.php:1386
11630
  #: classes/gateways/class.pmprogateway_stripe.php:1405
 
11631
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
11632
  msgstr ""
11633
 
@@ -11643,24 +11788,31 @@ msgstr ""
11643
  #: classes/gateways/class.pmprogateway_stripe.php:2016
11644
  #: classes/gateways/class.pmprogateway_stripe.php:2029
11645
  #: classes/gateways/class.pmprogateway_stripe.php:2033
 
 
 
 
11646
  msgid "Error: %s"
11647
  msgstr ""
11648
 
11649
  #: classes/gateways/class.pmprogateway_stripe.php:3330
11650
  #: classes/gateways/class.pmprogateway_stripe.php:3342
11651
  #: classes/gateways/class.pmprogateway_stripe.php:3364
 
11652
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
11653
  msgstr ""
11654
 
11655
  #: classes/gateways/class.pmprogateway_stripe.php:3347
11656
  #: classes/gateways/class.pmprogateway_stripe.php:3359
11657
  #: classes/gateways/class.pmprogateway_stripe.php:3381
 
11658
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
11659
  msgstr ""
11660
 
11661
  #: classes/gateways/class.pmprogateway_stripe.php:3533
11662
  #: classes/gateways/class.pmprogateway_stripe.php:3545
11663
  #: classes/gateways/class.pmprogateway_stripe.php:3567
 
11664
  msgid "Invalid response from the Stripe Connect server."
11665
  msgstr ""
11666
 
@@ -11668,6 +11820,7 @@ msgstr ""
11668
  #: classes/gateways/class.pmprogateway_stripe.php:3561
11669
  #: classes/gateways/class.pmprogateway_stripe.php:3573
11670
  #: classes/gateways/class.pmprogateway_stripe.php:3595
 
11671
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
11672
  msgstr ""
11673
 
@@ -11675,30 +11828,35 @@ msgstr ""
11675
  #: classes/gateways/class.pmprogateway_stripe.php:3597
11676
  #: classes/gateways/class.pmprogateway_stripe.php:3609
11677
  #: classes/gateways/class.pmprogateway_stripe.php:3631
 
11678
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
11679
  msgstr ""
11680
 
11681
  #: classes/gateways/class.pmprogateway_stripe.php:3768
11682
  #: classes/gateways/class.pmprogateway_stripe.php:3780
11683
  #: classes/gateways/class.pmprogateway_stripe.php:3802
 
11684
  msgid "Last webhook received at"
11685
  msgstr ""
11686
 
11687
  #: classes/gateways/class.pmprogateway_stripe.php:3770
11688
  #: classes/gateways/class.pmprogateway_stripe.php:3782
11689
  #: classes/gateways/class.pmprogateway_stripe.php:3804
 
11690
  msgid "No webhooks have been received."
11691
  msgstr ""
11692
 
11693
  #: classes/gateways/class.pmprogateway_stripe.php:3774
11694
  #: classes/gateways/class.pmprogateway_stripe.php:3786
11695
  #: classes/gateways/class.pmprogateway_stripe.php:3808
 
11696
  msgid "Your webhook may not be working correctly."
11697
  msgstr ""
11698
 
11699
  #: classes/gateways/class.pmprogateway_stripe.php:3776
11700
  #: classes/gateways/class.pmprogateway_stripe.php:3788
11701
  #: classes/gateways/class.pmprogateway_stripe.php:3810
 
11702
  msgid "Click here for info on setting up your webhook with Stripe."
11703
  msgstr ""
11704
 
@@ -13799,11 +13957,13 @@ msgstr ""
13799
 
13800
  #: includes/login.php:429
13801
  #: includes/profile.php:843
 
13802
  msgid "New passwords do not match."
13803
  msgstr ""
13804
 
13805
  #: includes/login.php:433
13806
  #: includes/profile.php:839
 
13807
  msgid "Please complete all fields."
13808
  msgstr ""
13809
 
@@ -13833,17 +13993,21 @@ msgstr ""
13833
 
13834
  #: includes/login.php:688
13835
  #: includes/profile.php:891
 
13836
  msgid "New Password"
13837
  msgstr ""
13838
 
13839
  #: includes/login.php:690
13840
  #: includes/profile.php:894
13841
  #: includes/scripts.php:86
 
 
13842
  msgid "Strength Indicator"
13843
  msgstr ""
13844
 
13845
  #: includes/login.php:694
13846
  #: includes/profile.php:898
 
13847
  msgid "Confirm New Password"
13848
  msgstr ""
13849
 
@@ -13940,21 +14104,25 @@ msgstr ""
13940
  #: includes/privacy.php:182
13941
  #: includes/profile.php:425
13942
  #: includes/profile.php:493
 
13943
  msgid "Level ID"
13944
  msgstr ""
13945
 
13946
  #: includes/privacy.php:190
13947
  #: includes/profile.php:496
 
13948
  msgid "Date Modified"
13949
  msgstr ""
13950
 
13951
  #: includes/privacy.php:194
13952
  #: includes/profile.php:497
 
13953
  msgid "End Date"
13954
  msgstr ""
13955
 
13956
  #: includes/privacy.php:198
13957
  #: includes/profile.php:498
 
13958
  msgid "Level Cost"
13959
  msgstr ""
13960
 
@@ -14053,68 +14221,85 @@ msgid "Membership Levels History"
14053
  msgstr ""
14054
 
14055
  #: includes/profile.php:485
 
14056
  msgid "No membership orders found."
14057
  msgstr ""
14058
 
14059
  #: includes/profile.php:537
 
14060
  msgid "No membership history found."
14061
  msgstr ""
14062
 
14063
  #: includes/profile.php:644
 
14064
  msgid "Log in to edit your profile."
14065
  msgstr ""
14066
 
14067
  #: includes/profile.php:679
 
14068
  msgid "Please enter a display name."
14069
  msgstr ""
14070
 
14071
  #: includes/profile.php:689
 
14072
  msgid "Please enter an email address."
14073
  msgstr ""
14074
 
14075
  #: includes/profile.php:691
 
14076
  msgid "The email address isn&#8217;t correct."
14077
  msgstr ""
14078
 
14079
  #: includes/profile.php:695
 
14080
  msgid "This email is already registered, please choose another one."
14081
  msgstr ""
14082
 
14083
  #: includes/profile.php:722
 
14084
  msgid "Your profile has been updated."
14085
  msgstr ""
14086
 
14087
  #: includes/profile.php:749
 
14088
  msgid "Display name publicly as"
14089
  msgstr ""
14090
 
14091
  #: includes/profile.php:762
 
14092
  msgid "Site administrators must use the WordPress dashboard to update their email address."
14093
  msgstr ""
14094
 
14095
  #: includes/profile.php:785
 
14096
  msgid "Update Profile"
14097
  msgstr ""
14098
 
14099
  #: includes/profile.php:841
 
14100
  msgid "Please enter your current password."
14101
  msgstr ""
14102
 
14103
  #: includes/profile.php:845
 
14104
  msgid "Your current password is incorrect."
14105
  msgstr ""
14106
 
14107
  #: includes/profile.php:856
 
14108
  msgid "Your password has been updated."
14109
  msgstr ""
14110
 
14111
  #: includes/profile.php:886
 
14112
  msgid "Current Password"
14113
  msgstr ""
14114
 
14115
  #: includes/profile.php:888
14116
  #: includes/profile.php:893
14117
  #: includes/profile.php:900
 
 
14118
  msgid "Required Field"
14119
  msgstr ""
14120
 
@@ -14199,10 +14384,12 @@ msgid "That email address is already in use. Please log in, or use a different e
14199
  msgstr ""
14200
 
14201
  #: services/braintree-webhook.php:425
 
14202
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
14203
  msgstr ""
14204
 
14205
  #: services/braintree-webhook.php:427
 
14206
  msgid "A member's Braintree subscription has expired at %s"
14207
  msgstr ""
14208
 
@@ -14521,16 +14708,22 @@ msgstr ""
14521
 
14522
  #: classes/gateways/class.pmprogateway_stripe.php:360
14523
  #: classes/gateways/class.pmprogateway_stripe.php:450
 
 
14524
  msgid "Connected with Legacy Keys"
14525
  msgstr ""
14526
 
14527
  #: classes/gateways/class.pmprogateway_stripe.php:370
14528
  #: classes/gateways/class.pmprogateway_stripe.php:460
 
 
14529
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
14530
  msgstr ""
14531
 
14532
  #: classes/gateways/class.pmprogateway_stripe.php:372
14533
  #: classes/gateways/class.pmprogateway_stripe.php:462
 
 
14534
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
14535
  msgstr ""
14536
 
@@ -14587,9 +14780,45 @@ msgid "missing"
14587
  msgstr ""
14588
 
14589
  #: classes/gateways/class.pmprogateway_stripe.php:533
 
14590
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
14591
  msgstr ""
14592
 
14593
  #: classes/gateways/class.pmprogateway_stripe.php:534
 
14594
  msgid "Click here to use the legacy API settings."
14595
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.3\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-10-11T14:00:45+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
297
  #: adminpages/orders.php:1544
298
  #: adminpages/orders.php:1554
299
  #: adminpages/orders.php:1553
300
+ #: includes/profile.php:520
301
+ #: includes/profile.php:521
302
+ #: includes/profile.php:522
303
  msgid "N/A"
304
  msgstr "N/A"
305
 
490
  #: adminpages/orders.php:391
491
  #: adminpages/orders.php:1445
492
  #: adminpages/orders.php:1448
493
+ #: includes/profile.php:762
494
  msgid "Email"
495
  msgstr "Email"
496
 
684
  #: adminpages/advancedsettings.php:479
685
  #: classes/gateways/class.pmprogateway_stripe.php:634
686
  #: classes/gateways/class.pmprogateway_stripe.php:648
687
+ #: classes/gateways/class.pmprogateway_stripe.php:640
688
+ #: classes/gateways/class.pmprogateway_stripe.php:654
689
  msgid "No"
690
  msgstr "No"
691
 
789
  #: adminpages/advancedsettings.php:397
790
  #: classes/gateways/class.pmprogateway_stripe.php:636
791
  #: classes/gateways/class.pmprogateway_stripe.php:650
792
+ #: classes/gateways/class.pmprogateway_stripe.php:642
793
+ #: classes/gateways/class.pmprogateway_stripe.php:656
794
  msgid "Yes"
795
  msgstr "Sì"
796
 
1103
  #: includes/privacy.php:186
1104
  #: includes/profile.php:495
1105
  #: adminpages/discountcodes.php:489
1106
+ #: includes/profile.php:501
1107
  msgid "Start Date"
1108
  msgstr "Data Inizio Validità"
1109
 
1149
  #: classes/gateways/class.pmprogateway_stripe.php:1301
1150
  #: adminpages/discountcodes.php:507
1151
  #: classes/gateways/class.pmprogateway_stripe.php:1320
1152
+ #: classes/gateways/class.pmprogateway_stripe.php:1326
1153
  msgid "Expiration Date"
1154
  msgstr "Data Scadenza"
1155
 
1304
  #: adminpages/discountcodes.php:612
1305
  #: adminpages/discountcodes.php:699
1306
  #: classes/gateways/class.pmprogateway_stripe.php:1363
1307
+ #: classes/gateways/class.pmprogateway_stripe.php:1369
1308
  msgid "Day(s)"
1309
  msgstr "Giorno(i)"
1310
 
1344
  #: adminpages/discountcodes.php:612
1345
  #: adminpages/discountcodes.php:699
1346
  #: classes/gateways/class.pmprogateway_stripe.php:1365
1347
+ #: classes/gateways/class.pmprogateway_stripe.php:1371
1348
  msgid "Month(s)"
1349
  msgstr "Mese(i)"
1350
 
1384
  #: adminpages/discountcodes.php:612
1385
  #: adminpages/discountcodes.php:699
1386
  #: classes/gateways/class.pmprogateway_stripe.php:1364
1387
+ #: classes/gateways/class.pmprogateway_stripe.php:1370
1388
  msgid "Week(s)"
1389
  msgstr "Settimana(e)"
1390
 
1424
  #: adminpages/discountcodes.php:612
1425
  #: adminpages/discountcodes.php:699
1426
  #: classes/gateways/class.pmprogateway_stripe.php:1366
1427
+ #: classes/gateways/class.pmprogateway_stripe.php:1372
1428
  msgid "Year(s)"
1429
  msgstr "Anno(i)"
1430
 
2062
  #: classes/gateways/class.pmprogateway_stripe.php:1478
2063
  #: adminpages/discountcodes.php:608
2064
  #: classes/gateways/class.pmprogateway_stripe.php:1497
2065
+ #: classes/gateways/class.pmprogateway_stripe.php:1503
2066
  msgid "per"
2067
  msgstr "ogni"
2068
 
2291
  #: pages/cancel.php:96
2292
  #: shortcodes/pmpro_account.php:106
2293
  #: adminpages/orders.php:968
2294
+ #: includes/profile.php:798
2295
+ #: includes/profile.php:922
2296
  msgid "Cancel"
2297
  msgstr "Annulla"
2298
 
3071
  #: adminpages/orders.php:679
3072
  #: classes/gateways/class.pmprogateway_stripe.php:1284
3073
  #: classes/gateways/class.pmprogateway_stripe.php:1303
3074
+ #: classes/gateways/class.pmprogateway_stripe.php:1309
3075
  msgid "Card Type"
3076
  msgstr "Tipo di carta"
3077
 
3166
  #: adminpages/dashboard.php:294
3167
  #: adminpages/orders.php:742
3168
  #: adminpages/orders.php:1348
3169
+ #: includes/profile.php:505
3170
  msgid "Status"
3171
  msgstr "Stato"
3172
 
4727
  #: classes/class.pmproemail.php:769
4728
  #: classes/class.pmproemail.php:771
4729
  #: classes/gateways/class.pmprogateway_stripe.php:1333
4730
+ #: classes/gateways/class.pmprogateway_stripe.php:1339
4731
  msgid "Discount Code"
4732
  msgstr "Codice Sconto"
4733
 
5258
  #: pages/checkout.php:366
5259
  #: classes/gateways/class.pmprogateway_stripe.php:1263
5260
  #: classes/gateways/class.pmprogateway_stripe.php:1282
5261
+ #: classes/gateways/class.pmprogateway_stripe.php:1288
5262
  msgid "Payment Information"
5263
  msgstr "Informazioni di Pagamento"
5264
 
5290
  #: pages/checkout.php:367
5291
  #: classes/gateways/class.pmprogateway_stripe.php:1264
5292
  #: classes/gateways/class.pmprogateway_stripe.php:1283
5293
+ #: classes/gateways/class.pmprogateway_stripe.php:1289
5294
  #, php-format
5295
  msgid "We Accept %s"
5296
  msgstr "Accettiamo %s"
5331
  #: pages/checkout.php:389
5332
  #: classes/gateways/class.pmprogateway_stripe.php:1297
5333
  #: classes/gateways/class.pmprogateway_stripe.php:1316
5334
+ #: classes/gateways/class.pmprogateway_stripe.php:1322
5335
  msgid "Card Number"
5336
  msgstr "Numero di Carta"
5337
 
5448
  #: pages/checkout.php:432
5449
  #: classes/gateways/class.pmprogateway_stripe.php:1319
5450
  #: classes/gateways/class.pmprogateway_stripe.php:1338
5451
+ #: classes/gateways/class.pmprogateway_stripe.php:1344
5452
  msgid "Apply"
5453
  msgstr "Applica"
5454
 
5736
  #: classes/gateways/class.pmprogateway_paypal.php:132
5737
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
5738
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
5739
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:151
5740
  msgid "PayPal Settings"
5741
  msgstr "Impostazioni PayPal"
5742
 
5762
  #: classes/gateways/class.pmprogateway_paypal.php:153
5763
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
5764
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
5765
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:172
5766
  msgid "Gateway Account Email"
5767
  msgstr "Gateway Account Email"
5768
 
5784
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
5785
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
5786
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
5787
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:180
5788
  msgid "API Username"
5789
  msgstr "API Username"
5790
 
5806
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
5807
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
5808
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
5809
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:188
5810
  msgid "API Password"
5811
  msgstr "API Password"
5812
 
5822
  #: classes/gateways/class.pmprogateway_paypal.php:177
5823
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
5824
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
5825
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:196
5826
  msgid "API Signature"
5827
  msgstr "API Signature"
5828
 
5830
  #: classes/gateways/class.pmprogateway_paypalexpress.php:182
5831
  #: classes/gateways/class.pmprogateway_paypal.php:185
5832
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
5833
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:204
5834
  msgid "Confirmation Step"
5835
  msgstr "Conferma"
5836
 
5847
  #: classes/gateways/class.pmprogateway_paypal.php:196
5848
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
5849
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
5850
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:215
5851
  msgid "IPN Handler URL"
5852
  msgstr "IPN Handler URL"
5853
 
5877
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
5878
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
5879
  #: pages/checkout.php:218
5880
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:498
5881
  msgid "Check Out with PayPal"
5882
  msgstr "Paga con PayPal"
5883
 
5904
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
5905
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5906
  #: pages/checkout.php:526
5907
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
5908
  msgid "Submit and Check Out"
5909
  msgstr "Invia e Paga"
5910
 
5935
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5936
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
5937
  #: pages/checkout.php:526
5938
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
5939
  msgid "Submit and Confirm"
5940
  msgstr "Invia e Conferma"
5941
 
5961
  #: classes/gateways/class.pmprogateway_paypal.php:716
5962
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
5963
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
5964
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:841
5965
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
5966
  msgstr "Ti preghiamo di contattare il proprietario del sito o cancellare la tua iscrizione da PayPal per esser sicuro che non ti vengano ancora addebitati altri importi in futuro."
5967
 
5977
  #: paid-memberships-pro.php:129
5978
  #: paid-memberships-pro.php:160
5979
  #: paid-memberships-pro.php:162
5980
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:94
5981
  msgid "PayPal Express"
5982
  msgstr "PayPal Express"
5983
 
5990
  #: classes/gateways/class.pmprogateway_paypalexpress.php:173
5991
  #: classes/gateways/class.pmprogateway_paypal.php:199
5992
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
5993
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:218
5994
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
5995
  msgstr "Per l'integrazione completa con PayPal accertati di aver impostato l'IPN Handler URL come"
5996
 
6014
  #: preheaders/checkout.php:823
6015
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
6016
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
6017
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:352
6018
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:411
6019
  msgid "The PayPal Token was lost."
6020
  msgstr "Il Token PayPal è stato perso."
6021
 
6060
  #: classes/gateways/class.pmprogateway_stripe.php:252
6061
  #: paid-memberships-pro.php:159
6062
  #: paid-memberships-pro.php:161
6063
+ #: classes/gateways/class.pmprogateway_stripe.php:258
6064
  msgid "Stripe"
6065
  msgstr "Stripe"
6066
 
6085
  #: classes/gateways/class.pmprogateway_stripe.php:539
6086
  #: classes/gateways/class.pmprogateway_stripe.php:551
6087
  #: classes/gateways/class.pmprogateway_stripe.php:570
6088
+ #: classes/gateways/class.pmprogateway_stripe.php:576
6089
  msgid "Secret Key"
6090
  msgstr "Secret Key"
6091
 
6101
  #: classes/gateways/class.pmprogateway_stripe.php:523
6102
  #: classes/gateways/class.pmprogateway_stripe.php:535
6103
  #: classes/gateways/class.pmprogateway_stripe.php:554
6104
+ #: classes/gateways/class.pmprogateway_stripe.php:560
6105
  msgid "Publishable Key"
6106
  msgstr "Publishable Key"
6107
 
6117
  #: classes/gateways/class.pmprogateway_stripe.php:598
6118
  #: classes/gateways/class.pmprogateway_stripe.php:610
6119
  #: classes/gateways/class.pmprogateway_stripe.php:629
6120
+ #: classes/gateways/class.pmprogateway_stripe.php:635
6121
  msgid "Show Billing Address Fields"
6122
  msgstr "Mostra Campi Indirizzo di Fatturazione"
6123
 
6132
  #: classes/gateways/class.pmprogateway_stripe.php:607
6133
  #: classes/gateways/class.pmprogateway_stripe.php:619
6134
  #: classes/gateways/class.pmprogateway_stripe.php:638
6135
+ #: classes/gateways/class.pmprogateway_stripe.php:644
6136
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
6137
  msgstr "Stripe non necessita dei campi per l'indirizzo di fatturazione. Selezionare 'No' per nascondere questi campi nella pagina di pagamento. <br /><strong> Se No, assicirarsi di disabilitare verifica dell'indirizzo nelle impostazioni della bacheca di Stripe</strong>"
6138
 
6161
  #: classes/gateways/class.pmprogateway_stripe.php:1379
6162
  #: classes/gateways/class.pmprogateway_stripe.php:1391
6163
  #: classes/gateways/class.pmprogateway_stripe.php:1410
6164
+ #: classes/gateways/class.pmprogateway_stripe.php:1416
6165
  msgid "Subscription Updates"
6166
  msgstr "Aggiornamenti Sottoscrizioni"
6167
 
6177
  #: classes/gateways/class.pmprogateway_stripe.php:1383
6178
  #: classes/gateways/class.pmprogateway_stripe.php:1395
6179
  #: classes/gateways/class.pmprogateway_stripe.php:1414
6180
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
6181
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
6182
  msgstr "Aggiornamenti Sottoscrizione, ti consente di impostare i valori della sottoscrizione di un membro a scadenze predefinite. Accertati di cliccare Aggiorna Profilo dopo aver effettuato i cambiamenti."
6183
 
6193
  #: classes/gateways/class.pmprogateway_stripe.php:1385
6194
  #: classes/gateways/class.pmprogateway_stripe.php:1397
6195
  #: classes/gateways/class.pmprogateway_stripe.php:1416
6196
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
6197
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
6198
  msgstr "Aggiornamenti Sottoscrizione, ti consente di impostare i valori della sottoscrizione di un membro a scadenze predefinite. Accertati di cliccare Aggiorna Profilo dopo aver effettuato i cambiamenti."
6199
 
6220
  #: pages/billing.php:425
6221
  #: classes/gateways/class.pmprogateway_stripe.php:1403
6222
  #: classes/gateways/class.pmprogateway_stripe.php:1422
6223
+ #: classes/gateways/class.pmprogateway_stripe.php:1428
6224
  msgid "Update"
6225
  msgstr "Aggiorna"
6226
 
6236
  #: classes/gateways/class.pmprogateway_stripe.php:2480
6237
  #: classes/gateways/class.pmprogateway_stripe.php:2492
6238
  #: classes/gateways/class.pmprogateway_stripe.php:2514
6239
+ #: classes/gateways/class.pmprogateway_stripe.php:2520
6240
  msgid "Could not cancel the old subscription. Updates have not been processed."
6241
  msgstr "Non è possibile cancellare la vecchia iscrizione. Gli aggiornamenti non sono ancora stati eseguiti."
6242
 
6267
  #: classes/gateways/class.pmprogateway_stripe.php:2127
6268
  #: classes/gateways/class.pmprogateway_stripe.php:2132
6269
  #: classes/gateways/class.pmprogateway_stripe.php:2137
6270
+ #: classes/gateways/class.pmprogateway_stripe.php:2133
6271
+ #: classes/gateways/class.pmprogateway_stripe.php:2138
6272
+ #: classes/gateways/class.pmprogateway_stripe.php:2143
6273
  msgid "Error creating customer record with Stripe:"
6274
  msgstr "Errore nella creazione del cliente su Stripe:"
6275
 
6287
  #: classes/gateways/class.pmprogateway_stripe.php:2182
6288
  #: classes/gateways/class.pmprogateway_stripe.php:2196
6289
  #: classes/gateways/class.pmprogateway_stripe.php:2201
6290
+ #: classes/gateways/class.pmprogateway_stripe.php:2202
6291
+ #: classes/gateways/class.pmprogateway_stripe.php:2207
6292
  msgid "Error getting subscription with Stripe:"
6293
  msgstr "Errore nella creazione dell'iscrizione con Stripe:"
6294
 
6324
  #: classes/gateways/class.pmprogateway_stripe.php:2356
6325
  #: classes/gateways/class.pmprogateway_stripe.php:2373
6326
  #: classes/gateways/class.pmprogateway_stripe.php:2378
6327
+ #: classes/gateways/class.pmprogateway_stripe.php:2379
6328
+ #: classes/gateways/class.pmprogateway_stripe.php:2384
6329
  msgid "Error creating plan with Stripe:"
6330
  msgstr "Errore nella creazione del piano su Stripe:"
6331
 
6356
  #: classes/gateways/class.pmprogateway_stripe.php:2401
6357
  #: classes/gateways/class.pmprogateway_stripe.php:2409
6358
  #: classes/gateways/class.pmprogateway_stripe.php:2423
6359
+ #: classes/gateways/class.pmprogateway_stripe.php:2415
6360
+ #: classes/gateways/class.pmprogateway_stripe.php:2429
6361
  msgid "Error subscribing customer to plan with Stripe:"
6362
  msgstr "Errore nell'iscrizione del cliente su Stripe:"
6363
 
6382
  #: classes/gateways/class.pmprogateway_stripe.php:2632
6383
  #: classes/gateways/class.pmprogateway_stripe.php:2644
6384
  #: classes/gateways/class.pmprogateway_stripe.php:2666
6385
+ #: classes/gateways/class.pmprogateway_stripe.php:2672
6386
  msgid "Could not cancel old subscription."
6387
  msgstr "Non è possibile cancellare la vecchia iscrizione."
6388
 
6404
  #: classes/gateways/class.pmprogateway_stripe.php:2648
6405
  #: classes/gateways/class.pmprogateway_stripe.php:2660
6406
  #: classes/gateways/class.pmprogateway_stripe.php:2682
6407
+ #: classes/gateways/class.pmprogateway_stripe.php:2688
6408
  msgid "Could not find the customer."
6409
  msgstr "Il Cliente non è stato trovato."
6410
 
6416
  #: classes/gateways/class.pmprogateway_stripe.php:2834
6417
  #: classes/gateways/class.pmprogateway_stripe.php:2850
6418
  #: classes/gateways/class.pmprogateway_stripe.php:2856
6419
+ #: classes/gateways/class.pmprogateway_stripe.php:2862
6420
  msgid "Error: "
6421
  msgstr "Errore: "
6422
 
6425
  #: classes/gateways/class.pmprogateway_stripe.php:2836
6426
  #: classes/gateways/class.pmprogateway_stripe.php:2848
6427
  #: classes/gateways/class.pmprogateway_stripe.php:2870
6428
+ #: classes/gateways/class.pmprogateway_stripe.php:2876
6429
  #, php-format
6430
  msgid "Error: Unkown error while refunding charge #%s"
6431
  msgstr "Errore: Errore sconosciuto mentre veniva effettuato il rimborso #%s"
7701
 
7702
  #: includes/license.php:81
7703
  #: adminpages/license.php:43
7704
+ #: adminpages/license.php:33
7705
  msgid "Paid Memberships Pro Support License"
7706
  msgstr "Licenza Supporto Paid Memberships Pro"
7707
 
7721
  #: adminpages/dashboard.php:174
7722
  #: adminpages/license.php:49
7723
  #: adminpages/dashboard.php:178
7724
+ #: adminpages/license.php:41
7725
  msgid "Your license is invalid or expired."
7726
  msgstr "La tua licenza non è valida o è scaduta."
7727
 
7732
 
7733
  #: includes/license.php:100
7734
  #: adminpages/license.php:59
7735
+ #: adminpages/license.php:51
7736
  msgid "Enter license key here..."
7737
  msgstr "Inserisci Chiave di Licenza qui..."
7738
 
7956
  #: adminpages/dashboard.php:224
7957
  #: adminpages/dashboard.php:292
7958
  #: adminpages/orders.php:1343
7959
+ #: includes/profile.php:500
7960
  msgid "Level"
7961
  msgstr "Livello"
7962
 
8029
  #: includes/profile.php:747
8030
  #: pages/billing.php:164
8031
  #: pages/checkout.php:234
8032
+ #: includes/profile.php:759
8033
  msgid "First Name"
8034
  msgstr "Nome"
8035
 
8051
  #: includes/profile.php:748
8052
  #: pages/billing.php:168
8053
  #: pages/checkout.php:238
8054
+ #: includes/profile.php:760
8055
  msgid "Last Name"
8056
  msgstr "Cognome"
8057
 
9309
  #: services/authnet-silent-post.php:144
9310
  #: services/authnet-silent-post.php:145
9311
  #: services/authnet-silent-post.php:173
9312
+ #: services/authnet-silent-post.php:176
9313
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
9314
  msgstr "<p>Un pagamento è in attesa di verifica da parte di Authorize.net.</p><p>Informazione di pagamento da Authorize.net"
9315
 
9392
  #: includes/profile.php:872
9393
  #: includes/profile.php:909
9394
  #: shortcodes/pmpro_account.php:195
9395
+ #: includes/profile.php:884
9396
+ #: includes/profile.php:921
9397
  msgid "Change Password"
9398
  msgstr "Cambia Password"
9399
 
9493
  #: adminpages/advancedsettings.php:316
9494
  #: includes/privacy.php:175
9495
  #: includes/profile.php:509
9496
+ #: includes/profile.php:515
9497
  msgid "Never"
9498
  msgstr "Mai"
9499
 
9879
 
9880
  #: adminpages/admin_header.php:152
9881
  #: classes/gateways/class.pmprogateway_stripe.php:76
9882
+ #: classes/gateways/class.pmprogateway_stripe.php:82
9883
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
9884
  msgstr ""
9885
 
10152
  #: adminpages/dashboard.php:177
10153
  #: adminpages/license.php:51
10154
  #: adminpages/dashboard.php:181
10155
+ #: adminpages/license.php:43
10156
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
10157
  msgstr ""
10158
 
10574
  msgstr ""
10575
 
10576
  #: adminpages/license.php:47
10577
+ #: adminpages/license.php:39
10578
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
10579
  msgstr ""
10580
 
10581
  #: adminpages/license.php:49
10582
+ #: adminpages/license.php:37
10583
+ #: adminpages/license.php:41
10584
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
10585
  msgstr ""
10586
 
10587
  #: adminpages/license.php:61
10588
+ #: adminpages/license.php:53
10589
  msgid "Validate Key"
10590
  msgstr ""
10591
 
10592
  #: adminpages/license.php:95
10593
+ #: adminpages/license.php:87
10594
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
10595
  msgstr ""
10596
 
11101
 
11102
  #: classes/gateways/class.pmprogateway_braintree.php:87
11103
  #: classes/gateways/class.pmprogateway_stripe.php:91
11104
+ #: classes/gateways/class.pmprogateway_stripe.php:97
11105
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
11106
  msgstr ""
11107
 
11399
  msgstr ""
11400
 
11401
  #: classes/gateways/class.pmprogateway_cybersource.php:922
11402
+ #: includes/license.php:159
11403
  msgid "Unknown error."
11404
  msgstr ""
11405
 
11414
  #: classes/gateways/class.pmprogateway_paypal.php:146
11415
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
11416
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
11417
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:165
11418
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
11419
  msgstr ""
11420
 
11421
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
11422
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:356
11423
  msgid "Checkout was already processed."
11424
  msgstr ""
11425
 
11426
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
11427
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:791
11428
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
11429
  msgstr ""
11430
 
11431
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
11432
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:792
11433
  msgid "Error creating plan with PayPal."
11434
  msgstr ""
11435
 
11441
  #: classes/gateways/class.pmprogateway_stripe.php:436
11442
  #: classes/gateways/class.pmprogateway_stripe.php:354
11443
  #: classes/gateways/class.pmprogateway_stripe.php:444
11444
+ #: classes/gateways/class.pmprogateway_stripe.php:360
11445
+ #: classes/gateways/class.pmprogateway_stripe.php:450
11446
  msgid "Stripe Connect Settings"
11447
  msgstr ""
11448
 
11449
  #: classes/gateways/class.pmprogateway_stripe.php:352
11450
  #: classes/gateways/class.pmprogateway_stripe.php:356
11451
+ #: classes/gateways/class.pmprogateway_stripe.php:362
11452
  msgid "Live Mode:"
11453
  msgstr ""
11454
 
11456
  #: classes/gateways/class.pmprogateway_stripe.php:440
11457
  #: classes/gateways/class.pmprogateway_stripe.php:358
11458
  #: classes/gateways/class.pmprogateway_stripe.php:448
11459
+ #: classes/gateways/class.pmprogateway_stripe.php:364
11460
+ #: classes/gateways/class.pmprogateway_stripe.php:454
11461
  msgid "Connected"
11462
  msgstr ""
11463
 
11465
  #: classes/gateways/class.pmprogateway_stripe.php:442
11466
  #: classes/gateways/class.pmprogateway_stripe.php:362
11467
  #: classes/gateways/class.pmprogateway_stripe.php:452
11468
+ #: classes/gateways/class.pmprogateway_stripe.php:368
11469
+ #: classes/gateways/class.pmprogateway_stripe.php:458
11470
  msgid "Not Connected"
11471
  msgstr ""
11472
 
11474
  #: classes/gateways/class.pmprogateway_stripe.php:449
11475
  #: classes/gateways/class.pmprogateway_stripe.php:369
11476
  #: classes/gateways/class.pmprogateway_stripe.php:459
11477
+ #: classes/gateways/class.pmprogateway_stripe.php:375
11478
+ #: classes/gateways/class.pmprogateway_stripe.php:465
11479
  msgid "Your site is using legacy API keys to authenticate with Stripe."
11480
  msgstr ""
11481
 
11482
  #: classes/gateways/class.pmprogateway_stripe.php:364
11483
  #: classes/gateways/class.pmprogateway_stripe.php:371
11484
+ #: classes/gateways/class.pmprogateway_stripe.php:377
11485
  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."
11486
  msgstr ""
11487
 
11489
  #: classes/gateways/class.pmprogateway_stripe.php:458
11490
  #: classes/gateways/class.pmprogateway_stripe.php:380
11491
  #: classes/gateways/class.pmprogateway_stripe.php:470
11492
+ #: classes/gateways/class.pmprogateway_stripe.php:386
11493
+ #: classes/gateways/class.pmprogateway_stripe.php:476
11494
  msgid "Stripe Connection:"
11495
  msgstr ""
11496
 
11498
  #: classes/gateways/class.pmprogateway_stripe.php:482
11499
  #: classes/gateways/class.pmprogateway_stripe.php:396
11500
  #: classes/gateways/class.pmprogateway_stripe.php:494
11501
+ #: classes/gateways/class.pmprogateway_stripe.php:402
11502
+ #: classes/gateways/class.pmprogateway_stripe.php:500
11503
  msgid "Disconnect From Stripe"
11504
  msgstr ""
11505
 
11506
  #: classes/gateways/class.pmprogateway_stripe.php:389
11507
  #: classes/gateways/class.pmprogateway_stripe.php:397
11508
+ #: classes/gateways/class.pmprogateway_stripe.php:403
11509
  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."
11510
  msgstr ""
11511
 
11513
  #: classes/gateways/class.pmprogateway_stripe.php:496
11514
  #: classes/gateways/class.pmprogateway_stripe.php:409
11515
  #: classes/gateways/class.pmprogateway_stripe.php:508
11516
+ #: classes/gateways/class.pmprogateway_stripe.php:415
11517
+ #: classes/gateways/class.pmprogateway_stripe.php:514
11518
  msgid "Connect with Stripe"
11519
  msgstr ""
11520
 
11521
  #: classes/gateways/class.pmprogateway_stripe.php:408
11522
  #: classes/gateways/class.pmprogateway_stripe.php:416
11523
+ #: classes/gateways/class.pmprogateway_stripe.php:422
11524
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
11525
  msgstr ""
11526
 
11527
  #: classes/gateways/class.pmprogateway_stripe.php:411
11528
  #: classes/gateways/class.pmprogateway_stripe.php:419
11529
+ #: classes/gateways/class.pmprogateway_stripe.php:425
11530
  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."
11531
  msgstr ""
11532
 
11537
  #: classes/gateways/class.pmprogateway_stripe.php:519
11538
  #: classes/gateways/class.pmprogateway_stripe.php:559
11539
  #: classes/gateways/class.pmprogateway_stripe.php:578
11540
+ #: classes/gateways/class.pmprogateway_stripe.php:437
11541
+ #: classes/gateways/class.pmprogateway_stripe.php:525
11542
+ #: classes/gateways/class.pmprogateway_stripe.php:584
11543
  msgid "Webhook"
11544
  msgstr ""
11545
 
11550
  #: classes/gateways/class.pmprogateway_stripe.php:523
11551
  #: classes/gateways/class.pmprogateway_stripe.php:594
11552
  #: classes/gateways/class.pmprogateway_stripe.php:613
11553
+ #: classes/gateways/class.pmprogateway_stripe.php:441
11554
+ #: classes/gateways/class.pmprogateway_stripe.php:529
11555
+ #: classes/gateways/class.pmprogateway_stripe.php:619
11556
  msgid "Webhook URL"
11557
  msgstr ""
11558
 
11559
  #: classes/gateways/class.pmprogateway_stripe.php:438
11560
  #: classes/gateways/class.pmprogateway_stripe.php:446
11561
+ #: classes/gateways/class.pmprogateway_stripe.php:452
11562
  msgid "Test Mode:"
11563
  msgstr ""
11564
 
11565
  #: classes/gateways/class.pmprogateway_stripe.php:450
11566
  #: classes/gateways/class.pmprogateway_stripe.php:461
11567
+ #: classes/gateways/class.pmprogateway_stripe.php:467
11568
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
11569
  msgstr ""
11570
 
11571
  #: classes/gateways/class.pmprogateway_stripe.php:483
11572
  #: classes/gateways/class.pmprogateway_stripe.php:495
11573
+ #: classes/gateways/class.pmprogateway_stripe.php:501
11574
  msgid "This will disconnect your site from Stripe in test mode only."
11575
  msgstr ""
11576
 
11577
  #: classes/gateways/class.pmprogateway_stripe.php:518
11578
  #: classes/gateways/class.pmprogateway_stripe.php:530
11579
+ #: classes/gateways/class.pmprogateway_stripe.php:536
11580
  msgid "Stripe API Settings (Legacy)"
11581
  msgstr ""
11582
 
11583
  #: classes/gateways/class.pmprogateway_stripe.php:531
11584
  #: classes/gateways/class.pmprogateway_stripe.php:543
11585
  #: classes/gateways/class.pmprogateway_stripe.php:562
11586
+ #: classes/gateways/class.pmprogateway_stripe.php:568
11587
  msgid "Your Publishable Key appears incorrect."
11588
  msgstr ""
11589
 
11593
  #: classes/gateways/class.pmprogateway_stripe.php:587
11594
  #: classes/gateways/class.pmprogateway_stripe.php:582
11595
  #: classes/gateways/class.pmprogateway_stripe.php:606
11596
+ #: classes/gateways/class.pmprogateway_stripe.php:588
11597
+ #: classes/gateways/class.pmprogateway_stripe.php:612
11598
  msgid "Create Webhook"
11599
  msgstr ""
11600
 
11601
  #: classes/gateways/class.pmprogateway_stripe.php:557
11602
  #: classes/gateways/class.pmprogateway_stripe.php:569
11603
  #: classes/gateways/class.pmprogateway_stripe.php:588
11604
+ #: classes/gateways/class.pmprogateway_stripe.php:594
11605
  msgid "A webhook is set up in Stripe, but it is disabled."
11606
  msgstr ""
11607
 
11608
  #: classes/gateways/class.pmprogateway_stripe.php:564
11609
  #: classes/gateways/class.pmprogateway_stripe.php:576
11610
  #: classes/gateways/class.pmprogateway_stripe.php:595
11611
+ #: classes/gateways/class.pmprogateway_stripe.php:601
11612
  msgid "A webhook is set up in Stripe, but it is using an old API version."
11613
  msgstr ""
11614
 
11615
  #: classes/gateways/class.pmprogateway_stripe.php:564
11616
  #: classes/gateways/class.pmprogateway_stripe.php:576
11617
  #: classes/gateways/class.pmprogateway_stripe.php:595
11618
+ #: classes/gateways/class.pmprogateway_stripe.php:601
11619
  msgid "Rebuild Webhook"
11620
  msgstr ""
11621
 
11628
  #: classes/gateways/class.pmprogateway_stripe.php:601
11629
  #: classes/gateways/class.pmprogateway_stripe.php:741
11630
  #: classes/gateways/class.pmprogateway_stripe.php:857
11631
+ #: classes/gateways/class.pmprogateway_stripe.php:607
11632
+ #: classes/gateways/class.pmprogateway_stripe.php:747
11633
+ #: classes/gateways/class.pmprogateway_stripe.php:863
11634
  msgid "Your webhook is enabled."
11635
  msgstr ""
11636
 
11637
  #: classes/gateways/class.pmprogateway_stripe.php:570
11638
  #: classes/gateways/class.pmprogateway_stripe.php:582
11639
  #: classes/gateways/class.pmprogateway_stripe.php:601
11640
+ #: classes/gateways/class.pmprogateway_stripe.php:607
11641
  msgid "Disable Webhook"
11642
  msgstr ""
11643
 
11653
  #: classes/gateways/class.pmprogateway_stripe.php:768
11654
  #: classes/gateways/class.pmprogateway_stripe.php:785
11655
  #: classes/gateways/class.pmprogateway_stripe.php:819
11656
+ #: classes/gateways/class.pmprogateway_stripe.php:614
11657
+ #: classes/gateways/class.pmprogateway_stripe.php:774
11658
+ #: classes/gateways/class.pmprogateway_stripe.php:791
11659
+ #: classes/gateways/class.pmprogateway_stripe.php:825
11660
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
11661
  msgstr ""
11662
 
11663
  #: classes/gateways/class.pmprogateway_stripe.php:589
11664
  #: classes/gateways/class.pmprogateway_stripe.php:601
11665
  #: classes/gateways/class.pmprogateway_stripe.php:620
11666
+ #: classes/gateways/class.pmprogateway_stripe.php:626
11667
  msgid "Other Stripe Settings"
11668
  msgstr ""
11669
 
11670
  #: classes/gateways/class.pmprogateway_stripe.php:593
11671
  #: classes/gateways/class.pmprogateway_stripe.php:605
11672
  #: classes/gateways/class.pmprogateway_stripe.php:624
11673
+ #: classes/gateways/class.pmprogateway_stripe.php:630
11674
  msgid "Stripe API Version"
11675
  msgstr ""
11676
 
11677
  #: classes/gateways/class.pmprogateway_stripe.php:612
11678
  #: classes/gateways/class.pmprogateway_stripe.php:624
11679
  #: classes/gateways/class.pmprogateway_stripe.php:643
11680
+ #: classes/gateways/class.pmprogateway_stripe.php:649
11681
  msgid "Enable Payment Request Button"
11682
  msgstr ""
11683
 
11684
  #: classes/gateways/class.pmprogateway_stripe.php:630
11685
  #: classes/gateways/class.pmprogateway_stripe.php:642
11686
  #: classes/gateways/class.pmprogateway_stripe.php:661
11687
+ #: classes/gateways/class.pmprogateway_stripe.php:667
11688
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
11689
  msgstr ""
11690
 
11691
  #: classes/gateways/class.pmprogateway_stripe.php:643
11692
  #: classes/gateways/class.pmprogateway_stripe.php:655
11693
  #: classes/gateways/class.pmprogateway_stripe.php:674
11694
+ #: classes/gateways/class.pmprogateway_stripe.php:680
11695
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
11696
  msgstr ""
11697
 
11698
  #: classes/gateways/class.pmprogateway_stripe.php:645
11699
  #: classes/gateways/class.pmprogateway_stripe.php:657
11700
  #: classes/gateways/class.pmprogateway_stripe.php:676
11701
+ #: classes/gateways/class.pmprogateway_stripe.php:682
11702
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
11703
  msgstr ""
11704
 
11705
  #: classes/gateways/class.pmprogateway_stripe.php:647
11706
  #: classes/gateways/class.pmprogateway_stripe.php:659
11707
  #: classes/gateways/class.pmprogateway_stripe.php:678
11708
+ #: classes/gateways/class.pmprogateway_stripe.php:684
11709
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
11710
  msgstr ""
11711
 
11712
  #: classes/gateways/class.pmprogateway_stripe.php:649
11713
  #: classes/gateways/class.pmprogateway_stripe.php:661
11714
  #: classes/gateways/class.pmprogateway_stripe.php:680
11715
+ #: classes/gateways/class.pmprogateway_stripe.php:686
11716
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
11717
  msgstr ""
11718
 
11719
  #: classes/gateways/class.pmprogateway_stripe.php:674
11720
  #: classes/gateways/class.pmprogateway_stripe.php:686
11721
  #: classes/gateways/class.pmprogateway_stripe.php:705
11722
+ #: classes/gateways/class.pmprogateway_stripe.php:711
11723
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
11724
  msgstr ""
11725
 
11726
  #: classes/gateways/class.pmprogateway_stripe.php:695
11727
  #: classes/gateways/class.pmprogateway_stripe.php:707
11728
  #: classes/gateways/class.pmprogateway_stripe.php:726
11729
+ #: classes/gateways/class.pmprogateway_stripe.php:732
11730
  msgid "Webhook creation failed. You might already have a webhook set up."
11731
  msgstr ""
11732
 
11736
  #: classes/gateways/class.pmprogateway_stripe.php:847
11737
  #: classes/gateways/class.pmprogateway_stripe.php:792
11738
  #: classes/gateways/class.pmprogateway_stripe.php:866
11739
+ #: classes/gateways/class.pmprogateway_stripe.php:798
11740
+ #: classes/gateways/class.pmprogateway_stripe.php:872
11741
  msgid "There was an error deleting the webhook."
11742
  msgstr ""
11743
 
11744
  #: classes/gateways/class.pmprogateway_stripe.php:811
11745
  #: classes/gateways/class.pmprogateway_stripe.php:823
11746
  #: classes/gateways/class.pmprogateway_stripe.php:842
11747
+ #: classes/gateways/class.pmprogateway_stripe.php:848
11748
  msgid "Webhook creation failed. Please refresh and try again."
11749
  msgstr ""
11750
 
11751
  #: classes/gateways/class.pmprogateway_stripe.php:867
11752
  #: classes/gateways/class.pmprogateway_stripe.php:879
11753
  #: classes/gateways/class.pmprogateway_stripe.php:898
11754
+ #: classes/gateways/class.pmprogateway_stripe.php:904
11755
  msgid "Verification steps confirmed. Your payment is processing."
11756
  msgstr ""
11757
 
11758
  #: classes/gateways/class.pmprogateway_stripe.php:1262
11759
  #: classes/gateways/class.pmprogateway_stripe.php:1274
11760
  #: classes/gateways/class.pmprogateway_stripe.php:1293
11761
+ #: classes/gateways/class.pmprogateway_stripe.php:1299
11762
  msgid "Pay with Credit Card"
11763
  msgstr ""
11764
 
11765
  #: classes/gateways/class.pmprogateway_stripe.php:1296
11766
  #: classes/gateways/class.pmprogateway_stripe.php:1308
11767
  #: classes/gateways/class.pmprogateway_stripe.php:1327
11768
+ #: classes/gateways/class.pmprogateway_stripe.php:1333
11769
  msgid "CVC"
11770
  msgstr ""
11771
 
11772
  #: classes/gateways/class.pmprogateway_stripe.php:1374
11773
  #: classes/gateways/class.pmprogateway_stripe.php:1386
11774
  #: classes/gateways/class.pmprogateway_stripe.php:1405
11775
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
11776
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
11777
  msgstr ""
11778
 
11788
  #: classes/gateways/class.pmprogateway_stripe.php:2016
11789
  #: classes/gateways/class.pmprogateway_stripe.php:2029
11790
  #: classes/gateways/class.pmprogateway_stripe.php:2033
11791
+ #: classes/gateways/class.pmprogateway_stripe.php:2018
11792
+ #: classes/gateways/class.pmprogateway_stripe.php:2022
11793
+ #: classes/gateways/class.pmprogateway_stripe.php:2035
11794
+ #: classes/gateways/class.pmprogateway_stripe.php:2039
11795
  msgid "Error: %s"
11796
  msgstr ""
11797
 
11798
  #: classes/gateways/class.pmprogateway_stripe.php:3330
11799
  #: classes/gateways/class.pmprogateway_stripe.php:3342
11800
  #: classes/gateways/class.pmprogateway_stripe.php:3364
11801
+ #: classes/gateways/class.pmprogateway_stripe.php:3370
11802
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
11803
  msgstr ""
11804
 
11805
  #: classes/gateways/class.pmprogateway_stripe.php:3347
11806
  #: classes/gateways/class.pmprogateway_stripe.php:3359
11807
  #: classes/gateways/class.pmprogateway_stripe.php:3381
11808
+ #: classes/gateways/class.pmprogateway_stripe.php:3387
11809
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
11810
  msgstr ""
11811
 
11812
  #: classes/gateways/class.pmprogateway_stripe.php:3533
11813
  #: classes/gateways/class.pmprogateway_stripe.php:3545
11814
  #: classes/gateways/class.pmprogateway_stripe.php:3567
11815
+ #: classes/gateways/class.pmprogateway_stripe.php:3573
11816
  msgid "Invalid response from the Stripe Connect server."
11817
  msgstr ""
11818
 
11820
  #: classes/gateways/class.pmprogateway_stripe.php:3561
11821
  #: classes/gateways/class.pmprogateway_stripe.php:3573
11822
  #: classes/gateways/class.pmprogateway_stripe.php:3595
11823
+ #: classes/gateways/class.pmprogateway_stripe.php:3601
11824
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
11825
  msgstr ""
11826
 
11828
  #: classes/gateways/class.pmprogateway_stripe.php:3597
11829
  #: classes/gateways/class.pmprogateway_stripe.php:3609
11830
  #: classes/gateways/class.pmprogateway_stripe.php:3631
11831
+ #: classes/gateways/class.pmprogateway_stripe.php:3637
11832
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
11833
  msgstr ""
11834
 
11835
  #: classes/gateways/class.pmprogateway_stripe.php:3768
11836
  #: classes/gateways/class.pmprogateway_stripe.php:3780
11837
  #: classes/gateways/class.pmprogateway_stripe.php:3802
11838
+ #: classes/gateways/class.pmprogateway_stripe.php:3808
11839
  msgid "Last webhook received at"
11840
  msgstr ""
11841
 
11842
  #: classes/gateways/class.pmprogateway_stripe.php:3770
11843
  #: classes/gateways/class.pmprogateway_stripe.php:3782
11844
  #: classes/gateways/class.pmprogateway_stripe.php:3804
11845
+ #: classes/gateways/class.pmprogateway_stripe.php:3810
11846
  msgid "No webhooks have been received."
11847
  msgstr ""
11848
 
11849
  #: classes/gateways/class.pmprogateway_stripe.php:3774
11850
  #: classes/gateways/class.pmprogateway_stripe.php:3786
11851
  #: classes/gateways/class.pmprogateway_stripe.php:3808
11852
+ #: classes/gateways/class.pmprogateway_stripe.php:3814
11853
  msgid "Your webhook may not be working correctly."
11854
  msgstr ""
11855
 
11856
  #: classes/gateways/class.pmprogateway_stripe.php:3776
11857
  #: classes/gateways/class.pmprogateway_stripe.php:3788
11858
  #: classes/gateways/class.pmprogateway_stripe.php:3810
11859
+ #: classes/gateways/class.pmprogateway_stripe.php:3816
11860
  msgid "Click here for info on setting up your webhook with Stripe."
11861
  msgstr ""
11862
 
13957
 
13958
  #: includes/login.php:429
13959
  #: includes/profile.php:843
13960
+ #: includes/profile.php:855
13961
  msgid "New passwords do not match."
13962
  msgstr ""
13963
 
13964
  #: includes/login.php:433
13965
  #: includes/profile.php:839
13966
+ #: includes/profile.php:851
13967
  msgid "Please complete all fields."
13968
  msgstr ""
13969
 
13993
 
13994
  #: includes/login.php:688
13995
  #: includes/profile.php:891
13996
+ #: includes/profile.php:903
13997
  msgid "New Password"
13998
  msgstr ""
13999
 
14000
  #: includes/login.php:690
14001
  #: includes/profile.php:894
14002
  #: includes/scripts.php:86
14003
+ #: includes/profile.php:906
14004
+ #: includes/scripts.php:85
14005
  msgid "Strength Indicator"
14006
  msgstr ""
14007
 
14008
  #: includes/login.php:694
14009
  #: includes/profile.php:898
14010
+ #: includes/profile.php:910
14011
  msgid "Confirm New Password"
14012
  msgstr ""
14013
 
14104
  #: includes/privacy.php:182
14105
  #: includes/profile.php:425
14106
  #: includes/profile.php:493
14107
+ #: includes/profile.php:499
14108
  msgid "Level ID"
14109
  msgstr ""
14110
 
14111
  #: includes/privacy.php:190
14112
  #: includes/profile.php:496
14113
+ #: includes/profile.php:502
14114
  msgid "Date Modified"
14115
  msgstr ""
14116
 
14117
  #: includes/privacy.php:194
14118
  #: includes/profile.php:497
14119
+ #: includes/profile.php:503
14120
  msgid "End Date"
14121
  msgstr ""
14122
 
14123
  #: includes/privacy.php:198
14124
  #: includes/profile.php:498
14125
+ #: includes/profile.php:504
14126
  msgid "Level Cost"
14127
  msgstr ""
14128
 
14221
  msgstr ""
14222
 
14223
  #: includes/profile.php:485
14224
+ #: includes/profile.php:488
14225
  msgid "No membership orders found."
14226
  msgstr ""
14227
 
14228
  #: includes/profile.php:537
14229
+ #: includes/profile.php:546
14230
  msgid "No membership history found."
14231
  msgstr ""
14232
 
14233
  #: includes/profile.php:644
14234
+ #: includes/profile.php:656
14235
  msgid "Log in to edit your profile."
14236
  msgstr ""
14237
 
14238
  #: includes/profile.php:679
14239
+ #: includes/profile.php:691
14240
  msgid "Please enter a display name."
14241
  msgstr ""
14242
 
14243
  #: includes/profile.php:689
14244
+ #: includes/profile.php:701
14245
  msgid "Please enter an email address."
14246
  msgstr ""
14247
 
14248
  #: includes/profile.php:691
14249
+ #: includes/profile.php:703
14250
  msgid "The email address isn&#8217;t correct."
14251
  msgstr ""
14252
 
14253
  #: includes/profile.php:695
14254
+ #: includes/profile.php:707
14255
  msgid "This email is already registered, please choose another one."
14256
  msgstr ""
14257
 
14258
  #: includes/profile.php:722
14259
+ #: includes/profile.php:734
14260
  msgid "Your profile has been updated."
14261
  msgstr ""
14262
 
14263
  #: includes/profile.php:749
14264
+ #: includes/profile.php:761
14265
  msgid "Display name publicly as"
14266
  msgstr ""
14267
 
14268
  #: includes/profile.php:762
14269
+ #: includes/profile.php:774
14270
  msgid "Site administrators must use the WordPress dashboard to update their email address."
14271
  msgstr ""
14272
 
14273
  #: includes/profile.php:785
14274
+ #: includes/profile.php:797
14275
  msgid "Update Profile"
14276
  msgstr ""
14277
 
14278
  #: includes/profile.php:841
14279
+ #: includes/profile.php:853
14280
  msgid "Please enter your current password."
14281
  msgstr ""
14282
 
14283
  #: includes/profile.php:845
14284
+ #: includes/profile.php:857
14285
  msgid "Your current password is incorrect."
14286
  msgstr ""
14287
 
14288
  #: includes/profile.php:856
14289
+ #: includes/profile.php:868
14290
  msgid "Your password has been updated."
14291
  msgstr ""
14292
 
14293
  #: includes/profile.php:886
14294
+ #: includes/profile.php:898
14295
  msgid "Current Password"
14296
  msgstr ""
14297
 
14298
  #: includes/profile.php:888
14299
  #: includes/profile.php:893
14300
  #: includes/profile.php:900
14301
+ #: includes/profile.php:905
14302
+ #: includes/profile.php:912
14303
  msgid "Required Field"
14304
  msgstr ""
14305
 
14384
  msgstr ""
14385
 
14386
  #: services/braintree-webhook.php:425
14387
+ #: services/braintree-webhook.php:426
14388
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
14389
  msgstr ""
14390
 
14391
  #: services/braintree-webhook.php:427
14392
+ #: services/braintree-webhook.php:428
14393
  msgid "A member's Braintree subscription has expired at %s"
14394
  msgstr ""
14395
 
14708
 
14709
  #: classes/gateways/class.pmprogateway_stripe.php:360
14710
  #: classes/gateways/class.pmprogateway_stripe.php:450
14711
+ #: classes/gateways/class.pmprogateway_stripe.php:366
14712
+ #: classes/gateways/class.pmprogateway_stripe.php:456
14713
  msgid "Connected with Legacy Keys"
14714
  msgstr ""
14715
 
14716
  #: classes/gateways/class.pmprogateway_stripe.php:370
14717
  #: classes/gateways/class.pmprogateway_stripe.php:460
14718
+ #: classes/gateways/class.pmprogateway_stripe.php:376
14719
+ #: classes/gateways/class.pmprogateway_stripe.php:466
14720
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
14721
  msgstr ""
14722
 
14723
  #: classes/gateways/class.pmprogateway_stripe.php:372
14724
  #: classes/gateways/class.pmprogateway_stripe.php:462
14725
+ #: classes/gateways/class.pmprogateway_stripe.php:378
14726
+ #: classes/gateways/class.pmprogateway_stripe.php:468
14727
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
14728
  msgstr ""
14729
 
14780
  msgstr ""
14781
 
14782
  #: classes/gateways/class.pmprogateway_stripe.php:533
14783
+ #: classes/gateways/class.pmprogateway_stripe.php:539
14784
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
14785
  msgstr ""
14786
 
14787
  #: classes/gateways/class.pmprogateway_stripe.php:534
14788
+ #: classes/gateways/class.pmprogateway_stripe.php:540
14789
  msgid "Click here to use the legacy API settings."
14790
  msgstr ""
14791
+
14792
+ #: adminpages/license.php:37
14793
+ msgid "There was an issue validating your license key: %s"
14794
+ msgstr ""
14795
+
14796
+ #: includes/email-templates.php:172
14797
+ msgid ""
14798
+ "<p>There was a new member checkout at !!sitename!!.</p>\n"
14799
+ "\n"
14800
+ "<p><strong>They have chosen to pay by check.</strong></p>\n"
14801
+ "\n"
14802
+ "<p>Below are details about the new membership account and a receipt for the initial membership invoice.</p>\n"
14803
+ "\n"
14804
+ "<p>Account: !!display_name!! (!!user_email!!)</p>\n"
14805
+ "<p>Membership Level: !!membership_level_name!!</p>\n"
14806
+ "<p>Membership Fee: !!membership_cost!!</p>\n"
14807
+ "!!membership_expiration!! !!discount_code!!\n"
14808
+ "\n"
14809
+ "<p>\n"
14810
+ "\tInvoice #!!invoice_id!! on !!invoice_date!!<br />\n"
14811
+ "\tTotal Billed: !!invoice_total!!\n"
14812
+ "</p>\n"
14813
+ "\n"
14814
+ "<p>Log in to your membership account here: !!login_url!!</p>"
14815
+ msgstr ""
14816
+
14817
+ #: includes/license.php:112
14818
+ msgid "Missing key."
14819
+ msgstr ""
14820
+
14821
+ #: shortcodes/pmpro_account.php:145
14822
+ msgctxt "A dash is shown when there is no expiration date."
14823
+ msgid "&#8212;"
14824
+ msgstr ""
languages/paid-memberships-pro-nb_NO.mo CHANGED
Binary file
languages/paid-memberships-pro-nb_NO.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.2\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-09-17T13:57:34+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -221,6 +221,9 @@ msgstr "WordPress.org"
221
  #: adminpages/orders.php:1544
222
  #: adminpages/orders.php:1554
223
  #: adminpages/orders.php:1553
 
 
 
224
  msgid "N/A"
225
  msgstr "Ikke tilgjengelig"
226
 
@@ -385,6 +388,7 @@ msgstr "Betalingsmåter &amp; SSL"
385
  #: adminpages/orders.php:391
386
  #: adminpages/orders.php:1445
387
  #: adminpages/orders.php:1448
 
388
  msgid "Email"
389
  msgstr "E-post"
390
 
@@ -526,6 +530,8 @@ msgstr "Skjule annonser fra alle medlemmer?"
526
  #: adminpages/advancedsettings.php:479
527
  #: classes/gateways/class.pmprogateway_stripe.php:634
528
  #: classes/gateways/class.pmprogateway_stripe.php:648
 
 
529
  msgid "No"
530
  msgstr "Nei"
531
 
@@ -594,6 +600,8 @@ msgstr "kun for multisite"
594
  #: adminpages/advancedsettings.php:397
595
  #: classes/gateways/class.pmprogateway_stripe.php:636
596
  #: classes/gateways/class.pmprogateway_stripe.php:650
 
 
597
  msgid "Yes"
598
  msgstr "Ja"
599
 
@@ -813,6 +821,7 @@ msgstr "Kode"
813
  #: includes/privacy.php:186
814
  #: includes/profile.php:495
815
  #: adminpages/discountcodes.php:489
 
816
  msgid "Start Date"
817
  msgstr "Startdato"
818
 
@@ -830,6 +839,7 @@ msgstr "Startdato"
830
  #: classes/gateways/class.pmprogateway_stripe.php:1301
831
  #: adminpages/discountcodes.php:507
832
  #: classes/gateways/class.pmprogateway_stripe.php:1320
 
833
  msgid "Expiration Date"
834
  msgstr "Utløpsdato"
835
 
@@ -916,6 +926,7 @@ msgstr "Faktureringsbeløp"
916
  #: adminpages/discountcodes.php:612
917
  #: adminpages/discountcodes.php:699
918
  #: classes/gateways/class.pmprogateway_stripe.php:1363
 
919
  msgid "Day(s)"
920
  msgstr "Dag(er)"
921
 
@@ -934,6 +945,7 @@ msgstr "Dag(er)"
934
  #: adminpages/discountcodes.php:612
935
  #: adminpages/discountcodes.php:699
936
  #: classes/gateways/class.pmprogateway_stripe.php:1364
 
937
  msgid "Week(s)"
938
  msgstr "Uke(r)"
939
 
@@ -952,6 +964,7 @@ msgstr "Uke(r)"
952
  #: adminpages/discountcodes.php:612
953
  #: adminpages/discountcodes.php:699
954
  #: classes/gateways/class.pmprogateway_stripe.php:1365
 
955
  msgid "Month(s)"
956
  msgstr "Måned(er)"
957
 
@@ -970,6 +983,7 @@ msgstr "Måned(er)"
970
  #: adminpages/discountcodes.php:612
971
  #: adminpages/discountcodes.php:699
972
  #: classes/gateways/class.pmprogateway_stripe.php:1366
 
973
  msgid "Year(s)"
974
  msgstr "År"
975
 
@@ -1374,6 +1388,7 @@ msgstr "Fakturadetaljer"
1374
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1375
  #: adminpages/discountcodes.php:608
1376
  #: classes/gateways/class.pmprogateway_stripe.php:1497
 
1377
  msgid "per"
1378
  msgstr "per"
1379
 
@@ -1512,6 +1527,8 @@ msgstr "Lagre nivået"
1512
  #: pages/cancel.php:96
1513
  #: shortcodes/pmpro_account.php:106
1514
  #: adminpages/orders.php:968
 
 
1515
  msgid "Cancel"
1516
  msgstr "Avbryt"
1517
 
@@ -1977,6 +1994,7 @@ msgstr "f.eks. PayPal Express, PayPal standard, kredittkort."
1977
  #: adminpages/orders.php:679
1978
  #: classes/gateways/class.pmprogateway_stripe.php:1284
1979
  #: classes/gateways/class.pmprogateway_stripe.php:1303
 
1980
  msgid "Card Type"
1981
  msgstr "Korttype"
1982
 
@@ -2037,6 +2055,7 @@ msgstr "Utløpsår"
2037
  #: adminpages/dashboard.php:294
2038
  #: adminpages/orders.php:742
2039
  #: adminpages/orders.php:1348
 
2040
  msgid "Status"
2041
  msgstr "Status"
2042
 
@@ -3038,6 +3057,7 @@ msgstr "Bekreftelse på medlemskap i %s"
3038
  #: classes/class.pmproemail.php:769
3039
  #: classes/class.pmproemail.php:771
3040
  #: classes/gateways/class.pmprogateway_stripe.php:1333
 
3041
  msgid "Discount Code"
3042
  msgstr "Rabattkode"
3043
 
@@ -3343,6 +3363,7 @@ msgstr "For å fullføre integreringen av Braintree sine betalingstjenester, pas
3343
  #: pages/checkout.php:367
3344
  #: classes/gateways/class.pmprogateway_stripe.php:1264
3345
  #: classes/gateways/class.pmprogateway_stripe.php:1283
 
3346
  #, php-format
3347
  msgid "We Accept %s"
3348
  msgstr "Vi aksepterer følgende %s"
@@ -3356,6 +3377,7 @@ msgstr "Vi aksepterer følgende %s"
3356
  #: pages/checkout.php:366
3357
  #: classes/gateways/class.pmprogateway_stripe.php:1263
3358
  #: classes/gateways/class.pmprogateway_stripe.php:1282
 
3359
  msgid "Payment Information"
3360
  msgstr "Betalingsinformasjon"
3361
 
@@ -3370,6 +3392,7 @@ msgstr "Betalingsinformasjon"
3370
  #: pages/checkout.php:389
3371
  #: classes/gateways/class.pmprogateway_stripe.php:1297
3372
  #: classes/gateways/class.pmprogateway_stripe.php:1316
 
3373
  msgid "Card Number"
3374
  msgstr "Kortnummer"
3375
 
@@ -3398,6 +3421,7 @@ msgstr "hva er dette?"
3398
  #: pages/checkout.php:432
3399
  #: classes/gateways/class.pmprogateway_stripe.php:1319
3400
  #: classes/gateways/class.pmprogateway_stripe.php:1338
 
3401
  msgid "Apply"
3402
  msgstr "Godta"
3403
 
@@ -3565,6 +3589,7 @@ msgstr "PayPal Website Payments Pro"
3565
  #: classes/gateways/class.pmprogateway_paypal.php:132
3566
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
3567
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
 
3568
  msgid "PayPal Settings"
3569
  msgstr "Innstillinger for PayPal"
3570
 
@@ -3582,6 +3607,7 @@ msgstr "Vi anbefaler deg å LA VÆRE å bruke PayPal Standard. I stedet foreslå
3582
  #: classes/gateways/class.pmprogateway_paypal.php:153
3583
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
3584
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
 
3585
  msgid "Gateway Account Email"
3586
  msgstr "E-Post adresse for kontoen til betalingsformidlingsportalen"
3587
 
@@ -3594,6 +3620,7 @@ msgstr "E-Post adresse for kontoen til betalingsformidlingsportalen"
3594
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
3595
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
3596
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
 
3597
  msgid "API Username"
3598
  msgstr "Brukernavn for API"
3599
 
@@ -3606,6 +3633,7 @@ msgstr "Brukernavn for API"
3606
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
3607
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
3608
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
 
3609
  msgid "API Password"
3610
  msgstr "Passord for API brukeren"
3611
 
@@ -3616,6 +3644,7 @@ msgstr "Passord for API brukeren"
3616
  #: classes/gateways/class.pmprogateway_paypal.php:177
3617
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
3618
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
 
3619
  msgid "API Signature"
3620
  msgstr "Signatur for APIen"
3621
 
@@ -3626,6 +3655,7 @@ msgstr "Signatur for APIen"
3626
  #: classes/gateways/class.pmprogateway_paypal.php:196
3627
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
3628
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
 
3629
  msgid "IPN Handler URL"
3630
  msgstr "IPN prosesseringslenke"
3631
 
@@ -3642,6 +3672,7 @@ msgstr "Denne URL’en blir sendt til PayPal hver gang det skjer en betaling ell
3642
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
3643
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
3644
  #: pages/checkout.php:218
 
3645
  msgid "Check Out with PayPal"
3646
  msgstr "Betal med Paypal"
3647
 
@@ -3654,6 +3685,7 @@ msgstr "Betal med Paypal"
3654
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
3655
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
3656
  #: pages/checkout.php:526
 
3657
  msgid "Submit and Check Out"
3658
  msgstr "Lagre og betal"
3659
 
@@ -3668,6 +3700,7 @@ msgstr "Lagre og betal"
3668
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
3669
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
3670
  #: pages/checkout.php:526
 
3671
  msgid "Submit and Confirm"
3672
  msgstr "Lagre og bekreft"
3673
 
@@ -3677,6 +3710,7 @@ msgstr "Lagre og bekreft"
3677
  #: classes/gateways/class.pmprogateway_paypal.php:716
3678
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
3679
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
 
3680
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
3681
  msgstr "Vennligst ta kontakt med eieren av denne webtjenesten, eller avbryt abonnementet ditt på PayPal sine websider for å forsikre deg om at du ikke blir belastet for dette videre."
3682
 
@@ -3685,6 +3719,7 @@ msgstr "Vennligst ta kontakt med eieren av denne webtjenesten, eller avbryt abon
3685
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
3686
  #: paid-memberships-pro.php:160
3687
  #: paid-memberships-pro.php:162
 
3688
  msgid "PayPal Express"
3689
  msgstr "PayPal Express"
3690
 
@@ -3692,6 +3727,7 @@ msgstr "PayPal Express"
3692
  #: classes/gateways/class.pmprogateway_paypalexpress.php:173
3693
  #: classes/gateways/class.pmprogateway_paypal.php:199
3694
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
 
3695
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
3696
  msgstr "For å fullføre integreringen med PayPal’s betalingstjeneste, pass på å sette IPN hånderingslenken din til"
3697
 
@@ -3700,6 +3736,8 @@ msgstr "For å fullføre integreringen med PayPal’s betalingstjeneste, pass p
3700
  #: classes/gateways/class.pmprogateway_paypalexpress.php:330
3701
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
3702
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
 
 
3703
  msgid "The PayPal Token was lost."
3704
  msgstr "PayPal tokenet var tapt."
3705
 
@@ -3726,6 +3764,7 @@ msgstr "Betalingstjenesteportalen for %s avhenger av PHP-utvidelsen %s. Vennligs
3726
  #: classes/gateways/class.pmprogateway_stripe.php:252
3727
  #: paid-memberships-pro.php:159
3728
  #: paid-memberships-pro.php:161
 
3729
  msgid "Stripe"
3730
  msgstr "Stripe"
3731
 
@@ -3738,6 +3777,7 @@ msgstr "Innstillinger for Stripe"
3738
  #: classes/gateways/class.pmprogateway_stripe.php:539
3739
  #: classes/gateways/class.pmprogateway_stripe.php:551
3740
  #: classes/gateways/class.pmprogateway_stripe.php:570
 
3741
  msgid "Secret Key"
3742
  msgstr "Hemmelig nøkkel"
3743
 
@@ -3746,6 +3786,7 @@ msgstr "Hemmelig nøkkel"
3746
  #: classes/gateways/class.pmprogateway_stripe.php:523
3747
  #: classes/gateways/class.pmprogateway_stripe.php:535
3748
  #: classes/gateways/class.pmprogateway_stripe.php:554
 
3749
  msgid "Publishable Key"
3750
  msgstr "Publiserbar nøkkel"
3751
 
@@ -3754,6 +3795,7 @@ msgstr "Publiserbar nøkkel"
3754
  #: classes/gateways/class.pmprogateway_stripe.php:598
3755
  #: classes/gateways/class.pmprogateway_stripe.php:610
3756
  #: classes/gateways/class.pmprogateway_stripe.php:629
 
3757
  msgid "Show Billing Address Fields"
3758
  msgstr "Vis felt for fakturaadresse"
3759
 
@@ -3762,6 +3804,7 @@ msgstr "Vis felt for fakturaadresse"
3762
  #: classes/gateways/class.pmprogateway_stripe.php:607
3763
  #: classes/gateways/class.pmprogateway_stripe.php:619
3764
  #: classes/gateways/class.pmprogateway_stripe.php:638
 
3765
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
3766
  msgstr "Stripe krever ikke at man oppgir en fakturaadresse. Velg “Nei” for å ikke vise disse feltene på bestillingssiden. <br/><strong>Dersom du velger “nei”, pass på at du ikke har addresseverifisering slått på i kontoinnstillingene dine på Stripe sine websider."
3767
 
@@ -3774,6 +3817,7 @@ msgstr "For å fullføre integreringen av Stripe sine betalingstjenester, pass p
3774
  #: classes/gateways/class.pmprogateway_stripe.php:1379
3775
  #: classes/gateways/class.pmprogateway_stripe.php:1391
3776
  #: classes/gateways/class.pmprogateway_stripe.php:1410
 
3777
  msgid "Subscription Updates"
3778
  msgstr "Abonnementsoppdateringer"
3779
 
@@ -3781,6 +3825,7 @@ msgstr "Abonnementsoppdateringer"
3781
  #: classes/gateways/class.pmprogateway_stripe.php:1383
3782
  #: classes/gateways/class.pmprogateway_stripe.php:1395
3783
  #: classes/gateways/class.pmprogateway_stripe.php:1414
 
3784
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
3785
  msgstr "Abonnementsoppdateringer, lar deg endre abonnementsverdiene for brukeren til bestemte tider. Pass på å klikke på “Oppdater profilen” etter at du har ferdigstilt endringene."
3786
 
@@ -3788,6 +3833,7 @@ msgstr "Abonnementsoppdateringer, lar deg endre abonnementsverdiene for brukeren
3788
  #: classes/gateways/class.pmprogateway_stripe.php:1385
3789
  #: classes/gateways/class.pmprogateway_stripe.php:1397
3790
  #: classes/gateways/class.pmprogateway_stripe.php:1416
 
3791
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
3792
  msgstr "Abonnementsoppdateringer, lar deg endre abonnementsverdiene for brukeren til bestemte tider. Pass på å klikke på “Oppdater profilen” etter at du har ferdigstilt endringene."
3793
 
@@ -3798,6 +3844,7 @@ msgstr "Abonnementsoppdateringer, lar deg endre abonnementsverdiene for brukeren
3798
  #: pages/billing.php:425
3799
  #: classes/gateways/class.pmprogateway_stripe.php:1403
3800
  #: classes/gateways/class.pmprogateway_stripe.php:1422
 
3801
  msgid "Update"
3802
  msgstr "Oppdater"
3803
 
@@ -3805,6 +3852,7 @@ msgstr "Oppdater"
3805
  #: classes/gateways/class.pmprogateway_stripe.php:2480
3806
  #: classes/gateways/class.pmprogateway_stripe.php:2492
3807
  #: classes/gateways/class.pmprogateway_stripe.php:2514
 
3808
  msgid "Could not cancel the old subscription. Updates have not been processed."
3809
  msgstr "Klarte ikke å avslutte det gamle abonnementet. Nye oppdateringer ble ikke behandlet."
3810
 
@@ -3819,6 +3867,9 @@ msgstr "Klarte ikke å avslutte det gamle abonnementet. Nye oppdateringer ble ik
3819
  #: classes/gateways/class.pmprogateway_stripe.php:2127
3820
  #: classes/gateways/class.pmprogateway_stripe.php:2132
3821
  #: classes/gateways/class.pmprogateway_stripe.php:2137
 
 
 
3822
  msgid "Error creating customer record with Stripe:"
3823
  msgstr "Feil: Kunne ikke opprette en kundekonto hos Stripe:"
3824
 
@@ -3829,6 +3880,8 @@ msgstr "Feil: Kunne ikke opprette en kundekonto hos Stripe:"
3829
  #: classes/gateways/class.pmprogateway_stripe.php:2182
3830
  #: classes/gateways/class.pmprogateway_stripe.php:2196
3831
  #: classes/gateways/class.pmprogateway_stripe.php:2201
 
 
3832
  msgid "Error getting subscription with Stripe:"
3833
  msgstr "Feil: Fant ikke abonnementet hos Stripe"
3834
 
@@ -3840,6 +3893,8 @@ msgstr "Feil: Fant ikke abonnementet hos Stripe"
3840
  #: classes/gateways/class.pmprogateway_stripe.php:2356
3841
  #: classes/gateways/class.pmprogateway_stripe.php:2373
3842
  #: classes/gateways/class.pmprogateway_stripe.php:2378
 
 
3843
  msgid "Error creating plan with Stripe:"
3844
  msgstr "Feil: Kunne ikke opprette en betalingsplan med Stripe"
3845
 
@@ -3851,6 +3906,8 @@ msgstr "Feil: Kunne ikke opprette en betalingsplan med Stripe"
3851
  #: classes/gateways/class.pmprogateway_stripe.php:2401
3852
  #: classes/gateways/class.pmprogateway_stripe.php:2409
3853
  #: classes/gateways/class.pmprogateway_stripe.php:2423
 
 
3854
  msgid "Error subscribing customer to plan with Stripe:"
3855
  msgstr "Feil: Kunne ikke lenke kunden til abonnementet hos Stripe"
3856
 
@@ -3858,6 +3915,7 @@ msgstr "Feil: Kunne ikke lenke kunden til abonnementet hos Stripe"
3858
  #: classes/gateways/class.pmprogateway_stripe.php:2632
3859
  #: classes/gateways/class.pmprogateway_stripe.php:2644
3860
  #: classes/gateways/class.pmprogateway_stripe.php:2666
 
3861
  msgid "Could not cancel old subscription."
3862
  msgstr "Kunne ikke avslutte det gamle abonnementet."
3863
 
@@ -3865,6 +3923,7 @@ msgstr "Kunne ikke avslutte det gamle abonnementet."
3865
  #: classes/gateways/class.pmprogateway_stripe.php:2648
3866
  #: classes/gateways/class.pmprogateway_stripe.php:2660
3867
  #: classes/gateways/class.pmprogateway_stripe.php:2682
 
3868
  msgid "Could not find the customer."
3869
  msgstr "Fant ikke kunden"
3870
 
@@ -4401,6 +4460,7 @@ msgstr "Lisenskoden din har blitt godkjent."
4401
 
4402
  #: includes/license.php:81
4403
  #: adminpages/license.php:43
 
4404
  msgid "Paid Memberships Pro Support License"
4405
  msgstr "Paid Membership Pro brukerstøttelisens"
4406
 
@@ -4416,6 +4476,7 @@ msgstr "Legg inn lisensnøkkelen for brukerstøtte. "
4416
  #: adminpages/dashboard.php:174
4417
  #: adminpages/license.php:49
4418
  #: adminpages/dashboard.php:178
 
4419
  msgid "Your license is invalid or expired."
4420
  msgstr "Brukerstøttelisense er ugyldig, eller så har den utgått."
4421
 
@@ -4430,6 +4491,7 @@ msgstr "<p><strong>Tusen takk!</strong> En gyldig <strong>%s</strong> lisensnøk
4430
 
4431
  #: includes/license.php:100
4432
  #: adminpages/license.php:59
 
4433
  msgid "Enter license key here..."
4434
  msgstr "Legg inn lisensnøkkelen din her…"
4435
 
@@ -4605,6 +4667,7 @@ msgstr "Logg ut"
4605
  #: adminpages/dashboard.php:224
4606
  #: adminpages/dashboard.php:292
4607
  #: adminpages/orders.php:1343
 
4608
  msgid "Level"
4609
  msgstr "Kurs"
4610
 
@@ -4646,6 +4709,7 @@ msgstr "Din innbetaling blir håndtert av PayPal. <a href=«http://www.paypal.co
4646
  #: includes/profile.php:747
4647
  #: pages/billing.php:164
4648
  #: pages/checkout.php:234
 
4649
  msgid "First Name"
4650
  msgstr "Fornavn"
4651
 
@@ -4655,6 +4719,7 @@ msgstr "Fornavn"
4655
  #: includes/profile.php:748
4656
  #: pages/billing.php:168
4657
  #: pages/checkout.php:238
 
4658
  msgid "Last Name"
4659
  msgstr "Etternavn"
4660
 
@@ -5352,6 +5417,7 @@ msgstr "Rabattkode <strong>%s</strong> har blitt tilført bestillingen din."
5352
  # @ pmpro
5353
  #: services/authnet-silent-post.php:144
5354
  #: services/authnet-silent-post.php:173
 
5355
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
5356
  msgstr "Authorize.net har valgt å holde betalingen for ettersyn.</p><p>Informasjon om betalingen fra Authorize.net"
5357
 
@@ -5399,6 +5465,8 @@ msgstr "Rediger profil"
5399
  #: includes/profile.php:872
5400
  #: includes/profile.php:909
5401
  #: shortcodes/pmpro_account.php:195
 
 
5402
  msgid "Change Password"
5403
  msgstr "Endre passord"
5404
 
@@ -5470,6 +5538,7 @@ msgstr "Lenker for medlemmer"
5470
  #: adminpages/advancedsettings.php:316
5471
  #: includes/privacy.php:175
5472
  #: includes/profile.php:509
 
5473
  #~ msgid "Never"
5474
  #~ msgstr "Aldri"
5475
 
@@ -5665,6 +5734,7 @@ msgstr ""
5665
 
5666
  #: adminpages/admin_header.php:152
5667
  #: classes/gateways/class.pmprogateway_stripe.php:76
 
5668
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
5669
  msgstr ""
5670
 
@@ -5937,6 +6007,7 @@ msgstr ""
5937
  #: adminpages/dashboard.php:177
5938
  #: adminpages/license.php:51
5939
  #: adminpages/dashboard.php:181
 
5940
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
5941
  msgstr ""
5942
 
@@ -6373,18 +6444,23 @@ msgid "Discount Code Applied"
6373
  msgstr ""
6374
 
6375
  #: adminpages/license.php:47
 
6376
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
6377
  msgstr ""
6378
 
6379
  #: adminpages/license.php:49
 
 
6380
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
6381
  msgstr ""
6382
 
6383
  #: adminpages/license.php:61
 
6384
  msgid "Validate Key"
6385
  msgstr ""
6386
 
6387
  #: adminpages/license.php:95
 
6388
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
6389
  msgstr ""
6390
 
@@ -6942,6 +7018,7 @@ msgstr ""
6942
 
6943
  #: classes/gateways/class.pmprogateway_braintree.php:87
6944
  #: classes/gateways/class.pmprogateway_stripe.php:91
 
6945
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
6946
  msgstr ""
6947
 
@@ -7239,6 +7316,7 @@ msgid "Your order has been refused."
7239
  msgstr ""
7240
 
7241
  #: classes/gateways/class.pmprogateway_cybersource.php:922
 
7242
  msgid "Unknown error."
7243
  msgstr ""
7244
 
@@ -7253,23 +7331,28 @@ msgstr ""
7253
  #: classes/gateways/class.pmprogateway_paypal.php:146
7254
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
7255
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
 
7256
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
7257
  msgstr ""
7258
 
7259
  #: classes/gateways/class.pmprogateway_paypal.php:185
7260
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
 
7261
  msgid "Confirmation Step"
7262
  msgstr ""
7263
 
7264
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
 
7265
  msgid "Checkout was already processed."
7266
  msgstr ""
7267
 
7268
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
 
7269
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
7270
  msgstr ""
7271
 
7272
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
 
7273
  msgid "Error creating plan with PayPal."
7274
  msgstr ""
7275
 
@@ -7281,11 +7364,14 @@ msgstr ""
7281
  #: classes/gateways/class.pmprogateway_stripe.php:436
7282
  #: classes/gateways/class.pmprogateway_stripe.php:354
7283
  #: classes/gateways/class.pmprogateway_stripe.php:444
 
 
7284
  msgid "Stripe Connect Settings"
7285
  msgstr ""
7286
 
7287
  #: classes/gateways/class.pmprogateway_stripe.php:352
7288
  #: classes/gateways/class.pmprogateway_stripe.php:356
 
7289
  msgid "Live Mode:"
7290
  msgstr ""
7291
 
@@ -7293,6 +7379,8 @@ msgstr ""
7293
  #: classes/gateways/class.pmprogateway_stripe.php:440
7294
  #: classes/gateways/class.pmprogateway_stripe.php:358
7295
  #: classes/gateways/class.pmprogateway_stripe.php:448
 
 
7296
  msgid "Connected"
7297
  msgstr ""
7298
 
@@ -7300,6 +7388,8 @@ msgstr ""
7300
  #: classes/gateways/class.pmprogateway_stripe.php:442
7301
  #: classes/gateways/class.pmprogateway_stripe.php:362
7302
  #: classes/gateways/class.pmprogateway_stripe.php:452
 
 
7303
  msgid "Not Connected"
7304
  msgstr ""
7305
 
@@ -7307,11 +7397,14 @@ msgstr ""
7307
  #: classes/gateways/class.pmprogateway_stripe.php:449
7308
  #: classes/gateways/class.pmprogateway_stripe.php:369
7309
  #: classes/gateways/class.pmprogateway_stripe.php:459
 
 
7310
  msgid "Your site is using legacy API keys to authenticate with Stripe."
7311
  msgstr ""
7312
 
7313
  #: classes/gateways/class.pmprogateway_stripe.php:364
7314
  #: classes/gateways/class.pmprogateway_stripe.php:371
 
7315
  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."
7316
  msgstr ""
7317
 
@@ -7319,6 +7412,8 @@ msgstr ""
7319
  #: classes/gateways/class.pmprogateway_stripe.php:458
7320
  #: classes/gateways/class.pmprogateway_stripe.php:380
7321
  #: classes/gateways/class.pmprogateway_stripe.php:470
 
 
7322
  msgid "Stripe Connection:"
7323
  msgstr ""
7324
 
@@ -7326,11 +7421,14 @@ msgstr ""
7326
  #: classes/gateways/class.pmprogateway_stripe.php:482
7327
  #: classes/gateways/class.pmprogateway_stripe.php:396
7328
  #: classes/gateways/class.pmprogateway_stripe.php:494
 
 
7329
  msgid "Disconnect From Stripe"
7330
  msgstr ""
7331
 
7332
  #: classes/gateways/class.pmprogateway_stripe.php:389
7333
  #: classes/gateways/class.pmprogateway_stripe.php:397
 
7334
  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."
7335
  msgstr ""
7336
 
@@ -7338,16 +7436,20 @@ msgstr ""
7338
  #: classes/gateways/class.pmprogateway_stripe.php:496
7339
  #: classes/gateways/class.pmprogateway_stripe.php:409
7340
  #: classes/gateways/class.pmprogateway_stripe.php:508
 
 
7341
  msgid "Connect with Stripe"
7342
  msgstr ""
7343
 
7344
  #: classes/gateways/class.pmprogateway_stripe.php:408
7345
  #: classes/gateways/class.pmprogateway_stripe.php:416
 
7346
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
7347
  msgstr ""
7348
 
7349
  #: classes/gateways/class.pmprogateway_stripe.php:411
7350
  #: classes/gateways/class.pmprogateway_stripe.php:419
 
7351
  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."
7352
  msgstr ""
7353
 
@@ -7358,6 +7460,9 @@ msgstr ""
7358
  #: classes/gateways/class.pmprogateway_stripe.php:519
7359
  #: classes/gateways/class.pmprogateway_stripe.php:559
7360
  #: classes/gateways/class.pmprogateway_stripe.php:578
 
 
 
7361
  msgid "Webhook"
7362
  msgstr ""
7363
 
@@ -7368,32 +7473,40 @@ msgstr ""
7368
  #: classes/gateways/class.pmprogateway_stripe.php:523
7369
  #: classes/gateways/class.pmprogateway_stripe.php:594
7370
  #: classes/gateways/class.pmprogateway_stripe.php:613
 
 
 
7371
  msgid "Webhook URL"
7372
  msgstr ""
7373
 
7374
  #: classes/gateways/class.pmprogateway_stripe.php:438
7375
  #: classes/gateways/class.pmprogateway_stripe.php:446
 
7376
  msgid "Test Mode:"
7377
  msgstr ""
7378
 
7379
  #: classes/gateways/class.pmprogateway_stripe.php:450
7380
  #: classes/gateways/class.pmprogateway_stripe.php:461
 
7381
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
7382
  msgstr ""
7383
 
7384
  #: classes/gateways/class.pmprogateway_stripe.php:483
7385
  #: classes/gateways/class.pmprogateway_stripe.php:495
 
7386
  msgid "This will disconnect your site from Stripe in test mode only."
7387
  msgstr ""
7388
 
7389
  #: classes/gateways/class.pmprogateway_stripe.php:518
7390
  #: classes/gateways/class.pmprogateway_stripe.php:530
 
7391
  msgid "Stripe API Settings (Legacy)"
7392
  msgstr ""
7393
 
7394
  #: classes/gateways/class.pmprogateway_stripe.php:531
7395
  #: classes/gateways/class.pmprogateway_stripe.php:543
7396
  #: classes/gateways/class.pmprogateway_stripe.php:562
 
7397
  msgid "Your Publishable Key appears incorrect."
7398
  msgstr ""
7399
 
@@ -7403,24 +7516,29 @@ msgstr ""
7403
  #: classes/gateways/class.pmprogateway_stripe.php:587
7404
  #: classes/gateways/class.pmprogateway_stripe.php:582
7405
  #: classes/gateways/class.pmprogateway_stripe.php:606
 
 
7406
  msgid "Create Webhook"
7407
  msgstr ""
7408
 
7409
  #: classes/gateways/class.pmprogateway_stripe.php:557
7410
  #: classes/gateways/class.pmprogateway_stripe.php:569
7411
  #: classes/gateways/class.pmprogateway_stripe.php:588
 
7412
  msgid "A webhook is set up in Stripe, but it is disabled."
7413
  msgstr ""
7414
 
7415
  #: classes/gateways/class.pmprogateway_stripe.php:564
7416
  #: classes/gateways/class.pmprogateway_stripe.php:576
7417
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
7418
  msgid "A webhook is set up in Stripe, but it is using an old API version."
7419
  msgstr ""
7420
 
7421
  #: classes/gateways/class.pmprogateway_stripe.php:564
7422
  #: classes/gateways/class.pmprogateway_stripe.php:576
7423
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
7424
  msgid "Rebuild Webhook"
7425
  msgstr ""
7426
 
@@ -7433,12 +7551,16 @@ msgstr ""
7433
  #: classes/gateways/class.pmprogateway_stripe.php:601
7434
  #: classes/gateways/class.pmprogateway_stripe.php:741
7435
  #: classes/gateways/class.pmprogateway_stripe.php:857
 
 
 
7436
  msgid "Your webhook is enabled."
7437
  msgstr ""
7438
 
7439
  #: classes/gateways/class.pmprogateway_stripe.php:570
7440
  #: classes/gateways/class.pmprogateway_stripe.php:582
7441
  #: classes/gateways/class.pmprogateway_stripe.php:601
 
7442
  msgid "Disable Webhook"
7443
  msgstr ""
7444
 
@@ -7454,66 +7576,80 @@ msgstr ""
7454
  #: classes/gateways/class.pmprogateway_stripe.php:768
7455
  #: classes/gateways/class.pmprogateway_stripe.php:785
7456
  #: classes/gateways/class.pmprogateway_stripe.php:819
 
 
 
 
7457
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
7458
  msgstr ""
7459
 
7460
  #: classes/gateways/class.pmprogateway_stripe.php:589
7461
  #: classes/gateways/class.pmprogateway_stripe.php:601
7462
  #: classes/gateways/class.pmprogateway_stripe.php:620
 
7463
  msgid "Other Stripe Settings"
7464
  msgstr ""
7465
 
7466
  #: classes/gateways/class.pmprogateway_stripe.php:593
7467
  #: classes/gateways/class.pmprogateway_stripe.php:605
7468
  #: classes/gateways/class.pmprogateway_stripe.php:624
 
7469
  msgid "Stripe API Version"
7470
  msgstr ""
7471
 
7472
  #: classes/gateways/class.pmprogateway_stripe.php:612
7473
  #: classes/gateways/class.pmprogateway_stripe.php:624
7474
  #: classes/gateways/class.pmprogateway_stripe.php:643
 
7475
  msgid "Enable Payment Request Button"
7476
  msgstr ""
7477
 
7478
  #: classes/gateways/class.pmprogateway_stripe.php:630
7479
  #: classes/gateways/class.pmprogateway_stripe.php:642
7480
  #: classes/gateways/class.pmprogateway_stripe.php:661
 
7481
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
7482
  msgstr ""
7483
 
7484
  #: classes/gateways/class.pmprogateway_stripe.php:643
7485
  #: classes/gateways/class.pmprogateway_stripe.php:655
7486
  #: classes/gateways/class.pmprogateway_stripe.php:674
 
7487
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
7488
  msgstr ""
7489
 
7490
  #: classes/gateways/class.pmprogateway_stripe.php:645
7491
  #: classes/gateways/class.pmprogateway_stripe.php:657
7492
  #: classes/gateways/class.pmprogateway_stripe.php:676
 
7493
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
7494
  msgstr ""
7495
 
7496
  #: classes/gateways/class.pmprogateway_stripe.php:647
7497
  #: classes/gateways/class.pmprogateway_stripe.php:659
7498
  #: classes/gateways/class.pmprogateway_stripe.php:678
 
7499
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
7500
  msgstr ""
7501
 
7502
  #: classes/gateways/class.pmprogateway_stripe.php:649
7503
  #: classes/gateways/class.pmprogateway_stripe.php:661
7504
  #: classes/gateways/class.pmprogateway_stripe.php:680
 
7505
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
7506
  msgstr ""
7507
 
7508
  #: classes/gateways/class.pmprogateway_stripe.php:674
7509
  #: classes/gateways/class.pmprogateway_stripe.php:686
7510
  #: classes/gateways/class.pmprogateway_stripe.php:705
 
7511
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
7512
  msgstr ""
7513
 
7514
  #: classes/gateways/class.pmprogateway_stripe.php:695
7515
  #: classes/gateways/class.pmprogateway_stripe.php:707
7516
  #: classes/gateways/class.pmprogateway_stripe.php:726
 
7517
  msgid "Webhook creation failed. You might already have a webhook set up."
7518
  msgstr ""
7519
 
@@ -7523,36 +7659,43 @@ msgstr ""
7523
  #: classes/gateways/class.pmprogateway_stripe.php:847
7524
  #: classes/gateways/class.pmprogateway_stripe.php:792
7525
  #: classes/gateways/class.pmprogateway_stripe.php:866
 
 
7526
  msgid "There was an error deleting the webhook."
7527
  msgstr ""
7528
 
7529
  #: classes/gateways/class.pmprogateway_stripe.php:811
7530
  #: classes/gateways/class.pmprogateway_stripe.php:823
7531
  #: classes/gateways/class.pmprogateway_stripe.php:842
 
7532
  msgid "Webhook creation failed. Please refresh and try again."
7533
  msgstr ""
7534
 
7535
  #: classes/gateways/class.pmprogateway_stripe.php:867
7536
  #: classes/gateways/class.pmprogateway_stripe.php:879
7537
  #: classes/gateways/class.pmprogateway_stripe.php:898
 
7538
  msgid "Verification steps confirmed. Your payment is processing."
7539
  msgstr ""
7540
 
7541
  #: classes/gateways/class.pmprogateway_stripe.php:1262
7542
  #: classes/gateways/class.pmprogateway_stripe.php:1274
7543
  #: classes/gateways/class.pmprogateway_stripe.php:1293
 
7544
  msgid "Pay with Credit Card"
7545
  msgstr ""
7546
 
7547
  #: classes/gateways/class.pmprogateway_stripe.php:1296
7548
  #: classes/gateways/class.pmprogateway_stripe.php:1308
7549
  #: classes/gateways/class.pmprogateway_stripe.php:1327
 
7550
  msgid "CVC"
7551
  msgstr ""
7552
 
7553
  #: classes/gateways/class.pmprogateway_stripe.php:1374
7554
  #: classes/gateways/class.pmprogateway_stripe.php:1386
7555
  #: classes/gateways/class.pmprogateway_stripe.php:1405
 
7556
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
7557
  msgstr ""
7558
 
@@ -7568,6 +7711,10 @@ msgstr ""
7568
  #: classes/gateways/class.pmprogateway_stripe.php:2016
7569
  #: classes/gateways/class.pmprogateway_stripe.php:2029
7570
  #: classes/gateways/class.pmprogateway_stripe.php:2033
 
 
 
 
7571
  msgid "Error: %s"
7572
  msgstr ""
7573
 
@@ -7577,30 +7724,35 @@ msgstr ""
7577
  #: classes/gateways/class.pmprogateway_stripe.php:2834
7578
  #: classes/gateways/class.pmprogateway_stripe.php:2850
7579
  #: classes/gateways/class.pmprogateway_stripe.php:2856
 
7580
  msgid "Error: "
7581
  msgstr ""
7582
 
7583
  #: classes/gateways/class.pmprogateway_stripe.php:2836
7584
  #: classes/gateways/class.pmprogateway_stripe.php:2848
7585
  #: classes/gateways/class.pmprogateway_stripe.php:2870
 
7586
  msgid "Error: Unkown error while refunding charge #%s"
7587
  msgstr ""
7588
 
7589
  #: classes/gateways/class.pmprogateway_stripe.php:3330
7590
  #: classes/gateways/class.pmprogateway_stripe.php:3342
7591
  #: classes/gateways/class.pmprogateway_stripe.php:3364
 
7592
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
7593
  msgstr ""
7594
 
7595
  #: classes/gateways/class.pmprogateway_stripe.php:3347
7596
  #: classes/gateways/class.pmprogateway_stripe.php:3359
7597
  #: classes/gateways/class.pmprogateway_stripe.php:3381
 
7598
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
7599
  msgstr ""
7600
 
7601
  #: classes/gateways/class.pmprogateway_stripe.php:3533
7602
  #: classes/gateways/class.pmprogateway_stripe.php:3545
7603
  #: classes/gateways/class.pmprogateway_stripe.php:3567
 
7604
  msgid "Invalid response from the Stripe Connect server."
7605
  msgstr ""
7606
 
@@ -7608,6 +7760,7 @@ msgstr ""
7608
  #: classes/gateways/class.pmprogateway_stripe.php:3561
7609
  #: classes/gateways/class.pmprogateway_stripe.php:3573
7610
  #: classes/gateways/class.pmprogateway_stripe.php:3595
 
7611
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
7612
  msgstr ""
7613
 
@@ -7615,30 +7768,35 @@ msgstr ""
7615
  #: classes/gateways/class.pmprogateway_stripe.php:3597
7616
  #: classes/gateways/class.pmprogateway_stripe.php:3609
7617
  #: classes/gateways/class.pmprogateway_stripe.php:3631
 
7618
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
7619
  msgstr ""
7620
 
7621
  #: classes/gateways/class.pmprogateway_stripe.php:3768
7622
  #: classes/gateways/class.pmprogateway_stripe.php:3780
7623
  #: classes/gateways/class.pmprogateway_stripe.php:3802
 
7624
  msgid "Last webhook received at"
7625
  msgstr ""
7626
 
7627
  #: classes/gateways/class.pmprogateway_stripe.php:3770
7628
  #: classes/gateways/class.pmprogateway_stripe.php:3782
7629
  #: classes/gateways/class.pmprogateway_stripe.php:3804
 
7630
  msgid "No webhooks have been received."
7631
  msgstr ""
7632
 
7633
  #: classes/gateways/class.pmprogateway_stripe.php:3774
7634
  #: classes/gateways/class.pmprogateway_stripe.php:3786
7635
  #: classes/gateways/class.pmprogateway_stripe.php:3808
 
7636
  msgid "Your webhook may not be working correctly."
7637
  msgstr ""
7638
 
7639
  #: classes/gateways/class.pmprogateway_stripe.php:3776
7640
  #: classes/gateways/class.pmprogateway_stripe.php:3788
7641
  #: classes/gateways/class.pmprogateway_stripe.php:3810
 
7642
  msgid "Click here for info on setting up your webhook with Stripe."
7643
  msgstr ""
7644
 
@@ -9743,11 +9901,13 @@ msgstr ""
9743
 
9744
  #: includes/login.php:429
9745
  #: includes/profile.php:843
 
9746
  msgid "New passwords do not match."
9747
  msgstr ""
9748
 
9749
  #: includes/login.php:433
9750
  #: includes/profile.php:839
 
9751
  msgid "Please complete all fields."
9752
  msgstr ""
9753
 
@@ -9777,17 +9937,21 @@ msgstr ""
9777
 
9778
  #: includes/login.php:688
9779
  #: includes/profile.php:891
 
9780
  msgid "New Password"
9781
  msgstr ""
9782
 
9783
  #: includes/login.php:690
9784
  #: includes/profile.php:894
9785
  #: includes/scripts.php:86
 
 
9786
  msgid "Strength Indicator"
9787
  msgstr ""
9788
 
9789
  #: includes/login.php:694
9790
  #: includes/profile.php:898
 
9791
  msgid "Confirm New Password"
9792
  msgstr ""
9793
 
@@ -9884,21 +10048,25 @@ msgstr ""
9884
  #: includes/privacy.php:182
9885
  #: includes/profile.php:425
9886
  #: includes/profile.php:493
 
9887
  msgid "Level ID"
9888
  msgstr ""
9889
 
9890
  #: includes/privacy.php:190
9891
  #: includes/profile.php:496
 
9892
  msgid "Date Modified"
9893
  msgstr ""
9894
 
9895
  #: includes/privacy.php:194
9896
  #: includes/profile.php:497
 
9897
  msgid "End Date"
9898
  msgstr ""
9899
 
9900
  #: includes/privacy.php:198
9901
  #: includes/profile.php:498
 
9902
  msgid "Level Cost"
9903
  msgstr ""
9904
 
@@ -9997,68 +10165,85 @@ msgid "Membership Levels History"
9997
  msgstr ""
9998
 
9999
  #: includes/profile.php:485
 
10000
  msgid "No membership orders found."
10001
  msgstr ""
10002
 
10003
  #: includes/profile.php:537
 
10004
  msgid "No membership history found."
10005
  msgstr ""
10006
 
10007
  #: includes/profile.php:644
 
10008
  msgid "Log in to edit your profile."
10009
  msgstr ""
10010
 
10011
  #: includes/profile.php:679
 
10012
  msgid "Please enter a display name."
10013
  msgstr ""
10014
 
10015
  #: includes/profile.php:689
 
10016
  msgid "Please enter an email address."
10017
  msgstr ""
10018
 
10019
  #: includes/profile.php:691
 
10020
  msgid "The email address isn&#8217;t correct."
10021
  msgstr ""
10022
 
10023
  #: includes/profile.php:695
 
10024
  msgid "This email is already registered, please choose another one."
10025
  msgstr ""
10026
 
10027
  #: includes/profile.php:722
 
10028
  msgid "Your profile has been updated."
10029
  msgstr ""
10030
 
10031
  #: includes/profile.php:749
 
10032
  msgid "Display name publicly as"
10033
  msgstr ""
10034
 
10035
  #: includes/profile.php:762
 
10036
  msgid "Site administrators must use the WordPress dashboard to update their email address."
10037
  msgstr ""
10038
 
10039
  #: includes/profile.php:785
 
10040
  msgid "Update Profile"
10041
  msgstr ""
10042
 
10043
  #: includes/profile.php:841
 
10044
  msgid "Please enter your current password."
10045
  msgstr ""
10046
 
10047
  #: includes/profile.php:845
 
10048
  msgid "Your current password is incorrect."
10049
  msgstr ""
10050
 
10051
  #: includes/profile.php:856
 
10052
  msgid "Your password has been updated."
10053
  msgstr ""
10054
 
10055
  #: includes/profile.php:886
 
10056
  msgid "Current Password"
10057
  msgstr ""
10058
 
10059
  #: includes/profile.php:888
10060
  #: includes/profile.php:893
10061
  #: includes/profile.php:900
 
 
10062
  msgid "Required Field"
10063
  msgstr ""
10064
 
@@ -10155,10 +10340,12 @@ msgid "That email address is already in use. Please log in, or use a different e
10155
  msgstr ""
10156
 
10157
  #: services/braintree-webhook.php:425
 
10158
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
10159
  msgstr ""
10160
 
10161
  #: services/braintree-webhook.php:427
 
10162
  msgid "A member's Braintree subscription has expired at %s"
10163
  msgstr ""
10164
 
@@ -10477,16 +10664,22 @@ msgstr ""
10477
 
10478
  #: classes/gateways/class.pmprogateway_stripe.php:360
10479
  #: classes/gateways/class.pmprogateway_stripe.php:450
 
 
10480
  msgid "Connected with Legacy Keys"
10481
  msgstr ""
10482
 
10483
  #: classes/gateways/class.pmprogateway_stripe.php:370
10484
  #: classes/gateways/class.pmprogateway_stripe.php:460
 
 
10485
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
10486
  msgstr ""
10487
 
10488
  #: classes/gateways/class.pmprogateway_stripe.php:372
10489
  #: classes/gateways/class.pmprogateway_stripe.php:462
 
 
10490
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
10491
  msgstr ""
10492
 
@@ -10543,13 +10736,49 @@ msgid "missing"
10543
  msgstr ""
10544
 
10545
  #: classes/gateways/class.pmprogateway_stripe.php:533
 
10546
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
10547
  msgstr ""
10548
 
10549
  #: classes/gateways/class.pmprogateway_stripe.php:534
 
10550
  msgid "Click here to use the legacy API settings."
10551
  msgstr ""
10552
 
10553
  #: paid-memberships-pro.php:194
10554
  msgid "Once a month"
10555
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.3\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-10-11T14:00:47+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
221
  #: adminpages/orders.php:1544
222
  #: adminpages/orders.php:1554
223
  #: adminpages/orders.php:1553
224
+ #: includes/profile.php:520
225
+ #: includes/profile.php:521
226
+ #: includes/profile.php:522
227
  msgid "N/A"
228
  msgstr "Ikke tilgjengelig"
229
 
388
  #: adminpages/orders.php:391
389
  #: adminpages/orders.php:1445
390
  #: adminpages/orders.php:1448
391
+ #: includes/profile.php:762
392
  msgid "Email"
393
  msgstr "E-post"
394
 
530
  #: adminpages/advancedsettings.php:479
531
  #: classes/gateways/class.pmprogateway_stripe.php:634
532
  #: classes/gateways/class.pmprogateway_stripe.php:648
533
+ #: classes/gateways/class.pmprogateway_stripe.php:640
534
+ #: classes/gateways/class.pmprogateway_stripe.php:654
535
  msgid "No"
536
  msgstr "Nei"
537
 
600
  #: adminpages/advancedsettings.php:397
601
  #: classes/gateways/class.pmprogateway_stripe.php:636
602
  #: classes/gateways/class.pmprogateway_stripe.php:650
603
+ #: classes/gateways/class.pmprogateway_stripe.php:642
604
+ #: classes/gateways/class.pmprogateway_stripe.php:656
605
  msgid "Yes"
606
  msgstr "Ja"
607
 
821
  #: includes/privacy.php:186
822
  #: includes/profile.php:495
823
  #: adminpages/discountcodes.php:489
824
+ #: includes/profile.php:501
825
  msgid "Start Date"
826
  msgstr "Startdato"
827
 
839
  #: classes/gateways/class.pmprogateway_stripe.php:1301
840
  #: adminpages/discountcodes.php:507
841
  #: classes/gateways/class.pmprogateway_stripe.php:1320
842
+ #: classes/gateways/class.pmprogateway_stripe.php:1326
843
  msgid "Expiration Date"
844
  msgstr "Utløpsdato"
845
 
926
  #: adminpages/discountcodes.php:612
927
  #: adminpages/discountcodes.php:699
928
  #: classes/gateways/class.pmprogateway_stripe.php:1363
929
+ #: classes/gateways/class.pmprogateway_stripe.php:1369
930
  msgid "Day(s)"
931
  msgstr "Dag(er)"
932
 
945
  #: adminpages/discountcodes.php:612
946
  #: adminpages/discountcodes.php:699
947
  #: classes/gateways/class.pmprogateway_stripe.php:1364
948
+ #: classes/gateways/class.pmprogateway_stripe.php:1370
949
  msgid "Week(s)"
950
  msgstr "Uke(r)"
951
 
964
  #: adminpages/discountcodes.php:612
965
  #: adminpages/discountcodes.php:699
966
  #: classes/gateways/class.pmprogateway_stripe.php:1365
967
+ #: classes/gateways/class.pmprogateway_stripe.php:1371
968
  msgid "Month(s)"
969
  msgstr "Måned(er)"
970
 
983
  #: adminpages/discountcodes.php:612
984
  #: adminpages/discountcodes.php:699
985
  #: classes/gateways/class.pmprogateway_stripe.php:1366
986
+ #: classes/gateways/class.pmprogateway_stripe.php:1372
987
  msgid "Year(s)"
988
  msgstr "År"
989
 
1388
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1389
  #: adminpages/discountcodes.php:608
1390
  #: classes/gateways/class.pmprogateway_stripe.php:1497
1391
+ #: classes/gateways/class.pmprogateway_stripe.php:1503
1392
  msgid "per"
1393
  msgstr "per"
1394
 
1527
  #: pages/cancel.php:96
1528
  #: shortcodes/pmpro_account.php:106
1529
  #: adminpages/orders.php:968
1530
+ #: includes/profile.php:798
1531
+ #: includes/profile.php:922
1532
  msgid "Cancel"
1533
  msgstr "Avbryt"
1534
 
1994
  #: adminpages/orders.php:679
1995
  #: classes/gateways/class.pmprogateway_stripe.php:1284
1996
  #: classes/gateways/class.pmprogateway_stripe.php:1303
1997
+ #: classes/gateways/class.pmprogateway_stripe.php:1309
1998
  msgid "Card Type"
1999
  msgstr "Korttype"
2000
 
2055
  #: adminpages/dashboard.php:294
2056
  #: adminpages/orders.php:742
2057
  #: adminpages/orders.php:1348
2058
+ #: includes/profile.php:505
2059
  msgid "Status"
2060
  msgstr "Status"
2061
 
3057
  #: classes/class.pmproemail.php:769
3058
  #: classes/class.pmproemail.php:771
3059
  #: classes/gateways/class.pmprogateway_stripe.php:1333
3060
+ #: classes/gateways/class.pmprogateway_stripe.php:1339
3061
  msgid "Discount Code"
3062
  msgstr "Rabattkode"
3063
 
3363
  #: pages/checkout.php:367
3364
  #: classes/gateways/class.pmprogateway_stripe.php:1264
3365
  #: classes/gateways/class.pmprogateway_stripe.php:1283
3366
+ #: classes/gateways/class.pmprogateway_stripe.php:1289
3367
  #, php-format
3368
  msgid "We Accept %s"
3369
  msgstr "Vi aksepterer følgende %s"
3377
  #: pages/checkout.php:366
3378
  #: classes/gateways/class.pmprogateway_stripe.php:1263
3379
  #: classes/gateways/class.pmprogateway_stripe.php:1282
3380
+ #: classes/gateways/class.pmprogateway_stripe.php:1288
3381
  msgid "Payment Information"
3382
  msgstr "Betalingsinformasjon"
3383
 
3392
  #: pages/checkout.php:389
3393
  #: classes/gateways/class.pmprogateway_stripe.php:1297
3394
  #: classes/gateways/class.pmprogateway_stripe.php:1316
3395
+ #: classes/gateways/class.pmprogateway_stripe.php:1322
3396
  msgid "Card Number"
3397
  msgstr "Kortnummer"
3398
 
3421
  #: pages/checkout.php:432
3422
  #: classes/gateways/class.pmprogateway_stripe.php:1319
3423
  #: classes/gateways/class.pmprogateway_stripe.php:1338
3424
+ #: classes/gateways/class.pmprogateway_stripe.php:1344
3425
  msgid "Apply"
3426
  msgstr "Godta"
3427
 
3589
  #: classes/gateways/class.pmprogateway_paypal.php:132
3590
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
3591
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
3592
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:151
3593
  msgid "PayPal Settings"
3594
  msgstr "Innstillinger for PayPal"
3595
 
3607
  #: classes/gateways/class.pmprogateway_paypal.php:153
3608
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
3609
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
3610
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:172
3611
  msgid "Gateway Account Email"
3612
  msgstr "E-Post adresse for kontoen til betalingsformidlingsportalen"
3613
 
3620
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
3621
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
3622
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
3623
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:180
3624
  msgid "API Username"
3625
  msgstr "Brukernavn for API"
3626
 
3633
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
3634
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
3635
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
3636
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:188
3637
  msgid "API Password"
3638
  msgstr "Passord for API brukeren"
3639
 
3644
  #: classes/gateways/class.pmprogateway_paypal.php:177
3645
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
3646
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
3647
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:196
3648
  msgid "API Signature"
3649
  msgstr "Signatur for APIen"
3650
 
3655
  #: classes/gateways/class.pmprogateway_paypal.php:196
3656
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
3657
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
3658
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:215
3659
  msgid "IPN Handler URL"
3660
  msgstr "IPN prosesseringslenke"
3661
 
3672
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
3673
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
3674
  #: pages/checkout.php:218
3675
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:498
3676
  msgid "Check Out with PayPal"
3677
  msgstr "Betal med Paypal"
3678
 
3685
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
3686
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
3687
  #: pages/checkout.php:526
3688
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
3689
  msgid "Submit and Check Out"
3690
  msgstr "Lagre og betal"
3691
 
3700
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
3701
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
3702
  #: pages/checkout.php:526
3703
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
3704
  msgid "Submit and Confirm"
3705
  msgstr "Lagre og bekreft"
3706
 
3710
  #: classes/gateways/class.pmprogateway_paypal.php:716
3711
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
3712
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
3713
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:841
3714
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
3715
  msgstr "Vennligst ta kontakt med eieren av denne webtjenesten, eller avbryt abonnementet ditt på PayPal sine websider for å forsikre deg om at du ikke blir belastet for dette videre."
3716
 
3719
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
3720
  #: paid-memberships-pro.php:160
3721
  #: paid-memberships-pro.php:162
3722
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:94
3723
  msgid "PayPal Express"
3724
  msgstr "PayPal Express"
3725
 
3727
  #: classes/gateways/class.pmprogateway_paypalexpress.php:173
3728
  #: classes/gateways/class.pmprogateway_paypal.php:199
3729
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
3730
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:218
3731
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
3732
  msgstr "For å fullføre integreringen med PayPal’s betalingstjeneste, pass på å sette IPN hånderingslenken din til"
3733
 
3736
  #: classes/gateways/class.pmprogateway_paypalexpress.php:330
3737
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
3738
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
3739
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:352
3740
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:411
3741
  msgid "The PayPal Token was lost."
3742
  msgstr "PayPal tokenet var tapt."
3743
 
3764
  #: classes/gateways/class.pmprogateway_stripe.php:252
3765
  #: paid-memberships-pro.php:159
3766
  #: paid-memberships-pro.php:161
3767
+ #: classes/gateways/class.pmprogateway_stripe.php:258
3768
  msgid "Stripe"
3769
  msgstr "Stripe"
3770
 
3777
  #: classes/gateways/class.pmprogateway_stripe.php:539
3778
  #: classes/gateways/class.pmprogateway_stripe.php:551
3779
  #: classes/gateways/class.pmprogateway_stripe.php:570
3780
+ #: classes/gateways/class.pmprogateway_stripe.php:576
3781
  msgid "Secret Key"
3782
  msgstr "Hemmelig nøkkel"
3783
 
3786
  #: classes/gateways/class.pmprogateway_stripe.php:523
3787
  #: classes/gateways/class.pmprogateway_stripe.php:535
3788
  #: classes/gateways/class.pmprogateway_stripe.php:554
3789
+ #: classes/gateways/class.pmprogateway_stripe.php:560
3790
  msgid "Publishable Key"
3791
  msgstr "Publiserbar nøkkel"
3792
 
3795
  #: classes/gateways/class.pmprogateway_stripe.php:598
3796
  #: classes/gateways/class.pmprogateway_stripe.php:610
3797
  #: classes/gateways/class.pmprogateway_stripe.php:629
3798
+ #: classes/gateways/class.pmprogateway_stripe.php:635
3799
  msgid "Show Billing Address Fields"
3800
  msgstr "Vis felt for fakturaadresse"
3801
 
3804
  #: classes/gateways/class.pmprogateway_stripe.php:607
3805
  #: classes/gateways/class.pmprogateway_stripe.php:619
3806
  #: classes/gateways/class.pmprogateway_stripe.php:638
3807
+ #: classes/gateways/class.pmprogateway_stripe.php:644
3808
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
3809
  msgstr "Stripe krever ikke at man oppgir en fakturaadresse. Velg “Nei” for å ikke vise disse feltene på bestillingssiden. <br/><strong>Dersom du velger “nei”, pass på at du ikke har addresseverifisering slått på i kontoinnstillingene dine på Stripe sine websider."
3810
 
3817
  #: classes/gateways/class.pmprogateway_stripe.php:1379
3818
  #: classes/gateways/class.pmprogateway_stripe.php:1391
3819
  #: classes/gateways/class.pmprogateway_stripe.php:1410
3820
+ #: classes/gateways/class.pmprogateway_stripe.php:1416
3821
  msgid "Subscription Updates"
3822
  msgstr "Abonnementsoppdateringer"
3823
 
3825
  #: classes/gateways/class.pmprogateway_stripe.php:1383
3826
  #: classes/gateways/class.pmprogateway_stripe.php:1395
3827
  #: classes/gateways/class.pmprogateway_stripe.php:1414
3828
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
3829
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
3830
  msgstr "Abonnementsoppdateringer, lar deg endre abonnementsverdiene for brukeren til bestemte tider. Pass på å klikke på “Oppdater profilen” etter at du har ferdigstilt endringene."
3831
 
3833
  #: classes/gateways/class.pmprogateway_stripe.php:1385
3834
  #: classes/gateways/class.pmprogateway_stripe.php:1397
3835
  #: classes/gateways/class.pmprogateway_stripe.php:1416
3836
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
3837
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
3838
  msgstr "Abonnementsoppdateringer, lar deg endre abonnementsverdiene for brukeren til bestemte tider. Pass på å klikke på “Oppdater profilen” etter at du har ferdigstilt endringene."
3839
 
3844
  #: pages/billing.php:425
3845
  #: classes/gateways/class.pmprogateway_stripe.php:1403
3846
  #: classes/gateways/class.pmprogateway_stripe.php:1422
3847
+ #: classes/gateways/class.pmprogateway_stripe.php:1428
3848
  msgid "Update"
3849
  msgstr "Oppdater"
3850
 
3852
  #: classes/gateways/class.pmprogateway_stripe.php:2480
3853
  #: classes/gateways/class.pmprogateway_stripe.php:2492
3854
  #: classes/gateways/class.pmprogateway_stripe.php:2514
3855
+ #: classes/gateways/class.pmprogateway_stripe.php:2520
3856
  msgid "Could not cancel the old subscription. Updates have not been processed."
3857
  msgstr "Klarte ikke å avslutte det gamle abonnementet. Nye oppdateringer ble ikke behandlet."
3858
 
3867
  #: classes/gateways/class.pmprogateway_stripe.php:2127
3868
  #: classes/gateways/class.pmprogateway_stripe.php:2132
3869
  #: classes/gateways/class.pmprogateway_stripe.php:2137
3870
+ #: classes/gateways/class.pmprogateway_stripe.php:2133
3871
+ #: classes/gateways/class.pmprogateway_stripe.php:2138
3872
+ #: classes/gateways/class.pmprogateway_stripe.php:2143
3873
  msgid "Error creating customer record with Stripe:"
3874
  msgstr "Feil: Kunne ikke opprette en kundekonto hos Stripe:"
3875
 
3880
  #: classes/gateways/class.pmprogateway_stripe.php:2182
3881
  #: classes/gateways/class.pmprogateway_stripe.php:2196
3882
  #: classes/gateways/class.pmprogateway_stripe.php:2201
3883
+ #: classes/gateways/class.pmprogateway_stripe.php:2202
3884
+ #: classes/gateways/class.pmprogateway_stripe.php:2207
3885
  msgid "Error getting subscription with Stripe:"
3886
  msgstr "Feil: Fant ikke abonnementet hos Stripe"
3887
 
3893
  #: classes/gateways/class.pmprogateway_stripe.php:2356
3894
  #: classes/gateways/class.pmprogateway_stripe.php:2373
3895
  #: classes/gateways/class.pmprogateway_stripe.php:2378
3896
+ #: classes/gateways/class.pmprogateway_stripe.php:2379
3897
+ #: classes/gateways/class.pmprogateway_stripe.php:2384
3898
  msgid "Error creating plan with Stripe:"
3899
  msgstr "Feil: Kunne ikke opprette en betalingsplan med Stripe"
3900
 
3906
  #: classes/gateways/class.pmprogateway_stripe.php:2401
3907
  #: classes/gateways/class.pmprogateway_stripe.php:2409
3908
  #: classes/gateways/class.pmprogateway_stripe.php:2423
3909
+ #: classes/gateways/class.pmprogateway_stripe.php:2415
3910
+ #: classes/gateways/class.pmprogateway_stripe.php:2429
3911
  msgid "Error subscribing customer to plan with Stripe:"
3912
  msgstr "Feil: Kunne ikke lenke kunden til abonnementet hos Stripe"
3913
 
3915
  #: classes/gateways/class.pmprogateway_stripe.php:2632
3916
  #: classes/gateways/class.pmprogateway_stripe.php:2644
3917
  #: classes/gateways/class.pmprogateway_stripe.php:2666
3918
+ #: classes/gateways/class.pmprogateway_stripe.php:2672
3919
  msgid "Could not cancel old subscription."
3920
  msgstr "Kunne ikke avslutte det gamle abonnementet."
3921
 
3923
  #: classes/gateways/class.pmprogateway_stripe.php:2648
3924
  #: classes/gateways/class.pmprogateway_stripe.php:2660
3925
  #: classes/gateways/class.pmprogateway_stripe.php:2682
3926
+ #: classes/gateways/class.pmprogateway_stripe.php:2688
3927
  msgid "Could not find the customer."
3928
  msgstr "Fant ikke kunden"
3929
 
4460
 
4461
  #: includes/license.php:81
4462
  #: adminpages/license.php:43
4463
+ #: adminpages/license.php:33
4464
  msgid "Paid Memberships Pro Support License"
4465
  msgstr "Paid Membership Pro brukerstøttelisens"
4466
 
4476
  #: adminpages/dashboard.php:174
4477
  #: adminpages/license.php:49
4478
  #: adminpages/dashboard.php:178
4479
+ #: adminpages/license.php:41
4480
  msgid "Your license is invalid or expired."
4481
  msgstr "Brukerstøttelisense er ugyldig, eller så har den utgått."
4482
 
4491
 
4492
  #: includes/license.php:100
4493
  #: adminpages/license.php:59
4494
+ #: adminpages/license.php:51
4495
  msgid "Enter license key here..."
4496
  msgstr "Legg inn lisensnøkkelen din her…"
4497
 
4667
  #: adminpages/dashboard.php:224
4668
  #: adminpages/dashboard.php:292
4669
  #: adminpages/orders.php:1343
4670
+ #: includes/profile.php:500
4671
  msgid "Level"
4672
  msgstr "Kurs"
4673
 
4709
  #: includes/profile.php:747
4710
  #: pages/billing.php:164
4711
  #: pages/checkout.php:234
4712
+ #: includes/profile.php:759
4713
  msgid "First Name"
4714
  msgstr "Fornavn"
4715
 
4719
  #: includes/profile.php:748
4720
  #: pages/billing.php:168
4721
  #: pages/checkout.php:238
4722
+ #: includes/profile.php:760
4723
  msgid "Last Name"
4724
  msgstr "Etternavn"
4725
 
5417
  # @ pmpro
5418
  #: services/authnet-silent-post.php:144
5419
  #: services/authnet-silent-post.php:173
5420
+ #: services/authnet-silent-post.php:176
5421
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
5422
  msgstr "Authorize.net har valgt å holde betalingen for ettersyn.</p><p>Informasjon om betalingen fra Authorize.net"
5423
 
5465
  #: includes/profile.php:872
5466
  #: includes/profile.php:909
5467
  #: shortcodes/pmpro_account.php:195
5468
+ #: includes/profile.php:884
5469
+ #: includes/profile.php:921
5470
  msgid "Change Password"
5471
  msgstr "Endre passord"
5472
 
5538
  #: adminpages/advancedsettings.php:316
5539
  #: includes/privacy.php:175
5540
  #: includes/profile.php:509
5541
+ #: includes/profile.php:515
5542
  #~ msgid "Never"
5543
  #~ msgstr "Aldri"
5544
 
5734
 
5735
  #: adminpages/admin_header.php:152
5736
  #: classes/gateways/class.pmprogateway_stripe.php:76
5737
+ #: classes/gateways/class.pmprogateway_stripe.php:82
5738
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
5739
  msgstr ""
5740
 
6007
  #: adminpages/dashboard.php:177
6008
  #: adminpages/license.php:51
6009
  #: adminpages/dashboard.php:181
6010
+ #: adminpages/license.php:43
6011
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
6012
  msgstr ""
6013
 
6444
  msgstr ""
6445
 
6446
  #: adminpages/license.php:47
6447
+ #: adminpages/license.php:39
6448
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
6449
  msgstr ""
6450
 
6451
  #: adminpages/license.php:49
6452
+ #: adminpages/license.php:37
6453
+ #: adminpages/license.php:41
6454
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
6455
  msgstr ""
6456
 
6457
  #: adminpages/license.php:61
6458
+ #: adminpages/license.php:53
6459
  msgid "Validate Key"
6460
  msgstr ""
6461
 
6462
  #: adminpages/license.php:95
6463
+ #: adminpages/license.php:87
6464
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
6465
  msgstr ""
6466
 
7018
 
7019
  #: classes/gateways/class.pmprogateway_braintree.php:87
7020
  #: classes/gateways/class.pmprogateway_stripe.php:91
7021
+ #: classes/gateways/class.pmprogateway_stripe.php:97
7022
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
7023
  msgstr ""
7024
 
7316
  msgstr ""
7317
 
7318
  #: classes/gateways/class.pmprogateway_cybersource.php:922
7319
+ #: includes/license.php:159
7320
  msgid "Unknown error."
7321
  msgstr ""
7322
 
7331
  #: classes/gateways/class.pmprogateway_paypal.php:146
7332
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
7333
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
7334
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:165
7335
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
7336
  msgstr ""
7337
 
7338
  #: classes/gateways/class.pmprogateway_paypal.php:185
7339
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
7340
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:204
7341
  msgid "Confirmation Step"
7342
  msgstr ""
7343
 
7344
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
7345
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:356
7346
  msgid "Checkout was already processed."
7347
  msgstr ""
7348
 
7349
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
7350
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:791
7351
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
7352
  msgstr ""
7353
 
7354
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
7355
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:792
7356
  msgid "Error creating plan with PayPal."
7357
  msgstr ""
7358
 
7364
  #: classes/gateways/class.pmprogateway_stripe.php:436
7365
  #: classes/gateways/class.pmprogateway_stripe.php:354
7366
  #: classes/gateways/class.pmprogateway_stripe.php:444
7367
+ #: classes/gateways/class.pmprogateway_stripe.php:360
7368
+ #: classes/gateways/class.pmprogateway_stripe.php:450
7369
  msgid "Stripe Connect Settings"
7370
  msgstr ""
7371
 
7372
  #: classes/gateways/class.pmprogateway_stripe.php:352
7373
  #: classes/gateways/class.pmprogateway_stripe.php:356
7374
+ #: classes/gateways/class.pmprogateway_stripe.php:362
7375
  msgid "Live Mode:"
7376
  msgstr ""
7377
 
7379
  #: classes/gateways/class.pmprogateway_stripe.php:440
7380
  #: classes/gateways/class.pmprogateway_stripe.php:358
7381
  #: classes/gateways/class.pmprogateway_stripe.php:448
7382
+ #: classes/gateways/class.pmprogateway_stripe.php:364
7383
+ #: classes/gateways/class.pmprogateway_stripe.php:454
7384
  msgid "Connected"
7385
  msgstr ""
7386
 
7388
  #: classes/gateways/class.pmprogateway_stripe.php:442
7389
  #: classes/gateways/class.pmprogateway_stripe.php:362
7390
  #: classes/gateways/class.pmprogateway_stripe.php:452
7391
+ #: classes/gateways/class.pmprogateway_stripe.php:368
7392
+ #: classes/gateways/class.pmprogateway_stripe.php:458
7393
  msgid "Not Connected"
7394
  msgstr ""
7395
 
7397
  #: classes/gateways/class.pmprogateway_stripe.php:449
7398
  #: classes/gateways/class.pmprogateway_stripe.php:369
7399
  #: classes/gateways/class.pmprogateway_stripe.php:459
7400
+ #: classes/gateways/class.pmprogateway_stripe.php:375
7401
+ #: classes/gateways/class.pmprogateway_stripe.php:465
7402
  msgid "Your site is using legacy API keys to authenticate with Stripe."
7403
  msgstr ""
7404
 
7405
  #: classes/gateways/class.pmprogateway_stripe.php:364
7406
  #: classes/gateways/class.pmprogateway_stripe.php:371
7407
+ #: classes/gateways/class.pmprogateway_stripe.php:377
7408
  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."
7409
  msgstr ""
7410
 
7412
  #: classes/gateways/class.pmprogateway_stripe.php:458
7413
  #: classes/gateways/class.pmprogateway_stripe.php:380
7414
  #: classes/gateways/class.pmprogateway_stripe.php:470
7415
+ #: classes/gateways/class.pmprogateway_stripe.php:386
7416
+ #: classes/gateways/class.pmprogateway_stripe.php:476
7417
  msgid "Stripe Connection:"
7418
  msgstr ""
7419
 
7421
  #: classes/gateways/class.pmprogateway_stripe.php:482
7422
  #: classes/gateways/class.pmprogateway_stripe.php:396
7423
  #: classes/gateways/class.pmprogateway_stripe.php:494
7424
+ #: classes/gateways/class.pmprogateway_stripe.php:402
7425
+ #: classes/gateways/class.pmprogateway_stripe.php:500
7426
  msgid "Disconnect From Stripe"
7427
  msgstr ""
7428
 
7429
  #: classes/gateways/class.pmprogateway_stripe.php:389
7430
  #: classes/gateways/class.pmprogateway_stripe.php:397
7431
+ #: classes/gateways/class.pmprogateway_stripe.php:403
7432
  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."
7433
  msgstr ""
7434
 
7436
  #: classes/gateways/class.pmprogateway_stripe.php:496
7437
  #: classes/gateways/class.pmprogateway_stripe.php:409
7438
  #: classes/gateways/class.pmprogateway_stripe.php:508
7439
+ #: classes/gateways/class.pmprogateway_stripe.php:415
7440
+ #: classes/gateways/class.pmprogateway_stripe.php:514
7441
  msgid "Connect with Stripe"
7442
  msgstr ""
7443
 
7444
  #: classes/gateways/class.pmprogateway_stripe.php:408
7445
  #: classes/gateways/class.pmprogateway_stripe.php:416
7446
+ #: classes/gateways/class.pmprogateway_stripe.php:422
7447
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
7448
  msgstr ""
7449
 
7450
  #: classes/gateways/class.pmprogateway_stripe.php:411
7451
  #: classes/gateways/class.pmprogateway_stripe.php:419
7452
+ #: classes/gateways/class.pmprogateway_stripe.php:425
7453
  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."
7454
  msgstr ""
7455
 
7460
  #: classes/gateways/class.pmprogateway_stripe.php:519
7461
  #: classes/gateways/class.pmprogateway_stripe.php:559
7462
  #: classes/gateways/class.pmprogateway_stripe.php:578
7463
+ #: classes/gateways/class.pmprogateway_stripe.php:437
7464
+ #: classes/gateways/class.pmprogateway_stripe.php:525
7465
+ #: classes/gateways/class.pmprogateway_stripe.php:584
7466
  msgid "Webhook"
7467
  msgstr ""
7468
 
7473
  #: classes/gateways/class.pmprogateway_stripe.php:523
7474
  #: classes/gateways/class.pmprogateway_stripe.php:594
7475
  #: classes/gateways/class.pmprogateway_stripe.php:613
7476
+ #: classes/gateways/class.pmprogateway_stripe.php:441
7477
+ #: classes/gateways/class.pmprogateway_stripe.php:529
7478
+ #: classes/gateways/class.pmprogateway_stripe.php:619
7479
  msgid "Webhook URL"
7480
  msgstr ""
7481
 
7482
  #: classes/gateways/class.pmprogateway_stripe.php:438
7483
  #: classes/gateways/class.pmprogateway_stripe.php:446
7484
+ #: classes/gateways/class.pmprogateway_stripe.php:452
7485
  msgid "Test Mode:"
7486
  msgstr ""
7487
 
7488
  #: classes/gateways/class.pmprogateway_stripe.php:450
7489
  #: classes/gateways/class.pmprogateway_stripe.php:461
7490
+ #: classes/gateways/class.pmprogateway_stripe.php:467
7491
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
7492
  msgstr ""
7493
 
7494
  #: classes/gateways/class.pmprogateway_stripe.php:483
7495
  #: classes/gateways/class.pmprogateway_stripe.php:495
7496
+ #: classes/gateways/class.pmprogateway_stripe.php:501
7497
  msgid "This will disconnect your site from Stripe in test mode only."
7498
  msgstr ""
7499
 
7500
  #: classes/gateways/class.pmprogateway_stripe.php:518
7501
  #: classes/gateways/class.pmprogateway_stripe.php:530
7502
+ #: classes/gateways/class.pmprogateway_stripe.php:536
7503
  msgid "Stripe API Settings (Legacy)"
7504
  msgstr ""
7505
 
7506
  #: classes/gateways/class.pmprogateway_stripe.php:531
7507
  #: classes/gateways/class.pmprogateway_stripe.php:543
7508
  #: classes/gateways/class.pmprogateway_stripe.php:562
7509
+ #: classes/gateways/class.pmprogateway_stripe.php:568
7510
  msgid "Your Publishable Key appears incorrect."
7511
  msgstr ""
7512
 
7516
  #: classes/gateways/class.pmprogateway_stripe.php:587
7517
  #: classes/gateways/class.pmprogateway_stripe.php:582
7518
  #: classes/gateways/class.pmprogateway_stripe.php:606
7519
+ #: classes/gateways/class.pmprogateway_stripe.php:588
7520
+ #: classes/gateways/class.pmprogateway_stripe.php:612
7521
  msgid "Create Webhook"
7522
  msgstr ""
7523
 
7524
  #: classes/gateways/class.pmprogateway_stripe.php:557
7525
  #: classes/gateways/class.pmprogateway_stripe.php:569
7526
  #: classes/gateways/class.pmprogateway_stripe.php:588
7527
+ #: classes/gateways/class.pmprogateway_stripe.php:594
7528
  msgid "A webhook is set up in Stripe, but it is disabled."
7529
  msgstr ""
7530
 
7531
  #: classes/gateways/class.pmprogateway_stripe.php:564
7532
  #: classes/gateways/class.pmprogateway_stripe.php:576
7533
  #: classes/gateways/class.pmprogateway_stripe.php:595
7534
+ #: classes/gateways/class.pmprogateway_stripe.php:601
7535
  msgid "A webhook is set up in Stripe, but it is using an old API version."
7536
  msgstr ""
7537
 
7538
  #: classes/gateways/class.pmprogateway_stripe.php:564
7539
  #: classes/gateways/class.pmprogateway_stripe.php:576
7540
  #: classes/gateways/class.pmprogateway_stripe.php:595
7541
+ #: classes/gateways/class.pmprogateway_stripe.php:601
7542
  msgid "Rebuild Webhook"
7543
  msgstr ""
7544
 
7551
  #: classes/gateways/class.pmprogateway_stripe.php:601
7552
  #: classes/gateways/class.pmprogateway_stripe.php:741
7553
  #: classes/gateways/class.pmprogateway_stripe.php:857
7554
+ #: classes/gateways/class.pmprogateway_stripe.php:607
7555
+ #: classes/gateways/class.pmprogateway_stripe.php:747
7556
+ #: classes/gateways/class.pmprogateway_stripe.php:863
7557
  msgid "Your webhook is enabled."
7558
  msgstr ""
7559
 
7560
  #: classes/gateways/class.pmprogateway_stripe.php:570
7561
  #: classes/gateways/class.pmprogateway_stripe.php:582
7562
  #: classes/gateways/class.pmprogateway_stripe.php:601
7563
+ #: classes/gateways/class.pmprogateway_stripe.php:607
7564
  msgid "Disable Webhook"
7565
  msgstr ""
7566
 
7576
  #: classes/gateways/class.pmprogateway_stripe.php:768
7577
  #: classes/gateways/class.pmprogateway_stripe.php:785
7578
  #: classes/gateways/class.pmprogateway_stripe.php:819
7579
+ #: classes/gateways/class.pmprogateway_stripe.php:614
7580
+ #: classes/gateways/class.pmprogateway_stripe.php:774
7581
+ #: classes/gateways/class.pmprogateway_stripe.php:791
7582
+ #: classes/gateways/class.pmprogateway_stripe.php:825
7583
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
7584
  msgstr ""
7585
 
7586
  #: classes/gateways/class.pmprogateway_stripe.php:589
7587
  #: classes/gateways/class.pmprogateway_stripe.php:601
7588
  #: classes/gateways/class.pmprogateway_stripe.php:620
7589
+ #: classes/gateways/class.pmprogateway_stripe.php:626
7590
  msgid "Other Stripe Settings"
7591
  msgstr ""
7592
 
7593
  #: classes/gateways/class.pmprogateway_stripe.php:593
7594
  #: classes/gateways/class.pmprogateway_stripe.php:605
7595
  #: classes/gateways/class.pmprogateway_stripe.php:624
7596
+ #: classes/gateways/class.pmprogateway_stripe.php:630
7597
  msgid "Stripe API Version"
7598
  msgstr ""
7599
 
7600
  #: classes/gateways/class.pmprogateway_stripe.php:612
7601
  #: classes/gateways/class.pmprogateway_stripe.php:624
7602
  #: classes/gateways/class.pmprogateway_stripe.php:643
7603
+ #: classes/gateways/class.pmprogateway_stripe.php:649
7604
  msgid "Enable Payment Request Button"
7605
  msgstr ""
7606
 
7607
  #: classes/gateways/class.pmprogateway_stripe.php:630
7608
  #: classes/gateways/class.pmprogateway_stripe.php:642
7609
  #: classes/gateways/class.pmprogateway_stripe.php:661
7610
+ #: classes/gateways/class.pmprogateway_stripe.php:667
7611
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
7612
  msgstr ""
7613
 
7614
  #: classes/gateways/class.pmprogateway_stripe.php:643
7615
  #: classes/gateways/class.pmprogateway_stripe.php:655
7616
  #: classes/gateways/class.pmprogateway_stripe.php:674
7617
+ #: classes/gateways/class.pmprogateway_stripe.php:680
7618
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
7619
  msgstr ""
7620
 
7621
  #: classes/gateways/class.pmprogateway_stripe.php:645
7622
  #: classes/gateways/class.pmprogateway_stripe.php:657
7623
  #: classes/gateways/class.pmprogateway_stripe.php:676
7624
+ #: classes/gateways/class.pmprogateway_stripe.php:682
7625
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
7626
  msgstr ""
7627
 
7628
  #: classes/gateways/class.pmprogateway_stripe.php:647
7629
  #: classes/gateways/class.pmprogateway_stripe.php:659
7630
  #: classes/gateways/class.pmprogateway_stripe.php:678
7631
+ #: classes/gateways/class.pmprogateway_stripe.php:684
7632
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
7633
  msgstr ""
7634
 
7635
  #: classes/gateways/class.pmprogateway_stripe.php:649
7636
  #: classes/gateways/class.pmprogateway_stripe.php:661
7637
  #: classes/gateways/class.pmprogateway_stripe.php:680
7638
+ #: classes/gateways/class.pmprogateway_stripe.php:686
7639
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
7640
  msgstr ""
7641
 
7642
  #: classes/gateways/class.pmprogateway_stripe.php:674
7643
  #: classes/gateways/class.pmprogateway_stripe.php:686
7644
  #: classes/gateways/class.pmprogateway_stripe.php:705
7645
+ #: classes/gateways/class.pmprogateway_stripe.php:711
7646
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
7647
  msgstr ""
7648
 
7649
  #: classes/gateways/class.pmprogateway_stripe.php:695
7650
  #: classes/gateways/class.pmprogateway_stripe.php:707
7651
  #: classes/gateways/class.pmprogateway_stripe.php:726
7652
+ #: classes/gateways/class.pmprogateway_stripe.php:732
7653
  msgid "Webhook creation failed. You might already have a webhook set up."
7654
  msgstr ""
7655
 
7659
  #: classes/gateways/class.pmprogateway_stripe.php:847
7660
  #: classes/gateways/class.pmprogateway_stripe.php:792
7661
  #: classes/gateways/class.pmprogateway_stripe.php:866
7662
+ #: classes/gateways/class.pmprogateway_stripe.php:798
7663
+ #: classes/gateways/class.pmprogateway_stripe.php:872
7664
  msgid "There was an error deleting the webhook."
7665
  msgstr ""
7666
 
7667
  #: classes/gateways/class.pmprogateway_stripe.php:811
7668
  #: classes/gateways/class.pmprogateway_stripe.php:823
7669
  #: classes/gateways/class.pmprogateway_stripe.php:842
7670
+ #: classes/gateways/class.pmprogateway_stripe.php:848
7671
  msgid "Webhook creation failed. Please refresh and try again."
7672
  msgstr ""
7673
 
7674
  #: classes/gateways/class.pmprogateway_stripe.php:867
7675
  #: classes/gateways/class.pmprogateway_stripe.php:879
7676
  #: classes/gateways/class.pmprogateway_stripe.php:898
7677
+ #: classes/gateways/class.pmprogateway_stripe.php:904
7678
  msgid "Verification steps confirmed. Your payment is processing."
7679
  msgstr ""
7680
 
7681
  #: classes/gateways/class.pmprogateway_stripe.php:1262
7682
  #: classes/gateways/class.pmprogateway_stripe.php:1274
7683
  #: classes/gateways/class.pmprogateway_stripe.php:1293
7684
+ #: classes/gateways/class.pmprogateway_stripe.php:1299
7685
  msgid "Pay with Credit Card"
7686
  msgstr ""
7687
 
7688
  #: classes/gateways/class.pmprogateway_stripe.php:1296
7689
  #: classes/gateways/class.pmprogateway_stripe.php:1308
7690
  #: classes/gateways/class.pmprogateway_stripe.php:1327
7691
+ #: classes/gateways/class.pmprogateway_stripe.php:1333
7692
  msgid "CVC"
7693
  msgstr ""
7694
 
7695
  #: classes/gateways/class.pmprogateway_stripe.php:1374
7696
  #: classes/gateways/class.pmprogateway_stripe.php:1386
7697
  #: classes/gateways/class.pmprogateway_stripe.php:1405
7698
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
7699
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
7700
  msgstr ""
7701
 
7711
  #: classes/gateways/class.pmprogateway_stripe.php:2016
7712
  #: classes/gateways/class.pmprogateway_stripe.php:2029
7713
  #: classes/gateways/class.pmprogateway_stripe.php:2033
7714
+ #: classes/gateways/class.pmprogateway_stripe.php:2018
7715
+ #: classes/gateways/class.pmprogateway_stripe.php:2022
7716
+ #: classes/gateways/class.pmprogateway_stripe.php:2035
7717
+ #: classes/gateways/class.pmprogateway_stripe.php:2039
7718
  msgid "Error: %s"
7719
  msgstr ""
7720
 
7724
  #: classes/gateways/class.pmprogateway_stripe.php:2834
7725
  #: classes/gateways/class.pmprogateway_stripe.php:2850
7726
  #: classes/gateways/class.pmprogateway_stripe.php:2856
7727
+ #: classes/gateways/class.pmprogateway_stripe.php:2862
7728
  msgid "Error: "
7729
  msgstr ""
7730
 
7731
  #: classes/gateways/class.pmprogateway_stripe.php:2836
7732
  #: classes/gateways/class.pmprogateway_stripe.php:2848
7733
  #: classes/gateways/class.pmprogateway_stripe.php:2870
7734
+ #: classes/gateways/class.pmprogateway_stripe.php:2876
7735
  msgid "Error: Unkown error while refunding charge #%s"
7736
  msgstr ""
7737
 
7738
  #: classes/gateways/class.pmprogateway_stripe.php:3330
7739
  #: classes/gateways/class.pmprogateway_stripe.php:3342
7740
  #: classes/gateways/class.pmprogateway_stripe.php:3364
7741
+ #: classes/gateways/class.pmprogateway_stripe.php:3370
7742
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
7743
  msgstr ""
7744
 
7745
  #: classes/gateways/class.pmprogateway_stripe.php:3347
7746
  #: classes/gateways/class.pmprogateway_stripe.php:3359
7747
  #: classes/gateways/class.pmprogateway_stripe.php:3381
7748
+ #: classes/gateways/class.pmprogateway_stripe.php:3387
7749
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
7750
  msgstr ""
7751
 
7752
  #: classes/gateways/class.pmprogateway_stripe.php:3533
7753
  #: classes/gateways/class.pmprogateway_stripe.php:3545
7754
  #: classes/gateways/class.pmprogateway_stripe.php:3567
7755
+ #: classes/gateways/class.pmprogateway_stripe.php:3573
7756
  msgid "Invalid response from the Stripe Connect server."
7757
  msgstr ""
7758
 
7760
  #: classes/gateways/class.pmprogateway_stripe.php:3561
7761
  #: classes/gateways/class.pmprogateway_stripe.php:3573
7762
  #: classes/gateways/class.pmprogateway_stripe.php:3595
7763
+ #: classes/gateways/class.pmprogateway_stripe.php:3601
7764
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
7765
  msgstr ""
7766
 
7768
  #: classes/gateways/class.pmprogateway_stripe.php:3597
7769
  #: classes/gateways/class.pmprogateway_stripe.php:3609
7770
  #: classes/gateways/class.pmprogateway_stripe.php:3631
7771
+ #: classes/gateways/class.pmprogateway_stripe.php:3637
7772
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
7773
  msgstr ""
7774
 
7775
  #: classes/gateways/class.pmprogateway_stripe.php:3768
7776
  #: classes/gateways/class.pmprogateway_stripe.php:3780
7777
  #: classes/gateways/class.pmprogateway_stripe.php:3802
7778
+ #: classes/gateways/class.pmprogateway_stripe.php:3808
7779
  msgid "Last webhook received at"
7780
  msgstr ""
7781
 
7782
  #: classes/gateways/class.pmprogateway_stripe.php:3770
7783
  #: classes/gateways/class.pmprogateway_stripe.php:3782
7784
  #: classes/gateways/class.pmprogateway_stripe.php:3804
7785
+ #: classes/gateways/class.pmprogateway_stripe.php:3810
7786
  msgid "No webhooks have been received."
7787
  msgstr ""
7788
 
7789
  #: classes/gateways/class.pmprogateway_stripe.php:3774
7790
  #: classes/gateways/class.pmprogateway_stripe.php:3786
7791
  #: classes/gateways/class.pmprogateway_stripe.php:3808
7792
+ #: classes/gateways/class.pmprogateway_stripe.php:3814
7793
  msgid "Your webhook may not be working correctly."
7794
  msgstr ""
7795
 
7796
  #: classes/gateways/class.pmprogateway_stripe.php:3776
7797
  #: classes/gateways/class.pmprogateway_stripe.php:3788
7798
  #: classes/gateways/class.pmprogateway_stripe.php:3810
7799
+ #: classes/gateways/class.pmprogateway_stripe.php:3816
7800
  msgid "Click here for info on setting up your webhook with Stripe."
7801
  msgstr ""
7802
 
9901
 
9902
  #: includes/login.php:429
9903
  #: includes/profile.php:843
9904
+ #: includes/profile.php:855
9905
  msgid "New passwords do not match."
9906
  msgstr ""
9907
 
9908
  #: includes/login.php:433
9909
  #: includes/profile.php:839
9910
+ #: includes/profile.php:851
9911
  msgid "Please complete all fields."
9912
  msgstr ""
9913
 
9937
 
9938
  #: includes/login.php:688
9939
  #: includes/profile.php:891
9940
+ #: includes/profile.php:903
9941
  msgid "New Password"
9942
  msgstr ""
9943
 
9944
  #: includes/login.php:690
9945
  #: includes/profile.php:894
9946
  #: includes/scripts.php:86
9947
+ #: includes/profile.php:906
9948
+ #: includes/scripts.php:85
9949
  msgid "Strength Indicator"
9950
  msgstr ""
9951
 
9952
  #: includes/login.php:694
9953
  #: includes/profile.php:898
9954
+ #: includes/profile.php:910
9955
  msgid "Confirm New Password"
9956
  msgstr ""
9957
 
10048
  #: includes/privacy.php:182
10049
  #: includes/profile.php:425
10050
  #: includes/profile.php:493
10051
+ #: includes/profile.php:499
10052
  msgid "Level ID"
10053
  msgstr ""
10054
 
10055
  #: includes/privacy.php:190
10056
  #: includes/profile.php:496
10057
+ #: includes/profile.php:502
10058
  msgid "Date Modified"
10059
  msgstr ""
10060
 
10061
  #: includes/privacy.php:194
10062
  #: includes/profile.php:497
10063
+ #: includes/profile.php:503
10064
  msgid "End Date"
10065
  msgstr ""
10066
 
10067
  #: includes/privacy.php:198
10068
  #: includes/profile.php:498
10069
+ #: includes/profile.php:504
10070
  msgid "Level Cost"
10071
  msgstr ""
10072
 
10165
  msgstr ""
10166
 
10167
  #: includes/profile.php:485
10168
+ #: includes/profile.php:488
10169
  msgid "No membership orders found."
10170
  msgstr ""
10171
 
10172
  #: includes/profile.php:537
10173
+ #: includes/profile.php:546
10174
  msgid "No membership history found."
10175
  msgstr ""
10176
 
10177
  #: includes/profile.php:644
10178
+ #: includes/profile.php:656
10179
  msgid "Log in to edit your profile."
10180
  msgstr ""
10181
 
10182
  #: includes/profile.php:679
10183
+ #: includes/profile.php:691
10184
  msgid "Please enter a display name."
10185
  msgstr ""
10186
 
10187
  #: includes/profile.php:689
10188
+ #: includes/profile.php:701
10189
  msgid "Please enter an email address."
10190
  msgstr ""
10191
 
10192
  #: includes/profile.php:691
10193
+ #: includes/profile.php:703
10194
  msgid "The email address isn&#8217;t correct."
10195
  msgstr ""
10196
 
10197
  #: includes/profile.php:695
10198
+ #: includes/profile.php:707
10199
  msgid "This email is already registered, please choose another one."
10200
  msgstr ""
10201
 
10202
  #: includes/profile.php:722
10203
+ #: includes/profile.php:734
10204
  msgid "Your profile has been updated."
10205
  msgstr ""
10206
 
10207
  #: includes/profile.php:749
10208
+ #: includes/profile.php:761
10209
  msgid "Display name publicly as"
10210
  msgstr ""
10211
 
10212
  #: includes/profile.php:762
10213
+ #: includes/profile.php:774
10214
  msgid "Site administrators must use the WordPress dashboard to update their email address."
10215
  msgstr ""
10216
 
10217
  #: includes/profile.php:785
10218
+ #: includes/profile.php:797
10219
  msgid "Update Profile"
10220
  msgstr ""
10221
 
10222
  #: includes/profile.php:841
10223
+ #: includes/profile.php:853
10224
  msgid "Please enter your current password."
10225
  msgstr ""
10226
 
10227
  #: includes/profile.php:845
10228
+ #: includes/profile.php:857
10229
  msgid "Your current password is incorrect."
10230
  msgstr ""
10231
 
10232
  #: includes/profile.php:856
10233
+ #: includes/profile.php:868
10234
  msgid "Your password has been updated."
10235
  msgstr ""
10236
 
10237
  #: includes/profile.php:886
10238
+ #: includes/profile.php:898
10239
  msgid "Current Password"
10240
  msgstr ""
10241
 
10242
  #: includes/profile.php:888
10243
  #: includes/profile.php:893
10244
  #: includes/profile.php:900
10245
+ #: includes/profile.php:905
10246
+ #: includes/profile.php:912
10247
  msgid "Required Field"
10248
  msgstr ""
10249
 
10340
  msgstr ""
10341
 
10342
  #: services/braintree-webhook.php:425
10343
+ #: services/braintree-webhook.php:426
10344
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
10345
  msgstr ""
10346
 
10347
  #: services/braintree-webhook.php:427
10348
+ #: services/braintree-webhook.php:428
10349
  msgid "A member's Braintree subscription has expired at %s"
10350
  msgstr ""
10351
 
10664
 
10665
  #: classes/gateways/class.pmprogateway_stripe.php:360
10666
  #: classes/gateways/class.pmprogateway_stripe.php:450
10667
+ #: classes/gateways/class.pmprogateway_stripe.php:366
10668
+ #: classes/gateways/class.pmprogateway_stripe.php:456
10669
  msgid "Connected with Legacy Keys"
10670
  msgstr ""
10671
 
10672
  #: classes/gateways/class.pmprogateway_stripe.php:370
10673
  #: classes/gateways/class.pmprogateway_stripe.php:460
10674
+ #: classes/gateways/class.pmprogateway_stripe.php:376
10675
+ #: classes/gateways/class.pmprogateway_stripe.php:466
10676
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
10677
  msgstr ""
10678
 
10679
  #: classes/gateways/class.pmprogateway_stripe.php:372
10680
  #: classes/gateways/class.pmprogateway_stripe.php:462
10681
+ #: classes/gateways/class.pmprogateway_stripe.php:378
10682
+ #: classes/gateways/class.pmprogateway_stripe.php:468
10683
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
10684
  msgstr ""
10685
 
10736
  msgstr ""
10737
 
10738
  #: classes/gateways/class.pmprogateway_stripe.php:533
10739
+ #: classes/gateways/class.pmprogateway_stripe.php:539
10740
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
10741
  msgstr ""
10742
 
10743
  #: classes/gateways/class.pmprogateway_stripe.php:534
10744
+ #: classes/gateways/class.pmprogateway_stripe.php:540
10745
  msgid "Click here to use the legacy API settings."
10746
  msgstr ""
10747
 
10748
  #: paid-memberships-pro.php:194
10749
  msgid "Once a month"
10750
  msgstr ""
10751
+
10752
+ #: adminpages/license.php:37
10753
+ msgid "There was an issue validating your license key: %s"
10754
+ msgstr ""
10755
+
10756
+ #: includes/email-templates.php:172
10757
+ msgid ""
10758
+ "<p>There was a new member checkout at !!sitename!!.</p>\n"
10759
+ "\n"
10760
+ "<p><strong>They have chosen to pay by check.</strong></p>\n"
10761
+ "\n"
10762
+ "<p>Below are details about the new membership account and a receipt for the initial membership invoice.</p>\n"
10763
+ "\n"
10764
+ "<p>Account: !!display_name!! (!!user_email!!)</p>\n"
10765
+ "<p>Membership Level: !!membership_level_name!!</p>\n"
10766
+ "<p>Membership Fee: !!membership_cost!!</p>\n"
10767
+ "!!membership_expiration!! !!discount_code!!\n"
10768
+ "\n"
10769
+ "<p>\n"
10770
+ "\tInvoice #!!invoice_id!! on !!invoice_date!!<br />\n"
10771
+ "\tTotal Billed: !!invoice_total!!\n"
10772
+ "</p>\n"
10773
+ "\n"
10774
+ "<p>Log in to your membership account here: !!login_url!!</p>"
10775
+ msgstr ""
10776
+
10777
+ #: includes/license.php:112
10778
+ msgid "Missing key."
10779
+ msgstr ""
10780
+
10781
+ #: shortcodes/pmpro_account.php:145
10782
+ msgctxt "A dash is shown when there is no expiration date."
10783
+ msgid "&#8212;"
10784
+ msgstr ""
languages/paid-memberships-pro-nl_NL.mo CHANGED
Binary file
languages/paid-memberships-pro-nl_NL.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.2\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-09-17T13:57:37+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -183,6 +183,7 @@ msgstr "Payment Gateway &amp; SSL"
183
  #: adminpages/orders.php:391
184
  #: adminpages/orders.php:1445
185
  #: adminpages/orders.php:1448
 
186
  msgid "Email"
187
  msgstr "E-mail"
188
 
@@ -327,6 +328,8 @@ msgstr "Ja - Toon fragmenten."
327
  #: adminpages/advancedsettings.php:479
328
  #: classes/gateways/class.pmprogateway_stripe.php:634
329
  #: classes/gateways/class.pmprogateway_stripe.php:648
 
 
330
  msgid "No"
331
  msgstr "Nee"
332
 
@@ -402,6 +405,8 @@ msgstr "Alleen voor multisite"
402
  #: adminpages/advancedsettings.php:397
403
  #: classes/gateways/class.pmprogateway_stripe.php:636
404
  #: classes/gateways/class.pmprogateway_stripe.php:650
 
 
405
  msgid "Yes"
406
  msgstr "Ja"
407
 
@@ -630,6 +635,7 @@ msgstr "Code"
630
  #: includes/privacy.php:186
631
  #: includes/profile.php:495
632
  #: adminpages/discountcodes.php:489
 
633
  msgid "Start Date"
634
  msgstr "Startdatum"
635
 
@@ -648,6 +654,7 @@ msgstr "Startdatum"
648
  #: classes/gateways/class.pmprogateway_stripe.php:1301
649
  #: adminpages/discountcodes.php:507
650
  #: classes/gateways/class.pmprogateway_stripe.php:1320
 
651
  msgid "Expiration Date"
652
  msgstr "Verloopdatum"
653
 
@@ -736,6 +743,7 @@ msgstr "Kosten"
736
  #: adminpages/discountcodes.php:612
737
  #: adminpages/discountcodes.php:699
738
  #: classes/gateways/class.pmprogateway_stripe.php:1363
 
739
  msgid "Day(s)"
740
  msgstr "Dag(en)"
741
 
@@ -753,6 +761,7 @@ msgstr "Dag(en)"
753
  #: adminpages/discountcodes.php:612
754
  #: adminpages/discountcodes.php:699
755
  #: classes/gateways/class.pmprogateway_stripe.php:1365
 
756
  msgid "Month(s)"
757
  msgstr "Maand(en)"
758
 
@@ -770,6 +779,7 @@ msgstr "Maand(en)"
770
  #: adminpages/discountcodes.php:612
771
  #: adminpages/discountcodes.php:699
772
  #: classes/gateways/class.pmprogateway_stripe.php:1364
 
773
  msgid "Week(s)"
774
  msgstr "Week(weken)"
775
 
@@ -787,6 +797,7 @@ msgstr "Week(weken)"
787
  #: adminpages/discountcodes.php:612
788
  #: adminpages/discountcodes.php:699
789
  #: classes/gateways/class.pmprogateway_stripe.php:1366
 
790
  msgid "Year(s)"
791
  msgstr "Jaar(jaren)"
792
 
@@ -1234,6 +1245,7 @@ msgstr "Betalingsdetails"
1234
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1235
  #: adminpages/discountcodes.php:608
1236
  #: classes/gateways/class.pmprogateway_stripe.php:1497
 
1237
  msgid "per"
1238
  msgstr "per"
1239
 
@@ -1627,6 +1639,7 @@ msgstr "beëindigd"
1627
  #: adminpages/advancedsettings.php:316
1628
  #: includes/privacy.php:175
1629
  #: includes/profile.php:509
 
1630
  msgid "Never"
1631
  msgstr "Nooit"
1632
 
@@ -1862,6 +1875,7 @@ msgstr "bijv. PayPal Express, PayPal Standard, Credit Card."
1862
  #: adminpages/orders.php:679
1863
  #: classes/gateways/class.pmprogateway_stripe.php:1284
1864
  #: classes/gateways/class.pmprogateway_stripe.php:1303
 
1865
  msgid "Card Type"
1866
  msgstr "Type kaart"
1867
 
@@ -1924,6 +1938,7 @@ msgstr "verloopjaar"
1924
  #: adminpages/dashboard.php:294
1925
  #: adminpages/orders.php:742
1926
  #: adminpages/orders.php:1348
 
1927
  msgid "Status"
1928
  msgstr "Status"
1929
 
@@ -2084,6 +2099,8 @@ msgstr "Bewaar bestelling"
2084
  #: pages/cancel.php:96
2085
  #: shortcodes/pmpro_account.php:106
2086
  #: adminpages/orders.php:968
 
 
2087
  msgid "Cancel"
2088
  msgstr "Annuleren"
2089
 
@@ -2552,6 +2569,7 @@ msgstr "Wachtwoord"
2552
  #: classes/gateways/class.pmprogateway_paypal.php:153
2553
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
2554
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
 
2555
  msgid "Gateway Account Email"
2556
  msgstr "gateway Account E-mail"
2557
 
@@ -2564,6 +2582,7 @@ msgstr "gateway Account E-mail"
2564
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
2565
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
2566
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
 
2567
  msgid "API Username"
2568
  msgstr "API gebruikersnaam"
2569
 
@@ -2576,6 +2595,7 @@ msgstr "API gebruikersnaam"
2576
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
2577
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
2578
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
 
2579
  msgid "API Password"
2580
  msgstr "API wachtwoord"
2581
 
@@ -2585,6 +2605,7 @@ msgstr "API wachtwoord"
2585
  #: classes/gateways/class.pmprogateway_paypal.php:177
2586
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
2587
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
 
2588
  msgid "API Signature"
2589
  msgstr "API handtekening"
2590
 
@@ -2608,6 +2629,7 @@ msgstr "Transactie sleutel"
2608
  #: classes/gateways/class.pmprogateway_stripe.php:539
2609
  #: classes/gateways/class.pmprogateway_stripe.php:551
2610
  #: classes/gateways/class.pmprogateway_stripe.php:570
 
2611
  msgid "Secret Key"
2612
  msgstr "Geheime sleutel"
2613
 
@@ -2617,6 +2639,7 @@ msgstr "Geheime sleutel"
2617
  #: classes/gateways/class.pmprogateway_stripe.php:523
2618
  #: classes/gateways/class.pmprogateway_stripe.php:535
2619
  #: classes/gateways/class.pmprogateway_stripe.php:554
 
2620
  msgid "Publishable Key"
2621
  msgstr "Publiceerbare sleutel"
2622
 
@@ -2703,6 +2726,7 @@ msgstr "Aan wie moet betaald worden, Waar naar te versturen. getoond op de insch
2703
  #: classes/gateways/class.pmprogateway_stripe.php:598
2704
  #: classes/gateways/class.pmprogateway_stripe.php:610
2705
  #: classes/gateways/class.pmprogateway_stripe.php:629
 
2706
  msgid "Show Billing Address Fields"
2707
  msgstr "Toon factuuradres velden"
2708
 
@@ -2710,6 +2734,7 @@ msgstr "Toon factuuradres velden"
2710
  #: classes/gateways/class.pmprogateway_stripe.php:607
2711
  #: classes/gateways/class.pmprogateway_stripe.php:619
2712
  #: classes/gateways/class.pmprogateway_stripe.php:638
 
2713
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
2714
  msgstr "Stripe heeft geen factuuradres velden nodig. Kies 'Nee' om ze te verbergen op de inschrijfpagina.<br /><strong>Als Nee, zorg er dan voor dat de adresverificatie in de Stripe Dashboard instellingen uit staat.</strong>"
2715
 
@@ -2792,6 +2817,7 @@ msgstr "Gebruik de \"Nuclear Option\" om beveiligde (HTTPS) URL's op je beveilgd
2792
  #: classes/gateways/class.pmprogateway_paypal.php:196
2793
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
2794
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
 
2795
  msgid "IPN Handler URL"
2796
  msgstr "IPN Handler URL"
2797
 
@@ -2800,6 +2826,7 @@ msgstr "IPN Handler URL"
2800
  #: adminpages/paymentsettings.php:482
2801
  #: classes/gateways/class.pmprogateway_paypal.php:199
2802
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
 
2803
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
2804
  msgstr "Voor volledige integratie met PayPal, stel je de IPN Handler URL in op "
2805
 
@@ -3178,6 +3205,7 @@ msgstr "Je lidmaatschap bevestiging voor %s"
3178
  #: classes/class.pmproemail.php:769
3179
  #: classes/class.pmproemail.php:771
3180
  #: classes/gateways/class.pmprogateway_stripe.php:1333
 
3181
  msgid "Discount Code"
3182
  msgstr "kortingscode"
3183
 
@@ -3488,6 +3516,7 @@ msgstr "Een gedeeltelijke betaling heeft plaatsgevonden die we niet konden terug
3488
  #: classes/gateways/class.pmprogateway_paypal.php:716
3489
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
3490
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
 
3491
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
3492
  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."
3493
 
@@ -3503,6 +3532,9 @@ msgstr "Neem contact op met de eigenaar van de site of annuleer je inschrijving
3503
  #: classes/gateways/class.pmprogateway_stripe.php:2127
3504
  #: classes/gateways/class.pmprogateway_stripe.php:2132
3505
  #: classes/gateways/class.pmprogateway_stripe.php:2137
 
 
 
3506
  msgid "Error creating customer record with Stripe:"
3507
  msgstr "Fout tijdens het maken van een klantrecord met Stripe:"
3508
 
@@ -3516,6 +3548,8 @@ msgstr "Fout tijdens het maken van een klantrecord met Stripe:"
3516
  #: classes/gateways/class.pmprogateway_stripe.php:2356
3517
  #: classes/gateways/class.pmprogateway_stripe.php:2373
3518
  #: classes/gateways/class.pmprogateway_stripe.php:2378
 
 
3519
  msgid "Error creating plan with Stripe:"
3520
  msgstr "Fout tijdens het aanmaken van plan met Stripe"
3521
 
@@ -3529,6 +3563,8 @@ msgstr "Fout tijdens het aanmaken van plan met Stripe"
3529
  #: classes/gateways/class.pmprogateway_stripe.php:2401
3530
  #: classes/gateways/class.pmprogateway_stripe.php:2409
3531
  #: classes/gateways/class.pmprogateway_stripe.php:2423
 
 
3532
  msgid "Error subscribing customer to plan with Stripe:"
3533
  msgstr "Fout tijdens subscribing customer to plan met Stripe:"
3534
 
@@ -3536,6 +3572,7 @@ msgstr "Fout tijdens subscribing customer to plan met Stripe:"
3536
  #: classes/gateways/class.pmprogateway_stripe.php:2632
3537
  #: classes/gateways/class.pmprogateway_stripe.php:2644
3538
  #: classes/gateways/class.pmprogateway_stripe.php:2666
 
3539
  msgid "Could not cancel old subscription."
3540
  msgstr "Kon oude inschrijving niet annuleren."
3541
 
@@ -4114,6 +4151,7 @@ msgstr "Je lidmaatschao is <strong>actief</strong>."
4114
  #: adminpages/dashboard.php:224
4115
  #: adminpages/dashboard.php:292
4116
  #: adminpages/orders.php:1343
 
4117
  msgid "Level"
4118
  msgstr "Lidmaatschap"
4119
 
@@ -4186,6 +4224,8 @@ msgstr "Wijzig Profiel"
4186
  #: includes/profile.php:872
4187
  #: includes/profile.php:909
4188
  #: shortcodes/pmpro_account.php:195
 
 
4189
  msgid "Change Password"
4190
  msgstr "Wijzig wachtwoord"
4191
 
@@ -4270,6 +4310,7 @@ msgstr "Je betalingen worden gemanaged door PayPal. <a href=\"http://www.paypal.
4270
  #: includes/profile.php:747
4271
  #: pages/billing.php:164
4272
  #: pages/checkout.php:234
 
4273
  msgid "First Name"
4274
  msgstr "Voornaam"
4275
 
@@ -4281,6 +4322,7 @@ msgstr "Voornaam"
4281
  #: includes/profile.php:748
4282
  #: pages/billing.php:168
4283
  #: pages/checkout.php:238
 
4284
  msgid "Last Name"
4285
  msgstr "Achternaam"
4286
 
@@ -4411,6 +4453,7 @@ msgstr "Wij accepteren %s"
4411
  #: pages/checkout.php:389
4412
  #: classes/gateways/class.pmprogateway_stripe.php:1297
4413
  #: classes/gateways/class.pmprogateway_stripe.php:1316
 
4414
  msgid "Card Number"
4415
  msgstr "Kaartnummer"
4416
 
@@ -4442,6 +4485,7 @@ msgstr "Wat is dit?"
4442
  #: pages/billing.php:425
4443
  #: classes/gateways/class.pmprogateway_stripe.php:1403
4444
  #: classes/gateways/class.pmprogateway_stripe.php:1422
 
4445
  msgid "Update"
4446
  msgstr "Update"
4447
 
@@ -4525,6 +4569,7 @@ msgstr "Heb je een kortingscode?"
4525
  #: pages/checkout.php:432
4526
  #: classes/gateways/class.pmprogateway_stripe.php:1319
4527
  #: classes/gateways/class.pmprogateway_stripe.php:1338
 
4528
  msgid "Apply"
4529
  msgstr "Toepassen"
4530
 
@@ -4601,6 +4646,7 @@ msgstr "Betaal Hier met je Credit Card"
4601
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
4602
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
4603
  #: pages/checkout.php:218
 
4604
  msgid "Check Out with PayPal"
4605
  msgstr "Betaal met PayPal"
4606
 
@@ -4612,6 +4658,7 @@ msgstr "Betaal met PayPal"
4612
  #: pages/checkout.php:366
4613
  #: classes/gateways/class.pmprogateway_stripe.php:1263
4614
  #: classes/gateways/class.pmprogateway_stripe.php:1282
 
4615
  msgid "Payment Information"
4616
  msgstr "Betalingsinformatie"
4617
 
@@ -4623,6 +4670,7 @@ msgstr "Betalingsinformatie"
4623
  #: pages/checkout.php:367
4624
  #: classes/gateways/class.pmprogateway_stripe.php:1264
4625
  #: classes/gateways/class.pmprogateway_stripe.php:1283
 
4626
  #, php-format
4627
  msgid "We Accept %s"
4628
  msgstr "Wij accepteren %s"
@@ -4649,6 +4697,7 @@ msgstr "Complete betaling"
4649
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
4650
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
4651
  #: pages/checkout.php:526
 
4652
  msgid "Submit and Check Out"
4653
  msgstr "Stuur in en schrijf je in."
4654
 
@@ -4660,6 +4709,7 @@ msgstr "Stuur in en schrijf je in."
4660
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
4661
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
4662
  #: pages/checkout.php:526
 
4663
  msgid "Submit and Confirm"
4664
  msgstr "Bevestigen en insturen"
4665
 
@@ -5012,6 +5062,8 @@ msgstr "Onbekende fout bij het maken van het account. Neem contact met ons op om
5012
  #: preheaders/checkout.php:822
5013
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
5014
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
 
 
5015
  msgid "The PayPal Token was lost."
5016
  msgstr "de PayPal token was kwijt."
5017
 
@@ -5103,6 +5155,7 @@ msgstr "De <strong>%s</strong code is toegepast op je bestelling."
5103
  #: services/authnet-silent-post.php:138
5104
  #: services/authnet-silent-post.php:133
5105
  #: services/authnet-silent-post.php:173
 
5106
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
5107
  msgstr "<p>Een betaling staat ter controle bij Authorize.net.</p><p>Betalingsinformatie van Authorize.net"
5108
 
@@ -5330,6 +5383,9 @@ msgstr ""
5330
  #: adminpages/orders.php:1544
5331
  #: adminpages/orders.php:1554
5332
  #: adminpages/orders.php:1553
 
 
 
5333
  msgid "N/A"
5334
  msgstr ""
5335
 
@@ -5356,6 +5412,7 @@ msgstr ""
5356
 
5357
  #: adminpages/admin_header.php:152
5358
  #: classes/gateways/class.pmprogateway_stripe.php:76
 
5359
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
5360
  msgstr ""
5361
 
@@ -5639,6 +5696,7 @@ msgstr ""
5639
  #: adminpages/dashboard.php:174
5640
  #: adminpages/license.php:49
5641
  #: adminpages/dashboard.php:178
 
5642
  msgid "Your license is invalid or expired."
5643
  msgstr ""
5644
 
@@ -5650,6 +5708,7 @@ msgstr ""
5650
  #: adminpages/dashboard.php:177
5651
  #: adminpages/license.php:51
5652
  #: adminpages/dashboard.php:181
 
5653
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
5654
  msgstr ""
5655
 
@@ -6132,26 +6191,33 @@ msgid "Your license key has been validated."
6132
  msgstr ""
6133
 
6134
  #: adminpages/license.php:43
 
6135
  msgid "Paid Memberships Pro Support License"
6136
  msgstr ""
6137
 
6138
  #: adminpages/license.php:47
 
6139
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
6140
  msgstr ""
6141
 
6142
  #: adminpages/license.php:49
 
 
6143
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
6144
  msgstr ""
6145
 
6146
  #: adminpages/license.php:59
 
6147
  msgid "Enter license key here..."
6148
  msgstr ""
6149
 
6150
  #: adminpages/license.php:61
 
6151
  msgid "Validate Key"
6152
  msgstr ""
6153
 
6154
  #: adminpages/license.php:95
 
6155
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
6156
  msgstr ""
6157
 
@@ -6802,6 +6868,7 @@ msgstr ""
6802
 
6803
  #: classes/gateways/class.pmprogateway_braintree.php:87
6804
  #: classes/gateways/class.pmprogateway_stripe.php:91
 
6805
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
6806
  msgstr ""
6807
 
@@ -7121,6 +7188,7 @@ msgid "Your order has been refused."
7121
  msgstr ""
7122
 
7123
  #: classes/gateways/class.pmprogateway_cybersource.php:922
 
7124
  msgid "Unknown error."
7125
  msgstr ""
7126
 
@@ -7153,35 +7221,42 @@ msgstr ""
7153
  #: classes/gateways/class.pmprogateway_paypal.php:132
7154
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
7155
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
 
7156
  msgid "PayPal Settings"
7157
  msgstr ""
7158
 
7159
  #: classes/gateways/class.pmprogateway_paypal.php:146
7160
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
7161
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
 
7162
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
7163
  msgstr ""
7164
 
7165
  #: classes/gateways/class.pmprogateway_paypal.php:185
7166
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
 
7167
  msgid "Confirmation Step"
7168
  msgstr ""
7169
 
7170
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
7171
  #: paid-memberships-pro.php:160
7172
  #: paid-memberships-pro.php:162
 
7173
  msgid "PayPal Express"
7174
  msgstr ""
7175
 
7176
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
 
7177
  msgid "Checkout was already processed."
7178
  msgstr ""
7179
 
7180
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
 
7181
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
7182
  msgstr ""
7183
 
7184
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
 
7185
  msgid "Error creating plan with PayPal."
7186
  msgstr ""
7187
 
@@ -7202,6 +7277,7 @@ msgstr ""
7202
  #: classes/gateways/class.pmprogateway_stripe.php:252
7203
  #: paid-memberships-pro.php:159
7204
  #: paid-memberships-pro.php:161
 
7205
  msgid "Stripe"
7206
  msgstr ""
7207
 
@@ -7209,11 +7285,14 @@ msgstr ""
7209
  #: classes/gateways/class.pmprogateway_stripe.php:436
7210
  #: classes/gateways/class.pmprogateway_stripe.php:354
7211
  #: classes/gateways/class.pmprogateway_stripe.php:444
 
 
7212
  msgid "Stripe Connect Settings"
7213
  msgstr ""
7214
 
7215
  #: classes/gateways/class.pmprogateway_stripe.php:352
7216
  #: classes/gateways/class.pmprogateway_stripe.php:356
 
7217
  msgid "Live Mode:"
7218
  msgstr ""
7219
 
@@ -7221,6 +7300,8 @@ msgstr ""
7221
  #: classes/gateways/class.pmprogateway_stripe.php:440
7222
  #: classes/gateways/class.pmprogateway_stripe.php:358
7223
  #: classes/gateways/class.pmprogateway_stripe.php:448
 
 
7224
  msgid "Connected"
7225
  msgstr ""
7226
 
@@ -7228,6 +7309,8 @@ msgstr ""
7228
  #: classes/gateways/class.pmprogateway_stripe.php:442
7229
  #: classes/gateways/class.pmprogateway_stripe.php:362
7230
  #: classes/gateways/class.pmprogateway_stripe.php:452
 
 
7231
  msgid "Not Connected"
7232
  msgstr ""
7233
 
@@ -7235,11 +7318,14 @@ msgstr ""
7235
  #: classes/gateways/class.pmprogateway_stripe.php:449
7236
  #: classes/gateways/class.pmprogateway_stripe.php:369
7237
  #: classes/gateways/class.pmprogateway_stripe.php:459
 
 
7238
  msgid "Your site is using legacy API keys to authenticate with Stripe."
7239
  msgstr ""
7240
 
7241
  #: classes/gateways/class.pmprogateway_stripe.php:364
7242
  #: classes/gateways/class.pmprogateway_stripe.php:371
 
7243
  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."
7244
  msgstr ""
7245
 
@@ -7247,6 +7333,8 @@ msgstr ""
7247
  #: classes/gateways/class.pmprogateway_stripe.php:458
7248
  #: classes/gateways/class.pmprogateway_stripe.php:380
7249
  #: classes/gateways/class.pmprogateway_stripe.php:470
 
 
7250
  msgid "Stripe Connection:"
7251
  msgstr ""
7252
 
@@ -7254,11 +7342,14 @@ msgstr ""
7254
  #: classes/gateways/class.pmprogateway_stripe.php:482
7255
  #: classes/gateways/class.pmprogateway_stripe.php:396
7256
  #: classes/gateways/class.pmprogateway_stripe.php:494
 
 
7257
  msgid "Disconnect From Stripe"
7258
  msgstr ""
7259
 
7260
  #: classes/gateways/class.pmprogateway_stripe.php:389
7261
  #: classes/gateways/class.pmprogateway_stripe.php:397
 
7262
  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."
7263
  msgstr ""
7264
 
@@ -7266,16 +7357,20 @@ msgstr ""
7266
  #: classes/gateways/class.pmprogateway_stripe.php:496
7267
  #: classes/gateways/class.pmprogateway_stripe.php:409
7268
  #: classes/gateways/class.pmprogateway_stripe.php:508
 
 
7269
  msgid "Connect with Stripe"
7270
  msgstr ""
7271
 
7272
  #: classes/gateways/class.pmprogateway_stripe.php:408
7273
  #: classes/gateways/class.pmprogateway_stripe.php:416
 
7274
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
7275
  msgstr ""
7276
 
7277
  #: classes/gateways/class.pmprogateway_stripe.php:411
7278
  #: classes/gateways/class.pmprogateway_stripe.php:419
 
7279
  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."
7280
  msgstr ""
7281
 
@@ -7286,6 +7381,9 @@ msgstr ""
7286
  #: classes/gateways/class.pmprogateway_stripe.php:519
7287
  #: classes/gateways/class.pmprogateway_stripe.php:559
7288
  #: classes/gateways/class.pmprogateway_stripe.php:578
 
 
 
7289
  msgid "Webhook"
7290
  msgstr ""
7291
 
@@ -7296,32 +7394,40 @@ msgstr ""
7296
  #: classes/gateways/class.pmprogateway_stripe.php:523
7297
  #: classes/gateways/class.pmprogateway_stripe.php:594
7298
  #: classes/gateways/class.pmprogateway_stripe.php:613
 
 
 
7299
  msgid "Webhook URL"
7300
  msgstr ""
7301
 
7302
  #: classes/gateways/class.pmprogateway_stripe.php:438
7303
  #: classes/gateways/class.pmprogateway_stripe.php:446
 
7304
  msgid "Test Mode:"
7305
  msgstr ""
7306
 
7307
  #: classes/gateways/class.pmprogateway_stripe.php:450
7308
  #: classes/gateways/class.pmprogateway_stripe.php:461
 
7309
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
7310
  msgstr ""
7311
 
7312
  #: classes/gateways/class.pmprogateway_stripe.php:483
7313
  #: classes/gateways/class.pmprogateway_stripe.php:495
 
7314
  msgid "This will disconnect your site from Stripe in test mode only."
7315
  msgstr ""
7316
 
7317
  #: classes/gateways/class.pmprogateway_stripe.php:518
7318
  #: classes/gateways/class.pmprogateway_stripe.php:530
 
7319
  msgid "Stripe API Settings (Legacy)"
7320
  msgstr ""
7321
 
7322
  #: classes/gateways/class.pmprogateway_stripe.php:531
7323
  #: classes/gateways/class.pmprogateway_stripe.php:543
7324
  #: classes/gateways/class.pmprogateway_stripe.php:562
 
7325
  msgid "Your Publishable Key appears incorrect."
7326
  msgstr ""
7327
 
@@ -7331,24 +7437,29 @@ msgstr ""
7331
  #: classes/gateways/class.pmprogateway_stripe.php:587
7332
  #: classes/gateways/class.pmprogateway_stripe.php:582
7333
  #: classes/gateways/class.pmprogateway_stripe.php:606
 
 
7334
  msgid "Create Webhook"
7335
  msgstr ""
7336
 
7337
  #: classes/gateways/class.pmprogateway_stripe.php:557
7338
  #: classes/gateways/class.pmprogateway_stripe.php:569
7339
  #: classes/gateways/class.pmprogateway_stripe.php:588
 
7340
  msgid "A webhook is set up in Stripe, but it is disabled."
7341
  msgstr ""
7342
 
7343
  #: classes/gateways/class.pmprogateway_stripe.php:564
7344
  #: classes/gateways/class.pmprogateway_stripe.php:576
7345
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
7346
  msgid "A webhook is set up in Stripe, but it is using an old API version."
7347
  msgstr ""
7348
 
7349
  #: classes/gateways/class.pmprogateway_stripe.php:564
7350
  #: classes/gateways/class.pmprogateway_stripe.php:576
7351
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
7352
  msgid "Rebuild Webhook"
7353
  msgstr ""
7354
 
@@ -7361,12 +7472,16 @@ msgstr ""
7361
  #: classes/gateways/class.pmprogateway_stripe.php:601
7362
  #: classes/gateways/class.pmprogateway_stripe.php:741
7363
  #: classes/gateways/class.pmprogateway_stripe.php:857
 
 
 
7364
  msgid "Your webhook is enabled."
7365
  msgstr ""
7366
 
7367
  #: classes/gateways/class.pmprogateway_stripe.php:570
7368
  #: classes/gateways/class.pmprogateway_stripe.php:582
7369
  #: classes/gateways/class.pmprogateway_stripe.php:601
 
7370
  msgid "Disable Webhook"
7371
  msgstr ""
7372
 
@@ -7382,66 +7497,80 @@ msgstr ""
7382
  #: classes/gateways/class.pmprogateway_stripe.php:768
7383
  #: classes/gateways/class.pmprogateway_stripe.php:785
7384
  #: classes/gateways/class.pmprogateway_stripe.php:819
 
 
 
 
7385
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
7386
  msgstr ""
7387
 
7388
  #: classes/gateways/class.pmprogateway_stripe.php:589
7389
  #: classes/gateways/class.pmprogateway_stripe.php:601
7390
  #: classes/gateways/class.pmprogateway_stripe.php:620
 
7391
  msgid "Other Stripe Settings"
7392
  msgstr ""
7393
 
7394
  #: classes/gateways/class.pmprogateway_stripe.php:593
7395
  #: classes/gateways/class.pmprogateway_stripe.php:605
7396
  #: classes/gateways/class.pmprogateway_stripe.php:624
 
7397
  msgid "Stripe API Version"
7398
  msgstr ""
7399
 
7400
  #: classes/gateways/class.pmprogateway_stripe.php:612
7401
  #: classes/gateways/class.pmprogateway_stripe.php:624
7402
  #: classes/gateways/class.pmprogateway_stripe.php:643
 
7403
  msgid "Enable Payment Request Button"
7404
  msgstr ""
7405
 
7406
  #: classes/gateways/class.pmprogateway_stripe.php:630
7407
  #: classes/gateways/class.pmprogateway_stripe.php:642
7408
  #: classes/gateways/class.pmprogateway_stripe.php:661
 
7409
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
7410
  msgstr ""
7411
 
7412
  #: classes/gateways/class.pmprogateway_stripe.php:643
7413
  #: classes/gateways/class.pmprogateway_stripe.php:655
7414
  #: classes/gateways/class.pmprogateway_stripe.php:674
 
7415
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
7416
  msgstr ""
7417
 
7418
  #: classes/gateways/class.pmprogateway_stripe.php:645
7419
  #: classes/gateways/class.pmprogateway_stripe.php:657
7420
  #: classes/gateways/class.pmprogateway_stripe.php:676
 
7421
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
7422
  msgstr ""
7423
 
7424
  #: classes/gateways/class.pmprogateway_stripe.php:647
7425
  #: classes/gateways/class.pmprogateway_stripe.php:659
7426
  #: classes/gateways/class.pmprogateway_stripe.php:678
 
7427
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
7428
  msgstr ""
7429
 
7430
  #: classes/gateways/class.pmprogateway_stripe.php:649
7431
  #: classes/gateways/class.pmprogateway_stripe.php:661
7432
  #: classes/gateways/class.pmprogateway_stripe.php:680
 
7433
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
7434
  msgstr ""
7435
 
7436
  #: classes/gateways/class.pmprogateway_stripe.php:674
7437
  #: classes/gateways/class.pmprogateway_stripe.php:686
7438
  #: classes/gateways/class.pmprogateway_stripe.php:705
 
7439
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
7440
  msgstr ""
7441
 
7442
  #: classes/gateways/class.pmprogateway_stripe.php:695
7443
  #: classes/gateways/class.pmprogateway_stripe.php:707
7444
  #: classes/gateways/class.pmprogateway_stripe.php:726
 
7445
  msgid "Webhook creation failed. You might already have a webhook set up."
7446
  msgstr ""
7447
 
@@ -7451,54 +7580,64 @@ msgstr ""
7451
  #: classes/gateways/class.pmprogateway_stripe.php:847
7452
  #: classes/gateways/class.pmprogateway_stripe.php:792
7453
  #: classes/gateways/class.pmprogateway_stripe.php:866
 
 
7454
  msgid "There was an error deleting the webhook."
7455
  msgstr ""
7456
 
7457
  #: classes/gateways/class.pmprogateway_stripe.php:811
7458
  #: classes/gateways/class.pmprogateway_stripe.php:823
7459
  #: classes/gateways/class.pmprogateway_stripe.php:842
 
7460
  msgid "Webhook creation failed. Please refresh and try again."
7461
  msgstr ""
7462
 
7463
  #: classes/gateways/class.pmprogateway_stripe.php:867
7464
  #: classes/gateways/class.pmprogateway_stripe.php:879
7465
  #: classes/gateways/class.pmprogateway_stripe.php:898
 
7466
  msgid "Verification steps confirmed. Your payment is processing."
7467
  msgstr ""
7468
 
7469
  #: classes/gateways/class.pmprogateway_stripe.php:1262
7470
  #: classes/gateways/class.pmprogateway_stripe.php:1274
7471
  #: classes/gateways/class.pmprogateway_stripe.php:1293
 
7472
  msgid "Pay with Credit Card"
7473
  msgstr ""
7474
 
7475
  #: classes/gateways/class.pmprogateway_stripe.php:1296
7476
  #: classes/gateways/class.pmprogateway_stripe.php:1308
7477
  #: classes/gateways/class.pmprogateway_stripe.php:1327
 
7478
  msgid "CVC"
7479
  msgstr ""
7480
 
7481
  #: classes/gateways/class.pmprogateway_stripe.php:1374
7482
  #: classes/gateways/class.pmprogateway_stripe.php:1386
7483
  #: classes/gateways/class.pmprogateway_stripe.php:1405
 
7484
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
7485
  msgstr ""
7486
 
7487
  #: classes/gateways/class.pmprogateway_stripe.php:1379
7488
  #: classes/gateways/class.pmprogateway_stripe.php:1391
7489
  #: classes/gateways/class.pmprogateway_stripe.php:1410
 
7490
  msgid "Subscription Updates"
7491
  msgstr ""
7492
 
7493
  #: classes/gateways/class.pmprogateway_stripe.php:1383
7494
  #: classes/gateways/class.pmprogateway_stripe.php:1395
7495
  #: classes/gateways/class.pmprogateway_stripe.php:1414
 
7496
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
7497
  msgstr ""
7498
 
7499
  #: classes/gateways/class.pmprogateway_stripe.php:1385
7500
  #: classes/gateways/class.pmprogateway_stripe.php:1397
7501
  #: classes/gateways/class.pmprogateway_stripe.php:1416
 
7502
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
7503
  msgstr ""
7504
 
@@ -7514,6 +7653,10 @@ msgstr ""
7514
  #: classes/gateways/class.pmprogateway_stripe.php:2016
7515
  #: classes/gateways/class.pmprogateway_stripe.php:2029
7516
  #: classes/gateways/class.pmprogateway_stripe.php:2033
 
 
 
 
7517
  msgid "Error: %s"
7518
  msgstr ""
7519
 
@@ -7523,18 +7666,22 @@ msgstr ""
7523
  #: classes/gateways/class.pmprogateway_stripe.php:2182
7524
  #: classes/gateways/class.pmprogateway_stripe.php:2196
7525
  #: classes/gateways/class.pmprogateway_stripe.php:2201
 
 
7526
  msgid "Error getting subscription with Stripe:"
7527
  msgstr ""
7528
 
7529
  #: classes/gateways/class.pmprogateway_stripe.php:2480
7530
  #: classes/gateways/class.pmprogateway_stripe.php:2492
7531
  #: classes/gateways/class.pmprogateway_stripe.php:2514
 
7532
  msgid "Could not cancel the old subscription. Updates have not been processed."
7533
  msgstr ""
7534
 
7535
  #: classes/gateways/class.pmprogateway_stripe.php:2648
7536
  #: classes/gateways/class.pmprogateway_stripe.php:2660
7537
  #: classes/gateways/class.pmprogateway_stripe.php:2682
 
7538
  msgid "Could not find the customer."
7539
  msgstr ""
7540
 
@@ -7544,30 +7691,35 @@ msgstr ""
7544
  #: classes/gateways/class.pmprogateway_stripe.php:2834
7545
  #: classes/gateways/class.pmprogateway_stripe.php:2850
7546
  #: classes/gateways/class.pmprogateway_stripe.php:2856
 
7547
  msgid "Error: "
7548
  msgstr ""
7549
 
7550
  #: classes/gateways/class.pmprogateway_stripe.php:2836
7551
  #: classes/gateways/class.pmprogateway_stripe.php:2848
7552
  #: classes/gateways/class.pmprogateway_stripe.php:2870
 
7553
  msgid "Error: Unkown error while refunding charge #%s"
7554
  msgstr ""
7555
 
7556
  #: classes/gateways/class.pmprogateway_stripe.php:3330
7557
  #: classes/gateways/class.pmprogateway_stripe.php:3342
7558
  #: classes/gateways/class.pmprogateway_stripe.php:3364
 
7559
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
7560
  msgstr ""
7561
 
7562
  #: classes/gateways/class.pmprogateway_stripe.php:3347
7563
  #: classes/gateways/class.pmprogateway_stripe.php:3359
7564
  #: classes/gateways/class.pmprogateway_stripe.php:3381
 
7565
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
7566
  msgstr ""
7567
 
7568
  #: classes/gateways/class.pmprogateway_stripe.php:3533
7569
  #: classes/gateways/class.pmprogateway_stripe.php:3545
7570
  #: classes/gateways/class.pmprogateway_stripe.php:3567
 
7571
  msgid "Invalid response from the Stripe Connect server."
7572
  msgstr ""
7573
 
@@ -7575,6 +7727,7 @@ msgstr ""
7575
  #: classes/gateways/class.pmprogateway_stripe.php:3561
7576
  #: classes/gateways/class.pmprogateway_stripe.php:3573
7577
  #: classes/gateways/class.pmprogateway_stripe.php:3595
 
7578
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
7579
  msgstr ""
7580
 
@@ -7582,30 +7735,35 @@ msgstr ""
7582
  #: classes/gateways/class.pmprogateway_stripe.php:3597
7583
  #: classes/gateways/class.pmprogateway_stripe.php:3609
7584
  #: classes/gateways/class.pmprogateway_stripe.php:3631
 
7585
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
7586
  msgstr ""
7587
 
7588
  #: classes/gateways/class.pmprogateway_stripe.php:3768
7589
  #: classes/gateways/class.pmprogateway_stripe.php:3780
7590
  #: classes/gateways/class.pmprogateway_stripe.php:3802
 
7591
  msgid "Last webhook received at"
7592
  msgstr ""
7593
 
7594
  #: classes/gateways/class.pmprogateway_stripe.php:3770
7595
  #: classes/gateways/class.pmprogateway_stripe.php:3782
7596
  #: classes/gateways/class.pmprogateway_stripe.php:3804
 
7597
  msgid "No webhooks have been received."
7598
  msgstr ""
7599
 
7600
  #: classes/gateways/class.pmprogateway_stripe.php:3774
7601
  #: classes/gateways/class.pmprogateway_stripe.php:3786
7602
  #: classes/gateways/class.pmprogateway_stripe.php:3808
 
7603
  msgid "Your webhook may not be working correctly."
7604
  msgstr ""
7605
 
7606
  #: classes/gateways/class.pmprogateway_stripe.php:3776
7607
  #: classes/gateways/class.pmprogateway_stripe.php:3788
7608
  #: classes/gateways/class.pmprogateway_stripe.php:3810
 
7609
  msgid "Click here for info on setting up your webhook with Stripe."
7610
  msgstr ""
7611
 
@@ -9803,11 +9961,13 @@ msgstr ""
9803
 
9804
  #: includes/login.php:429
9805
  #: includes/profile.php:843
 
9806
  msgid "New passwords do not match."
9807
  msgstr ""
9808
 
9809
  #: includes/login.php:433
9810
  #: includes/profile.php:839
 
9811
  msgid "Please complete all fields."
9812
  msgstr ""
9813
 
@@ -9837,17 +9997,21 @@ msgstr ""
9837
 
9838
  #: includes/login.php:688
9839
  #: includes/profile.php:891
 
9840
  msgid "New Password"
9841
  msgstr ""
9842
 
9843
  #: includes/login.php:690
9844
  #: includes/profile.php:894
9845
  #: includes/scripts.php:86
 
 
9846
  msgid "Strength Indicator"
9847
  msgstr ""
9848
 
9849
  #: includes/login.php:694
9850
  #: includes/profile.php:898
 
9851
  msgid "Confirm New Password"
9852
  msgstr ""
9853
 
@@ -9948,21 +10112,25 @@ msgstr ""
9948
  #: includes/privacy.php:182
9949
  #: includes/profile.php:425
9950
  #: includes/profile.php:493
 
9951
  msgid "Level ID"
9952
  msgstr ""
9953
 
9954
  #: includes/privacy.php:190
9955
  #: includes/profile.php:496
 
9956
  msgid "Date Modified"
9957
  msgstr ""
9958
 
9959
  #: includes/privacy.php:194
9960
  #: includes/profile.php:497
 
9961
  msgid "End Date"
9962
  msgstr ""
9963
 
9964
  #: includes/privacy.php:198
9965
  #: includes/profile.php:498
 
9966
  msgid "Level Cost"
9967
  msgstr ""
9968
 
@@ -10071,68 +10239,85 @@ msgid "Membership Levels History"
10071
  msgstr ""
10072
 
10073
  #: includes/profile.php:485
 
10074
  msgid "No membership orders found."
10075
  msgstr ""
10076
 
10077
  #: includes/profile.php:537
 
10078
  msgid "No membership history found."
10079
  msgstr ""
10080
 
10081
  #: includes/profile.php:644
 
10082
  msgid "Log in to edit your profile."
10083
  msgstr ""
10084
 
10085
  #: includes/profile.php:679
 
10086
  msgid "Please enter a display name."
10087
  msgstr ""
10088
 
10089
  #: includes/profile.php:689
 
10090
  msgid "Please enter an email address."
10091
  msgstr ""
10092
 
10093
  #: includes/profile.php:691
 
10094
  msgid "The email address isn&#8217;t correct."
10095
  msgstr ""
10096
 
10097
  #: includes/profile.php:695
 
10098
  msgid "This email is already registered, please choose another one."
10099
  msgstr ""
10100
 
10101
  #: includes/profile.php:722
 
10102
  msgid "Your profile has been updated."
10103
  msgstr ""
10104
 
10105
  #: includes/profile.php:749
 
10106
  msgid "Display name publicly as"
10107
  msgstr ""
10108
 
10109
  #: includes/profile.php:762
 
10110
  msgid "Site administrators must use the WordPress dashboard to update their email address."
10111
  msgstr ""
10112
 
10113
  #: includes/profile.php:785
 
10114
  msgid "Update Profile"
10115
  msgstr ""
10116
 
10117
  #: includes/profile.php:841
 
10118
  msgid "Please enter your current password."
10119
  msgstr ""
10120
 
10121
  #: includes/profile.php:845
 
10122
  msgid "Your current password is incorrect."
10123
  msgstr ""
10124
 
10125
  #: includes/profile.php:856
 
10126
  msgid "Your password has been updated."
10127
  msgstr ""
10128
 
10129
  #: includes/profile.php:886
 
10130
  msgid "Current Password"
10131
  msgstr ""
10132
 
10133
  #: includes/profile.php:888
10134
  #: includes/profile.php:893
10135
  #: includes/profile.php:900
 
 
10136
  msgid "Required Field"
10137
  msgstr ""
10138
 
@@ -10278,10 +10463,12 @@ msgid "That email address is already in use. Please log in, or use a different e
10278
  msgstr ""
10279
 
10280
  #: services/braintree-webhook.php:425
 
10281
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
10282
  msgstr ""
10283
 
10284
  #: services/braintree-webhook.php:427
 
10285
  msgid "A member's Braintree subscription has expired at %s"
10286
  msgstr ""
10287
 
@@ -10616,16 +10803,22 @@ msgstr ""
10616
 
10617
  #: classes/gateways/class.pmprogateway_stripe.php:360
10618
  #: classes/gateways/class.pmprogateway_stripe.php:450
 
 
10619
  msgid "Connected with Legacy Keys"
10620
  msgstr ""
10621
 
10622
  #: classes/gateways/class.pmprogateway_stripe.php:370
10623
  #: classes/gateways/class.pmprogateway_stripe.php:460
 
 
10624
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
10625
  msgstr ""
10626
 
10627
  #: classes/gateways/class.pmprogateway_stripe.php:372
10628
  #: classes/gateways/class.pmprogateway_stripe.php:462
 
 
10629
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
10630
  msgstr ""
10631
 
@@ -10682,13 +10875,49 @@ msgid "missing"
10682
  msgstr ""
10683
 
10684
  #: classes/gateways/class.pmprogateway_stripe.php:533
 
10685
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
10686
  msgstr ""
10687
 
10688
  #: classes/gateways/class.pmprogateway_stripe.php:534
 
10689
  msgid "Click here to use the legacy API settings."
10690
  msgstr ""
10691
 
10692
  #: paid-memberships-pro.php:194
10693
  msgid "Once a month"
10694
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.3\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-10-11T14:00:50+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
183
  #: adminpages/orders.php:391
184
  #: adminpages/orders.php:1445
185
  #: adminpages/orders.php:1448
186
+ #: includes/profile.php:762
187
  msgid "Email"
188
  msgstr "E-mail"
189
 
328
  #: adminpages/advancedsettings.php:479
329
  #: classes/gateways/class.pmprogateway_stripe.php:634
330
  #: classes/gateways/class.pmprogateway_stripe.php:648
331
+ #: classes/gateways/class.pmprogateway_stripe.php:640
332
+ #: classes/gateways/class.pmprogateway_stripe.php:654
333
  msgid "No"
334
  msgstr "Nee"
335
 
405
  #: adminpages/advancedsettings.php:397
406
  #: classes/gateways/class.pmprogateway_stripe.php:636
407
  #: classes/gateways/class.pmprogateway_stripe.php:650
408
+ #: classes/gateways/class.pmprogateway_stripe.php:642
409
+ #: classes/gateways/class.pmprogateway_stripe.php:656
410
  msgid "Yes"
411
  msgstr "Ja"
412
 
635
  #: includes/privacy.php:186
636
  #: includes/profile.php:495
637
  #: adminpages/discountcodes.php:489
638
+ #: includes/profile.php:501
639
  msgid "Start Date"
640
  msgstr "Startdatum"
641
 
654
  #: classes/gateways/class.pmprogateway_stripe.php:1301
655
  #: adminpages/discountcodes.php:507
656
  #: classes/gateways/class.pmprogateway_stripe.php:1320
657
+ #: classes/gateways/class.pmprogateway_stripe.php:1326
658
  msgid "Expiration Date"
659
  msgstr "Verloopdatum"
660
 
743
  #: adminpages/discountcodes.php:612
744
  #: adminpages/discountcodes.php:699
745
  #: classes/gateways/class.pmprogateway_stripe.php:1363
746
+ #: classes/gateways/class.pmprogateway_stripe.php:1369
747
  msgid "Day(s)"
748
  msgstr "Dag(en)"
749
 
761
  #: adminpages/discountcodes.php:612
762
  #: adminpages/discountcodes.php:699
763
  #: classes/gateways/class.pmprogateway_stripe.php:1365
764
+ #: classes/gateways/class.pmprogateway_stripe.php:1371
765
  msgid "Month(s)"
766
  msgstr "Maand(en)"
767
 
779
  #: adminpages/discountcodes.php:612
780
  #: adminpages/discountcodes.php:699
781
  #: classes/gateways/class.pmprogateway_stripe.php:1364
782
+ #: classes/gateways/class.pmprogateway_stripe.php:1370
783
  msgid "Week(s)"
784
  msgstr "Week(weken)"
785
 
797
  #: adminpages/discountcodes.php:612
798
  #: adminpages/discountcodes.php:699
799
  #: classes/gateways/class.pmprogateway_stripe.php:1366
800
+ #: classes/gateways/class.pmprogateway_stripe.php:1372
801
  msgid "Year(s)"
802
  msgstr "Jaar(jaren)"
803
 
1245
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1246
  #: adminpages/discountcodes.php:608
1247
  #: classes/gateways/class.pmprogateway_stripe.php:1497
1248
+ #: classes/gateways/class.pmprogateway_stripe.php:1503
1249
  msgid "per"
1250
  msgstr "per"
1251
 
1639
  #: adminpages/advancedsettings.php:316
1640
  #: includes/privacy.php:175
1641
  #: includes/profile.php:509
1642
+ #: includes/profile.php:515
1643
  msgid "Never"
1644
  msgstr "Nooit"
1645
 
1875
  #: adminpages/orders.php:679
1876
  #: classes/gateways/class.pmprogateway_stripe.php:1284
1877
  #: classes/gateways/class.pmprogateway_stripe.php:1303
1878
+ #: classes/gateways/class.pmprogateway_stripe.php:1309
1879
  msgid "Card Type"
1880
  msgstr "Type kaart"
1881
 
1938
  #: adminpages/dashboard.php:294
1939
  #: adminpages/orders.php:742
1940
  #: adminpages/orders.php:1348
1941
+ #: includes/profile.php:505
1942
  msgid "Status"
1943
  msgstr "Status"
1944
 
2099
  #: pages/cancel.php:96
2100
  #: shortcodes/pmpro_account.php:106
2101
  #: adminpages/orders.php:968
2102
+ #: includes/profile.php:798
2103
+ #: includes/profile.php:922
2104
  msgid "Cancel"
2105
  msgstr "Annuleren"
2106
 
2569
  #: classes/gateways/class.pmprogateway_paypal.php:153
2570
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
2571
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
2572
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:172
2573
  msgid "Gateway Account Email"
2574
  msgstr "gateway Account E-mail"
2575
 
2582
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
2583
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
2584
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
2585
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:180
2586
  msgid "API Username"
2587
  msgstr "API gebruikersnaam"
2588
 
2595
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
2596
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
2597
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
2598
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:188
2599
  msgid "API Password"
2600
  msgstr "API wachtwoord"
2601
 
2605
  #: classes/gateways/class.pmprogateway_paypal.php:177
2606
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
2607
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
2608
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:196
2609
  msgid "API Signature"
2610
  msgstr "API handtekening"
2611
 
2629
  #: classes/gateways/class.pmprogateway_stripe.php:539
2630
  #: classes/gateways/class.pmprogateway_stripe.php:551
2631
  #: classes/gateways/class.pmprogateway_stripe.php:570
2632
+ #: classes/gateways/class.pmprogateway_stripe.php:576
2633
  msgid "Secret Key"
2634
  msgstr "Geheime sleutel"
2635
 
2639
  #: classes/gateways/class.pmprogateway_stripe.php:523
2640
  #: classes/gateways/class.pmprogateway_stripe.php:535
2641
  #: classes/gateways/class.pmprogateway_stripe.php:554
2642
+ #: classes/gateways/class.pmprogateway_stripe.php:560
2643
  msgid "Publishable Key"
2644
  msgstr "Publiceerbare sleutel"
2645
 
2726
  #: classes/gateways/class.pmprogateway_stripe.php:598
2727
  #: classes/gateways/class.pmprogateway_stripe.php:610
2728
  #: classes/gateways/class.pmprogateway_stripe.php:629
2729
+ #: classes/gateways/class.pmprogateway_stripe.php:635
2730
  msgid "Show Billing Address Fields"
2731
  msgstr "Toon factuuradres velden"
2732
 
2734
  #: classes/gateways/class.pmprogateway_stripe.php:607
2735
  #: classes/gateways/class.pmprogateway_stripe.php:619
2736
  #: classes/gateways/class.pmprogateway_stripe.php:638
2737
+ #: classes/gateways/class.pmprogateway_stripe.php:644
2738
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
2739
  msgstr "Stripe heeft geen factuuradres velden nodig. Kies 'Nee' om ze te verbergen op de inschrijfpagina.<br /><strong>Als Nee, zorg er dan voor dat de adresverificatie in de Stripe Dashboard instellingen uit staat.</strong>"
2740
 
2817
  #: classes/gateways/class.pmprogateway_paypal.php:196
2818
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
2819
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
2820
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:215
2821
  msgid "IPN Handler URL"
2822
  msgstr "IPN Handler URL"
2823
 
2826
  #: adminpages/paymentsettings.php:482
2827
  #: classes/gateways/class.pmprogateway_paypal.php:199
2828
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
2829
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:218
2830
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
2831
  msgstr "Voor volledige integratie met PayPal, stel je de IPN Handler URL in op "
2832
 
3205
  #: classes/class.pmproemail.php:769
3206
  #: classes/class.pmproemail.php:771
3207
  #: classes/gateways/class.pmprogateway_stripe.php:1333
3208
+ #: classes/gateways/class.pmprogateway_stripe.php:1339
3209
  msgid "Discount Code"
3210
  msgstr "kortingscode"
3211
 
3516
  #: classes/gateways/class.pmprogateway_paypal.php:716
3517
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
3518
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
3519
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:841
3520
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
3521
  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."
3522
 
3532
  #: classes/gateways/class.pmprogateway_stripe.php:2127
3533
  #: classes/gateways/class.pmprogateway_stripe.php:2132
3534
  #: classes/gateways/class.pmprogateway_stripe.php:2137
3535
+ #: classes/gateways/class.pmprogateway_stripe.php:2133
3536
+ #: classes/gateways/class.pmprogateway_stripe.php:2138
3537
+ #: classes/gateways/class.pmprogateway_stripe.php:2143
3538
  msgid "Error creating customer record with Stripe:"
3539
  msgstr "Fout tijdens het maken van een klantrecord met Stripe:"
3540
 
3548
  #: classes/gateways/class.pmprogateway_stripe.php:2356
3549
  #: classes/gateways/class.pmprogateway_stripe.php:2373
3550
  #: classes/gateways/class.pmprogateway_stripe.php:2378
3551
+ #: classes/gateways/class.pmprogateway_stripe.php:2379
3552
+ #: classes/gateways/class.pmprogateway_stripe.php:2384
3553
  msgid "Error creating plan with Stripe:"
3554
  msgstr "Fout tijdens het aanmaken van plan met Stripe"
3555
 
3563
  #: classes/gateways/class.pmprogateway_stripe.php:2401
3564
  #: classes/gateways/class.pmprogateway_stripe.php:2409
3565
  #: classes/gateways/class.pmprogateway_stripe.php:2423
3566
+ #: classes/gateways/class.pmprogateway_stripe.php:2415
3567
+ #: classes/gateways/class.pmprogateway_stripe.php:2429
3568
  msgid "Error subscribing customer to plan with Stripe:"
3569
  msgstr "Fout tijdens subscribing customer to plan met Stripe:"
3570
 
3572
  #: classes/gateways/class.pmprogateway_stripe.php:2632
3573
  #: classes/gateways/class.pmprogateway_stripe.php:2644
3574
  #: classes/gateways/class.pmprogateway_stripe.php:2666
3575
+ #: classes/gateways/class.pmprogateway_stripe.php:2672
3576
  msgid "Could not cancel old subscription."
3577
  msgstr "Kon oude inschrijving niet annuleren."
3578
 
4151
  #: adminpages/dashboard.php:224
4152
  #: adminpages/dashboard.php:292
4153
  #: adminpages/orders.php:1343
4154
+ #: includes/profile.php:500
4155
  msgid "Level"
4156
  msgstr "Lidmaatschap"
4157
 
4224
  #: includes/profile.php:872
4225
  #: includes/profile.php:909
4226
  #: shortcodes/pmpro_account.php:195
4227
+ #: includes/profile.php:884
4228
+ #: includes/profile.php:921
4229
  msgid "Change Password"
4230
  msgstr "Wijzig wachtwoord"
4231
 
4310
  #: includes/profile.php:747
4311
  #: pages/billing.php:164
4312
  #: pages/checkout.php:234
4313
+ #: includes/profile.php:759
4314
  msgid "First Name"
4315
  msgstr "Voornaam"
4316
 
4322
  #: includes/profile.php:748
4323
  #: pages/billing.php:168
4324
  #: pages/checkout.php:238
4325
+ #: includes/profile.php:760
4326
  msgid "Last Name"
4327
  msgstr "Achternaam"
4328
 
4453
  #: pages/checkout.php:389
4454
  #: classes/gateways/class.pmprogateway_stripe.php:1297
4455
  #: classes/gateways/class.pmprogateway_stripe.php:1316
4456
+ #: classes/gateways/class.pmprogateway_stripe.php:1322
4457
  msgid "Card Number"
4458
  msgstr "Kaartnummer"
4459
 
4485
  #: pages/billing.php:425
4486
  #: classes/gateways/class.pmprogateway_stripe.php:1403
4487
  #: classes/gateways/class.pmprogateway_stripe.php:1422
4488
+ #: classes/gateways/class.pmprogateway_stripe.php:1428
4489
  msgid "Update"
4490
  msgstr "Update"
4491
 
4569
  #: pages/checkout.php:432
4570
  #: classes/gateways/class.pmprogateway_stripe.php:1319
4571
  #: classes/gateways/class.pmprogateway_stripe.php:1338
4572
+ #: classes/gateways/class.pmprogateway_stripe.php:1344
4573
  msgid "Apply"
4574
  msgstr "Toepassen"
4575
 
4646
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
4647
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
4648
  #: pages/checkout.php:218
4649
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:498
4650
  msgid "Check Out with PayPal"
4651
  msgstr "Betaal met PayPal"
4652
 
4658
  #: pages/checkout.php:366
4659
  #: classes/gateways/class.pmprogateway_stripe.php:1263
4660
  #: classes/gateways/class.pmprogateway_stripe.php:1282
4661
+ #: classes/gateways/class.pmprogateway_stripe.php:1288
4662
  msgid "Payment Information"
4663
  msgstr "Betalingsinformatie"
4664
 
4670
  #: pages/checkout.php:367
4671
  #: classes/gateways/class.pmprogateway_stripe.php:1264
4672
  #: classes/gateways/class.pmprogateway_stripe.php:1283
4673
+ #: classes/gateways/class.pmprogateway_stripe.php:1289
4674
  #, php-format
4675
  msgid "We Accept %s"
4676
  msgstr "Wij accepteren %s"
4697
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
4698
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
4699
  #: pages/checkout.php:526
4700
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
4701
  msgid "Submit and Check Out"
4702
  msgstr "Stuur in en schrijf je in."
4703
 
4709
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
4710
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
4711
  #: pages/checkout.php:526
4712
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
4713
  msgid "Submit and Confirm"
4714
  msgstr "Bevestigen en insturen"
4715
 
5062
  #: preheaders/checkout.php:822
5063
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
5064
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
5065
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:352
5066
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:411
5067
  msgid "The PayPal Token was lost."
5068
  msgstr "de PayPal token was kwijt."
5069
 
5155
  #: services/authnet-silent-post.php:138
5156
  #: services/authnet-silent-post.php:133
5157
  #: services/authnet-silent-post.php:173
5158
+ #: services/authnet-silent-post.php:176
5159
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
5160
  msgstr "<p>Een betaling staat ter controle bij Authorize.net.</p><p>Betalingsinformatie van Authorize.net"
5161
 
5383
  #: adminpages/orders.php:1544
5384
  #: adminpages/orders.php:1554
5385
  #: adminpages/orders.php:1553
5386
+ #: includes/profile.php:520
5387
+ #: includes/profile.php:521
5388
+ #: includes/profile.php:522
5389
  msgid "N/A"
5390
  msgstr ""
5391
 
5412
 
5413
  #: adminpages/admin_header.php:152
5414
  #: classes/gateways/class.pmprogateway_stripe.php:76
5415
+ #: classes/gateways/class.pmprogateway_stripe.php:82
5416
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
5417
  msgstr ""
5418
 
5696
  #: adminpages/dashboard.php:174
5697
  #: adminpages/license.php:49
5698
  #: adminpages/dashboard.php:178
5699
+ #: adminpages/license.php:41
5700
  msgid "Your license is invalid or expired."
5701
  msgstr ""
5702
 
5708
  #: adminpages/dashboard.php:177
5709
  #: adminpages/license.php:51
5710
  #: adminpages/dashboard.php:181
5711
+ #: adminpages/license.php:43
5712
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
5713
  msgstr ""
5714
 
6191
  msgstr ""
6192
 
6193
  #: adminpages/license.php:43
6194
+ #: adminpages/license.php:33
6195
  msgid "Paid Memberships Pro Support License"
6196
  msgstr ""
6197
 
6198
  #: adminpages/license.php:47
6199
+ #: adminpages/license.php:39
6200
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
6201
  msgstr ""
6202
 
6203
  #: adminpages/license.php:49
6204
+ #: adminpages/license.php:37
6205
+ #: adminpages/license.php:41
6206
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
6207
  msgstr ""
6208
 
6209
  #: adminpages/license.php:59
6210
+ #: adminpages/license.php:51
6211
  msgid "Enter license key here..."
6212
  msgstr ""
6213
 
6214
  #: adminpages/license.php:61
6215
+ #: adminpages/license.php:53
6216
  msgid "Validate Key"
6217
  msgstr ""
6218
 
6219
  #: adminpages/license.php:95
6220
+ #: adminpages/license.php:87
6221
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
6222
  msgstr ""
6223
 
6868
 
6869
  #: classes/gateways/class.pmprogateway_braintree.php:87
6870
  #: classes/gateways/class.pmprogateway_stripe.php:91
6871
+ #: classes/gateways/class.pmprogateway_stripe.php:97
6872
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
6873
  msgstr ""
6874
 
7188
  msgstr ""
7189
 
7190
  #: classes/gateways/class.pmprogateway_cybersource.php:922
7191
+ #: includes/license.php:159
7192
  msgid "Unknown error."
7193
  msgstr ""
7194
 
7221
  #: classes/gateways/class.pmprogateway_paypal.php:132
7222
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
7223
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
7224
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:151
7225
  msgid "PayPal Settings"
7226
  msgstr ""
7227
 
7228
  #: classes/gateways/class.pmprogateway_paypal.php:146
7229
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
7230
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
7231
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:165
7232
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
7233
  msgstr ""
7234
 
7235
  #: classes/gateways/class.pmprogateway_paypal.php:185
7236
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
7237
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:204
7238
  msgid "Confirmation Step"
7239
  msgstr ""
7240
 
7241
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
7242
  #: paid-memberships-pro.php:160
7243
  #: paid-memberships-pro.php:162
7244
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:94
7245
  msgid "PayPal Express"
7246
  msgstr ""
7247
 
7248
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
7249
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:356
7250
  msgid "Checkout was already processed."
7251
  msgstr ""
7252
 
7253
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
7254
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:791
7255
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
7256
  msgstr ""
7257
 
7258
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
7259
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:792
7260
  msgid "Error creating plan with PayPal."
7261
  msgstr ""
7262
 
7277
  #: classes/gateways/class.pmprogateway_stripe.php:252
7278
  #: paid-memberships-pro.php:159
7279
  #: paid-memberships-pro.php:161
7280
+ #: classes/gateways/class.pmprogateway_stripe.php:258
7281
  msgid "Stripe"
7282
  msgstr ""
7283
 
7285
  #: classes/gateways/class.pmprogateway_stripe.php:436
7286
  #: classes/gateways/class.pmprogateway_stripe.php:354
7287
  #: classes/gateways/class.pmprogateway_stripe.php:444
7288
+ #: classes/gateways/class.pmprogateway_stripe.php:360
7289
+ #: classes/gateways/class.pmprogateway_stripe.php:450
7290
  msgid "Stripe Connect Settings"
7291
  msgstr ""
7292
 
7293
  #: classes/gateways/class.pmprogateway_stripe.php:352
7294
  #: classes/gateways/class.pmprogateway_stripe.php:356
7295
+ #: classes/gateways/class.pmprogateway_stripe.php:362
7296
  msgid "Live Mode:"
7297
  msgstr ""
7298
 
7300
  #: classes/gateways/class.pmprogateway_stripe.php:440
7301
  #: classes/gateways/class.pmprogateway_stripe.php:358
7302
  #: classes/gateways/class.pmprogateway_stripe.php:448
7303
+ #: classes/gateways/class.pmprogateway_stripe.php:364
7304
+ #: classes/gateways/class.pmprogateway_stripe.php:454
7305
  msgid "Connected"
7306
  msgstr ""
7307
 
7309
  #: classes/gateways/class.pmprogateway_stripe.php:442
7310
  #: classes/gateways/class.pmprogateway_stripe.php:362
7311
  #: classes/gateways/class.pmprogateway_stripe.php:452
7312
+ #: classes/gateways/class.pmprogateway_stripe.php:368
7313
+ #: classes/gateways/class.pmprogateway_stripe.php:458
7314
  msgid "Not Connected"
7315
  msgstr ""
7316
 
7318
  #: classes/gateways/class.pmprogateway_stripe.php:449
7319
  #: classes/gateways/class.pmprogateway_stripe.php:369
7320
  #: classes/gateways/class.pmprogateway_stripe.php:459
7321
+ #: classes/gateways/class.pmprogateway_stripe.php:375
7322
+ #: classes/gateways/class.pmprogateway_stripe.php:465
7323
  msgid "Your site is using legacy API keys to authenticate with Stripe."
7324
  msgstr ""
7325
 
7326
  #: classes/gateways/class.pmprogateway_stripe.php:364
7327
  #: classes/gateways/class.pmprogateway_stripe.php:371
7328
+ #: classes/gateways/class.pmprogateway_stripe.php:377
7329
  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."
7330
  msgstr ""
7331
 
7333
  #: classes/gateways/class.pmprogateway_stripe.php:458
7334
  #: classes/gateways/class.pmprogateway_stripe.php:380
7335
  #: classes/gateways/class.pmprogateway_stripe.php:470
7336
+ #: classes/gateways/class.pmprogateway_stripe.php:386
7337
+ #: classes/gateways/class.pmprogateway_stripe.php:476
7338
  msgid "Stripe Connection:"
7339
  msgstr ""
7340
 
7342
  #: classes/gateways/class.pmprogateway_stripe.php:482
7343
  #: classes/gateways/class.pmprogateway_stripe.php:396
7344
  #: classes/gateways/class.pmprogateway_stripe.php:494
7345
+ #: classes/gateways/class.pmprogateway_stripe.php:402
7346
+ #: classes/gateways/class.pmprogateway_stripe.php:500
7347
  msgid "Disconnect From Stripe"
7348
  msgstr ""
7349
 
7350
  #: classes/gateways/class.pmprogateway_stripe.php:389
7351
  #: classes/gateways/class.pmprogateway_stripe.php:397
7352
+ #: classes/gateways/class.pmprogateway_stripe.php:403
7353
  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."
7354
  msgstr ""
7355
 
7357
  #: classes/gateways/class.pmprogateway_stripe.php:496
7358
  #: classes/gateways/class.pmprogateway_stripe.php:409
7359
  #: classes/gateways/class.pmprogateway_stripe.php:508
7360
+ #: classes/gateways/class.pmprogateway_stripe.php:415
7361
+ #: classes/gateways/class.pmprogateway_stripe.php:514
7362
  msgid "Connect with Stripe"
7363
  msgstr ""
7364
 
7365
  #: classes/gateways/class.pmprogateway_stripe.php:408
7366
  #: classes/gateways/class.pmprogateway_stripe.php:416
7367
+ #: classes/gateways/class.pmprogateway_stripe.php:422
7368
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
7369
  msgstr ""
7370
 
7371
  #: classes/gateways/class.pmprogateway_stripe.php:411
7372
  #: classes/gateways/class.pmprogateway_stripe.php:419
7373
+ #: classes/gateways/class.pmprogateway_stripe.php:425
7374
  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."
7375
  msgstr ""
7376
 
7381
  #: classes/gateways/class.pmprogateway_stripe.php:519
7382
  #: classes/gateways/class.pmprogateway_stripe.php:559
7383
  #: classes/gateways/class.pmprogateway_stripe.php:578
7384
+ #: classes/gateways/class.pmprogateway_stripe.php:437
7385
+ #: classes/gateways/class.pmprogateway_stripe.php:525
7386
+ #: classes/gateways/class.pmprogateway_stripe.php:584
7387
  msgid "Webhook"
7388
  msgstr ""
7389
 
7394
  #: classes/gateways/class.pmprogateway_stripe.php:523
7395
  #: classes/gateways/class.pmprogateway_stripe.php:594
7396
  #: classes/gateways/class.pmprogateway_stripe.php:613
7397
+ #: classes/gateways/class.pmprogateway_stripe.php:441
7398
+ #: classes/gateways/class.pmprogateway_stripe.php:529
7399
+ #: classes/gateways/class.pmprogateway_stripe.php:619
7400
  msgid "Webhook URL"
7401
  msgstr ""
7402
 
7403
  #: classes/gateways/class.pmprogateway_stripe.php:438
7404
  #: classes/gateways/class.pmprogateway_stripe.php:446
7405
+ #: classes/gateways/class.pmprogateway_stripe.php:452
7406
  msgid "Test Mode:"
7407
  msgstr ""
7408
 
7409
  #: classes/gateways/class.pmprogateway_stripe.php:450
7410
  #: classes/gateways/class.pmprogateway_stripe.php:461
7411
+ #: classes/gateways/class.pmprogateway_stripe.php:467
7412
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
7413
  msgstr ""
7414
 
7415
  #: classes/gateways/class.pmprogateway_stripe.php:483
7416
  #: classes/gateways/class.pmprogateway_stripe.php:495
7417
+ #: classes/gateways/class.pmprogateway_stripe.php:501
7418
  msgid "This will disconnect your site from Stripe in test mode only."
7419
  msgstr ""
7420
 
7421
  #: classes/gateways/class.pmprogateway_stripe.php:518
7422
  #: classes/gateways/class.pmprogateway_stripe.php:530
7423
+ #: classes/gateways/class.pmprogateway_stripe.php:536
7424
  msgid "Stripe API Settings (Legacy)"
7425
  msgstr ""
7426
 
7427
  #: classes/gateways/class.pmprogateway_stripe.php:531
7428
  #: classes/gateways/class.pmprogateway_stripe.php:543
7429
  #: classes/gateways/class.pmprogateway_stripe.php:562
7430
+ #: classes/gateways/class.pmprogateway_stripe.php:568
7431
  msgid "Your Publishable Key appears incorrect."
7432
  msgstr ""
7433
 
7437
  #: classes/gateways/class.pmprogateway_stripe.php:587
7438
  #: classes/gateways/class.pmprogateway_stripe.php:582
7439
  #: classes/gateways/class.pmprogateway_stripe.php:606
7440
+ #: classes/gateways/class.pmprogateway_stripe.php:588
7441
+ #: classes/gateways/class.pmprogateway_stripe.php:612
7442
  msgid "Create Webhook"
7443
  msgstr ""
7444
 
7445
  #: classes/gateways/class.pmprogateway_stripe.php:557
7446
  #: classes/gateways/class.pmprogateway_stripe.php:569
7447
  #: classes/gateways/class.pmprogateway_stripe.php:588
7448
+ #: classes/gateways/class.pmprogateway_stripe.php:594
7449
  msgid "A webhook is set up in Stripe, but it is disabled."
7450
  msgstr ""
7451
 
7452
  #: classes/gateways/class.pmprogateway_stripe.php:564
7453
  #: classes/gateways/class.pmprogateway_stripe.php:576
7454
  #: classes/gateways/class.pmprogateway_stripe.php:595
7455
+ #: classes/gateways/class.pmprogateway_stripe.php:601
7456
  msgid "A webhook is set up in Stripe, but it is using an old API version."
7457
  msgstr ""
7458
 
7459
  #: classes/gateways/class.pmprogateway_stripe.php:564
7460
  #: classes/gateways/class.pmprogateway_stripe.php:576
7461
  #: classes/gateways/class.pmprogateway_stripe.php:595
7462
+ #: classes/gateways/class.pmprogateway_stripe.php:601
7463
  msgid "Rebuild Webhook"
7464
  msgstr ""
7465
 
7472
  #: classes/gateways/class.pmprogateway_stripe.php:601
7473
  #: classes/gateways/class.pmprogateway_stripe.php:741
7474
  #: classes/gateways/class.pmprogateway_stripe.php:857
7475
+ #: classes/gateways/class.pmprogateway_stripe.php:607
7476
+ #: classes/gateways/class.pmprogateway_stripe.php:747
7477
+ #: classes/gateways/class.pmprogateway_stripe.php:863
7478
  msgid "Your webhook is enabled."
7479
  msgstr ""
7480
 
7481
  #: classes/gateways/class.pmprogateway_stripe.php:570
7482
  #: classes/gateways/class.pmprogateway_stripe.php:582
7483
  #: classes/gateways/class.pmprogateway_stripe.php:601
7484
+ #: classes/gateways/class.pmprogateway_stripe.php:607
7485
  msgid "Disable Webhook"
7486
  msgstr ""
7487
 
7497
  #: classes/gateways/class.pmprogateway_stripe.php:768
7498
  #: classes/gateways/class.pmprogateway_stripe.php:785
7499
  #: classes/gateways/class.pmprogateway_stripe.php:819
7500
+ #: classes/gateways/class.pmprogateway_stripe.php:614
7501
+ #: classes/gateways/class.pmprogateway_stripe.php:774
7502
+ #: classes/gateways/class.pmprogateway_stripe.php:791
7503
+ #: classes/gateways/class.pmprogateway_stripe.php:825
7504
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
7505
  msgstr ""
7506
 
7507
  #: classes/gateways/class.pmprogateway_stripe.php:589
7508
  #: classes/gateways/class.pmprogateway_stripe.php:601
7509
  #: classes/gateways/class.pmprogateway_stripe.php:620
7510
+ #: classes/gateways/class.pmprogateway_stripe.php:626
7511
  msgid "Other Stripe Settings"
7512
  msgstr ""
7513
 
7514
  #: classes/gateways/class.pmprogateway_stripe.php:593
7515
  #: classes/gateways/class.pmprogateway_stripe.php:605
7516
  #: classes/gateways/class.pmprogateway_stripe.php:624
7517
+ #: classes/gateways/class.pmprogateway_stripe.php:630
7518
  msgid "Stripe API Version"
7519
  msgstr ""
7520
 
7521
  #: classes/gateways/class.pmprogateway_stripe.php:612
7522
  #: classes/gateways/class.pmprogateway_stripe.php:624
7523
  #: classes/gateways/class.pmprogateway_stripe.php:643
7524
+ #: classes/gateways/class.pmprogateway_stripe.php:649
7525
  msgid "Enable Payment Request Button"
7526
  msgstr ""
7527
 
7528
  #: classes/gateways/class.pmprogateway_stripe.php:630
7529
  #: classes/gateways/class.pmprogateway_stripe.php:642
7530
  #: classes/gateways/class.pmprogateway_stripe.php:661
7531
+ #: classes/gateways/class.pmprogateway_stripe.php:667
7532
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
7533
  msgstr ""
7534
 
7535
  #: classes/gateways/class.pmprogateway_stripe.php:643
7536
  #: classes/gateways/class.pmprogateway_stripe.php:655
7537
  #: classes/gateways/class.pmprogateway_stripe.php:674
7538
+ #: classes/gateways/class.pmprogateway_stripe.php:680
7539
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
7540
  msgstr ""
7541
 
7542
  #: classes/gateways/class.pmprogateway_stripe.php:645
7543
  #: classes/gateways/class.pmprogateway_stripe.php:657
7544
  #: classes/gateways/class.pmprogateway_stripe.php:676
7545
+ #: classes/gateways/class.pmprogateway_stripe.php:682
7546
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
7547
  msgstr ""
7548
 
7549
  #: classes/gateways/class.pmprogateway_stripe.php:647
7550
  #: classes/gateways/class.pmprogateway_stripe.php:659
7551
  #: classes/gateways/class.pmprogateway_stripe.php:678
7552
+ #: classes/gateways/class.pmprogateway_stripe.php:684
7553
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
7554
  msgstr ""
7555
 
7556
  #: classes/gateways/class.pmprogateway_stripe.php:649
7557
  #: classes/gateways/class.pmprogateway_stripe.php:661
7558
  #: classes/gateways/class.pmprogateway_stripe.php:680
7559
+ #: classes/gateways/class.pmprogateway_stripe.php:686
7560
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
7561
  msgstr ""
7562
 
7563
  #: classes/gateways/class.pmprogateway_stripe.php:674
7564
  #: classes/gateways/class.pmprogateway_stripe.php:686
7565
  #: classes/gateways/class.pmprogateway_stripe.php:705
7566
+ #: classes/gateways/class.pmprogateway_stripe.php:711
7567
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
7568
  msgstr ""
7569
 
7570
  #: classes/gateways/class.pmprogateway_stripe.php:695
7571
  #: classes/gateways/class.pmprogateway_stripe.php:707
7572
  #: classes/gateways/class.pmprogateway_stripe.php:726
7573
+ #: classes/gateways/class.pmprogateway_stripe.php:732
7574
  msgid "Webhook creation failed. You might already have a webhook set up."
7575
  msgstr ""
7576
 
7580
  #: classes/gateways/class.pmprogateway_stripe.php:847
7581
  #: classes/gateways/class.pmprogateway_stripe.php:792
7582
  #: classes/gateways/class.pmprogateway_stripe.php:866
7583
+ #: classes/gateways/class.pmprogateway_stripe.php:798
7584
+ #: classes/gateways/class.pmprogateway_stripe.php:872
7585
  msgid "There was an error deleting the webhook."
7586
  msgstr ""
7587
 
7588
  #: classes/gateways/class.pmprogateway_stripe.php:811
7589
  #: classes/gateways/class.pmprogateway_stripe.php:823
7590
  #: classes/gateways/class.pmprogateway_stripe.php:842
7591
+ #: classes/gateways/class.pmprogateway_stripe.php:848
7592
  msgid "Webhook creation failed. Please refresh and try again."
7593
  msgstr ""
7594
 
7595
  #: classes/gateways/class.pmprogateway_stripe.php:867
7596
  #: classes/gateways/class.pmprogateway_stripe.php:879
7597
  #: classes/gateways/class.pmprogateway_stripe.php:898
7598
+ #: classes/gateways/class.pmprogateway_stripe.php:904
7599
  msgid "Verification steps confirmed. Your payment is processing."
7600
  msgstr ""
7601
 
7602
  #: classes/gateways/class.pmprogateway_stripe.php:1262
7603
  #: classes/gateways/class.pmprogateway_stripe.php:1274
7604
  #: classes/gateways/class.pmprogateway_stripe.php:1293
7605
+ #: classes/gateways/class.pmprogateway_stripe.php:1299
7606
  msgid "Pay with Credit Card"
7607
  msgstr ""
7608
 
7609
  #: classes/gateways/class.pmprogateway_stripe.php:1296
7610
  #: classes/gateways/class.pmprogateway_stripe.php:1308
7611
  #: classes/gateways/class.pmprogateway_stripe.php:1327
7612
+ #: classes/gateways/class.pmprogateway_stripe.php:1333
7613
  msgid "CVC"
7614
  msgstr ""
7615
 
7616
  #: classes/gateways/class.pmprogateway_stripe.php:1374
7617
  #: classes/gateways/class.pmprogateway_stripe.php:1386
7618
  #: classes/gateways/class.pmprogateway_stripe.php:1405
7619
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
7620
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
7621
  msgstr ""
7622
 
7623
  #: classes/gateways/class.pmprogateway_stripe.php:1379
7624
  #: classes/gateways/class.pmprogateway_stripe.php:1391
7625
  #: classes/gateways/class.pmprogateway_stripe.php:1410
7626
+ #: classes/gateways/class.pmprogateway_stripe.php:1416
7627
  msgid "Subscription Updates"
7628
  msgstr ""
7629
 
7630
  #: classes/gateways/class.pmprogateway_stripe.php:1383
7631
  #: classes/gateways/class.pmprogateway_stripe.php:1395
7632
  #: classes/gateways/class.pmprogateway_stripe.php:1414
7633
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
7634
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
7635
  msgstr ""
7636
 
7637
  #: classes/gateways/class.pmprogateway_stripe.php:1385
7638
  #: classes/gateways/class.pmprogateway_stripe.php:1397
7639
  #: classes/gateways/class.pmprogateway_stripe.php:1416
7640
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
7641
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
7642
  msgstr ""
7643
 
7653
  #: classes/gateways/class.pmprogateway_stripe.php:2016
7654
  #: classes/gateways/class.pmprogateway_stripe.php:2029
7655
  #: classes/gateways/class.pmprogateway_stripe.php:2033
7656
+ #: classes/gateways/class.pmprogateway_stripe.php:2018
7657
+ #: classes/gateways/class.pmprogateway_stripe.php:2022
7658
+ #: classes/gateways/class.pmprogateway_stripe.php:2035
7659
+ #: classes/gateways/class.pmprogateway_stripe.php:2039
7660
  msgid "Error: %s"
7661
  msgstr ""
7662
 
7666
  #: classes/gateways/class.pmprogateway_stripe.php:2182
7667
  #: classes/gateways/class.pmprogateway_stripe.php:2196
7668
  #: classes/gateways/class.pmprogateway_stripe.php:2201
7669
+ #: classes/gateways/class.pmprogateway_stripe.php:2202
7670
+ #: classes/gateways/class.pmprogateway_stripe.php:2207
7671
  msgid "Error getting subscription with Stripe:"
7672
  msgstr ""
7673
 
7674
  #: classes/gateways/class.pmprogateway_stripe.php:2480
7675
  #: classes/gateways/class.pmprogateway_stripe.php:2492
7676
  #: classes/gateways/class.pmprogateway_stripe.php:2514
7677
+ #: classes/gateways/class.pmprogateway_stripe.php:2520
7678
  msgid "Could not cancel the old subscription. Updates have not been processed."
7679
  msgstr ""
7680
 
7681
  #: classes/gateways/class.pmprogateway_stripe.php:2648
7682
  #: classes/gateways/class.pmprogateway_stripe.php:2660
7683
  #: classes/gateways/class.pmprogateway_stripe.php:2682
7684
+ #: classes/gateways/class.pmprogateway_stripe.php:2688
7685
  msgid "Could not find the customer."
7686
  msgstr ""
7687
 
7691
  #: classes/gateways/class.pmprogateway_stripe.php:2834
7692
  #: classes/gateways/class.pmprogateway_stripe.php:2850
7693
  #: classes/gateways/class.pmprogateway_stripe.php:2856
7694
+ #: classes/gateways/class.pmprogateway_stripe.php:2862
7695
  msgid "Error: "
7696
  msgstr ""
7697
 
7698
  #: classes/gateways/class.pmprogateway_stripe.php:2836
7699
  #: classes/gateways/class.pmprogateway_stripe.php:2848
7700
  #: classes/gateways/class.pmprogateway_stripe.php:2870
7701
+ #: classes/gateways/class.pmprogateway_stripe.php:2876
7702
  msgid "Error: Unkown error while refunding charge #%s"
7703
  msgstr ""
7704
 
7705
  #: classes/gateways/class.pmprogateway_stripe.php:3330
7706
  #: classes/gateways/class.pmprogateway_stripe.php:3342
7707
  #: classes/gateways/class.pmprogateway_stripe.php:3364
7708
+ #: classes/gateways/class.pmprogateway_stripe.php:3370
7709
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
7710
  msgstr ""
7711
 
7712
  #: classes/gateways/class.pmprogateway_stripe.php:3347
7713
  #: classes/gateways/class.pmprogateway_stripe.php:3359
7714
  #: classes/gateways/class.pmprogateway_stripe.php:3381
7715
+ #: classes/gateways/class.pmprogateway_stripe.php:3387
7716
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
7717
  msgstr ""
7718
 
7719
  #: classes/gateways/class.pmprogateway_stripe.php:3533
7720
  #: classes/gateways/class.pmprogateway_stripe.php:3545
7721
  #: classes/gateways/class.pmprogateway_stripe.php:3567
7722
+ #: classes/gateways/class.pmprogateway_stripe.php:3573
7723
  msgid "Invalid response from the Stripe Connect server."
7724
  msgstr ""
7725
 
7727
  #: classes/gateways/class.pmprogateway_stripe.php:3561
7728
  #: classes/gateways/class.pmprogateway_stripe.php:3573
7729
  #: classes/gateways/class.pmprogateway_stripe.php:3595
7730
+ #: classes/gateways/class.pmprogateway_stripe.php:3601
7731
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
7732
  msgstr ""
7733
 
7735
  #: classes/gateways/class.pmprogateway_stripe.php:3597
7736
  #: classes/gateways/class.pmprogateway_stripe.php:3609
7737
  #: classes/gateways/class.pmprogateway_stripe.php:3631
7738
+ #: classes/gateways/class.pmprogateway_stripe.php:3637
7739
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
7740
  msgstr ""
7741
 
7742
  #: classes/gateways/class.pmprogateway_stripe.php:3768
7743
  #: classes/gateways/class.pmprogateway_stripe.php:3780
7744
  #: classes/gateways/class.pmprogateway_stripe.php:3802
7745
+ #: classes/gateways/class.pmprogateway_stripe.php:3808
7746
  msgid "Last webhook received at"
7747
  msgstr ""
7748
 
7749
  #: classes/gateways/class.pmprogateway_stripe.php:3770
7750
  #: classes/gateways/class.pmprogateway_stripe.php:3782
7751
  #: classes/gateways/class.pmprogateway_stripe.php:3804
7752
+ #: classes/gateways/class.pmprogateway_stripe.php:3810
7753
  msgid "No webhooks have been received."
7754
  msgstr ""
7755
 
7756
  #: classes/gateways/class.pmprogateway_stripe.php:3774
7757
  #: classes/gateways/class.pmprogateway_stripe.php:3786
7758
  #: classes/gateways/class.pmprogateway_stripe.php:3808
7759
+ #: classes/gateways/class.pmprogateway_stripe.php:3814
7760
  msgid "Your webhook may not be working correctly."
7761
  msgstr ""
7762
 
7763
  #: classes/gateways/class.pmprogateway_stripe.php:3776
7764
  #: classes/gateways/class.pmprogateway_stripe.php:3788
7765
  #: classes/gateways/class.pmprogateway_stripe.php:3810
7766
+ #: classes/gateways/class.pmprogateway_stripe.php:3816
7767
  msgid "Click here for info on setting up your webhook with Stripe."
7768
  msgstr ""
7769
 
9961
 
9962
  #: includes/login.php:429
9963
  #: includes/profile.php:843
9964
+ #: includes/profile.php:855
9965
  msgid "New passwords do not match."
9966
  msgstr ""
9967
 
9968
  #: includes/login.php:433
9969
  #: includes/profile.php:839
9970
+ #: includes/profile.php:851
9971
  msgid "Please complete all fields."
9972
  msgstr ""
9973
 
9997
 
9998
  #: includes/login.php:688
9999
  #: includes/profile.php:891
10000
+ #: includes/profile.php:903
10001
  msgid "New Password"
10002
  msgstr ""
10003
 
10004
  #: includes/login.php:690
10005
  #: includes/profile.php:894
10006
  #: includes/scripts.php:86
10007
+ #: includes/profile.php:906
10008
+ #: includes/scripts.php:85
10009
  msgid "Strength Indicator"
10010
  msgstr ""
10011
 
10012
  #: includes/login.php:694
10013
  #: includes/profile.php:898
10014
+ #: includes/profile.php:910
10015
  msgid "Confirm New Password"
10016
  msgstr ""
10017
 
10112
  #: includes/privacy.php:182
10113
  #: includes/profile.php:425
10114
  #: includes/profile.php:493
10115
+ #: includes/profile.php:499
10116
  msgid "Level ID"
10117
  msgstr ""
10118
 
10119
  #: includes/privacy.php:190
10120
  #: includes/profile.php:496
10121
+ #: includes/profile.php:502
10122
  msgid "Date Modified"
10123
  msgstr ""
10124
 
10125
  #: includes/privacy.php:194
10126
  #: includes/profile.php:497
10127
+ #: includes/profile.php:503
10128
  msgid "End Date"
10129
  msgstr ""
10130
 
10131
  #: includes/privacy.php:198
10132
  #: includes/profile.php:498
10133
+ #: includes/profile.php:504
10134
  msgid "Level Cost"
10135
  msgstr ""
10136
 
10239
  msgstr ""
10240
 
10241
  #: includes/profile.php:485
10242
+ #: includes/profile.php:488
10243
  msgid "No membership orders found."
10244
  msgstr ""
10245
 
10246
  #: includes/profile.php:537
10247
+ #: includes/profile.php:546
10248
  msgid "No membership history found."
10249
  msgstr ""
10250
 
10251
  #: includes/profile.php:644
10252
+ #: includes/profile.php:656
10253
  msgid "Log in to edit your profile."
10254
  msgstr ""
10255
 
10256
  #: includes/profile.php:679
10257
+ #: includes/profile.php:691
10258
  msgid "Please enter a display name."
10259
  msgstr ""
10260
 
10261
  #: includes/profile.php:689
10262
+ #: includes/profile.php:701
10263
  msgid "Please enter an email address."
10264
  msgstr ""
10265
 
10266
  #: includes/profile.php:691
10267
+ #: includes/profile.php:703
10268
  msgid "The email address isn&#8217;t correct."
10269
  msgstr ""
10270
 
10271
  #: includes/profile.php:695
10272
+ #: includes/profile.php:707
10273
  msgid "This email is already registered, please choose another one."
10274
  msgstr ""
10275
 
10276
  #: includes/profile.php:722
10277
+ #: includes/profile.php:734
10278
  msgid "Your profile has been updated."
10279
  msgstr ""
10280
 
10281
  #: includes/profile.php:749
10282
+ #: includes/profile.php:761
10283
  msgid "Display name publicly as"
10284
  msgstr ""
10285
 
10286
  #: includes/profile.php:762
10287
+ #: includes/profile.php:774
10288
  msgid "Site administrators must use the WordPress dashboard to update their email address."
10289
  msgstr ""
10290
 
10291
  #: includes/profile.php:785
10292
+ #: includes/profile.php:797
10293
  msgid "Update Profile"
10294
  msgstr ""
10295
 
10296
  #: includes/profile.php:841
10297
+ #: includes/profile.php:853
10298
  msgid "Please enter your current password."
10299
  msgstr ""
10300
 
10301
  #: includes/profile.php:845
10302
+ #: includes/profile.php:857
10303
  msgid "Your current password is incorrect."
10304
  msgstr ""
10305
 
10306
  #: includes/profile.php:856
10307
+ #: includes/profile.php:868
10308
  msgid "Your password has been updated."
10309
  msgstr ""
10310
 
10311
  #: includes/profile.php:886
10312
+ #: includes/profile.php:898
10313
  msgid "Current Password"
10314
  msgstr ""
10315
 
10316
  #: includes/profile.php:888
10317
  #: includes/profile.php:893
10318
  #: includes/profile.php:900
10319
+ #: includes/profile.php:905
10320
+ #: includes/profile.php:912
10321
  msgid "Required Field"
10322
  msgstr ""
10323
 
10463
  msgstr ""
10464
 
10465
  #: services/braintree-webhook.php:425
10466
+ #: services/braintree-webhook.php:426
10467
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
10468
  msgstr ""
10469
 
10470
  #: services/braintree-webhook.php:427
10471
+ #: services/braintree-webhook.php:428
10472
  msgid "A member's Braintree subscription has expired at %s"
10473
  msgstr ""
10474
 
10803
 
10804
  #: classes/gateways/class.pmprogateway_stripe.php:360
10805
  #: classes/gateways/class.pmprogateway_stripe.php:450
10806
+ #: classes/gateways/class.pmprogateway_stripe.php:366
10807
+ #: classes/gateways/class.pmprogateway_stripe.php:456
10808
  msgid "Connected with Legacy Keys"
10809
  msgstr ""
10810
 
10811
  #: classes/gateways/class.pmprogateway_stripe.php:370
10812
  #: classes/gateways/class.pmprogateway_stripe.php:460
10813
+ #: classes/gateways/class.pmprogateway_stripe.php:376
10814
+ #: classes/gateways/class.pmprogateway_stripe.php:466
10815
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
10816
  msgstr ""
10817
 
10818
  #: classes/gateways/class.pmprogateway_stripe.php:372
10819
  #: classes/gateways/class.pmprogateway_stripe.php:462
10820
+ #: classes/gateways/class.pmprogateway_stripe.php:378
10821
+ #: classes/gateways/class.pmprogateway_stripe.php:468
10822
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
10823
  msgstr ""
10824
 
10875
  msgstr ""
10876
 
10877
  #: classes/gateways/class.pmprogateway_stripe.php:533
10878
+ #: classes/gateways/class.pmprogateway_stripe.php:539
10879
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
10880
  msgstr ""
10881
 
10882
  #: classes/gateways/class.pmprogateway_stripe.php:534
10883
+ #: classes/gateways/class.pmprogateway_stripe.php:540
10884
  msgid "Click here to use the legacy API settings."
10885
  msgstr ""
10886
 
10887
  #: paid-memberships-pro.php:194
10888
  msgid "Once a month"
10889
  msgstr ""
10890
+
10891
+ #: adminpages/license.php:37
10892
+ msgid "There was an issue validating your license key: %s"
10893
+ msgstr ""
10894
+
10895
+ #: includes/email-templates.php:172
10896
+ msgid ""
10897
+ "<p>There was a new member checkout at !!sitename!!.</p>\n"
10898
+ "\n"
10899
+ "<p><strong>They have chosen to pay by check.</strong></p>\n"
10900
+ "\n"
10901
+ "<p>Below are details about the new membership account and a receipt for the initial membership invoice.</p>\n"
10902
+ "\n"
10903
+ "<p>Account: !!display_name!! (!!user_email!!)</p>\n"
10904
+ "<p>Membership Level: !!membership_level_name!!</p>\n"
10905
+ "<p>Membership Fee: !!membership_cost!!</p>\n"
10906
+ "!!membership_expiration!! !!discount_code!!\n"
10907
+ "\n"
10908
+ "<p>\n"
10909
+ "\tInvoice #!!invoice_id!! on !!invoice_date!!<br />\n"
10910
+ "\tTotal Billed: !!invoice_total!!\n"
10911
+ "</p>\n"
10912
+ "\n"
10913
+ "<p>Log in to your membership account here: !!login_url!!</p>"
10914
+ msgstr ""
10915
+
10916
+ #: includes/license.php:112
10917
+ msgid "Missing key."
10918
+ msgstr ""
10919
+
10920
+ #: shortcodes/pmpro_account.php:145
10921
+ msgctxt "A dash is shown when there is no expiration date."
10922
+ msgid "&#8212;"
10923
+ msgstr ""
languages/paid-memberships-pro-pt_BR.mo CHANGED
Binary file
languages/paid-memberships-pro-pt_BR.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.2\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-09-17T13:57:40+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -261,6 +261,9 @@ msgstr ""
261
  #: adminpages/orders.php:1544
262
  #: adminpages/orders.php:1554
263
  #: adminpages/orders.php:1553
 
 
 
264
  msgid "N/A"
265
  msgstr "N/A"
266
 
@@ -444,6 +447,7 @@ msgstr "Gateway de Pagamentos &amp; SSL"
444
  #: adminpages/orders.php:391
445
  #: adminpages/orders.php:1445
446
  #: adminpages/orders.php:1448
 
447
  msgid "Email"
448
  msgstr "E-mail"
449
 
@@ -632,6 +636,8 @@ msgstr "Esconder Ads nas Assinaturas?"
632
  #: adminpages/advancedsettings.php:479
633
  #: classes/gateways/class.pmprogateway_stripe.php:634
634
  #: classes/gateways/class.pmprogateway_stripe.php:648
 
 
635
  msgid "No"
636
  msgstr "Não"
637
 
@@ -730,6 +736,8 @@ msgstr "apenas multisite"
730
  #: adminpages/advancedsettings.php:397
731
  #: classes/gateways/class.pmprogateway_stripe.php:636
732
  #: classes/gateways/class.pmprogateway_stripe.php:650
 
 
733
  msgid "Yes"
734
  msgstr "Sim"
735
 
@@ -1012,6 +1020,7 @@ msgstr "Código"
1012
  #: includes/privacy.php:186
1013
  #: includes/profile.php:495
1014
  #: adminpages/discountcodes.php:489
 
1015
  msgid "Start Date"
1016
  msgstr "Data de Início"
1017
 
@@ -1046,6 +1055,7 @@ msgstr "Data de Início"
1046
  #: classes/gateways/class.pmprogateway_stripe.php:1301
1047
  #: adminpages/discountcodes.php:507
1048
  #: classes/gateways/class.pmprogateway_stripe.php:1320
 
1049
  msgid "Expiration Date"
1050
  msgstr "Date de Expiração"
1051
 
@@ -1185,6 +1195,7 @@ msgstr "Quantidade a Faturar"
1185
  #: adminpages/discountcodes.php:612
1186
  #: adminpages/discountcodes.php:699
1187
  #: classes/gateways/class.pmprogateway_stripe.php:1363
 
1188
  msgid "Day(s)"
1189
  msgstr "Dia(s)"
1190
 
@@ -1218,6 +1229,7 @@ msgstr "Dia(s)"
1218
  #: adminpages/discountcodes.php:612
1219
  #: adminpages/discountcodes.php:699
1220
  #: classes/gateways/class.pmprogateway_stripe.php:1365
 
1221
  msgid "Month(s)"
1222
  msgstr "Mes(es)"
1223
 
@@ -1251,6 +1263,7 @@ msgstr "Mes(es)"
1251
  #: adminpages/discountcodes.php:612
1252
  #: adminpages/discountcodes.php:699
1253
  #: classes/gateways/class.pmprogateway_stripe.php:1364
 
1254
  msgid "Week(s)"
1255
  msgstr "Semana(s)"
1256
 
@@ -1284,6 +1297,7 @@ msgstr "Semana(s)"
1284
  #: adminpages/discountcodes.php:612
1285
  #: adminpages/discountcodes.php:699
1286
  #: classes/gateways/class.pmprogateway_stripe.php:1366
 
1287
  msgid "Year(s)"
1288
  msgstr "Ano(s)"
1289
 
@@ -1882,6 +1896,7 @@ msgstr "Detalhes de Faturamento"
1882
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1883
  #: adminpages/discountcodes.php:608
1884
  #: classes/gateways/class.pmprogateway_stripe.php:1497
 
1885
  msgid "per"
1886
  msgstr "por"
1887
 
@@ -2097,6 +2112,8 @@ msgstr "Salvar Nível"
2097
  #: pages/cancel.php:96
2098
  #: shortcodes/pmpro_account.php:106
2099
  #: adminpages/orders.php:968
 
 
2100
  msgid "Cancel"
2101
  msgstr "Cancelar"
2102
 
@@ -2773,6 +2790,7 @@ msgstr "ex: PayPal Express, PayPal Standard, Cartão de Crédito."
2773
  #: adminpages/orders.php:679
2774
  #: classes/gateways/class.pmprogateway_stripe.php:1284
2775
  #: classes/gateways/class.pmprogateway_stripe.php:1303
 
2776
  msgid "Card Type"
2777
  msgstr "Bandeira do Cartão"
2778
 
@@ -2853,6 +2871,7 @@ msgstr "Ano de Expiração"
2853
  #: adminpages/dashboard.php:294
2854
  #: adminpages/orders.php:742
2855
  #: adminpages/orders.php:1348
 
2856
  msgid "Status"
2857
  msgstr "Status"
2858
 
@@ -4274,6 +4293,7 @@ msgstr "Confirmação de assinatura no %s"
4274
  #: classes/class.pmproemail.php:769
4275
  #: classes/class.pmproemail.php:771
4276
  #: classes/gateways/class.pmprogateway_stripe.php:1333
 
4277
  msgid "Discount Code"
4278
  msgstr "Código de Desconto"
4279
 
@@ -4729,6 +4749,7 @@ msgstr "Para integrar completamente com o Braintree, assegure-se de apontar o se
4729
  #: pages/checkout.php:366
4730
  #: classes/gateways/class.pmprogateway_stripe.php:1263
4731
  #: classes/gateways/class.pmprogateway_stripe.php:1282
 
4732
  msgid "Payment Information"
4733
  msgstr "Informações de Pagamento"
4734
 
@@ -4753,6 +4774,7 @@ msgstr "Informações de Pagamento"
4753
  #: pages/checkout.php:367
4754
  #: classes/gateways/class.pmprogateway_stripe.php:1264
4755
  #: classes/gateways/class.pmprogateway_stripe.php:1283
 
4756
  #, php-format
4757
  msgid "We Accept %s"
4758
  msgstr "Aceitamos %s"
@@ -4783,6 +4805,7 @@ msgstr "Aceitamos %s"
4783
  #: pages/checkout.php:389
4784
  #: classes/gateways/class.pmprogateway_stripe.php:1297
4785
  #: classes/gateways/class.pmprogateway_stripe.php:1316
 
4786
  msgid "Card Number"
4787
  msgstr "Número do Cartão"
4788
 
@@ -4864,6 +4887,7 @@ msgstr "o que é isso?"
4864
  #: pages/checkout.php:432
4865
  #: classes/gateways/class.pmprogateway_stripe.php:1319
4866
  #: classes/gateways/class.pmprogateway_stripe.php:1338
 
4867
  msgid "Apply"
4868
  msgstr "Aplicar"
4869
 
@@ -5114,6 +5138,7 @@ msgstr ""
5114
  #: classes/gateways/class.pmprogateway_paypal.php:132
5115
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
5116
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
 
5117
  msgid "PayPal Settings"
5118
  msgstr "Configurações do PayPal"
5119
 
@@ -5135,6 +5160,7 @@ msgstr ""
5135
  #: classes/gateways/class.pmprogateway_paypal.php:153
5136
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
5137
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
 
5138
  msgid "Gateway Account Email"
5139
  msgstr "E-mail da conta do Gateway de Pagamento"
5140
 
@@ -5154,6 +5180,7 @@ msgstr "E-mail da conta do Gateway de Pagamento"
5154
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
5155
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
5156
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
 
5157
  msgid "API Username"
5158
  msgstr "API Username (Nome de Usuário no API)"
5159
 
@@ -5173,6 +5200,7 @@ msgstr "API Username (Nome de Usuário no API)"
5173
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
5174
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
5175
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
 
5176
  msgid "API Password"
5177
  msgstr "API Password (Senha no API)"
5178
 
@@ -5186,6 +5214,7 @@ msgstr "API Password (Senha no API)"
5186
  #: classes/gateways/class.pmprogateway_paypal.php:177
5187
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
5188
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
 
5189
  msgid "API Signature"
5190
  msgstr "API Signature (Assinatura no API)"
5191
 
@@ -5200,6 +5229,7 @@ msgstr "API Signature (Assinatura no API)"
5200
  #: classes/gateways/class.pmprogateway_paypal.php:196
5201
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
5202
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
 
5203
  msgid "IPN Handler URL"
5204
  msgstr "IPN Handler URL"
5205
 
@@ -5225,6 +5255,7 @@ msgstr ""
5225
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
5226
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
5227
  #: pages/checkout.php:218
 
5228
  msgid "Check Out with PayPal"
5229
  msgstr "Pagar pelo PayPal"
5230
 
@@ -5244,6 +5275,7 @@ msgstr "Pagar pelo PayPal"
5244
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
5245
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5246
  #: pages/checkout.php:526
 
5247
  msgid "Submit and Check Out"
5248
  msgstr "Fazer Checkout"
5249
 
@@ -5267,6 +5299,7 @@ msgstr "Fazer Checkout"
5267
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5268
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
5269
  #: pages/checkout.php:526
 
5270
  msgid "Submit and Confirm"
5271
  msgstr "Enviar e Confirmar"
5272
 
@@ -5288,6 +5321,7 @@ msgstr "Enviar e Confirmar"
5288
  #: classes/gateways/class.pmprogateway_paypal.php:716
5289
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
5290
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
 
5291
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
5292
  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."
5293
 
@@ -5301,6 +5335,7 @@ msgstr "Por favor, entre em contato com o site ou cancele sua subscrição pelo
5301
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
5302
  #: paid-memberships-pro.php:160
5303
  #: paid-memberships-pro.php:162
 
5304
  msgid "PayPal Express"
5305
  msgstr ""
5306
 
@@ -5312,6 +5347,7 @@ msgstr ""
5312
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
5313
  #: classes/gateways/class.pmprogateway_paypal.php:199
5314
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
 
5315
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
5316
  msgstr "Para integrar completamente con o Paypal, assegure-se de apontar o seu IPN Handler URL para"
5317
 
@@ -5333,6 +5369,8 @@ msgstr "Para integrar completamente con o Paypal, assegure-se de apontar o seu I
5333
  #: preheaders/checkout.php:823
5334
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
5335
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
 
 
5336
  msgid "The PayPal Token was lost."
5337
  msgstr "O Token do PayPal foi perdido."
5338
 
@@ -5370,6 +5408,7 @@ msgstr ""
5370
  #: classes/gateways/class.pmprogateway_stripe.php:252
5371
  #: paid-memberships-pro.php:159
5372
  #: paid-memberships-pro.php:161
 
5373
  msgid "Stripe"
5374
  msgstr ""
5375
 
@@ -5390,6 +5429,7 @@ msgstr "Configurações do Stripe"
5390
  #: classes/gateways/class.pmprogateway_stripe.php:539
5391
  #: classes/gateways/class.pmprogateway_stripe.php:551
5392
  #: classes/gateways/class.pmprogateway_stripe.php:570
 
5393
  msgid "Secret Key"
5394
  msgstr "Secret Key (Chave Secreta)"
5395
 
@@ -5403,6 +5443,7 @@ msgstr "Secret Key (Chave Secreta)"
5403
  #: classes/gateways/class.pmprogateway_stripe.php:523
5404
  #: classes/gateways/class.pmprogateway_stripe.php:535
5405
  #: classes/gateways/class.pmprogateway_stripe.php:554
 
5406
  msgid "Publishable Key"
5407
  msgstr "Publishable Key (Chave Publicável)"
5408
 
@@ -5416,6 +5457,7 @@ msgstr "Publishable Key (Chave Publicável)"
5416
  #: classes/gateways/class.pmprogateway_stripe.php:598
5417
  #: classes/gateways/class.pmprogateway_stripe.php:610
5418
  #: classes/gateways/class.pmprogateway_stripe.php:629
 
5419
  msgid "Show Billing Address Fields"
5420
  msgstr "Mostrar campos de endereço do faturamento"
5421
 
@@ -5428,6 +5470,7 @@ msgstr "Mostrar campos de endereço do faturamento"
5428
  #: classes/gateways/class.pmprogateway_stripe.php:607
5429
  #: classes/gateways/class.pmprogateway_stripe.php:619
5430
  #: classes/gateways/class.pmprogateway_stripe.php:638
 
5431
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
5432
  msgstr ""
5433
 
@@ -5450,6 +5493,7 @@ msgstr "Para integrar completamente com o Stripe, assegure-se de apontar o seu W
5450
  #: classes/gateways/class.pmprogateway_stripe.php:1379
5451
  #: classes/gateways/class.pmprogateway_stripe.php:1391
5452
  #: classes/gateways/class.pmprogateway_stripe.php:1410
 
5453
  msgid "Subscription Updates"
5454
  msgstr "Atualizações de subscrições"
5455
 
@@ -5461,6 +5505,7 @@ msgstr "Atualizações de subscrições"
5461
  #: classes/gateways/class.pmprogateway_stripe.php:1383
5462
  #: classes/gateways/class.pmprogateway_stripe.php:1395
5463
  #: classes/gateways/class.pmprogateway_stripe.php:1414
 
5464
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
5465
  msgstr ""
5466
 
@@ -5472,6 +5517,7 @@ msgstr ""
5472
  #: classes/gateways/class.pmprogateway_stripe.php:1385
5473
  #: classes/gateways/class.pmprogateway_stripe.php:1397
5474
  #: classes/gateways/class.pmprogateway_stripe.php:1416
 
5475
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
5476
  msgstr ""
5477
 
@@ -5490,6 +5536,7 @@ msgstr ""
5490
  #: pages/billing.php:425
5491
  #: classes/gateways/class.pmprogateway_stripe.php:1403
5492
  #: classes/gateways/class.pmprogateway_stripe.php:1422
 
5493
  msgid "Update"
5494
  msgstr "Atualizar"
5495
 
@@ -5501,6 +5548,7 @@ msgstr "Atualizar"
5501
  #: classes/gateways/class.pmprogateway_stripe.php:2480
5502
  #: classes/gateways/class.pmprogateway_stripe.php:2492
5503
  #: classes/gateways/class.pmprogateway_stripe.php:2514
 
5504
  msgid "Could not cancel the old subscription. Updates have not been processed."
5505
  msgstr "Não foi possível cancelar a assinatura antiga. Atualizações não foram processadas."
5506
 
@@ -5525,6 +5573,9 @@ msgstr "Não foi possível cancelar a assinatura antiga. Atualizações não for
5525
  #: classes/gateways/class.pmprogateway_stripe.php:2127
5526
  #: classes/gateways/class.pmprogateway_stripe.php:2132
5527
  #: classes/gateways/class.pmprogateway_stripe.php:2137
 
 
 
5528
  msgid "Error creating customer record with Stripe:"
5529
  msgstr "Erro ao criar o cliente no Stripe:"
5530
 
@@ -5536,6 +5587,8 @@ msgstr "Erro ao criar o cliente no Stripe:"
5536
  #: classes/gateways/class.pmprogateway_stripe.php:2182
5537
  #: classes/gateways/class.pmprogateway_stripe.php:2196
5538
  #: classes/gateways/class.pmprogateway_stripe.php:2201
 
 
5539
  msgid "Error getting subscription with Stripe:"
5540
  msgstr "Erro ao fazer subscrição com o Stripe:"
5541
 
@@ -5565,6 +5618,8 @@ msgstr "Erro ao fazer subscrição com o Stripe:"
5565
  #: classes/gateways/class.pmprogateway_stripe.php:2356
5566
  #: classes/gateways/class.pmprogateway_stripe.php:2373
5567
  #: classes/gateways/class.pmprogateway_stripe.php:2378
 
 
5568
  msgid "Error creating plan with Stripe:"
5569
  msgstr "Erro ao criar o plano no Stripe:"
5570
 
@@ -5589,6 +5644,8 @@ msgstr "Erro ao criar o plano no Stripe:"
5589
  #: classes/gateways/class.pmprogateway_stripe.php:2401
5590
  #: classes/gateways/class.pmprogateway_stripe.php:2409
5591
  #: classes/gateways/class.pmprogateway_stripe.php:2423
 
 
5592
  msgid "Error subscribing customer to plan with Stripe:"
5593
  msgstr "Erro ao associar cliente ao plano no Stripe:"
5594
 
@@ -5607,6 +5664,7 @@ msgstr "Erro ao associar cliente ao plano no Stripe:"
5607
  #: classes/gateways/class.pmprogateway_stripe.php:2632
5608
  #: classes/gateways/class.pmprogateway_stripe.php:2644
5609
  #: classes/gateways/class.pmprogateway_stripe.php:2666
 
5610
  msgid "Could not cancel old subscription."
5611
  msgstr "Não foi possível cancelar a assinatura antiga."
5612
 
@@ -5622,6 +5680,7 @@ msgstr "Não foi possível cancelar a assinatura antiga."
5622
  #: classes/gateways/class.pmprogateway_stripe.php:2648
5623
  #: classes/gateways/class.pmprogateway_stripe.php:2660
5624
  #: classes/gateways/class.pmprogateway_stripe.php:2682
 
5625
  msgid "Could not find the customer."
5626
  msgstr "Cliente não encontrado."
5627
 
@@ -6690,6 +6749,7 @@ msgstr "Sua chave de licença foi validada."
6690
 
6691
  #: includes/license.php:81
6692
  #: adminpages/license.php:43
 
6693
  msgid "Paid Memberships Pro Support License"
6694
  msgstr "Licença de suporte do Paid Memberships Pro"
6695
 
@@ -6709,6 +6769,7 @@ msgstr ""
6709
  #: adminpages/dashboard.php:174
6710
  #: adminpages/license.php:49
6711
  #: adminpages/dashboard.php:178
 
6712
  msgid "Your license is invalid or expired."
6713
  msgstr "Sua licença está inválida ou expirada."
6714
 
@@ -6719,6 +6780,7 @@ msgstr "<p><strong>Obrigado!</strong> Uma <strong>%s</strong> licença válida f
6719
 
6720
  #: includes/license.php:100
6721
  #: adminpages/license.php:59
 
6722
  msgid "Enter license key here..."
6723
  msgstr "Entre com a chave de licença aqui..."
6724
 
@@ -6921,6 +6983,7 @@ msgstr "sair"
6921
  #: adminpages/dashboard.php:224
6922
  #: adminpages/dashboard.php:292
6923
  #: adminpages/orders.php:1343
 
6924
  msgid "Level"
6925
  msgstr "Nível"
6926
 
@@ -6979,6 +7042,7 @@ msgstr "Os pagamentos recorrentes são controlados pelo Paypal. Por favor <a hre
6979
  #: includes/profile.php:747
6980
  #: pages/billing.php:164
6981
  #: pages/checkout.php:234
 
6982
  msgid "First Name"
6983
  msgstr "Nome"
6984
 
@@ -6996,6 +7060,7 @@ msgstr "Nome"
6996
  #: includes/profile.php:748
6997
  #: pages/billing.php:168
6998
  #: pages/checkout.php:238
 
6999
  msgid "Last Name"
7000
  msgstr "Sobrenome"
7001
 
@@ -8072,6 +8137,7 @@ msgstr "O cupom <strong>%s</strong> foi aplicado ao seu pedido."
8072
  #: services/authnet-silent-post.php:138
8073
  #: services/authnet-silent-post.php:141
8074
  #: services/authnet-silent-post.php:173
 
8075
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
8076
  msgstr "<p>A Authorize.net está revisando o seu pagamento.</p><p> Informações de pagamento da Authorize.net </p>"
8077
 
@@ -8138,6 +8204,8 @@ msgstr "Editar Perfil"
8138
  #: includes/profile.php:872
8139
  #: includes/profile.php:909
8140
  #: shortcodes/pmpro_account.php:195
 
 
8141
  msgid "Change Password"
8142
  msgstr "Trocar Senha"
8143
 
@@ -8233,6 +8301,7 @@ msgstr "cada"
8233
  #: adminpages/advancedsettings.php:316
8234
  #: includes/privacy.php:175
8235
  #: includes/profile.php:509
 
8236
  msgid "Never"
8237
  msgstr "Nunca"
8238
 
@@ -8573,6 +8642,7 @@ msgstr ""
8573
 
8574
  #: adminpages/admin_header.php:152
8575
  #: classes/gateways/class.pmprogateway_stripe.php:76
 
8576
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
8577
  msgstr ""
8578
 
@@ -8845,6 +8915,7 @@ msgstr ""
8845
  #: adminpages/dashboard.php:177
8846
  #: adminpages/license.php:51
8847
  #: adminpages/dashboard.php:181
 
8848
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
8849
  msgstr ""
8850
 
@@ -9281,18 +9352,23 @@ msgid "Discount Code Applied"
9281
  msgstr ""
9282
 
9283
  #: adminpages/license.php:47
 
9284
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
9285
  msgstr ""
9286
 
9287
  #: adminpages/license.php:49
 
 
9288
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
9289
  msgstr ""
9290
 
9291
  #: adminpages/license.php:61
 
9292
  msgid "Validate Key"
9293
  msgstr ""
9294
 
9295
  #: adminpages/license.php:95
 
9296
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
9297
  msgstr ""
9298
 
@@ -9807,6 +9883,7 @@ msgstr ""
9807
 
9808
  #: classes/gateways/class.pmprogateway_braintree.php:87
9809
  #: classes/gateways/class.pmprogateway_stripe.php:91
 
9810
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
9811
  msgstr ""
9812
 
@@ -10104,6 +10181,7 @@ msgid "Your order has been refused."
10104
  msgstr ""
10105
 
10106
  #: classes/gateways/class.pmprogateway_cybersource.php:922
 
10107
  msgid "Unknown error."
10108
  msgstr ""
10109
 
@@ -10118,23 +10196,28 @@ msgstr ""
10118
  #: classes/gateways/class.pmprogateway_paypal.php:146
10119
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
10120
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
 
10121
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
10122
  msgstr ""
10123
 
10124
  #: classes/gateways/class.pmprogateway_paypal.php:185
10125
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
 
10126
  msgid "Confirmation Step"
10127
  msgstr ""
10128
 
10129
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
 
10130
  msgid "Checkout was already processed."
10131
  msgstr ""
10132
 
10133
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
 
10134
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
10135
  msgstr ""
10136
 
10137
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
 
10138
  msgid "Error creating plan with PayPal."
10139
  msgstr ""
10140
 
@@ -10146,11 +10229,14 @@ msgstr ""
10146
  #: classes/gateways/class.pmprogateway_stripe.php:436
10147
  #: classes/gateways/class.pmprogateway_stripe.php:354
10148
  #: classes/gateways/class.pmprogateway_stripe.php:444
 
 
10149
  msgid "Stripe Connect Settings"
10150
  msgstr ""
10151
 
10152
  #: classes/gateways/class.pmprogateway_stripe.php:352
10153
  #: classes/gateways/class.pmprogateway_stripe.php:356
 
10154
  msgid "Live Mode:"
10155
  msgstr ""
10156
 
@@ -10158,6 +10244,8 @@ msgstr ""
10158
  #: classes/gateways/class.pmprogateway_stripe.php:440
10159
  #: classes/gateways/class.pmprogateway_stripe.php:358
10160
  #: classes/gateways/class.pmprogateway_stripe.php:448
 
 
10161
  msgid "Connected"
10162
  msgstr ""
10163
 
@@ -10165,6 +10253,8 @@ msgstr ""
10165
  #: classes/gateways/class.pmprogateway_stripe.php:442
10166
  #: classes/gateways/class.pmprogateway_stripe.php:362
10167
  #: classes/gateways/class.pmprogateway_stripe.php:452
 
 
10168
  msgid "Not Connected"
10169
  msgstr ""
10170
 
@@ -10172,11 +10262,14 @@ msgstr ""
10172
  #: classes/gateways/class.pmprogateway_stripe.php:449
10173
  #: classes/gateways/class.pmprogateway_stripe.php:369
10174
  #: classes/gateways/class.pmprogateway_stripe.php:459
 
 
10175
  msgid "Your site is using legacy API keys to authenticate with Stripe."
10176
  msgstr ""
10177
 
10178
  #: classes/gateways/class.pmprogateway_stripe.php:364
10179
  #: classes/gateways/class.pmprogateway_stripe.php:371
 
10180
  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."
10181
  msgstr ""
10182
 
@@ -10184,6 +10277,8 @@ msgstr ""
10184
  #: classes/gateways/class.pmprogateway_stripe.php:458
10185
  #: classes/gateways/class.pmprogateway_stripe.php:380
10186
  #: classes/gateways/class.pmprogateway_stripe.php:470
 
 
10187
  msgid "Stripe Connection:"
10188
  msgstr ""
10189
 
@@ -10191,11 +10286,14 @@ msgstr ""
10191
  #: classes/gateways/class.pmprogateway_stripe.php:482
10192
  #: classes/gateways/class.pmprogateway_stripe.php:396
10193
  #: classes/gateways/class.pmprogateway_stripe.php:494
 
 
10194
  msgid "Disconnect From Stripe"
10195
  msgstr ""
10196
 
10197
  #: classes/gateways/class.pmprogateway_stripe.php:389
10198
  #: classes/gateways/class.pmprogateway_stripe.php:397
 
10199
  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."
10200
  msgstr ""
10201
 
@@ -10203,16 +10301,20 @@ msgstr ""
10203
  #: classes/gateways/class.pmprogateway_stripe.php:496
10204
  #: classes/gateways/class.pmprogateway_stripe.php:409
10205
  #: classes/gateways/class.pmprogateway_stripe.php:508
 
 
10206
  msgid "Connect with Stripe"
10207
  msgstr ""
10208
 
10209
  #: classes/gateways/class.pmprogateway_stripe.php:408
10210
  #: classes/gateways/class.pmprogateway_stripe.php:416
 
10211
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
10212
  msgstr ""
10213
 
10214
  #: classes/gateways/class.pmprogateway_stripe.php:411
10215
  #: classes/gateways/class.pmprogateway_stripe.php:419
 
10216
  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."
10217
  msgstr ""
10218
 
@@ -10223,6 +10325,9 @@ msgstr ""
10223
  #: classes/gateways/class.pmprogateway_stripe.php:519
10224
  #: classes/gateways/class.pmprogateway_stripe.php:559
10225
  #: classes/gateways/class.pmprogateway_stripe.php:578
 
 
 
10226
  msgid "Webhook"
10227
  msgstr ""
10228
 
@@ -10233,32 +10338,40 @@ msgstr ""
10233
  #: classes/gateways/class.pmprogateway_stripe.php:523
10234
  #: classes/gateways/class.pmprogateway_stripe.php:594
10235
  #: classes/gateways/class.pmprogateway_stripe.php:613
 
 
 
10236
  msgid "Webhook URL"
10237
  msgstr ""
10238
 
10239
  #: classes/gateways/class.pmprogateway_stripe.php:438
10240
  #: classes/gateways/class.pmprogateway_stripe.php:446
 
10241
  msgid "Test Mode:"
10242
  msgstr ""
10243
 
10244
  #: classes/gateways/class.pmprogateway_stripe.php:450
10245
  #: classes/gateways/class.pmprogateway_stripe.php:461
 
10246
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
10247
  msgstr ""
10248
 
10249
  #: classes/gateways/class.pmprogateway_stripe.php:483
10250
  #: classes/gateways/class.pmprogateway_stripe.php:495
 
10251
  msgid "This will disconnect your site from Stripe in test mode only."
10252
  msgstr ""
10253
 
10254
  #: classes/gateways/class.pmprogateway_stripe.php:518
10255
  #: classes/gateways/class.pmprogateway_stripe.php:530
 
10256
  msgid "Stripe API Settings (Legacy)"
10257
  msgstr ""
10258
 
10259
  #: classes/gateways/class.pmprogateway_stripe.php:531
10260
  #: classes/gateways/class.pmprogateway_stripe.php:543
10261
  #: classes/gateways/class.pmprogateway_stripe.php:562
 
10262
  msgid "Your Publishable Key appears incorrect."
10263
  msgstr ""
10264
 
@@ -10268,24 +10381,29 @@ msgstr ""
10268
  #: classes/gateways/class.pmprogateway_stripe.php:587
10269
  #: classes/gateways/class.pmprogateway_stripe.php:582
10270
  #: classes/gateways/class.pmprogateway_stripe.php:606
 
 
10271
  msgid "Create Webhook"
10272
  msgstr ""
10273
 
10274
  #: classes/gateways/class.pmprogateway_stripe.php:557
10275
  #: classes/gateways/class.pmprogateway_stripe.php:569
10276
  #: classes/gateways/class.pmprogateway_stripe.php:588
 
10277
  msgid "A webhook is set up in Stripe, but it is disabled."
10278
  msgstr ""
10279
 
10280
  #: classes/gateways/class.pmprogateway_stripe.php:564
10281
  #: classes/gateways/class.pmprogateway_stripe.php:576
10282
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
10283
  msgid "A webhook is set up in Stripe, but it is using an old API version."
10284
  msgstr ""
10285
 
10286
  #: classes/gateways/class.pmprogateway_stripe.php:564
10287
  #: classes/gateways/class.pmprogateway_stripe.php:576
10288
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
10289
  msgid "Rebuild Webhook"
10290
  msgstr ""
10291
 
@@ -10298,12 +10416,16 @@ msgstr ""
10298
  #: classes/gateways/class.pmprogateway_stripe.php:601
10299
  #: classes/gateways/class.pmprogateway_stripe.php:741
10300
  #: classes/gateways/class.pmprogateway_stripe.php:857
 
 
 
10301
  msgid "Your webhook is enabled."
10302
  msgstr ""
10303
 
10304
  #: classes/gateways/class.pmprogateway_stripe.php:570
10305
  #: classes/gateways/class.pmprogateway_stripe.php:582
10306
  #: classes/gateways/class.pmprogateway_stripe.php:601
 
10307
  msgid "Disable Webhook"
10308
  msgstr ""
10309
 
@@ -10319,66 +10441,80 @@ msgstr ""
10319
  #: classes/gateways/class.pmprogateway_stripe.php:768
10320
  #: classes/gateways/class.pmprogateway_stripe.php:785
10321
  #: classes/gateways/class.pmprogateway_stripe.php:819
 
 
 
 
10322
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
10323
  msgstr ""
10324
 
10325
  #: classes/gateways/class.pmprogateway_stripe.php:589
10326
  #: classes/gateways/class.pmprogateway_stripe.php:601
10327
  #: classes/gateways/class.pmprogateway_stripe.php:620
 
10328
  msgid "Other Stripe Settings"
10329
  msgstr ""
10330
 
10331
  #: classes/gateways/class.pmprogateway_stripe.php:593
10332
  #: classes/gateways/class.pmprogateway_stripe.php:605
10333
  #: classes/gateways/class.pmprogateway_stripe.php:624
 
10334
  msgid "Stripe API Version"
10335
  msgstr ""
10336
 
10337
  #: classes/gateways/class.pmprogateway_stripe.php:612
10338
  #: classes/gateways/class.pmprogateway_stripe.php:624
10339
  #: classes/gateways/class.pmprogateway_stripe.php:643
 
10340
  msgid "Enable Payment Request Button"
10341
  msgstr ""
10342
 
10343
  #: classes/gateways/class.pmprogateway_stripe.php:630
10344
  #: classes/gateways/class.pmprogateway_stripe.php:642
10345
  #: classes/gateways/class.pmprogateway_stripe.php:661
 
10346
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
10347
  msgstr ""
10348
 
10349
  #: classes/gateways/class.pmprogateway_stripe.php:643
10350
  #: classes/gateways/class.pmprogateway_stripe.php:655
10351
  #: classes/gateways/class.pmprogateway_stripe.php:674
 
10352
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
10353
  msgstr ""
10354
 
10355
  #: classes/gateways/class.pmprogateway_stripe.php:645
10356
  #: classes/gateways/class.pmprogateway_stripe.php:657
10357
  #: classes/gateways/class.pmprogateway_stripe.php:676
 
10358
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
10359
  msgstr ""
10360
 
10361
  #: classes/gateways/class.pmprogateway_stripe.php:647
10362
  #: classes/gateways/class.pmprogateway_stripe.php:659
10363
  #: classes/gateways/class.pmprogateway_stripe.php:678
 
10364
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
10365
  msgstr ""
10366
 
10367
  #: classes/gateways/class.pmprogateway_stripe.php:649
10368
  #: classes/gateways/class.pmprogateway_stripe.php:661
10369
  #: classes/gateways/class.pmprogateway_stripe.php:680
 
10370
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
10371
  msgstr ""
10372
 
10373
  #: classes/gateways/class.pmprogateway_stripe.php:674
10374
  #: classes/gateways/class.pmprogateway_stripe.php:686
10375
  #: classes/gateways/class.pmprogateway_stripe.php:705
 
10376
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
10377
  msgstr ""
10378
 
10379
  #: classes/gateways/class.pmprogateway_stripe.php:695
10380
  #: classes/gateways/class.pmprogateway_stripe.php:707
10381
  #: classes/gateways/class.pmprogateway_stripe.php:726
 
10382
  msgid "Webhook creation failed. You might already have a webhook set up."
10383
  msgstr ""
10384
 
@@ -10388,36 +10524,43 @@ msgstr ""
10388
  #: classes/gateways/class.pmprogateway_stripe.php:847
10389
  #: classes/gateways/class.pmprogateway_stripe.php:792
10390
  #: classes/gateways/class.pmprogateway_stripe.php:866
 
 
10391
  msgid "There was an error deleting the webhook."
10392
  msgstr ""
10393
 
10394
  #: classes/gateways/class.pmprogateway_stripe.php:811
10395
  #: classes/gateways/class.pmprogateway_stripe.php:823
10396
  #: classes/gateways/class.pmprogateway_stripe.php:842
 
10397
  msgid "Webhook creation failed. Please refresh and try again."
10398
  msgstr ""
10399
 
10400
  #: classes/gateways/class.pmprogateway_stripe.php:867
10401
  #: classes/gateways/class.pmprogateway_stripe.php:879
10402
  #: classes/gateways/class.pmprogateway_stripe.php:898
 
10403
  msgid "Verification steps confirmed. Your payment is processing."
10404
  msgstr ""
10405
 
10406
  #: classes/gateways/class.pmprogateway_stripe.php:1262
10407
  #: classes/gateways/class.pmprogateway_stripe.php:1274
10408
  #: classes/gateways/class.pmprogateway_stripe.php:1293
 
10409
  msgid "Pay with Credit Card"
10410
  msgstr ""
10411
 
10412
  #: classes/gateways/class.pmprogateway_stripe.php:1296
10413
  #: classes/gateways/class.pmprogateway_stripe.php:1308
10414
  #: classes/gateways/class.pmprogateway_stripe.php:1327
 
10415
  msgid "CVC"
10416
  msgstr ""
10417
 
10418
  #: classes/gateways/class.pmprogateway_stripe.php:1374
10419
  #: classes/gateways/class.pmprogateway_stripe.php:1386
10420
  #: classes/gateways/class.pmprogateway_stripe.php:1405
 
10421
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
10422
  msgstr ""
10423
 
@@ -10433,6 +10576,10 @@ msgstr ""
10433
  #: classes/gateways/class.pmprogateway_stripe.php:2016
10434
  #: classes/gateways/class.pmprogateway_stripe.php:2029
10435
  #: classes/gateways/class.pmprogateway_stripe.php:2033
 
 
 
 
10436
  msgid "Error: %s"
10437
  msgstr ""
10438
 
@@ -10442,30 +10589,35 @@ msgstr ""
10442
  #: classes/gateways/class.pmprogateway_stripe.php:2834
10443
  #: classes/gateways/class.pmprogateway_stripe.php:2850
10444
  #: classes/gateways/class.pmprogateway_stripe.php:2856
 
10445
  msgid "Error: "
10446
  msgstr ""
10447
 
10448
  #: classes/gateways/class.pmprogateway_stripe.php:2836
10449
  #: classes/gateways/class.pmprogateway_stripe.php:2848
10450
  #: classes/gateways/class.pmprogateway_stripe.php:2870
 
10451
  msgid "Error: Unkown error while refunding charge #%s"
10452
  msgstr ""
10453
 
10454
  #: classes/gateways/class.pmprogateway_stripe.php:3330
10455
  #: classes/gateways/class.pmprogateway_stripe.php:3342
10456
  #: classes/gateways/class.pmprogateway_stripe.php:3364
 
10457
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
10458
  msgstr ""
10459
 
10460
  #: classes/gateways/class.pmprogateway_stripe.php:3347
10461
  #: classes/gateways/class.pmprogateway_stripe.php:3359
10462
  #: classes/gateways/class.pmprogateway_stripe.php:3381
 
10463
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
10464
  msgstr ""
10465
 
10466
  #: classes/gateways/class.pmprogateway_stripe.php:3533
10467
  #: classes/gateways/class.pmprogateway_stripe.php:3545
10468
  #: classes/gateways/class.pmprogateway_stripe.php:3567
 
10469
  msgid "Invalid response from the Stripe Connect server."
10470
  msgstr ""
10471
 
@@ -10473,6 +10625,7 @@ msgstr ""
10473
  #: classes/gateways/class.pmprogateway_stripe.php:3561
10474
  #: classes/gateways/class.pmprogateway_stripe.php:3573
10475
  #: classes/gateways/class.pmprogateway_stripe.php:3595
 
10476
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
10477
  msgstr ""
10478
 
@@ -10480,30 +10633,35 @@ msgstr ""
10480
  #: classes/gateways/class.pmprogateway_stripe.php:3597
10481
  #: classes/gateways/class.pmprogateway_stripe.php:3609
10482
  #: classes/gateways/class.pmprogateway_stripe.php:3631
 
10483
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
10484
  msgstr ""
10485
 
10486
  #: classes/gateways/class.pmprogateway_stripe.php:3768
10487
  #: classes/gateways/class.pmprogateway_stripe.php:3780
10488
  #: classes/gateways/class.pmprogateway_stripe.php:3802
 
10489
  msgid "Last webhook received at"
10490
  msgstr ""
10491
 
10492
  #: classes/gateways/class.pmprogateway_stripe.php:3770
10493
  #: classes/gateways/class.pmprogateway_stripe.php:3782
10494
  #: classes/gateways/class.pmprogateway_stripe.php:3804
 
10495
  msgid "No webhooks have been received."
10496
  msgstr ""
10497
 
10498
  #: classes/gateways/class.pmprogateway_stripe.php:3774
10499
  #: classes/gateways/class.pmprogateway_stripe.php:3786
10500
  #: classes/gateways/class.pmprogateway_stripe.php:3808
 
10501
  msgid "Your webhook may not be working correctly."
10502
  msgstr ""
10503
 
10504
  #: classes/gateways/class.pmprogateway_stripe.php:3776
10505
  #: classes/gateways/class.pmprogateway_stripe.php:3788
10506
  #: classes/gateways/class.pmprogateway_stripe.php:3810
 
10507
  msgid "Click here for info on setting up your webhook with Stripe."
10508
  msgstr ""
10509
 
@@ -12608,11 +12766,13 @@ msgstr ""
12608
 
12609
  #: includes/login.php:429
12610
  #: includes/profile.php:843
 
12611
  msgid "New passwords do not match."
12612
  msgstr ""
12613
 
12614
  #: includes/login.php:433
12615
  #: includes/profile.php:839
 
12616
  msgid "Please complete all fields."
12617
  msgstr ""
12618
 
@@ -12642,17 +12802,21 @@ msgstr ""
12642
 
12643
  #: includes/login.php:688
12644
  #: includes/profile.php:891
 
12645
  msgid "New Password"
12646
  msgstr ""
12647
 
12648
  #: includes/login.php:690
12649
  #: includes/profile.php:894
12650
  #: includes/scripts.php:86
 
 
12651
  msgid "Strength Indicator"
12652
  msgstr ""
12653
 
12654
  #: includes/login.php:694
12655
  #: includes/profile.php:898
 
12656
  msgid "Confirm New Password"
12657
  msgstr ""
12658
 
@@ -12749,21 +12913,25 @@ msgstr ""
12749
  #: includes/privacy.php:182
12750
  #: includes/profile.php:425
12751
  #: includes/profile.php:493
 
12752
  msgid "Level ID"
12753
  msgstr ""
12754
 
12755
  #: includes/privacy.php:190
12756
  #: includes/profile.php:496
 
12757
  msgid "Date Modified"
12758
  msgstr ""
12759
 
12760
  #: includes/privacy.php:194
12761
  #: includes/profile.php:497
 
12762
  msgid "End Date"
12763
  msgstr ""
12764
 
12765
  #: includes/privacy.php:198
12766
  #: includes/profile.php:498
 
12767
  msgid "Level Cost"
12768
  msgstr ""
12769
 
@@ -12862,68 +13030,85 @@ msgid "Membership Levels History"
12862
  msgstr ""
12863
 
12864
  #: includes/profile.php:485
 
12865
  msgid "No membership orders found."
12866
  msgstr ""
12867
 
12868
  #: includes/profile.php:537
 
12869
  msgid "No membership history found."
12870
  msgstr ""
12871
 
12872
  #: includes/profile.php:644
 
12873
  msgid "Log in to edit your profile."
12874
  msgstr ""
12875
 
12876
  #: includes/profile.php:679
 
12877
  msgid "Please enter a display name."
12878
  msgstr ""
12879
 
12880
  #: includes/profile.php:689
 
12881
  msgid "Please enter an email address."
12882
  msgstr ""
12883
 
12884
  #: includes/profile.php:691
 
12885
  msgid "The email address isn&#8217;t correct."
12886
  msgstr ""
12887
 
12888
  #: includes/profile.php:695
 
12889
  msgid "This email is already registered, please choose another one."
12890
  msgstr ""
12891
 
12892
  #: includes/profile.php:722
 
12893
  msgid "Your profile has been updated."
12894
  msgstr ""
12895
 
12896
  #: includes/profile.php:749
 
12897
  msgid "Display name publicly as"
12898
  msgstr ""
12899
 
12900
  #: includes/profile.php:762
 
12901
  msgid "Site administrators must use the WordPress dashboard to update their email address."
12902
  msgstr ""
12903
 
12904
  #: includes/profile.php:785
 
12905
  msgid "Update Profile"
12906
  msgstr ""
12907
 
12908
  #: includes/profile.php:841
 
12909
  msgid "Please enter your current password."
12910
  msgstr ""
12911
 
12912
  #: includes/profile.php:845
 
12913
  msgid "Your current password is incorrect."
12914
  msgstr ""
12915
 
12916
  #: includes/profile.php:856
 
12917
  msgid "Your password has been updated."
12918
  msgstr ""
12919
 
12920
  #: includes/profile.php:886
 
12921
  msgid "Current Password"
12922
  msgstr ""
12923
 
12924
  #: includes/profile.php:888
12925
  #: includes/profile.php:893
12926
  #: includes/profile.php:900
 
 
12927
  msgid "Required Field"
12928
  msgstr ""
12929
 
@@ -13020,10 +13205,12 @@ msgid "That email address is already in use. Please log in, or use a different e
13020
  msgstr ""
13021
 
13022
  #: services/braintree-webhook.php:425
 
13023
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
13024
  msgstr ""
13025
 
13026
  #: services/braintree-webhook.php:427
 
13027
  msgid "A member's Braintree subscription has expired at %s"
13028
  msgstr ""
13029
 
@@ -13342,16 +13529,22 @@ msgstr ""
13342
 
13343
  #: classes/gateways/class.pmprogateway_stripe.php:360
13344
  #: classes/gateways/class.pmprogateway_stripe.php:450
 
 
13345
  msgid "Connected with Legacy Keys"
13346
  msgstr ""
13347
 
13348
  #: classes/gateways/class.pmprogateway_stripe.php:370
13349
  #: classes/gateways/class.pmprogateway_stripe.php:460
 
 
13350
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
13351
  msgstr ""
13352
 
13353
  #: classes/gateways/class.pmprogateway_stripe.php:372
13354
  #: classes/gateways/class.pmprogateway_stripe.php:462
 
 
13355
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
13356
  msgstr ""
13357
 
@@ -13408,9 +13601,45 @@ msgid "missing"
13408
  msgstr ""
13409
 
13410
  #: classes/gateways/class.pmprogateway_stripe.php:533
 
13411
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
13412
  msgstr ""
13413
 
13414
  #: classes/gateways/class.pmprogateway_stripe.php:534
 
13415
  msgid "Click here to use the legacy API settings."
13416
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.3\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-10-11T14:00:53+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
261
  #: adminpages/orders.php:1544
262
  #: adminpages/orders.php:1554
263
  #: adminpages/orders.php:1553
264
+ #: includes/profile.php:520
265
+ #: includes/profile.php:521
266
+ #: includes/profile.php:522
267
  msgid "N/A"
268
  msgstr "N/A"
269
 
447
  #: adminpages/orders.php:391
448
  #: adminpages/orders.php:1445
449
  #: adminpages/orders.php:1448
450
+ #: includes/profile.php:762
451
  msgid "Email"
452
  msgstr "E-mail"
453
 
636
  #: adminpages/advancedsettings.php:479
637
  #: classes/gateways/class.pmprogateway_stripe.php:634
638
  #: classes/gateways/class.pmprogateway_stripe.php:648
639
+ #: classes/gateways/class.pmprogateway_stripe.php:640
640
+ #: classes/gateways/class.pmprogateway_stripe.php:654
641
  msgid "No"
642
  msgstr "Não"
643
 
736
  #: adminpages/advancedsettings.php:397
737
  #: classes/gateways/class.pmprogateway_stripe.php:636
738
  #: classes/gateways/class.pmprogateway_stripe.php:650
739
+ #: classes/gateways/class.pmprogateway_stripe.php:642
740
+ #: classes/gateways/class.pmprogateway_stripe.php:656
741
  msgid "Yes"
742
  msgstr "Sim"
743
 
1020
  #: includes/privacy.php:186
1021
  #: includes/profile.php:495
1022
  #: adminpages/discountcodes.php:489
1023
+ #: includes/profile.php:501
1024
  msgid "Start Date"
1025
  msgstr "Data de Início"
1026
 
1055
  #: classes/gateways/class.pmprogateway_stripe.php:1301
1056
  #: adminpages/discountcodes.php:507
1057
  #: classes/gateways/class.pmprogateway_stripe.php:1320
1058
+ #: classes/gateways/class.pmprogateway_stripe.php:1326
1059
  msgid "Expiration Date"
1060
  msgstr "Date de Expiração"
1061
 
1195
  #: adminpages/discountcodes.php:612
1196
  #: adminpages/discountcodes.php:699
1197
  #: classes/gateways/class.pmprogateway_stripe.php:1363
1198
+ #: classes/gateways/class.pmprogateway_stripe.php:1369
1199
  msgid "Day(s)"
1200
  msgstr "Dia(s)"
1201
 
1229
  #: adminpages/discountcodes.php:612
1230
  #: adminpages/discountcodes.php:699
1231
  #: classes/gateways/class.pmprogateway_stripe.php:1365
1232
+ #: classes/gateways/class.pmprogateway_stripe.php:1371
1233
  msgid "Month(s)"
1234
  msgstr "Mes(es)"
1235
 
1263
  #: adminpages/discountcodes.php:612
1264
  #: adminpages/discountcodes.php:699
1265
  #: classes/gateways/class.pmprogateway_stripe.php:1364
1266
+ #: classes/gateways/class.pmprogateway_stripe.php:1370
1267
  msgid "Week(s)"
1268
  msgstr "Semana(s)"
1269
 
1297
  #: adminpages/discountcodes.php:612
1298
  #: adminpages/discountcodes.php:699
1299
  #: classes/gateways/class.pmprogateway_stripe.php:1366
1300
+ #: classes/gateways/class.pmprogateway_stripe.php:1372
1301
  msgid "Year(s)"
1302
  msgstr "Ano(s)"
1303
 
1896
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1897
  #: adminpages/discountcodes.php:608
1898
  #: classes/gateways/class.pmprogateway_stripe.php:1497
1899
+ #: classes/gateways/class.pmprogateway_stripe.php:1503
1900
  msgid "per"
1901
  msgstr "por"
1902
 
2112
  #: pages/cancel.php:96
2113
  #: shortcodes/pmpro_account.php:106
2114
  #: adminpages/orders.php:968
2115
+ #: includes/profile.php:798
2116
+ #: includes/profile.php:922
2117
  msgid "Cancel"
2118
  msgstr "Cancelar"
2119
 
2790
  #: adminpages/orders.php:679
2791
  #: classes/gateways/class.pmprogateway_stripe.php:1284
2792
  #: classes/gateways/class.pmprogateway_stripe.php:1303
2793
+ #: classes/gateways/class.pmprogateway_stripe.php:1309
2794
  msgid "Card Type"
2795
  msgstr "Bandeira do Cartão"
2796
 
2871
  #: adminpages/dashboard.php:294
2872
  #: adminpages/orders.php:742
2873
  #: adminpages/orders.php:1348
2874
+ #: includes/profile.php:505
2875
  msgid "Status"
2876
  msgstr "Status"
2877
 
4293
  #: classes/class.pmproemail.php:769
4294
  #: classes/class.pmproemail.php:771
4295
  #: classes/gateways/class.pmprogateway_stripe.php:1333
4296
+ #: classes/gateways/class.pmprogateway_stripe.php:1339
4297
  msgid "Discount Code"
4298
  msgstr "Código de Desconto"
4299
 
4749
  #: pages/checkout.php:366
4750
  #: classes/gateways/class.pmprogateway_stripe.php:1263
4751
  #: classes/gateways/class.pmprogateway_stripe.php:1282
4752
+ #: classes/gateways/class.pmprogateway_stripe.php:1288
4753
  msgid "Payment Information"
4754
  msgstr "Informações de Pagamento"
4755
 
4774
  #: pages/checkout.php:367
4775
  #: classes/gateways/class.pmprogateway_stripe.php:1264
4776
  #: classes/gateways/class.pmprogateway_stripe.php:1283
4777
+ #: classes/gateways/class.pmprogateway_stripe.php:1289
4778
  #, php-format
4779
  msgid "We Accept %s"
4780
  msgstr "Aceitamos %s"
4805
  #: pages/checkout.php:389
4806
  #: classes/gateways/class.pmprogateway_stripe.php:1297
4807
  #: classes/gateways/class.pmprogateway_stripe.php:1316
4808
+ #: classes/gateways/class.pmprogateway_stripe.php:1322
4809
  msgid "Card Number"
4810
  msgstr "Número do Cartão"
4811
 
4887
  #: pages/checkout.php:432
4888
  #: classes/gateways/class.pmprogateway_stripe.php:1319
4889
  #: classes/gateways/class.pmprogateway_stripe.php:1338
4890
+ #: classes/gateways/class.pmprogateway_stripe.php:1344
4891
  msgid "Apply"
4892
  msgstr "Aplicar"
4893
 
5138
  #: classes/gateways/class.pmprogateway_paypal.php:132
5139
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
5140
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
5141
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:151
5142
  msgid "PayPal Settings"
5143
  msgstr "Configurações do PayPal"
5144
 
5160
  #: classes/gateways/class.pmprogateway_paypal.php:153
5161
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
5162
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
5163
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:172
5164
  msgid "Gateway Account Email"
5165
  msgstr "E-mail da conta do Gateway de Pagamento"
5166
 
5180
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
5181
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
5182
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
5183
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:180
5184
  msgid "API Username"
5185
  msgstr "API Username (Nome de Usuário no API)"
5186
 
5200
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
5201
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
5202
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
5203
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:188
5204
  msgid "API Password"
5205
  msgstr "API Password (Senha no API)"
5206
 
5214
  #: classes/gateways/class.pmprogateway_paypal.php:177
5215
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
5216
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
5217
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:196
5218
  msgid "API Signature"
5219
  msgstr "API Signature (Assinatura no API)"
5220
 
5229
  #: classes/gateways/class.pmprogateway_paypal.php:196
5230
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
5231
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
5232
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:215
5233
  msgid "IPN Handler URL"
5234
  msgstr "IPN Handler URL"
5235
 
5255
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
5256
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
5257
  #: pages/checkout.php:218
5258
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:498
5259
  msgid "Check Out with PayPal"
5260
  msgstr "Pagar pelo PayPal"
5261
 
5275
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
5276
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5277
  #: pages/checkout.php:526
5278
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
5279
  msgid "Submit and Check Out"
5280
  msgstr "Fazer Checkout"
5281
 
5299
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5300
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
5301
  #: pages/checkout.php:526
5302
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
5303
  msgid "Submit and Confirm"
5304
  msgstr "Enviar e Confirmar"
5305
 
5321
  #: classes/gateways/class.pmprogateway_paypal.php:716
5322
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
5323
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
5324
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:841
5325
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
5326
  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."
5327
 
5335
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
5336
  #: paid-memberships-pro.php:160
5337
  #: paid-memberships-pro.php:162
5338
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:94
5339
  msgid "PayPal Express"
5340
  msgstr ""
5341
 
5347
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
5348
  #: classes/gateways/class.pmprogateway_paypal.php:199
5349
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
5350
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:218
5351
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
5352
  msgstr "Para integrar completamente con o Paypal, assegure-se de apontar o seu IPN Handler URL para"
5353
 
5369
  #: preheaders/checkout.php:823
5370
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
5371
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
5372
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:352
5373
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:411
5374
  msgid "The PayPal Token was lost."
5375
  msgstr "O Token do PayPal foi perdido."
5376
 
5408
  #: classes/gateways/class.pmprogateway_stripe.php:252
5409
  #: paid-memberships-pro.php:159
5410
  #: paid-memberships-pro.php:161
5411
+ #: classes/gateways/class.pmprogateway_stripe.php:258
5412
  msgid "Stripe"
5413
  msgstr ""
5414
 
5429
  #: classes/gateways/class.pmprogateway_stripe.php:539
5430
  #: classes/gateways/class.pmprogateway_stripe.php:551
5431
  #: classes/gateways/class.pmprogateway_stripe.php:570
5432
+ #: classes/gateways/class.pmprogateway_stripe.php:576
5433
  msgid "Secret Key"
5434
  msgstr "Secret Key (Chave Secreta)"
5435
 
5443
  #: classes/gateways/class.pmprogateway_stripe.php:523
5444
  #: classes/gateways/class.pmprogateway_stripe.php:535
5445
  #: classes/gateways/class.pmprogateway_stripe.php:554
5446
+ #: classes/gateways/class.pmprogateway_stripe.php:560
5447
  msgid "Publishable Key"
5448
  msgstr "Publishable Key (Chave Publicável)"
5449
 
5457
  #: classes/gateways/class.pmprogateway_stripe.php:598
5458
  #: classes/gateways/class.pmprogateway_stripe.php:610
5459
  #: classes/gateways/class.pmprogateway_stripe.php:629
5460
+ #: classes/gateways/class.pmprogateway_stripe.php:635
5461
  msgid "Show Billing Address Fields"
5462
  msgstr "Mostrar campos de endereço do faturamento"
5463
 
5470
  #: classes/gateways/class.pmprogateway_stripe.php:607
5471
  #: classes/gateways/class.pmprogateway_stripe.php:619
5472
  #: classes/gateways/class.pmprogateway_stripe.php:638
5473
+ #: classes/gateways/class.pmprogateway_stripe.php:644
5474
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
5475
  msgstr ""
5476
 
5493
  #: classes/gateways/class.pmprogateway_stripe.php:1379
5494
  #: classes/gateways/class.pmprogateway_stripe.php:1391
5495
  #: classes/gateways/class.pmprogateway_stripe.php:1410
5496
+ #: classes/gateways/class.pmprogateway_stripe.php:1416
5497
  msgid "Subscription Updates"
5498
  msgstr "Atualizações de subscrições"
5499
 
5505
  #: classes/gateways/class.pmprogateway_stripe.php:1383
5506
  #: classes/gateways/class.pmprogateway_stripe.php:1395
5507
  #: classes/gateways/class.pmprogateway_stripe.php:1414
5508
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
5509
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
5510
  msgstr ""
5511
 
5517
  #: classes/gateways/class.pmprogateway_stripe.php:1385
5518
  #: classes/gateways/class.pmprogateway_stripe.php:1397
5519
  #: classes/gateways/class.pmprogateway_stripe.php:1416
5520
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
5521
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
5522
  msgstr ""
5523
 
5536
  #: pages/billing.php:425
5537
  #: classes/gateways/class.pmprogateway_stripe.php:1403
5538
  #: classes/gateways/class.pmprogateway_stripe.php:1422
5539
+ #: classes/gateways/class.pmprogateway_stripe.php:1428
5540
  msgid "Update"
5541
  msgstr "Atualizar"
5542
 
5548
  #: classes/gateways/class.pmprogateway_stripe.php:2480
5549
  #: classes/gateways/class.pmprogateway_stripe.php:2492
5550
  #: classes/gateways/class.pmprogateway_stripe.php:2514
5551
+ #: classes/gateways/class.pmprogateway_stripe.php:2520
5552
  msgid "Could not cancel the old subscription. Updates have not been processed."
5553
  msgstr "Não foi possível cancelar a assinatura antiga. Atualizações não foram processadas."
5554
 
5573
  #: classes/gateways/class.pmprogateway_stripe.php:2127
5574
  #: classes/gateways/class.pmprogateway_stripe.php:2132
5575
  #: classes/gateways/class.pmprogateway_stripe.php:2137
5576
+ #: classes/gateways/class.pmprogateway_stripe.php:2133
5577
+ #: classes/gateways/class.pmprogateway_stripe.php:2138
5578
+ #: classes/gateways/class.pmprogateway_stripe.php:2143
5579
  msgid "Error creating customer record with Stripe:"
5580
  msgstr "Erro ao criar o cliente no Stripe:"
5581
 
5587
  #: classes/gateways/class.pmprogateway_stripe.php:2182
5588
  #: classes/gateways/class.pmprogateway_stripe.php:2196
5589
  #: classes/gateways/class.pmprogateway_stripe.php:2201
5590
+ #: classes/gateways/class.pmprogateway_stripe.php:2202
5591
+ #: classes/gateways/class.pmprogateway_stripe.php:2207
5592
  msgid "Error getting subscription with Stripe:"
5593
  msgstr "Erro ao fazer subscrição com o Stripe:"
5594
 
5618
  #: classes/gateways/class.pmprogateway_stripe.php:2356
5619
  #: classes/gateways/class.pmprogateway_stripe.php:2373
5620
  #: classes/gateways/class.pmprogateway_stripe.php:2378
5621
+ #: classes/gateways/class.pmprogateway_stripe.php:2379
5622
+ #: classes/gateways/class.pmprogateway_stripe.php:2384
5623
  msgid "Error creating plan with Stripe:"
5624
  msgstr "Erro ao criar o plano no Stripe:"
5625
 
5644
  #: classes/gateways/class.pmprogateway_stripe.php:2401
5645
  #: classes/gateways/class.pmprogateway_stripe.php:2409
5646
  #: classes/gateways/class.pmprogateway_stripe.php:2423
5647
+ #: classes/gateways/class.pmprogateway_stripe.php:2415
5648
+ #: classes/gateways/class.pmprogateway_stripe.php:2429
5649
  msgid "Error subscribing customer to plan with Stripe:"
5650
  msgstr "Erro ao associar cliente ao plano no Stripe:"
5651
 
5664
  #: classes/gateways/class.pmprogateway_stripe.php:2632
5665
  #: classes/gateways/class.pmprogateway_stripe.php:2644
5666
  #: classes/gateways/class.pmprogateway_stripe.php:2666
5667
+ #: classes/gateways/class.pmprogateway_stripe.php:2672
5668
  msgid "Could not cancel old subscription."
5669
  msgstr "Não foi possível cancelar a assinatura antiga."
5670
 
5680
  #: classes/gateways/class.pmprogateway_stripe.php:2648
5681
  #: classes/gateways/class.pmprogateway_stripe.php:2660
5682
  #: classes/gateways/class.pmprogateway_stripe.php:2682
5683
+ #: classes/gateways/class.pmprogateway_stripe.php:2688
5684
  msgid "Could not find the customer."
5685
  msgstr "Cliente não encontrado."
5686
 
6749
 
6750
  #: includes/license.php:81
6751
  #: adminpages/license.php:43
6752
+ #: adminpages/license.php:33
6753
  msgid "Paid Memberships Pro Support License"
6754
  msgstr "Licença de suporte do Paid Memberships Pro"
6755
 
6769
  #: adminpages/dashboard.php:174
6770
  #: adminpages/license.php:49
6771
  #: adminpages/dashboard.php:178
6772
+ #: adminpages/license.php:41
6773
  msgid "Your license is invalid or expired."
6774
  msgstr "Sua licença está inválida ou expirada."
6775
 
6780
 
6781
  #: includes/license.php:100
6782
  #: adminpages/license.php:59
6783
+ #: adminpages/license.php:51
6784
  msgid "Enter license key here..."
6785
  msgstr "Entre com a chave de licença aqui..."
6786
 
6983
  #: adminpages/dashboard.php:224
6984
  #: adminpages/dashboard.php:292
6985
  #: adminpages/orders.php:1343
6986
+ #: includes/profile.php:500
6987
  msgid "Level"
6988
  msgstr "Nível"
6989
 
7042
  #: includes/profile.php:747
7043
  #: pages/billing.php:164
7044
  #: pages/checkout.php:234
7045
+ #: includes/profile.php:759
7046
  msgid "First Name"
7047
  msgstr "Nome"
7048
 
7060
  #: includes/profile.php:748
7061
  #: pages/billing.php:168
7062
  #: pages/checkout.php:238
7063
+ #: includes/profile.php:760
7064
  msgid "Last Name"
7065
  msgstr "Sobrenome"
7066
 
8137
  #: services/authnet-silent-post.php:138
8138
  #: services/authnet-silent-post.php:141
8139
  #: services/authnet-silent-post.php:173
8140
+ #: services/authnet-silent-post.php:176
8141
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
8142
  msgstr "<p>A Authorize.net está revisando o seu pagamento.</p><p> Informações de pagamento da Authorize.net </p>"
8143
 
8204
  #: includes/profile.php:872
8205
  #: includes/profile.php:909
8206
  #: shortcodes/pmpro_account.php:195
8207
+ #: includes/profile.php:884
8208
+ #: includes/profile.php:921
8209
  msgid "Change Password"
8210
  msgstr "Trocar Senha"
8211
 
8301
  #: adminpages/advancedsettings.php:316
8302
  #: includes/privacy.php:175
8303
  #: includes/profile.php:509
8304
+ #: includes/profile.php:515
8305
  msgid "Never"
8306
  msgstr "Nunca"
8307
 
8642
 
8643
  #: adminpages/admin_header.php:152
8644
  #: classes/gateways/class.pmprogateway_stripe.php:76
8645
+ #: classes/gateways/class.pmprogateway_stripe.php:82
8646
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
8647
  msgstr ""
8648
 
8915
  #: adminpages/dashboard.php:177
8916
  #: adminpages/license.php:51
8917
  #: adminpages/dashboard.php:181
8918
+ #: adminpages/license.php:43
8919
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
8920
  msgstr ""
8921
 
9352
  msgstr ""
9353
 
9354
  #: adminpages/license.php:47
9355
+ #: adminpages/license.php:39
9356
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
9357
  msgstr ""
9358
 
9359
  #: adminpages/license.php:49
9360
+ #: adminpages/license.php:37
9361
+ #: adminpages/license.php:41
9362
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
9363
  msgstr ""
9364
 
9365
  #: adminpages/license.php:61
9366
+ #: adminpages/license.php:53
9367
  msgid "Validate Key"
9368
  msgstr ""
9369
 
9370
  #: adminpages/license.php:95
9371
+ #: adminpages/license.php:87
9372
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
9373
  msgstr ""
9374
 
9883
 
9884
  #: classes/gateways/class.pmprogateway_braintree.php:87
9885
  #: classes/gateways/class.pmprogateway_stripe.php:91
9886
+ #: classes/gateways/class.pmprogateway_stripe.php:97
9887
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
9888
  msgstr ""
9889
 
10181
  msgstr ""
10182
 
10183
  #: classes/gateways/class.pmprogateway_cybersource.php:922
10184
+ #: includes/license.php:159
10185
  msgid "Unknown error."
10186
  msgstr ""
10187
 
10196
  #: classes/gateways/class.pmprogateway_paypal.php:146
10197
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
10198
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
10199
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:165
10200
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
10201
  msgstr ""
10202
 
10203
  #: classes/gateways/class.pmprogateway_paypal.php:185
10204
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
10205
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:204
10206
  msgid "Confirmation Step"
10207
  msgstr ""
10208
 
10209
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
10210
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:356
10211
  msgid "Checkout was already processed."
10212
  msgstr ""
10213
 
10214
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
10215
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:791
10216
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
10217
  msgstr ""
10218
 
10219
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
10220
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:792
10221
  msgid "Error creating plan with PayPal."
10222
  msgstr ""
10223
 
10229
  #: classes/gateways/class.pmprogateway_stripe.php:436
10230
  #: classes/gateways/class.pmprogateway_stripe.php:354
10231
  #: classes/gateways/class.pmprogateway_stripe.php:444
10232
+ #: classes/gateways/class.pmprogateway_stripe.php:360
10233
+ #: classes/gateways/class.pmprogateway_stripe.php:450
10234
  msgid "Stripe Connect Settings"
10235
  msgstr ""
10236
 
10237
  #: classes/gateways/class.pmprogateway_stripe.php:352
10238
  #: classes/gateways/class.pmprogateway_stripe.php:356
10239
+ #: classes/gateways/class.pmprogateway_stripe.php:362
10240
  msgid "Live Mode:"
10241
  msgstr ""
10242
 
10244
  #: classes/gateways/class.pmprogateway_stripe.php:440
10245
  #: classes/gateways/class.pmprogateway_stripe.php:358
10246
  #: classes/gateways/class.pmprogateway_stripe.php:448
10247
+ #: classes/gateways/class.pmprogateway_stripe.php:364
10248
+ #: classes/gateways/class.pmprogateway_stripe.php:454
10249
  msgid "Connected"
10250
  msgstr ""
10251
 
10253
  #: classes/gateways/class.pmprogateway_stripe.php:442
10254
  #: classes/gateways/class.pmprogateway_stripe.php:362
10255
  #: classes/gateways/class.pmprogateway_stripe.php:452
10256
+ #: classes/gateways/class.pmprogateway_stripe.php:368
10257
+ #: classes/gateways/class.pmprogateway_stripe.php:458
10258
  msgid "Not Connected"
10259
  msgstr ""
10260
 
10262
  #: classes/gateways/class.pmprogateway_stripe.php:449
10263
  #: classes/gateways/class.pmprogateway_stripe.php:369
10264
  #: classes/gateways/class.pmprogateway_stripe.php:459
10265
+ #: classes/gateways/class.pmprogateway_stripe.php:375
10266
+ #: classes/gateways/class.pmprogateway_stripe.php:465
10267
  msgid "Your site is using legacy API keys to authenticate with Stripe."
10268
  msgstr ""
10269
 
10270
  #: classes/gateways/class.pmprogateway_stripe.php:364
10271
  #: classes/gateways/class.pmprogateway_stripe.php:371
10272
+ #: classes/gateways/class.pmprogateway_stripe.php:377
10273
  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."
10274
  msgstr ""
10275
 
10277
  #: classes/gateways/class.pmprogateway_stripe.php:458
10278
  #: classes/gateways/class.pmprogateway_stripe.php:380
10279
  #: classes/gateways/class.pmprogateway_stripe.php:470
10280
+ #: classes/gateways/class.pmprogateway_stripe.php:386
10281
+ #: classes/gateways/class.pmprogateway_stripe.php:476
10282
  msgid "Stripe Connection:"
10283
  msgstr ""
10284
 
10286
  #: classes/gateways/class.pmprogateway_stripe.php:482
10287
  #: classes/gateways/class.pmprogateway_stripe.php:396
10288
  #: classes/gateways/class.pmprogateway_stripe.php:494
10289
+ #: classes/gateways/class.pmprogateway_stripe.php:402
10290
+ #: classes/gateways/class.pmprogateway_stripe.php:500
10291
  msgid "Disconnect From Stripe"
10292
  msgstr ""
10293
 
10294
  #: classes/gateways/class.pmprogateway_stripe.php:389
10295
  #: classes/gateways/class.pmprogateway_stripe.php:397
10296
+ #: classes/gateways/class.pmprogateway_stripe.php:403
10297
  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."
10298
  msgstr ""
10299
 
10301
  #: classes/gateways/class.pmprogateway_stripe.php:496
10302
  #: classes/gateways/class.pmprogateway_stripe.php:409
10303
  #: classes/gateways/class.pmprogateway_stripe.php:508
10304
+ #: classes/gateways/class.pmprogateway_stripe.php:415
10305
+ #: classes/gateways/class.pmprogateway_stripe.php:514
10306
  msgid "Connect with Stripe"
10307
  msgstr ""
10308
 
10309
  #: classes/gateways/class.pmprogateway_stripe.php:408
10310
  #: classes/gateways/class.pmprogateway_stripe.php:416
10311
+ #: classes/gateways/class.pmprogateway_stripe.php:422
10312
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
10313
  msgstr ""
10314
 
10315
  #: classes/gateways/class.pmprogateway_stripe.php:411
10316
  #: classes/gateways/class.pmprogateway_stripe.php:419
10317
+ #: classes/gateways/class.pmprogateway_stripe.php:425
10318
  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."
10319
  msgstr ""
10320
 
10325
  #: classes/gateways/class.pmprogateway_stripe.php:519
10326
  #: classes/gateways/class.pmprogateway_stripe.php:559
10327
  #: classes/gateways/class.pmprogateway_stripe.php:578
10328
+ #: classes/gateways/class.pmprogateway_stripe.php:437
10329
+ #: classes/gateways/class.pmprogateway_stripe.php:525
10330
+ #: classes/gateways/class.pmprogateway_stripe.php:584
10331
  msgid "Webhook"
10332
  msgstr ""
10333
 
10338
  #: classes/gateways/class.pmprogateway_stripe.php:523
10339
  #: classes/gateways/class.pmprogateway_stripe.php:594
10340
  #: classes/gateways/class.pmprogateway_stripe.php:613
10341
+ #: classes/gateways/class.pmprogateway_stripe.php:441
10342
+ #: classes/gateways/class.pmprogateway_stripe.php:529
10343
+ #: classes/gateways/class.pmprogateway_stripe.php:619
10344
  msgid "Webhook URL"
10345
  msgstr ""
10346
 
10347
  #: classes/gateways/class.pmprogateway_stripe.php:438
10348
  #: classes/gateways/class.pmprogateway_stripe.php:446
10349
+ #: classes/gateways/class.pmprogateway_stripe.php:452
10350
  msgid "Test Mode:"
10351
  msgstr ""
10352
 
10353
  #: classes/gateways/class.pmprogateway_stripe.php:450
10354
  #: classes/gateways/class.pmprogateway_stripe.php:461
10355
+ #: classes/gateways/class.pmprogateway_stripe.php:467
10356
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
10357
  msgstr ""
10358
 
10359
  #: classes/gateways/class.pmprogateway_stripe.php:483
10360
  #: classes/gateways/class.pmprogateway_stripe.php:495
10361
+ #: classes/gateways/class.pmprogateway_stripe.php:501
10362
  msgid "This will disconnect your site from Stripe in test mode only."
10363
  msgstr ""
10364
 
10365
  #: classes/gateways/class.pmprogateway_stripe.php:518
10366
  #: classes/gateways/class.pmprogateway_stripe.php:530
10367
+ #: classes/gateways/class.pmprogateway_stripe.php:536
10368
  msgid "Stripe API Settings (Legacy)"
10369
  msgstr ""
10370
 
10371
  #: classes/gateways/class.pmprogateway_stripe.php:531
10372
  #: classes/gateways/class.pmprogateway_stripe.php:543
10373
  #: classes/gateways/class.pmprogateway_stripe.php:562
10374
+ #: classes/gateways/class.pmprogateway_stripe.php:568
10375
  msgid "Your Publishable Key appears incorrect."
10376
  msgstr ""
10377
 
10381
  #: classes/gateways/class.pmprogateway_stripe.php:587
10382
  #: classes/gateways/class.pmprogateway_stripe.php:582
10383
  #: classes/gateways/class.pmprogateway_stripe.php:606
10384
+ #: classes/gateways/class.pmprogateway_stripe.php:588
10385
+ #: classes/gateways/class.pmprogateway_stripe.php:612
10386
  msgid "Create Webhook"
10387
  msgstr ""
10388
 
10389
  #: classes/gateways/class.pmprogateway_stripe.php:557
10390
  #: classes/gateways/class.pmprogateway_stripe.php:569
10391
  #: classes/gateways/class.pmprogateway_stripe.php:588
10392
+ #: classes/gateways/class.pmprogateway_stripe.php:594
10393
  msgid "A webhook is set up in Stripe, but it is disabled."
10394
  msgstr ""
10395
 
10396
  #: classes/gateways/class.pmprogateway_stripe.php:564
10397
  #: classes/gateways/class.pmprogateway_stripe.php:576
10398
  #: classes/gateways/class.pmprogateway_stripe.php:595
10399
+ #: classes/gateways/class.pmprogateway_stripe.php:601
10400
  msgid "A webhook is set up in Stripe, but it is using an old API version."
10401
  msgstr ""
10402
 
10403
  #: classes/gateways/class.pmprogateway_stripe.php:564
10404
  #: classes/gateways/class.pmprogateway_stripe.php:576
10405
  #: classes/gateways/class.pmprogateway_stripe.php:595
10406
+ #: classes/gateways/class.pmprogateway_stripe.php:601
10407
  msgid "Rebuild Webhook"
10408
  msgstr ""
10409
 
10416
  #: classes/gateways/class.pmprogateway_stripe.php:601
10417
  #: classes/gateways/class.pmprogateway_stripe.php:741
10418
  #: classes/gateways/class.pmprogateway_stripe.php:857
10419
+ #: classes/gateways/class.pmprogateway_stripe.php:607
10420
+ #: classes/gateways/class.pmprogateway_stripe.php:747
10421
+ #: classes/gateways/class.pmprogateway_stripe.php:863
10422
  msgid "Your webhook is enabled."
10423
  msgstr ""
10424
 
10425
  #: classes/gateways/class.pmprogateway_stripe.php:570
10426
  #: classes/gateways/class.pmprogateway_stripe.php:582
10427
  #: classes/gateways/class.pmprogateway_stripe.php:601
10428
+ #: classes/gateways/class.pmprogateway_stripe.php:607
10429
  msgid "Disable Webhook"
10430
  msgstr ""
10431
 
10441
  #: classes/gateways/class.pmprogateway_stripe.php:768
10442
  #: classes/gateways/class.pmprogateway_stripe.php:785
10443
  #: classes/gateways/class.pmprogateway_stripe.php:819
10444
+ #: classes/gateways/class.pmprogateway_stripe.php:614
10445
+ #: classes/gateways/class.pmprogateway_stripe.php:774
10446
+ #: classes/gateways/class.pmprogateway_stripe.php:791
10447
+ #: classes/gateways/class.pmprogateway_stripe.php:825
10448
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
10449
  msgstr ""
10450
 
10451
  #: classes/gateways/class.pmprogateway_stripe.php:589
10452
  #: classes/gateways/class.pmprogateway_stripe.php:601
10453
  #: classes/gateways/class.pmprogateway_stripe.php:620
10454
+ #: classes/gateways/class.pmprogateway_stripe.php:626
10455
  msgid "Other Stripe Settings"
10456
  msgstr ""
10457
 
10458
  #: classes/gateways/class.pmprogateway_stripe.php:593
10459
  #: classes/gateways/class.pmprogateway_stripe.php:605
10460
  #: classes/gateways/class.pmprogateway_stripe.php:624
10461
+ #: classes/gateways/class.pmprogateway_stripe.php:630
10462
  msgid "Stripe API Version"
10463
  msgstr ""
10464
 
10465
  #: classes/gateways/class.pmprogateway_stripe.php:612
10466
  #: classes/gateways/class.pmprogateway_stripe.php:624
10467
  #: classes/gateways/class.pmprogateway_stripe.php:643
10468
+ #: classes/gateways/class.pmprogateway_stripe.php:649
10469
  msgid "Enable Payment Request Button"
10470
  msgstr ""
10471
 
10472
  #: classes/gateways/class.pmprogateway_stripe.php:630
10473
  #: classes/gateways/class.pmprogateway_stripe.php:642
10474
  #: classes/gateways/class.pmprogateway_stripe.php:661
10475
+ #: classes/gateways/class.pmprogateway_stripe.php:667
10476
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
10477
  msgstr ""
10478
 
10479
  #: classes/gateways/class.pmprogateway_stripe.php:643
10480
  #: classes/gateways/class.pmprogateway_stripe.php:655
10481
  #: classes/gateways/class.pmprogateway_stripe.php:674
10482
+ #: classes/gateways/class.pmprogateway_stripe.php:680
10483
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
10484
  msgstr ""
10485
 
10486
  #: classes/gateways/class.pmprogateway_stripe.php:645
10487
  #: classes/gateways/class.pmprogateway_stripe.php:657
10488
  #: classes/gateways/class.pmprogateway_stripe.php:676
10489
+ #: classes/gateways/class.pmprogateway_stripe.php:682
10490
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
10491
  msgstr ""
10492
 
10493
  #: classes/gateways/class.pmprogateway_stripe.php:647
10494
  #: classes/gateways/class.pmprogateway_stripe.php:659
10495
  #: classes/gateways/class.pmprogateway_stripe.php:678
10496
+ #: classes/gateways/class.pmprogateway_stripe.php:684
10497
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
10498
  msgstr ""
10499
 
10500
  #: classes/gateways/class.pmprogateway_stripe.php:649
10501
  #: classes/gateways/class.pmprogateway_stripe.php:661
10502
  #: classes/gateways/class.pmprogateway_stripe.php:680
10503
+ #: classes/gateways/class.pmprogateway_stripe.php:686
10504
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
10505
  msgstr ""
10506
 
10507
  #: classes/gateways/class.pmprogateway_stripe.php:674
10508
  #: classes/gateways/class.pmprogateway_stripe.php:686
10509
  #: classes/gateways/class.pmprogateway_stripe.php:705
10510
+ #: classes/gateways/class.pmprogateway_stripe.php:711
10511
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
10512
  msgstr ""
10513
 
10514
  #: classes/gateways/class.pmprogateway_stripe.php:695
10515
  #: classes/gateways/class.pmprogateway_stripe.php:707
10516
  #: classes/gateways/class.pmprogateway_stripe.php:726
10517
+ #: classes/gateways/class.pmprogateway_stripe.php:732
10518
  msgid "Webhook creation failed. You might already have a webhook set up."
10519
  msgstr ""
10520
 
10524
  #: classes/gateways/class.pmprogateway_stripe.php:847
10525
  #: classes/gateways/class.pmprogateway_stripe.php:792
10526
  #: classes/gateways/class.pmprogateway_stripe.php:866
10527
+ #: classes/gateways/class.pmprogateway_stripe.php:798
10528
+ #: classes/gateways/class.pmprogateway_stripe.php:872
10529
  msgid "There was an error deleting the webhook."
10530
  msgstr ""
10531
 
10532
  #: classes/gateways/class.pmprogateway_stripe.php:811
10533
  #: classes/gateways/class.pmprogateway_stripe.php:823
10534
  #: classes/gateways/class.pmprogateway_stripe.php:842
10535
+ #: classes/gateways/class.pmprogateway_stripe.php:848
10536
  msgid "Webhook creation failed. Please refresh and try again."
10537
  msgstr ""
10538
 
10539
  #: classes/gateways/class.pmprogateway_stripe.php:867
10540
  #: classes/gateways/class.pmprogateway_stripe.php:879
10541
  #: classes/gateways/class.pmprogateway_stripe.php:898
10542
+ #: classes/gateways/class.pmprogateway_stripe.php:904
10543
  msgid "Verification steps confirmed. Your payment is processing."
10544
  msgstr ""
10545
 
10546
  #: classes/gateways/class.pmprogateway_stripe.php:1262
10547
  #: classes/gateways/class.pmprogateway_stripe.php:1274
10548
  #: classes/gateways/class.pmprogateway_stripe.php:1293
10549
+ #: classes/gateways/class.pmprogateway_stripe.php:1299
10550
  msgid "Pay with Credit Card"
10551
  msgstr ""
10552
 
10553
  #: classes/gateways/class.pmprogateway_stripe.php:1296
10554
  #: classes/gateways/class.pmprogateway_stripe.php:1308
10555
  #: classes/gateways/class.pmprogateway_stripe.php:1327
10556
+ #: classes/gateways/class.pmprogateway_stripe.php:1333
10557
  msgid "CVC"
10558
  msgstr ""
10559
 
10560
  #: classes/gateways/class.pmprogateway_stripe.php:1374
10561
  #: classes/gateways/class.pmprogateway_stripe.php:1386
10562
  #: classes/gateways/class.pmprogateway_stripe.php:1405
10563
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
10564
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
10565
  msgstr ""
10566
 
10576
  #: classes/gateways/class.pmprogateway_stripe.php:2016
10577
  #: classes/gateways/class.pmprogateway_stripe.php:2029
10578
  #: classes/gateways/class.pmprogateway_stripe.php:2033
10579
+ #: classes/gateways/class.pmprogateway_stripe.php:2018
10580
+ #: classes/gateways/class.pmprogateway_stripe.php:2022
10581
+ #: classes/gateways/class.pmprogateway_stripe.php:2035
10582
+ #: classes/gateways/class.pmprogateway_stripe.php:2039
10583
  msgid "Error: %s"
10584
  msgstr ""
10585
 
10589
  #: classes/gateways/class.pmprogateway_stripe.php:2834
10590
  #: classes/gateways/class.pmprogateway_stripe.php:2850
10591
  #: classes/gateways/class.pmprogateway_stripe.php:2856
10592
+ #: classes/gateways/class.pmprogateway_stripe.php:2862
10593
  msgid "Error: "
10594
  msgstr ""
10595
 
10596
  #: classes/gateways/class.pmprogateway_stripe.php:2836
10597
  #: classes/gateways/class.pmprogateway_stripe.php:2848
10598
  #: classes/gateways/class.pmprogateway_stripe.php:2870
10599
+ #: classes/gateways/class.pmprogateway_stripe.php:2876
10600
  msgid "Error: Unkown error while refunding charge #%s"
10601
  msgstr ""
10602
 
10603
  #: classes/gateways/class.pmprogateway_stripe.php:3330
10604
  #: classes/gateways/class.pmprogateway_stripe.php:3342
10605
  #: classes/gateways/class.pmprogateway_stripe.php:3364
10606
+ #: classes/gateways/class.pmprogateway_stripe.php:3370
10607
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
10608
  msgstr ""
10609
 
10610
  #: classes/gateways/class.pmprogateway_stripe.php:3347
10611
  #: classes/gateways/class.pmprogateway_stripe.php:3359
10612
  #: classes/gateways/class.pmprogateway_stripe.php:3381
10613
+ #: classes/gateways/class.pmprogateway_stripe.php:3387
10614
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
10615
  msgstr ""
10616
 
10617
  #: classes/gateways/class.pmprogateway_stripe.php:3533
10618
  #: classes/gateways/class.pmprogateway_stripe.php:3545
10619
  #: classes/gateways/class.pmprogateway_stripe.php:3567
10620
+ #: classes/gateways/class.pmprogateway_stripe.php:3573
10621
  msgid "Invalid response from the Stripe Connect server."
10622
  msgstr ""
10623
 
10625
  #: classes/gateways/class.pmprogateway_stripe.php:3561
10626
  #: classes/gateways/class.pmprogateway_stripe.php:3573
10627
  #: classes/gateways/class.pmprogateway_stripe.php:3595
10628
+ #: classes/gateways/class.pmprogateway_stripe.php:3601
10629
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
10630
  msgstr ""
10631
 
10633
  #: classes/gateways/class.pmprogateway_stripe.php:3597
10634
  #: classes/gateways/class.pmprogateway_stripe.php:3609
10635
  #: classes/gateways/class.pmprogateway_stripe.php:3631
10636
+ #: classes/gateways/class.pmprogateway_stripe.php:3637
10637
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
10638
  msgstr ""
10639
 
10640
  #: classes/gateways/class.pmprogateway_stripe.php:3768
10641
  #: classes/gateways/class.pmprogateway_stripe.php:3780
10642
  #: classes/gateways/class.pmprogateway_stripe.php:3802
10643
+ #: classes/gateways/class.pmprogateway_stripe.php:3808
10644
  msgid "Last webhook received at"
10645
  msgstr ""
10646
 
10647
  #: classes/gateways/class.pmprogateway_stripe.php:3770
10648
  #: classes/gateways/class.pmprogateway_stripe.php:3782
10649
  #: classes/gateways/class.pmprogateway_stripe.php:3804
10650
+ #: classes/gateways/class.pmprogateway_stripe.php:3810
10651
  msgid "No webhooks have been received."
10652
  msgstr ""
10653
 
10654
  #: classes/gateways/class.pmprogateway_stripe.php:3774
10655
  #: classes/gateways/class.pmprogateway_stripe.php:3786
10656
  #: classes/gateways/class.pmprogateway_stripe.php:3808
10657
+ #: classes/gateways/class.pmprogateway_stripe.php:3814
10658
  msgid "Your webhook may not be working correctly."
10659
  msgstr ""
10660
 
10661
  #: classes/gateways/class.pmprogateway_stripe.php:3776
10662
  #: classes/gateways/class.pmprogateway_stripe.php:3788
10663
  #: classes/gateways/class.pmprogateway_stripe.php:3810
10664
+ #: classes/gateways/class.pmprogateway_stripe.php:3816
10665
  msgid "Click here for info on setting up your webhook with Stripe."
10666
  msgstr ""
10667
 
12766
 
12767
  #: includes/login.php:429
12768
  #: includes/profile.php:843
12769
+ #: includes/profile.php:855
12770
  msgid "New passwords do not match."
12771
  msgstr ""
12772
 
12773
  #: includes/login.php:433
12774
  #: includes/profile.php:839
12775
+ #: includes/profile.php:851
12776
  msgid "Please complete all fields."
12777
  msgstr ""
12778
 
12802
 
12803
  #: includes/login.php:688
12804
  #: includes/profile.php:891
12805
+ #: includes/profile.php:903
12806
  msgid "New Password"
12807
  msgstr ""
12808
 
12809
  #: includes/login.php:690
12810
  #: includes/profile.php:894
12811
  #: includes/scripts.php:86
12812
+ #: includes/profile.php:906
12813
+ #: includes/scripts.php:85
12814
  msgid "Strength Indicator"
12815
  msgstr ""
12816
 
12817
  #: includes/login.php:694
12818
  #: includes/profile.php:898
12819
+ #: includes/profile.php:910
12820
  msgid "Confirm New Password"
12821
  msgstr ""
12822
 
12913
  #: includes/privacy.php:182
12914
  #: includes/profile.php:425
12915
  #: includes/profile.php:493
12916
+ #: includes/profile.php:499
12917
  msgid "Level ID"
12918
  msgstr ""
12919
 
12920
  #: includes/privacy.php:190
12921
  #: includes/profile.php:496
12922
+ #: includes/profile.php:502
12923
  msgid "Date Modified"
12924
  msgstr ""
12925
 
12926
  #: includes/privacy.php:194
12927
  #: includes/profile.php:497
12928
+ #: includes/profile.php:503
12929
  msgid "End Date"
12930
  msgstr ""
12931
 
12932
  #: includes/privacy.php:198
12933
  #: includes/profile.php:498
12934
+ #: includes/profile.php:504
12935
  msgid "Level Cost"
12936
  msgstr ""
12937
 
13030
  msgstr ""
13031
 
13032
  #: includes/profile.php:485
13033
+ #: includes/profile.php:488
13034
  msgid "No membership orders found."
13035
  msgstr ""
13036
 
13037
  #: includes/profile.php:537
13038
+ #: includes/profile.php:546
13039
  msgid "No membership history found."
13040
  msgstr ""
13041
 
13042
  #: includes/profile.php:644
13043
+ #: includes/profile.php:656
13044
  msgid "Log in to edit your profile."
13045
  msgstr ""
13046
 
13047
  #: includes/profile.php:679
13048
+ #: includes/profile.php:691
13049
  msgid "Please enter a display name."
13050
  msgstr ""
13051
 
13052
  #: includes/profile.php:689
13053
+ #: includes/profile.php:701
13054
  msgid "Please enter an email address."
13055
  msgstr ""
13056
 
13057
  #: includes/profile.php:691
13058
+ #: includes/profile.php:703
13059
  msgid "The email address isn&#8217;t correct."
13060
  msgstr ""
13061
 
13062
  #: includes/profile.php:695
13063
+ #: includes/profile.php:707
13064
  msgid "This email is already registered, please choose another one."
13065
  msgstr ""
13066
 
13067
  #: includes/profile.php:722
13068
+ #: includes/profile.php:734
13069
  msgid "Your profile has been updated."
13070
  msgstr ""
13071
 
13072
  #: includes/profile.php:749
13073
+ #: includes/profile.php:761
13074
  msgid "Display name publicly as"
13075
  msgstr ""
13076
 
13077
  #: includes/profile.php:762
13078
+ #: includes/profile.php:774
13079
  msgid "Site administrators must use the WordPress dashboard to update their email address."
13080
  msgstr ""
13081
 
13082
  #: includes/profile.php:785
13083
+ #: includes/profile.php:797
13084
  msgid "Update Profile"
13085
  msgstr ""
13086
 
13087
  #: includes/profile.php:841
13088
+ #: includes/profile.php:853
13089
  msgid "Please enter your current password."
13090
  msgstr ""
13091
 
13092
  #: includes/profile.php:845
13093
+ #: includes/profile.php:857
13094
  msgid "Your current password is incorrect."
13095
  msgstr ""
13096
 
13097
  #: includes/profile.php:856
13098
+ #: includes/profile.php:868
13099
  msgid "Your password has been updated."
13100
  msgstr ""
13101
 
13102
  #: includes/profile.php:886
13103
+ #: includes/profile.php:898
13104
  msgid "Current Password"
13105
  msgstr ""
13106
 
13107
  #: includes/profile.php:888
13108
  #: includes/profile.php:893
13109
  #: includes/profile.php:900
13110
+ #: includes/profile.php:905
13111
+ #: includes/profile.php:912
13112
  msgid "Required Field"
13113
  msgstr ""
13114
 
13205
  msgstr ""
13206
 
13207
  #: services/braintree-webhook.php:425
13208
+ #: services/braintree-webhook.php:426
13209
  msgid "<p>A member's Braintree subscription has expired at your site. This typically happens if you've set up billing limits on your levels.</p><p>We have not removed the user's membership level.</p><p>You can view details on this user here: %s</p>"
13210
  msgstr ""
13211
 
13212
  #: services/braintree-webhook.php:427
13213
+ #: services/braintree-webhook.php:428
13214
  msgid "A member's Braintree subscription has expired at %s"
13215
  msgstr ""
13216
 
13529
 
13530
  #: classes/gateways/class.pmprogateway_stripe.php:360
13531
  #: classes/gateways/class.pmprogateway_stripe.php:450
13532
+ #: classes/gateways/class.pmprogateway_stripe.php:366
13533
+ #: classes/gateways/class.pmprogateway_stripe.php:456
13534
  msgid "Connected with Legacy Keys"
13535
  msgstr ""
13536
 
13537
  #: classes/gateways/class.pmprogateway_stripe.php:370
13538
  #: classes/gateways/class.pmprogateway_stripe.php:460
13539
+ #: classes/gateways/class.pmprogateway_stripe.php:376
13540
+ #: classes/gateways/class.pmprogateway_stripe.php:466
13541
  msgid "You can continue to use the legacy API keys or choose to upgrade to our new Stripe Connect solution below."
13542
  msgstr ""
13543
 
13544
  #: classes/gateways/class.pmprogateway_stripe.php:372
13545
  #: classes/gateways/class.pmprogateway_stripe.php:462
13546
+ #: classes/gateways/class.pmprogateway_stripe.php:378
13547
+ #: classes/gateways/class.pmprogateway_stripe.php:468
13548
  msgid "Read the documentation on switching to Stripe Connect &raquo;"
13549
  msgstr ""
13550
 
13601
  msgstr ""
13602
 
13603
  #: classes/gateways/class.pmprogateway_stripe.php:533
13604
+ #: classes/gateways/class.pmprogateway_stripe.php:539
13605
  msgid "Having trouble connecting through the button above or otherwise need to use your own API keys?"
13606
  msgstr ""
13607
 
13608
  #: classes/gateways/class.pmprogateway_stripe.php:534
13609
+ #: classes/gateways/class.pmprogateway_stripe.php:540
13610
  msgid "Click here to use the legacy API settings."
13611
  msgstr ""
13612
+
13613
+ #: adminpages/license.php:37
13614
+ msgid "There was an issue validating your license key: %s"
13615
+ msgstr ""
13616
+
13617
+ #: includes/email-templates.php:172
13618
+ msgid ""
13619
+ "<p>There was a new member checkout at !!sitename!!.</p>\n"
13620
+ "\n"
13621
+ "<p><strong>They have chosen to pay by check.</strong></p>\n"
13622
+ "\n"
13623
+ "<p>Below are details about the new membership account and a receipt for the initial membership invoice.</p>\n"
13624
+ "\n"
13625
+ "<p>Account: !!display_name!! (!!user_email!!)</p>\n"
13626
+ "<p>Membership Level: !!membership_level_name!!</p>\n"
13627
+ "<p>Membership Fee: !!membership_cost!!</p>\n"
13628
+ "!!membership_expiration!! !!discount_code!!\n"
13629
+ "\n"
13630
+ "<p>\n"
13631
+ "\tInvoice #!!invoice_id!! on !!invoice_date!!<br />\n"
13632
+ "\tTotal Billed: !!invoice_total!!\n"
13633
+ "</p>\n"
13634
+ "\n"
13635
+ "<p>Log in to your membership account here: !!login_url!!</p>"
13636
+ msgstr ""
13637
+
13638
+ #: includes/license.php:112
13639
+ msgid "Missing key."
13640
+ msgstr ""
13641
+
13642
+ #: shortcodes/pmpro_account.php:145
13643
+ msgctxt "A dash is shown when there is no expiration date."
13644
+ msgid "&#8212;"
13645
+ msgstr ""
languages/paid-memberships-pro-pt_PT.mo CHANGED
Binary file
languages/paid-memberships-pro-pt_PT.po CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Paid Memberships Pro 2.6.2\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-09-17T13:57:42+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
@@ -261,6 +261,9 @@ msgstr ""
261
  #: adminpages/orders.php:1544
262
  #: adminpages/orders.php:1554
263
  #: adminpages/orders.php:1553
 
 
 
264
  msgid "N/A"
265
  msgstr "N/A"
266
 
@@ -444,6 +447,7 @@ msgstr "Gateway de Pagamentos &amp; SSL"
444
  #: adminpages/orders.php:391
445
  #: adminpages/orders.php:1445
446
  #: adminpages/orders.php:1448
 
447
  msgid "Email"
448
  msgstr "E-mail"
449
 
@@ -632,6 +636,8 @@ msgstr "Esconder Ads nas Assinaturas?"
632
  #: adminpages/advancedsettings.php:479
633
  #: classes/gateways/class.pmprogateway_stripe.php:634
634
  #: classes/gateways/class.pmprogateway_stripe.php:648
 
 
635
  msgid "No"
636
  msgstr "Não"
637
 
@@ -730,6 +736,8 @@ msgstr "apenas multisite"
730
  #: adminpages/advancedsettings.php:397
731
  #: classes/gateways/class.pmprogateway_stripe.php:636
732
  #: classes/gateways/class.pmprogateway_stripe.php:650
 
 
733
  msgid "Yes"
734
  msgstr "Sim"
735
 
@@ -1012,6 +1020,7 @@ msgstr "Código"
1012
  #: includes/privacy.php:186
1013
  #: includes/profile.php:495
1014
  #: adminpages/discountcodes.php:489
 
1015
  msgid "Start Date"
1016
  msgstr "Data de Início"
1017
 
@@ -1046,6 +1055,7 @@ msgstr "Data de Início"
1046
  #: classes/gateways/class.pmprogateway_stripe.php:1301
1047
  #: adminpages/discountcodes.php:507
1048
  #: classes/gateways/class.pmprogateway_stripe.php:1320
 
1049
  msgid "Expiration Date"
1050
  msgstr "Data de Expiração"
1051
 
@@ -1185,6 +1195,7 @@ msgstr "Quantia a Faturar"
1185
  #: adminpages/discountcodes.php:612
1186
  #: adminpages/discountcodes.php:699
1187
  #: classes/gateways/class.pmprogateway_stripe.php:1363
 
1188
  msgid "Day(s)"
1189
  msgstr "Dia(s)"
1190
 
@@ -1218,6 +1229,7 @@ msgstr "Dia(s)"
1218
  #: adminpages/discountcodes.php:612
1219
  #: adminpages/discountcodes.php:699
1220
  #: classes/gateways/class.pmprogateway_stripe.php:1365
 
1221
  msgid "Month(s)"
1222
  msgstr "Mes(es)"
1223
 
@@ -1251,6 +1263,7 @@ msgstr "Mes(es)"
1251
  #: adminpages/discountcodes.php:612
1252
  #: adminpages/discountcodes.php:699
1253
  #: classes/gateways/class.pmprogateway_stripe.php:1364
 
1254
  msgid "Week(s)"
1255
  msgstr "Semana(s)"
1256
 
@@ -1284,6 +1297,7 @@ msgstr "Semana(s)"
1284
  #: adminpages/discountcodes.php:612
1285
  #: adminpages/discountcodes.php:699
1286
  #: classes/gateways/class.pmprogateway_stripe.php:1366
 
1287
  msgid "Year(s)"
1288
  msgstr "Ano(s)"
1289
 
@@ -1882,6 +1896,7 @@ msgstr "Detalhes de Faturação"
1882
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1883
  #: adminpages/discountcodes.php:608
1884
  #: classes/gateways/class.pmprogateway_stripe.php:1497
 
1885
  msgid "per"
1886
  msgstr "por"
1887
 
@@ -2097,6 +2112,8 @@ msgstr "Gravar Tipo"
2097
  #: pages/cancel.php:96
2098
  #: shortcodes/pmpro_account.php:106
2099
  #: adminpages/orders.php:968
 
 
2100
  msgid "Cancel"
2101
  msgstr "Cancelar"
2102
 
@@ -2773,6 +2790,7 @@ msgstr "ex: PayPal Express, PayPal Standard, Cartão de Crédito."
2773
  #: adminpages/orders.php:679
2774
  #: classes/gateways/class.pmprogateway_stripe.php:1284
2775
  #: classes/gateways/class.pmprogateway_stripe.php:1303
 
2776
  msgid "Card Type"
2777
  msgstr "Tipo do Cartão"
2778
 
@@ -2853,6 +2871,7 @@ msgstr "Ano de Expiração"
2853
  #: adminpages/dashboard.php:294
2854
  #: adminpages/orders.php:742
2855
  #: adminpages/orders.php:1348
 
2856
  msgid "Status"
2857
  msgstr "Estado"
2858
 
@@ -4274,6 +4293,7 @@ msgstr "Confirmação de assinatura para %s"
4274
  #: classes/class.pmproemail.php:769
4275
  #: classes/class.pmproemail.php:771
4276
  #: classes/gateways/class.pmprogateway_stripe.php:1333
 
4277
  msgid "Discount Code"
4278
  msgstr "Código de Desconto"
4279
 
@@ -4729,6 +4749,7 @@ msgstr "Para integrar completamente com o Braintree, assegure-se de apontar o se
4729
  #: pages/checkout.php:366
4730
  #: classes/gateways/class.pmprogateway_stripe.php:1263
4731
  #: classes/gateways/class.pmprogateway_stripe.php:1282
 
4732
  msgid "Payment Information"
4733
  msgstr "Informações de Pagamento"
4734
 
@@ -4753,6 +4774,7 @@ msgstr "Informações de Pagamento"
4753
  #: pages/checkout.php:367
4754
  #: classes/gateways/class.pmprogateway_stripe.php:1264
4755
  #: classes/gateways/class.pmprogateway_stripe.php:1283
 
4756
  #, php-format
4757
  msgid "We Accept %s"
4758
  msgstr "Aceitamos %s"
@@ -4783,6 +4805,7 @@ msgstr "Aceitamos %s"
4783
  #: pages/checkout.php:389
4784
  #: classes/gateways/class.pmprogateway_stripe.php:1297
4785
  #: classes/gateways/class.pmprogateway_stripe.php:1316
 
4786
  msgid "Card Number"
4787
  msgstr "Número do Cartão"
4788
 
@@ -4864,6 +4887,7 @@ msgstr "o que é isso?"
4864
  #: pages/checkout.php:432
4865
  #: classes/gateways/class.pmprogateway_stripe.php:1319
4866
  #: classes/gateways/class.pmprogateway_stripe.php:1338
 
4867
  msgid "Apply"
4868
  msgstr "Aplicar"
4869
 
@@ -5114,6 +5138,7 @@ msgstr ""
5114
  #: classes/gateways/class.pmprogateway_paypal.php:132
5115
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
5116
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
 
5117
  msgid "PayPal Settings"
5118
  msgstr "Configurações do PayPal"
5119
 
@@ -5135,6 +5160,7 @@ msgstr ""
5135
  #: classes/gateways/class.pmprogateway_paypal.php:153
5136
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
5137
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
 
5138
  msgid "Gateway Account Email"
5139
  msgstr "E-mail da conta do Gateway de Pagamento"
5140
 
@@ -5154,6 +5180,7 @@ msgstr "E-mail da conta do Gateway de Pagamento"
5154
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
5155
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
5156
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
 
5157
  msgid "API Username"
5158
  msgstr "API Username (Nome de Utilizador no API)"
5159
 
@@ -5173,6 +5200,7 @@ msgstr "API Username (Nome de Utilizador no API)"
5173
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
5174
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
5175
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
 
5176
  msgid "API Password"
5177
  msgstr "API Password (Senha no API)"
5178
 
@@ -5186,6 +5214,7 @@ msgstr "API Password (Senha no API)"
5186
  #: classes/gateways/class.pmprogateway_paypal.php:177
5187
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
5188
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
 
5189
  msgid "API Signature"
5190
  msgstr "API Signature (Assinatura no API)"
5191
 
@@ -5200,6 +5229,7 @@ msgstr "API Signature (Assinatura no API)"
5200
  #: classes/gateways/class.pmprogateway_paypal.php:196
5201
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
5202
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
 
5203
  msgid "IPN Handler URL"
5204
  msgstr "IPN Handler URL"
5205
 
@@ -5225,6 +5255,7 @@ msgstr ""
5225
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
5226
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
5227
  #: pages/checkout.php:218
 
5228
  msgid "Check Out with PayPal"
5229
  msgstr "Pagar pelo PayPal"
5230
 
@@ -5244,6 +5275,7 @@ msgstr "Pagar pelo PayPal"
5244
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
5245
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5246
  #: pages/checkout.php:526
 
5247
  msgid "Submit and Check Out"
5248
  msgstr "Enviar e Fazer Checkout"
5249
 
@@ -5267,6 +5299,7 @@ msgstr "Enviar e Fazer Checkout"
5267
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5268
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
5269
  #: pages/checkout.php:526
 
5270
  msgid "Submit and Confirm"
5271
  msgstr "Enviar e Confirmar"
5272
 
@@ -5288,6 +5321,7 @@ msgstr "Enviar e Confirmar"
5288
  #: classes/gateways/class.pmprogateway_paypal.php:716
5289
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
5290
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
 
5291
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
5292
  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."
5293
 
@@ -5301,6 +5335,7 @@ msgstr "Por favor, entre em contacto com o site ou cancele sua subscrição pelo
5301
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
5302
  #: paid-memberships-pro.php:160
5303
  #: paid-memberships-pro.php:162
 
5304
  msgid "PayPal Express"
5305
  msgstr ""
5306
 
@@ -5312,6 +5347,7 @@ msgstr ""
5312
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
5313
  #: classes/gateways/class.pmprogateway_paypal.php:199
5314
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
 
5315
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
5316
  msgstr "Para integrar completamente com o Paypal, assegure-se de apontar o seu IPN Handler URL para"
5317
 
@@ -5333,6 +5369,8 @@ msgstr "Para integrar completamente com o Paypal, assegure-se de apontar o seu I
5333
  #: preheaders/checkout.php:823
5334
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
5335
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
 
 
5336
  msgid "The PayPal Token was lost."
5337
  msgstr "O Token do PayPal foi perdido."
5338
 
@@ -5370,6 +5408,7 @@ msgstr ""
5370
  #: classes/gateways/class.pmprogateway_stripe.php:252
5371
  #: paid-memberships-pro.php:159
5372
  #: paid-memberships-pro.php:161
 
5373
  msgid "Stripe"
5374
  msgstr ""
5375
 
@@ -5390,6 +5429,7 @@ msgstr "Configurações do Stripe"
5390
  #: classes/gateways/class.pmprogateway_stripe.php:539
5391
  #: classes/gateways/class.pmprogateway_stripe.php:551
5392
  #: classes/gateways/class.pmprogateway_stripe.php:570
 
5393
  msgid "Secret Key"
5394
  msgstr "Secret Key (Chave Secreta)"
5395
 
@@ -5403,6 +5443,7 @@ msgstr "Secret Key (Chave Secreta)"
5403
  #: classes/gateways/class.pmprogateway_stripe.php:523
5404
  #: classes/gateways/class.pmprogateway_stripe.php:535
5405
  #: classes/gateways/class.pmprogateway_stripe.php:554
 
5406
  msgid "Publishable Key"
5407
  msgstr "Publishable Key (Chave Publica)"
5408
 
@@ -5416,6 +5457,7 @@ msgstr "Publishable Key (Chave Publica)"
5416
  #: classes/gateways/class.pmprogateway_stripe.php:598
5417
  #: classes/gateways/class.pmprogateway_stripe.php:610
5418
  #: classes/gateways/class.pmprogateway_stripe.php:629
 
5419
  msgid "Show Billing Address Fields"
5420
  msgstr "Mostrar Campos de Endereço da Faturação"
5421
 
@@ -5428,6 +5470,7 @@ msgstr "Mostrar Campos de Endereço da Faturação"
5428
  #: classes/gateways/class.pmprogateway_stripe.php:607
5429
  #: classes/gateways/class.pmprogateway_stripe.php:619
5430
  #: classes/gateways/class.pmprogateway_stripe.php:638
 
5431
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
5432
  msgstr ""
5433
 
@@ -5450,6 +5493,7 @@ msgstr "Para integrar completamente com o Stripe, assegure-se de apontar o seu W
5450
  #: classes/gateways/class.pmprogateway_stripe.php:1379
5451
  #: classes/gateways/class.pmprogateway_stripe.php:1391
5452
  #: classes/gateways/class.pmprogateway_stripe.php:1410
 
5453
  msgid "Subscription Updates"
5454
  msgstr "Atualizações de subscrições"
5455
 
@@ -5461,6 +5505,7 @@ msgstr "Atualizações de subscrições"
5461
  #: classes/gateways/class.pmprogateway_stripe.php:1383
5462
  #: classes/gateways/class.pmprogateway_stripe.php:1395
5463
  #: classes/gateways/class.pmprogateway_stripe.php:1414
 
5464
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
5465
  msgstr ""
5466
 
@@ -5472,6 +5517,7 @@ msgstr ""
5472
  #: classes/gateways/class.pmprogateway_stripe.php:1385
5473
  #: classes/gateways/class.pmprogateway_stripe.php:1397
5474
  #: classes/gateways/class.pmprogateway_stripe.php:1416
 
5475
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
5476
  msgstr ""
5477
 
@@ -5490,6 +5536,7 @@ msgstr ""
5490
  #: pages/billing.php:425
5491
  #: classes/gateways/class.pmprogateway_stripe.php:1403
5492
  #: classes/gateways/class.pmprogateway_stripe.php:1422
 
5493
  msgid "Update"
5494
  msgstr "Atualizar"
5495
 
@@ -5501,6 +5548,7 @@ msgstr "Atualizar"
5501
  #: classes/gateways/class.pmprogateway_stripe.php:2480
5502
  #: classes/gateways/class.pmprogateway_stripe.php:2492
5503
  #: classes/gateways/class.pmprogateway_stripe.php:2514
 
5504
  msgid "Could not cancel the old subscription. Updates have not been processed."
5505
  msgstr "Não foi possível cancelar a assinatura antiga. Atualizações não foram processadas."
5506
 
@@ -5525,6 +5573,9 @@ msgstr "Não foi possível cancelar a assinatura antiga. Atualizações não for
5525
  #: classes/gateways/class.pmprogateway_stripe.php:2127
5526
  #: classes/gateways/class.pmprogateway_stripe.php:2132
5527
  #: classes/gateways/class.pmprogateway_stripe.php:2137
 
 
 
5528
  msgid "Error creating customer record with Stripe:"
5529
  msgstr "Erro ao criar o cliente no Stripe:"
5530
 
@@ -5536,6 +5587,8 @@ msgstr "Erro ao criar o cliente no Stripe:"
5536
  #: classes/gateways/class.pmprogateway_stripe.php:2182
5537
  #: classes/gateways/class.pmprogateway_stripe.php:2196
5538
  #: classes/gateways/class.pmprogateway_stripe.php:2201
 
 
5539
  msgid "Error getting subscription with Stripe:"
5540
  msgstr "Erro ao fazer subscrição com o Stripe:"
5541
 
@@ -5565,6 +5618,8 @@ msgstr "Erro ao fazer subscrição com o Stripe:"
5565
  #: classes/gateways/class.pmprogateway_stripe.php:2356
5566
  #: classes/gateways/class.pmprogateway_stripe.php:2373
5567
  #: classes/gateways/class.pmprogateway_stripe.php:2378
 
 
5568
  msgid "Error creating plan with Stripe:"
5569
  msgstr "Erro ao criar o plano no Stripe:"
5570
 
@@ -5589,6 +5644,8 @@ msgstr "Erro ao criar o plano no Stripe:"
5589
  #: classes/gateways/class.pmprogateway_stripe.php:2401
5590
  #: classes/gateways/class.pmprogateway_stripe.php:2409
5591
  #: classes/gateways/class.pmprogateway_stripe.php:2423
 
 
5592
  msgid "Error subscribing customer to plan with Stripe:"
5593
  msgstr "Erro ao associar cliente ao plano no Stripe:"
5594
 
@@ -5607,6 +5664,7 @@ msgstr "Erro ao associar cliente ao plano no Stripe:"
5607
  #: classes/gateways/class.pmprogateway_stripe.php:2632
5608
  #: classes/gateways/class.pmprogateway_stripe.php:2644
5609
  #: classes/gateways/class.pmprogateway_stripe.php:2666
 
5610
  msgid "Could not cancel old subscription."
5611
  msgstr "Não foi possível cancelar a assinatura antiga."
5612
 
@@ -5622,6 +5680,7 @@ msgstr "Não foi possível cancelar a assinatura antiga."
5622
  #: classes/gateways/class.pmprogateway_stripe.php:2648
5623
  #: classes/gateways/class.pmprogateway_stripe.php:2660
5624
  #: classes/gateways/class.pmprogateway_stripe.php:2682
 
5625
  msgid "Could not find the customer."
5626
  msgstr "Cliente não encontrado."
5627
 
@@ -6690,6 +6749,7 @@ msgstr "Sua chave de licença foi validada."
6690
 
6691
  #: includes/license.php:81
6692
  #: adminpages/license.php:43
 
6693
  msgid "Paid Memberships Pro Support License"
6694
  msgstr "Licença de suporte do Paid Memberships Pro"
6695
 
@@ -6709,6 +6769,7 @@ msgstr ""
6709
  #: adminpages/dashboard.php:174
6710
  #: adminpages/license.php:49
6711
  #: adminpages/dashboard.php:178
 
6712
  msgid "Your license is invalid or expired."
6713
  msgstr "Sua licença está inválida ou expirada."
6714
 
@@ -6719,6 +6780,7 @@ msgstr "<p><strong>Obrigado!</strong> Uma <strong>%s</strong> licença válida f
6719
 
6720
  #: includes/license.php:100
6721
  #: adminpages/license.php:59
 
6722
  msgid "Enter license key here..."
6723
  msgstr "Entre com a chave de licença aqui..."
6724
 
@@ -6921,6 +6983,7 @@ msgstr "SAIR"
6921
  #: adminpages/dashboard.php:224
6922
  #: adminpages/dashboard.php:292
6923
  #: adminpages/orders.php:1343
 
6924
  msgid "Level"
6925
  msgstr "Tipo"
6926
 
@@ -6979,6 +7042,7 @@ msgstr "Os pagamentos recorrentes são controlados pelo Paypal. Por favor <a hre
6979
  #: includes/profile.php:747
6980
  #: pages/billing.php:164
6981
  #: pages/checkout.php:234
 
6982
  msgid "First Name"
6983
  msgstr "Nome"
6984
 
@@ -6996,6 +7060,7 @@ msgstr "Nome"
6996
  #: includes/profile.php:748
6997
  #: pages/billing.php:168
6998
  #: pages/checkout.php:238
 
6999
  msgid "Last Name"
7000
  msgstr "Apelido"
7001
 
@@ -8072,6 +8137,7 @@ msgstr "O código <strong>%s</strong> foi aplicado ao seu pedido."
8072
  #: services/authnet-silent-post.php:138
8073
  #: services/authnet-silent-post.php:141
8074
  #: services/authnet-silent-post.php:173
 
8075
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
8076
  msgstr "<p>A Authorize.net está revisando o seu pagamento.</p><p> Informações de pagamento da Authorize.net </p>"
8077
 
@@ -8138,6 +8204,8 @@ msgstr "Editar Perfil"
8138
  #: includes/profile.php:872
8139
  #: includes/profile.php:909
8140
  #: shortcodes/pmpro_account.php:195
 
 
8141
  msgid "Change Password"
8142
  msgstr "Alterar Senha"
8143
 
@@ -8233,6 +8301,7 @@ msgstr "cada"
8233
  #: adminpages/advancedsettings.php:316
8234
  #: includes/privacy.php:175
8235
  #: includes/profile.php:509
 
8236
  msgid "Never"
8237
  msgstr "Nunca"
8238
 
@@ -8573,6 +8642,7 @@ msgstr ""
8573
 
8574
  #: adminpages/admin_header.php:152
8575
  #: classes/gateways/class.pmprogateway_stripe.php:76
 
8576
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
8577
  msgstr ""
8578
 
@@ -8845,6 +8915,7 @@ msgstr ""
8845
  #: adminpages/dashboard.php:177
8846
  #: adminpages/license.php:51
8847
  #: adminpages/dashboard.php:181
 
8848
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
8849
  msgstr ""
8850
 
@@ -9281,18 +9352,23 @@ msgid "Discount Code Applied"
9281
  msgstr ""
9282
 
9283
  #: adminpages/license.php:47
 
9284
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
9285
  msgstr ""
9286
 
9287
  #: adminpages/license.php:49
 
 
9288
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
9289
  msgstr ""
9290
 
9291
  #: adminpages/license.php:61
 
9292
  msgid "Validate Key"
9293
  msgstr ""
9294
 
9295
  #: adminpages/license.php:95
 
9296
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
9297
  msgstr ""
9298
 
@@ -9807,6 +9883,7 @@ msgstr ""
9807
 
9808
  #: classes/gateways/class.pmprogateway_braintree.php:87
9809
  #: classes/gateways/class.pmprogateway_stripe.php:91
 
9810
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
9811
  msgstr ""
9812
 
@@ -10104,6 +10181,7 @@ msgid "Your order has been refused."
10104
  msgstr ""
10105
 
10106
  #: classes/gateways/class.pmprogateway_cybersource.php:922
 
10107
  msgid "Unknown error."
10108
  msgstr ""
10109
 
@@ -10118,23 +10196,28 @@ msgstr ""
10118
  #: classes/gateways/class.pmprogateway_paypal.php:146
10119
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
10120
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
 
10121
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
10122
  msgstr ""
10123
 
10124
  #: classes/gateways/class.pmprogateway_paypal.php:185
10125
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
 
10126
  msgid "Confirmation Step"
10127
  msgstr ""
10128
 
10129
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
 
10130
  msgid "Checkout was already processed."
10131
  msgstr ""
10132
 
10133
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
 
10134
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
10135
  msgstr ""
10136
 
10137
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
 
10138
  msgid "Error creating plan with PayPal."
10139
  msgstr ""
10140
 
@@ -10146,11 +10229,14 @@ msgstr ""
10146
  #: classes/gateways/class.pmprogateway_stripe.php:436
10147
  #: classes/gateways/class.pmprogateway_stripe.php:354
10148
  #: classes/gateways/class.pmprogateway_stripe.php:444
 
 
10149
  msgid "Stripe Connect Settings"
10150
  msgstr ""
10151
 
10152
  #: classes/gateways/class.pmprogateway_stripe.php:352
10153
  #: classes/gateways/class.pmprogateway_stripe.php:356
 
10154
  msgid "Live Mode:"
10155
  msgstr ""
10156
 
@@ -10158,6 +10244,8 @@ msgstr ""
10158
  #: classes/gateways/class.pmprogateway_stripe.php:440
10159
  #: classes/gateways/class.pmprogateway_stripe.php:358
10160
  #: classes/gateways/class.pmprogateway_stripe.php:448
 
 
10161
  msgid "Connected"
10162
  msgstr ""
10163
 
@@ -10165,6 +10253,8 @@ msgstr ""
10165
  #: classes/gateways/class.pmprogateway_stripe.php:442
10166
  #: classes/gateways/class.pmprogateway_stripe.php:362
10167
  #: classes/gateways/class.pmprogateway_stripe.php:452
 
 
10168
  msgid "Not Connected"
10169
  msgstr ""
10170
 
@@ -10172,11 +10262,14 @@ msgstr ""
10172
  #: classes/gateways/class.pmprogateway_stripe.php:449
10173
  #: classes/gateways/class.pmprogateway_stripe.php:369
10174
  #: classes/gateways/class.pmprogateway_stripe.php:459
 
 
10175
  msgid "Your site is using legacy API keys to authenticate with Stripe."
10176
  msgstr ""
10177
 
10178
  #: classes/gateways/class.pmprogateway_stripe.php:364
10179
  #: classes/gateways/class.pmprogateway_stripe.php:371
 
10180
  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."
10181
  msgstr ""
10182
 
@@ -10184,6 +10277,8 @@ msgstr ""
10184
  #: classes/gateways/class.pmprogateway_stripe.php:458
10185
  #: classes/gateways/class.pmprogateway_stripe.php:380
10186
  #: classes/gateways/class.pmprogateway_stripe.php:470
 
 
10187
  msgid "Stripe Connection:"
10188
  msgstr ""
10189
 
@@ -10191,11 +10286,14 @@ msgstr ""
10191
  #: classes/gateways/class.pmprogateway_stripe.php:482
10192
  #: classes/gateways/class.pmprogateway_stripe.php:396
10193
  #: classes/gateways/class.pmprogateway_stripe.php:494
 
 
10194
  msgid "Disconnect From Stripe"
10195
  msgstr ""
10196
 
10197
  #: classes/gateways/class.pmprogateway_stripe.php:389
10198
  #: classes/gateways/class.pmprogateway_stripe.php:397
 
10199
  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."
10200
  msgstr ""
10201
 
@@ -10203,16 +10301,20 @@ msgstr ""
10203
  #: classes/gateways/class.pmprogateway_stripe.php:496
10204
  #: classes/gateways/class.pmprogateway_stripe.php:409
10205
  #: classes/gateways/class.pmprogateway_stripe.php:508
 
 
10206
  msgid "Connect with Stripe"
10207
  msgstr ""
10208
 
10209
  #: classes/gateways/class.pmprogateway_stripe.php:408
10210
  #: classes/gateways/class.pmprogateway_stripe.php:416
 
10211
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
10212
  msgstr ""
10213
 
10214
  #: classes/gateways/class.pmprogateway_stripe.php:411
10215
  #: classes/gateways/class.pmprogateway_stripe.php:419
 
10216
  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."
10217
  msgstr ""
10218
 
@@ -10223,6 +10325,9 @@ msgstr ""
10223
  #: classes/gateways/class.pmprogateway_stripe.php:519
10224
  #: classes/gateways/class.pmprogateway_stripe.php:559
10225
  #: classes/gateways/class.pmprogateway_stripe.php:578
 
 
 
10226
  msgid "Webhook"
10227
  msgstr ""
10228
 
@@ -10233,32 +10338,40 @@ msgstr ""
10233
  #: classes/gateways/class.pmprogateway_stripe.php:523
10234
  #: classes/gateways/class.pmprogateway_stripe.php:594
10235
  #: classes/gateways/class.pmprogateway_stripe.php:613
 
 
 
10236
  msgid "Webhook URL"
10237
  msgstr ""
10238
 
10239
  #: classes/gateways/class.pmprogateway_stripe.php:438
10240
  #: classes/gateways/class.pmprogateway_stripe.php:446
 
10241
  msgid "Test Mode:"
10242
  msgstr ""
10243
 
10244
  #: classes/gateways/class.pmprogateway_stripe.php:450
10245
  #: classes/gateways/class.pmprogateway_stripe.php:461
 
10246
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
10247
  msgstr ""
10248
 
10249
  #: classes/gateways/class.pmprogateway_stripe.php:483
10250
  #: classes/gateways/class.pmprogateway_stripe.php:495
 
10251
  msgid "This will disconnect your site from Stripe in test mode only."
10252
  msgstr ""
10253
 
10254
  #: classes/gateways/class.pmprogateway_stripe.php:518
10255
  #: classes/gateways/class.pmprogateway_stripe.php:530
 
10256
  msgid "Stripe API Settings (Legacy)"
10257
  msgstr ""
10258
 
10259
  #: classes/gateways/class.pmprogateway_stripe.php:531
10260
  #: classes/gateways/class.pmprogateway_stripe.php:543
10261
  #: classes/gateways/class.pmprogateway_stripe.php:562
 
10262
  msgid "Your Publishable Key appears incorrect."
10263
  msgstr ""
10264
 
@@ -10268,24 +10381,29 @@ msgstr ""
10268
  #: classes/gateways/class.pmprogateway_stripe.php:587
10269
  #: classes/gateways/class.pmprogateway_stripe.php:582
10270
  #: classes/gateways/class.pmprogateway_stripe.php:606
 
 
10271
  msgid "Create Webhook"
10272
  msgstr ""
10273
 
10274
  #: classes/gateways/class.pmprogateway_stripe.php:557
10275
  #: classes/gateways/class.pmprogateway_stripe.php:569
10276
  #: classes/gateways/class.pmprogateway_stripe.php:588
 
10277
  msgid "A webhook is set up in Stripe, but it is disabled."
10278
  msgstr ""
10279
 
10280
  #: classes/gateways/class.pmprogateway_stripe.php:564
10281
  #: classes/gateways/class.pmprogateway_stripe.php:576
10282
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
10283
  msgid "A webhook is set up in Stripe, but it is using an old API version."
10284
  msgstr ""
10285
 
10286
  #: classes/gateways/class.pmprogateway_stripe.php:564
10287
  #: classes/gateways/class.pmprogateway_stripe.php:576
10288
  #: classes/gateways/class.pmprogateway_stripe.php:595
 
10289
  msgid "Rebuild Webhook"
10290
  msgstr ""
10291
 
@@ -10298,12 +10416,16 @@ msgstr ""
10298
  #: classes/gateways/class.pmprogateway_stripe.php:601
10299
  #: classes/gateways/class.pmprogateway_stripe.php:741
10300
  #: classes/gateways/class.pmprogateway_stripe.php:857
 
 
 
10301
  msgid "Your webhook is enabled."
10302
  msgstr ""
10303
 
10304
  #: classes/gateways/class.pmprogateway_stripe.php:570
10305
  #: classes/gateways/class.pmprogateway_stripe.php:582
10306
  #: classes/gateways/class.pmprogateway_stripe.php:601
 
10307
  msgid "Disable Webhook"
10308
  msgstr ""
10309
 
@@ -10319,66 +10441,80 @@ msgstr ""
10319
  #: classes/gateways/class.pmprogateway_stripe.php:768
10320
  #: classes/gateways/class.pmprogateway_stripe.php:785
10321
  #: classes/gateways/class.pmprogateway_stripe.php:819
 
 
 
 
10322
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
10323
  msgstr ""
10324
 
10325
  #: classes/gateways/class.pmprogateway_stripe.php:589
10326
  #: classes/gateways/class.pmprogateway_stripe.php:601
10327
  #: classes/gateways/class.pmprogateway_stripe.php:620
 
10328
  msgid "Other Stripe Settings"
10329
  msgstr ""
10330
 
10331
  #: classes/gateways/class.pmprogateway_stripe.php:593
10332
  #: classes/gateways/class.pmprogateway_stripe.php:605
10333
  #: classes/gateways/class.pmprogateway_stripe.php:624
 
10334
  msgid "Stripe API Version"
10335
  msgstr ""
10336
 
10337
  #: classes/gateways/class.pmprogateway_stripe.php:612
10338
  #: classes/gateways/class.pmprogateway_stripe.php:624
10339
  #: classes/gateways/class.pmprogateway_stripe.php:643
 
10340
  msgid "Enable Payment Request Button"
10341
  msgstr ""
10342
 
10343
  #: classes/gateways/class.pmprogateway_stripe.php:630
10344
  #: classes/gateways/class.pmprogateway_stripe.php:642
10345
  #: classes/gateways/class.pmprogateway_stripe.php:661
 
10346
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
10347
  msgstr ""
10348
 
10349
  #: classes/gateways/class.pmprogateway_stripe.php:643
10350
  #: classes/gateways/class.pmprogateway_stripe.php:655
10351
  #: classes/gateways/class.pmprogateway_stripe.php:674
 
10352
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
10353
  msgstr ""
10354
 
10355
  #: classes/gateways/class.pmprogateway_stripe.php:645
10356
  #: classes/gateways/class.pmprogateway_stripe.php:657
10357
  #: classes/gateways/class.pmprogateway_stripe.php:676
 
10358
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
10359
  msgstr ""
10360
 
10361
  #: classes/gateways/class.pmprogateway_stripe.php:647
10362
  #: classes/gateways/class.pmprogateway_stripe.php:659
10363
  #: classes/gateways/class.pmprogateway_stripe.php:678
 
10364
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
10365
  msgstr ""
10366
 
10367
  #: classes/gateways/class.pmprogateway_stripe.php:649
10368
  #: classes/gateways/class.pmprogateway_stripe.php:661
10369
  #: classes/gateways/class.pmprogateway_stripe.php:680
 
10370
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
10371
  msgstr ""
10372
 
10373
  #: classes/gateways/class.pmprogateway_stripe.php:674
10374
  #: classes/gateways/class.pmprogateway_stripe.php:686
10375
  #: classes/gateways/class.pmprogateway_stripe.php:705
 
10376
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
10377
  msgstr ""
10378
 
10379
  #: classes/gateways/class.pmprogateway_stripe.php:695
10380
  #: classes/gateways/class.pmprogateway_stripe.php:707
10381
  #: classes/gateways/class.pmprogateway_stripe.php:726
 
10382
  msgid "Webhook creation failed. You might already have a webhook set up."
10383
  msgstr ""
10384
 
@@ -10388,36 +10524,43 @@ msgstr ""
10388
  #: classes/gateways/class.pmprogateway_stripe.php:847
10389
  #: classes/gateways/class.pmprogateway_stripe.php:792
10390
  #: classes/gateways/class.pmprogateway_stripe.php:866
 
 
10391
  msgid "There was an error deleting the webhook."
10392
  msgstr ""
10393
 
10394
  #: classes/gateways/class.pmprogateway_stripe.php:811
10395
  #: classes/gateways/class.pmprogateway_stripe.php:823
10396
  #: classes/gateways/class.pmprogateway_stripe.php:842
 
10397
  msgid "Webhook creation failed. Please refresh and try again."
10398
  msgstr ""
10399
 
10400
  #: classes/gateways/class.pmprogateway_stripe.php:867
10401
  #: classes/gateways/class.pmprogateway_stripe.php:879
10402
  #: classes/gateways/class.pmprogateway_stripe.php:898
 
10403
  msgid "Verification steps confirmed. Your payment is processing."
10404
  msgstr ""
10405
 
10406
  #: classes/gateways/class.pmprogateway_stripe.php:1262
10407
  #: classes/gateways/class.pmprogateway_stripe.php:1274
10408
  #: classes/gateways/class.pmprogateway_stripe.php:1293
 
10409
  msgid "Pay with Credit Card"
10410
  msgstr ""
10411
 
10412
  #: classes/gateways/class.pmprogateway_stripe.php:1296
10413
  #: classes/gateways/class.pmprogateway_stripe.php:1308
10414
  #: classes/gateways/class.pmprogateway_stripe.php:1327
 
10415
  msgid "CVC"
10416
  msgstr ""
10417
 
10418
  #: classes/gateways/class.pmprogateway_stripe.php:1374
10419
  #: classes/gateways/class.pmprogateway_stripe.php:1386
10420
  #: classes/gateways/class.pmprogateway_stripe.php:1405
 
10421
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
10422
  msgstr ""
10423
 
@@ -10433,6 +10576,10 @@ msgstr ""
10433
  #: classes/gateways/class.pmprogateway_stripe.php:2016
10434
  #: classes/gateways/class.pmprogateway_stripe.php:2029
10435
  #: classes/gateways/class.pmprogateway_stripe.php:2033
 
 
 
 
10436
  msgid "Error: %s"
10437
  msgstr ""
10438
 
@@ -10442,30 +10589,35 @@ msgstr ""
10442
  #: classes/gateways/class.pmprogateway_stripe.php:2834
10443
  #: classes/gateways/class.pmprogateway_stripe.php:2850
10444
  #: classes/gateways/class.pmprogateway_stripe.php:2856
 
10445
  msgid "Error: "
10446
  msgstr ""
10447
 
10448
  #: classes/gateways/class.pmprogateway_stripe.php:2836
10449
  #: classes/gateways/class.pmprogateway_stripe.php:2848
10450
  #: classes/gateways/class.pmprogateway_stripe.php:2870
 
10451
  msgid "Error: Unkown error while refunding charge #%s"
10452
  msgstr ""
10453
 
10454
  #: classes/gateways/class.pmprogateway_stripe.php:3330
10455
  #: classes/gateways/class.pmprogateway_stripe.php:3342
10456
  #: classes/gateways/class.pmprogateway_stripe.php:3364
 
10457
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
10458
  msgstr ""
10459
 
10460
  #: classes/gateways/class.pmprogateway_stripe.php:3347
10461
  #: classes/gateways/class.pmprogateway_stripe.php:3359
10462
  #: classes/gateways/class.pmprogateway_stripe.php:3381
 
10463
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
10464
  msgstr ""
10465
 
10466
  #: classes/gateways/class.pmprogateway_stripe.php:3533
10467
  #: classes/gateways/class.pmprogateway_stripe.php:3545
10468
  #: classes/gateways/class.pmprogateway_stripe.php:3567
 
10469
  msgid "Invalid response from the Stripe Connect server."
10470
  msgstr ""
10471
 
@@ -10473,6 +10625,7 @@ msgstr ""
10473
  #: classes/gateways/class.pmprogateway_stripe.php:3561
10474
  #: classes/gateways/class.pmprogateway_stripe.php:3573
10475
  #: classes/gateways/class.pmprogateway_stripe.php:3595
 
10476
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
10477
  msgstr ""
10478
 
@@ -10480,30 +10633,35 @@ msgstr ""
10480
  #: classes/gateways/class.pmprogateway_stripe.php:3597
10481
  #: classes/gateways/class.pmprogateway_stripe.php:3609
10482
  #: classes/gateways/class.pmprogateway_stripe.php:3631
 
10483
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
10484
  msgstr ""
10485
 
10486
  #: classes/gateways/class.pmprogateway_stripe.php:3768
10487
  #: classes/gateways/class.pmprogateway_stripe.php:3780
10488
  #: classes/gateways/class.pmprogateway_stripe.php:3802
 
10489
  msgid "Last webhook received at"
10490
  msgstr ""
10491
 
10492
  #: classes/gateways/class.pmprogateway_stripe.php:3770
10493
  #: classes/gateways/class.pmprogateway_stripe.php:3782
10494
  #: classes/gateways/class.pmprogateway_stripe.php:3804
 
10495
  msgid "No webhooks have been received."
10496
  msgstr ""
10497
 
10498
  #: classes/gateways/class.pmprogateway_stripe.php:3774
10499
  #: classes/gateways/class.pmprogateway_stripe.php:3786
10500
  #: classes/gateways/class.pmprogateway_stripe.php:3808
 
10501
  msgid "Your webhook may not be working correctly."
10502
  msgstr ""
10503
 
10504
  #: classes/gateways/class.pmprogateway_stripe.php:3776
10505
  #: classes/gateways/class.pmprogateway_stripe.php:3788
10506
  #: classes/gateways/class.pmprogateway_stripe.php:3810
 
10507
  msgid "Click here for info on setting up your webhook with Stripe."
10508
  msgstr ""
10509
 
@@ -12608,11 +12766,13 @@ msgstr ""
12608
 
12609
  #: includes/login.php:429
12610
  #: includes/profile.php:843
 
12611
  msgid "New passwords do not match."
12612
  msgstr ""
12613
 
12614
  #: includes/login.php:433
12615
  #: includes/profile.php:839
 
12616
  msgid "Please complete all fields."
12617
  msgstr ""
12618
 
@@ -12642,17 +12802,21 @@ msgstr ""
12642
 
12643
  #: includes/login.php:688
12644
  #: includes/profile.php:891
 
12645
  msgid "New Password"
12646
  msgstr ""
12647
 
12648
  #: includes/login.php:690
12649
  #: includes/profile.php:894
12650
  #: includes/scripts.php:86
 
 
12651
  msgid "Strength Indicator"
12652
  msgstr ""
12653
 
12654
  #: includes/login.php:694
12655
  #: includes/profile.php:898
 
12656
  msgid "Confirm New Password"
12657
  msgstr ""
12658
 
@@ -12749,21 +12913,25 @@ msgstr ""
12749
  #: includes/privacy.php:182
12750
  #: includes/profile.php:425
12751
  #: includes/profile.php:493
 
12752
  msgid "Level ID"
12753
  msgstr ""
12754
 
12755
  #: includes/privacy.php:190
12756
  #: includes/profile.php:496
 
12757
  msgid "Date Modified"
12758
  msgstr ""
12759
 
12760
  #: includes/privacy.php:194
12761
  #: includes/profile.php:497
 
12762
  msgid "End Date"
12763
  msgstr ""
12764
 
12765
  #: includes/privacy.php:198
12766
  #: includes/profile.php:498
 
12767
  msgid "Level Cost"
12768
  msgstr ""
12769
 
@@ -12862,68 +13030,85 @@ msgid "Membership Levels History"
12862
  msgstr ""
12863
 
12864
  #: includes/profile.php:485
 
12865
  msgid "No membership orders found."
12866
  msgstr ""
12867
 
12868
  #: includes/profile.php:537
 
12869
  msgid "No membership history found."
12870
  msgstr ""
12871
 
12872
  #: includes/profile.php:644
 
12873
  msgid "Log in to edit your profile."
12874
  msgstr ""
12875
 
12876
  #: includes/profile.php:679
 
12877
  msgid "Please enter a display name."
12878
  msgstr ""
12879
 
12880
  #: includes/profile.php:689
 
12881
  msgid "
2
  # This file is distributed under the same license as the Paid Memberships Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Paid Memberships Pro 2.6.3\n"
6
  "Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
7
  "Last-Translator: Paid Memberships Pro <info@paidmembershipspro.com>\n"
8
  "Language-Team: Paid Memberships Pro <info@paidmembershipspro.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-10-11T14:00:56+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: paid-memberships-pro\n"
261
  #: adminpages/orders.php:1544
262
  #: adminpages/orders.php:1554
263
  #: adminpages/orders.php:1553
264
+ #: includes/profile.php:520
265
+ #: includes/profile.php:521
266
+ #: includes/profile.php:522
267
  msgid "N/A"
268
  msgstr "N/A"
269
 
447
  #: adminpages/orders.php:391
448
  #: adminpages/orders.php:1445
449
  #: adminpages/orders.php:1448
450
+ #: includes/profile.php:762
451
  msgid "Email"
452
  msgstr "E-mail"
453
 
636
  #: adminpages/advancedsettings.php:479
637
  #: classes/gateways/class.pmprogateway_stripe.php:634
638
  #: classes/gateways/class.pmprogateway_stripe.php:648
639
+ #: classes/gateways/class.pmprogateway_stripe.php:640
640
+ #: classes/gateways/class.pmprogateway_stripe.php:654
641
  msgid "No"
642
  msgstr "Não"
643
 
736
  #: adminpages/advancedsettings.php:397
737
  #: classes/gateways/class.pmprogateway_stripe.php:636
738
  #: classes/gateways/class.pmprogateway_stripe.php:650
739
+ #: classes/gateways/class.pmprogateway_stripe.php:642
740
+ #: classes/gateways/class.pmprogateway_stripe.php:656
741
  msgid "Yes"
742
  msgstr "Sim"
743
 
1020
  #: includes/privacy.php:186
1021
  #: includes/profile.php:495
1022
  #: adminpages/discountcodes.php:489
1023
+ #: includes/profile.php:501
1024
  msgid "Start Date"
1025
  msgstr "Data de Início"
1026
 
1055
  #: classes/gateways/class.pmprogateway_stripe.php:1301
1056
  #: adminpages/discountcodes.php:507
1057
  #: classes/gateways/class.pmprogateway_stripe.php:1320
1058
+ #: classes/gateways/class.pmprogateway_stripe.php:1326
1059
  msgid "Expiration Date"
1060
  msgstr "Data de Expiração"
1061
 
1195
  #: adminpages/discountcodes.php:612
1196
  #: adminpages/discountcodes.php:699
1197
  #: classes/gateways/class.pmprogateway_stripe.php:1363
1198
+ #: classes/gateways/class.pmprogateway_stripe.php:1369
1199
  msgid "Day(s)"
1200
  msgstr "Dia(s)"
1201
 
1229
  #: adminpages/discountcodes.php:612
1230
  #: adminpages/discountcodes.php:699
1231
  #: classes/gateways/class.pmprogateway_stripe.php:1365
1232
+ #: classes/gateways/class.pmprogateway_stripe.php:1371
1233
  msgid "Month(s)"
1234
  msgstr "Mes(es)"
1235
 
1263
  #: adminpages/discountcodes.php:612
1264
  #: adminpages/discountcodes.php:699
1265
  #: classes/gateways/class.pmprogateway_stripe.php:1364
1266
+ #: classes/gateways/class.pmprogateway_stripe.php:1370
1267
  msgid "Week(s)"
1268
  msgstr "Semana(s)"
1269
 
1297
  #: adminpages/discountcodes.php:612
1298
  #: adminpages/discountcodes.php:699
1299
  #: classes/gateways/class.pmprogateway_stripe.php:1366
1300
+ #: classes/gateways/class.pmprogateway_stripe.php:1372
1301
  msgid "Year(s)"
1302
  msgstr "Ano(s)"
1303
 
1896
  #: classes/gateways/class.pmprogateway_stripe.php:1478
1897
  #: adminpages/discountcodes.php:608
1898
  #: classes/gateways/class.pmprogateway_stripe.php:1497
1899
+ #: classes/gateways/class.pmprogateway_stripe.php:1503
1900
  msgid "per"
1901
  msgstr "por"
1902
 
2112
  #: pages/cancel.php:96
2113
  #: shortcodes/pmpro_account.php:106
2114
  #: adminpages/orders.php:968
2115
+ #: includes/profile.php:798
2116
+ #: includes/profile.php:922
2117
  msgid "Cancel"
2118
  msgstr "Cancelar"
2119
 
2790
  #: adminpages/orders.php:679
2791
  #: classes/gateways/class.pmprogateway_stripe.php:1284
2792
  #: classes/gateways/class.pmprogateway_stripe.php:1303
2793
+ #: classes/gateways/class.pmprogateway_stripe.php:1309
2794
  msgid "Card Type"
2795
  msgstr "Tipo do Cartão"
2796
 
2871
  #: adminpages/dashboard.php:294
2872
  #: adminpages/orders.php:742
2873
  #: adminpages/orders.php:1348
2874
+ #: includes/profile.php:505
2875
  msgid "Status"
2876
  msgstr "Estado"
2877
 
4293
  #: classes/class.pmproemail.php:769
4294
  #: classes/class.pmproemail.php:771
4295
  #: classes/gateways/class.pmprogateway_stripe.php:1333
4296
+ #: classes/gateways/class.pmprogateway_stripe.php:1339
4297
  msgid "Discount Code"
4298
  msgstr "Código de Desconto"
4299
 
4749
  #: pages/checkout.php:366
4750
  #: classes/gateways/class.pmprogateway_stripe.php:1263
4751
  #: classes/gateways/class.pmprogateway_stripe.php:1282
4752
+ #: classes/gateways/class.pmprogateway_stripe.php:1288
4753
  msgid "Payment Information"
4754
  msgstr "Informações de Pagamento"
4755
 
4774
  #: pages/checkout.php:367
4775
  #: classes/gateways/class.pmprogateway_stripe.php:1264
4776
  #: classes/gateways/class.pmprogateway_stripe.php:1283
4777
+ #: classes/gateways/class.pmprogateway_stripe.php:1289
4778
  #, php-format
4779
  msgid "We Accept %s"
4780
  msgstr "Aceitamos %s"
4805
  #: pages/checkout.php:389
4806
  #: classes/gateways/class.pmprogateway_stripe.php:1297
4807
  #: classes/gateways/class.pmprogateway_stripe.php:1316
4808
+ #: classes/gateways/class.pmprogateway_stripe.php:1322
4809
  msgid "Card Number"
4810
  msgstr "Número do Cartão"
4811
 
4887
  #: pages/checkout.php:432
4888
  #: classes/gateways/class.pmprogateway_stripe.php:1319
4889
  #: classes/gateways/class.pmprogateway_stripe.php:1338
4890
+ #: classes/gateways/class.pmprogateway_stripe.php:1344
4891
  msgid "Apply"
4892
  msgstr "Aplicar"
4893
 
5138
  #: classes/gateways/class.pmprogateway_paypal.php:132
5139
  #: classes/gateways/class.pmprogateway_paypalexpress.php:141
5140
  #: classes/gateways/class.pmprogateway_paypalstandard.php:133
5141
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:151
5142
  msgid "PayPal Settings"
5143
  msgstr "Configurações do PayPal"
5144
 
5160
  #: classes/gateways/class.pmprogateway_paypal.php:153
5161
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
5162
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
5163
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:172
5164
  msgid "Gateway Account Email"
5165
  msgstr "E-mail da conta do Gateway de Pagamento"
5166
 
5180
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
5181
  #: classes/gateways/class.pmprogateway_paypalstandard.php:162
5182
  #: classes/gateways/class.pmprogateway_twocheckout.php:120
5183
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:180
5184
  msgid "API Username"
5185
  msgstr "API Username (Nome de Utilizador no API)"
5186
 
5200
  #: classes/gateways/class.pmprogateway_paypalexpress.php:178
5201
  #: classes/gateways/class.pmprogateway_paypalstandard.php:170
5202
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
5203
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:188
5204
  msgid "API Password"
5205
  msgstr "API Password (Senha no API)"
5206
 
5214
  #: classes/gateways/class.pmprogateway_paypal.php:177
5215
  #: classes/gateways/class.pmprogateway_paypalexpress.php:186
5216
  #: classes/gateways/class.pmprogateway_paypalstandard.php:178
5217
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:196
5218
  msgid "API Signature"
5219
  msgstr "API Signature (Assinatura no API)"
5220
 
5229
  #: classes/gateways/class.pmprogateway_paypal.php:196
5230
  #: classes/gateways/class.pmprogateway_paypalexpress.php:205
5231
  #: classes/gateways/class.pmprogateway_paypalstandard.php:186
5232
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:215
5233
  msgid "IPN Handler URL"
5234
  msgstr "IPN Handler URL"
5235
 
5255
  #: classes/gateways/class.pmprogateway_paypalexpress.php:488
5256
  #: classes/gateways/class.pmprogateway_paypalstandard.php:241
5257
  #: pages/checkout.php:218
5258
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:498
5259
  msgid "Check Out with PayPal"
5260
  msgstr "Pagar pelo PayPal"
5261
 
5275
  #: classes/gateways/class.pmprogateway_paypalexpress.php:493
5276
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5277
  #: pages/checkout.php:526
5278
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
5279
  msgid "Submit and Check Out"
5280
  msgstr "Enviar e Fazer Checkout"
5281
 
5299
  #: classes/gateways/class.pmprogateway_paypalstandard.php:246
5300
  #: classes/gateways/class.pmprogateway_twocheckout.php:205
5301
  #: pages/checkout.php:526
5302
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:503
5303
  msgid "Submit and Confirm"
5304
  msgstr "Enviar e Confirmar"
5305
 
5321
  #: classes/gateways/class.pmprogateway_paypal.php:716
5322
  #: classes/gateways/class.pmprogateway_paypalexpress.php:831
5323
  #: classes/gateways/class.pmprogateway_paypalstandard.php:588
5324
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:841
5325
  msgid "Please contact the site owner or cancel your subscription from within PayPal to make sure you are not charged going forward."
5326
  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."
5327
 
5335
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
5336
  #: paid-memberships-pro.php:160
5337
  #: paid-memberships-pro.php:162
5338
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:94
5339
  msgid "PayPal Express"
5340
  msgstr ""
5341
 
5347
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
5348
  #: classes/gateways/class.pmprogateway_paypal.php:199
5349
  #: classes/gateways/class.pmprogateway_paypalexpress.php:208
5350
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:218
5351
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
5352
  msgstr "Para integrar completamente com o Paypal, assegure-se de apontar o seu IPN Handler URL para"
5353
 
5369
  #: preheaders/checkout.php:823
5370
  #: classes/gateways/class.pmprogateway_paypalexpress.php:342
5371
  #: classes/gateways/class.pmprogateway_paypalexpress.php:401
5372
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:352
5373
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:411
5374
  msgid "The PayPal Token was lost."
5375
  msgstr "O Token do PayPal foi perdido."
5376
 
5408
  #: classes/gateways/class.pmprogateway_stripe.php:252
5409
  #: paid-memberships-pro.php:159
5410
  #: paid-memberships-pro.php:161
5411
+ #: classes/gateways/class.pmprogateway_stripe.php:258
5412
  msgid "Stripe"
5413
  msgstr ""
5414
 
5429
  #: classes/gateways/class.pmprogateway_stripe.php:539
5430
  #: classes/gateways/class.pmprogateway_stripe.php:551
5431
  #: classes/gateways/class.pmprogateway_stripe.php:570
5432
+ #: classes/gateways/class.pmprogateway_stripe.php:576
5433
  msgid "Secret Key"
5434
  msgstr "Secret Key (Chave Secreta)"
5435
 
5443
  #: classes/gateways/class.pmprogateway_stripe.php:523
5444
  #: classes/gateways/class.pmprogateway_stripe.php:535
5445
  #: classes/gateways/class.pmprogateway_stripe.php:554
5446
+ #: classes/gateways/class.pmprogateway_stripe.php:560
5447
  msgid "Publishable Key"
5448
  msgstr "Publishable Key (Chave Publica)"
5449
 
5457
  #: classes/gateways/class.pmprogateway_stripe.php:598
5458
  #: classes/gateways/class.pmprogateway_stripe.php:610
5459
  #: classes/gateways/class.pmprogateway_stripe.php:629
5460
+ #: classes/gateways/class.pmprogateway_stripe.php:635
5461
  msgid "Show Billing Address Fields"
5462
  msgstr "Mostrar Campos de Endereço da Faturação"
5463
 
5470
  #: classes/gateways/class.pmprogateway_stripe.php:607
5471
  #: classes/gateways/class.pmprogateway_stripe.php:619
5472
  #: classes/gateways/class.pmprogateway_stripe.php:638
5473
+ #: classes/gateways/class.pmprogateway_stripe.php:644
5474
  msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
5475
  msgstr ""
5476
 
5493
  #: classes/gateways/class.pmprogateway_stripe.php:1379
5494
  #: classes/gateways/class.pmprogateway_stripe.php:1391
5495
  #: classes/gateways/class.pmprogateway_stripe.php:1410
5496
+ #: classes/gateways/class.pmprogateway_stripe.php:1416
5497
  msgid "Subscription Updates"
5498
  msgstr "Atualizações de subscrições"
5499
 
5505
  #: classes/gateways/class.pmprogateway_stripe.php:1383
5506
  #: classes/gateways/class.pmprogateway_stripe.php:1395
5507
  #: classes/gateways/class.pmprogateway_stripe.php:1414
5508
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
5509
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update Profile after making changes."
5510
  msgstr ""
5511
 
5517
  #: classes/gateways/class.pmprogateway_stripe.php:1385
5518
  #: classes/gateways/class.pmprogateway_stripe.php:1397
5519
  #: classes/gateways/class.pmprogateway_stripe.php:1416
5520
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
5521
  msgid "Subscription updates, allow you to change the member's subscription values at predefined times. Be sure to click Update User after making changes."
5522
  msgstr ""
5523
 
5536
  #: pages/billing.php:425
5537
  #: classes/gateways/class.pmprogateway_stripe.php:1403
5538
  #: classes/gateways/class.pmprogateway_stripe.php:1422
5539
+ #: classes/gateways/class.pmprogateway_stripe.php:1428
5540
  msgid "Update"
5541
  msgstr "Atualizar"
5542
 
5548
  #: classes/gateways/class.pmprogateway_stripe.php:2480
5549
  #: classes/gateways/class.pmprogateway_stripe.php:2492
5550
  #: classes/gateways/class.pmprogateway_stripe.php:2514
5551
+ #: classes/gateways/class.pmprogateway_stripe.php:2520
5552
  msgid "Could not cancel the old subscription. Updates have not been processed."
5553
  msgstr "Não foi possível cancelar a assinatura antiga. Atualizações não foram processadas."
5554
 
5573
  #: classes/gateways/class.pmprogateway_stripe.php:2127
5574
  #: classes/gateways/class.pmprogateway_stripe.php:2132
5575
  #: classes/gateways/class.pmprogateway_stripe.php:2137
5576
+ #: classes/gateways/class.pmprogateway_stripe.php:2133
5577
+ #: classes/gateways/class.pmprogateway_stripe.php:2138
5578
+ #: classes/gateways/class.pmprogateway_stripe.php:2143
5579
  msgid "Error creating customer record with Stripe:"
5580
  msgstr "Erro ao criar o cliente no Stripe:"
5581
 
5587
  #: classes/gateways/class.pmprogateway_stripe.php:2182
5588
  #: classes/gateways/class.pmprogateway_stripe.php:2196
5589
  #: classes/gateways/class.pmprogateway_stripe.php:2201
5590
+ #: classes/gateways/class.pmprogateway_stripe.php:2202
5591
+ #: classes/gateways/class.pmprogateway_stripe.php:2207
5592
  msgid "Error getting subscription with Stripe:"
5593
  msgstr "Erro ao fazer subscrição com o Stripe:"
5594
 
5618
  #: classes/gateways/class.pmprogateway_stripe.php:2356
5619
  #: classes/gateways/class.pmprogateway_stripe.php:2373
5620
  #: classes/gateways/class.pmprogateway_stripe.php:2378
5621
+ #: classes/gateways/class.pmprogateway_stripe.php:2379
5622
+ #: classes/gateways/class.pmprogateway_stripe.php:2384
5623
  msgid "Error creating plan with Stripe:"
5624
  msgstr "Erro ao criar o plano no Stripe:"
5625
 
5644
  #: classes/gateways/class.pmprogateway_stripe.php:2401
5645
  #: classes/gateways/class.pmprogateway_stripe.php:2409
5646
  #: classes/gateways/class.pmprogateway_stripe.php:2423
5647
+ #: classes/gateways/class.pmprogateway_stripe.php:2415
5648
+ #: classes/gateways/class.pmprogateway_stripe.php:2429
5649
  msgid "Error subscribing customer to plan with Stripe:"
5650
  msgstr "Erro ao associar cliente ao plano no Stripe:"
5651
 
5664
  #: classes/gateways/class.pmprogateway_stripe.php:2632
5665
  #: classes/gateways/class.pmprogateway_stripe.php:2644
5666
  #: classes/gateways/class.pmprogateway_stripe.php:2666
5667
+ #: classes/gateways/class.pmprogateway_stripe.php:2672
5668
  msgid "Could not cancel old subscription."
5669
  msgstr "Não foi possível cancelar a assinatura antiga."
5670
 
5680
  #: classes/gateways/class.pmprogateway_stripe.php:2648
5681
  #: classes/gateways/class.pmprogateway_stripe.php:2660
5682
  #: classes/gateways/class.pmprogateway_stripe.php:2682
5683
+ #: classes/gateways/class.pmprogateway_stripe.php:2688
5684
  msgid "Could not find the customer."
5685
  msgstr "Cliente não encontrado."
5686
 
6749
 
6750
  #: includes/license.php:81
6751
  #: adminpages/license.php:43
6752
+ #: adminpages/license.php:33
6753
  msgid "Paid Memberships Pro Support License"
6754
  msgstr "Licença de suporte do Paid Memberships Pro"
6755
 
6769
  #: adminpages/dashboard.php:174
6770
  #: adminpages/license.php:49
6771
  #: adminpages/dashboard.php:178
6772
+ #: adminpages/license.php:41
6773
  msgid "Your license is invalid or expired."
6774
  msgstr "Sua licença está inválida ou expirada."
6775
 
6780
 
6781
  #: includes/license.php:100
6782
  #: adminpages/license.php:59
6783
+ #: adminpages/license.php:51
6784
  msgid "Enter license key here..."
6785
  msgstr "Entre com a chave de licença aqui..."
6786
 
6983
  #: adminpages/dashboard.php:224
6984
  #: adminpages/dashboard.php:292
6985
  #: adminpages/orders.php:1343
6986
+ #: includes/profile.php:500
6987
  msgid "Level"
6988
  msgstr "Tipo"
6989
 
7042
  #: includes/profile.php:747
7043
  #: pages/billing.php:164
7044
  #: pages/checkout.php:234
7045
+ #: includes/profile.php:759
7046
  msgid "First Name"
7047
  msgstr "Nome"
7048
 
7060
  #: includes/profile.php:748
7061
  #: pages/billing.php:168
7062
  #: pages/checkout.php:238
7063
+ #: includes/profile.php:760
7064
  msgid "Last Name"
7065
  msgstr "Apelido"
7066
 
8137
  #: services/authnet-silent-post.php:138
8138
  #: services/authnet-silent-post.php:141
8139
  #: services/authnet-silent-post.php:173
8140
+ #: services/authnet-silent-post.php:176
8141
  msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
8142
  msgstr "<p>A Authorize.net está revisando o seu pagamento.</p><p> Informações de pagamento da Authorize.net </p>"
8143
 
8204
  #: includes/profile.php:872
8205
  #: includes/profile.php:909
8206
  #: shortcodes/pmpro_account.php:195
8207
+ #: includes/profile.php:884
8208
+ #: includes/profile.php:921
8209
  msgid "Change Password"
8210
  msgstr "Alterar Senha"
8211
 
8301
  #: adminpages/advancedsettings.php:316
8302
  #: includes/privacy.php:175
8303
  #: includes/profile.php:509
8304
+ #: includes/profile.php:515
8305
  msgid "Never"
8306
  msgstr "Nunca"
8307
 
8642
 
8643
  #: adminpages/admin_header.php:152
8644
  #: classes/gateways/class.pmprogateway_stripe.php:76
8645
+ #: classes/gateways/class.pmprogateway_stripe.php:82
8646
  msgid "The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to PHP %s or greater. Ask your host to upgrade."
8647
  msgstr ""
8648
 
8915
  #: adminpages/dashboard.php:177
8916
  #: adminpages/license.php:51
8917
  #: adminpages/dashboard.php:181
8918
+ #: adminpages/license.php:43
8919
  msgid "<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site."
8920
  msgstr ""
8921
 
9352
  msgstr ""
9353
 
9354
  #: adminpages/license.php:47
9355
+ #: adminpages/license.php:39
9356
  msgid "Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership Account</a>."
9357
  msgstr ""
9358
 
9359
  #: adminpages/license.php:49
9360
+ #: adminpages/license.php:37
9361
+ #: adminpages/license.php:41
9362
  msgid "Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> page to confirm that your account is active and to find your license key."
9363
  msgstr ""
9364
 
9365
  #: adminpages/license.php:61
9366
+ #: adminpages/license.php:53
9367
  msgid "Validate Key"
9368
  msgstr ""
9369
 
9370
  #: adminpages/license.php:95
9371
+ #: adminpages/license.php:87
9372
  msgid "Paid Memberships Pro and our Add Ons are distributed under the <a href=\"%s\" title=\"GPLv2 license\" target=\"_blank\">GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge."
9373
  msgstr ""
9374
 
9883
 
9884
  #: classes/gateways/class.pmprogateway_braintree.php:87
9885
  #: classes/gateways/class.pmprogateway_stripe.php:91
9886
+ #: classes/gateways/class.pmprogateway_stripe.php:97
9887
  msgid "The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it."
9888
  msgstr ""
9889
 
10181
  msgstr ""
10182
 
10183
  #: classes/gateways/class.pmprogateway_cybersource.php:922
10184
+ #: includes/license.php:159
10185
  msgid "Unknown error."
10186
  msgstr ""
10187
 
10196
  #: classes/gateways/class.pmprogateway_paypal.php:146
10197
  #: classes/gateways/class.pmprogateway_paypalexpress.php:155
10198
  #: classes/gateways/class.pmprogateway_paypalstandard.php:147
10199
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:165
10200
  msgid "Note: We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"%s\" title=\"More information on why can be found here\">More information on why can be found here</a>."
10201
  msgstr ""
10202
 
10203
  #: classes/gateways/class.pmprogateway_paypal.php:185
10204
  #: classes/gateways/class.pmprogateway_paypalexpress.php:194
10205
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:204
10206
  msgid "Confirmation Step"
10207
  msgstr ""
10208
 
10209
  #: classes/gateways/class.pmprogateway_paypalexpress.php:346
10210
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:356
10211
  msgid "Checkout was already processed."
10212
  msgstr ""
10213
 
10214
  #: classes/gateways/class.pmprogateway_paypalexpress.php:781
10215
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:791
10216
  msgid "Something went wrong creating plan with PayPal; missing PROFILESTATUS."
10217
  msgstr ""
10218
 
10219
  #: classes/gateways/class.pmprogateway_paypalexpress.php:782
10220
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:792
10221
  msgid "Error creating plan with PayPal."
10222
  msgstr ""
10223
 
10229
  #: classes/gateways/class.pmprogateway_stripe.php:436
10230
  #: classes/gateways/class.pmprogateway_stripe.php:354
10231
  #: classes/gateways/class.pmprogateway_stripe.php:444
10232
+ #: classes/gateways/class.pmprogateway_stripe.php:360
10233
+ #: classes/gateways/class.pmprogateway_stripe.php:450
10234
  msgid "Stripe Connect Settings"
10235
  msgstr ""
10236
 
10237
  #: classes/gateways/class.pmprogateway_stripe.php:352
10238
  #: classes/gateways/class.pmprogateway_stripe.php:356
10239
+ #: classes/gateways/class.pmprogateway_stripe.php:362
10240
  msgid "Live Mode:"
10241
  msgstr ""
10242
 
10244
  #: classes/gateways/class.pmprogateway_stripe.php:440
10245
  #: classes/gateways/class.pmprogateway_stripe.php:358
10246
  #: classes/gateways/class.pmprogateway_stripe.php:448
10247
+ #: classes/gateways/class.pmprogateway_stripe.php:364
10248
+ #: classes/gateways/class.pmprogateway_stripe.php:454
10249
  msgid "Connected"
10250
  msgstr ""
10251
 
10253
  #: classes/gateways/class.pmprogateway_stripe.php:442
10254
  #: classes/gateways/class.pmprogateway_stripe.php:362
10255
  #: classes/gateways/class.pmprogateway_stripe.php:452
10256
+ #: classes/gateways/class.pmprogateway_stripe.php:368
10257
+ #: classes/gateways/class.pmprogateway_stripe.php:458
10258
  msgid "Not Connected"
10259
  msgstr ""
10260
 
10262
  #: classes/gateways/class.pmprogateway_stripe.php:449
10263
  #: classes/gateways/class.pmprogateway_stripe.php:369
10264
  #: classes/gateways/class.pmprogateway_stripe.php:459
10265
+ #: classes/gateways/class.pmprogateway_stripe.php:375
10266
+ #: classes/gateways/class.pmprogateway_stripe.php:465
10267
  msgid "Your site is using legacy API keys to authenticate with Stripe."
10268
  msgstr ""
10269
 
10270
  #: classes/gateways/class.pmprogateway_stripe.php:364
10271
  #: classes/gateways/class.pmprogateway_stripe.php:371
10272
+ #: classes/gateways/class.pmprogateway_stripe.php:377
10273
  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."
10274
  msgstr ""
10275
 
10277
  #: classes/gateways/class.pmprogateway_stripe.php:458
10278
  #: classes/gateways/class.pmprogateway_stripe.php:380
10279
  #: classes/gateways/class.pmprogateway_stripe.php:470
10280
+ #: classes/gateways/class.pmprogateway_stripe.php:386
10281
+ #: classes/gateways/class.pmprogateway_stripe.php:476
10282
  msgid "Stripe Connection:"
10283
  msgstr ""
10284
 
10286
  #: classes/gateways/class.pmprogateway_stripe.php:482
10287
  #: classes/gateways/class.pmprogateway_stripe.php:396
10288
  #: classes/gateways/class.pmprogateway_stripe.php:494
10289
+ #: classes/gateways/class.pmprogateway_stripe.php:402
10290
+ #: classes/gateways/class.pmprogateway_stripe.php:500
10291
  msgid "Disconnect From Stripe"
10292
  msgstr ""
10293
 
10294
  #: classes/gateways/class.pmprogateway_stripe.php:389
10295
  #: classes/gateways/class.pmprogateway_stripe.php:397
10296
+ #: classes/gateways/class.pmprogateway_stripe.php:403
10297
  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."
10298
  msgstr ""
10299
 
10301
  #: classes/gateways/class.pmprogateway_stripe.php:496
10302
  #: classes/gateways/class.pmprogateway_stripe.php:409
10303
  #: classes/gateways/class.pmprogateway_stripe.php:508
10304
+ #: classes/gateways/class.pmprogateway_stripe.php:415
10305
+ #: classes/gateways/class.pmprogateway_stripe.php:514
10306
  msgid "Connect with Stripe"
10307
  msgstr ""
10308
 
10309
  #: classes/gateways/class.pmprogateway_stripe.php:408
10310
  #: classes/gateways/class.pmprogateway_stripe.php:416
10311
+ #: classes/gateways/class.pmprogateway_stripe.php:422
10312
  msgid "Note: You have a valid license and are not charged additional platform fees for payment processing."
10313
  msgstr ""
10314
 
10315
  #: classes/gateways/class.pmprogateway_stripe.php:411
10316
  #: classes/gateways/class.pmprogateway_stripe.php:419
10317
+ #: classes/gateways/class.pmprogateway_stripe.php:425
10318
  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."
10319
  msgstr ""
10320
 
10325
  #: classes/gateways/class.pmprogateway_stripe.php:519
10326
  #: classes/gateways/class.pmprogateway_stripe.php:559
10327
  #: classes/gateways/class.pmprogateway_stripe.php:578
10328
+ #: classes/gateways/class.pmprogateway_stripe.php:437
10329
+ #: classes/gateways/class.pmprogateway_stripe.php:525
10330
+ #: classes/gateways/class.pmprogateway_stripe.php:584
10331
  msgid "Webhook"
10332
  msgstr ""
10333
 
10338
  #: classes/gateways/class.pmprogateway_stripe.php:523
10339
  #: classes/gateways/class.pmprogateway_stripe.php:594
10340
  #: classes/gateways/class.pmprogateway_stripe.php:613
10341
+ #: classes/gateways/class.pmprogateway_stripe.php:441
10342
+ #: classes/gateways/class.pmprogateway_stripe.php:529
10343
+ #: classes/gateways/class.pmprogateway_stripe.php:619
10344
  msgid "Webhook URL"
10345
  msgstr ""
10346
 
10347
  #: classes/gateways/class.pmprogateway_stripe.php:438
10348
  #: classes/gateways/class.pmprogateway_stripe.php:446
10349
+ #: classes/gateways/class.pmprogateway_stripe.php:452
10350
  msgid "Test Mode:"
10351
  msgstr ""
10352
 
10353
  #: classes/gateways/class.pmprogateway_stripe.php:450
10354
  #: classes/gateways/class.pmprogateway_stripe.php:461
10355
+ #: classes/gateways/class.pmprogateway_stripe.php:467
10356
  msgid "Use the \"Connect with Stripe\" button below to securely authenticate with your Stripe account using Stripe Connect in test mode."
10357
  msgstr ""
10358
 
10359
  #: classes/gateways/class.pmprogateway_stripe.php:483
10360
  #: classes/gateways/class.pmprogateway_stripe.php:495
10361
+ #: classes/gateways/class.pmprogateway_stripe.php:501
10362
  msgid "This will disconnect your site from Stripe in test mode only."
10363
  msgstr ""
10364
 
10365
  #: classes/gateways/class.pmprogateway_stripe.php:518
10366
  #: classes/gateways/class.pmprogateway_stripe.php:530
10367
+ #: classes/gateways/class.pmprogateway_stripe.php:536
10368
  msgid "Stripe API Settings (Legacy)"
10369
  msgstr ""
10370
 
10371
  #: classes/gateways/class.pmprogateway_stripe.php:531
10372
  #: classes/gateways/class.pmprogateway_stripe.php:543
10373
  #: classes/gateways/class.pmprogateway_stripe.php:562
10374
+ #: classes/gateways/class.pmprogateway_stripe.php:568
10375
  msgid "Your Publishable Key appears incorrect."
10376
  msgstr ""
10377
 
10381
  #: classes/gateways/class.pmprogateway_stripe.php:587
10382
  #: classes/gateways/class.pmprogateway_stripe.php:582
10383
  #: classes/gateways/class.pmprogateway_stripe.php:606
10384
+ #: classes/gateways/class.pmprogateway_stripe.php:588
10385
+ #: classes/gateways/class.pmprogateway_stripe.php:612
10386
  msgid "Create Webhook"
10387
  msgstr ""
10388
 
10389
  #: classes/gateways/class.pmprogateway_stripe.php:557
10390
  #: classes/gateways/class.pmprogateway_stripe.php:569
10391
  #: classes/gateways/class.pmprogateway_stripe.php:588
10392
+ #: classes/gateways/class.pmprogateway_stripe.php:594
10393
  msgid "A webhook is set up in Stripe, but it is disabled."
10394
  msgstr ""
10395
 
10396
  #: classes/gateways/class.pmprogateway_stripe.php:564
10397
  #: classes/gateways/class.pmprogateway_stripe.php:576
10398
  #: classes/gateways/class.pmprogateway_stripe.php:595
10399
+ #: classes/gateways/class.pmprogateway_stripe.php:601
10400
  msgid "A webhook is set up in Stripe, but it is using an old API version."
10401
  msgstr ""
10402
 
10403
  #: classes/gateways/class.pmprogateway_stripe.php:564
10404
  #: classes/gateways/class.pmprogateway_stripe.php:576
10405
  #: classes/gateways/class.pmprogateway_stripe.php:595
10406
+ #: classes/gateways/class.pmprogateway_stripe.php:601
10407
  msgid "Rebuild Webhook"
10408
  msgstr ""
10409
 
10416
  #: classes/gateways/class.pmprogateway_stripe.php:601
10417
  #: classes/gateways/class.pmprogateway_stripe.php:741
10418
  #: classes/gateways/class.pmprogateway_stripe.php:857
10419
+ #: classes/gateways/class.pmprogateway_stripe.php:607
10420
+ #: classes/gateways/class.pmprogateway_stripe.php:747
10421
+ #: classes/gateways/class.pmprogateway_stripe.php:863
10422
  msgid "Your webhook is enabled."
10423
  msgstr ""
10424
 
10425
  #: classes/gateways/class.pmprogateway_stripe.php:570
10426
  #: classes/gateways/class.pmprogateway_stripe.php:582
10427
  #: classes/gateways/class.pmprogateway_stripe.php:601
10428
+ #: classes/gateways/class.pmprogateway_stripe.php:607
10429
  msgid "Disable Webhook"
10430
  msgstr ""
10431
 
10441
  #: classes/gateways/class.pmprogateway_stripe.php:768
10442
  #: classes/gateways/class.pmprogateway_stripe.php:785
10443
  #: classes/gateways/class.pmprogateway_stripe.php:819
10444
+ #: classes/gateways/class.pmprogateway_stripe.php:614
10445
+ #: classes/gateways/class.pmprogateway_stripe.php:774
10446
+ #: classes/gateways/class.pmprogateway_stripe.php:791
10447
+ #: classes/gateways/class.pmprogateway_stripe.php:825
10448
  msgid "A webhook in Stripe is required to process recurring payments, manage failed payments, and synchronize cancellations."
10449
  msgstr ""
10450
 
10451
  #: classes/gateways/class.pmprogateway_stripe.php:589
10452
  #: classes/gateways/class.pmprogateway_stripe.php:601
10453
  #: classes/gateways/class.pmprogateway_stripe.php:620
10454
+ #: classes/gateways/class.pmprogateway_stripe.php:626
10455
  msgid "Other Stripe Settings"
10456
  msgstr ""
10457
 
10458
  #: classes/gateways/class.pmprogateway_stripe.php:593
10459
  #: classes/gateways/class.pmprogateway_stripe.php:605
10460
  #: classes/gateways/class.pmprogateway_stripe.php:624
10461
+ #: classes/gateways/class.pmprogateway_stripe.php:630
10462
  msgid "Stripe API Version"
10463
  msgstr ""
10464
 
10465
  #: classes/gateways/class.pmprogateway_stripe.php:612
10466
  #: classes/gateways/class.pmprogateway_stripe.php:624
10467
  #: classes/gateways/class.pmprogateway_stripe.php:643
10468
+ #: classes/gateways/class.pmprogateway_stripe.php:649
10469
  msgid "Enable Payment Request Button"
10470
  msgstr ""
10471
 
10472
  #: classes/gateways/class.pmprogateway_stripe.php:630
10473
  #: classes/gateways/class.pmprogateway_stripe.php:642
10474
  #: classes/gateways/class.pmprogateway_stripe.php:661
10475
+ #: classes/gateways/class.pmprogateway_stripe.php:667
10476
  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. <a target=\"_blank\" href=\"%s\" title=\"More Information about the domain association file for Apple Pay\">More Information &raquo;</a>"
10477
  msgstr ""
10478
 
10479
  #: classes/gateways/class.pmprogateway_stripe.php:643
10480
  #: classes/gateways/class.pmprogateway_stripe.php:655
10481
  #: classes/gateways/class.pmprogateway_stripe.php:674
10482
+ #: classes/gateways/class.pmprogateway_stripe.php:680
10483
  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 <a target=\"_blank\" href=\"%s\" title=\"Configuring WordPress to Always Use HTTPS/SSL\">set up WordPress to always use HTTPS</a>."
10484
  msgstr ""
10485
 
10486
  #: classes/gateways/class.pmprogateway_stripe.php:645
10487
  #: classes/gateways/class.pmprogateway_stripe.php:657
10488
  #: classes/gateways/class.pmprogateway_stripe.php:676
10489
+ #: classes/gateways/class.pmprogateway_stripe.php:682
10490
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your publishable key</a>."
10491
  msgstr ""
10492
 
10493
  #: classes/gateways/class.pmprogateway_stripe.php:647
10494
  #: classes/gateways/class.pmprogateway_stripe.php:659
10495
  #: classes/gateways/class.pmprogateway_stripe.php:678
10496
+ #: classes/gateways/class.pmprogateway_stripe.php:684
10497
  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_\". <a target=\"_blank\" href=\"%s\" title=\"Stripe Dashboard API Key Settings\">Log in to your Stripe Dashboard to roll your secret key</a>."
10498
  msgstr ""
10499
 
10500
  #: classes/gateways/class.pmprogateway_stripe.php:649
10501
  #: classes/gateways/class.pmprogateway_stripe.php:661
10502
  #: classes/gateways/class.pmprogateway_stripe.php:680
10503
+ #: classes/gateways/class.pmprogateway_stripe.php:686
10504
  msgid "Your domain could not be registered with Apple to enable Apple Pay. Please try <a target=\"_blank\" href=\"%s\" title=\"Apple Pay Settings Page in Stripe\">registering your domain manually from the Apple Pay settings page in Stripe</a>."
10505
  msgstr ""
10506
 
10507
  #: classes/gateways/class.pmprogateway_stripe.php:674
10508
  #: classes/gateways/class.pmprogateway_stripe.php:686
10509
  #: classes/gateways/class.pmprogateway_stripe.php:705
10510
+ #: classes/gateways/class.pmprogateway_stripe.php:711
10511
  msgid "Optional: Offer PayPal Express as an option at checkout using the <a target=\"_blank\" href=\"%s\" title=\"Paid Memberships Pro - Add PayPal Express Option at Checkout Add On\">Add PayPal Express Add On</a>."
10512
  msgstr ""
10513
 
10514
  #: classes/gateways/class.pmprogateway_stripe.php:695
10515
  #: classes/gateways/class.pmprogateway_stripe.php:707
10516
  #: classes/gateways/class.pmprogateway_stripe.php:726
10517
+ #: classes/gateways/class.pmprogateway_stripe.php:732
10518
  msgid "Webhook creation failed. You might already have a webhook set up."
10519
  msgstr ""
10520
 
10524
  #: classes/gateways/class.pmprogateway_stripe.php:847
10525
  #: classes/gateways/class.pmprogateway_stripe.php:792
10526
  #: classes/gateways/class.pmprogateway_stripe.php:866
10527
+ #: classes/gateways/class.pmprogateway_stripe.php:798
10528
+ #: classes/gateways/class.pmprogateway_stripe.php:872
10529
  msgid "There was an error deleting the webhook."
10530
  msgstr ""
10531
 
10532
  #: classes/gateways/class.pmprogateway_stripe.php:811
10533
  #: classes/gateways/class.pmprogateway_stripe.php:823
10534
  #: classes/gateways/class.pmprogateway_stripe.php:842
10535
+ #: classes/gateways/class.pmprogateway_stripe.php:848
10536
  msgid "Webhook creation failed. Please refresh and try again."
10537
  msgstr ""
10538
 
10539
  #: classes/gateways/class.pmprogateway_stripe.php:867
10540
  #: classes/gateways/class.pmprogateway_stripe.php:879
10541
  #: classes/gateways/class.pmprogateway_stripe.php:898
10542
+ #: classes/gateways/class.pmprogateway_stripe.php:904
10543
  msgid "Verification steps confirmed. Your payment is processing."
10544
  msgstr ""
10545
 
10546
  #: classes/gateways/class.pmprogateway_stripe.php:1262
10547
  #: classes/gateways/class.pmprogateway_stripe.php:1274
10548
  #: classes/gateways/class.pmprogateway_stripe.php:1293
10549
+ #: classes/gateways/class.pmprogateway_stripe.php:1299
10550
  msgid "Pay with Credit Card"
10551
  msgstr ""
10552
 
10553
  #: classes/gateways/class.pmprogateway_stripe.php:1296
10554
  #: classes/gateways/class.pmprogateway_stripe.php:1308
10555
  #: classes/gateways/class.pmprogateway_stripe.php:1327
10556
+ #: classes/gateways/class.pmprogateway_stripe.php:1333
10557
  msgid "CVC"
10558
  msgstr ""
10559
 
10560
  #: classes/gateways/class.pmprogateway_stripe.php:1374
10561
  #: classes/gateways/class.pmprogateway_stripe.php:1386
10562
  #: classes/gateways/class.pmprogateway_stripe.php:1405
10563
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
10564
  msgid "%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may have been deleted."
10565
  msgstr ""
10566
 
10576
  #: classes/gateways/class.pmprogateway_stripe.php:2016
10577
  #: classes/gateways/class.pmprogateway_stripe.php:2029
10578
  #: classes/gateways/class.pmprogateway_stripe.php:2033
10579
+ #: classes/gateways/class.pmprogateway_stripe.php:2018
10580
+ #: classes/gateways/class.pmprogateway_stripe.php:2022
10581
+ #: classes/gateways/class.pmprogateway_stripe.php:2035
10582
+ #: classes/gateways/class.pmprogateway_stripe.php:2039
10583
  msgid "Error: %s"
10584
  msgstr ""
10585
 
10589
  #: classes/gateways/class.pmprogateway_stripe.php:2834
10590
  #: classes/gateways/class.pmprogateway_stripe.php:2850
10591
  #: classes/gateways/class.pmprogateway_stripe.php:2856
10592
+ #: classes/gateways/class.pmprogateway_stripe.php:2862
10593
  msgid "Error: "
10594
  msgstr ""
10595
 
10596
  #: classes/gateways/class.pmprogateway_stripe.php:2836
10597
  #: classes/gateways/class.pmprogateway_stripe.php:2848
10598
  #: classes/gateways/class.pmprogateway_stripe.php:2870
10599
+ #: classes/gateways/class.pmprogateway_stripe.php:2876
10600
  msgid "Error: Unkown error while refunding charge #%s"
10601
  msgstr ""
10602
 
10603
  #: classes/gateways/class.pmprogateway_stripe.php:3330
10604
  #: classes/gateways/class.pmprogateway_stripe.php:3342
10605
  #: classes/gateways/class.pmprogateway_stripe.php:3364
10606
+ #: classes/gateways/class.pmprogateway_stripe.php:3370
10607
  msgid "Customer authentication is required to complete this transaction. Please complete the verification steps issued by your payment provider."
10608
  msgstr ""
10609
 
10610
  #: classes/gateways/class.pmprogateway_stripe.php:3347
10611
  #: classes/gateways/class.pmprogateway_stripe.php:3359
10612
  #: classes/gateways/class.pmprogateway_stripe.php:3381
10613
+ #: classes/gateways/class.pmprogateway_stripe.php:3387
10614
  msgid "Customer authentication is required to finish setting up your subscription. Please complete the verification steps issued by your payment provider."
10615
  msgstr ""
10616
 
10617
  #: classes/gateways/class.pmprogateway_stripe.php:3533
10618
  #: classes/gateways/class.pmprogateway_stripe.php:3545
10619
  #: classes/gateways/class.pmprogateway_stripe.php:3567
10620
+ #: classes/gateways/class.pmprogateway_stripe.php:3573
10621
  msgid "Invalid response from the Stripe Connect server."
10622
  msgstr ""
10623
 
10625
  #: classes/gateways/class.pmprogateway_stripe.php:3561
10626
  #: classes/gateways/class.pmprogateway_stripe.php:3573
10627
  #: classes/gateways/class.pmprogateway_stripe.php:3595
10628
+ #: classes/gateways/class.pmprogateway_stripe.php:3601
10629
  msgid "<strong>Error:</strong> PMPro could not connect to the Stripe API. Reason: %s"
10630
  msgstr ""
10631
 
10633
  #: classes/gateways/class.pmprogateway_stripe.php:3597
10634
  #: classes/gateways/class.pmprogateway_stripe.php:3609
10635
  #: classes/gateways/class.pmprogateway_stripe.php:3631
10636
+ #: classes/gateways/class.pmprogateway_stripe.php:3637
10637
  msgid "<strong>Error:</strong> PMPro could not disconnect from the Stripe API. Reason: %s"
10638
  msgstr ""
10639
 
10640
  #: classes/gateways/class.pmprogateway_stripe.php:3768
10641
  #: classes/gateways/class.pmprogateway_stripe.php:3780
10642
  #: classes/gateways/class.pmprogateway_stripe.php:3802
10643
+ #: classes/gateways/class.pmprogateway_stripe.php:3808
10644
  msgid "Last webhook received at"
10645
  msgstr ""
10646
 
10647
  #: classes/gateways/class.pmprogateway_stripe.php:3770
10648
  #: classes/gateways/class.pmprogateway_stripe.php:3782
10649
  #: classes/gateways/class.pmprogateway_stripe.php:3804
10650
+ #: classes/gateways/class.pmprogateway_stripe.php:3810
10651
  msgid "No webhooks have been received."
10652
  msgstr ""
10653
 
10654
  #: classes/gateways/class.pmprogateway_stripe.php:3774
10655
  #: classes/gateways/class.pmprogateway_stripe.php:3786
10656
  #: classes/gateways/class.pmprogateway_stripe.php:3808
10657
+ #: classes/gateways/class.pmprogateway_stripe.php:3814
10658
  msgid "Your webhook may not be working correctly."
10659
  msgstr ""
10660
 
10661
  #: classes/gateways/class.pmprogateway_stripe.php:3776
10662
  #: classes/gateways/class.pmprogateway_stripe.php:3788
10663
  #: classes/gateways/class.pmprogateway_stripe.php:3810
10664
+ #: classes/gateways/class.pmprogateway_stripe.php:3816
10665
  msgid "Click here for info on setting up your webhook with Stripe."
10666
  msgstr ""
10667
 
12766
 
12767
  #: includes/login.php:429
12768
  #: includes/profile.php:843
12769
+ #: includes/profile.php:855
12770
  msgid "New passwords do not match."
12771
  msgstr ""
12772
 
12773
  #: includes/login.php:433
12774
  #: includes/profile.php:839
12775
+ #: includes/profile.php:851
12776
  msgid "Please complete all fields."
12777
  msgstr ""
12778
 
12802
 
12803
  #: includes/login.php:688
12804
  #: includes/profile.php:891
12805
+ #: includes/profile.php:903
12806
  msgid "New Password"
12807
  msgstr ""
12808
 
12809
  #: includes/login.php:690
12810
  #: includes/profile.php:894
12811
  #: includes/scripts.php:86
12812
+ #: includes/profile.php:906
12813
+ #: includes/scripts.php:85
12814
  msgid "Strength Indicator"
12815
  msgstr ""
12816
 
12817
  #: includes/login.php:694
12818
  #: includes/profile.php:898
12819
+ #: includes/profile.php:910
12820
  msgid "Confirm New Password"
12821
  msgstr ""
12822
 
12913
  #: includes/privacy.php:182
12914
  #: includes/profile.php:425
12915
  #: includes/profile.php:493
12916
+ #: includes/profile.php:499
12917
  msgid "Level ID"
12918
  msgstr ""
12919
 
12920
  #: includes/privacy.php:190
12921
  #: includes/profile.php:496
12922
+ #: includes/profile.php:502
12923
  msgid "Date Modified"
12924
  msgstr ""
12925
 
12926
  #: includes/privacy.php:194
12927
  #: includes/profile.php:497
12928
+ #: includes/profile.php:503
12929
  msgid "End Date"
12930
  msgstr ""
12931
 
12932
  #: includes/privacy.php:198
12933
  #: includes/profile.php:498
12934
+ #: includes/profile.php:504
12935
  msgid "Level Cost"
12936
  msgstr ""
12937
 
13030
  msgstr ""
13031
 
13032
  #: includes/profile.php:485
13033
+ #: includes/profile.php:488
13034
  msgid "No membership orders found."
13035
  msgstr ""
13036
 
13037
  #: includes/profile.php:537
13038
+ #: includes/profile.php:546
13039
  msgid "No membership history found."
13040
  msgstr ""
13041
 
13042
  #: includes/profile.php:644
13043
+ #: includes/profile.php:656
13044
  msgid "Log in to edit your profile."
13045
  msgstr ""
13046
 
13047
  #: includes/profile.php:679
13048
+ #: includes/profile.php:691
13049
  msgid "Please enter a display name."
13050
  msgstr ""
13051
 
13052
  #: includes/profile.php:689
13053
+ #: includes/profile.php:701
13054
  msgid "