Paid Memberships Pro - Version 1.8.5

Version Description

  • BUG: Fixed bug where the subscription_transaction_id was not showing up in the orders CSV export.
  • BUG: Fixed bug where gateway subscriptions were not being cancelled when the "cancel at gateway" option was checked when changing a user's level on the edit user page.
  • BUG: Drag and drop for reordering levels has been disabled if there are < 2 levels or if the user is searching the levels list. (Thanks, Isaac Coleman.)
  • BUG: Fixed bug where sales and revenue charts would never show data for the 31st of the month. (Thanks, TYTNetwork)
  • ENHANCEMENT: Now showing the time in date column of on the orders page and in the timestamp column of the orders CSV export.
  • ENHANCEMENT: Added the pmpro_next_payment filter so you can alter how the next payment date is found. Also added a filter to the PayPal Express gateway class, but left it disabled for performance reasons.
  • ENHANCEMENT: Now zeroing out the initial payment and billing amount in pmpro_memberships_users when an order gets cancelled.
  • ENHANCEMENT: Modified how billing information shows up on the edit user page.
  • ENHANCEMENT: Added partial Finnish translations. (Thanks, Onni Hakala)
  • FEATURE: Overhauled the Add Ons page with one click installs and automatic updates of non-WordPress.org add ons for PMPro Plus members.
Download this release

Release Info

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

Code changes from version 1.8.4.4 to 1.8.5

Files changed (100) hide show
  1. adminpages/addons.php +285 -142
  2. adminpages/addons/hide-admin-bar-from-non-admins.php +0 -32
  3. adminpages/addons/images/pmpro-aweber.gif +0 -0
  4. adminpages/addons/images/pmpro-bbpress.jpg +0 -0
  5. adminpages/addons/images/pmpro-constant-contact.gif +0 -0
  6. adminpages/addons/images/pmpro-email-templates.gif +0 -0
  7. adminpages/addons/images/pmpro-infusionsoft.jpg +0 -0
  8. adminpages/addons/images/pmpro-mailchimp.jpg +0 -0
  9. adminpages/addons/images/pmpro-network.gif +0 -0
  10. adminpages/addons/images/pmpro-post-affiliate-pro.jpg +0 -0
  11. adminpages/addons/images/pmpro-register-helper.gif +0 -0
  12. adminpages/addons/images/pmpro-series.gif +0 -0
  13. adminpages/addons/images/pmpro-woocommerce.gif +0 -0
  14. adminpages/addons/images/pmpro-wp-affiliate-platform.jpg +0 -0
  15. adminpages/addons/images/wp-bouncer.gif +0 -0
  16. adminpages/addons/pmpro-addon-packages.php +0 -30
  17. adminpages/addons/pmpro-affiliates.php +0 -30
  18. adminpages/addons/pmpro-aweber.php +0 -31
  19. adminpages/addons/pmpro-bbpress.php +0 -31
  20. adminpages/addons/pmpro-constant-contact.php +0 -31
  21. adminpages/addons/pmpro-disable-emails.php +0 -28
  22. adminpages/addons/pmpro-email-templates.php +0 -31
  23. adminpages/addons/pmpro-expiration.php +0 -30
  24. adminpages/addons/pmpro-freeaddress.php +0 -30
  25. adminpages/addons/pmpro-infusionsoft.php +0 -31
  26. adminpages/addons/pmpro-international-addresses.php +0 -31
  27. adminpages/addons/pmpro-level-cost-text.php +0 -30
  28. adminpages/addons/pmpro-mailchimp.php +0 -31
  29. adminpages/addons/pmpro-network-subsite.php +0 -31
  30. adminpages/addons/pmpro-network.php +0 -31
  31. adminpages/addons/pmpro-post-affiliate-pro.php +0 -31
  32. adminpages/addons/pmpro-register-helper.php +0 -31
  33. adminpages/addons/pmpro-require-code-to-register.php +0 -28
  34. adminpages/addons/pmpro-series.php +0 -31
  35. adminpages/addons/pmpro-shipping.php +0 -31
  36. adminpages/addons/pmpro-user-pages.php +0 -30
  37. adminpages/addons/pmpro-woocommerce.php +0 -31
  38. adminpages/addons/pmpro-wp-affiliate.php +0 -31
  39. adminpages/addons/tml.php +0 -32
  40. adminpages/addons/wp-bouncer.php +0 -31
  41. adminpages/admin_header.php +13 -13
  42. adminpages/discountcodes.php +1 -0
  43. adminpages/functions.php +1 -1
  44. adminpages/membershiplevels.php +682 -673
  45. adminpages/memberslist.php +11 -1
  46. adminpages/orders-csv.php +2 -2
  47. adminpages/orders.php +16 -3
  48. adminpages/reports/sales.php +1 -1
  49. classes/class.memberorder.php +7 -1
  50. classes/class.pmproemail.php +2 -2
  51. classes/gateways/class.pmprogateway_paypalexpress.php +50 -0
  52. classes/gateways/class.pmprogateway_stripe.php +1 -0
  53. css/frontend.css +23 -0
  54. includes/addons.php +213 -0
  55. includes/functions.php +85 -23
  56. includes/license.php +278 -0
  57. includes/profile.php +22 -9
  58. languages/email/fr_FR/admin_change.html +7 -0
  59. languages/email/fr_FR/admin_change_admin.html +5 -0
  60. languages/email/fr_FR/billing.html +16 -0
  61. languages/email/fr_FR/billing_admin.html +17 -0
  62. languages/email/fr_FR/billing_failure.html +11 -0
  63. languages/email/fr_FR/billing_failure_admin.html +11 -0
  64. languages/email/fr_FR/cancel.html +3 -0
  65. languages/email/fr_FR/cancel_admin.html +8 -0
  66. languages/email/fr_FR/checkout_check.html +17 -0
  67. languages/email/fr_FR/checkout_check_admin.html +17 -0
  68. languages/email/fr_FR/checkout_express.html +17 -0
  69. languages/email/fr_FR/checkout_express_admin.html +14 -0
  70. languages/email/fr_FR/checkout_free.html +8 -0
  71. languages/email/fr_FR/checkout_free_admin.html +9 -0
  72. languages/email/fr_FR/checkout_freetrial.html +19 -0
  73. languages/email/fr_FR/checkout_freetrial_admin.html +19 -0
  74. languages/email/fr_FR/checkout_paid.html +23 -0
  75. languages/email/fr_FR/checkout_paid_admin.html +24 -0
  76. languages/email/fr_FR/checkout_trial.html +23 -0
  77. languages/email/fr_FR/checkout_trial_admin.html +24 -0
  78. languages/email/fr_FR/credit_card_expiring.html +18 -0
  79. languages/email/fr_FR/default.html +1 -0
  80. languages/email/fr_FR/footer.html +4 -0
  81. languages/email/fr_FR/header.html +1 -0
  82. languages/email/fr_FR/invoice.html +19 -0
  83. languages/email/fr_FR/membership_expired.html +7 -0
  84. languages/email/fr_FR/membership_expiring.html +6 -0
  85. languages/email/fr_FR/trial_ending.html +8 -0
  86. languages/pmpro-fi.mo +0 -0
  87. languages/pmpro-fi.po +3200 -0
  88. languages/pmpro-fr_FR.mo +0 -0
  89. languages/pmpro-fr_FR.po +399 -351
  90. languages/pmpro.mo +0 -0
  91. languages/pmpro.po +987 -604
  92. languages/pmpro.pot +987 -604
  93. license.txt +9 -9
  94. pages/billing.php +11 -2
  95. pages/checkout.php +209 -200
  96. paid-memberships-pro.php +9 -2
  97. preheaders/cancel.php +5 -2
  98. preheaders/checkout.php +4 -2
  99. readme.txt +26 -2
  100. services/braintree-webhook.php +101 -18
adminpages/addons.php CHANGED
@@ -1,142 +1,285 @@
1
- <?php
2
- //only admins can get this
3
- if(!function_exists("current_user_can") || (!current_user_can("manage_options") && !current_user_can("pmpro_addons")))
4
- {
5
- die(__("You do not have permissions to perform this action.", "pmpro"));
6
- }
7
-
8
- global $wpdb, $msg, $msgt, $pmpro_addons;
9
-
10
- /*
11
- Addon lists
12
- */
13
- $pmpro_addon_lists = array(
14
- 'repo' => array('Plugins in the WordPress Repository', 'These official PMPro plugins are available in the WordPress repository and can be installed through Plugins --> Add New.'),
15
- 'thirdparty' => array('Third-party Integration', 'These official PMPro plugins integrate with specific third-party tools and software.'),
16
- 'recommended' => array('Recommended Plugins', 'These plugins are not developed by the PMPro team, but are recommended for sites running PMPro.'),
17
- 'github' => array('Plugins on GitHub', 'These official PMPro plugins must be downloaded from GitHub and installed through Plugins --> Add New --> Upload, then activated. These plugins cannot be automatically updated and may require more developer input.'),
18
- 'gists' => array('Code Gists', 'These are bits of code that generally must be added to your active theme\'s functions.php file or included in a custom plugin. Most gists require customization and are recommended for developers only.')
19
- );
20
-
21
- /*
22
- Function to add an addon
23
- */
24
- function pmpro_add_addon($list, $addon)
25
- {
26
- global $pmpro_addons;
27
-
28
- //make sure we have the base array
29
- if(empty($pmpro_addons))
30
- $pmpro_addons = array();
31
-
32
- //make sure we have an array for the list
33
- if(empty($pmpro_addons[$list]))
34
- $pmpro_addons[$list] = array();
35
-
36
- //add addon to list
37
- $pmpro_addons[$list][] = $addon;
38
- }
39
-
40
- /*
41
- Load All Addons
42
- */
43
- $pmpro_addons_dir = dirname(__FILE__) . "/../adminpages/addons/";
44
- $cwd = getcwd();
45
- chdir($pmpro_addons_dir);
46
- $count = 0;
47
- foreach (glob("*.php") as $filename)
48
- {
49
- $count++;
50
- require_once($filename);
51
- }
52
- chdir($cwd);
53
-
54
- require_once(dirname(__FILE__) . "/admin_header.php");
55
- ?>
56
-
57
- <h2>Add Ons</h2>
58
- <ul id="addon-filters" class="subsubsub">
59
- <li id="addon-filters-all"><a href="javascript:void(0);" class="current all tab">All</a> <span>(<?php echo $count;?>)</span></li>
60
- <?php foreach($pmpro_addon_lists as $list => $list_info) { ?>
61
- <li id="addon-filters-<?php echo $list;?>"> | <a href="javascript:void(0);>" class="tab"><?php echo $list_info[0];?></a> <span>(<?php echo count($pmpro_addons[$list]);?>)</span></li>
62
- <?php } ?>
63
- </ul>
64
-
65
- <?php foreach($pmpro_addon_lists as $list => $list_info) { ?>
66
- <div id="pmpro-<?php echo $list;?>" class="pmpro-addon-list widgets-holder-wrap">
67
-
68
- <h3 class="section-title"><?php echo $list_info[0];?></h3>
69
- <p class="description"><?php echo $list_info[1];?></p>
70
- <br class="clear" />
71
-
72
- <div id="addons-list-<?php echo $list;?>" class="addon-list">
73
-
74
- <?php foreach($pmpro_addons[$list] as $slug => $addon) { ?>
75
- <div id="addon-<?php echo $slug;?>" class="widget <?php if($addon['enabled']) echo "enabled"; else echo "disabled";?>">
76
- <div class="widget-top">
77
- <div class="widget-title">
78
- <h4>
79
- <span class="status-label"><?php if($addon['enabled']) echo __("Enabled", "pmpro"); else echo __("Disabled", "pmpro");?></span>
80
- <span class="title"><?php echo $addon['title'];?></span>
81
- <span class="version pmpro_tag-grey"><?php echo $addon['version'];?></span>
82
- <span class="in-widget-title"></span>
83
- </h4>
84
- </div> <!-- end widget-title -->
85
- </div> <!-- end widget-top -->
86
- <div class="widget-inside">
87
- <?php call_user_func($addon['widget'], $addon);?>
88
- </div> <!-- end addon-inside -->
89
- </div> <!-- end widget -->
90
- <?php } ?>
91
-
92
- <br class="clear" />
93
- </div> <!-- end addon-list -->
94
-
95
- </div> <!-- end pmpro-<?php echo $list;?> -->
96
- <?php } ?>
97
-
98
- <script>
99
- //tabs
100
- jQuery(document).ready(function() {
101
- jQuery('#addon-filters a.tab').click(function() {
102
- //which tab?
103
- var tab = jQuery(this).parent().attr('id').replace('addon-filters-', '');
104
-
105
- //un select tabs
106
- jQuery('#addon-filters a.tab').removeClass('current');
107
-
108
- //select this tab
109
- jQuery('#addon-filters-'+tab+' a').addClass('current');
110
-
111
- //show all?
112
- if(tab == 'all')
113
- jQuery('div.pmpro-addon-list').show();
114
- else
115
- {
116
- //hide all
117
- jQuery('div.pmpro-addon-list').hide();
118
-
119
- //show this one
120
- jQuery('#pmpro-'+tab).show();
121
- }
122
- });
123
- });
124
-
125
- //resize addon boxes
126
- jQuery(document).ready(function() {
127
- jQuery('.addon-list').each(function() {
128
- //what's the tallest p in the list?
129
- var tallest = 32;
130
- jQuery(this).find('div.info p').each(function() {
131
- tallest = Math.max(tallest, jQuery(this).height());
132
- });
133
-
134
- //set all p's to match
135
- jQuery(this).find('div.info p').css('height', tallest);
136
- });
137
- });
138
- </script>
139
-
140
- <?php
141
- require_once(dirname(__FILE__) . "/admin_footer.php");
142
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ //only admins can get this
3
+ if(!function_exists("current_user_can") || (!current_user_can("manage_options") && !current_user_can("pmpro_addons")))
4
+ {
5
+ die(__("You do not have permissions to perform this action.", "pmpro"));
6
+ }
7
+
8
+ global $wpdb, $msg, $msgt, $pmpro_addons;
9
+
10
+ wp_enqueue_script( 'plugin-install' );
11
+ add_thickbox();
12
+ wp_enqueue_script( 'updates' );
13
+
14
+ require_once(dirname(__FILE__) . "/admin_header.php");
15
+
16
+ //force a check of plugin versions?
17
+ if(!empty($_REQUEST['force-check']))
18
+ {
19
+ wp_version_check(array(), true);
20
+ wp_update_plugins();
21
+ $pmpro_license_key = get_option("pmpro_license_key", "");
22
+ pmpro_license_isValid($pmpro_license_key, NULL, true);
23
+ }
24
+
25
+ //some vars
26
+ $addons = pmpro_getAddons();
27
+ $addons_timestamp = get_option("pmpro_addons_timestamp", false);
28
+ $plugin_info = get_site_transient( 'update_plugins' );
29
+ $pmpro_license_key = get_option("pmpro_license_key", "");
30
+
31
+ //get plugin status for filters
32
+ if(!empty($_REQUEST['plugin_status']))
33
+ $status = $_REQUEST['plugin_status'];
34
+ else
35
+ $status = "all";
36
+
37
+ //split addons into groups for filtering
38
+ $addons_all = $addons;
39
+ $addons_active = array();
40
+ $addons_inactive = array();
41
+ $addons_update = array();
42
+ $addons_uninstalled = array();
43
+
44
+ foreach($addons as $addon)
45
+ {
46
+ $plugin_file = $addon['Slug'] . '/' . $addon['Slug'] . '.php';
47
+ $plugin_file_abs = ABSPATH . 'wp-content/plugins/' . $plugin_file;
48
+
49
+ //active?
50
+ if(is_plugin_active($plugin_file))
51
+ $addons_active[] = $addon;
52
+ else
53
+ $addons_inactive[] = $addon;
54
+
55
+ //has update?
56
+ if(isset($plugin_info->response[$plugin_file]))
57
+ $addons_update[] = $addon;
58
+
59
+ //not installed?
60
+ if(!file_exists($plugin_file_abs))
61
+ $addons_uninstalled[] = $addon;
62
+ }
63
+ ?>
64
+ <h2><?php _e('Add Ons', 'pmpro'); ?></h2>
65
+
66
+ <?php
67
+ pmpro_showMessage();
68
+ ?>
69
+
70
+ <p>
71
+ <?php printf(__('Last checked on %s at %s.', 'pmpro'), date(get_option('date_format'), $addons_timestamp), date(get_option('time_format'), $addons_timestamp));?> &nbsp;
72
+ <a class="button" href="<?php echo admin_url("admin.php?page=pmpro-addons&force-check=1&plugin_status=" . $status);?>"><?php _e('Check Again', 'pmpro'); ?></a>
73
+ </p>
74
+
75
+ <ul class="subsubsub">
76
+ <li class="all"><a href="admin.php?page=pmpro-addons&plugin_status=all" <?php if(empty($status) || $status == "all") { ?>class="current"<?php } ?>><?php _e('All', 'pmpro'); ?> <span class="count">(<?php echo count($addons);?>)</span></a> |</li>
77
+ <li class="active"><a href="admin.php?page=pmpro-addons&plugin_status=active" <?php if($status == "active") { ?>class="current"<?php } ?>><?php _e('Active', 'pmpro'); ?> <span class="count">(<?php echo count($addons_active);?>)</span></a> |</li>
78
+ <li class="inactive"><a href="admin.php?page=pmpro-addons&plugin_status=inactive" <?php if($status == "inactive") { ?>class="current"<?php } ?>><?php _e('Inactive', 'pmpro'); ?> <span class="count">(<?php echo count($addons_inactive);?>)</span></a> |</li>
79
+ <li class="update"><a href="admin.php?page=pmpro-addons&plugin_status=update" <?php if($status == "update") { ?>class="current"<?php } ?>><?php _e('Update Available', 'pmpro'); ?><span class="count">(<?php echo count($addons_update);?>)</span></a> |</li>
80
+ <li class="uninstalled"><a href="admin.php?page=pmpro-addons&plugin_status=uninstalled" <?php if($status == "uninstalled") { ?>class="current"<?php } ?>><?php _e('Not Installed', 'pmpro'); ?> <span class="count">(<?php echo count($addons_uninstalled);?>)</span></a></li>
81
+ </ul>
82
+
83
+ <br /><br />
84
+
85
+ <table class="wp-list-table widefat plugins">
86
+ <thead>
87
+ <tr>
88
+ <th scope="col" id="cb" class="manage-column column-cb check-column" style="">
89
+ <?php /*
90
+ <label class="screen-reader-text" for="cb-select-all-1"><?php _e('Select All'); ?></label><input id="cb-select-all-1" type="checkbox">
91
+ */ ?>
92
+ </th>
93
+ <th scope="col" id="name" class="manage-column column-name" style=""><?php _e('Add On Name','pmpro'); ?></th>
94
+ <th scope="col" id="type" class="manage-column column-type" style=""><?php _e('Type', 'pmpro'); ?></th>
95
+ <th scope="col" id="description" class="manage-column column-description" style=""><?php _e('Description', 'pmpro'); ?></th>
96
+ </tr>
97
+ </thead>
98
+ <tbody id="the-list">
99
+ <?php
100
+ //which addons to show?
101
+ if($status == "active")
102
+ $addons = $addons_active;
103
+ elseif($status == "inactive")
104
+ $addons = $addons_inactive;
105
+ elseif($status == "update")
106
+ $addons = $addons_update;
107
+ elseif($status == "uninstalled")
108
+ $addons = $addons_uninstalled;
109
+ else
110
+ $addons = $addons_all;
111
+
112
+ //no addons for this filter?
113
+ if(count($addons) < 1)
114
+ {
115
+ ?>
116
+ <tr>
117
+ <td></td>
118
+ <td colspan="3"><p><?php _e('No Add Ons found.', 'pmpro'); ?></p></td>
119
+ </tr>
120
+ <?php
121
+ }
122
+
123
+ foreach($addons as $addon)
124
+ {
125
+ $plugin_file = $addon['Slug'] . '/' . $addon['Slug'] . '.php';
126
+ $plugin_file_abs = ABSPATH . 'wp-content/plugins/' . $plugin_file;
127
+
128
+ if(file_exists($plugin_file_abs))
129
+ $plugin_data = get_plugin_data( $plugin_file_abs, false, true);
130
+ else
131
+ $plugin_data = $addon;
132
+
133
+ //make sure plugin value is set
134
+ if(empty($plugin_data['plugin']))
135
+ $plugin_data['plugin'] = $plugin_file;
136
+
137
+ $plugin_name = $plugin_data['Name'];
138
+ $id = sanitize_title( $plugin_name );
139
+ $checkbox_id = "checkbox_" . md5($plugin_name);
140
+
141
+ if(!empty($plugin_data['License']))
142
+ {
143
+ $context = 'uninstalled inactive';
144
+ }
145
+ elseif(isset($plugin_info->response[$plugin_file]))
146
+ {
147
+ $context = 'active update';
148
+ }
149
+ elseif(is_plugin_active($plugin_file))
150
+ {
151
+ $context = 'active';
152
+ }
153
+ elseif(file_exists($plugin_file_abs))
154
+ {
155
+ $context = 'inactive';
156
+ }
157
+ else
158
+ {
159
+ $context = false;
160
+ }
161
+ ?>
162
+ <tr id="<?php echo $id; ?>" class="<?php echo $context;?>" data-slug="<?php echo $id; ?>">
163
+ <th scope="row" class="check-column">
164
+ <?php /*
165
+ <label class="screen-reader-text" for="<?php echo $checkbox_id; ?>"><?php sprintf( __( 'Select %s' ), $plugin_name ); ?></label>
166
+ <input type="checkbox" name="checked[]" value="<?php esc_attr( $plugin_file ); ?>" id="<?php echo $checkbox_id; ?>">
167
+ */ ?>
168
+ </th>
169
+ <td class="plugin-title">
170
+ <strong><?php echo $plugin_name; ?></strong>
171
+ <div class="row-actions visible">
172
+ <?php
173
+ $actions = array();
174
+ if($context === 'uninstalled inactive')
175
+ {
176
+ if($plugin_data['License'] == 'wordpress.org')
177
+ {
178
+ //wordpress.org
179
+ $actions['install'] = '<span class="install"><a href="' . wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=' . $plugin_data['Slug']), 'install-plugin_' . $plugin_data['Slug']) . '">' . __('Install Now', 'pmpro') . '</a></span>';
180
+ }
181
+ elseif($plugin_data['License'] == 'free')
182
+ {
183
+ //free
184
+ $actions['install'] = '<span class="install"><a href="' . wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=' . $plugin_data['Slug']), 'install-plugin_' . $plugin_data['Slug']) . '">' . __('Install Now', 'pmpro') . '</a></span>';
185
+ $actions['download'] = '<span class="download"><a target="_blank" href="' . $plugin_data['Download'] . '?key=' . $pmpro_license_key . '">' . __('Download', 'pmpro') . '</a></span>';
186
+ }
187
+ elseif(empty($pmpro_license_key))
188
+ {
189
+ //no key
190
+ $actions['settings'] = '<span class="settings"><a href="' . admin_url('options-general.php?page=pmpro_license_settings') . '">' . __('Update License', 'pmpro') . '</a></span>';
191
+ $actions['download'] = '<span class="download"><a target="_blank" href="' . $plugin_data['PluginURI'] . '">' . __('Download', 'pmpro') . '</a></span>';
192
+ }
193
+ elseif(pmpro_license_isValid($pmpro_license_key, $plugin_data['License']))
194
+ {
195
+ //valid key
196
+ $actions['install'] = '<span class="install"><a href="' . wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=' . $plugin_data['Slug']), 'install-plugin_' . $plugin_data['Slug']) . '">' . __('Install Now', 'pmpro') . '</a></span>';
197
+ $actions['download'] = '<span class="download"><a target="_blank" href="' . $plugin_data['Download'] . '?key=' . $pmpro_license_key . '">' . __('Download', 'pmpro') . '</a></span>';
198
+ }
199
+ else
200
+ {
201
+ //invalid key
202
+ $actions['settings'] = '<span class="settings"><a href="' . admin_url('options-general.php?page=pmpro_license_settings') . '">' . __('Update License', 'pmpro') . '</a></span>';
203
+ $actions['download'] = '<span class="download"><a target="_blank" href="' . $plugin_data['PluginURI'] . '">' . __('Download', 'pmpro') . '</a></span>';
204
+ }
205
+ }
206
+ elseif($context === 'active' || $context === 'active update')
207
+ {
208
+ $actions['deactivate'] = '<span class="deactivate"><a href="' . wp_nonce_url(self_admin_url('plugins.php?action=deactivate&plugin=' . $plugin_file), 'deactivate-plugin_' . $plugin_file ) . '" aria-label="' . esc_attr( sprintf( __( 'Deactivate %s' ), $plugin_data['Name'] ) ) . '">' . __('Deactivate') . '</a></span>';
209
+ }
210
+ elseif($context === 'inactive')
211
+ {
212
+ $actions['activate'] = '<span class="activate"><a href="' . wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=' . $plugin_file), 'activate-plugin_' . $plugin_file) . '" class="edit" aria-label="' . esc_attr( sprintf( __( 'Activate %s' ), $plugin_data['Name'] ) ) . '">' . __('Activate') . '</a></span>';
213
+ $actions['delete'] = '<span class="delete"><a href="' . wp_nonce_url(self_admin_url('plugins.php?action=delete-selected&checked[]=' . $plugin_file), 'bulk-plugins') . '" class="delete" aria-label="' . esc_attr( sprintf( __( 'Delete %s' ), $plugin_data['Name'] ) ) . '">' . __('Delete') . '</a></span>';
214
+ }
215
+ $actions = apply_filters( 'plugin_action_links_' . $plugin_file, $actions, $plugin_file, $plugin_data, $context );
216
+ echo implode(' | ',$actions);
217
+ ?>
218
+ </div>
219
+ </td>
220
+ <td class="column-type">
221
+ <?php
222
+ if($addon['License'] == 'free')
223
+ _e("PMPro Free", "pmpro");
224
+ elseif($addon['License'] == 'core')
225
+ _e("PMPro Core", "pmpro");
226
+ elseif($addon['License'] == 'plus')
227
+ _e("PMPro Plus", "pmpro");
228
+ elseif($addon['License'] == 'wordpress.org')
229
+ _e("WordPress.org", "pmpro");
230
+ else
231
+ _e("N/A", "pmpro");
232
+ ?>
233
+ </td>
234
+ <td class="column-description desc">
235
+ <div class="plugin-description"><p><?php echo $plugin_data['Description']; ?></p></div>
236
+ <div class="inactive second plugin-version-author-uri">
237
+ <?php
238
+ $plugin_meta = array();
239
+ if ( !empty( $plugin_data['Version'] ) )
240
+ $plugin_meta[] = sprintf( __( 'Version %s' ), $plugin_data['Version'] );
241
+ if ( !empty( $plugin_data['Author'] ) ) {
242
+ $author = $plugin_data['Author'];
243
+ if ( !empty( $plugin_data['AuthorURI'] ) )
244
+ $author = '<a href="' . $plugin_data['AuthorURI'] . '">' . $plugin_data['Author'] . '</a>';
245
+ $plugin_meta[] = sprintf( __( 'By %s' ), $author );
246
+ }
247
+ // Details link using API info, if available
248
+ if ( isset( $plugin_data['slug'] ) && current_user_can( 'install_plugins' ) ) {
249
+ $plugin_meta[] = sprintf( '<a href="%s" class="thickbox" aria-label="%s" data-title="%s">%s</a>',
250
+ esc_url( network_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . $plugin_data['slug'] .
251
+ '&TB_iframe=true&width=600&height=550' ) ),
252
+ esc_attr( sprintf( __( 'More information about %s' ), $plugin_name ) ),
253
+ esc_attr( $plugin_name ),
254
+ __( 'View details' )
255
+ );
256
+ } elseif ( ! empty( $plugin_data['PluginURI'] ) ) {
257
+ $plugin_meta[] = sprintf( '<a href="%s">%s</a>',
258
+ esc_url( $plugin_data['PluginURI'] ),
259
+ __( 'Visit plugin site' )
260
+ );
261
+ }
262
+ $plugin_meta = apply_filters( 'plugin_row_meta', $plugin_meta, $plugin_file, $plugin_data );
263
+ echo implode( ' | ', $plugin_meta );
264
+ ?>
265
+ </div>
266
+ </td>
267
+ </tr>
268
+ <?php
269
+
270
+ ob_start();
271
+ wp_plugin_update_row( $plugin_file, $plugin_data );
272
+ $row = ob_get_contents();
273
+ ob_end_clean();
274
+
275
+ echo str_replace('colspan="0"', 'colspan="4"', $row);
276
+ }
277
+ ?>
278
+ </tbody>
279
+ </table>
280
+
281
+ <?php
282
+ require_once(dirname(__FILE__) . "/admin_footer.php");
283
+ wp_print_request_filesystem_credentials_modal();
284
+ echo '</div>';
285
+ ?>
adminpages/addons/hide-admin-bar-from-non-admins.php DELETED
@@ -1,32 +0,0 @@
1
- <?php
2
- /*
3
- Addon: Hide Admin Bar From Non-Admins
4
- Slug: hide-admin-bar-from-non-admins
5
- */
6
- pmpro_add_addon('repo', array(
7
- 'title' => 'Hide Admin Bar From Non-Admins',
8
- 'version' => '1.0',
9
- 'widget' => 'pmpro_addon_hide_admin_bar_from_non_admins_widget',
10
- 'enabled' => function_exists('habfna_disable_admin_bar')
11
- )
12
- );
13
-
14
- function pmpro_addon_hide_admin_bar_from_non_admins_widget($addon)
15
- {
16
- ?>
17
- <div class="info">
18
- <p>Perfect for sites where there is only one admin who needs access to the dashboard and the admin bar. When activated only administrators will see the admin bar.</p>
19
- <div class="actions">
20
- <form method="post" name="component-actions" action="">
21
- <?php if($addon['enabled']) { ?>
22
- <a href="<?php echo admin_url("plugins.php");?>" class="button">Enabled</a>
23
- <?php } elseif(file_exists(dirname(__FILE__) . "/../../../hide-admin-bar-from-non-admins/hide-admin-bar-from-non-admins.php")) { ?>
24
- <a href="<?php echo wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=hide-admin-bar-from-non-admins/hide-admin-bar-from-non-admins.php'), 'activate-plugin_hide-admin-bar-from-non-admins/hide-admin-bar-from-non-admins.php')?>" class="button button-primary">Activate</a>
25
- <?php } else { ?>
26
- <a href="<?php echo wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=hide-admin-bar-from-non-admins'), 'install-plugin_hide-admin-bar-from-non-admins'); ?>" class="button button-primary">Download</a>
27
- <?php } ?>
28
- </form>
29
- </div>
30
- </div> <!-- end info -->
31
- <?php
32
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminpages/addons/images/pmpro-aweber.gif DELETED
Binary file
adminpages/addons/images/pmpro-bbpress.jpg DELETED
Binary file
adminpages/addons/images/pmpro-constant-contact.gif DELETED
Binary file
adminpages/addons/images/pmpro-email-templates.gif DELETED
Binary file
adminpages/addons/images/pmpro-infusionsoft.jpg DELETED
Binary file
adminpages/addons/images/pmpro-mailchimp.jpg DELETED
Binary file
adminpages/addons/images/pmpro-network.gif DELETED
Binary file
adminpages/addons/images/pmpro-post-affiliate-pro.jpg DELETED
Binary file
adminpages/addons/images/pmpro-register-helper.gif DELETED
Binary file
adminpages/addons/images/pmpro-series.gif DELETED
Binary file
adminpages/addons/images/pmpro-woocommerce.gif DELETED
Binary file
adminpages/addons/images/pmpro-wp-affiliate-platform.jpg DELETED
Binary file
adminpages/addons/images/wp-bouncer.gif DELETED
Binary file
adminpages/addons/pmpro-addon-packages.php DELETED
@@ -1,30 +0,0 @@
1
- <?php
2
- /*
3
- Addon: PMPro Addon Packages
4
- Slug: pmpro-addon-packages
5
- */
6
- pmpro_add_addon('github', array(
7
- 'title' => 'PMPro Addon Packages',
8
- 'version' => '.4.3',
9
- 'widget' => 'pmpro_addon_pmpro_addon_packages_widget',
10
- 'enabled' => function_exists('pmproap_post_meta')
11
- )
12
- );
13
-
14
- function pmpro_addon_pmpro_addon_packages_widget($addon)
15
- {
16
- ?>
17
- <div class="info">
18
- <p>Sell access to individual pages or posts for a flat fee. This is a workaround if you would like to allow multiple membership levels per user.</p>
19
- <div class="actions">
20
- <?php if($addon['enabled']) { ?>
21
- <a href="https://github.com/strangerstudios/pmpro-addon-packages/blob/master/readme.txt" class="button">Enabled</a>
22
- <?php } elseif(file_exists(dirname(__FILE__) . "/../../../pmpro-addon-packages/pmpro-addon-packages.php")) { ?>
23
- <a href="<?php echo wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=pmpro-addon-packages/pmpro-addon-packages.php'), 'activate-plugin_pmpro-addon-packages/pmpro-addon-packages.php')?>" class="button button-primary">Activate</a>
24
- <?php } else { ?>
25
- <a href="https://www.paidmembershipspro.com/wp-content/uploads/plugins/pmpro-addon-packages.zip" class="button button-primary">Download</a>
26
- <?php } ?>
27
- </div>
28
- </div> <!-- end info -->
29
- <?php
30
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminpages/addons/pmpro-affiliates.php DELETED
@@ -1,30 +0,0 @@
1
- <?php
2
- /*
3
- Addon: PMPro Affiliates
4
- Slug: pmpro-affiliates
5
- */
6
- pmpro_add_addon('github', array(
7
- 'title' => 'PMPro Affiliates',
8
- 'version' => '.2.4',
9
- 'widget' => 'pmpro_addon_pmpro_affiliates_widget',
10
- 'enabled' => function_exists('pmpro_affiliates_dependencies')
11
- )
12
- );
13
-
14
- function pmpro_addon_pmpro_affiliates_widget($addon)
15
- {
16
- ?>
17
- <div class="info">
18
- <p>Lightweight Affiliate system. Create affiliate accounts and codes; tracks checkouts by affiliate account.</p>
19
- <div class="actions">
20
- <?php if($addon['enabled']) { ?>
21
- <a href="https://github.com/strangerstudios/pmpro-affiliates/blob/master/readme.txt" class="button">Enabled</a>
22
- <?php } elseif(file_exists(dirname(__FILE__) . "/../../../pmpro-affiliates/pmpro-affiliates.php")) { ?>
23
- <a href="<?php echo wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=pmpro-affiliates/pmpro-affiliates.php'), 'activate-plugin_pmpro-affiliates/pmpro-affiliates.php')?>" class="button button-primary">Activate</a>
24
- <?php } else { ?>
25
- <a href="http://www.paidmembershipspro.com/wp-content/uploads/plugins/pmpro-affiliates.zip" class="button button-primary">Download</a>
26
- <?php } ?>
27
- </div>
28
- </div> <!-- end info -->
29
- <?php
30
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminpages/addons/pmpro-aweber.php DELETED
@@ -1,31 +0,0 @@
1
- <?php
2
- /*
3
- Addon: PMPro AWeber Integration
4
- Slug: pmpro-aweber
5
- */
6
- pmpro_add_addon('thirdparty', array(
7
- 'title' => 'PMPro AWeber Integration',
8
- 'version' => '1.0',
9
- 'widget' => 'pmpro_addon_pmpro_aweber_widget',
10
- 'enabled' => function_exists('pmproaw_init')
11
- )
12
- );
13
-
14
- function pmpro_addon_pmpro_aweber_widget($addon)
15
- {
16
- ?>
17
- <img class="addon-thumb" src="<?php echo PMPRO_URL?>/adminpages/addons/images/pmpro-aweber.gif" />
18
- <div class="info">
19
- <p>Integrate User Registrations with AWeber. Adds members to lists based on their membership level. (Note: works without PMPro as well.)</p>
20
- <div class="actions">
21
- <?php if($addon['enabled']) { ?>
22
- <a href="<?php echo admin_url("plugins.php");?>" class="button">Enabled</a>
23
- <?php } elseif(file_exists(dirname(__FILE__) . "/../../../pmpro-aweber/pmpro-aweber.php")) { ?>
24
- <a href="<?php echo wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=pmpro-aweber/pmpro-aweber.php'), 'activate-plugin_pmpro-aweber/pmpro-aweber.php')?>" class="button button-primary">Activate</a>
25
- <?php } else { ?>
26
- <a href="<?php echo wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=pmpro-aweber'), 'install-plugin_pmpro-aweber'); ?>" class="button button-primary">Download</a>
27
- <?php } ?>
28
- </div>
29
- </div> <!-- end info -->
30
- <?php
31
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminpages/addons/pmpro-bbpress.php DELETED
@@ -1,31 +0,0 @@
1
- <?php
2
- /*
3
- Addon: PMPro bbPress
4
- Slug: pmpro-bbpress
5
- */
6
- pmpro_add_addon('repo', array(
7
- 'title' => 'PMPro bbPress',
8
- 'version' => '1.0.1',
9
- 'widget' => 'pmpro_addon_pmpro_bbpress_widget',
10
- 'enabled' => function_exists('pmprobbp_add_meta_box')
11
- )
12
- );
13
-
14
- function pmpro_addon_pmpro_bbpress_widget($addon)
15
- {
16
- ?>
17
- <img class="addon-thumb" src="<?php echo PMPRO_URL?>/adminpages/addons/images/pmpro-bbpress.jpg" />
18
- <div class="info">
19
- <p>Locking down bbPress Forums by Membership Level and Forum ID.</p>
20
- <div class="actions">
21
- <?php if($addon['enabled']) { ?>
22
- <a href="<?php echo admin_url("plugins.php");?>" class="button">Enabled</a>
23
- <?php } elseif(file_exists(dirname(__FILE__) . "/../../../pmpro-bbpress/pmpro-bbpress.php")) { ?>
24
- <a href="<?php echo wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=pmpro-bbpress/pmpro-bbpress.php'), 'activate-plugin_pmpro-bbpress/pmpro-bbpress.php')?>" class="button button-primary">Activate</a>
25
- <?php } else { ?>
26
- <a href="<?php echo wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=pmpro-bbpress'), 'install-plugin_pmpro-bbpress'); ?>" class="button button-primary">Download</a>
27
- <?php } ?>
28
- </div>
29
- </div> <!-- end info -->
30
- <?php
31
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminpages/addons/pmpro-constant-contact.php DELETED
@@ -1,31 +0,0 @@
1
- <?php
2
- /*
3
- Addon: PMPro Constant Contact Integration
4
- Slug: pmpro-constant-contact
5
- */
6
- pmpro_add_addon('thirdparty', array(
7
- 'title' => 'PMPro Constant Contact Integration',
8
- 'version' => '1.0',
9
- 'widget' => 'pmpro_addon_pmpro_constant_contact_widget',
10
- 'enabled' => function_exists('pmprocc_init')
11
- )
12
- );
13
-
14
- function pmpro_addon_pmpro_constant_contact_widget($addon)
15
- {
16
- ?>
17
- <img class="addon-thumb" src="<?php echo PMPRO_URL?>/adminpages/addons/images/pmpro-constant-contact.gif" />
18
- <div class="info">
19
- <p>Integrate User Registrations with Constant Contact . Adds members to lists based on their membership level. (Note: works without PMPro as well.)</p>
20
- <div class="actions">
21
- <?php if($addon['enabled']) { ?>
22
- <a href="<?php echo admin_url("plugins.php");?>" class="button">Enabled</a>
23
- <?php } elseif(file_exists(dirname(__FILE__) . "/../../../pmpro-constant-contact/pmpro-constant-contact.php")) { ?>
24
- <a href="<?php echo wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=pmpro-constant-contact/pmpro-constant-contact.php'), 'activate-plugin_pmpro-constant-contact/pmpro-constant-contact.php')?>" class="button button-primary">Activate</a>
25
- <?php } else { ?>
26
- <a href="<?php echo wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=pmpro-constant-contact'), 'install-plugin_pmpro-constant-contact'); ?>" class="button button-primary">Download</a>
27
- <?php } ?>
28
- </div>
29
- </div> <!-- end info -->
30
- <?php
31
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminpages/addons/pmpro-disable-emails.php DELETED
@@ -1,28 +0,0 @@
1
- <?php
2
- /*
3
- Addon: PMPro Disable PMPro Emails
4
- Slug: pmpro-disable-emails
5
- */
6
- pmpro_add_addon('gists', array(
7
- 'title' => 'PMPro Disable Emails',
8
- 'version' => '.1',
9
- 'widget' => 'pmpro_addon_pmpro_disable_emails_widget',
10
- 'enabled' => function_exists('dae_pmpro_email_recipient')
11
- )
12
- );
13
-
14
- function pmpro_addon_pmpro_disable_emails_widget($addon)
15
- {
16
- ?>
17
- <div class="info">
18
- <p>Disable all or specific emails sent by the PMPro plugin.</p>
19
- <div class="actions">
20
- <?php if($addon['enabled']) { ?>
21
- <a target="_blank" href="https://gist.github.com/strangerstudios/3667545" class="button">Enabled</a>
22
- <?php } else { ?>
23
- <a target="_blank" href="https://gist.github.com/strangerstudios/3667545" class="button button-primary">View Gist</a>
24
- <?php } ?>
25
- </div>
26
- </div> <!-- end info -->
27
- <?php
28
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminpages/addons/pmpro-email-templates.php DELETED
@@ -1,31 +0,0 @@
1
- <?php
2
- /*
3
- Addon: PMPro Email Templates Editor
4
- Slug: pmpro-email-templates-addon
5
- */
6
- pmpro_add_addon('repo', array(
7
- 'title' => 'PMPro Email Templates',
8
- 'version' => '.5.2',
9
- 'widget' => 'pmpro_addon_email_templates_widget',
10
- 'enabled' => function_exists('pmproet_scripts')
11
- )
12
- );
13
-
14
- function pmpro_addon_email_templates_widget($addon)
15
- {
16
- ?>
17
- <img class="addon-thumb" src="<?php echo PMPRO_URL?>/adminpages/addons/images/pmpro-email-templates.gif" />
18
- <div class="info">
19
- <p>Easily edit system-generated Email Templates from the WordPress admin.</p>
20
- <div class="actions">
21
- <?php if($addon['enabled']) { ?>
22
- <a href="http://wordpress.org/plugins/pmpro-email-templates-addon/" class="button">Enabled</a>
23
- <?php } elseif(file_exists(dirname(__FILE__) . "/../../../pmpro-email-templates-addon/pmpro-email-templates.php")) { ?>
24
- <a href="<?php echo wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=pmpro-email-templates-addon/pmpro-email-templates.php'), 'activate-plugin_pmpro-email-templates-addon/pmpro-email-templates.php')?>" class="button button-primary">Activate</a>
25
- <?php } else { ?>
26
- <a href="<?php echo wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=pmpro-email-templates-addon'), 'install-plugin_pmpro-email-templates-addon'); ?>" class="button button-primary">Download</a>
27
- <?php } ?>
28
- </div>
29
- </div> <!-- end info -->
30
- <?php
31
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminpages/addons/pmpro-expiration.php DELETED
@@ -1,30 +0,0 @@
1
- <?php
2
- /*
3
- Addon: PMPro Expiration Date
4
- Slug: pmpro-expiration
5
- */
6
- pmpro_add_addon('github', array(
7
- 'title' => 'PMPro Set Expiration Dates',
8
- 'version' => '.1.1',
9
- 'widget' => 'pmpro_addon_pmpro_expiration_widget',
10
- 'enabled' => function_exists('pmprosed_pmpro_checkout_level')
11
- )
12
- );
13
-
14
- function pmpro_addon_pmpro_expiration_widget($addon)
15
- {
16
- ?>
17
- <div class="info">
18
- <p>Set a specific expiration date (e.g. 2013-12-31) for a PMPro membership level or discount code.</p>
19
- <div class="actions">
20
- <?php if($addon['enabled']) { ?>
21
- <a href="https://github.com/strangerstudios/pmpro-set-expiration-dates/blob/master/readme.txt" class="button">Enabled</a>
22
- <?php } elseif(file_exists(dirname(__FILE__) . "/../../../pmpro-set-expiration-dates/pmpro-set-expiration-dates.php")) { ?>
23
- <a href="<?php echo wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=pmpro-set-expiration-dates/pmpro-set-expiration-dates.php'), 'activate-plugin_pmpro-set-expiration-dates/pmpro-set-expiration-dates.php')?>" class="button button-primary">Activate</a>
24
- <?php } else { ?>
25
- <a href="http://www.paidmembershipspro.com/wp-content/uploads/plugins/pmpro-set-expiration-dates.zip" class="button button-primary">Download</a>
26
- <?php } ?>
27
- </div>
28
- </div> <!-- end info -->
29
- <?php
30
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminpages/addons/pmpro-freeaddress.php DELETED
@@ -1,30 +0,0 @@
1
- <?php
2
- /*
3
- Addon: PMPro Require Name and Address for Free Level
4
- Slug: pmpro-freerequire
5
- */
6
- pmpro_add_addon('github', array(
7
- 'title' => 'PMPro Require Name/Address for Free Level',
8
- 'version' => '.2',
9
- 'widget' => 'pmpro_addon_pmpro_freerequire_widget',
10
- 'enabled' => function_exists('my_pmpro_checkout_boxes_require_address')
11
- )
12
- );
13
-
14
- function pmpro_addon_pmpro_freerequire_widget($addon)
15
- {
16
- ?>
17
- <div class="info">
18
- <p>Require name/address for free Membership Level checkout.</p>
19
- <div class="actions">
20
- <?php if($addon['enabled']) { ?>
21
- <a href="https://github.com/strangerstudios/pmpro-address-for-free-levels" class="button">Enabled</a>
22
- <?php } elseif(file_exists(dirname(__FILE__) . "/../../../pmpro-address-for-free-levels/pmpro-address-for-free-levels.php")) { ?>
23
- <a href="<?php echo wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=pmpro-address-for-free-levels/pmpro-address-for-free-levels.php'), 'activate-plugin_pmpro-address-for-free-levels/pmpro-address-for-free-levels.php')?>" class="button button-primary">Activate</a>
24
- <?php } else { ?>
25
- <a href="http://www.paidmembershipspro.com/wp-content/uploads/plugins/pmpro-address-for-free-levels.zip" class="button button-primary">Download</a>
26
- <?php } ?>
27
- </div>
28
- </div> <!-- end info -->
29
- <?php
30
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminpages/addons/pmpro-infusionsoft.php DELETED
@@ -1,31 +0,0 @@
1
- <?php
2
- /*
3
- Addon: PMPro Infusionsoft Integration
4
- Slug: pmpro-infusionsoft
5
- */
6
- pmpro_add_addon('thirdparty', array(
7
- 'title' => 'PMPro Infusionsoft Integration',
8
- 'version' => '1.2',
9
- 'widget' => 'pmpro_addon_pmpro_infusionsoft_widget',
10
- 'enabled' => function_exists('pmprois_init')
11
- )
12
- );
13
-
14
- function pmpro_addon_pmpro_infusionsoft_widget($addon)
15
- {
16
- ?>
17
- <img class="addon-thumb" src="<?php echo PMPRO_URL?>/adminpages/addons/images/pmpro-infusionsoft.jpg" />
18
- <div class="info">
19
- <p>Integrate with Infusionsoft. Add members to email lists (groups, tags) based on their membership level. (Note: works without PMPro as well.)</p>
20
- <div class="actions">
21
- <?php if($addon['enabled']) { ?>
22
- <a href="<?php echo admin_url("plugins.php");?>" class="button">Enabled</a>
23
- <?php } elseif(file_exists(dirname(__FILE__) . "/../../../pmpro-infusionsoft/pmpro-infusionsoft.php")) { ?>
24
- <a href="<?php echo wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=pmpro-infusionsoft/pmpro-infusionsoft.php'), 'activate-plugin_pmpro-infusionsoft/pmpro-infusionsoft.php')?>" class="button button-primary">Activate</a>
25
- <?php } else { ?>
26
- <a href="<?php echo wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=pmpro-infusionsoft'), 'install-plugin_pmpro-infusionsoft'); ?>" class="button button-primary">Download</a>
27
- <?php } ?>
28
- </div>
29
- </div> <!-- end info -->
30
- <?php
31
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminpages/addons/pmpro-international-addresses.php DELETED
@@ -1,31 +0,0 @@
1
- <?php
2
- /*
3
- Addon: PMPro International Addresses
4
- Slug: pmpro-international-addresses
5
- */
6
- pmpro_add_addon('github', array(
7
- 'title' => 'PMPro International Addresses',
8
- 'version' => '.2.2',
9
- 'widget' => 'pmpro_addon_pmpro_international_addresses_widget',
10
- 'enabled' => function_exists('pmproia_pmpro_international_addresses')
11
- )
12
- );
13
-
14
- function pmpro_addon_pmpro_international_addresses_widget($addon)
15
- {
16
- ?>
17
- <?php /* <img class="addon-thumb" src="<?php echo PMPRO_URL?>/adminpages/addons/images/pmpro-international-addresses.jpg" /> */ ?>
18
- <div class="info">
19
- <p>Adds long form addresses to the PMPro checkout.</p>
20
- <div class="actions">
21
- <?php if($addon['enabled']) { ?>
22
- <a href="https://github.com/strangerstudios/pmpro-international-addresses/" class="button">Enabled</a>
23
- <?php } elseif(file_exists(dirname(__FILE__) . "/../../../pmpro-international-addresses/pmpro-international-addresses.php")) { ?>
24
- <a href="<?php echo wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=pmpro-international-addresses/pmpro-international-addresses.php'), 'activate-plugin_pmpro-international-addresses/pmpro-international-addresses.php')?>" class="button button-primary">Activate</a>
25
- <?php } else { ?>
26
- <a href="http://www.paidmembershipspro.com/wp-content/uploads/plugins/pmpro-international-addresses.zip" class="button button-primary">Download</a>
27
- <?php } ?>
28
- </div>
29
- </div> <!-- end info -->
30
- <?php
31
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminpages/addons/pmpro-level-cost-text.php DELETED
@@ -1,30 +0,0 @@
1
- <?php
2
- /*
3
- Addon: PMPro Custom Level Cost Text
4
- Slug: pmpro-level-cost-text
5
- */
6
- pmpro_add_addon('github', array(
7
- 'title' => 'PMPro Level Cost Text',
8
- 'version' => '.2',
9
- 'widget' => 'pmpro_addon_pmpro_level_cost_text_widget',
10
- 'enabled' => function_exists('pclct_pmpro_discount_code_after_level_settings')
11
- )
12
- );
13
-
14
- function pmpro_addon_pmpro_level_cost_text_widget($addon)
15
- {
16
- ?>
17
- <div class="info">
18
- <p>Adds a "level cost text" field to PMPro Membership Levels and Discount Codes to allow you to override the automatically generated level cost text PMPro provides.</p>
19
- <div class="actions">
20
- <?php if($addon['enabled']) { ?>
21
- <a href="https://github.com/strangerstudios/pmpro-level-cost-text/blob/master/readme.txt" class="button">Enabled</a>
22
- <?php } elseif(file_exists(dirname(__FILE__) . "/../../../pmpro-level-cost-text/pmpro-level-cost-text.php")) { ?>
23
- <a href="<?php echo wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=pmpro-level-cost-text/pmpro-level-cost-text.php'), 'activate-plugin_pmpro-level-cost-text/pmpro-level-cost-text.php')?>" class="button button-primary">Activate</a>
24
- <?php } else { ?>
25
- <a href="http://www.paidmembershipspro.com/wp-content/uploads/plugins/pmpro-level-cost-text.zip" class="button button-primary">Download</a>
26
- <?php } ?>
27
- </div>
28
- </div> <!-- end info -->
29
- <?php
30
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminpages/addons/pmpro-mailchimp.php DELETED
@@ -1,31 +0,0 @@
1
- <?php
2
- /*
3
- Addon: PMPro MailChimp Integration
4
- Slug: pmpro-mailchimp
5
- */
6
- pmpro_add_addon('thirdparty', array(
7
- 'title' => 'PMPro MailChimp Integration',
8
- 'version' => '1.0',
9
- 'widget' => 'pmpro_addon_pmpro_mailchimp_widget',
10
- 'enabled' => function_exists('pmpromc_init')
11
- )
12
- );
13
-
14
- function pmpro_addon_pmpro_mailchimp_widget($addon)
15
- {
16
- ?>
17
- <img class="addon-thumb" src="<?php echo PMPRO_URL?>/adminpages/addons/images/pmpro-mailchimp.jpg" />
18
- <div class="info">
19
- <p>Integrate User Registrations with Mailchimp. Adds members to lists based on their membership level. (Note: works without PMPro as well.)</p>
20
- <div class="actions">
21
- <?php if($addon['enabled']) { ?>
22
- <a href="<?php echo admin_url("plugins.php");?>" class="button">Enabled</a>
23
- <?php } elseif(file_exists(dirname(__FILE__) . "/../../../pmpro-mailchimp/pmpro-mailchimp.php")) { ?>
24
- <a href="<?php echo wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=pmpro-mailchimp/pmpro-mailchimp.php'), 'activate-plugin_pmpro-mailchimp/pmpro-mailchimp.php')?>" class="button button-primary">Activate</a>
25
- <?php } else { ?>
26
- <a href="<?php echo wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=pmpro-mailchimp'), 'install-plugin_pmpro-mailchimp'); ?>" class="button button-primary">Download</a>
27
- <?php } ?>
28
- </div>
29
- </div> <!-- end info -->
30
- <?php
31
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminpages/addons/pmpro-network-subsite.php DELETED
@@ -1,31 +0,0 @@
1
- <?php
2
- /*
3
- Addon: PMPro Network
4
- Slug: pmpro-network-subsite
5
- */
6
- pmpro_add_addon('github', array(
7
- 'title' => 'PMPro Network Subsite Helper',
8
- 'version' => '.2',
9
- 'widget' => 'pmpro_addon_pmpro_network_subsite_widget',
10
- 'enabled' => function_exists('pmpron_subsite_activated_plugin')
11
- )
12
- );
13
-
14
- function pmpro_addon_pmpro_network_subsite_widget($addon)
15
- {
16
- ?>
17
- <img class="addon-thumb" src="<?php echo PMPRO_URL?>/adminpages/addons/images/pmpro-network.gif" />
18
- <div class="info">
19
- <p>Have network subsites use membership data from a "main" site to handle access restrictions.</p>
20
- <div class="actions">
21
- <?php if($addon['enabled']) { ?>
22
- <a href="https://github.com/strangerstudios/pmpro-network-subsite" class="button">Enabled</a>
23
- <?php } elseif(file_exists(dirname(__FILE__) . "/../../../pmpro-network-subsite/pmpro-network-subsite.php")) { ?>
24
- <a href="<?php echo wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=pmpro-network-subsite/pmpro-network-subsite.php'), 'activate-plugin_pmpro-network-subsite/pmpro-network-subsite.php')?>" class="button button-primary">Activate</a>
25
- <?php } else { ?>
26
- <a href="http://www.paidmembershipspro.com/wp-content/uploads/plugins/pmpro-network-subsite.zip" class="button button-primary">Download</a>
27
- <?php } ?>
28
- </div>
29
- </div> <!-- end info -->
30
- <?php
31
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminpages/addons/pmpro-network.php DELETED
@@ -1,31 +0,0 @@
1
- <?php
2
- /*
3
- Addon: PMPro Network
4
- Slug: pmpro-network
5
- */
6
- pmpro_add_addon('github', array(
7
- 'title' => 'PMPro Network',
8
- 'version' => '.3.1',
9
- 'widget' => 'pmpro_addon_pmpro_network_widget',
10
- 'enabled' => function_exists('pmpron_new_blogs_settings')
11
- )
12
- );
13
-
14
- function pmpro_addon_pmpro_network_widget($addon)
15
- {
16
- ?>
17
- <img class="addon-thumb" src="<?php echo PMPRO_URL?>/adminpages/addons/images/pmpro-network.gif" />
18
- <div class="info">
19
- <p>Allow users to checkout for a membership to create a site on your WordPress multisite network.</p>
20
- <div class="actions">
21
- <?php if($addon['enabled']) { ?>
22
- <a href="https://github.com/strangerstudios/pmpro-network/blob/master/readme.txt" class="button">Enabled</a>
23
- <?php } elseif(file_exists(dirname(__FILE__) . "/../../../pmpro-network/pmpro-network.php")) { ?>
24
- <a href="<?php echo wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=pmpro-network/pmpro-network.php'), 'activate-plugin_pmpro-network/pmpro-network.php')?>" class="button button-primary">Activate</a>
25
- <?php } else { ?>
26
- <a href="http://www.paidmembershipspro.com/wp-content/uploads/plugins/pmpro-network.zip" class="button button-primary">Download</a>
27
- <?php } ?>
28
- </div>
29
- </div> <!-- end info -->
30
- <?php
31
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminpages/addons/pmpro-post-affiliate-pro.php DELETED
@@ -1,31 +0,0 @@
1
- <?php
2
- /*
3
- Addon: PMPro Post Affiliate Pro Integration
4
- Slug: pmpro-post-affiliate-pro
5
- */
6
- pmpro_add_addon('thirdparty', array(
7
- 'title' => 'PMPro Post Affiliate Pro Integration',
8
- 'version' => '.2.1.1',
9
- 'widget' => 'pmpro_addon_pmpro_post_affiliate_pro_widget',
10
- 'enabled' => function_exists('pap_pmpro_track_sale')
11
- )
12
- );
13
-
14
- function pmpro_addon_pmpro_post_affiliate_pro_widget($addon)
15
- {
16
- ?>
17
- <img class="addon-thumb" src="<?php echo PMPRO_URL?>/adminpages/addons/images/pmpro-post-affiliate-pro.jpg" />
18
- <div class="info">
19
- <p>Integrate Paid Memberships Pro with the Post Affiliate Pro platform.</p>
20
- <div class="actions">
21
- <?php if($addon['enabled']) { ?>
22
- <a href="https://github.com/strangerstudios/pmpro-post-affiliate-pro/blob/master/readme.txt" class="button">Enabled</a>
23
- <?php } elseif(file_exists(dirname(__FILE__) . "/../../../pmpro-post-affiliate-pro/pmpro-post-affiliate-pro.php")) { ?>
24
- <a href="<?php echo wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=pmpro-post-affiliate-pro/pmpro-post-affiliate-pro.php'), 'activate-plugin_pmpro-post-affiliate-pro/pmpro-post-affiliate-pro.php')?>" class="button button-primary">Activate</a>
25
- <?php } else { ?>
26
- <a href="http://www.paidmembershipspro.com/wp-content/uploads/plugins/pmpro-post-affiliate-pro.zip" class="button button-primary">Download</a>
27
- <?php } ?>
28
- </div>
29
- </div> <!-- end info -->
30
- <?php
31
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminpages/addons/pmpro-register-helper.php DELETED
@@ -1,31 +0,0 @@
1
- <?php
2
- /*
3
- Addon: PMPro Register Helper
4
- Slug: pmpro-register-helper
5
- */
6
- pmpro_add_addon('github', array(
7
- 'title' => 'PMPro Register Helper',
8
- 'version' => '.5.16.1',
9
- 'widget' => 'pmpro_addon_pmpro_register_helper_widget',
10
- 'enabled' => class_exists('PMProRH_Field')
11
- )
12
- );
13
-
14
- function pmpro_addon_pmpro_register_helper_widget($addon)
15
- {
16
- ?>
17
- <img class="addon-thumb" src="<?php echo PMPRO_URL?>/adminpages/addons/images/pmpro-register-helper.gif" />
18
- <div class="info">
19
- <p>Add additional meta fields to your PMPro checkout page and/or "Your Profile" pages. Support for text, select, multi-select, textarea, hidden, and custom HTML. Loop into existing checkout/profile field sections or add new ones.</p>
20
- <div class="actions">
21
- <?php if($addon['enabled']) { ?>
22
- <a href="https://github.com/strangerstudios/pmpro-register-helper/blob/master/readme.txt" class="button">Enabled</a>
23
- <?php } elseif(file_exists(dirname(__FILE__) . "/../../../pmpro-register-helper/pmpro-register-helper.php")) { ?>
24
- <a href="<?php echo wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=pmpro-register-helper/pmpro-register-helper.php'), 'activate-plugin_pmpro-register-helper/pmpro-register-helper.php')?>" class="button button-primary">Activate</a>
25
- <?php } else { ?>
26
- <a href="http://www.paidmembershipspro.com/wp-content/uploads/plugins/pmpro-register-helper.zip" class="button button-primary">Download</a>
27
- <?php } ?>
28
- </div>
29
- </div> <!-- end info -->
30
- <?php
31
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminpages/addons/pmpro-require-code-to-register.php DELETED
@@ -1,28 +0,0 @@
1
- <?php
2
- /*
3
- Addon: PMPro Require Code to Register
4
- Slug: pmpro-require-code-to-register
5
- */
6
- pmpro_add_addon('gists', array(
7
- 'title' => 'PMPro Require a Code to Register',
8
- 'version' => '.1',
9
- 'widget' => 'pmpro_addon_pmpro_require_code_to_register_widget',
10
- 'enabled' => function_exists('my_pmpro_registration_checks_require_code_to_register')
11
- )
12
- );
13
-
14
- function pmpro_addon_pmpro_require_code_to_register_widget($addon)
15
- {
16
- ?>
17
- <div class="info">
18
- <p>Require a discount code to checkout for a specific level.</p>
19
- <div class="actions">
20
- <?php if($addon['enabled']) { ?>
21
- <a target="_blank" href="https://gist.github.com/strangerstudios/5573829" class="button">Enabled</a>
22
- <?php } else { ?>
23
- <a target="_blank" href="https://gist.github.com/strangerstudios/5573829" class="button button-primary">View Gist</a>
24
- <?php } ?>
25
- </div>
26
- </div> <!-- end info -->
27
- <?php
28
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminpages/addons/pmpro-series.php DELETED
@@ -1,31 +0,0 @@
1
- <?php
2
- /*
3
- Addon: PMPro Series
4
- Slug: pmpro-series
5
- */
6
- pmpro_add_addon('github', array(
7
- 'title' => 'PMPro Series',
8
- 'version' => '.3',
9
- 'widget' => 'pmpro_addon_pmpro_series_widget',
10
- 'enabled' => class_exists("PMProSeries")
11
- )
12
- );
13
-
14
- function pmpro_addon_pmpro_series_widget($addon)
15
- {
16
- ?>
17
- <img class="addon-thumb" src="<?php echo PMPRO_URL?>/adminpages/addons/images/pmpro-series.gif" />
18
- <div class="info">
19
- <p>"Drip feed" content to your members over the course of their membership. Serializes content by # of days post-registration.</p>
20
- <div class="actions">
21
- <?php if($addon['enabled']) { ?>
22
- <a href="<?php echo admin_url("edit.php?post_type=pmpro_series");?>" class="button">Enabled</a>
23
- <?php } elseif(file_exists(dirname(__FILE__) . "/../../../pmpro-series/pmpro-series.php")) { ?>
24
- <a href="<?php echo wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=pmpro-series/pmpro-series.php'), 'activate-plugin_pmpro-series/pmpro-series.php')?>" class="button button-primary">Activate</a>
25
- <?php } else { ?>
26
- <a href="http://www.paidmembershipspro.com/wp-content/uploads/plugins/pmpro-series.zip" class="button button-primary">Download</a>
27
- <?php } ?>
28
- </div>
29
- </div> <!-- end info -->
30
- <?php
31
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminpages/addons/pmpro-shipping.php DELETED
@@ -1,31 +0,0 @@
1
- <?php
2
- /*
3
- Addon: PMPro Shipping Add On
4
- Slug: pmpro-shipping
5
- */
6
- pmpro_add_addon('github', array(
7
- 'title' => 'PMPro Shipping Add On',
8
- 'version' => '.2.6',
9
- 'widget' => 'pmpro_addon_pmpro_shipping_widget',
10
- 'enabled' => function_exists('pmproship_pmpro_checkout_boxes')
11
- )
12
- );
13
-
14
- function pmpro_addon_pmpro_shipping_widget($addon)
15
- {
16
- ?>
17
- <?php /* <img class="addon-thumb" src="<?php echo PMPRO_URL?>/adminpages/addons/images/pmpro-shipping.jpg" /> */ ?>
18
- <div class="info">
19
- <p>Adds shipping fields to the checkout page, confirmation page, confirmation emails, member's list and edit user profile pages.</p>
20
- <div class="actions">
21
- <?php if($addon['enabled']) { ?>
22
- <a href="https://github.com/strangerstudios/pmpro-shipping/" class="button">Enabled</a>
23
- <?php } elseif(file_exists(dirname(__FILE__) . "/../../../pmpro-shipping/pmpro-shipping.php")) { ?>
24
- <a href="<?php echo wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=pmpro-shipping/pmpro-shipping.php'), 'activate-plugin_pmpro-shipping/pmpro-shipping.php')?>" class="button button-primary">Activate</a>
25
- <?php } else { ?>
26
- <a href="http://www.paidmembershipspro.com/wp-content/uploads/plugins/pmpro-shipping.zip" class="button button-primary">Download</a>
27
- <?php } ?>
28
- </div>
29
- </div> <!-- end info -->
30
- <?php
31
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminpages/addons/pmpro-user-pages.php DELETED
@@ -1,30 +0,0 @@
1
- <?php
2
- /*
3
- Addon: PMPro User Pages
4
- Slug: pmpro-user-pages
5
- */
6
- pmpro_add_addon('github', array(
7
- 'title' => 'PMPro User Pages',
8
- 'version' => '.3',
9
- 'widget' => 'pmpro_addon_pmpro_user_pages_widget',
10
- 'enabled' => function_exists('pmproup_pmpro_after_checkout')
11
- )
12
- );
13
-
14
- function pmpro_addon_pmpro_user_pages_widget($addon)
15
- {
16
- ?>
17
- <div class="info">
18
- <p>Creates a unique page for each Member after checkout, giving the Admin access to write customized content for each specific member.</p>
19
- <div class="actions">
20
- <?php if($addon['enabled']) { ?>
21
- <a href="https://github.com/strangerstudios/pmpro-user-pages/blob/master/readme.txt" class="button">Enabled</a>
22
- <?php } elseif(file_exists(dirname(__FILE__) . "/../../../pmpro-user-pages/pmpro-user-pages.php")) { ?>
23
- <a href="<?php echo wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=pmpro-user-pages/pmpro-user-pages.php'), 'activate-plugin_pmpro-user-pages/pmpro-user-pages.php')?>" class="button button-primary">Activate</a>
24
- <?php } else { ?>
25
- <a href="http://www.paidmembershipspro.com/wp-content/uploads/plugins/pmpro-user-pages.zip" class="button button-primary">Download</a>
26
- <?php } ?>
27
- </div>
28
- </div> <!-- end info -->
29
- <?php
30
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminpages/addons/pmpro-woocommerce.php DELETED
@@ -1,31 +0,0 @@
1
- <?php
2
- /*
3
- Addon: PMPro WooCommerce
4
- Slug: pmpro-woocommerce
5
- */
6
- pmpro_add_addon('thirdparty', array(
7
- 'title' => 'PMPro WooCommerce',
8
- 'version' => '1.2.2',
9
- 'widget' => 'pmpro_addon_pmpro_woocommerce_widget',
10
- 'enabled' => function_exists('pmprowoo_add_membership_from_order')
11
- )
12
- );
13
-
14
- function pmpro_addon_pmpro_woocommerce_widget($addon)
15
- {
16
- ?>
17
- <img class="addon-thumb" src="<?php echo PMPRO_URL?>/adminpages/addons/images/pmpro-woocommerce.gif" />
18
- <div class="info">
19
- <p>Use <a href="http://www.woothemes.com/woocommerce/">WooCommerce</a> to purchase membership levels or set members-only product pricing.</p>
20
- <div class="actions">
21
- <?php if($addon['enabled']) { ?>
22
- <a href="<?php echo admin_url("plugins.php");?>" class="button">Enabled</a>
23
- <?php } elseif(file_exists(dirname(__FILE__) . "/../../../pmpro-woocommerce/pmpro-woocommerce.php")) { ?>
24
- <a href="<?php echo wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=pmpro-woocommerce/pmpro-woocommerce.php'), 'activate-plugin_pmpro-woocommerce/pmpro-woocommerce.php')?>" class="button button-primary">Activate</a>
25
- <?php } else { ?>
26
- <a href="<?php echo wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=pmpro-woocommerce'), 'install-plugin_pmpro-woocommerce'); ?>" class="button button-primary">Download</a>
27
- <?php } ?>
28
- </div>
29
- </div> <!-- end info -->
30
- <?php
31
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminpages/addons/pmpro-wp-affiliate.php DELETED
@@ -1,31 +0,0 @@
1
- <?php
2
- /*
3
- Addon: PMPro WP Affiliate Platform Integration
4
- Slug: pmpro-wp-affiliate
5
- */
6
- pmpro_add_addon('thirdparty', array(
7
- 'title' => 'PMPro WP Affiliate Platform Integration',
8
- 'version' => '.3',
9
- 'widget' => 'pmpro_addon_pmpro_wp_affiliate_widget',
10
- 'enabled' => function_exists('wpa_pmpro_after_checkout')
11
- )
12
- );
13
-
14
- function pmpro_addon_pmpro_wp_affiliate_widget($addon)
15
- {
16
- ?>
17
- <img class="addon-thumb" src="<?php echo PMPRO_URL?>/adminpages/addons/images/pmpro-wp-affiliate-platform.jpg" />
18
- <div class="info">
19
- <p>Process an affiliate via WP Affiliate Platform after a PMPro checkout.</p>
20
- <div class="actions">
21
- <?php if($addon['enabled']) { ?>
22
- <a href="https://github.com/strangerstudios/pmpro-wp-affiliate-platform/" class="button">Enabled</a>
23
- <?php } elseif(file_exists(dirname(__FILE__) . "/../../../pmpro-wp-affiliate-platform/pmpro-wp-affiliate-platform.php")) { ?>
24
- <a href="<?php echo wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=pmpro-wp-affiliate-platform/pmpro-wp-affiliate-platform.php'), 'activate-plugin_pmpro-wp-affiliate-platform/pmpro-wp-affiliate-platform.php')?>" class="button button-primary">Activate</a>
25
- <?php } else { ?>
26
- <a href="http://www.paidmembershipspro.com/wp-content/uploads/plugins/pmpro-wp-affiliate-platform.zip" class="button button-primary">Download</a>
27
- <?php } ?>
28
- </div>
29
- </div> <!-- end info -->
30
- <?php
31
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminpages/addons/tml.php DELETED
@@ -1,32 +0,0 @@
1
- <?php
2
- /*
3
- Addon: Theme My Login
4
- Slug: pmpro-tml
5
- */
6
- pmpro_add_addon('recommended', array(
7
- 'title' => 'Theme My Login',
8
- 'widget' => 'pmpro_addon_tml_widget',
9
- 'enabled' => class_exists('Theme_My_Login'),
10
- 'version' => '6.3.10'
11
- )
12
- );
13
-
14
- function pmpro_addon_tml_widget($addon)
15
- {
16
- ?>
17
- <div class="info">
18
- <p>This plugin themes the WordPress login, registration and forgot password pages according to your current theme. By <a href="http://www.jfarthing.com/" target="_blank">Jeff Farthing</a></p>
19
- <div class="actions">
20
- <form method="post" name="component-actions" action="">
21
- <?php if($addon['enabled']) { ?>
22
- <a href="<?php echo admin_url("plugins.php");?>" class="button">Enabled</a>
23
- <?php } elseif(file_exists(dirname(__FILE__) . "/../../../theme-my-login/theme-my-login.php")) { ?>
24
- <a href="<?php echo wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=theme-my-login/theme-my-login.php'), 'activate-plugin_theme-my-login/theme-my-login.php')?>" class="button button-primary">Activate</a>
25
- <?php } else { ?>
26
- <a href="<?php echo wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=theme-my-login'), 'install-plugin_theme-my-login'); ?>" class="button button-primary">Download</a>
27
- <?php } ?>
28
- </form>
29
- </div>
30
- </div> <!-- end info -->
31
- <?php
32
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminpages/addons/wp-bouncer.php DELETED
@@ -1,31 +0,0 @@
1
- <?php
2
- /*
3
- Addon: WP Bouncer
4
- Slug: wp-bouncer
5
- */
6
- pmpro_add_addon('repo', array(
7
- 'title' => 'WP Bouncer',
8
- 'version' => '1.1',
9
- 'widget' => 'pmpro_addon_wp_bouncer_widget',
10
- 'enabled' => class_exists('WP_Bouncer')
11
- )
12
- );
13
-
14
- function pmpro_addon_wp_bouncer_widget($addon)
15
- {
16
- ?>
17
- <img class="addon-thumb" src="<?php echo PMPRO_URL?>/adminpages/addons/images/wp-bouncer.gif" />
18
- <div class="info">
19
- <p>Make sure users are only logged in from one computer or device at a time.</p>
20
- <div class="actions">
21
- <?php if($addon['enabled']) { ?>
22
- <a href="http://wordpress.org/plugins/wp-bouncer/" class="button">Enabled</a>
23
- <?php } elseif(file_exists(dirname(__FILE__) . "/../../../wp-bouncer/wp-bouncer.php")) { ?>
24
- <a href="<?php echo wp_nonce_url(self_admin_url('plugins.php?action=activate&plugin=wp-bouncer/wp-bouncer.php'), 'activate-plugin_wp-bouncer/wp-bouncer.php')?>" class="button button-primary">Activate</a>
25
- <?php } else { ?>
26
- <a href="<?php echo wp_nonce_url(self_admin_url('update.php?action=install-plugin&plugin=wp-bouncer'), 'install-plugin_wp-bouncer'); ?>" class="button button-primary">Download</a>
27
- <?php } ?>
28
- </div>
29
- </div> <!-- end info -->
30
- <?php
31
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
adminpages/admin_header.php CHANGED
@@ -22,11 +22,11 @@
22
  if(empty($msg))
23
  $msg = -1;
24
  if(empty($pmpro_level_ready) && empty($edit))
25
- $msgt .= " <a href=\"?page=pmpro-membershiplevels&edit=-1\">" . __("Add a membership level to get started.", "pmpro") . "</a>";
26
  elseif($pmpro_level_ready && !$pmpro_pages_ready && $view != "pmpro-pagesettings")
27
- $msgt .= " <a href=\"?page=pmpro-pagesettings\">" . __("Set up the membership pages", "pmpro") . "</a>.";
28
  elseif($pmpro_level_ready && $pmpro_pages_ready && !$pmpro_gateway_ready && $view != "pmpro-paymentsettings")
29
- $msgt .= " <a href=\"?page=pmpro-paymentsettings\">" . __("Set up your SSL certificate and payment gateway", "pmpro") . "</a>.";
30
 
31
  if(empty($msgt))
32
  $msg = false;
@@ -49,7 +49,7 @@
49
  elseif($view == "pmpro-membershiplevels")
50
  $msgt .= " " . __("The levels with issues are highlighted below.", "pmpro");
51
  else
52
- $msgt .= " <a href=\"?page=pmpro-membershiplevels\">" . __("Please edit your levels", "pmpro") . "</a>.";
53
  }
54
 
55
  if(!pmpro_checkLevelForPayflowCompatibility())
@@ -69,7 +69,7 @@
69
  elseif($view == "pmpro-membershiplevels")
70
  $msgt .= " " . __("The levels with issues are highlighted below.", "pmpro");
71
  else
72
- $msgt .= " <a href=\"?page=pmpro-membershiplevels\">" . __("Please edit your levels", "pmpro") . "</a>.";
73
  }
74
 
75
  if(!pmpro_checkLevelForBraintreeCompatibility())
@@ -89,7 +89,7 @@
89
  elseif($view == "pmpro-membershiplevels")
90
  $msgt .= " " . __("The levels with issues are highlighted below.", "pmpro");
91
  else
92
- $msgt .= " <a href=\"?page=pmpro-membershiplevels\">" . __("Please edit your levels", "pmpro") . "</a>.";
93
  }
94
 
95
  if(!pmpro_checkLevelForTwoCheckoutCompatibility())
@@ -110,7 +110,7 @@
110
  elseif($view == "pmpro-membershiplevels")
111
  $msgt .= " " . __("The levels with issues are highlighted below.", "pmpro");
112
  else
113
- $msgt .= " <a href=\"?page=pmpro-membershiplevels\">" . __("Please edit your levels", "pmpro") . "</a>.";
114
  }
115
 
116
  if(!empty($msg))
@@ -147,27 +147,27 @@
147
  ?>
148
  <h2 class="nav-tab-wrapper">
149
  <?php if(current_user_can('pmpro_membershiplevels')) { ?>
150
- <a href="admin.php?page=pmpro-membershiplevels" class="nav-tab<?php if($view == 'pmpro-membershiplevels') { ?> nav-tab-active<?php } ?>"><?php _e('Membership Levels', 'pmpro');?></a>
151
  <?php } ?>
152
 
153
  <?php if(current_user_can('pmpro_pagesettings')) { ?>
154
- <a href="admin.php?page=pmpro-pagesettings" class="nav-tab<?php if($view == 'pmpro-pagesettings') { ?> nav-tab-active<?php } ?>"><?php _e('Pages', 'pmpro');?></a>
155
  <?php } ?>
156
 
157
  <?php if(current_user_can('pmpro_paymentsettings')) { ?>
158
- <a href="admin.php?page=pmpro-paymentsettings" class="nav-tab<?php if($view == 'pmpro-paymentsettings') { ?> nav-tab-active<?php } ?>"><?php _e('Payment Gateway &amp; SSL', 'pmpro');?></a>
159
  <?php } ?>
160
 
161
  <?php if(current_user_can('pmpro_emailsettings')) { ?>
162
- <a href="admin.php?page=pmpro-emailsettings" class="nav-tab<?php if($view == 'pmpro-emailsettings') { ?> nav-tab-active<?php } ?>"><?php _e('Email', 'pmpro');?></a>
163
  <?php } ?>
164
 
165
  <?php if(current_user_can('pmpro_advancedsettings')) { ?>
166
- <a href="admin.php?page=pmpro-advancedsettings" class="nav-tab<?php if($view == 'pmpro-advancedsettings') { ?> nav-tab-active<?php } ?>"><?php _e('Advanced', 'pmpro');?></a>
167
  <?php } ?>
168
 
169
  <?php if(current_user_can('pmpro_addons')) { ?>
170
- <a href="admin.php?page=pmpro-addons" class="nav-tab<?php if($view == 'pmpro-addons') { ?> nav-tab-active<?php } ?>"><?php _e('Add Ons', 'pmpro');?></a>
171
  <?php } ?>
172
  </h2>
173
  <?php } ?>
22
  if(empty($msg))
23
  $msg = -1;
24
  if(empty($pmpro_level_ready) && empty($edit))
25
+ $msgt .= " <a href=\"" . admin_url('admin.php?page=pmpro-membershiplevels&edit=-1') . "\">" . __("Add a membership level to get started.", "pmpro") . "</a>";
26
  elseif($pmpro_level_ready && !$pmpro_pages_ready && $view != "pmpro-pagesettings")
27
+ $msgt .= " <a href=\"" . admin_url('admin.php?page=pmpro-pagesettings') . "\">" . __("Set up the membership pages", "pmpro") . "</a>.";
28
  elseif($pmpro_level_ready && $pmpro_pages_ready && !$pmpro_gateway_ready && $view != "pmpro-paymentsettings")
29
+ $msgt .= " <a href=\"" . admin_url('admin.php?page=pmpro-paymentsettings') . "\">" . __("Set up your SSL certificate and payment gateway", "pmpro") . "</a>.";
30
 
31
  if(empty($msgt))
32
  $msg = false;
49
  elseif($view == "pmpro-membershiplevels")
50
  $msgt .= " " . __("The levels with issues are highlighted below.", "pmpro");
51
  else
52
+ $msgt .= " <a href=\"" . admin_url('admin.php?page=pmpro-membershiplevels') . "\">" . __("Please edit your levels", "pmpro") . "</a>.";
53
  }
54
 
55
  if(!pmpro_checkLevelForPayflowCompatibility())
69
  elseif($view == "pmpro-membershiplevels")
70
  $msgt .= " " . __("The levels with issues are highlighted below.", "pmpro");
71
  else
72
+ $msgt .= " <a href=\"" . admin_url('admin.php?page=pmpro-membershiplevels') . "\">" . __("Please edit your levels", "pmpro") . "</a>.";
73
  }
74
 
75
  if(!pmpro_checkLevelForBraintreeCompatibility())
89
  elseif($view == "pmpro-membershiplevels")
90
  $msgt .= " " . __("The levels with issues are highlighted below.", "pmpro");
91
  else
92
+ $msgt .= " <a href=\"" . admin_url('admin.php?page=pmpro-membershiplevels') . "\">" . __("Please edit your levels", "pmpro") . "</a>.";
93
  }
94
 
95
  if(!pmpro_checkLevelForTwoCheckoutCompatibility())
110
  elseif($view == "pmpro-membershiplevels")
111
  $msgt .= " " . __("The levels with issues are highlighted below.", "pmpro");
112
  else
113
+ $msgt .= " <a href=\"" . admin_url('admin.php?page=pmpro-membershiplevels') . "\">" . __("Please edit your levels", "pmpro") . "</a>.";
114
  }
115
 
116
  if(!empty($msg))
147
  ?>
148
  <h2 class="nav-tab-wrapper">
149
  <?php if(current_user_can('pmpro_membershiplevels')) { ?>
150
+ <a href="<?php echo admin_url('admin.php?page=pmpro-membershiplevels');?>" class="nav-tab<?php if($view == 'pmpro-membershiplevels') { ?> nav-tab-active<?php } ?>"><?php _e('Membership Levels', 'pmpro');?></a>
151
  <?php } ?>
152
 
153
  <?php if(current_user_can('pmpro_pagesettings')) { ?>
154
+ <a href="<?php echo admin_url('admin.php?page=pmpro-pagesettings');?>" class="nav-tab<?php if($view == 'pmpro-pagesettings') { ?> nav-tab-active<?php } ?>"><?php _e('Pages', 'pmpro');?></a>
155
  <?php } ?>
156
 
157
  <?php if(current_user_can('pmpro_paymentsettings')) { ?>
158
+ <a href="<?php echo admin_url('admin.php?page=pmpro-paymentsettings');?>" class="nav-tab<?php if($view == 'pmpro-paymentsettings') { ?> nav-tab-active<?php } ?>"><?php _e('Payment Gateway &amp; SSL', 'pmpro');?></a>
159
  <?php } ?>
160
 
161
  <?php if(current_user_can('pmpro_emailsettings')) { ?>
162
+ <a href="<?php echo admin_url('admin.php?page=pmpro-emailsettings');?>" class="nav-tab<?php if($view == 'pmpro-emailsettings') { ?> nav-tab-active<?php } ?>"><?php _e('Email', 'pmpro');?></a>
163
  <?php } ?>
164
 
165
  <?php if(current_user_can('pmpro_advancedsettings')) { ?>
166
+ <a href="<?php echo admin_url('admin.php?page=pmpro-advancedsettings');?>" class="nav-tab<?php if($view == 'pmpro-advancedsettings') { ?> nav-tab-active<?php } ?>"><?php _e('Advanced', 'pmpro');?></a>
167
  <?php } ?>
168
 
169
  <?php if(current_user_can('pmpro_addons')) { ?>
170
+ <a href="<?php echo admin_url('admin.php?page=pmpro-addons');?>" class="nav-tab<?php if($view == 'pmpro-addons') { ?> nav-tab-active<?php } ?>"><?php _e('Add Ons', 'pmpro');?></a>
171
  <?php } ?>
172
  </h2>
173
  <?php } ?>
adminpages/discountcodes.php CHANGED
@@ -606,6 +606,7 @@
606
  }
607
  else
608
  {
 
609
  foreach($codes as $code)
610
  {
611
  ?>
606
  }
607
  else
608
  {
609
+ $count = 0;
610
  foreach($codes as $code)
611
  {
612
  ?>
adminpages/functions.php CHANGED
@@ -221,7 +221,7 @@ function pmpro_checkLevelForTwoCheckoutCompatibility($level = NULL)
221
  * @param string $field The name of the field to check.
222
  * @param bool $force If true, it will rebuild the cached results.
223
  *
224
- * @since 2.0
225
  */
226
  function pmpro_getClassesForPaymentSettingsField($field, $force = false)
227
  {
221
  * @param string $field The name of the field to check.
222
  * @param bool $force If true, it will rebuild the cached results.
223
  *
224
+ * @since 1.8
225
  */
226
  function pmpro_getClassesForPaymentSettingsField($field, $force = false)
227
  {
adminpages/membershiplevels.php CHANGED
@@ -1,673 +1,682 @@
1
- <?php
2
- //only admins can get this
3
- if(!function_exists("current_user_can") || (!current_user_can("manage_options") && !current_user_can("pmpro_membershiplevels")))
4
- {
5
- die(__("You do not have permissions to perform this action.", "pmpro"));
6
- }
7
-
8
- global $wpdb, $msg, $msgt, $pmpro_currency_symbol;
9
-
10
- //some vars
11
- $gateway = pmpro_getOption("gateway");
12
- $pmpro_level_order = pmpro_getOption('level_order');
13
-
14
- global $pmpro_stripe_error, $pmpro_braintree_error, $pmpro_payflow_error, $pmpro_twocheckout_error, $wp_version;
15
-
16
- if(isset($_REQUEST['edit']))
17
- $edit = intval($_REQUEST['edit']);
18
- else
19
- $edit = false;
20
- if(isset($_REQUEST['copy']))
21
- $copy = intval($_REQUEST['copy']);
22
- if(isset($_REQUEST['s']))
23
- $s = sanitize_text_field($_REQUEST['s']);
24
- else
25
- $s = "";
26
-
27
- if(isset($_REQUEST['action']))
28
- $action = sanitize_text_field($_REQUEST['action']);
29
- else
30
- $action = false;
31
-
32
- if(isset($_REQUEST['saveandnext']))
33
- $saveandnext = intval($_REQUEST['saveandnext']);
34
-
35
- if(isset($_REQUEST['saveid']))
36
- $saveid = intval($_REQUEST['saveid']);
37
- if(isset($_REQUEST['deleteid']))
38
- $deleteid = intval($_REQUEST['deleteid']);
39
-
40
- if($action == "save_membershiplevel")
41
- {
42
- $ml_name = stripslashes($_REQUEST['name']);
43
- $ml_description = stripslashes($_REQUEST['description']);
44
- $ml_confirmation = stripslashes($_REQUEST['confirmation']);
45
- $ml_initial_payment = stripslashes($_REQUEST['initial_payment']);
46
- if(!empty($_REQUEST['recurring']))
47
- $ml_recurring = 1;
48
- else
49
- $ml_recurring = 0;
50
- $ml_billing_amount = stripslashes($_REQUEST['billing_amount']);
51
- $ml_cycle_number = stripslashes($_REQUEST['cycle_number']);
52
- $ml_cycle_period = stripslashes($_REQUEST['cycle_period']);
53
- $ml_billing_limit = stripslashes($_REQUEST['billing_limit']);
54
- if(!empty($_REQUEST['custom_trial']))
55
- $ml_custom_trial = 1;
56
- else
57
- $ml_custom_trial = 0;
58
- $ml_trial_amount = stripslashes($_REQUEST['trial_amount']);
59
- $ml_trial_limit = stripslashes($_REQUEST['trial_limit']);
60
- if(!empty($_REQUEST['expiration']))
61
- $ml_expiration = 1;
62
- else
63
- $ml_expiration = 0;
64
- $ml_expiration_number = stripslashes($_REQUEST['expiration_number']);
65
- $ml_expiration_period = stripslashes($_REQUEST['expiration_period']);
66
- $ml_categories = array();
67
-
68
- //reversing disable to allow here
69
- if(empty($_REQUEST['disable_signups']))
70
- $ml_allow_signups = 1;
71
- else
72
- $ml_allow_signups = 0;
73
-
74
- foreach ( $_REQUEST as $key => $value )
75
- {
76
- if ( $value == 'yes' && preg_match( '/^membershipcategory_(\d+)$/i', $key, $matches ) )
77
- {
78
- $ml_categories[] = $matches[1];
79
- }
80
- }
81
-
82
- //clearing out values if checkboxes aren't checked
83
- if(empty($ml_recurring))
84
- {
85
- $ml_billing_amount = $ml_cycle_number = $ml_cycle_period = $ml_billing_limit = $ml_trial_amount = $ml_trial_limit = 0;
86
- }
87
- elseif(empty($ml_custom_trial))
88
- {
89
- $ml_trial_amount = $ml_trial_limit = 0;
90
- }
91
- if(empty($ml_expiration))
92
- {
93
- $ml_expiration_number = $ml_expiration_period = 0;
94
- }
95
-
96
- if($saveid > 0)
97
- {
98
- $sqlQuery = " UPDATE {$wpdb->pmpro_membership_levels}
99
- SET name = '" . esc_sql($ml_name) . "',
100
- description = '" . esc_sql($ml_description) . "',
101
- confirmation = '" . esc_sql($ml_confirmation) . "',
102
- initial_payment = '" . esc_sql($ml_initial_payment) . "',
103
- billing_amount = '" . esc_sql($ml_billing_amount) . "',
104
- cycle_number = '" . esc_sql($ml_cycle_number) . "',
105
- cycle_period = '" . esc_sql($ml_cycle_period) . "',
106
- billing_limit = '" . esc_sql($ml_billing_limit) . "',
107
- trial_amount = '" . esc_sql($ml_trial_amount) . "',
108
- trial_limit = '" . esc_sql($ml_trial_limit) . "',
109
- expiration_number = '" . esc_sql($ml_expiration_number) . "',
110
- expiration_period = '" . esc_sql($ml_expiration_period) . "',
111
- allow_signups = '" . esc_sql($ml_allow_signups) . "'
112
- WHERE id = '$saveid' LIMIT 1;";
113
- $wpdb->query($sqlQuery);
114
-
115
- pmpro_updateMembershipCategories( $saveid, $ml_categories );
116
- if(!mysql_errno())
117
- {
118
- $edit = false;
119
- $msg = 2;
120
- $msgt = __("Membership level updated successfully.", "pmpro");
121
- }
122
- else
123
- {
124
- $msg = -2;
125
- $msg = true;
126
- $msgt = __("Error updating membership level.", "pmpro");
127
- }
128
- }
129
- else
130
- {
131
- $sqlQuery = " INSERT INTO {$wpdb->pmpro_membership_levels}
132
- ( name, description, confirmation, initial_payment, billing_amount, cycle_number, cycle_period, billing_limit, trial_amount, trial_limit, expiration_number, expiration_period, allow_signups)
133
- VALUES
134
- ( '" . esc_sql($ml_name) . "', '" . esc_sql($ml_description) . "', '" . esc_sql($ml_confirmation) . "', '" . esc_sql($ml_initial_payment) . "', '" . esc_sql($ml_billing_amount) . "', '" . esc_sql($ml_cycle_number) . "', '" . esc_sql($ml_cycle_period) . "', '" . esc_sql($ml_billing_limit) . "', '" . esc_sql($ml_trial_amount) . "', '" . esc_sql($ml_trial_limit) . "', '" . esc_sql($ml_expiration_number) . "', '" . esc_sql($ml_expiration_period) . "', '" . esc_sql($ml_allow_signups) . "' )";
135
- $wpdb->query($sqlQuery);
136
- if(!mysql_errno())
137
- {
138
- $saveid = $wpdb->insert_id;
139
- pmpro_updateMembershipCategories( $saveid, $ml_categories );
140
-
141
- $edit = false;
142
- $msg = 1;
143
- $msgt = __("Membership level added successfully.", "pmpro");
144
- }
145
- else
146
- {
147
- $msg = -1;
148
- $msgt = __("Error adding membership level.", "pmpro");
149
- }
150
- }
151
-
152
- do_action("pmpro_save_membership_level", $saveid);
153
- }
154
- elseif($action == "delete_membership_level")
155
- {
156
- global $wpdb;
157
-
158
- $ml_id = intval($_REQUEST['deleteid']);
159
-
160
- if($ml_id > 0)
161
- {
162
- do_action("pmpro_delete_membership_level", $ml_id);
163
-
164
- //remove any categories from the ml
165
- $sqlQuery = "DELETE FROM $wpdb->pmpro_memberships_categories WHERE membership_id = '$ml_id'";
166
- $r1 = $wpdb->query($sqlQuery);
167
-
168
- //cancel any subscriptions to the ml
169
- $r2 = true;
170
- $user_ids = $wpdb->get_col("SELECT user_id FROM $wpdb->pmpro_memberships_users WHERE membership_id = '$ml_id' AND status = 'active'");
171
- foreach($user_ids as $user_id)
172
- {
173
- //change there membership level to none. that will handle the cancel
174
- if(pmpro_changeMembershipLevel(0, $user_id))
175
- {
176
- //okay
177
- }
178
- else
179
- {
180
- //couldn't delete the subscription
181
- //we should probably notify the admin
182
- $pmproemail = new PMProEmail();
183
- $pmproemail->data = array("body"=>"<p>" . sprintf(__("There was an error canceling the subscription for user with ID=%d. You will want to check your payment gateway to see if their subscription is still active.", "pmpro"), $user_id) . "</p>");
184
- $last_order = $wpdb->get_row("SELECT * FROM $wpdb->pmpro_membership_orders WHERE user_id = '" . $user_id . "' ORDER BY timestamp DESC LIMIT 1");
185
- if($last_order)
186
- $pmproemail->data["body"] .= "<p>" . __("Last Invoice", "pmpro") . ":<br />" . nl2br(var_export($last_order, true)) . "</p>";
187
- $pmproemail->sendEmail(get_bloginfo("admin_email"));
188
-
189
- $r2 = false;
190
- }
191
- }
192
-
193
- //delete the ml
194
- $sqlQuery = "DELETE FROM $wpdb->pmpro_membership_levels WHERE id = '$ml_id' LIMIT 1";
195
- $r3 = $wpdb->query($sqlQuery);
196
-
197
- if($r1 !== FALSE && $r2 !== FALSE && $r3 !== FALSE)
198
- {
199
- $msg = 3;
200
- $msgt = __("Membership level deleted successfully.", "pmpro");
201
- }
202
- else
203
- {
204
- $msg = -3;
205
- $msgt = __("Error deleting membership level.", "pmpro");
206
- }
207
- }
208
- else
209
- {
210
- $msg = -3;
211
- $msgt = __("Error deleting membership level.", "pmpro");
212
- }
213
- }
214
-
215
- require_once(dirname(__FILE__) . "/admin_header.php");
216
- ?>
217
-
218
- <?php
219
- if($edit)
220
- {
221
- ?>
222
-
223
- <h2>
224
- <?php
225
- if($edit > 0)
226
- echo __("Edit Membership Level", "pmpro");
227
- else
228
- echo __("Add New Membership Level", "pmpro");
229
- ?>
230
- </h2>
231
-
232
- <div>
233
- <?php
234
- // get the level...
235
- if(!empty($edit) && $edit > 0)
236
- {
237
- $level = $wpdb->get_row("SELECT * FROM $wpdb->pmpro_membership_levels WHERE id = '$edit' LIMIT 1", OBJECT);
238
- $temp_id = $level->id;
239
- }
240
- elseif(!empty($copy) && $copy > 0)
241
- {
242
- $level = $wpdb->get_row("SELECT * FROM $wpdb->pmpro_membership_levels WHERE id = '$copy' LIMIT 1", OBJECT);
243
- $temp_id = $level->id;
244
- $level->id = NULL;
245
- }
246
- else
247
-
248
- // didn't find a membership level, let's add a new one...
249
- if(empty($level))
250
- {
251
- $level = new stdClass();
252
- $level->id = NULL;
253
- $level->name = NULL;
254
- $level->description = NULL;
255
- $level->confirmation = NULL;
256
- $level->billing_amount = NULL;
257
- $level->trial_amount = NULL;
258
- $level->initial_payment = NULL;
259
- $level->billing_limit = NULL;
260
- $level->trial_limit = NULL;
261
- $level->expiration_number = NULL;
262
- $level->expiration_period = NULL;
263
- $edit = -1;
264
- }
265
-
266
- //defaults for new levels
267
- if(empty($copy) && $edit == -1)
268
- {
269
- $level->cycle_number = 1;
270
- $level->cycle_period = "Month";
271
- }
272
-
273
- // grab the categories for the given level...
274
- if(!empty($temp_id))
275
- $level->categories = $wpdb->get_col("SELECT c.category_id
276
- FROM $wpdb->pmpro_memberships_categories c
277
- WHERE c.membership_id = '" . $temp_id . "'");
278
- if(empty($level->categories))
279
- $level->categories = array();
280
-
281
- ?>
282
- <form action="" method="post" enctype="multipart/form-data">
283
- <input name="saveid" type="hidden" value="<?php echo esc_attr($edit); ?>" />
284
- <input type="hidden" name="action" value="save_membershiplevel" />
285
- <table class="form-table">
286
- <tbody>
287
- <tr>
288
- <th scope="row" valign="top"><label><?php _e('ID', 'pmpro');?>:</label></th>
289
- <td>
290
- <?php echo $level->id?>
291
- </td>
292
- </tr>
293
-
294
- <tr>
295
- <th scope="row" valign="top"><label for="name"><?php _e('Name', 'pmpro');?>:</label></th>
296
- <td><input name="name" type="text" size="50" value="<?php echo esc_attr($level->name);?>" /></td>
297
- </tr>
298
-
299
- <tr>
300
- <th scope="row" valign="top"><label for="description"><?php _e('Description', 'pmpro');?>:</label></th>
301
- <td>
302
- <div id="poststuff" class="pmpro_description">
303
- <?php
304
- if(version_compare($wp_version, "3.3") >= 0)
305
- wp_editor($level->description, "description", array("textarea_rows"=>5));
306
- else
307
- {
308
- ?>
309
- <textarea rows="10" cols="80" name="description" id="description"><?php echo esc_textarea($level->description);?></textarea>
310
- <?php
311
- }
312
- ?>
313
- </div>
314
- </td>
315
- </tr>
316
-
317
- <tr>
318
- <th scope="row" valign="top"><label for="confirmation"><?php _e('Confirmation Message', 'pmpro');?>:</label></th>
319
- <td>
320
- <div class="pmpro_confirmation">
321
- <?php
322
- if(version_compare($wp_version, "3.3") >= 0)
323
- wp_editor($level->confirmation, "confirmation", array("textarea_rows"=>5));
324
- else
325
- {
326
- ?>
327
- <textarea rows="10" cols="80" name="confirmation" id="confirmation"><?php echo esc_textarea($level->confirmation);?></textarea>
328
- <?php
329
- }
330
- ?>
331
- </div>
332
- </td>
333
- </tr>
334
- </tbody>
335
- </table>
336
-
337
- <h3 class="topborder"><?php _e('Billing Details', 'pmpro');?></h3>
338
- <table class="form-table">
339
- <tbody>
340
- <tr>
341
- <th scope="row" valign="top"><label for="initial_payment"><?php _e('Initial Payment', 'pmpro');?>:</label></th>
342
- <td>
343
- <?php
344
- if(pmpro_getCurrencyPosition() == "left")
345
- echo $pmpro_currency_symbol;
346
- ?>
347
- <input name="initial_payment" type="text" size="20" value="<?php echo esc_attr($level->initial_payment);?>" />
348
- <?php
349
- if(pmpro_getCurrencyPosition() == "right")
350
- echo $pmpro_currency_symbol;
351
- ?>
352
- <small><?php _e('The initial amount collected at registration.', 'pmpro');?></small></td>
353
- </tr>
354
-
355
- <tr>
356
- <th scope="row" valign="top"><label><?php _e('Recurring Subscription', 'pmpro');?>:</label></th>
357
- <td><input id="recurring" name="recurring" type="checkbox" value="yes" <?php if(pmpro_isLevelRecurring($level)) { echo "checked='checked'"; } ?> onclick="if(jQuery('#recurring').is(':checked')) { jQuery('.recurring_info').show(); if(jQuery('#custom_trial').is(':checked')) {jQuery('.trial_info').show();} else {jQuery('.trial_info').hide();} } else { jQuery('.recurring_info').hide();}" /> <label for="recurring"><?php _e('Check if this level has a recurring subscription payment.', 'pmpro');?></label></td>
358
- </tr>
359
-
360
- <tr class="recurring_info" <?php if(!pmpro_isLevelRecurring($level)) {?>style="display: none;"<?php } ?>>
361
- <th scope="row" valign="top"><label for="billing_amount"><?php _e('Billing Amount', 'pmpro');?>:</label></th>
362
- <td>
363
- <?php
364
- if(pmpro_getCurrencyPosition() == "left")
365
- echo $pmpro_currency_symbol;
366
- ?>
367
- <input name="billing_amount" type="text" size="20" value="<?php echo esc_attr($level->billing_amount);?>" />
368
- <?php
369
- if(pmpro_getCurrencyPosition() == "right")
370
- echo $pmpro_currency_symbol;
371
- ?>
372
- <small><?php _e('per', 'pmpro');?></small>
373
- <input id="cycle_number" name="cycle_number" type="text" size="10" value="<?php echo esc_attr($level->cycle_number);?>" />
374
- <select id="cycle_period" name="cycle_period">
375
- <?php
376
- $cycles = array( __('Day(s)', 'pmpro') => 'Day', __('Week(s)', 'pmpro') => 'Week', __('Month(s)', 'pmpro') => 'Month', __('Year(s)', 'pmpro') => 'Year' );
377
- foreach ( $cycles as $name => $value ) {
378
- echo "<option value='$value'";
379
- if ( $level->cycle_period == $value ) echo " selected='selected'";
380
- echo ">$name</option>";
381
- }
382
- ?>
383
- </select>
384
- <br /><small>
385
- <?php _e('The amount to be billed one cycle after the initial payment.', 'pmpro');?>
386
- <?php if($gateway == "stripe") { ?>
387
- <br /><strong <?php if(!empty($pmpro_stripe_error)) { ?>class="pmpro_red"<?php } ?>><?php _e('Stripe integration currently only supports billing periods of "Week", "Month" or "Year".', 'pmpro');?>
388
- <?php } elseif($gateway == "braintree") { ?>
389
- <br /><strong <?php if(!empty($pmpro_braintree_error)) { ?>class="pmpro_red"<?php } ?>><?php _e('Braintree integration currently only supports billing periods of "Month" or "Year".', 'pmpro');?>
390
- <?php } elseif($gateway == "payflowpro") { ?>
391
- <br /><strong <?php if(!empty($pmpro_payflow_error)) { ?>class="pmpro_red"<?php } ?>><?php _e('Payflow integration currently only supports billing frequencies of 1 and billing periods of "Week", "Month" or "Year".', 'pmpro');?>
392
- <?php } ?>
393
- </small>
394
- <?php if($gateway == "braintree" && $edit < 0) { ?>
395
- <p class="pmpro_message"><strong><?php _e('Note', 'pmpro');?>:</strong> <?php _e('After saving this level, make note of the ID and create a "Plan" in your Braintree dashboard with the same settings and the "Plan ID" set to <em>pmpro_#</em>, where # is the level ID.', 'pmpro');?></p>
396
- <?php } elseif($gateway == "braintree") { ?>
397
- <p class="pmpro_message"><strong><?php _e('Note', 'pmpro');?>:</strong> <?php _e('You will need to create a "Plan" in your Braintree dashboard with the same settings and the "Plan ID" set to', 'pmpro');?> <em>pmpro_<?php echo $level->id;?></em>.</p>
398
- <?php } ?>
399
- </td>
400
- </tr>
401
-
402
- <tr class="recurring_info" <?php if(!pmpro_isLevelRecurring($level)) {?>style="display: none;"<?php } ?>>
403
- <th scope="row" valign="top"><label for="billing_limit"><?php _e('Billing Cycle Limit', 'pmpro');?>:</label></th>
404
- <td>
405
- <input name="billing_limit" type="text" size="20" value="<?php echo $level->billing_limit?>" />
406
- <br /><small>
407
- <?php _e('The <strong>total</strong> number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite.', 'pmpro');?>
408
- <?php if($gateway == "stripe") { ?>
409
- <br /><strong <?php if(!empty($pmpro_stripe_error)) { ?>class="pmpro_red"<?php } ?>><?php _e('Stripe integration currently does not support billing limits. You can still set an expiration date below.', 'pmpro');?></strong>
410
- <?php } ?>
411
- </small>
412
- </td>
413
- </tr>
414
-
415
- <tr class="recurring_info" <?php if (!pmpro_isLevelRecurring($level)) echo "style='display:none;'";?>>
416
- <th scope="row" valign="top"><label><?php _e('Custom Trial', 'pmpro');?>:</label></th>
417
- <td>
418
- <input id="custom_trial" name="custom_trial" type="checkbox" value="yes" <?php if ( pmpro_isLevelTrial($level) ) { echo "checked='checked'"; } ?> onclick="jQuery('.trial_info').toggle();" /> <label for="custom_trial"><?php _e('Check to add a custom trial period.', 'pmpro');?></label>
419
-
420
- <?php if($gateway == "twocheckout") { ?>
421
- <br /><small><strong <?php if(!empty($pmpro_twocheckout_error)) { ?>class="pmpro_red"<?php } ?>><?php _e('2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount.', 'pmpro');?></strong></small>
422
- <?php } ?>
423
- </td>
424
- </tr>
425
-
426
- <tr class="trial_info recurring_info" <?php if (!pmpro_isLevelTrial($level)) echo "style='display:none;'";?>>
427
- <th scope="row" valign="top"><label for="trial_amount"><?php _e('Trial Billing Amount', 'pmpro');?>:</label></th>
428
- <td>
429
- <?php
430
- if(pmpro_getCurrencyPosition() == "left")
431
- echo $pmpro_currency_symbol;
432
- ?>
433
- <input name="trial_amount" type="text" size="20" value="<?php echo esc_attr($level->trial_amount);?>" />
434
- <?php
435
- if(pmpro_getCurrencyPosition() == "right")
436
- echo $pmpro_currency_symbol;
437
- ?>
438
- <small><?php _e('for the first', 'pmpro');?></small>
439
- <input name="trial_limit" type="text" size="10" value="<?php echo esc_attr($level->trial_limit);?>" />
440
- <small><?php _e('subscription payments', 'pmpro');?>.</small>
441
- <?php if($gateway == "stripe") { ?>
442
- <br /><small>
443
- <strong <?php if(!empty($pmpro_stripe_error)) { ?>class="pmpro_red"<?php } ?>><?php _e('Stripe integration currently does not support trial amounts greater than $0.', 'pmpro');?></strong>
444
- </small>
445
- <?php } elseif($gateway == "braintree") { ?>
446
- <br /><small>
447
- <strong <?php if(!empty($pmpro_braintree_error)) { ?>class="pmpro_red"<?php } ?>><?php _e('Braintree integration currently does not support trial amounts greater than $0.', 'pmpro');?></strong>
448
- </small>
449
- <?php } elseif($gateway == "payflowpro") { ?>
450
- <br /><small>
451
- <strong <?php if(!empty($pmpro_payflow_error)) { ?>class="pmpro_red"<?php } ?>><?php _e('Payflow integration currently does not support trial amounts greater than $0.', 'pmpro');?></strong>
452
- </small>
453
- <?php } ?>
454
- </td>
455
- </tr>
456
-
457
- </tbody>
458
- </table>
459
-
460
- <h3 class="topborder"><?php _e('Other Settings', 'pmpro');?></h3>
461
- <table class="form-table">
462
- <tbody>
463
- <tr>
464
- <th scope="row" valign="top"><label><?php _e('Disable New Signups', 'pmpro');?>:</label></th>
465
- <td><input id="disable_signups" name="disable_signups" type="checkbox" value="yes" <?php if($level->id && !$level->allow_signups) { ?>checked="checked"<?php } ?> /> <label for="disable_signups"><?php _e('Check to hide this level from the membership levels page and disable registration.', 'pmpro');?></label></td>
466
- </tr>
467
-
468
- <tr>
469
- <th scope="row" valign="top"><label><?php _e('Membership Expiration', 'pmpro');?>:</label></th>
470
- <td><input id="expiration" name="expiration" type="checkbox" value="yes" <?php if(pmpro_isLevelExpiring($level)) { echo "checked='checked'"; } ?> onclick="if(jQuery('#expiration').is(':checked')) { jQuery('.expiration_info').show(); } else { jQuery('.expiration_info').hide();}" /> <label for="expiration"><?php _e('Check this to set when membership access expires.', 'pmpro');?></a></td>
471
- </tr>
472
-
473
- <tr class="expiration_info" <?php if(!pmpro_isLevelExpiring($level)) {?>style="display: none;"<?php } ?>>
474
- <th scope="row" valign="top"><label for="billing_amount"><?php _e('Expires In', 'pmpro');?>:</label></th>
475
- <td>
476
- <input id="expiration_number" name="expiration_number" type="text" size="10" value="<?php echo esc_attr($level->expiration_number);?>" />
477
- <select id="expiration_period" name="expiration_period">
478
- <?php
479
- $cycles = array( __('Day(s)', 'pmpro') => 'Day', __('Week(s)', 'pmpro') => 'Week', __('Month(s)', 'pmpro') => 'Month', __('Year(s)', 'pmpro') => 'Year' );
480
- foreach ( $cycles as $name => $value ) {
481
- echo "<option value='$value'";
482
- if ( $level->expiration_period == $value ) echo " selected='selected'";
483
- echo ">$name</option>";
484
- }
485
- ?>
486
- </select>
487
- <br /><small><?php _e('Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires.', 'pmpro');?></small>
488
- </td>
489
- </tr>
490
- </tbody>
491
- </table>
492
-
493
- <?php do_action("pmpro_membership_level_after_other_settings"); ?>
494
-
495
- <h3 class="topborder"><?php _e('Content Settings', 'pmpro');?></h3>
496
- <table class="form-table">
497
- <tbody>
498
- <tr>
499
- <th scope="row" valign="top"><label><?php _e('Categories', 'pmpro');?>:</label></th>
500
- <td>
501
- <?php
502
- $categories = get_categories( array( 'hide_empty' => 0 ) );
503
- echo "<ul>";
504
- foreach ( $categories as $cat )
505
- {
506
- $checked = in_array( $cat->term_id, $level->categories ) ? "checked='checked'" : '';
507
- echo "<li><input id='membershipcategory_{$cat->term_id}' name='membershipcategory_{$cat->term_id}' type='checkbox' value='yes' $checked /> <label for='membershipcategory_{$cat->term_id}'>{$cat->name}</label></li>\n";
508
- }
509
- echo "</ul>";
510
- ?>
511
- </td>
512
- </tr>
513
- </tbody>
514
- </table>
515
- <p class="submit topborder">
516
- <input name="save" type="submit" class="button-primary" value="<?php _e('Save Level', 'pmpro'); ?>" />
517
- <input name="cancel" type="button" value="<?php _e('Cancel', 'pmpro'); ?>" onclick="location.href='<?php echo get_admin_url(NULL, '/admin.php?page=pmpro-membershiplevels')?>';" />
518
- </p>
519
- </form>
520
- </div>
521
-
522
- <?php
523
- }
524
- else
525
- {
526
- ?>
527
- <script>
528
- jQuery(document).ready(function($) {
529
-
530
- // Return a helper with preserved width of cells
531
- // from http://www.foliotek.com/devblog/make-table-rows-sortable-using-jquery-ui-sortable/
532
- var fixHelper = function(e, ui) {
533
- ui.children().each(function() {
534
- $(this).width($(this).width());
535
- });
536
- return ui;
537
- };
538
-
539
- $("table.membership-levels tbody").sortable({
540
- helper: fixHelper,
541
- placeholder: 'testclass',
542
- forcePlaceholderSize: true,
543
- update: update_level_order
544
- });
545
-
546
- function update_level_order(event, ui) {
547
- level_order = [];
548
- $("table.membership-levels tbody tr").each(function() {
549
- $(this).removeClass('alternate');
550
- level_order.push(parseInt( $("td:first", this).text()));
551
- });
552
-
553
- //update styles
554
- $("table.membership-levels tbody tr:odd").each(function() {
555
- $(this).addClass('alternate');
556
- });
557
-
558
- data = {
559
- action: 'pmpro_update_level_order',
560
- level_order: level_order
561
- };
562
-
563
- $.post(ajaxurl, data, function(response) {
564
- });
565
- }
566
- });
567
- </script>
568
-
569
- <h2 class="alignleft"><?php _e('Membership Levels', 'pmpro');?> <a href="admin.php?page=pmpro-membershiplevels&edit=-1" class="add-new-h2"><?php _e('Add New Level', 'pmpro');?></a></h2>
570
- <form id="posts-filter" method="get" action="">
571
- <p class="search-box">
572
- <label class="screen-reader-text" for="post-search-input"><?php _e('Search Levels', 'pmpro');?>:</label>
573
- <input type="hidden" name="page" value="pmpro-membershiplevels" />
574
- <input id="post-search-input" type="text" value="<?php echo esc_attr($s); ?>" name="s" size="30" />
575
- <input class="button" type="submit" value="<?php _e('Search Levels', 'pmpro');?>" id="search-submit" />
576
- </p>
577
- </form>
578
- <br class="clear" />
579
- <p><?php _e('Drag and drop membership levels to reorder them on the Levels page.', 'pmpro'); ?></p>
580
- <table class="widefat membership-levels">
581
- <thead>
582
- <tr>
583
- <th><?php _e('ID', 'pmpro');?></th>
584
- <th><?php _e('Name', 'pmpro');?></th>
585
- <th><?php _e('Billing Details', 'pmpro');?></th>
586
- <th><?php _e('Expiration', 'pmpro');?></th>
587
- <th><?php _e('Allow Signups', 'pmpro');?></th>
588
- <th></th>
589
- </tr>
590
- </thead>
591
- <tbody>
592
- <?php
593
- $sqlQuery = "SELECT * FROM $wpdb->pmpro_membership_levels ";
594
- if($s)
595
- $sqlQuery .= "WHERE name LIKE '%$s%' ";
596
- $sqlQuery .= "ORDER BY id ASC";
597
-
598
- $levels = $wpdb->get_results($sqlQuery, OBJECT);
599
-
600
- if(!empty($pmpro_level_order)) {
601
- //reorder levels
602
- $order = explode(',', $pmpro_level_order);
603
-
604
- //put level ids in their own array
605
- $level_ids = array();
606
- foreach($levels as $level)
607
- $level_ids[] = $level->id;
608
-
609
- //remove levels from order if they are gone
610
- foreach($order as $key => $level_id)
611
- if(!in_array($level_id, $level_ids))
612
- unset($order[$key]);
613
-
614
- //add levels to the end if they aren't in the order array
615
- foreach($level_ids as $level_id)
616
- if(!in_array($level_id, $order))
617
- $order[] = $level_id;
618
-
619
- //remove dupes
620
- $order = array_unique($order);
621
-
622
- //save the level order
623
- pmpro_setOption('level_order', implode(',', $order));
624
-
625
- //reorder levels here
626
- $reordered_levels = array();
627
- foreach ($order as $level_id) {
628
- foreach ($levels as $level) {
629
- if ($level_id == $level->id)
630
- $reordered_levels[] = $level;
631
- }
632
- }
633
- }
634
- else
635
- $reordered_levels = $levels;
636
-
637
- $count = 0;
638
- foreach($reordered_levels as $level)
639
- {
640
- ?>
641
- <tr class="<?php if($count++ % 2 == 1) { ?>alternate<?php } ?> <?php if(!$level->allow_signups) { ?>pmpro_gray<?php } ?> <?php if(!pmpro_checkLevelForStripeCompatibility($level) || !pmpro_checkLevelForBraintreeCompatibility($level) || !pmpro_checkLevelForPayflowCompatibility($level) || !pmpro_checkLevelForTwoCheckoutCompatibility($level)) { ?>pmpro_error<?php } ?>">
642
- <td><?php echo $level->id?></td>
643
- <td class="level_name"><a href="admin.php?page=pmpro-membershiplevels&edit=<?php echo $level->id?>"><?php echo $level->name?></a></td>
644
- <td>
645
- <?php if(pmpro_isLevelFree($level)) { ?>
646
- <?php _e('FREE', 'pmpro');?>
647
- <?php } else { ?>
648
- <?php echo str_replace( 'The price for membership is', '', pmpro_getLevelCost($level)); ?>
649
- <?php } ?>
650
- </td>
651
- <td>
652
- <?php if(!pmpro_isLevelExpiring($level)) { ?>
653
- --
654
- <?php } else { ?>
655
- <?php _e('After', 'pmpro');?> <?php echo $level->expiration_number?> <?php echo sornot($level->expiration_period,$level->expiration_number)?>
656
- <?php } ?>
657
- </td>
658
- <td><?php if($level->allow_signups) { ?><a href="<?php echo pmpro_url("checkout", "?level=" . $level->id);?>"><?php _e('Yes', 'pmpro');?></a><?php } else { ?><?php _e('No', 'pmpro');?><?php } ?></td>
659
-
660
- <td><a title="<?php _e('edit','pmpro'); ?>" href="admin.php?page=pmpro-membershiplevels&edit=<?php echo $level->id?>" class="button-primary"><?php _e('edit','pmpro'); ?></a>&nbsp;<a title="<?php _e('copy','pmpro'); ?>" href="admin.php?page=pmpro-membershiplevels&copy=<?php echo $level->id?>&edit=-1" class="button-secondary"><?php _e('copy','pmpro'); ?></a>&nbsp;<a title="<?php _e('delete','pmpro'); ?>" href="javascript: askfirst('<?php echo str_replace("'", "\'", sprintf("Are you sure you want to delete membership level %s? All subscriptions will be cancelled.", "pmpro"), $level->name);?>','admin.php?page=pmpro-membershiplevels&action=delete_membership_level&deleteid=<?php echo $level->id?>'); void(0);" class="button-secondary"><?php _e('delete','pmpro'); ?></a></td>
661
- </tr>
662
- <?php
663
- }
664
- ?>
665
- </tbody>
666
- </table>
667
- <?php
668
- }
669
- ?>
670
-
671
- <?php
672
- require_once(dirname(__FILE__) . "/admin_footer.php");
673
- ?>
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ //only admins can get this
3
+ if(!function_exists("current_user_can") || (!current_user_can("manage_options") && !current_user_can("pmpro_membershiplevels")))
4
+ {
5
+ die(__("You do not have permissions to perform this action.", "pmpro"));
6
+ }
7
+
8
+ global $wpdb, $msg, $msgt, $pmpro_currency_symbol;
9
+
10
+ //some vars
11
+ $gateway = pmpro_getOption("gateway");
12
+ $pmpro_level_order = pmpro_getOption('level_order');
13
+
14
+ global $pmpro_stripe_error, $pmpro_braintree_error, $pmpro_payflow_error, $pmpro_twocheckout_error, $wp_version;
15
+
16
+ if(isset($_REQUEST['edit']))
17
+ $edit = intval($_REQUEST['edit']);
18
+ else
19
+ $edit = false;
20
+ if(isset($_REQUEST['copy']))
21
+ $copy = intval($_REQUEST['copy']);
22
+ if(isset($_REQUEST['s']))
23
+ $s = sanitize_text_field($_REQUEST['s']);
24
+ else
25
+ $s = "";
26
+
27
+ if(isset($_REQUEST['action']))
28
+ $action = sanitize_text_field($_REQUEST['action']);
29
+ else
30
+ $action = false;
31
+
32
+ if(isset($_REQUEST['saveandnext']))
33
+ $saveandnext = intval($_REQUEST['saveandnext']);
34
+
35
+ if(isset($_REQUEST['saveid']))
36
+ $saveid = intval($_REQUEST['saveid']);
37
+ if(isset($_REQUEST['deleteid']))
38
+ $deleteid = intval($_REQUEST['deleteid']);
39
+
40
+ if($action == "save_membershiplevel")
41
+ {
42
+ $ml_name = stripslashes($_REQUEST['name']);
43
+ $ml_description = stripslashes($_REQUEST['description']);
44
+ $ml_confirmation = stripslashes($_REQUEST['confirmation']);
45
+ $ml_initial_payment = stripslashes($_REQUEST['initial_payment']);
46
+ if(!empty($_REQUEST['recurring']))
47
+ $ml_recurring = 1;
48
+ else
49
+ $ml_recurring = 0;
50
+ $ml_billing_amount = stripslashes($_REQUEST['billing_amount']);
51
+ $ml_cycle_number = stripslashes($_REQUEST['cycle_number']);
52
+ $ml_cycle_period = stripslashes($_REQUEST['cycle_period']);
53
+ $ml_billing_limit = stripslashes($_REQUEST['billing_limit']);
54
+ if(!empty($_REQUEST['custom_trial']))
55
+ $ml_custom_trial = 1;
56
+ else
57
+ $ml_custom_trial = 0;
58
+ $ml_trial_amount = stripslashes($_REQUEST['trial_amount']);
59
+ $ml_trial_limit = stripslashes($_REQUEST['trial_limit']);
60
+ if(!empty($_REQUEST['expiration']))
61
+ $ml_expiration = 1;
62
+ else
63
+ $ml_expiration = 0;
64
+ $ml_expiration_number = stripslashes($_REQUEST['expiration_number']);
65
+ $ml_expiration_period = stripslashes($_REQUEST['expiration_period']);
66
+ $ml_categories = array();
67
+
68
+ //reversing disable to allow here
69
+ if(empty($_REQUEST['disable_signups']))
70
+ $ml_allow_signups = 1;
71
+ else
72
+ $ml_allow_signups = 0;
73
+
74
+ foreach ( $_REQUEST as $key => $value )
75
+ {
76
+ if ( $value == 'yes' && preg_match( '/^membershipcategory_(\d+)$/i', $key, $matches ) )
77
+ {
78
+ $ml_categories[] = $matches[1];
79
+ }
80
+ }
81
+
82
+ //clearing out values if checkboxes aren't checked
83
+ if(empty($ml_recurring))
84
+ {
85
+ $ml_billing_amount = $ml_cycle_number = $ml_cycle_period = $ml_billing_limit = $ml_trial_amount = $ml_trial_limit = 0;
86
+ }
87
+ elseif(empty($ml_custom_trial))
88
+ {
89
+ $ml_trial_amount = $ml_trial_limit = 0;
90
+ }
91
+ if(empty($ml_expiration))
92
+ {
93
+ $ml_expiration_number = $ml_expiration_period = 0;
94
+ }
95
+
96
+ if($saveid > 0)
97
+ {
98
+ $sqlQuery = " UPDATE {$wpdb->pmpro_membership_levels}
99
+ SET name = '" . esc_sql($ml_name) . "',
100
+ description = '" . esc_sql($ml_description) . "',
101
+ confirmation = '" . esc_sql($ml_confirmation) . "',
102
+ initial_payment = '" . esc_sql($ml_initial_payment) . "',
103
+ billing_amount = '" . esc_sql($ml_billing_amount) . "',
104
+ cycle_number = '" . esc_sql($ml_cycle_number) . "',
105
+ cycle_period = '" . esc_sql($ml_cycle_period) . "',
106
+ billing_limit = '" . esc_sql($ml_billing_limit) . "',
107
+ trial_amount = '" . esc_sql($ml_trial_amount) . "',
108
+ trial_limit = '" . esc_sql($ml_trial_limit) . "',
109
+ expiration_number = '" . esc_sql($ml_expiration_number) . "',
110
+ expiration_period = '" . esc_sql($ml_expiration_period) . "',
111
+ allow_signups = '" . esc_sql($ml_allow_signups) . "'
112
+ WHERE id = '$saveid' LIMIT 1;";
113
+ $wpdb->query($sqlQuery);
114
+
115
+ pmpro_updateMembershipCategories( $saveid, $ml_categories );
116
+ if(!mysql_errno())
117
+ {
118
+ $edit = false;
119
+ $msg = 2;
120
+ $msgt = __("Membership level updated successfully.", "pmpro");
121
+ }
122
+ else
123
+ {
124
+ $msg = -2;
125
+ $msg = true;
126
+ $msgt = __("Error updating membership level.", "pmpro");
127
+ }
128
+ }
129
+ else
130
+ {
131
+ $sqlQuery = " INSERT INTO {$wpdb->pmpro_membership_levels}
132
+ ( name, description, confirmation, initial_payment, billing_amount, cycle_number, cycle_period, billing_limit, trial_amount, trial_limit, expiration_number, expiration_period, allow_signups)
133
+ VALUES
134
+ ( '" . esc_sql($ml_name) . "', '" . esc_sql($ml_description) . "', '" . esc_sql($ml_confirmation) . "', '" . esc_sql($ml_initial_payment) . "', '" . esc_sql($ml_billing_amount) . "', '" . esc_sql($ml_cycle_number) . "', '" . esc_sql($ml_cycle_period) . "', '" . esc_sql($ml_billing_limit) . "', '" . esc_sql($ml_trial_amount) . "', '" . esc_sql($ml_trial_limit) . "', '" . esc_sql($ml_expiration_number) . "', '" . esc_sql($ml_expiration_period) . "', '" . esc_sql($ml_allow_signups) . "' )";
135
+ $wpdb->query($sqlQuery);
136
+ if(!mysql_errno())
137
+ {
138
+ $saveid = $wpdb->insert_id;
139
+ pmpro_updateMembershipCategories( $saveid, $ml_categories );
140
+
141
+ $edit = false;
142
+ $msg = 1;
143
+ $msgt = __("Membership level added successfully.", "pmpro");
144
+ }
145
+ else
146
+ {
147
+ $msg = -1;
148
+ $msgt = __("Error adding membership level.", "pmpro");
149
+ }
150
+ }
151
+
152
+ do_action("pmpro_save_membership_level", $saveid);
153
+ }
154
+ elseif($action == "delete_membership_level")
155
+ {
156
+ global $wpdb;
157
+
158
+ $ml_id = intval($_REQUEST['deleteid']);
159
+
160
+ if($ml_id > 0)
161
+ {
162
+ do_action("pmpro_delete_membership_level", $ml_id);
163
+
164
+ //remove any categories from the ml
165
+ $sqlQuery = "DELETE FROM $wpdb->pmpro_memberships_categories WHERE membership_id = '$ml_id'";
166
+ $r1 = $wpdb->query($sqlQuery);
167
+
168
+ //cancel any subscriptions to the ml
169
+ $r2 = true;
170
+ $user_ids = $wpdb->get_col("SELECT user_id FROM $wpdb->pmpro_memberships_users WHERE membership_id = '$ml_id' AND status = 'active'");
171
+ foreach($user_ids as $user_id)
172
+ {
173
+ //change there membership level to none. that will handle the cancel
174
+ if(pmpro_changeMembershipLevel(0, $user_id))
175
+ {
176
+ //okay
177
+ }
178
+ else
179
+ {
180
+ //couldn't delete the subscription
181
+ //we should probably notify the admin
182
+ $pmproemail = new PMProEmail();
183
+ $pmproemail->data = array("body"=>"<p>" . sprintf(__("There was an error canceling the subscription for user with ID=%d. You will want to check your payment gateway to see if their subscription is still active.", "pmpro"), $user_id) . "</p>");
184
+ $last_order = $wpdb->get_row("SELECT * FROM $wpdb->pmpro_membership_orders WHERE user_id = '" . $user_id . "' ORDER BY timestamp DESC LIMIT 1");
185
+ if($last_order)
186
+ $pmproemail->data["body"] .= "<p>" . __("Last Invoice", "pmpro") . ":<br />" . nl2br(var_export($last_order, true)) . "</p>";
187
+ $pmproemail->sendEmail(get_bloginfo("admin_email"));
188
+
189
+ $r2 = false;
190
+ }
191
+ }
192
+
193
+ //delete the ml
194
+ $sqlQuery = "DELETE FROM $wpdb->pmpro_membership_levels WHERE id = '$ml_id' LIMIT 1";
195
+ $r3 = $wpdb->query($sqlQuery);
196
+
197
+ if($r1 !== FALSE && $r2 !== FALSE && $r3 !== FALSE)
198
+ {
199
+ $msg = 3;
200
+ $msgt = __("Membership level deleted successfully.", "pmpro");
201
+ }
202
+ else
203
+ {
204
+ $msg = -3;
205
+ $msgt = __("Error deleting membership level.", "pmpro");
206
+ }
207
+ }
208
+ else
209
+ {
210
+ $msg = -3;
211
+ $msgt = __("Error deleting membership level.", "pmpro");
212
+ }
213
+ }
214
+
215
+ require_once(dirname(__FILE__) . "/admin_header.php");
216
+ ?>
217
+
218
+ <?php
219
+ if($edit)
220
+ {
221
+ ?>
222
+
223
+ <h2>
224
+ <?php
225
+ if($edit > 0)
226
+ echo __("Edit Membership Level", "pmpro");
227
+ else
228
+ echo __("Add New Membership Level", "pmpro");
229
+ ?>
230
+ </h2>
231
+
232
+ <div>
233
+ <?php
234
+ // get the level...
235
+ if(!empty($edit) && $edit > 0)
236
+ {
237
+ $level = $wpdb->get_row("SELECT * FROM $wpdb->pmpro_membership_levels WHERE id = '$edit' LIMIT 1", OBJECT);
238
+ $temp_id = $level->id;
239
+ }
240
+ elseif(!empty($copy) && $copy > 0)
241
+ {
242
+ $level = $wpdb->get_row("SELECT * FROM $wpdb->pmpro_membership_levels WHERE id = '$copy' LIMIT 1", OBJECT);
243
+ $temp_id = $level->id;
244
+ $level->id = NULL;
245
+ }
246
+ else
247
+
248
+ // didn't find a membership level, let's add a new one...
249
+ if(empty($level))
250
+ {
251
+ $level = new stdClass();
252
+ $level->id = NULL;
253
+ $level->name = NULL;
254
+ $level->description = NULL;
255
+ $level->confirmation = NULL;
256
+ $level->billing_amount = NULL;
257
+ $level->trial_amount = NULL;
258
+ $level->initial_payment = NULL;
259
+ $level->billing_limit = NULL;
260
+ $level->trial_limit = NULL;
261
+ $level->expiration_number = NULL;
262
+ $level->expiration_period = NULL;
263
+ $edit = -1;
264
+ }
265
+
266
+ //defaults for new levels
267
+ if(empty($copy) && $edit == -1)
268
+ {
269
+ $level->cycle_number = 1;
270
+ $level->cycle_period = "Month";
271
+ }
272
+
273
+ // grab the categories for the given level...
274
+ if(!empty($temp_id))
275
+ $level->categories = $wpdb->get_col("SELECT c.category_id
276
+ FROM $wpdb->pmpro_memberships_categories c
277
+ WHERE c.membership_id = '" . $temp_id . "'");
278
+ if(empty($level->categories))
279
+ $level->categories = array();
280
+
281
+ ?>
282
+ <form action="" method="post" enctype="multipart/form-data">
283
+ <input name="saveid" type="hidden" value="<?php echo esc_attr($edit); ?>" />
284
+ <input type="hidden" name="action" value="save_membershiplevel" />
285
+ <table class="form-table">
286
+ <tbody>
287
+ <tr>
288
+ <th scope="row" valign="top"><label><?php _e('ID', 'pmpro');?>:</label></th>
289
+ <td>
290
+ <?php echo $level->id?>
291
+ </td>
292
+ </tr>
293
+
294
+ <tr>
295
+ <th scope="row" valign="top"><label for="name"><?php _e('Name', 'pmpro');?>:</label></th>
296
+ <td><input name="name" type="text" size="50" value="<?php echo esc_attr($level->name);?>" /></td>
297
+ </tr>
298
+
299
+ <tr>
300
+ <th scope="row" valign="top"><label for="description"><?php _e('Description', 'pmpro');?>:</label></th>
301
+ <td>
302
+ <div id="poststuff" class="pmpro_description">
303
+ <?php
304
+ if(version_compare($wp_version, "3.3") >= 0)
305
+ wp_editor($level->description, "description", array("textarea_rows"=>5));
306
+ else
307
+ {
308
+ ?>
309
+ <textarea rows="10" cols="80" name="description" id="description"><?php echo esc_textarea($level->description);?></textarea>
310
+ <?php
311
+ }
312
+ ?>
313
+ </div>
314
+ </td>
315
+ </tr>
316
+
317
+ <tr>
318
+ <th scope="row" valign="top"><label for="confirmation"><?php _e('Confirmation Message', 'pmpro');?>:</label></th>
319
+ <td>
320
+ <div class="pmpro_confirmation">
321
+ <?php
322
+ if(version_compare($wp_version, "3.3") >= 0)
323
+ wp_editor($level->confirmation, "confirmation", array("textarea_rows"=>5));
324
+ else
325
+ {
326
+ ?>
327
+ <textarea rows="10" cols="80" name="confirmation" id="confirmation"><?php echo esc_textarea($level->confirmation);?></textarea>
328
+ <?php
329
+ }
330
+ ?>
331
+ </div>
332
+ </td>
333
+ </tr>
334
+ </tbody>
335
+ </table>
336
+
337
+ <h3 class="topborder"><?php _e('Billing Details', 'pmpro');?></h3>
338
+ <table class="form-table">
339
+ <tbody>
340
+ <tr>
341
+ <th scope="row" valign="top"><label for="initial_payment"><?php _e('Initial Payment', 'pmpro');?>:</label></th>
342
+ <td>
343
+ <?php
344
+ if(pmpro_getCurrencyPosition() == "left")
345
+ echo $pmpro_currency_symbol;
346
+ ?>
347
+ <input name="initial_payment" type="text" size="20" value="<?php echo esc_attr($level->initial_payment);?>" />
348
+ <?php
349
+ if(pmpro_getCurrencyPosition() == "right")
350
+ echo $pmpro_currency_symbol;
351
+ ?>
352
+ <small><?php _e('The initial amount collected at registration.', 'pmpro');?></small></td>
353
+ </tr>
354
+
355
+ <tr>
356
+ <th scope="row" valign="top"><label><?php _e('Recurring Subscription', 'pmpro');?>:</label></th>
357
+ <td><input id="recurring" name="recurring" type="checkbox" value="yes" <?php if(pmpro_isLevelRecurring($level)) { echo "checked='checked'"; } ?> onclick="if(jQuery('#recurring').is(':checked')) { jQuery('.recurring_info').show(); if(jQuery('#custom_trial').is(':checked')) {jQuery('.trial_info').show();} else {jQuery('.trial_info').hide();} } else { jQuery('.recurring_info').hide();}" /> <label for="recurring"><?php _e('Check if this level has a recurring subscription payment.', 'pmpro');?></label></td>
358
+ </tr>
359
+
360
+ <tr class="recurring_info" <?php if(!pmpro_isLevelRecurring($level)) {?>style="display: none;"<?php } ?>>
361
+ <th scope="row" valign="top"><label for="billing_amount"><?php _e('Billing Amount', 'pmpro');?>:</label></th>
362
+ <td>
363
+ <?php
364
+ if(pmpro_getCurrencyPosition() == "left")
365
+ echo $pmpro_currency_symbol;
366
+ ?>
367
+ <input name="billing_amount" type="text" size="20" value="<?php echo esc_attr($level->billing_amount);?>" />
368
+ <?php
369
+ if(pmpro_getCurrencyPosition() == "right")
370
+ echo $pmpro_currency_symbol;
371
+ ?>
372
+ <small><?php _e('per', 'pmpro');?></small>
373
+ <input id="cycle_number" name="cycle_number" type="text" size="10" value="<?php echo esc_attr($level->cycle_number);?>" />
374
+ <select id="cycle_period" name="cycle_period">
375
+ <?php
376
+ $cycles = array( __('Day(s)', 'pmpro') => 'Day', __('Week(s)', 'pmpro') => 'Week', __('Month(s)', 'pmpro') => 'Month', __('Year(s)', 'pmpro') => 'Year' );
377
+ foreach ( $cycles as $name => $value ) {
378
+ echo "<option value='$value'";
379
+ if ( $level->cycle_period == $value ) echo " selected='selected'";
380
+ echo ">$name</option>";
381
+ }
382
+ ?>
383
+ </select>
384
+ <br /><small>
385
+ <?php _e('The amount to be billed one cycle after the initial payment.', 'pmpro');?>
386
+ <?php if($gateway == "stripe") { ?>
387
+ <br /><strong <?php if(!empty($pmpro_stripe_error)) { ?>class="pmpro_red"<?php } ?>><?php _e('Stripe integration currently only supports billing periods of "Week", "Month" or "Year".', 'pmpro');?>
388
+ <?php } elseif($gateway == "braintree") { ?>
389
+ <br /><strong <?php if(!empty($pmpro_braintree_error)) { ?>class="pmpro_red"<?php } ?>><?php _e('Braintree integration currently only supports billing periods of "Month" or "Year".', 'pmpro');?>
390
+ <?php } elseif($gateway == "payflowpro") { ?>
391
+ <br /><strong <?php if(!empty($pmpro_payflow_error)) { ?>class="pmpro_red"<?php } ?>><?php _e('Payflow integration currently only supports billing frequencies of 1 and billing periods of "Week", "Month" or "Year".', 'pmpro');?>
392
+ <?php } ?>
393
+ </small>
394
+ <?php if($gateway == "braintree" && $edit < 0) { ?>
395
+ <p class="pmpro_message"><strong><?php _e('Note', 'pmpro');?>:</strong> <?php _e('After saving this level, make note of the ID and create a "Plan" in your Braintree dashboard with the same settings and the "Plan ID" set to <em>pmpro_#</em>, where # is the level ID.', 'pmpro');?></p>
396
+ <?php } elseif($gateway == "braintree") { ?>
397
+ <p class="pmpro_message"><strong><?php _e('Note', 'pmpro');?>:</strong> <?php _e('You will need to create a "Plan" in your Braintree dashboard with the same settings and the "Plan ID" set to', 'pmpro');?> <em>pmpro_<?php echo $level->id;?></em>.</p>
398
+ <?php } ?>
399
+ </td>
400
+ </tr>
401
+
402
+ <tr class="recurring_info" <?php if(!pmpro_isLevelRecurring($level)) {?>style="display: none;"<?php } ?>>
403
+ <th scope="row" valign="top"><label for="billing_limit"><?php _e('Billing Cycle Limit', 'pmpro');?>:</label></th>
404
+ <td>
405
+ <input name="billing_limit" type="text" size="20" value="<?php echo $level->billing_limit?>" />
406
+ <br /><small>
407
+ <?php _e('The <strong>total</strong> number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite.', 'pmpro');?>
408
+ <?php if($gateway == "stripe") { ?>
409
+ <br /><strong <?php if(!empty($pmpro_stripe_error)) { ?>class="pmpro_red"<?php } ?>><?php _e('Stripe integration currently does not support billing limits. You can still set an expiration date below.', 'pmpro');?></strong>
410
+ <?php } ?>
411
+ </small>
412
+ </td>
413
+ </tr>
414
+
415
+ <tr class="recurring_info" <?php if (!pmpro_isLevelRecurring($level)) echo "style='display:none;'";?>>
416
+ <th scope="row" valign="top"><label><?php _e('Custom Trial', 'pmpro');?>:</label></th>
417
+ <td>
418
+ <input id="custom_trial" name="custom_trial" type="checkbox" value="yes" <?php if ( pmpro_isLevelTrial($level) ) { echo "checked='checked'"; } ?> onclick="jQuery('.trial_info').toggle();" /> <label for="custom_trial"><?php _e('Check to add a custom trial period.', 'pmpro');?></label>
419
+
420
+ <?php if($gateway == "twocheckout") { ?>
421
+ <br /><small><strong <?php if(!empty($pmpro_twocheckout_error)) { ?>class="pmpro_red"<?php } ?>><?php _e('2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount.', 'pmpro');?></strong></small>
422
+ <?php } ?>
423
+ </td>
424
+ </tr>
425
+
426
+ <tr class="trial_info recurring_info" <?php if (!pmpro_isLevelTrial($level)) echo "style='display:none;'";?>>
427
+ <th scope="row" valign="top"><label for="trial_amount"><?php _e('Trial Billing Amount', 'pmpro');?>:</label></th>
428
+ <td>
429
+ <?php
430
+ if(pmpro_getCurrencyPosition() == "left")
431
+ echo $pmpro_currency_symbol;
432
+ ?>
433
+ <input name="trial_amount" type="text" size="20" value="<?php echo esc_attr($level->trial_amount);?>" />
434
+ <?php
435
+ if(pmpro_getCurrencyPosition() == "right")
436
+ echo $pmpro_currency_symbol;
437
+ ?>
438
+ <small><?php _e('for the first', 'pmpro');?></small>
439
+ <input name="trial_limit" type="text" size="10" value="<?php echo esc_attr($level->trial_limit);?>" />
440
+ <small><?php _e('subscription payments', 'pmpro');?>.</small>
441
+ <?php if($gateway == "stripe") { ?>
442
+ <br /><small>
443
+ <strong <?php if(!empty($pmpro_stripe_error)) { ?>class="pmpro_red"<?php } ?>><?php _e('Stripe integration currently does not support trial amounts greater than $0.', 'pmpro');?></strong>
444
+ </small>
445
+ <?php } elseif($gateway == "braintree") { ?>
446
+ <br /><small>
447
+ <strong <?php if(!empty($pmpro_braintree_error)) { ?>class="pmpro_red"<?php } ?>><?php _e('Braintree integration currently does not support trial amounts greater than $0.', 'pmpro');?></strong>
448
+ </small>
449
+ <?php } elseif($gateway == "payflowpro") { ?>
450
+ <br /><small>
451
+ <strong <?php if(!empty($pmpro_payflow_error)) { ?>class="pmpro_red"<?php } ?>><?php _e('Payflow integration currently does not support trial amounts greater than $0.', 'pmpro');?></strong>
452
+ </small>
453
+ <?php } ?>
454
+ </td>
455
+ </tr>
456
+
457
+ </tbody>
458
+ </table>
459
+
460
+ <h3 class="topborder"><?php _e('Other Settings', 'pmpro');?></h3>
461
+ <table class="form-table">
462
+ <tbody>
463
+ <tr>
464
+ <th scope="row" valign="top"><label><?php _e('Disable New Signups', 'pmpro');?>:</label></th>
465
+ <td><input id="disable_signups" name="disable_signups" type="checkbox" value="yes" <?php if($level->id && !$level->allow_signups) { ?>checked="checked"<?php } ?> /> <label for="disable_signups"><?php _e('Check to hide this level from the membership levels page and disable registration.', 'pmpro');?></label></td>
466
+ </tr>
467
+
468
+ <tr>
469
+ <th scope="row" valign="top"><label><?php _e('Membership Expiration', 'pmpro');?>:</label></th>
470
+ <td><input id="expiration" name="expiration" type="checkbox" value="yes" <?php if(pmpro_isLevelExpiring($level)) { echo "checked='checked'"; } ?> onclick="if(jQuery('#expiration').is(':checked')) { jQuery('.expiration_info').show(); } else { jQuery('.expiration_info').hide();}" /> <label for="expiration"><?php _e('Check this to set when membership access expires.', 'pmpro');?></a></td>
471
+ </tr>
472
+
473
+ <tr class="expiration_info" <?php if(!pmpro_isLevelExpiring($level)) {?>style="display: none;"<?php } ?>>
474
+ <th scope="row" valign="top"><label for="billing_amount"><?php _e('Expires In', 'pmpro');?>:</label></th>
475
+ <td>
476
+ <input id="expiration_number" name="expiration_number" type="text" size="10" value="<?php echo esc_attr($level->expiration_number);?>" />
477
+ <select id="expiration_period" name="expiration_period">
478
+ <?php
479
+ $cycles = array( __('Day(s)', 'pmpro') => 'Day', __('Week(s)', 'pmpro') => 'Week', __('Month(s)', 'pmpro') => 'Month', __('Year(s)', 'pmpro') => 'Year' );
480
+ foreach ( $cycles as $name => $value ) {
481
+ echo "<option value='$value'";
482
+ if ( $level->expiration_period == $value ) echo " selected='selected'";
483
+ echo ">$name</option>";
484
+ }
485
+ ?>
486
+ </select>
487
+ <br /><small><?php _e('Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires.', 'pmpro');?></small>
488
+ </td>
489
+ </tr>
490
+ </tbody>
491
+ </table>
492
+
493
+ <?php do_action("pmpro_membership_level_after_other_settings"); ?>
494
+
495
+ <h3 class="topborder"><?php _e('Content Settings', 'pmpro');?></h3>
496
+ <table class="form-table">
497
+ <tbody>
498
+ <tr>
499
+ <th scope="row" valign="top"><label><?php _e('Categories', 'pmpro');?>:</label></th>
500
+ <td>
501
+ <?php
502
+ $categories = get_categories( array( 'hide_empty' => 0 ) );
503
+ echo "<ul>";
504
+ foreach ( $categories as $cat )
505
+ {
506
+ $checked = in_array( $cat->term_id, $level->categories ) ? "checked='checked'" : '';
507
+ echo "<li><input id='membershipcategory_{$cat->term_id}' name='membershipcategory_{$cat->term_id}' type='checkbox' value='yes' $checked /> <label for='membershipcategory_{$cat->term_id}'>{$cat->name}</label></li>\n";
508
+ }
509
+ echo "</ul>";
510
+ ?>
511
+ </td>
512
+ </tr>
513
+ </tbody>
514
+ </table>
515
+ <p class="submit topborder">
516
+ <input name="save" type="submit" class="button-primary" value="<?php _e('Save Level', 'pmpro'); ?>" />
517
+ <input name="cancel" type="button" value="<?php _e('Cancel', 'pmpro'); ?>" onclick="location.href='<?php echo get_admin_url(NULL, '/admin.php?page=pmpro-membershiplevels')?>';" />
518
+ </p>
519
+ </form>
520
+ </div>
521
+
522
+ <?php
523
+ }
524
+ else
525
+ {
526
+ $sqlQuery = "SELECT * FROM $wpdb->pmpro_membership_levels ";
527
+ if($s)
528
+ $sqlQuery .= "WHERE name LIKE '%$s%' ";
529
+ $sqlQuery .= "ORDER BY id ASC";
530
+
531
+ $levels = $wpdb->get_results($sqlQuery, OBJECT);
532
+
533
+ if(empty($_REQUEST['s']) && !empty($pmpro_level_order)) {
534
+ //reorder levels
535
+ $order = explode(',', $pmpro_level_order);
536
+
537
+ //put level ids in their own array
538
+ $level_ids = array();
539
+ foreach($levels as $level)
540
+ $level_ids[] = $level->id;
541
+
542
+ //remove levels from order if they are gone
543
+ foreach($order as $key => $level_id)
544
+ if(!in_array($level_id, $level_ids))
545
+ unset($order[$key]);
546
+
547
+ //add levels to the end if they aren't in the order array
548
+ foreach($level_ids as $level_id)
549
+ if(!in_array($level_id, $order))
550
+ $order[] = $level_id;
551
+
552
+ //remove dupes
553
+ $order = array_unique($order);
554
+
555
+ //save the level order
556
+ pmpro_setOption('level_order', implode(',', $order));
557
+
558
+ //reorder levels here
559
+ $reordered_levels = array();
560
+ foreach ($order as $level_id) {
561
+ foreach ($levels as $level) {
562
+ if ($level_id == $level->id)
563
+ $reordered_levels[] = $level;
564
+ }
565
+ }
566
+ }
567
+ else
568
+ $reordered_levels = $levels;
569
+
570
+ if(empty($_REQUEST['s']) && count($reordered_levels) > 1)
571
+ {
572
+ ?>
573
+ <script>
574
+ jQuery(document).ready(function($) {
575
+
576
+ // Return a helper with preserved width of cells
577
+ // from http://www.foliotek.com/devblog/make-table-rows-sortable-using-jquery-ui-sortable/
578
+ var fixHelper = function(e, ui) {
579
+ ui.children().each(function() {
580
+ $(this).width($(this).width());
581
+ });
582
+ return ui;
583
+ };
584
+
585
+ $("table.membership-levels tbody").sortable({
586
+ helper: fixHelper,
587
+ placeholder: 'testclass',
588
+ forcePlaceholderSize: true,
589
+ update: update_level_order
590
+ });
591
+
592
+ function update_level_order(event, ui) {
593
+ level_order = [];
594
+ $("table.membership-levels tbody tr").each(function() {
595
+ $(this).removeClass('alternate');
596
+ level_order.push(parseInt( $("td:first", this).text()));
597
+ });
598
+
599
+ //update styles
600
+ $("table.membership-levels tbody tr:odd").each(function() {
601
+ $(this).addClass('alternate');
602
+ });
603
+
604
+ data = {
605
+ action: 'pmpro_update_level_order',
606
+ level_order: level_order
607
+ };
608
+
609
+ $.post(ajaxurl, data, function(response) {
610
+ });
611
+ }
612
+ });
613
+ </script>
614
+ <?php
615
+ }
616
+ ?>
617
+
618
+ <h2 class="alignleft"><?php _e('Membership Levels', 'pmpro');?> <a href="admin.php?page=pmpro-membershiplevels&edit=-1" class="add-new-h2"><?php _e('Add New Level', 'pmpro');?></a></h2>
619
+ <form id="posts-filter" method="get" action="">
620
+ <p class="search-box">
621
+ <label class="screen-reader-text" for="post-search-input"><?php _e('Search Levels', 'pmpro');?>:</label>
622
+ <input type="hidden" name="page" value="pmpro-membershiplevels" />
623
+ <input id="post-search-input" type="text" value="<?php echo esc_attr($s); ?>" name="s" size="30" />
624
+ <input class="button" type="submit" value="<?php _e('Search Levels', 'pmpro');?>" id="search-submit" />
625
+ </p>
626
+ </form>
627
+
628
+ <?php if(empty($_REQUEST['s']) && count($reordered_levels) > 1) { ?>
629
+ <br class="clear" />
630
+ <p><?php _e('Drag and drop membership levels to reorder them on the Levels page.', 'pmpro'); ?></p>
631
+ <?php } ?>
632
+
633
+ <table class="widefat membership-levels">
634
+ <thead>
635
+ <tr>
636
+ <th><?php _e('ID', 'pmpro');?></th>
637
+ <th><?php _e('Name', 'pmpro');?></th>
638
+ <th><?php _e('Billing Details', 'pmpro');?></th>
639
+ <th><?php _e('Expiration', 'pmpro');?></th>
640
+ <th><?php _e('Allow Signups', 'pmpro');?></th>
641
+ <th></th>
642
+ </tr>
643
+ </thead>
644
+ <tbody>
645
+ <?php
646
+ $count = 0;
647
+ foreach($reordered_levels as $level)
648
+ {
649
+ ?>
650
+ <tr class="<?php if($count++ % 2 == 1) { ?>alternate<?php } ?> <?php if(!$level->allow_signups) { ?>pmpro_gray<?php } ?> <?php if(!pmpro_checkLevelForStripeCompatibility($level) || !pmpro_checkLevelForBraintreeCompatibility($level) || !pmpro_checkLevelForPayflowCompatibility($level) || !pmpro_checkLevelForTwoCheckoutCompatibility($level)) { ?>pmpro_error<?php } ?>">
651
+ <td><?php echo $level->id?></td>
652
+ <td class="level_name"><a href="admin.php?page=pmpro-membershiplevels&edit=<?php echo $level->id?>"><?php echo $level->name?></a></td>
653
+ <td>
654
+ <?php if(pmpro_isLevelFree($level)) { ?>
655
+ <?php _e('FREE', 'pmpro');?>
656
+ <?php } else { ?>
657
+ <?php echo str_replace( 'The price for membership is', '', pmpro_getLevelCost($level)); ?>
658
+ <?php } ?>
659
+ </td>
660
+ <td>
661
+ <?php if(!pmpro_isLevelExpiring($level)) { ?>
662
+ --
663
+ <?php } else { ?>
664
+ <?php _e('After', 'pmpro');?> <?php echo $level->expiration_number?> <?php echo sornot($level->expiration_period,$level->expiration_number)?>
665
+ <?php } ?>
666
+ </td>
667
+ <td><?php if($level->allow_signups) { ?><a href="<?php echo pmpro_url("checkout", "?level=" . $level->id);?>"><?php _e('Yes', 'pmpro');?></a><?php } else { ?><?php _e('No', 'pmpro');?><?php } ?></td>
668
+
669
+ <td><a title="<?php _e('edit','pmpro'); ?>" href="admin.php?page=pmpro-membershiplevels&edit=<?php echo $level->id?>" class="button-primary"><?php _e('edit','pmpro'); ?></a>&nbsp;<a title="<?php _e('copy','pmpro'); ?>" href="admin.php?page=pmpro-membershiplevels&copy=<?php echo $level->id?>&edit=-1" class="button-secondary"><?php _e('copy','pmpro'); ?></a>&nbsp;<a title="<?php _e('delete','pmpro'); ?>" href="javascript: askfirst('<?php echo str_replace("'", "\'", sprintf("Are you sure you want to delete membership level %s? All subscriptions will be cancelled.", "pmpro"), $level->name);?>','admin.php?page=pmpro-membershiplevels&action=delete_membership_level&deleteid=<?php echo $level->id?>'); void(0);" class="button-secondary"><?php _e('delete','pmpro'); ?></a></td>
670
+ </tr>
671
+ <?php
672
+ }
673
+ ?>
674
+ </tbody>
675
+ </table>
676
+ <?php
677
+ }
678
+ ?>
679
+
680
+ <?php
681
+ require_once(dirname(__FILE__) . "/admin_footer.php");
682
+ ?>
adminpages/memberslist.php CHANGED
@@ -61,7 +61,17 @@
61
  if(isset($_REQUEST['limit']))
62
  $limit = intval($_REQUEST['limit']);
63
  else
64
- $limit = 15;
 
 
 
 
 
 
 
 
 
 
65
 
66
  $end = $pn * $limit;
67
  $start = $end - $limit;
61
  if(isset($_REQUEST['limit']))
62
  $limit = intval($_REQUEST['limit']);
63
  else
64
+ {
65
+ /**
66
+ * Filter to set the default number of items to show per page
67
+ * on the Members List page in the admin.
68
+ *
69
+ * @since 1.8.4.5
70
+ *
71
+ * @param int $limit The number of items to show per page.
72
+ */
73
+ $limit = apply_filters('pmpro_memberslist_per_page', 15);
74
+ }
75
 
76
  $end = $pn * $limit;
77
  $start = $end - $limit;
adminpages/orders-csv.php CHANGED
@@ -217,7 +217,7 @@
217
  array("order", "gateway"),
218
  array("order", "gateway_environment"),
219
  array("order", "payment_transaction_id"),
220
- array("order", "subscription_transactiond_id"),
221
  array("discount_code", "id"),
222
  array("discount_code", "code")
223
  );
@@ -270,7 +270,7 @@
270
  }
271
 
272
  //timestamp
273
- $csvoutput .= "," . pmpro_enclose(date(get_option("date_format"), $order->timestamp));
274
 
275
  //any extra columns
276
  if(!empty($extra_columns))
217
  array("order", "gateway"),
218
  array("order", "gateway_environment"),
219
  array("order", "payment_transaction_id"),
220
+ array("order", "subscription_transaction_id"),
221
  array("discount_code", "id"),
222
  array("discount_code", "code")
223
  );
270
  }
271
 
272
  //timestamp
273
+ $csvoutput .= "," . pmpro_enclose(date(get_option('date_format') . ' ' . get_option('time_format'), $order->timestamp));
274
 
275
  //any extra columns
276
  if(!empty($extra_columns))
adminpages/orders.php CHANGED
@@ -492,7 +492,7 @@
492
  <tr>
493
  <th scope="row" valign="top"><label for="ts_month"><?php _e('Date', 'pmpro');?>:</label></th>
494
  <td>
495
- <?php if(in_array("timestamp", $read_only_fields) && $order_id > 0) { echo date(option("date_format"), $order->timestamp); } else { ?>
496
  <?php
497
  //set up date vars
498
  if(!empty($order->timestamp))
@@ -790,7 +790,17 @@
790
  if(isset($_REQUEST['limit']))
791
  $limit = intval($_REQUEST['limit']);
792
  else
793
- $limit = 15;
 
 
 
 
 
 
 
 
 
 
794
 
795
  $end = $pn * $limit;
796
  $start = $end - $limit;
@@ -974,7 +984,10 @@
974
  <?php _e('Subscription', 'pmpro');?>: <?php if(!empty($order->subscription_transaction_id)) echo $order->subscription_transaction_id; else echo "N/A";?>
975
  </td>
976
  <td><?php echo $order->status;?></td>
977
- <td><?php echo date(get_option('date_format'), $order->timestamp);?></td>
 
 
 
978
  <td align="center">
979
  <a href="admin.php?page=pmpro-orders&order=<?php echo $order->id;?>"><?php _e('edit', 'pmpro');?></a>
980
  </td>
492
  <tr>
493
  <th scope="row" valign="top"><label for="ts_month"><?php _e('Date', 'pmpro');?>:</label></th>
494
  <td>
495
+ <?php if(in_array("timestamp", $read_only_fields) && $order_id > 0) { echo date(get_option('date_format') . " " . get_option('time_format'), $order->timestamp); } else { ?>
496
  <?php
497
  //set up date vars
498
  if(!empty($order->timestamp))
790
  if(isset($_REQUEST['limit']))
791
  $limit = intval($_REQUEST['limit']);
792
  else
793
+ {
794
+ /**
795
+ * Filter to set the default number of items to show per page
796
+ * on the Orders page in the admin.
797
+ *
798
+ * @since 1.8.4.5
799
+ *
800
+ * @param int $limit The number of items to show per page.
801
+ */
802
+ $limit = apply_filters('pmpro_orders_per_page', 15);
803
+ }
804
 
805
  $end = $pn * $limit;
806
  $start = $end - $limit;
984
  <?php _e('Subscription', 'pmpro');?>: <?php if(!empty($order->subscription_transaction_id)) echo $order->subscription_transaction_id; else echo "N/A";?>
985
  </td>
986
  <td><?php echo $order->status;?></td>
987
+ <td>
988
+ <?php echo date(get_option('date_format'), $order->timestamp);?><br />
989
+ <?php echo date(get_option('time_format'), $order->timestamp);?>
990
+ </td>
991
  <td align="center">
992
  <a href="admin.php?page=pmpro-orders&order=<?php echo $order->id;?>"><?php _e('edit', 'pmpro');?></a>
993
  </td>
adminpages/reports/sales.php CHANGED
@@ -104,7 +104,7 @@ function pmpro_report_sales_page()
104
  if($period == "daily")
105
  {
106
  $startdate = $year . '-' . substr("0" . $month, strlen($month) - 1, 2) . '-01';
107
- $enddate = $year . '-' . substr("0" . $month, strlen($month) - 1, 2) . '-31';
108
  $date_function = 'DAY';
109
  }
110
  elseif($period == "monthly")
104
  if($period == "daily")
105
  {
106
  $startdate = $year . '-' . substr("0" . $month, strlen($month) - 1, 2) . '-01';
107
+ $enddate = $year . '-' . substr("0" . $month, strlen($month) - 1, 2) . '-32';
108
  $date_function = 'DAY';
109
  }
110
  elseif($period == "monthly")
classes/class.memberorder.php CHANGED
@@ -649,7 +649,13 @@
649
  }
650
  else
651
  {
652
- //would have been cancelled by the gateway class
 
 
 
 
 
 
653
  return $result;
654
  }
655
  }
649
  }
650
  else
651
  {
652
+ //Note: status would have been set to cancelled by the gateway class. So we don't have to update it here.
653
+
654
+ //remove billing numbers in pmpro_memberships_users if the membership is still active
655
+ global $wpdb;
656
+ $sqlQuery = "UPDATE $wpdb->pmpro_memberships_users SET initial_payment = 0, billing_amount = 0, cycle_number = 0 WHERE user_id = '" . $this->user_id . "' AND membership_id = '" . $this->membership_id . "' AND status = 'active'";
657
+ $wpdb->query($sqlQuery);
658
+
659
  return $result;
660
  }
661
  }
classes/class.pmproemail.php CHANGED
@@ -160,12 +160,12 @@
160
  $this->data['membership_level_name'] = $wpdb->get_var("SELECT name FROM $wpdb->pmpro_membership_levels WHERE id = '" . $old_level_id . "' LIMIT 1");
161
 
162
  //start and end date
163
- $startdate = $wpdb->get_var("SELECT UNIX_TIMESTAMP(startdate) as startdate FROM $wpdb->pmpro_memberships_users WHERE user_id = '" . $user->ID . "' AND membership_id = '" . $old_level_id . "' AND status = 'inactive' ORDER BY id DESC");
164
  if(!empty($startdate))
165
  $this->data['startdate'] = date(get_option('date_format'), $startdate);
166
  else
167
  $this->data['startdate'] = "";
168
- $enddate = $wpdb->get_var("SELECT UNIX_TIMESTAMP(enddate) as enddate FROM $wpdb->pmpro_memberships_users WHERE user_id = '" . $user->ID . "' AND membership_id = '" . $old_level_id . "' AND status = 'inactive' ORDER BY id DESC");
169
  if(!empty($enddate))
170
  $this->data['enddate'] = date(get_option('date_format'), $enddate);
171
  else
160
  $this->data['membership_level_name'] = $wpdb->get_var("SELECT name FROM $wpdb->pmpro_membership_levels WHERE id = '" . $old_level_id . "' LIMIT 1");
161
 
162
  //start and end date
163
+ $startdate = $wpdb->get_var("SELECT UNIX_TIMESTAMP(startdate) as startdate FROM $wpdb->pmpro_memberships_users WHERE user_id = '" . $user->ID . "' AND membership_id = '" . $old_level_id . "' AND status IN('inactive', 'cancelled', 'admin_cancelled') ORDER BY id DESC");
164
  if(!empty($startdate))
165
  $this->data['startdate'] = date(get_option('date_format'), $startdate);
166
  else
167
  $this->data['startdate'] = "";
168
+ $enddate = $wpdb->get_var("SELECT UNIX_TIMESTAMP(enddate) as enddate FROM $wpdb->pmpro_memberships_users WHERE user_id = '" . $user->ID . "' AND membership_id = '" . $old_level_id . "' AND status IN('inactive', 'cancelled', 'admin_cancelled') ORDER BY id DESC");
169
  if(!empty($enddate))
170
  $this->data['enddate'] = date(get_option('date_format'), $enddate);
171
  else
classes/gateways/class.pmprogateway_paypalexpress.php CHANGED
@@ -26,6 +26,16 @@
26
  //add fields to payment settings
27
  add_filter('pmpro_payment_options', array('PMProGateway_paypalexpress', 'pmpro_payment_options'));
28
 
 
 
 
 
 
 
 
 
 
 
29
  /*
30
  This code is the same for PayPal Website Payments Pro, PayPal Express, and PayPal Standard
31
  So we only load it if we haven't already.
@@ -771,6 +781,46 @@
771
  return false;
772
  }
773
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
774
 
775
  /**
776
  * PAYPAL Function
26
  //add fields to payment settings
27
  add_filter('pmpro_payment_options', array('PMProGateway_paypalexpress', 'pmpro_payment_options'));
28
 
29
+ /*
30
+ Filter pmpro_next_payment to get actual value
31
+ via the PayPal API. This is disabled by default
32
+ for performance reasons, but you can enable it
33
+ by copying this line into a custom plugin or
34
+ your active theme's functions.php and uncommenting
35
+ it there.
36
+ */
37
+ //add_filter('pmpro_next_payment', array('PMProGateway_paypalexpress', 'pmpro_next_payment'), 10, 3);
38
+
39
  /*
40
  This code is the same for PayPal Website Payments Pro, PayPal Express, and PayPal Standard
41
  So we only load it if we haven't already.
781
  return false;
782
  }
783
  }
784
+
785
+ /**
786
+ * Filter pmpro_next_payment to get date via API if possible
787
+ *
788
+ * @since 1.8.5
789
+ */
790
+ static function pmpro_next_payment($timestamp, $user_id, $order_status)
791
+ {
792
+ //find the last order for this user
793
+ if(!empty($user_id))
794
+ {
795
+ //get last order
796
+ $order = new MemberOrder();
797
+ $order->getLastMemberOrder($user_id, $order_status);
798
+
799
+ //check if this is a paypal express order with a subscription transaction id
800
+ if(!empty($order->id) && !empty($order->subscription_transaction_id) && $order->gateway == "paypalexpress")
801
+ {
802
+ //get the subscription status
803
+ $status = $order->getGatewaySubscriptionStatus();
804
+
805
+ d($status);
806
+
807
+ if(!empty($status) && !empty($status['NEXTBILLINGDATE']))
808
+ {
809
+ //found the next billing date at PayPal, going to use that
810
+ $timestamp = strtotime(urldecode($status['NEXTBILLINGDATE']), current_time('timestamp'));
811
+ }
812
+ elseif(!empty($status) && !empty($status['PROFILESTARTDATE']) && $order_status == "cancelled")
813
+ {
814
+ //startdate is in the future and we cancelled so going to use that as the next payment date
815
+ $startdate_timestamp = strtotime(urldecode($status['PROFILESTARTDATE']), current_time('timestamp'));
816
+ if($startdate_timestamp > current_time('timestamp'))
817
+ $timestamp = $startdate_timestamp;
818
+ }
819
+ }
820
+ }
821
+
822
+ return $timestamp;
823
+ }
824
 
825
  /**
826
  * PAYPAL Function
classes/gateways/class.pmprogateway_stripe.php CHANGED
@@ -26,6 +26,7 @@
26
 
27
  $this->loadStripeLibrary();
28
  Stripe::setApiKey(pmpro_getOption("stripe_secretkey"));
 
29
 
30
  return $this->gateway;
31
  }
26
 
27
  $this->loadStripeLibrary();
28
  Stripe::setApiKey(pmpro_getOption("stripe_secretkey"));
29
+ Stripe::setAPIVersion("2015-07-13");
30
 
31
  return $this->gateway;
32
  }
css/frontend.css CHANGED
@@ -175,3 +175,26 @@ li.pmpro_more {list-style-type: none; text-align: center; margin-left: -20px; pa
175
  .clear {clear: both; }
176
 
177
  .pmpro_small {font-size: .8em;}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
175
  .clear {clear: both; }
176
 
177
  .pmpro_small {font-size: .8em;}
178
+
179
+ /*
180
+ Fixes for Twentyfiften and other themes.
181
+ */
182
+ form.pmpro_form .input {display: inline-block; width: auto; }
183
+ #your-profile input {display: inline-block; width: auto; } /* front end profile via Theme My Login */
184
+
185
+ @media (max-width:768px){
186
+ #pmpro_levels_table {border: none; }
187
+ #pmpro_levels_table th {display: none; }
188
+ #pmpro_levels_table td {border: none; display: block; padding: 0 10px; text-align: center; }
189
+ #pmpro_levels_table td:first-child {font-size: 1.4em; padding-top: 10px; }
190
+ #pmpro_levels_table td:last-child {padding-bottom: 10px; padding-top: 10px; }
191
+ form.pmpro_form label {display: block; margin: 0; text-align: left; width: 100%; }
192
+ form.pmpro_form label.pmpro_normal, #pmpro_tos_fields label {display: inline-block; }
193
+ form.pmpro_form input[type=text].input, form.pmpro_form input[type=password].input {width: 90%; }
194
+ form.pmpro_form input[type=text]#other_discount_code, form.pmpro_form input[type=text]#CVV, form.pmpro_form input[type=text]#discount_code {width: 40%; }
195
+ form.pmpro_form #pmpro_payment_information_fields .pmpro_thead-msg {float: none; margin-bottom: 10px; text-align: left; text-wrap: normal; white-space: normal; }
196
+ form.pmpro_form .leftmar {margin: 2px 0 0 0; }
197
+ form.pmpro_form .pmpro_submit {margin-left: 0; }
198
+ form.pmpro_form .pmpro_submit #pmpro_submit_span {display: block; float: none; }
199
+ form.pmpro_form .pmpro_btn {display: block; width: 100%; }
200
+ }
includes/addons.php ADDED
@@ -0,0 +1,213 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ Some of the code in this library was borrowed from the TGM Updater class by Thomas Griffin. (https://github.com/thomasgriffin/TGM-Updater)
4
+ */
5
+
6
+ /**
7
+ * Setup plugins api filters
8
+ *
9
+ * @since 1.8.5
10
+ */
11
+ function pmpro_setupAddonUpdateInfo()
12
+ {
13
+ add_filter('plugins_api', 'pmpro_plugins_api', 10, 3);
14
+ add_filter('pre_set_site_transient_update_plugins', 'pmpro_update_plugins_filter');
15
+ add_filter('http_request_args', 'pmpro_http_request_args_for_addons', 10, 2);
16
+ }
17
+ add_action('init', 'pmpro_setupAddonUpdateInfo');
18
+
19
+ /**
20
+ * Get addon information from PMPro server.
21
+ *
22
+ * @since 1.8.5
23
+ */
24
+ function pmpro_getAddons()
25
+ {
26
+ //check if forcing a pull from the server
27
+ $addons = get_option("pmpro_addons", array());
28
+ $addons_timestamp = get_option("pmpro_addons_timestamp", 0);
29
+
30
+ //if no addons locally, we need to hit the server
31
+ if(empty($addons) || !empty($_REQUEST['force-check']) || current_time('timestamp') > $addons_timestamp+86400)
32
+ {
33
+ //get em
34
+ $remote_addons = wp_remote_get(PMPRO_LICENSE_SERVER . "/addons/");
35
+
36
+ //test response
37
+ if(empty($remote_addons['response']) || $remote_addons['response']['code'] != '200')
38
+ {
39
+ //error
40
+ pmpro_setMessage("Could not connect to the PMPro License Server to update addon information. Try again later.", "error");
41
+
42
+ //make sure we have at least an array to pass back
43
+ if(empty($addons))
44
+ $addons = array();
45
+ }
46
+ else
47
+ {
48
+ //update addons in cache
49
+ $addons = json_decode(wp_remote_retrieve_body($remote_addons), true);
50
+ delete_option('pmpro_addons');
51
+ add_option("pmpro_addons", $addons, NULL, 'no');
52
+ }
53
+
54
+ //save timestamp of last update
55
+ delete_option('pmpro_addons_timestamp');
56
+ add_option("pmpro_addons_timestamp", current_time('timestamp'), NULL, 'no');
57
+ }
58
+
59
+ return $addons;
60
+ }
61
+
62
+ /**
63
+ * Find a PMPro addon by slug.
64
+ *
65
+ * @since 1.8.5
66
+ *
67
+ * @param object $slug The identifying slug for the addon (typically the directory name)
68
+ * @return object $addon containing plugin information or false if not found
69
+ */
70
+ function pmpro_getAddonBySlug($slug)
71
+ {
72
+ $addons = pmpro_getAddons();
73
+
74
+ if(empty($addons))
75
+ return false;
76
+
77
+ foreach($addons as $addon)
78
+ if($addon['Slug'] == $slug)
79
+ return $addon;
80
+
81
+ return false;
82
+ }
83
+
84
+ /**
85
+ * Infuse plugin update details when WordPress runs its update checker.
86
+ *
87
+ * @since 1.8.5
88
+ *
89
+ * @param object $value The WordPress update object.
90
+ * @return object $value Amended WordPress update object on success, default if object is empty.
91
+ */
92
+ function pmpro_update_plugins_filter( $value ) {
93
+
94
+ // If no update object exists, return early.
95
+ if ( empty( $value ) ) {
96
+ return $value;
97
+ }
98
+
99
+ // get addon information
100
+ $addons = pmpro_getAddons();
101
+
102
+ // no addons?
103
+ if(empty($addons))
104
+ return $value;
105
+
106
+ //check addons
107
+ foreach($addons as $addon)
108
+ {
109
+ //skip wordpress.org plugins
110
+ if(empty($addon['License']) || $addon['License'] == 'wordpress')
111
+ continue;
112
+
113
+ //get data for plugin
114
+ $plugin_file = $addon['Slug'] . '/' . $addon['Slug'] . '.php';
115
+ $plugin_file_abs = ABSPATH . 'wp-content/plugins/' . $plugin_file;
116
+
117
+ //couldn't find plugin, skip
118
+ if(!file_exists($plugin_file_abs))
119
+ continue;
120
+ else
121
+ $plugin_data = get_plugin_data( $plugin_file_abs, false, true);
122
+
123
+ //compare versions
124
+ if(!empty($addon['License']) && version_compare($plugin_data['Version'], $addon['Version'], '<'))
125
+ {
126
+ $value->response[$plugin_file] = pmpro_getPluginAPIObjectFromAddon($addon);
127
+ $value->response[$plugin_file]->new_version = $addon['Version'];
128
+ }
129
+ }
130
+
131
+ // Return the update object.
132
+ return $value;
133
+ }
134
+
135
+ /**
136
+ * Disables SSL verification to prevent download package failures.
137
+ *
138
+ * @since 1.8.5
139
+ *
140
+ * @param array $args Array of request args.
141
+ * @param string $url The URL to be pinged.
142
+ * @return array $args Amended array of request args.
143
+ */
144
+ function pmpro_http_request_args_for_addons($args, $url)
145
+ {
146
+ // If this is an SSL request and we are performing an upgrade routine, disable SSL verification.
147
+ if(strpos($url, 'https://') !== false && strpos($url, PMPRO_LICENSE_SERVER) !== false && strpos($url, "download") !== false)
148
+ $args['sslverify'] = false;
149
+
150
+ return $args;
151
+ }
152
+
153
+ /**
154
+ * Setup plugin updaters
155
+ *
156
+ * @since 1.8.5
157
+ */
158
+ function pmpro_plugins_api($api, $action = '', $args = null)
159
+ {
160
+ //Not even looking for plugin information? Or not given slug?
161
+ if('plugin_information' != $action || empty($args->slug))
162
+ return $api;
163
+
164
+ //get addon information
165
+ $addon = pmpro_getAddonBySlug($args->slug);
166
+
167
+ //no addons?
168
+ if(empty($addon))
169
+ return $api;
170
+
171
+ //handled by wordpress.org?
172
+ if(empty($addon['License']) || $addon['License'] == 'wordpress')
173
+ return $api;
174
+
175
+ // Create a new stdClass object and populate it with our plugin information.
176
+ $api = pmpro_getPluginAPIObjectFromAddon($addon);
177
+
178
+ //get license key if one is available
179
+ $key = get_option("pmpro_license_key", "");
180
+ if(!empty($key) && !empty($api->download_link))
181
+ $api->download_link = add_query_arg("key", $key, $api->download_link);
182
+
183
+ return $api;
184
+ }
185
+
186
+ /**
187
+ * Convert the format from the pmpro_getAddons function to that needed for plugins_api
188
+ *
189
+ * @since 1.8.5
190
+ */
191
+ function pmpro_getPluginAPIObjectFromAddon($addon)
192
+ {
193
+ $api = new stdClass;
194
+
195
+ if(empty($addon))
196
+ return $api;
197
+
198
+ $api->name = isset( $addon['Name'] ) ? $addon['Name'] : '';
199
+ $api->slug = isset( $addon['Slug'] ) ? $addon['Slug'] : '';
200
+ $api->plugin = isset( $addon['plugin'] ) ? $addon['plugin'] : '';
201
+ $api->version = isset( $addon['Version'] ) ? $addon['Version'] : '';
202
+ $api->author = isset( $addon['Author'] ) ? $addon['Author'] : '';
203
+ $api->author_profile = isset( $addon['AuthorURI'] ) ? $addon['AuthorURI'] : '';
204
+ $api->requires = isset( $addon['Requires'] ) ? $addon['Requires'] : '';
205
+ $api->tested = isset( $addon['Tested'] ) ? $addon['Tested'] : '';
206
+ $api->last_updated = isset( $addon['LastUpdated'] ) ? $addon['LastUpdated'] : '';
207
+ $api->homepage = isset( $addon['URI'] ) ? $addon['URI'] : '';
208
+ $api->sections['changelog'] = isset( $addon['Changelog'] ) ? $addon['Changelog'] : '';
209
+ $api->download_link = isset( $addon['Download'] ) ? $addon['Download'] : '';
210
+ $api->package = isset( $addon['Download'] ) ? $addon['Download'] : '';
211
+
212
+ return $api;
213
+ }
includes/functions.php CHANGED
@@ -322,37 +322,60 @@ function pmpro_displayAds()
322
  return $pmpro_display_ads;
323
  }
324
 
325
- function pmpro_next_payment($user_id = NULL, $order_status = "success")
326
  {
327
  global $wpdb, $current_user;
328
  if(!$user_id)
329
  $user_id = $current_user->ID;
330
 
331
  if(!$user_id)
332
- return false;
333
-
334
- //get last order
335
- $order = new MemberOrder();
336
- $order->getLastMemberOrder($user_id, $order_status);
 
337
 
338
- //get current membership level
339
- $level = pmpro_getMembershipLevelForUser($user_id);
340
 
341
- if(!empty($order) && !empty($order->id) && !empty($level) && !empty($level->id) && !empty($level->cycle_number))
342
- {
343
- //last payment date
344
- $lastdate = date("Y-m-d", $order->timestamp);
345
 
346
- //next payment date
347
- $nextdate = $wpdb->get_var("SELECT UNIX_TIMESTAMP('" . $lastdate . "' + INTERVAL " . $level->cycle_number . " " . $level->cycle_period . ")");
348
 
349
- return $nextdate;
 
 
 
 
 
 
350
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
351
  else
352
- {
353
- //no order or level found, or level was not recurring
354
- return false;
355
- }
356
  }
357
 
358
  if(!function_exists("last4"))
@@ -646,7 +669,7 @@ function pmpro_changeMembershipLevel($level, $user_id = NULL, $old_level_status
646
 
647
  //should we cancel their gateway subscriptions?
648
  $pmpro_cancel_previous_subscriptions = true;
649
- if(isset($_REQUEST['cancel_membership']) && $_REQUEST['cancel_memberhip'] == false)
650
  $pmpro_cancel_previous_subscriptions = false;
651
  $pmpro_cancel_previous_subscriptions = apply_filters("pmpro_cancel_previous_subscriptions", $pmpro_cancel_previous_subscriptions);
652
 
@@ -1632,6 +1655,25 @@ function pmpro_setMessage($message, $type, $force = false)
1632
  }
1633
  }
1634
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1635
  //used in class definitions for input fields to see if there was an error
1636
  function pmpro_getClassForField($field)
1637
  {
@@ -1805,6 +1847,10 @@ function pmpro_is_ready()
1805
  else
1806
  $pmpro_gateway_ready = false;
1807
  }
 
 
 
 
1808
  else
1809
  {
1810
  $pmpro_gateway_ready = false;
@@ -1825,9 +1871,24 @@ function pmpro_is_ready()
1825
 
1826
  //now check both
1827
  if($pmpro_gateway_ready && $pmpro_pages_ready)
1828
- return true;
1829
  else
1830
- return false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1831
  }
1832
 
1833
  /**
@@ -1931,4 +1992,5 @@ function pmpro_isDateThisMonth($str)
1931
  return true;
1932
  else
1933
  return false;
1934
- }
 
322
  return $pmpro_display_ads;
323
  }
324
 
325
+ function pmpro_next_payment($user_id = NULL, $order_status = "success", $format = "timestamp")
326
  {
327
  global $wpdb, $current_user;
328
  if(!$user_id)
329
  $user_id = $current_user->ID;
330
 
331
  if(!$user_id)
332
+ $r = false;
333
+ else
334
+ {
335
+ //get last order
336
+ $order = new MemberOrder();
337
+ $order->getLastMemberOrder($user_id, $order_status);
338
 
339
+ //get current membership level
340
+ $level = pmpro_getMembershipLevelForUser($user_id);
341
 
342
+ if(!empty($order) && !empty($order->id) && !empty($level) && !empty($level->id) && !empty($level->cycle_number))
343
+ {
344
+ //last payment date
345
+ $lastdate = date("Y-m-d", $order->timestamp);
346
 
347
+ //next payment date
348
+ $nextdate = $wpdb->get_var("SELECT UNIX_TIMESTAMP('" . $lastdate . "' + INTERVAL " . $level->cycle_number . " " . $level->cycle_period . ")");
349
 
350
+ $r = $nextdate;
351
+ }
352
+ else
353
+ {
354
+ //no order or level found, or level was not recurring
355
+ $r = false;
356
+ }
357
  }
358
+
359
+ /**
360
+ * Filter the next payment date.
361
+ *
362
+ * @since 1.8.5
363
+ *
364
+ * @param mixed $r false or the next payment date timestamp
365
+ * @param int $user_id The user id to get the next payment date for
366
+ * @param string $order_status Status or array of statuses to find the last order based on.
367
+ */
368
+ $r = apply_filters('pmpro_next_payment', $r, $user_id, $order_status);
369
+
370
+ //return in desired format
371
+ if($r === false)
372
+ return false; //always return false when no date found
373
+ elseif($format == "timestamp")
374
+ return $r;
375
+ elseif($format == "date_format")
376
+ return date(get_option('date_format'), $r);
377
  else
378
+ return date($format, $r); //assume a PHP date format
 
 
 
379
  }
380
 
381
  if(!function_exists("last4"))
669
 
670
  //should we cancel their gateway subscriptions?
671
  $pmpro_cancel_previous_subscriptions = true;
672
+ if(isset($_REQUEST['cancel_membership']) && $_REQUEST['cancel_membership'] == false)
673
  $pmpro_cancel_previous_subscriptions = false;
674
  $pmpro_cancel_previous_subscriptions = apply_filters("pmpro_cancel_previous_subscriptions", $pmpro_cancel_previous_subscriptions);
675
 
1655
  }
1656
  }
1657
 
1658
+ /**
1659
+ * Show a a PMPro message set via pmpro_setMessage
1660
+ *
1661
+ * @since 1.8.5
1662
+ */
1663
+ function pmpro_showMessage()
1664
+ {
1665
+ global $pmpro_msg, $pmpro_msgt;
1666
+
1667
+ if(!empty($pmpro_msg))
1668
+ {
1669
+ ?>
1670
+ <div class="<?php echo $pmpro_msgt;?>">
1671
+ <p><?php echo $pmpro_msg;?></p>
1672
+ </div>
1673
+ <?php
1674
+ }
1675
+ }
1676
+
1677
  //used in class definitions for input fields to see if there was an error
1678
  function pmpro_getClassForField($field)
1679
  {
1847
  else
1848
  $pmpro_gateway_ready = false;
1849
  }
1850
+ elseif($gateway == "check")
1851
+ {
1852
+ $pmpro_gateway_ready = true;
1853
+ }
1854
  else
1855
  {
1856
  $pmpro_gateway_ready = false;
1871
 
1872
  //now check both
1873
  if($pmpro_gateway_ready && $pmpro_pages_ready)
1874
+ $r = true;
1875
  else
1876
+ $r = false;
1877
+
1878
+ /**
1879
+ * Filter to determine if PMPro setup is complete or
1880
+ * if notices or warnings need to be shown in the PMPro settings.
1881
+ *
1882
+ * Note: The filter should return true or false and also set
1883
+ * the $pmpro_level_ready, $pmpro_gateway_ready, $pmpro_pages_ready global variabls.
1884
+ *
1885
+ * @since 1.8.4.5
1886
+ *
1887
+ * @param bool $r ready?
1888
+ */
1889
+ $r = apply_filters('pmpro_is_ready', $r);
1890
+
1891
+ return $r;
1892
  }
1893
 
1894
  /**
1992
  return true;
1993
  else
1994
  return false;
1995
+ }
1996
+
includes/license.php ADDED
@@ -0,0 +1,278 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ This file handles the support licensing control for Paid Memberships Pro
4
+ and PMPro addons.
5
+
6
+ How it works:
7
+ - All source code and resource files bundled with this plugin are licensed under the GPLv2 license unless otherwise noted (e.g. included third-party libraries).
8
+ - An additional "support license" can be purchased at http://www.paidmembershipspro.com/support-license/
9
+ which will simultaneous support the development of this plugin and also give you access to support forums and documentation.
10
+ - Once your license has been purchased, visit Settings --> PMPro License in your WP dashboard to enter your license.
11
+ - Once the license is activated all "nags" will be disabled in the dashboard and member links will be added where appropriate.
12
+ - This plugin will function 100% even if the support license is not installed.
13
+ - If no support license is detected on this site, prompts will show in the admin to encourage you to purchase one.
14
+ - You can override these prompts by setting the PMPRO_LICENSE_NAG constant to false.
15
+ */
16
+
17
+ /*
18
+ Developers, add this line to your wp-config.php to remove PMPro license nags even if no license has been purchased.
19
+
20
+ define('PMPRO_LICENSE_NAG', true); //consider purchasing a license at http://www.paidmembershipspro.com/support-license/
21
+ */
22
+
23
+ /*
24
+ Constants
25
+ */
26
+ define('PMPRO_LICENSE_SERVER', 'http://license.paidmembershipspro.com/');
27
+
28
+ /*
29
+ Add license settings page.
30
+ */
31
+ function pmpro_license_settings_page() {
32
+
33
+ //only let admins get here
34
+ if(!function_exists("current_user_can") || (!current_user_can("manage_options") && !current_user_can("pmpro_license")))
35
+ {
36
+ die(__("You do not have permissions to perform this action.", "pmpro"));
37
+ }
38
+
39
+ //updating license?
40
+ if(!empty($_REQUEST['pmpro-verify-submit']))
41
+ {
42
+ $key = preg_replace("/[^a-zA-Z0-9]/", "", $_REQUEST['pmpro-license-key']);
43
+
44
+ //check key
45
+ $valid = pmpro_license_isValid($key, NULL, true);
46
+
47
+ if($valid)
48
+ {
49
+ ?>
50
+ <div id="message" class="updated fade">
51
+ <p><?php _e('Your license key has been validated.', 'pmpro');?></p>
52
+ </div>
53
+ <?php
54
+ }
55
+ else
56
+ {
57
+ global $pmpro_license_error;
58
+ if(!empty($pmpro_license_error))
59
+ {
60
+ ?>
61
+ <div id="message" class="error">
62
+ <p><?php echo $pmpro_license_error;?></p>
63
+ </div>
64
+ <?php
65
+ }
66
+ }
67
+
68
+ //update key
69
+ update_option('pmpro_license_key', $key);
70
+ }
71
+
72
+ //get saved license
73
+ $key = get_option("pmpro_license_key", "");
74
+ $pmpro_license_check = get_option("pmpro_license_check", array("license"=>false, "enddate"=>0));
75
+
76
+ //html for license settings page
77
+ if(defined('PMPRO_DIR'))
78
+ require_once(PMPRO_DIR . "/adminpages/admin_header.php");
79
+ ?>
80
+ <div class="wrap">
81
+ <h2><?php _e('Paid Memberships Pro Support License', 'pmpro');?></h2>
82
+ <p>Paid Memberships Pro and our add ons are distributed under the <a target="_blank" href='http://www.gnu.org/licenses/gpl-2.0.html'>GPLv2 license</a>. This means, among other things, that you may use the software on this site or any other site free of charge.</p>
83
+ <p><strong>An annual support license is recommended for websites running Paid Memberships Pro.</strong> <a href="http://www.paidmembershipspro.com/pricing/" target="_blank">View Support License Options &raquo;</a></p>
84
+ <div class="metabox-holder">
85
+ <div class="postbox">
86
+ <h3 class="hndle"><?php _e('License Key', 'pmpro');?></h3>
87
+ <div class="inside">
88
+ <?php if(!pmpro_license_isValid() && empty($key)) { ?>
89
+ <div class="notice notice-error inline"><p><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="http://www.paidmembershipspro.com/login/?redirect_to=/membership-account/" target="_blank">Membership Account</a>.', 'pmpro');?></p></div>
90
+ <?php } elseif(!pmpro_license_isValid()) { ?>
91
+ <div class="notice notice-error inline"><p><strong><?php _e('Your license is invalid or expired.', 'pmpro');?></strong> <?php _e('Visit the PMPro <a href="http://www.paidmembershipspro.com/login/?redirect_to=/membership-account/" target="_blank">Membership Account</a> page to confirm that your account is active and to find your license key.', 'pmpro');?></p></div>
92
+ <?php } else { ?>
93
+ <div class="notice inline"><?php printf(__('<p><strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site.</p>', 'pmpro'), ucwords($pmpro_license_check['license']));?></div>
94
+ <?php } ?>
95
+ <form action="" method="post">
96
+ <table class="form-table">
97
+ <tbody>
98
+ <tr id="pmpro-settings-key-box">
99
+ <td>
100
+ <input type="password" name="pmpro-license-key" id="pmpro-license-key" value="<?php echo esc_attr($key);?>" placeholder="<?php _e('Enter license key here...', 'pmpro');?>" size="40" />
101
+ <?php wp_nonce_field( 'pmpro-key-nonce', 'pmpro-key-nonce' ); ?>
102
+ <?php submit_button( __( 'Verify Key', 'pmpro' ), 'primary', 'pmpro-verify-submit', false ); ?>
103
+ </td>
104
+ </tr>
105
+ </tbody>
106
+ </table>
107
+ </form>
108
+ </div> <!-- end inside -->
109
+ </div> <!-- end post-box -->
110
+ </div> <!-- end metabox-holder -->
111
+ </div> <!-- end wrap -->
112
+ <?php
113
+ }
114
+
115
+ function pmpro_license_admin_menu() {
116
+ //add license settings page
117
+ add_options_page('PMPro License', 'PMPro License', 'manage_options', 'pmpro_license_settings', 'pmpro_license_settings_page');
118
+ }
119
+ add_action('admin_menu', 'pmpro_license_admin_menu');
120
+
121
+ /*
122
+ Check license.
123
+ */
124
+ function pmpro_license_isValid($key = NULL, $type = NULL, $force = false) {
125
+ //check cache first
126
+ $pmpro_license_check = get_option('pmpro_license_check', false);
127
+ if(empty($force) && $pmpro_license_check !== false && $pmpro_license_check['enddate'] > current_time('timestamp'))
128
+ {
129
+ if(empty($type))
130
+ return true;
131
+ elseif($type == $pmpro_license_check['license'])
132
+ return true;
133
+ else
134
+ return false;
135
+ }
136
+
137
+ //get key and site url
138
+ if(empty($key))
139
+ $key = get_option("pmpro_license_key", "");
140
+
141
+ //no key
142
+ if(!empty($key))
143
+ {
144
+ return pmpro_license_check_key($key);
145
+ }
146
+ else
147
+ {
148
+ //no key
149
+ delete_option('pmpro_license_check');
150
+ add_option('pmpro_license_check', array('license'=>false, 'enddate'=>0), NULL, 'no');
151
+
152
+ return false;
153
+ }
154
+ }
155
+
156
+ /*
157
+ Activation/Deactivation. Check keys once a month.
158
+ */
159
+ //activation
160
+ function pmpro_license_activation() {
161
+ wp_schedule_event(current_time('timestamp'), 'monthly', 'pmpro_license_check_key');
162
+ }
163
+ register_activation_hook(__FILE__, 'pmpro_activation');
164
+
165
+ //deactivation
166
+ function pmpro_license_deactivation() {
167
+ wp_clear_scheduled_hook('pmpro_license_check_key');
168
+ }
169
+ register_deactivation_hook(__FILE__, 'pmpro_deactivation');
170
+
171
+ function init_test_license()
172
+ {
173
+ if(!empty($_REQUEST['testlicense']))
174
+ {
175
+ pmpro_license_check_key();
176
+ exit;
177
+ }
178
+ }
179
+ add_action('init', 'init_test_license');
180
+
181
+ //check keys with PMPro once a month
182
+ function pmpro_license_check_key($key = NULL) {
183
+ //get key
184
+ if(empty($key))
185
+ $key = get_option('pmpro_license_key');
186
+
187
+ //key? check with server
188
+ if(!empty($key))
189
+ {
190
+ //check license server
191
+ $url = add_query_arg(array('license'=>$key, 'domain'=>site_url()), PMPRO_LICENSE_SERVER);
192
+ $r = wp_remote_get($url);
193
+
194
+ if(!empty($r) && $r['response']['code'] == 200)
195
+ {
196
+ $r = json_decode($r['body']);
197
+
198
+ if($r->active == 1)
199
+ {
200
+ //valid key save enddate
201
+ if(!empty($r->enddate))
202
+ $enddate = strtotime($r->enddate, current_time('timestamp'));
203
+ else
204
+ $enddate = strtotime("+1 Year", current_time("timestamp"));
205
+
206
+ delete_option('pmpro_license_check');
207
+ add_option('pmpro_license_check', array('license'=>$r->license, 'enddate'=>$enddate), NULL, 'no');
208
+ return true;
209
+ }
210
+ elseif(!empty($r->error))
211
+ {
212
+ //invalid key
213
+ global $pmpro_license_error;
214
+ $pmpro_license_error = $r->error;
215
+
216
+ delete_option('pmpro_license_check');
217
+ add_option('pmpro_license_check', array('license'=>false, 'enddate'=>0), NULL, 'no');
218
+
219
+ return false;
220
+ }
221
+ }
222
+ }
223
+ else
224
+ return false;
225
+ }
226
+ add_action('pmpro_license_check_key', 'pmpro_license_check_key');
227
+
228
+ /*
229
+ Check for pause
230
+ */
231
+ function pmpro_license_pause() {
232
+ if(!empty($_REQUEST['pmpro_nag_paused']) && current_user_can('manage_options')) {
233
+ $pmpro_nag_paused = current_time('timestamp')*3600*24*7;
234
+ update_option('pmpro_nag_paused', $pmpro_nag_paused);
235
+
236
+ return;
237
+ }
238
+ }
239
+ add_action('admin_init', 'pmpro_license_pause');
240
+
241
+ /*
242
+ Add nags.
243
+ */
244
+ //nag function embedded into headers of plugins
245
+ function pmpro_license_nag() {
246
+ global $pmpro_nagged;
247
+
248
+ //nagged already?
249
+ if(!empty($pmpro_nagged))
250
+ return;
251
+
252
+ //remember that we've nagged already
253
+ $pmpro_nagged = true;
254
+
255
+ //blocked by constant?
256
+ if(defined('PMPRO_LICENSE_NAG') && !PMPRO_LICENSE_NAG)
257
+ return;
258
+
259
+ //valid license?
260
+ if(pmpro_license_isValid())
261
+ return;
262
+
263
+ //are we paused?
264
+ $pmpro_nag_paused = get_option('pmpro_nag_paused', 0);
265
+
266
+ if(current_time('timestamp') < $pmpro_nag_paused && $pmpro_nag_paused < current_time('timestamp')*3600*24*8)
267
+ return;
268
+
269
+ //okay, show nag
270
+ ?>
271
+ <div class="error fade">
272
+ <p>
273
+ <strong><?php _e('Invalid PMPro License Key.', 'pmpro');?></strong> <?php _e("If you're running Paid Memberships Pro on a production website, we recommend an annual support license.", "pmpro");?>
274
+ <a href="<?php echo admin_url('options-general.php?page=pmpro_license_settings');?>"><?php _e('More Info', 'pmpro');?></a>&nbsp;|&nbsp;<a href="<?php echo add_query_arg('pmpro_nag_paused', '1', $_SERVER['REQUEST_URI']);?>"><?php _e('Dismiss', 'pmpro');?></a>
275
+ </p>
276
+ </div>
277
+ <?php
278
+ }
includes/profile.php CHANGED
@@ -48,15 +48,19 @@ function pmpro_membership_level_profile_fields($user)
48
  </select>
49
  <span id="current_level_cost">
50
  <?php
51
- $membership_values = pmpro_getMembershipLevelForUser($user->ID);
52
- if(empty($membership_values) || pmpro_isLevelFree($membership_values))
53
- { ?>
54
- <?php _e("Not paying.", "pmpro"); ?>
55
- <?php }
56
- else
57
- {
58
- //we tweak the initial payment here so the text here effectively shows the recurring amount
59
- $membership_values->initial_payment = $membership_values->billing_amount;
 
 
 
 
60
  echo pmpro_getLevelCost($membership_values, true, true);
61
  }
62
  ?>
@@ -274,6 +278,15 @@ function pmpro_membership_level_profile_fields_update()
274
  //it changed. send email
275
  $level_changed = true;
276
  }
 
 
 
 
 
 
 
 
 
277
 
278
  //remove filter after ward
279
  if(empty($_REQUEST['cancel_subscription']))
48
  </select>
49
  <span id="current_level_cost">
50
  <?php
51
+ $membership_values = pmpro_getMembershipLevelForUser($user->ID);
52
+ //we tweak the initial payment here so the text here effectively shows the recurring amount
53
+ $membership_values->original_initial_payment = $membership_values->initial_payment;
54
+ $membership_values->initial_payment = $membership_values->billing_amount;
55
+ if(empty($membership_values) || pmpro_isLevelFree($membership_values))
56
+ {
57
+ if($membership_values->original_initial_payment > 0)
58
+ echo "Paid " . pmpro_formatPrice($membership_values->original_initial_payment) . ".";
59
+ else
60
+ _e('Not paying.', 'pmpro');
61
+ }
62
+ else
63
+ {
64
  echo pmpro_getLevelCost($membership_values, true, true);
65
  }
66
  ?>
278
  //it changed. send email
279
  $level_changed = true;
280
  }
281
+ elseif(!empty($_REQUEST['cancel_subscription']))
282
+ {
283
+ //the level didn't change, but we were asked to cancel the subscription at the gateway, let's do that
284
+ $order = new MemberOrder();
285
+ $order->getLastMemberOrder($user_ID);
286
+
287
+ if(!empty($order) && !empty($order->id))
288
+ $r = $order->cancel();
289
+ }
290
 
291
  //remove filter after ward
292
  if(empty($_REQUEST['cancel_subscription']))
languages/email/fr_FR/admin_change.html ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <p>Un administrateur de !!sitename!! a changé votre niveau d'adhésion.</p>
2
+
3
+ <p>!!membership_change!!.</p>
4
+
5
+ <p>Si vous n'avez pas demandé ce changement et que vous souhaitez avoir plus d'informations, contactez-nous à !!siteemail!!</p>
6
+
7
+ <p>Pour vous connecter à votre compte : !!login_link!!</p>
languages/email/fr_FR/admin_change_admin.html ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ <p>Un administrateur de !!sitename!! a changé le type d'adhésion pour !!name!!.</p>
2
+
3
+ <p>!!membership_change!!.</p>
4
+
5
+ <p>Pour vous connecter à votre compte : !!login_link!!</p>
languages/email/fr_FR/billing.html ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Vos infos de paiement à !!sitename!! ont été changées.</p>
2
+
3
+ <p>Compte : !!display_name!! (!!user_email!!)</p>
4
+ <p>
5
+ Adresse de facturation :<br />
6
+ !!billing_address!!
7
+ </p>
8
+
9
+ <p>
10
+ !!cardtype!!: !!accountnumber!!<br />
11
+ Expiration : !!expirationmonth!!/!!expirationyear!!
12
+ </p>
13
+
14
+ <p>Si vous n'avez pas demandé de changement de cets informations, contactez-nous à !!siteemail!!</p>
15
+
16
+ <p>Pour vous connecter à votre compte : !!login_link!!</p>
languages/email/fr_FR/billing_admin.html ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Les infos de paiement pour !!display_name!! sur !!sitename!! ont été modifiées.</p>
2
+
3
+ <p>Compte : !!display_name!! (!!user_email!!)</p>
4
+ <p>
5
+ Adresse de facturation :<br />
6
+ !!billing_name!!<br />
7
+ !!billing_street!!<br />
8
+ !!billing_city!!, !!billing_state!! !!billing_zip!! !!billing_country!!
9
+ !!billing_phone!!
10
+ </p>
11
+
12
+ <p>
13
+ !!cardtype!!: !!accountnumber!!<br />
14
+ Expiration : !!expirationmonth!!/!!expirationyear!!
15
+ </p>
16
+
17
+ <p>Pour vous connecter à votre compte : !!login_link!!</p>
languages/email/fr_FR/billing_failure.html ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Le paiement de votre adhésion à !!sitename!! a échoué. <strong>Veuillez cliquer sur le lien suivant pour vous connecter et mettre à jour vos informations de paiement afin de renouveler votre adhésion. !!login_link!!</strong></p>
2
+
3
+ <p>Compte : !!display_name!! (!!user_email!!)</p>
4
+ <p>Les dernières infos que nous ayons :</p>
5
+
6
+ <p>!!billing_address!!</p>
7
+
8
+ <p>
9
+ !!cardtype!!: !!accountnumber!!<br />
10
+ Expiration : !!expirationmonth!!/!!expirationyear!!
11
+ </p>
languages/email/fr_FR/billing_failure_admin.html ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Erreur de paiement</p>
2
+
3
+ <p>Compte : !!display_name!! (!!user_email!!)</p>
4
+ <p>Les dernières infos que nous ayons :</p>
5
+
6
+ <p>!!billing_address!!</p>
7
+
8
+ <p>
9
+ !!cardtype!!: !!accountnumber!!<br />
10
+ Expiration : !!expirationmonth!!/!!expirationyear!!
11
+ </p>
languages/email/fr_FR/cancel.html ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <p>Votre adhésion à !!sitename!! a été résiliée.</p>
2
+
3
+ <p>Si vous n'avez pas demandé cette résiliation, contactez-nous à !!siteemail!!</p>
languages/email/fr_FR/cancel_admin.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <p>L'adhésion de !!user_login!! à !!sitename!! a été résiliée.</p>
2
+
3
+ <p>Compte : !!display_name!! (!!user_email!!)</p>
4
+ <p>Type d'adhésion : !!membership_level_name!!</p>
5
+ <p>Date de début : !!startdate!!</p>
6
+ <p>Date de résiliation : !!enddate!!</p>
7
+
8
+ <p>Pour vous connecter à votre compte : !!login_link!!</p>
languages/email/fr_FR/checkout_check.html ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Nous avons bien reçu votre chèque. Merci d'avoir adhéré à !!sitename!!. Votre compte est maintenant actif.</p>
2
+
3
+ !!instructions!!
4
+
5
+ <p>Vous trouverez ci-dessous les détails de votre compte d'adhérent ainsi qu'un reçu pour votre paiement.</p>
6
+
7
+ <p>Compte : !!display_name!! (!!user_email!!)</p>
8
+ <p>Type d'adhésion : !!membership_level_name!!</p>
9
+ <p>Coût : !!membership_cost!!</p>
10
+ !!membership_expiration!! !!discount_code!!
11
+
12
+ <p>
13
+ Reçu #!!invoice_id!! du !!invoice_date!!<br />
14
+ Total prélevé : !!invoice_total!!
15
+ </p>
16
+
17
+ <p>Pour vous connecter à votre compte : !!login_link!!</p>
languages/email/fr_FR/checkout_check_admin.html ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Nouvelle adhésion pour !!sitename!!.</p>
2
+
3
+ <p><strong>Paiement par chèque.</strong></p>
4
+
5
+ <p>Ci-dessous les détails du compte et le reçu pour le paiement.</p>
6
+
7
+ <p>Compte : !!display_name!! (!!user_email!!)</p>
8
+ <p>Type d'adhésion : !!membership_level_name!!</p>
9
+ <p>Coût payé : !!membership_cost!!</p>
10
+ !!membership_expiration!! !!discount_code!!
11
+
12
+ <p>
13
+ Reçu #!!invoice_id!! du !!invoice_date!!<br />
14
+ Total payé : $!!invoice_total!!
15
+ </p>
16
+
17
+ <p>Pour vous connecter à votre compte : !!login_link!!</p>
languages/email/fr_FR/checkout_express.html ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Nous avons bien reçu votre paiement Paypal. Merci d'avoir adhéré à !!sitename!!. Votre compte est maintenant actif.</p>
2
+
3
+ !!instructions!!
4
+
5
+ <p>Vous trouverez ci-dessous les détails de votre compte d'adhérent ainsi qu'un reçu pour votre paiement.</p>
6
+
7
+ <p>Compte : !!display_name!! (!!user_email!!)</p>
8
+ <p>Type d'adhésion : !!membership_level_name!!</p>
9
+ <p>Coût : !!membership_cost!!</p>
10
+ !!membership_expiration!! !!discount_code!!
11
+
12
+ <p>
13
+ Reçu #!!invoice_id!! du !!invoice_date!!<br />
14
+ Total prélevé : !!invoice_total!!
15
+ </p>
16
+
17
+ <p>Pour vous connecter à votre compte : !!login_link!!</p>
languages/email/fr_FR/checkout_express_admin.html ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Nouvelle adhésion sur !!sitename!!.</p>
2
+ <p>Ci-dessous les détails du compte et le reçu du paiement.</p>
3
+
4
+ <p>Compte : !!display_name!! (!!user_email!!)</p>
5
+ <p>Type d'adhésion : !!membership_level_name!!</p>
6
+ <p>Coût payé : !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Reçu #!!invoice_id!! du !!invoice_date!!<br />
11
+ Total payé : !!invoice_total!!
12
+ </p>
13
+
14
+ <p>Pour vous connecter à votre compte : !!login_link!!</p>
languages/email/fr_FR/checkout_free.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <p>Merci d'avoir adhéré à !!sitename!!. Votre compte est maintenant actif.</p>
2
+ <p>Vous trouverez ci-dessous les détails de votre compte d'adhérent.</p>
3
+
4
+ <p>Compte : !!display_name!! (!!user_email!!)</p>
5
+ <p>Type d'adhésion : !!membership_level_name!!</p>
6
+ !!membership_expiration!! !!discount_code!!
7
+
8
+ <p>Pour vous connecter à votre compte : !!login_link!!</p>
languages/email/fr_FR/checkout_free_admin.html ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <p>Nouvelle adhésion pour !!sitename!!.</p>
2
+
3
+ <p><strong>Compte gratuit.</strong></p>
4
+
5
+ <p>Compte : !!display_name!! (!!user_email!!)</p>
6
+ <p>Type d'adhésion : !!membership_level_name!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>Pour vous connecter à votre compte : !!login_link!!</p>
languages/email/fr_FR/checkout_freetrial.html ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Merci d'avoir adhéré à !!sitename!!. Votre adhésion est maintenant valide.</p>
2
+ <p>Veuillez trouver ci-dessous les détails de votre compte.</p>
3
+
4
+ <p>Compte : !!display_name!! (!!user_email!!)</p>
5
+ <p>Type d'adhésion : !!membership_level_name!!</p>
6
+ <p>Coût payé : !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Adresse de facturation :<br />
11
+ !!billing_address!!
12
+ </p>
13
+
14
+ <p>
15
+ !!cardtype!!: !!accountnumber!!<br />
16
+ Expiration : !!expirationmonth!!/!!expirationyear!!
17
+ </p>
18
+
19
+ <p>Pour vous connecter à votre compte : !!login_link!!</p>
languages/email/fr_FR/checkout_freetrial_admin.html ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>There was a new member checkout at !!sitename!!.</p>
2
+ <p>Below are details about the new membership account and a receipt for the initial membership invoice.</p>
3
+
4
+ <p>Account: !!display_name!! (!!user_email!!)</p>
5
+ <p>Membership Level: !!membership_level_name!!</p>
6
+ <p>Membership Fee: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Billing Information on File:<br />
11
+ !!billing_address!!
12
+ </p>
13
+
14
+ <p>
15
+ !!cardtype!!: !!accountnumber!!<br />
16
+ Expires: !!expirationmonth!!/!!expirationyear!!
17
+ </p>
18
+
19
+ <p>Log in to your membership account here: !!login_link!!</p>
languages/email/fr_FR/checkout_paid.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Merci d'avoir adhéré à !!sitename!!. Votre adhésion est maintenant valide.</p>
2
+ <p>Veuillez trouver ci-dessous les détails de votre compte et un reçu pour votre paiement.</p>
3
+
4
+ <p>Compte : !!display_name!! (!!user_email!!)</p>
5
+ <p>Type d'adhésion : !!membership_level_name!!</p>
6
+ <p>Coût payé : !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Reçu #!!invoice_id!! du !!invoice_date!!<br />
11
+ Total payé : !!invoice_total!!
12
+ </p>
13
+ <p>
14
+ Adresse de facturation :<br />
15
+ !!billing_address!!
16
+ </p>
17
+
18
+ <p>
19
+ !!cardtype!!: !!accountnumber!!<br />
20
+ Expiration : !!expirationmonth!!/!!expirationyear!!
21
+ </p>
22
+
23
+ <p>Pour vous connecter à votre compte : !!login_link!!</p>
languages/email/fr_FR/checkout_paid_admin.html ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Nouvelle adhésion pour !!sitename!!.</p>
2
+
3
+ <p>Ci-dessous les détails du compte et le reçu pour le paiement.</p>
4
+
5
+ <p>Compte : !!display_name!! (!!user_email!!)</p>
6
+ <p>Type d'adhésion : !!membership_level_name!!</p>
7
+ <p>Coût payé : !!membership_cost!!</p>
8
+ !!membership_expiration!! !!discount_code!!
9
+
10
+ <p>
11
+ Reçu #!!invoice_id!! du !!invoice_date!!<br />
12
+ Total payé : !!invoice_total!!
13
+ </p>
14
+ <p>
15
+ Adresse de facturation :<br />
16
+ !!billing_address!!
17
+ </p>
18
+
19
+ <p>
20
+ !!cardtype!!: !!accountnumber!!<br />
21
+ Expiration : !!expirationmonth!!/!!expirationyear!!
22
+ </p>
23
+
24
+ <p>Pour vous connecter à votre compte : !!login_link!!</p>
languages/email/fr_FR/checkout_trial.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Merci d'avoir adhéré à !!sitename!!. Votre adhésion est maintenant valide.</p>
2
+ <p>Veuillez trouver ci-dessous les détails de votre compte et un reçu pour votre paiement initial.</p>
3
+
4
+ <p>Compte : !!display_name!! (!!user_email!!)</p>
5
+ <p>Type d'adhésion : !!membership_level_name!!</p>
6
+ <p>Coût payé : !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Reçu #!!invoice_id!! du !!invoice_date!!<br />
11
+ Total payé : !!invoice_total!!
12
+ </p>
13
+ <p>
14
+ Adresse de facturation :<br />
15
+ !!billing_address!!
16
+ </p>
17
+
18
+ <p>
19
+ !!cardtype!!: !!accountnumber!!<br />
20
+ Expiration : !!expirationmonth!!/!!expirationyear!!
21
+ </p>
22
+
23
+ <p>Pour vous connecter à votre compte : !!login_link!!</p>
languages/email/fr_FR/checkout_trial_admin.html ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Nouvelle adhésion pour !!sitename!!.</p>
2
+
3
+ <p>Ci-dessous les détails du compte et le reçu pour le paiement et le reçu pour le paiement initial.</p>
4
+
5
+ <p>Compte : !!display_name!! (!!user_email!!)</p>
6
+ <p>Type d'adhésion : !!membership_level_name!!</p>
7
+ <p>Coût payé : !!membership_cost!!</p>
8
+ !!membership_expiration!! !!discount_code!!
9
+
10
+ <p>
11
+ Reçu #!!invoice_id!! du !!invoice_date!!<br />
12
+ Total payé : !!invoice_total!!
13
+ </p>
14
+ <p>
15
+ Adresse de facturation :<br />
16
+ !!billing_address!!
17
+ </p>
18
+
19
+ <p>
20
+ !!cardtype!!: !!accountnumber!!<br />
21
+ Expiration : !!expirationmonth!!/!!expirationyear!!
22
+ </p>
23
+
24
+ <p>Pour vous connecter à votre compte : !!login_link!!</p>
languages/email/fr_FR/credit_card_expiring.html ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>La méthode de paiement utilisée pour votre adhésion à !!sitename!! va bientôt expirer. <strong>Cliquez sur le lien suivant pour vous connecter et mettre à jour vos informations de paiement avant que votre compte soit suspendu : !!login_link!!</strong></p>
2
+
3
+ <p>
4
+ !!cardtype!!: !!accountnumber!!<br />
5
+ Expires: !!expirationmonth!!/!!expirationyear!!
6
+ </p>
7
+
8
+ <p>Compte : !!display_name!! (!!user_email!!)</p>
9
+ <p>Les dernières infos que nous ayons :</p>
10
+
11
+ <p>!!billing_name!!</br />
12
+ !!billing_address!!
13
+ </p>
14
+
15
+ <p>
16
+ !!cardtype!!: !!accountnumber!!<br />
17
+ Expiration : !!expirationmonth!!/!!expirationyear!!
18
+ </p>
languages/email/fr_FR/default.html ADDED
@@ -0,0 +1 @@
 
1
+ !!body!!
languages/email/fr_FR/footer.html ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <p>
2
+ Cordialement,<br />
3
+ !!sitename!!
4
+ </p>
languages/email/fr_FR/header.html ADDED
@@ -0,0 +1 @@
 
1
+ <p>Bonjour !!name!!,</p>
languages/email/fr_FR/invoice.html ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Merci pour votre adhésion à !!sitename!!. Veuillez trouver ci-dessous votre dernier reçu.</p>
2
+
3
+ <p>Compte : !!display_name!! (!!user_email!!)</p>
4
+ <p>
5
+ Reçu #!!invoice_id!! du !!invoice_date!!<br />
6
+ Total prélevé : !!invoice_total!!
7
+ </p>
8
+ <p>
9
+ Adresse de facturation :<br />
10
+ !!billing_address!!
11
+ </p>
12
+
13
+ <p>
14
+ !!cardtype!!: !!accountnumber!!<br />
15
+ Expiration : !!expirationmonth!!/!!expirationyear!!
16
+ </p>
17
+
18
+ <p>Pour vous connecter à votre compte : !!login_link!!</p>
19
+ <p>Voir ce reçu en ligne : !!invoice_link!!</p>
languages/email/fr_FR/membership_expired.html ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <p>Votre adhésion à !!sitename!! a expiré.</p>
2
+
3
+ <p>L'IFAC compte sur vous !</p>
4
+
5
+ <p>Voir les niveaux d'adhésion : !!levels_link!!</p>
6
+
7
+ <p>Se connecter à votre compte : !!login_link!!</p>
languages/email/fr_FR/membership_expiring.html ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <p>Merci d'avoir adhéré l'an dernier à !!sitename!!. Ceci est un rappel : votre adhésion va expirer le !!enddate!!.</p>
2
+
3
+ <p>Compte : !!display_name!! (!!user_email!!)</p>
4
+ <p>Type d'adhésion : !!membership_level_name!!</p>
5
+
6
+ <p>Pour vous connecter : !!login_link!!</p>
languages/email/fr_FR/trial_ending.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <p>Merci de votre adhésion à !!sitename!!. Votre période d'essai expirera le !!trial_end!!.</p>
2
+
3
+ <p>Compte : !!display_name!! (!!user_email!!)</p>
4
+ <p>Type d'adhésion : !!membership_level_name!!</p>
5
+
6
+ <p>Votre cotisation passera de !!trial_amount!! à !!billing_amount!! pour !!cycle_number!! !!cycle_period!!(s).</p>
7
+
8
+ <p>Pour vous connecter à votre compte : !!login_link!!</p>
languages/pmpro-fi.mo ADDED
Binary file
languages/pmpro-fi.po ADDED
@@ -0,0 +1,3200 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Paid Subscriptions\n"
4
+ "POT-Creation-Date: 2015-07-23 12:05+0200\n"
5
+ "PO-Revision-Date: 2015-07-23 12:22+0200\n"
6
+ "Last-Translator: Onni Hakala <onni@koodimonni.fi>\n"
7
+ "Language-Team: Onni Hakala <onni@koodimonni.fi>\n"
8
+ "Language: fi\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.7.1\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #: adminpages/addons.php:5 adminpages/advancedsettings.php:5
22
+ #: adminpages/discountcodes.php:5 adminpages/emailsettings.php:5
23
+ #: adminpages/membershiplevels.php:5 adminpages/memberslist-csv.php:5
24
+ #: adminpages/memberslist.php:5 adminpages/orders-csv.php:5 adminpages/orders.php:5
25
+ #: adminpages/pagesettings.php:5 adminpages/paymentsettings.php:5
26
+ msgid "You do not have permissions to perform this action."
27
+ msgstr "Sinulla ei ole riittäviä oikeuksia suorittaa tätä toimintoa."
28
+
29
+ #: adminpages/addons.php:79
30
+ msgid "Enabled"
31
+ msgstr "Käytössä"
32
+
33
+ #: adminpages/addons.php:79
34
+ msgid "Disabled"
35
+ msgstr "Pois käytöstä"
36
+
37
+ #: adminpages/admin_header.php:25
38
+ msgid "Add a membership level to get started."
39
+ msgstr "Lisää tilaajataso aloittaaksesi"
40
+
41
+ #: adminpages/admin_header.php:27
42
+ msgid "Set up the membership pages"
43
+ msgstr "Aseta tilaajasivut"
44
+
45
+ #: adminpages/admin_header.php:29
46
+ msgid "Set up your SSL certificate and payment gateway"
47
+ msgstr "Aseta SSL-sertifikaatti ja maksuväylä"
48
+
49
+ #: adminpages/admin_header.php:38
50
+ msgid ""
51
+ "The billing details for some of your membership levels is not supported by Stripe."
52
+ msgstr "Stripe ei tue joidenkin tilaajatasojen laskutustietoja."
53
+
54
+ #: adminpages/admin_header.php:46
55
+ msgid ""
56
+ "The billing details for this level are not supported by Stripe. Please review the "
57
+ "notes in the Billing Details section below."
58
+ msgstr ""
59
+ "Stripe ei tue joidenkin tilaajatasojen laskutustietoja. Ole hyvä ja tarkista "
60
+ "laskutustietojen merkinnät alapuolella olevasta osiosta."
61
+
62
+ #: adminpages/admin_header.php:50 adminpages/admin_header.php:70
63
+ #: adminpages/admin_header.php:90 adminpages/admin_header.php:111
64
+ msgid "The levels with issues are highlighted below."
65
+ msgstr "Virheelliset tilaajatasot ovat korostettuna alapuolella."
66
+
67
+ #: adminpages/admin_header.php:52 adminpages/admin_header.php:72
68
+ #: adminpages/admin_header.php:92 adminpages/admin_header.php:113
69
+ msgid "Please edit your levels"
70
+ msgstr "Ole hyvä ja muokkaa tilaajatasoja"
71
+
72
+ #: adminpages/admin_header.php:58
73
+ msgid ""
74
+ "The billing details for some of your membership levels is not supported by Payflow."
75
+ msgstr "Payflow ei tue joidenkin tilaajatasojen laskutustietoja."
76
+
77
+ #: adminpages/admin_header.php:66
78
+ msgid ""
79
+ "The billing details for this level are not supported by Payflow. Please review the "
80
+ "notes in the Billing Details section below."
81
+ msgstr ""
82
+ "Payflow ei tue joidenkin tilaajatasojen laskutustietoja. Ole hyvä ja tarkista "
83
+ "laskutustietojen merkinnät alapuolella olevasta osiosta."
84
+
85
+ #: adminpages/admin_header.php:78
86
+ msgid ""
87
+ "The billing details for some of your membership levels is not supported by "
88
+ "Braintree."
89
+ msgstr "Braintree ei tue joidenkin tilaajatasojen laskutustietoja. "
90
+
91
+ #: adminpages/admin_header.php:86
92
+ msgid ""
93
+ "The billing details for this level are not supported by Braintree. Please review "
94
+ "the notes in the Billing Details section below."
95
+ msgstr ""
96
+ "Braintree ei tue joidenkin tilaajatasojen laskutustietoja. Ole hyvä ja tarkista "
97
+ "laskutustietojen merkinnät alapuolella olevasta osiosta."
98
+
99
+ #: adminpages/admin_header.php:98
100
+ msgid ""
101
+ "The billing details for some of your membership levels is not supported by "
102
+ "TwoCheckout."
103
+ msgstr ""
104
+ "2Checkout ei tue joidenkin tilaajatasojen laskutustietoja. Ole hyvä ja tarkista "
105
+ "laskutustietojen merkinnät alapuolella olevasta osiosta."
106
+
107
+ #: adminpages/admin_header.php:107
108
+ msgid ""
109
+ "The billing details for this level are not supported by 2Checkout. Please review "
110
+ "the notes in the Billing Details section below."
111
+ msgstr ""
112
+ "2Checkout ei tue joidenkin tilaajatasojen laskutustietoja. Ole hyvä ja tarkista "
113
+ "laskutustietojen merkinnät alapuolella olevasta osiosta."
114
+
115
+ #: adminpages/admin_header.php:127
116
+ msgid "Plugin Support"
117
+ msgstr "Lisäosan tuki"
118
+
119
+ #: adminpages/admin_header.php:127
120
+ msgid "User Forum"
121
+ msgstr "Keskustelufoorumi"
122
+
123
+ #: adminpages/admin_header.php:150 adminpages/membershiplevels.php:569
124
+ #: adminpages/pagesettings.php:69 includes/adminpages.php:64
125
+ #: includes/adminpages.php:65 includes/adminpages.php:111
126
+ msgid "Membership Levels"
127
+ msgstr "Tilaajatasot"
128
+
129
+ #: adminpages/admin_header.php:154 adminpages/pagesettings.php:120
130
+ msgid "Pages"
131
+ msgstr "Sivut"
132
+
133
+ #: adminpages/admin_header.php:158
134
+ msgid "Payment Gateway &amp; SSL"
135
+ msgstr "Maksuväylä &amp; SSL"
136
+
137
+ #: adminpages/admin_header.php:162 adminpages/memberslist.php:168
138
+ #: shortcodes/pmpro_account.php:106
139
+ msgid "Email"
140
+ msgstr "Sähköposti"
141
+
142
+ #: adminpages/admin_header.php:166
143
+ msgid "Advanced"
144
+ msgstr "Lisäasetukset"
145
+
146
+ #: adminpages/admin_header.php:170 includes/adminpages.php:52
147
+ #: includes/adminpages.php:146
148
+ msgid "Add Ons"
149
+ msgstr "Lisäosat"
150
+
151
+ #: adminpages/advancedsettings.php:43
152
+ msgid "Your advanced settings have been updated."
153
+ msgstr "Lisäasetukset on päivitetty."
154
+
155
+ #: adminpages/advancedsettings.php:68
156
+ #, php-format
157
+ msgid "This content is for !!levels!! members only. <a href=\"%s\">Register here</a>."
158
+ msgstr "Tämä sisältö on vain tilaajille. <a href=\"%s\">Rekisteröidy tästä</a>."
159
+
160
+ #: adminpages/advancedsettings.php:73
161
+ #, php-format
162
+ msgid ""
163
+ "Please <a href=\"%s\">login</a> to view this content. (<a href=\"%s\">Register "
164
+ "here</a>.)"
165
+ msgstr ""
166
+ "<a href=\"%s\">Kirjaudu sisään</a> lukeaksesi sisällön. (<a href=\"%s\">Tai "
167
+ "rekisteröidy täältä</a>.)"
168
+
169
+ #: adminpages/advancedsettings.php:78
170
+ msgid "This content is for members only. Visit the site and log in/register to read."
171
+ msgstr "Tämä sisältö on vain tilaajille. Kirjaudu sisään lukeaksesi artikkelin."
172
+
173
+ #: adminpages/advancedsettings.php:88 includes/adminpages.php:51
174
+ #: includes/adminpages.php:139
175
+ msgid "Advanced Settings"
176
+ msgstr "Lisäasetukset"
177
+
178
+ #: adminpages/advancedsettings.php:94
179
+ msgid "Message for Logged-in Non-members"
180
+ msgstr "Viesti sisäänkirjautuneille ei-tilaajille"
181
+
182
+ #: adminpages/advancedsettings.php:98
183
+ msgid "This message replaces the post content for non-members. Available variables"
184
+ msgstr ""
185
+ "Tämä viesti korvaa artikkelin sisällön ei-tilaajille. Käytettävissä olevat muuttujat"
186
+
187
+ #: adminpages/advancedsettings.php:103
188
+ msgid "Message for Logged-out Users"
189
+ msgstr "Viesti kirjautumattomille käyttäjille"
190
+
191
+ #: adminpages/advancedsettings.php:107
192
+ msgid "This message replaces the post content for logged-out visitors."
193
+ msgstr "Tämä viesti korvaa artikkelin sisällön kirjautumattomille käyttäjille"
194
+
195
+ #: adminpages/advancedsettings.php:112
196
+ msgid "Message for RSS Feed"
197
+ msgstr "Viesti RSS-feediin"
198
+
199
+ #: adminpages/advancedsettings.php:116
200
+ msgid "This message replaces the post content in RSS feeds."
201
+ msgstr "Tämä viesti korvaa artikkelin sisällön RSS-syötteissä."
202
+
203
+ #: adminpages/advancedsettings.php:122
204
+ msgid "Filter searches and archives?"
205
+ msgstr "Piilota artikkelit hauista ja arkistoista?"
206
+
207
+ #: adminpages/advancedsettings.php:126
208
+ msgid "No - Non-members will see restricted posts/pages in searches and archives."
209
+ msgstr "Ei - Kaikki käyttäjät näkevät kaikki artikkelit/sivut hauissa ja arkistoissa."
210
+
211
+ #: adminpages/advancedsettings.php:127
212
+ msgid "Yes - Only members will see restricted posts/pages in searches and archives."
213
+ msgstr ""
214
+ "Kyllä - Vain tilaajat näkevät rajoitetut artikkelit/sivut hauissa ja arkistoissa."
215
+
216
+ #: adminpages/advancedsettings.php:133
217
+ msgid "Show Excerpts to Non-Members?"
218
+ msgstr "Näytä ote artikkelista Ei-tilaajille?"
219
+
220
+ #: adminpages/advancedsettings.php:137
221
+ msgid "No - Hide excerpts."
222
+ msgstr "Ei - Piilota otteet artikkelista."
223
+
224
+ #: adminpages/advancedsettings.php:138
225
+ msgid "Yes - Show excerpts."
226
+ msgstr "Kyllä - Näytä ote artikkelista."
227
+
228
+ #: adminpages/advancedsettings.php:144
229
+ msgid "Hide Ads From Members?"
230
+ msgstr "Piilota mainokset tilaajilta?"
231
+
232
+ #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
233
+ #: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:658
234
+ #: adminpages/paymentsettings.php:210
235
+ #: classes/gateways/class.pmprogateway_stripe.php:174 includes/profile.php:101
236
+ msgid "No"
237
+ msgstr "Ei"
238
+
239
+ #: adminpages/advancedsettings.php:149
240
+ msgid "Hide Ads From All Members"
241
+ msgstr "Piilota mainokset kaikilta tilaajilta"
242
+
243
+ #: adminpages/advancedsettings.php:150
244
+ msgid "Hide Ads From Certain Members"
245
+ msgstr "Piilota mainokset tietyiltä tilaajilta"
246
+
247
+ #: adminpages/advancedsettings.php:157
248
+ msgid "Ads from the following plugins will be automatically turned off"
249
+ msgstr "Seuraavien lisäosien mainokset kytketään automaattisesti pois"
250
+
251
+ #: adminpages/advancedsettings.php:158
252
+ msgid "To hide ads in your template code, use code like the following"
253
+ msgstr ""
254
+
255
+ #: adminpages/advancedsettings.php:169
256
+ msgid "Choose Levels to Hide Ads From"
257
+ msgstr "Valitse tilaajatasot joilta piilotetaan mainokset"
258
+
259
+ #: adminpages/advancedsettings.php:203
260
+ msgid "Redirect all traffic from registration page to /susbcription/?"
261
+ msgstr "Ohjaa kaikki liikenne rekisteröinti sivulta osoitteeseen /tilaus/?"
262
+
263
+ #: adminpages/advancedsettings.php:203
264
+ msgid "multisite only"
265
+ msgstr "vain multisite"
266
+
267
+ #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:658
268
+ #: adminpages/paymentsettings.php:211
269
+ #: classes/gateways/class.pmprogateway_stripe.php:175 includes/profile.php:102
270
+ msgid "Yes"
271
+ msgstr "Kyllä"
272
+
273
+ #: adminpages/advancedsettings.php:215
274
+ msgid "Use reCAPTCHA?"
275
+ msgstr "Ota käyttöön reCAPTCHA?"
276
+
277
+ #: adminpages/advancedsettings.php:220
278
+ msgid "Yes - Free memberships only."
279
+ msgstr "Kyllä - Vain maksuttomille tilaajille"
280
+
281
+ #: adminpages/advancedsettings.php:221
282
+ msgid "Yes - All memberships."
283
+ msgstr "Kyllä - Kaikille tilaajille"
284
+
285
+ #: adminpages/advancedsettings.php:223
286
+ msgid "A free reCAPTCHA key is required."
287
+ msgstr "Tarvitset ilmaisen reCAPTCHA avaimen."
288
+
289
+ #: adminpages/advancedsettings.php:223
290
+ msgid "Click here to signup for reCAPTCHA"
291
+ msgstr "Klikkaa tästä rekisteröidäksesi reCAPTCHA:n"
292
+
293
+ #: adminpages/advancedsettings.php:229
294
+ msgid "reCAPTCHA Public Key"
295
+ msgstr "reCAPTCHA Julkinen Avain"
296
+
297
+ #: adminpages/advancedsettings.php:232
298
+ msgid "reCAPTCHA Private Key"
299
+ msgstr "reCAPTCHA Salainen Avain"
300
+
301
+ #: adminpages/advancedsettings.php:238
302
+ msgid "Require Terms of Service on signups?"
303
+ msgstr "Vaadi käyttöehdot rekisteröitymisen yhteydessä?"
304
+
305
+ #: adminpages/advancedsettings.php:245
306
+ msgid ""
307
+ "If yes, create a WordPress page containing your TOS agreement and assign it using "
308
+ "the dropdown above."
309
+ msgstr ""
310
+ "Mikäli valitsit kyllä, luo Wordpress-sivu, joka sisältää käyttöehtosopimukset ja "
311
+ "valitse se käyttämällä ylläolevaa pudotuslaatikkoa."
312
+
313
+ #: adminpages/advancedsettings.php:285
314
+ msgid "selected"
315
+ msgstr "valittu"
316
+
317
+ #: adminpages/advancedsettings.php:368 adminpages/pagesettings.php:251
318
+ #: adminpages/paymentsettings.php:238
319
+ msgid "Save Settings"
320
+ msgstr "Tallenna asetukset"
321
+
322
+ #: adminpages/discountcodes.php:48
323
+ msgid "Discount code updated successfully."
324
+ msgstr "Alennuskoodin päivitys onnistui."
325
+
326
+ #: adminpages/discountcodes.php:55
327
+ msgid "Error updating discount code. That code may already be in use."
328
+ msgstr "Virhe päivitettäessä alennuskoodia. Tämä koodi voi olla jo käytössä."
329
+
330
+ #: adminpages/discountcodes.php:64
331
+ msgid "Discount code added successfully."
332
+ msgstr "Alennuskoodin lisääminen onnistui."
333
+
334
+ #: adminpages/discountcodes.php:72
335
+ msgid "Error adding discount code. That code may already be in use."
336
+ msgstr "Virhe lisättäessä alennuskoodia. Tämä koodi voi olla jo käytössä."
337
+
338
+ #: adminpages/discountcodes.php:197
339
+ #, php-format
340
+ msgid "Error saving values for the %s level."
341
+ msgstr "Virhe tallennettaessa arvoja %s tilaajatasolle."
342
+
343
+ #: adminpages/discountcodes.php:205
344
+ msgid "There were errors updating the level values: "
345
+ msgstr "Tapahtui virheitä päivitettäessä seuraavia tasoja:"
346
+
347
+ #: adminpages/discountcodes.php:238
348
+ #, php-format
349
+ msgid "Code %s deleted successfully."
350
+ msgstr "Koodi %s poistettiin onnistuneesti."
351
+
352
+ #: adminpages/discountcodes.php:243
353
+ msgid ""
354
+ "Error deleting discount code. The code was only partially deleted. Please try again."
355
+ msgstr ""
356
+ "Virhe poistettaessa alennuskoodia. Koodi poistettiin vain osittain. Ole hyvä ja "
357
+ "yritä uudelleen."
358
+
359
+ #: adminpages/discountcodes.php:249
360
+ msgid "Error deleting code. Please try again."
361
+ msgstr "Virhe poistettaessa alennuskoodia. Ole hyvä ja yritä uudelleen."
362
+
363
+ #: adminpages/discountcodes.php:255
364
+ msgid "Code not found."
365
+ msgstr "Koodia ei löytynyt."
366
+
367
+ #: adminpages/discountcodes.php:268
368
+ msgid "Edit Discount Code"
369
+ msgstr "Muokkaa Alennuskoodia"
370
+
371
+ #: adminpages/discountcodes.php:270 adminpages/discountcodes.php:558
372
+ msgid "Add New Discount Code"
373
+ msgstr "Lisää uusi alennuskoodi"
374
+
375
+ #: adminpages/discountcodes.php:310 adminpages/discountcodes.php:586
376
+ #: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:583
377
+ #: adminpages/memberslist.php:164 adminpages/orders.php:910
378
+ #: adminpages/reports/login.php:142
379
+ msgid "ID"
380
+ msgstr ""
381
+
382
+ #: adminpages/discountcodes.php:311 adminpages/orders.php:261
383
+ msgid "This will be generated when you save."
384
+ msgstr "Tämä luodaan satunnaisesti kun tallennat."
385
+
386
+ #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:587
387
+ #: adminpages/orders.php:265 adminpages/orders.php:911
388
+ msgid "Code"
389
+ msgstr "Koodi"
390
+
391
+ #: adminpages/discountcodes.php:353
392
+ msgid "Start Date"
393
+ msgstr "Alkamispäivä"
394
+
395
+ #: adminpages/discountcodes.php:371
396
+ #: classes/gateways/class.pmprogateway_braintree.php:321
397
+ #: classes/gateways/class.pmprogateway_stripe.php:455 pages/billing.php:262
398
+ #: pages/checkout.php:562
399
+ msgid "Expiration Date"
400
+ msgstr "Päättymispäivä"
401
+
402
+ #: adminpages/discountcodes.php:389 adminpages/discountcodes.php:590
403
+ msgid "Uses"
404
+ msgstr "Käyttökertoja"
405
+
406
+ #: adminpages/discountcodes.php:392
407
+ msgid "Leave blank for unlimited uses."
408
+ msgstr "Jätä tyhjäksi jos koodia saa käyttää rajattomasti"
409
+
410
+ #: adminpages/discountcodes.php:401
411
+ msgid "Which Levels Will This Code Apply To?"
412
+ msgstr "Valitse käyttäjätasot, joille koodi toimii"
413
+
414
+ #: adminpages/discountcodes.php:431 adminpages/membershiplevels.php:341
415
+ msgid "Initial Payment"
416
+ msgstr "Aloitusmaksu"
417
+
418
+ #: adminpages/discountcodes.php:442 adminpages/membershiplevels.php:352
419
+ msgid "The initial amount collected at registration."
420
+ msgstr "Summa, mikä kerätään rekisteröinnin yhteydessä."
421
+
422
+ #: adminpages/discountcodes.php:447 adminpages/membershiplevels.php:356
423
+ msgid "Recurring Subscription"
424
+ msgstr "Uusiutuva tilaus"
425
+
426
+ #: adminpages/discountcodes.php:448 adminpages/membershiplevels.php:357
427
+ msgid "Check if this level has a recurring subscription payment."
428
+ msgstr "Valitse, jos taso sisältää uusiutuvan maksun."
429
+
430
+ #: adminpages/discountcodes.php:452 adminpages/membershiplevels.php:361
431
+ msgid "Billing Amount"
432
+ msgstr "Maksu"
433
+
434
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
435
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
436
+ #: classes/gateways/class.pmprogateway_stripe.php:522
437
+ msgid "Day(s)"
438
+ msgstr "Päivä(ä)"
439
+
440
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
441
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
442
+ #: classes/gateways/class.pmprogateway_stripe.php:522
443
+ msgid "Week(s)"
444
+ msgstr "Viikko(a)"
445
+
446
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
447
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
448
+ #: classes/gateways/class.pmprogateway_stripe.php:522
449
+ msgid "Month(s)"
450
+ msgstr "Kuukautta"
451
+
452
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
453
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
454
+ #: classes/gateways/class.pmprogateway_stripe.php:522
455
+ msgid "Year(s)"
456
+ msgstr "Vuotta"
457
+
458
+ #: adminpages/discountcodes.php:475 adminpages/membershiplevels.php:385
459
+ msgid "The amount to be billed one cycle after the initial payment."
460
+ msgstr "Summa, joka laskutetaan jaksottain aloitusmaksun jälkeen."
461
+
462
+ #: adminpages/discountcodes.php:480 adminpages/membershiplevels.php:403
463
+ msgid "Billing Cycle Limit"
464
+ msgstr "Laskutusjaksojen maksimi"
465
+
466
+ #: adminpages/discountcodes.php:483 adminpages/membershiplevels.php:407
467
+ msgid ""
468
+ "The <strong>total</strong> number of recurring billing cycles for this level, "
469
+ "including the trial period (if applicable) but not including the initial payment. "
470
+ "Set to zero if membership is indefinite."
471
+ msgstr ""
472
+ "Tilaajatason laskutettavien jaksojen <strong>kokonaismäärä</strong>, sisältäen "
473
+ "kokeiluajan ja lukuunottamatta aloitusmaksua. Aseta <strong>0</strong>, mikäli "
474
+ "tilaus jatkuu toistaiseksi."
475
+
476
+ #: adminpages/discountcodes.php:488 adminpages/membershiplevels.php:416
477
+ msgid "Custom Trial"
478
+ msgstr "Mukautettu kokeiluaika"
479
+
480
+ #: adminpages/discountcodes.php:489 adminpages/membershiplevels.php:418
481
+ msgid "Check to add a custom trial period."
482
+ msgstr "Valitse lisätäksesi mukautetun kokeiluajan."
483
+
484
+ #: adminpages/discountcodes.php:493 adminpages/membershiplevels.php:427
485
+ msgid "Trial Billing Amount"
486
+ msgstr "Kokeilujaksojen maksu"
487
+
488
+ #: adminpages/discountcodes.php:504 adminpages/membershiplevels.php:438
489
+ msgid "for the first"
490
+ msgstr "ensimmäiselle"
491
+
492
+ #: adminpages/discountcodes.php:506 adminpages/membershiplevels.php:440
493
+ msgid "subscription payments"
494
+ msgstr "laskutusjaksolle"
495
+
496
+ #: adminpages/discountcodes.php:511 adminpages/membershiplevels.php:469
497
+ msgid "Membership Expiration"
498
+ msgstr "Tilaajataso vanhenee"
499
+
500
+ #: adminpages/discountcodes.php:512 adminpages/membershiplevels.php:470
501
+ msgid "Check this to set when membership access expires."
502
+ msgstr "Valitse asettaaksesi tilaajatasolle vanhemisajankohta."
503
+
504
+ #: adminpages/discountcodes.php:516 adminpages/membershiplevels.php:474
505
+ msgid "Expires In"
506
+ msgstr "Vanhenee kun"
507
+
508
+ #: adminpages/discountcodes.php:529 adminpages/membershiplevels.php:487
509
+ msgid ""
510
+ "Set the duration of membership access. Note that the any future payments (recurring "
511
+ "subscription, if any) will be cancelled when the membership expires."
512
+ msgstr ""
513
+ "Valitse tilaajatason kesto. Ota huomioon, että tulevat maksut (uusiutuvat "
514
+ "tilaukset, mikäli niitä on) loppuvat kun tilaus päättyy."
515
+
516
+ #: adminpages/discountcodes.php:557
517
+ msgid "Memberships Discount Codes"
518
+ msgstr ""
519
+
520
+ #: adminpages/discountcodes.php:567
521
+ msgid "Search Discount Codes"
522
+ msgstr "Etsi Alennuskoodeja"
523
+
524
+ #: adminpages/discountcodes.php:570
525
+ msgid "Search"
526
+ msgstr "Etsi"
527
+
528
+ #: adminpages/discountcodes.php:588
529
+ msgid "Starts"
530
+ msgstr "Alkaa"
531
+
532
+ #: adminpages/discountcodes.php:589 adminpages/memberslist.php:179
533
+ #: adminpages/reports/login.php:147 includes/profile.php:98
534
+ msgid "Expires"
535
+ msgstr "Päättyy"
536
+
537
+ #: adminpages/discountcodes.php:591
538
+ msgid "Levels"
539
+ msgstr "Tilaajatasot"
540
+
541
+ #: adminpages/discountcodes.php:603
542
+ msgid ""
543
+ "Discount codes allow you to offer your memberships at discounted prices to select "
544
+ "customers."
545
+ msgstr ""
546
+
547
+ #: adminpages/discountcodes.php:603
548
+ msgid "Create your first discount code now"
549
+ msgstr "Luo ensimmäinen alennuskoodisi nyt"
550
+
551
+ #: adminpages/discountcodes.php:648 adminpages/membershiplevels.php:660
552
+ #: adminpages/orders.php:989
553
+ msgid "edit"
554
+ msgstr "muokkaa"
555
+
556
+ #: adminpages/discountcodes.php:651
557
+ #, php-format
558
+ msgid ""
559
+ "Are you sure you want to delete the %s discount code? The subscriptions for "
560
+ "existing users will not change, but new users will not be able to use this code "
561
+ "anymore."
562
+ msgstr ""
563
+
564
+ #: adminpages/discountcodes.php:651 adminpages/membershiplevels.php:660
565
+ #: adminpages/orders.php:995
566
+ msgid "delete"
567
+ msgstr "poista"
568
+
569
+ #: adminpages/emailsettings.php:69 includes/adminpages.php:50
570
+ #: includes/adminpages.php:132
571
+ msgid "Email Settings"
572
+ msgstr "Sähköpostiasetukset"
573
+
574
+ #: adminpages/emailsettings.php:70
575
+ msgid ""
576
+ "By default, system generated emails are sent from <em><strong>wordpress@yourdomain."
577
+ "com</strong></em>. You can update this from address using the fields below."
578
+ msgstr ""
579
+
580
+ #: adminpages/emailsettings.php:72
581
+ msgid ""
582
+ "To modify the appearance of system generated emails, add the files <em>email_header."
583
+ "html</em> and <em>email_footer.html</em> to your theme's directory. This will "
584
+ "modify both the WordPress default messages as well as messages generated by Paid "
585
+ "Memberships Pro. <a title=\"Paid Memberships Pro - Member Communications\" target="
586
+ "\"_blank\" href=\"http://www.paidmembershipspro.com/documentation/member-"
587
+ "communications/\">Click here to learn more about Paid Memberships Pro emails</a>."
588
+ msgstr ""
589
+
590
+ #: adminpages/emailsettings.php:78
591
+ msgid "From Email"
592
+ msgstr "Keneltä (sähköposti)"
593
+
594
+ #: adminpages/emailsettings.php:86
595
+ msgid "From Name"
596
+ msgstr "Kuka (nimi)"
597
+
598
+ #: adminpages/emailsettings.php:94
599
+ msgid "Only Filter PMPro Emails?"
600
+ msgstr "Filtteröi vain PMPro-Sähköposteja?"
601
+
602
+ #: adminpages/emailsettings.php:98
603
+ msgid "If unchecked, all emails from \"WordPress &lt;"
604
+ msgstr "Jos jätät tyhjäksi kaikki sähköpostit \"WordPress &lt;"
605
+
606
+ #: adminpages/emailsettings.php:115
607
+ msgid "Send the site admin emails"
608
+ msgstr "Lähetä sivuston ylläpitäjälle sähköpostia"
609
+
610
+ #: adminpages/emailsettings.php:121
611
+ msgid "Checkout"
612
+ msgstr "Kassa"
613
+
614
+ #: adminpages/emailsettings.php:125
615
+ msgid "when a member checks out."
616
+ msgstr "kun henkilö maksaa tilauksen."
617
+
618
+ #: adminpages/emailsettings.php:130
619
+ msgid "Admin Changes"
620
+ msgstr "Ylläpitäjä muuttaa"
621
+
622
+ #: adminpages/emailsettings.php:134
623
+ msgid "when an admin changes a user's membership level through the dashboard."
624
+ msgstr "kun ylläpitäjä muuttaa käyttäjän tilaajatason asetusvalikosta."
625
+
626
+ #: adminpages/emailsettings.php:139
627
+ msgid "Cancellation"
628
+ msgstr "Peruminen"
629
+
630
+ #: adminpages/emailsettings.php:143
631
+ msgid "when a user cancels his or her account."
632
+ msgstr "kun käyttäjä lopettaa tilinsä."
633
+
634
+ #: adminpages/emailsettings.php:148
635
+ msgid "Bill Updates"
636
+ msgstr "Tietojen muuttuminen"
637
+
638
+ #: adminpages/emailsettings.php:152
639
+ msgid "when a user updates his or her billing information."
640
+ msgstr "kun käyttäjä päivittää omia laskutustietojansa."
641
+
642
+ #: adminpages/emailsettings.php:158
643
+ msgid "Send members emails"
644
+ msgstr "Lähetä tilaajille sähköpostia"
645
+
646
+ #: adminpages/emailsettings.php:164
647
+ msgid "New Users"
648
+ msgstr "Uudet Käyttäjät"
649
+
650
+ #: adminpages/emailsettings.php:168
651
+ msgid ""
652
+ "Default WP notification email. (Recommended: Leave unchecked. Members will still "
653
+ "get an email confirmation from PMPro after checkout.)"
654
+ msgstr ""
655
+ "Wordpressin oletussähköposti. (Suositus: Jätä tyhjäksi. Tilaajat saavat "
656
+ "jokatapauksessa sähköpostin PMPro:lta maksamisen jälkeen."
657
+
658
+ #: adminpages/membershiplevels.php:120
659
+ msgid "Membership level updated successfully."
660
+ msgstr "Tilaajataso uusittiin onnistuneesti"
661
+
662
+ #: adminpages/membershiplevels.php:126
663
+ msgid "Error updating membership level."
664
+ msgstr "Virhe päivitettäessä tilaajatasoa"
665
+
666
+ #: adminpages/membershiplevels.php:143
667
+ msgid "Membership level added successfully."
668
+ msgstr ""
669
+
670
+ #: adminpages/membershiplevels.php:148
671
+ msgid "Error adding membership level."
672
+ msgstr ""
673
+
674
+ #: adminpages/membershiplevels.php:183
675
+ #, php-format
676
+ msgid ""
677
+ "There was an error canceling the subscription for user with ID=%d. You will want to "
678
+ "check your payment gateway to see if their subscription is still active."
679
+ msgstr ""
680
+
681
+ #: adminpages/membershiplevels.php:186
682
+ msgid "Last Invoice"
683
+ msgstr "Viimeisin lasku"
684
+
685
+ #: adminpages/membershiplevels.php:200
686
+ msgid "Membership level deleted successfully."
687
+ msgstr "Tilaajataso poistettiin onnistuneesti."
688
+
689
+ #: adminpages/membershiplevels.php:205 adminpages/membershiplevels.php:211
690
+ msgid "Error deleting membership level."
691
+ msgstr "Virhe poistettaessa tilaajatasoa."
692
+
693
+ #: adminpages/membershiplevels.php:226
694
+ msgid "Edit Membership Level"
695
+ msgstr "Muokkaa Tilaajatasoa"
696
+
697
+ #: adminpages/membershiplevels.php:228
698
+ msgid "Add New Membership Level"
699
+ msgstr "Lisää uusi Tilaajataso"
700
+
701
+ #: adminpages/membershiplevels.php:295 adminpages/membershiplevels.php:584
702
+ #: adminpages/reports/login.php:144
703
+ msgid "Name"
704
+ msgstr "Nimi"
705
+
706
+ #: adminpages/membershiplevels.php:300
707
+ msgid "Description"
708
+ msgstr "Kuvaus"
709
+
710
+ #: adminpages/membershiplevels.php:318
711
+ msgid "Confirmation Message"
712
+ msgstr "Vahvistusviesti"
713
+
714
+ #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:585
715
+ msgid "Billing Details"
716
+ msgstr "Laskutuksen asetukset"
717
+
718
+ #: adminpages/membershiplevels.php:372
719
+ #: classes/gateways/class.pmprogateway_stripe.php:620
720
+ msgid "per"
721
+ msgstr ""
722
+
723
+ #: adminpages/membershiplevels.php:387
724
+ msgid ""
725
+ "Stripe integration currently only supports billing periods of \"Week\", \"Month\" "
726
+ "or \"Year\"."
727
+ msgstr ""
728
+
729
+ #: adminpages/membershiplevels.php:389
730
+ msgid ""
731
+ "Braintree integration currently only supports billing periods of \"Month\" or \"Year"
732
+ "\"."
733
+ msgstr ""
734
+
735
+ #: adminpages/membershiplevels.php:391
736
+ msgid ""
737
+ "Payflow integration currently only supports billing frequencies of 1 and billing "
738
+ "periods of \"Week\", \"Month\" or \"Year\"."
739
+ msgstr ""
740
+
741
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:397
742
+ #: classes/gateways/class.pmprogateway_cybersource.php:101
743
+ #: classes/gateways/class.pmprogateway_paypal.php:118
744
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:123
745
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:117
746
+ msgid "Note"
747
+ msgstr "Huomio"
748
+
749
+ #: adminpages/membershiplevels.php:395
750
+ msgid ""
751
+ "After saving this level, make note of the ID and create a \"Plan\" in your "
752
+ "Braintree dashboard with the same settings and the \"Plan ID\" set to <em>pmpro_#</"
753
+ "em>, where # is the level ID."
754
+ msgstr ""
755
+
756
+ #: adminpages/membershiplevels.php:397
757
+ msgid ""
758
+ "You will need to create a \"Plan\" in your Braintree dashboard with the same "
759
+ "settings and the \"Plan ID\" set to"
760
+ msgstr ""
761
+
762
+ #: adminpages/membershiplevels.php:409
763
+ msgid ""
764
+ "Stripe integration currently does not support billing limits. You can still set an "
765
+ "expiration date below."
766
+ msgstr ""
767
+
768
+ #: adminpages/membershiplevels.php:421
769
+ msgid ""
770
+ "2Checkout integration does not support custom trials. You can do one period trials "
771
+ "by setting an initial payment different from the billing amount."
772
+ msgstr ""
773
+
774
+ #: adminpages/membershiplevels.php:443
775
+ msgid "Stripe integration currently does not support trial amounts greater than $0."
776
+ msgstr ""
777
+
778
+ #: adminpages/membershiplevels.php:447
779
+ msgid ""
780
+ "Braintree integration currently does not support trial amounts greater than $0."
781
+ msgstr ""
782
+
783
+ #: adminpages/membershiplevels.php:451
784
+ msgid "Payflow integration currently does not support trial amounts greater than $0."
785
+ msgstr ""
786
+
787
+ #: adminpages/membershiplevels.php:460
788
+ msgid "Other Settings"
789
+ msgstr "Muut Asetukset"
790
+
791
+ #: adminpages/membershiplevels.php:464
792
+ msgid "Disable New Signups"
793
+ msgstr "Ota Rekisteröityminen pois käytöstä"
794
+
795
+ #: adminpages/membershiplevels.php:465
796
+ msgid ""
797
+ "Check to hide this level from the membership levels page and disable registration."
798
+ msgstr "Valitse piilottaaksesi tason tilaajatasosivulta ja estääksesi rekisteröinnin."
799
+
800
+ #: adminpages/membershiplevels.php:495
801
+ msgid "Content Settings"
802
+ msgstr "Sisältöasetukset"
803
+
804
+ #: adminpages/membershiplevels.php:499
805
+ msgid "Categories"
806
+ msgstr "Kategoriat"
807
+
808
+ #: adminpages/membershiplevels.php:516
809
+ msgid "Save Level"
810
+ msgstr "Tallenna taso"
811
+
812
+ #: adminpages/membershiplevels.php:517 adminpages/orders.php:561
813
+ #: pages/billing.php:339 pages/cancel.php:71 shortcodes/pmpro_account.php:70
814
+ msgid "Cancel"
815
+ msgstr "Peruuta"
816
+
817
+ #: adminpages/membershiplevels.php:569
818
+ msgid "Add New Level"
819
+ msgstr "Lisää uusi taso"
820
+
821
+ #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:575
822
+ msgid "Search Levels"
823
+ msgstr "Etsi tasoja"
824
+
825
+ #: adminpages/membershiplevels.php:579
826
+ msgid "Drag and drop membership levels to reorder them on the Levels page."
827
+ msgstr "Vedä ja pudota tilaajatasot uudelleen järjestääksesi ne Tilaajataso sivulla."
828
+
829
+ #: adminpages/membershiplevels.php:586 pages/cancel.php:53 pages/confirmation.php:83
830
+ #: pages/invoice.php:70 shortcodes/pmpro_account.php:46
831
+ msgid "Expiration"
832
+ msgstr "Päättymispäivä"
833
+
834
+ #: adminpages/membershiplevels.php:587
835
+ msgid "Allow Signups"
836
+ msgstr "Salli rekisteröityminen"
837
+
838
+ #: adminpages/membershiplevels.php:646
839
+ msgid "FREE"
840
+ msgstr "ILMAINEN"
841
+
842
+ #: adminpages/membershiplevels.php:655
843
+ msgid "After"
844
+ msgstr "Jälkeen"
845
+
846
+ #: adminpages/membershiplevels.php:660 adminpages/orders.php:992
847
+ msgid "copy"
848
+ msgstr "kopioi"
849
+
850
+ #: adminpages/memberslist.php:25 includes/adminpages.php:53
851
+ #: includes/adminpages.php:153
852
+ msgid "Members List"
853
+ msgstr "Tilaajalista"
854
+
855
+ #: adminpages/memberslist.php:26 adminpages/orders.php:591
856
+ msgid "Export to CSV"
857
+ msgstr "Vie CSV:hen"
858
+
859
+ #: adminpages/memberslist.php:30
860
+ msgid "Show"
861
+ msgstr "Näytä"
862
+
863
+ #: adminpages/memberslist.php:32 adminpages/reports/login.php:69
864
+ #: adminpages/reports/memberships.php:317 adminpages/reports/sales.php:216
865
+ msgid "All Levels"
866
+ msgstr "Kaikki tasot"
867
+
868
+ #: adminpages/memberslist.php:42
869
+ msgid "Cancelled Members"
870
+ msgstr "Perutut tilaajat"
871
+
872
+ #: adminpages/memberslist.php:43
873
+ msgid "Expired Members"
874
+ msgstr "Vanhentuneet tilaajat"
875
+
876
+ #: adminpages/memberslist.php:44
877
+ msgid "Old Members"
878
+ msgstr "Vanhat Tilaajat"
879
+
880
+ #: adminpages/memberslist.php:49 adminpages/memberslist.php:52
881
+ msgid "Search Members"
882
+ msgstr "Etsi Tilaajia"
883
+
884
+ #: adminpages/memberslist.php:156
885
+ #, php-format
886
+ msgid "%d members found."
887
+ msgstr "%d tilaajaa löytyi."
888
+
889
+ #: adminpages/memberslist.php:165 pages/checkout.php:180
890
+ #: shortcodes/pmpro_account.php:105
891
+ msgid "Username"
892
+ msgstr "Käyttäjänimi"
893
+
894
+ #: adminpages/memberslist.php:166
895
+ msgid "First&nbsp;Name"
896
+ msgstr "Etunimi"
897
+
898
+ #: adminpages/memberslist.php:167
899
+ msgid "Last&nbsp;Name"
900
+ msgstr "Sukunimi"
901
+
902
+ #: adminpages/memberslist.php:170 pages/billing.php:71 pages/checkout.php:311
903
+ #: pages/confirmation.php:61 pages/invoice.php:48
904
+ msgid "Billing Address"
905
+ msgstr "Laskutusosoite"
906
+
907
+ #: adminpages/memberslist.php:171 adminpages/reports/login.php:145
908
+ #: classes/gateways/class.pmprogateway_authorizenet.php:303
909
+ msgid "Membership"
910
+ msgstr "Tilaaja"
911
+
912
+ #: adminpages/memberslist.php:172
913
+ msgid "Fee"
914
+ msgstr "Maksu"
915
+
916
+ #: adminpages/memberslist.php:173 adminpages/reports/login.php:146
917
+ msgid "Joined"
918
+ msgstr "Liittyi"
919
+
920
+ #: adminpages/memberslist.php:177
921
+ msgid "Ended"
922
+ msgstr "Päättynyt"
923
+
924
+ #: adminpages/memberslist.php:261 adminpages/reports/login.php:212
925
+ msgid "No members found."
926
+ msgstr "Tilaajia ei löytynyt."
927
+
928
+ #: adminpages/memberslist.php:261 adminpages/reports/login.php:212
929
+ msgid "Search all levels"
930
+ msgstr "Etsi kaikista tasoista"
931
+
932
+ #: adminpages/orders.php:67
933
+ msgid "Order deleted successfully."
934
+ msgstr "Tilaus poistettu onnistuneesti."
935
+
936
+ #: adminpages/orders.php:72
937
+ msgid "Error deleting order."
938
+ msgstr "Virhe tilauksen poistamisessa."
939
+
940
+ #: adminpages/orders.php:169
941
+ msgid "Order saved successfully."
942
+ msgstr "Tilaus tallennettiin onnistuneesti."
943
+
944
+ #: adminpages/orders.php:174
945
+ msgid "Error updating order timestamp."
946
+ msgstr ""
947
+
948
+ #: adminpages/orders.php:180
949
+ msgid "Error saving order."
950
+ msgstr "Tilauksen tallentamisessa tapahtui virhe"
951
+
952
+ #: adminpages/orders.php:245
953
+ msgid "Order"
954
+ msgstr "Tilaus"
955
+
956
+ #: adminpages/orders.php:247
957
+ msgid "New Order"
958
+ msgstr "Uusi tilaus"
959
+
960
+ #: adminpages/orders.php:270
961
+ msgid "Randomly generated for you."
962
+ msgstr "Satunnaisesti luotu sinulle."
963
+
964
+ #: adminpages/orders.php:275
965
+ msgid "User ID"
966
+ msgstr "Käyttäjän ID"
967
+
968
+ #: adminpages/orders.php:284
969
+ msgid "Membership Level ID"
970
+ msgstr "Tilaajatason ID"
971
+
972
+ #: adminpages/orders.php:293
973
+ msgid "Billing Name"
974
+ msgstr "Laskutuksen Nimi"
975
+
976
+ #: adminpages/orders.php:301
977
+ msgid "Billing Street"
978
+ msgstr "Laskutuksen Osoite"
979
+
980
+ #: adminpages/orders.php:308
981
+ msgid "Billing City"
982
+ msgstr "Laskutuksen Kaupunki"
983
+
984
+ #: adminpages/orders.php:315
985
+ msgid "Billing State"
986
+ msgstr "Laskutuksen Maakunta"
987
+
988
+ #: adminpages/orders.php:322
989
+ msgid "Billing Postal Code"
990
+ msgstr "Laskutuksen Postinumero"
991
+
992
+ #: adminpages/orders.php:329
993
+ msgid "Billing Country"
994
+ msgstr "Laskutuksen Maa"
995
+
996
+ #: adminpages/orders.php:337
997
+ msgid "Billing Phone"
998
+ msgstr "Laskutuksen Puhelinnumero"
999
+
1000
+ #: adminpages/orders.php:346
1001
+ msgid "Sub Total"
1002
+ msgstr "Välisumma"
1003
+
1004
+ #: adminpages/orders.php:354 pages/invoice.php:80
1005
+ msgid "Tax"
1006
+ msgstr "Vero"
1007
+
1008
+ #: adminpages/orders.php:362
1009
+ msgid "Coupon Amount"
1010
+ msgstr "Alennuskuponki"
1011
+
1012
+ #: adminpages/orders.php:370 adminpages/orders.php:915 pages/invoice.php:84
1013
+ msgid "Total"
1014
+ msgstr "Yhteensä"
1015
+
1016
+ #: adminpages/orders.php:375
1017
+ msgid "Should be subtotal + tax - couponamount."
1018
+ msgstr "Pitäisi olla Välisumma + verot - alennuskuponki."
1019
+
1020
+ #: adminpages/orders.php:380
1021
+ msgid "Payment Type"
1022
+ msgstr "Maksutyyppi"
1023
+
1024
+ #: adminpages/orders.php:385
1025
+ msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
1026
+ msgstr "kuten. PayPal Express, PayPal Standard, Luottokortti."
1027
+
1028
+ #: adminpages/orders.php:389 classes/gateways/class.pmprogateway_braintree.php:304
1029
+ #: classes/gateways/class.pmprogateway_stripe.php:409 pages/billing.php:247
1030
+ #: pages/checkout.php:516
1031
+ msgid "Card Type"
1032
+ msgstr "Korttityyppi"
1033
+
1034
+ #: adminpages/orders.php:394
1035
+ msgid "e.g. Visa, MasterCard, AMEX, etc"
1036
+ msgstr "kuten. Visa, MasterCard, jne"
1037
+
1038
+ #: adminpages/orders.php:398 classes/gateways/class.pmprogateway_twocheckout.php:148
1039
+ msgid "Account Number"
1040
+ msgstr "Tilinumero"
1041
+
1042
+ #: adminpages/orders.php:403
1043
+ msgid "Obscure all but last 4 digits."
1044
+ msgstr "Piilotettuna, paitsi 4 viimeistä numeroa."
1045
+
1046
+ #: adminpages/orders.php:408
1047
+ msgid "Expiration Month"
1048
+ msgstr "Vanhentumiskuukausi"
1049
+
1050
+ #: adminpages/orders.php:415
1051
+ msgid "Expiration Year"
1052
+ msgstr "Vanhentumisvuosi"
1053
+
1054
+ #: adminpages/orders.php:423 adminpages/orders.php:919
1055
+ msgid "Status"
1056
+ msgstr "Tila"
1057
+
1058
+ #: adminpages/orders.php:444 adminpages/orders.php:917
1059
+ msgid "Gateway"
1060
+ msgstr "Maksuväylä"
1061
+
1062
+ #: adminpages/orders.php:462 adminpages/paymentsettings.php:124
1063
+ msgid "Gateway Environment"
1064
+ msgstr "Maksuväylän Ympäristö"
1065
+
1066
+ #: adminpages/orders.php:466 adminpages/paymentsettings.php:128
1067
+ msgid "Sandbox/Testing"
1068
+ msgstr "Sandbox / Testaus"
1069
+
1070
+ #: adminpages/orders.php:467 adminpages/paymentsettings.php:129
1071
+ msgid "Live/Production"
1072
+ msgstr "Live/Tuotanto"
1073
+
1074
+ #: adminpages/orders.php:474
1075
+ msgid "Payment Transaction ID"
1076
+ msgstr "Maksu transaktion ID"
1077
+
1078
+ #: adminpages/orders.php:479
1079
+ msgid "Generated by the gateway. Useful to cross reference orders."
1080
+ msgstr ""
1081
+ "Maksuväylän generoima. Hyödyllinen tekemään ristikkäisiä viittauksia tilauksien "
1082
+ "välillä."
1083
+
1084
+ #: adminpages/orders.php:483
1085
+ msgid "Subscription Transaction ID"
1086
+ msgstr ""
1087
+
1088
+ #: adminpages/orders.php:488
1089
+ msgid "Generated by the gateway. Useful to cross reference subscriptions."
1090
+ msgstr ""
1091
+
1092
+ #: adminpages/orders.php:493 adminpages/orders.php:920 pages/invoice.php:107
1093
+ #: shortcodes/pmpro_account.php:122
1094
+ msgid "Date"
1095
+ msgstr "Päiväys"
1096
+
1097
+ #: adminpages/orders.php:527
1098
+ msgid "Affiliate ID"
1099
+ msgstr ""
1100
+
1101
+ #: adminpages/orders.php:535
1102
+ msgid "Affiliate SubID"
1103
+ msgstr ""
1104
+
1105
+ #: adminpages/orders.php:545
1106
+ msgid "Notes"
1107
+ msgstr "Muistiinpanot"
1108
+
1109
+ #: adminpages/orders.php:560
1110
+ msgid "Save Order"
1111
+ msgstr "Tallenna Tilaus"
1112
+
1113
+ #: adminpages/orders.php:570 includes/adminpages.php:55 includes/adminpages.php:167
1114
+ msgid "Orders"
1115
+ msgstr "Tilaukset"
1116
+
1117
+ #: adminpages/orders.php:571
1118
+ msgid "Add New Order"
1119
+ msgstr "Lisää Uusi Tilaus"
1120
+
1121
+ #: adminpages/orders.php:603
1122
+ msgctxt "Dropdown label, e.g. Show Daily Orders for January"
1123
+ msgid "Show"
1124
+ msgstr ""
1125
+
1126
+ #: adminpages/orders.php:605
1127
+ msgid "All"
1128
+ msgstr "Kaikki"
1129
+
1130
+ #: adminpages/orders.php:606
1131
+ msgid "Within a Date Range"
1132
+ msgstr "Ajanjakson sisällä"
1133
+
1134
+ #: adminpages/orders.php:607
1135
+ msgid "Predefined Date Range"
1136
+ msgstr "Määritelty ajanjakso"
1137
+
1138
+ #: adminpages/orders.php:608
1139
+ msgid "Within a Level"
1140
+ msgstr ""
1141
+
1142
+ #: adminpages/orders.php:609
1143
+ msgid "Within a Status"
1144
+ msgstr ""
1145
+
1146
+ #: adminpages/orders.php:612
1147
+ msgctxt "Dropdown label"
1148
+ msgid "From"
1149
+ msgstr "Lähettäjä"
1150
+
1151
+ #: adminpages/orders.php:624
1152
+ msgctxt "Dropdown label"
1153
+ msgid "To"
1154
+ msgstr "Minne"
1155
+
1156
+ #: adminpages/orders.php:636
1157
+ msgctxt "Dropdown label"
1158
+ msgid "filter by "
1159
+ msgstr ""
1160
+
1161
+ #: adminpages/orders.php:674
1162
+ msgctxt "Submit button value."
1163
+ msgid "Filter"
1164
+ msgstr ""
1165
+
1166
+ #: adminpages/orders.php:777 adminpages/orders.php:780
1167
+ msgid "Search Orders"
1168
+ msgstr "Etsi tilauksista"
1169
+
1170
+ #: adminpages/orders.php:903
1171
+ #, php-format
1172
+ msgid "%d orders found."
1173
+ msgstr "%d tilausta löytyi."
1174
+
1175
+ #: adminpages/orders.php:912 adminpages/reports/login.php:143
1176
+ #: classes/gateways/class.pmprogateway_payflowpro.php:116
1177
+ msgid "User"
1178
+ msgstr "Käyttäjä"
1179
+
1180
+ #: adminpages/orders.php:914 includes/init.php:222 includes/profile.php:27
1181
+ #: pages/checkout.php:42 pages/confirmation.php:47 pages/confirmation.php:64
1182
+ #: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
1183
+ msgid "Membership Level"
1184
+ msgstr "Tilaajataso"
1185
+
1186
+ #: adminpages/orders.php:916 adminpages/orders.php:982
1187
+ msgid "Payment"
1188
+ msgstr "Maksu"
1189
+
1190
+ #: adminpages/orders.php:918
1191
+ msgid "Transaction IDs"
1192
+ msgstr "Maksutapahtumat"
1193
+
1194
+ #: adminpages/orders.php:943
1195
+ msgid "deleted"
1196
+ msgstr "poistettu"
1197
+
1198
+ #: adminpages/orders.php:984
1199
+ msgid "Subscription"
1200
+ msgstr "Tilaus"
1201
+
1202
+ #: adminpages/orders.php:995
1203
+ #, php-format
1204
+ msgid ""
1205
+ "Deleting orders is permanent and can affect active users. Are you sure you want to "
1206
+ "delete order %s?"
1207
+ msgstr ""
1208
+ "Tilauksien poistaminen on lopullista ja saattaa vaikuttaa aktiivisiin käyttäjiin. "
1209
+ "Haluatko varmasti poistaa tilauksen %s?"
1210
+
1211
+ #: adminpages/orders.php:1005
1212
+ msgid "No orders found."
1213
+ msgstr "Tilauksia ei löytynyt."
1214
+
1215
+ #: adminpages/pagesettings.php:51
1216
+ msgid "Membership Account"
1217
+ msgstr ""
1218
+
1219
+ #: adminpages/pagesettings.php:54
1220
+ msgid "Membership Billing"
1221
+ msgstr ""
1222
+
1223
+ #: adminpages/pagesettings.php:57
1224
+ msgid "Membership Cancel"
1225
+ msgstr ""
1226
+
1227
+ #: adminpages/pagesettings.php:60
1228
+ msgid "Membership Checkout"
1229
+ msgstr ""
1230
+
1231
+ #: adminpages/pagesettings.php:63
1232
+ msgid "Membership Confirmation"
1233
+ msgstr ""
1234
+
1235
+ #: adminpages/pagesettings.php:66
1236
+ msgid "Membership Invoice"
1237
+ msgstr ""
1238
+
1239
+ #: adminpages/pagesettings.php:73
1240
+ #, php-format
1241
+ msgid "Membership %s"
1242
+ msgstr ""
1243
+
1244
+ #: adminpages/pagesettings.php:111
1245
+ msgid "The following pages have been created for you"
1246
+ msgstr ""
1247
+
1248
+ #: adminpages/pagesettings.php:126
1249
+ msgid ""
1250
+ "Manage the WordPress pages assigned to each required Paid Memberships Pro page."
1251
+ msgstr ""
1252
+
1253
+ #: adminpages/pagesettings.php:132
1254
+ msgid "Assign the WordPress pages for each required Paid Memberships Pro page or"
1255
+ msgstr ""
1256
+
1257
+ #: adminpages/pagesettings.php:132
1258
+ msgid "click here to let us generate them for you"
1259
+ msgstr "klikkaa tästä generoidaksesi ne"
1260
+
1261
+ #: adminpages/pagesettings.php:140
1262
+ msgid "Account Page"
1263
+ msgstr "Käyttäjätilisivu"
1264
+
1265
+ #: adminpages/pagesettings.php:144 adminpages/pagesettings.php:159
1266
+ #: adminpages/pagesettings.php:174 adminpages/pagesettings.php:190
1267
+ #: adminpages/pagesettings.php:206 adminpages/pagesettings.php:222
1268
+ #: adminpages/pagesettings.php:238
1269
+ msgid "Choose One"
1270
+ msgstr "Valitse yksi"
1271
+
1272
+ #: adminpages/pagesettings.php:147 adminpages/pagesettings.php:162
1273
+ #: adminpages/pagesettings.php:177 adminpages/pagesettings.php:193
1274
+ #: adminpages/pagesettings.php:209 adminpages/pagesettings.php:225
1275
+ #: adminpages/pagesettings.php:241
1276
+ msgid "edit page"
1277
+ msgstr "muokkaa sivua"
1278
+
1279
+ #: adminpages/pagesettings.php:149 adminpages/pagesettings.php:164
1280
+ #: adminpages/pagesettings.php:179 adminpages/pagesettings.php:195
1281
+ #: adminpages/pagesettings.php:211 adminpages/pagesettings.php:227
1282
+ #: adminpages/pagesettings.php:243
1283
+ msgid "view page"
1284
+ msgstr "näytä sivu"
1285
+
1286
+ #: adminpages/pagesettings.php:151 adminpages/pagesettings.php:166
1287
+ #: adminpages/pagesettings.php:181 adminpages/pagesettings.php:197
1288
+ #: adminpages/pagesettings.php:213 adminpages/pagesettings.php:229
1289
+ #: adminpages/pagesettings.php:245
1290
+ msgid "Include the shortcode"
1291
+ msgstr "\t"
1292
+
1293
+ #: adminpages/pagesettings.php:155
1294
+ msgid "Billing Information Page"
1295
+ msgstr "Laskutustietosivu"
1296
+
1297
+ #: adminpages/pagesettings.php:170
1298
+ msgid "Cancel Page"
1299
+ msgstr "Peruutussivu"
1300
+
1301
+ #: adminpages/pagesettings.php:186
1302
+ msgid "Checkout Page"
1303
+ msgstr "Maksusivu"
1304
+
1305
+ #: adminpages/pagesettings.php:202
1306
+ msgid "Confirmation Page"
1307
+ msgstr "Vahvistussivu"
1308
+
1309
+ #: adminpages/pagesettings.php:218
1310
+ msgid "Invoice Page"
1311
+ msgstr "Ostoskorisivu"
1312
+
1313
+ #: adminpages/pagesettings.php:234
1314
+ msgid "Levels Page"
1315
+ msgstr "Tilaajatasosivu"
1316
+
1317
+ #: adminpages/paymentsettings.php:49
1318
+ msgid "Your payment settings have been updated."
1319
+ msgstr "Maksuasetuksesi on päivitetty."
1320
+
1321
+ #: adminpages/paymentsettings.php:93 adminpages/paymentsettings.php:106
1322
+ msgid "Payment Gateway"
1323
+ msgstr "Maksuväylä"
1324
+
1325
+ #: adminpages/paymentsettings.php:93
1326
+ msgid "SSL Settings"
1327
+ msgstr "SSL-asetukset"
1328
+
1329
+ #: adminpages/paymentsettings.php:95
1330
+ msgid ""
1331
+ "Learn more about <a title=\"Paid Memberships Pro - SSL Settings\" target=\"_blank\" "
1332
+ "href=\"http://www.paidmembershipspro.com/support/initial-plugin-setup/ssl/\">SSL</"
1333
+ "a> or <a title=\"Paid Memberships Pro - Payment Gateway Settings\" target=\"_blank"
1334
+ "\" href=\"http://www.paidmembershipspro.com/support/initial-plugin-setup/payment-"
1335
+ "gateway/\">Payment Gateway Settings</a>."
1336
+ msgstr ""
1337
+
1338
+ #: adminpages/paymentsettings.php:153
1339
+ msgid "Currency"
1340
+ msgstr "Valuutta"
1341
+
1342
+ #: adminpages/paymentsettings.php:169
1343
+ msgid ""
1344
+ "Not all currencies will be supported by every gateway. Please check with your "
1345
+ "gateway."
1346
+ msgstr ""
1347
+
1348
+ #: adminpages/paymentsettings.php:174
1349
+ msgid "Accepted Credit Card Types"
1350
+ msgstr ""
1351
+
1352
+ #: adminpages/paymentsettings.php:188
1353
+ msgid "Sales Tax"
1354
+ msgstr "ALV"
1355
+
1356
+ #: adminpages/paymentsettings.php:188 pages/billing.php:91
1357
+ msgid "optional"
1358
+ msgstr "vapaavalintainen"
1359
+
1360
+ #: adminpages/paymentsettings.php:191
1361
+ msgid "Tax State"
1362
+ msgstr "Veroalue (ei merkitystä Suomessa)"
1363
+
1364
+ #: adminpages/paymentsettings.php:192
1365
+ msgid "abbreviation, e.g. \"PA\""
1366
+ msgstr ""
1367
+
1368
+ #: adminpages/paymentsettings.php:194
1369
+ msgid "decimal, e.g. \"0.06\""
1370
+ msgstr "desimaaliluku, esim \"0.24\""
1371
+
1372
+ #: adminpages/paymentsettings.php:195
1373
+ msgid ""
1374
+ "US only. If values are given, tax will be applied for any members ordering from the "
1375
+ "selected state.<br />For non-US or more complex tax rules, use the <a target="
1376
+ "\"_blank\" href=\"http://www.paidmembershipspro.com/2013/10/non-us-taxes-paid-"
1377
+ "memberships-pro/\">pmpro_tax filter</a>."
1378
+ msgstr ""
1379
+
1380
+ #: adminpages/paymentsettings.php:206
1381
+ msgid "Force SSL"
1382
+ msgstr "Pakota SSL"
1383
+
1384
+ #: adminpages/paymentsettings.php:212
1385
+ msgid "Yes (with JavaScript redirects)"
1386
+ msgstr "Kyllä (javascript uudelleenohjauksilla)"
1387
+
1388
+ #: adminpages/paymentsettings.php:219
1389
+ msgid "SSL Seal Code"
1390
+ msgstr "SSL Varmenteen kuvake"
1391
+
1392
+ #: adminpages/paymentsettings.php:228
1393
+ msgid "Extra HTTPS URL Filter"
1394
+ msgstr ""
1395
+
1396
+ #: adminpages/paymentsettings.php:231
1397
+ msgid ""
1398
+ "Pass all generated HTML through a URL filter to add HTTPS to URLs used on secure "
1399
+ "pages. Check this if you are using SSL and have warnings on your checkout pages."
1400
+ msgstr ""
1401
+
1402
+ #: adminpages/reports.php:40
1403
+ msgid "Details"
1404
+ msgstr ""
1405
+
1406
+ #: adminpages/reports/login.php:16
1407
+ msgid "Visits, Views, and Logins"
1408
+ msgstr ""
1409
+
1410
+ #: adminpages/reports/login.php:27
1411
+ msgid "Visits Today"
1412
+ msgstr "Käyntiä tänään"
1413
+
1414
+ #: adminpages/reports/login.php:28 adminpages/reports/login.php:149
1415
+ msgid "Visits This Month"
1416
+ msgstr "Käyntiä tässä kuussa"
1417
+
1418
+ #: adminpages/reports/login.php:29
1419
+ msgid "Visits All Time"
1420
+ msgstr "Käynnit kaikkiaan"
1421
+
1422
+ #: adminpages/reports/login.php:32
1423
+ msgid "Views Today"
1424
+ msgstr "Katseluja tänään"
1425
+
1426
+ #: adminpages/reports/login.php:33 adminpages/reports/login.php:151
1427
+ msgid "Views This Month"
1428
+ msgstr "Katseluja tässä kuussa"
1429
+
1430
+ #: adminpages/reports/login.php:34
1431
+ msgid "Views All Time"
1432
+ msgstr "Katseluja kaikkiaan"
1433
+
1434
+ #: adminpages/reports/login.php:37
1435
+ msgid "Logins Today"
1436
+ msgstr "Kirjautumiset tänään"
1437
+
1438
+ #: adminpages/reports/login.php:38 adminpages/reports/login.php:154
1439
+ msgid "Logins This Month"
1440
+ msgstr "Kirjautumiset tässä kuussa"
1441
+
1442
+ #: adminpages/reports/login.php:39
1443
+ msgid "Logins All Time"
1444
+ msgstr "Kirjautumiset kaikkiaan"
1445
+
1446
+ #: adminpages/reports/login.php:63
1447
+ msgid "Visits, Views, and Logins Report"
1448
+ msgstr "Raportti käynneistä, Katseluista ja kirjautumisista"
1449
+
1450
+ #: adminpages/reports/login.php:67
1451
+ msgctxt "Dropdown label, e.g. Show All Users"
1452
+ msgid "Show"
1453
+ msgstr "Näytä"
1454
+
1455
+ #: adminpages/reports/login.php:68
1456
+ msgid "All Users"
1457
+ msgstr "Kaikki Käyttäjät"
1458
+
1459
+ #: adminpages/reports/login.php:83
1460
+ msgctxt "Search form label"
1461
+ msgid "Search"
1462
+ msgstr "Etsi"
1463
+
1464
+ #: adminpages/reports/login.php:148
1465
+ msgid "Last Visit"
1466
+ msgstr "Viimeisin vierailu"
1467
+
1468
+ #: adminpages/reports/login.php:150
1469
+ msgid "Total Visits"
1470
+ msgstr "Vierailujen kokonaismäärä"
1471
+
1472
+ #: adminpages/reports/login.php:152
1473
+ msgid "Total Views"
1474
+ msgstr "Yhteensä Luettu"
1475
+
1476
+ #: adminpages/reports/login.php:153
1477
+ msgid "Last Login"
1478
+ msgstr "Viimeisin kirjautuminen"
1479
+
1480
+ #: adminpages/reports/login.php:155
1481
+ msgid "Total Logins"
1482
+ msgstr "Kirjautumisten kokonaismäärä"
1483
+
1484
+ #: adminpages/reports/memberships.php:18 adminpages/reports/memberships.php:288
1485
+ msgid "Membership Stats"
1486
+ msgstr "Tilaajien Tilastot"
1487
+
1488
+ #: adminpages/reports/memberships.php:48
1489
+ msgid "Signups"
1490
+ msgstr "Rekisteröitymiset"
1491
+
1492
+ #: adminpages/reports/memberships.php:50 adminpages/reports/memberships.php:69
1493
+ msgid "All Time"
1494
+ msgstr "Kaikkiaan"
1495
+
1496
+ #: adminpages/reports/memberships.php:54 adminpages/reports/memberships.php:73
1497
+ msgid "This Year"
1498
+ msgstr "Tänä vuonna"
1499
+
1500
+ #: adminpages/reports/memberships.php:58 adminpages/reports/memberships.php:77
1501
+ msgid "This Month"
1502
+ msgstr "Tässä kuussa"
1503
+
1504
+ #: adminpages/reports/memberships.php:62 adminpages/reports/memberships.php:81
1505
+ msgid "Today"
1506
+ msgstr "Tänään"
1507
+
1508
+ #: adminpages/reports/memberships.php:67
1509
+ msgid "Cancellations"
1510
+ msgstr "Peruutukset"
1511
+
1512
+ #: adminpages/reports/memberships.php:86
1513
+ msgid "Other Stats"
1514
+ msgstr "Muut tilastot"
1515
+
1516
+ #: adminpages/reports/memberships.php:88
1517
+ msgid "Monthly Recurring Revenue (MRR)"
1518
+ msgstr "Kuukausittainen jatkuva tulo"
1519
+
1520
+ #: adminpages/reports/memberships.php:92
1521
+ msgid "Cancellation Rate"
1522
+ msgstr "Perumisten suhde"
1523
+
1524
+ #: adminpages/reports/memberships.php:96
1525
+ msgid "Lifetime Value (LTV)"
1526
+ msgstr ""
1527
+
1528
+ #: adminpages/reports/memberships.php:292 adminpages/reports/sales.php:193
1529
+ msgctxt "Dropdown label, e.g. Show Daily Revenue for January"
1530
+ msgid "Show"
1531
+ msgstr "Näytä"
1532
+
1533
+ #: adminpages/reports/memberships.php:294 adminpages/reports/sales.php:195
1534
+ msgid "Daily"
1535
+ msgstr "Päivittäinen"
1536
+
1537
+ #: adminpages/reports/memberships.php:295 adminpages/reports/sales.php:196
1538
+ msgid "Monthly"
1539
+ msgstr "Kuukausittain"
1540
+
1541
+ #: adminpages/reports/memberships.php:296 adminpages/reports/sales.php:197
1542
+ msgid "Annual"
1543
+ msgstr "Vuosittain"
1544
+
1545
+ #: adminpages/reports/memberships.php:299
1546
+ msgid "Signups vs. Cancellations"
1547
+ msgstr "Rekisteröitymiset vs. Peruutukset"
1548
+
1549
+ #: adminpages/reports/memberships.php:304 adminpages/reports/memberships.php:315
1550
+ #: adminpages/reports/sales.php:203 adminpages/reports/sales.php:214
1551
+ msgctxt "Dropdown label, e.g. Show Daily Revenue for January"
1552
+ msgid "for"
1553
+ msgstr ""
1554
+
1555
+ #: adminpages/reports/memberships.php:331 adminpages/reports/sales.php:230
1556
+ msgctxt "Submit button value."
1557
+ msgid "Generate Report"
1558
+ msgstr ""
1559
+
1560
+ #: adminpages/reports/sales.php:18
1561
+ msgid "Sales and Revenue (Testing/Sandbox)"
1562
+ msgstr ""
1563
+
1564
+ #: adminpages/reports/sales.php:20 adminpages/reports/sales.php:189
1565
+ msgid "Sales and Revenue"
1566
+ msgstr ""
1567
+
1568
+ #: adminpages/reports/sales.php:200
1569
+ msgid "Revenue"
1570
+ msgstr ""
1571
+
1572
+ #: adminpages/reports/sales.php:201
1573
+ msgid "Sales"
1574
+ msgstr ""
1575
+
1576
+ #: classes/class.memberorder.php:644
1577
+ #, php-format
1578
+ msgid ""
1579
+ "There was an error canceling the subscription for user with ID=%s. You will want to "
1580
+ "check your payment gateway to see if their subscription is still active."
1581
+ msgstr ""
1582
+
1583
+ #: classes/class.pmproemail.php:37
1584
+ #, php-format
1585
+ msgid "An Email From %s"
1586
+ msgstr "Sähköposti %s"
1587
+
1588
+ #: classes/class.pmproemail.php:134
1589
+ #, php-format
1590
+ msgid "Your membership at %s has been CANCELLED"
1591
+ msgstr ""
1592
+
1593
+ #: classes/class.pmproemail.php:156
1594
+ #, php-format
1595
+ msgid "Membership for %s at %s has been CANCELLED"
1596
+ msgstr ""
1597
+
1598
+ #: classes/class.pmproemail.php:187
1599
+ #, php-format
1600
+ msgid "Your membership confirmation for %s"
1601
+ msgstr ""
1602
+
1603
+ #: classes/class.pmproemail.php:240 classes/class.pmproemail.php:249
1604
+ #: classes/class.pmproemail.php:258 classes/class.pmproemail.php:337
1605
+ #: classes/class.pmproemail.php:346 classes/class.pmproemail.php:657
1606
+ #: classes/gateways/class.pmprogateway_braintree.php:362
1607
+ #: classes/gateways/class.pmprogateway_stripe.php:496 pages/checkout.php:75
1608
+ #: pages/checkout.php:85 pages/checkout.php:603 pages/confirmation.php:52
1609
+ #: pages/invoice.php:33
1610
+ msgid "Discount Code"
1611
+ msgstr "Alennuskoodi"
1612
+
1613
+ #: classes/class.pmproemail.php:265 classes/class.pmproemail.php:358
1614
+ #: classes/class.pmproemail.php:663
1615
+ #, php-format
1616
+ msgid "This membership will expire on %s."
1617
+ msgstr ""
1618
+
1619
+ #: classes/class.pmproemail.php:287
1620
+ #, php-format
1621
+ msgid "Member Checkout for %s at %s"
1622
+ msgstr ""
1623
+
1624
+ #: classes/class.pmproemail.php:375
1625
+ #, php-format
1626
+ msgid "Your billing information has been udpated at %s"
1627
+ msgstr ""
1628
+
1629
+ #: classes/class.pmproemail.php:428
1630
+ #, php-format
1631
+ msgid "Billing information has been udpated for %s at %s"
1632
+ msgstr ""
1633
+
1634
+ #: classes/class.pmproemail.php:476
1635
+ #, php-format
1636
+ msgid "Membership Payment Failed at %s"
1637
+ msgstr ""
1638
+
1639
+ #: classes/class.pmproemail.php:522
1640
+ #, php-format
1641
+ msgid "Membership Payment Failed For %s at %s"
1642
+ msgstr ""
1643
+
1644
+ #: classes/class.pmproemail.php:569
1645
+ #, php-format
1646
+ msgid "Credit Card on File Expiring Soon at %s"
1647
+ msgstr ""
1648
+
1649
+ #: classes/class.pmproemail.php:617
1650
+ #, php-format
1651
+ msgid "INVOICE for %s membership"
1652
+ msgstr ""
1653
+
1654
+ #: classes/class.pmproemail.php:688
1655
+ #, php-format
1656
+ msgid "Your trial at %s is ending soon"
1657
+ msgstr ""
1658
+
1659
+ #: classes/class.pmproemail.php:722
1660
+ #, php-format
1661
+ msgid "Your membership at %s has ended"
1662
+ msgstr ""
1663
+
1664
+ #: classes/class.pmproemail.php:747
1665
+ #, php-format
1666
+ msgid "Your membership at %s will end soon"
1667
+ msgstr ""
1668
+
1669
+ #: classes/class.pmproemail.php:767
1670
+ #, php-format
1671
+ msgid "Your membership at %s has been changed"
1672
+ msgstr ""
1673
+
1674
+ #: classes/class.pmproemail.php:771 classes/class.pmproemail.php:809
1675
+ #, php-format
1676
+ msgid "The new level is %s"
1677
+ msgstr ""
1678
+
1679
+ #: classes/class.pmproemail.php:773
1680
+ msgid "Your membership has been cancelled"
1681
+ msgstr ""
1682
+
1683
+ #: classes/class.pmproemail.php:777 classes/class.pmproemail.php:815
1684
+ #, php-format
1685
+ msgid "This membership will expire on %s"
1686
+ msgstr ""
1687
+
1688
+ #: classes/class.pmproemail.php:781 classes/class.pmproemail.php:819
1689
+ msgid "This membership does not expire"
1690
+ msgstr ""
1691
+
1692
+ #: classes/class.pmproemail.php:805
1693
+ #, php-format
1694
+ msgid "Membership for %s at %s has been changed"
1695
+ msgstr ""
1696
+
1697
+ #: classes/class.pmproemail.php:811
1698
+ msgid "Membership has been cancelled"
1699
+ msgstr ""
1700
+
1701
+ #: classes/gateways/class.pmprogateway.php:55
1702
+ #: classes/gateways/class.pmprogateway_authorizenet.php:171
1703
+ #: classes/gateways/class.pmprogateway_check.php:193
1704
+ #: classes/gateways/class.pmprogateway_cybersource.php:171
1705
+ #: classes/gateways/class.pmprogateway_payflowpro.php:164
1706
+ #: classes/gateways/class.pmprogateway_paypal.php:247
1707
+ msgid "Unknown error: Authorization failed."
1708
+ msgstr ""
1709
+
1710
+ #: classes/gateways/class.pmprogateway.php:106
1711
+ #: classes/gateways/class.pmprogateway.php:111
1712
+ #: classes/gateways/class.pmprogateway.php:129
1713
+ #: classes/gateways/class.pmprogateway_authorizenet.php:222
1714
+ #: classes/gateways/class.pmprogateway_authorizenet.php:227
1715
+ #: classes/gateways/class.pmprogateway_authorizenet.php:244
1716
+ #: classes/gateways/class.pmprogateway_check.php:244
1717
+ #: classes/gateways/class.pmprogateway_check.php:249
1718
+ #: classes/gateways/class.pmprogateway_check.php:267
1719
+ #: classes/gateways/class.pmprogateway_cybersource.php:222
1720
+ #: classes/gateways/class.pmprogateway_cybersource.php:227
1721
+ #: classes/gateways/class.pmprogateway_cybersource.php:245
1722
+ #: classes/gateways/class.pmprogateway_payflowpro.php:187
1723
+ #: classes/gateways/class.pmprogateway_payflowpro.php:192
1724
+ #: classes/gateways/class.pmprogateway_paypal.php:270
1725
+ msgid "Unknown error: Payment failed."
1726
+ msgstr ""
1727
+
1728
+ #: classes/gateways/class.pmprogateway.php:113
1729
+ #: classes/gateways/class.pmprogateway_authorizenet.php:228
1730
+ #: classes/gateways/class.pmprogateway_check.php:251
1731
+ #: classes/gateways/class.pmprogateway_cybersource.php:229
1732
+ msgid ""
1733
+ "A partial payment was made that we could not void. Please contact the site owner "
1734
+ "immediately to correct this."
1735
+ msgstr ""
1736
+
1737
+ #: classes/gateways/class.pmprogateway_authorizenet.php:39
1738
+ #: paid-memberships-pro.php:123
1739
+ msgid "Authorize.net"
1740
+ msgstr ""
1741
+
1742
+ #: classes/gateways/class.pmprogateway_authorizenet.php:93
1743
+ msgid "Authorize.net Settings"
1744
+ msgstr ""
1745
+
1746
+ #: classes/gateways/class.pmprogateway_authorizenet.php:98
1747
+ msgid "Login Name"
1748
+ msgstr ""
1749
+
1750
+ #: classes/gateways/class.pmprogateway_authorizenet.php:106
1751
+ msgid "Transaction Key"
1752
+ msgstr ""
1753
+
1754
+ #: classes/gateways/class.pmprogateway_authorizenet.php:114
1755
+ msgid "Silent Post URL"
1756
+ msgstr ""
1757
+
1758
+ #: classes/gateways/class.pmprogateway_authorizenet.php:117
1759
+ msgid "To fully integrate with Authorize.net, be sure to set your Silent Post URL to"
1760
+ msgstr ""
1761
+
1762
+ #: classes/gateways/class.pmprogateway_authorizenet.php:908
1763
+ #: classes/gateways/class.pmprogateway_authorizenet.php:909
1764
+ msgid "Could not connect to Authorize.net"
1765
+ msgstr ""
1766
+
1767
+ #: classes/gateways/class.pmprogateway_braintree.php:76 paid-memberships-pro.php:124
1768
+ msgid "Braintree Payments"
1769
+ msgstr ""
1770
+
1771
+ #: classes/gateways/class.pmprogateway_braintree.php:132
1772
+ msgid "Braintree Settings"
1773
+ msgstr ""
1774
+
1775
+ #: classes/gateways/class.pmprogateway_braintree.php:137
1776
+ #: classes/gateways/class.pmprogateway_cybersource.php:106
1777
+ msgid "Merchant ID"
1778
+ msgstr ""
1779
+
1780
+ #: classes/gateways/class.pmprogateway_braintree.php:145
1781
+ msgid "Public Key"
1782
+ msgstr ""
1783
+
1784
+ #: classes/gateways/class.pmprogateway_braintree.php:153
1785
+ msgid "Private Key"
1786
+ msgstr ""
1787
+
1788
+ #: classes/gateways/class.pmprogateway_braintree.php:161
1789
+ msgid "Client-Side Encryption Key"
1790
+ msgstr ""
1791
+
1792
+ #: classes/gateways/class.pmprogateway_braintree.php:169
1793
+ #: classes/gateways/class.pmprogateway_stripe.php:182
1794
+ msgid "Web Hook URL"
1795
+ msgstr ""
1796
+
1797
+ #: classes/gateways/class.pmprogateway_braintree.php:173
1798
+ msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
1799
+ msgstr ""
1800
+
1801
+ #: classes/gateways/class.pmprogateway_braintree.php:283
1802
+ #: classes/gateways/class.pmprogateway_stripe.php:388 pages/checkout.php:494
1803
+ #, php-format
1804
+ msgid "We Accept %s"
1805
+ msgstr ""
1806
+
1807
+ #: classes/gateways/class.pmprogateway_braintree.php:283
1808
+ #: classes/gateways/class.pmprogateway_stripe.php:388 pages/checkout.php:494
1809
+ msgid "Payment Information"
1810
+ msgstr ""
1811
+
1812
+ #: classes/gateways/class.pmprogateway_braintree.php:316
1813
+ #: classes/gateways/class.pmprogateway_stripe.php:450 pages/billing.php:257
1814
+ #: pages/checkout.php:557
1815
+ msgid "Card Number"
1816
+ msgstr "Kortin numero"
1817
+
1818
+ #: classes/gateways/class.pmprogateway_braintree.php:353
1819
+ #: classes/gateways/class.pmprogateway_stripe.php:487 pages/billing.php:294
1820
+ #: pages/checkout.php:594
1821
+ msgctxt "Credit card security code, CVV/CCV/CVV2"
1822
+ msgid "CVV"
1823
+ msgstr ""
1824
+
1825
+ #: classes/gateways/class.pmprogateway_braintree.php:354
1826
+ #: classes/gateways/class.pmprogateway_stripe.php:488 pages/billing.php:295
1827
+ #: pages/checkout.php:595
1828
+ msgctxt "link to CVV help"
1829
+ msgid "what's this?"
1830
+ msgstr ""
1831
+
1832
+ #: classes/gateways/class.pmprogateway_braintree.php:364
1833
+ #: classes/gateways/class.pmprogateway_stripe.php:498 pages/checkout.php:87
1834
+ #: pages/checkout.php:605
1835
+ msgid "Apply"
1836
+ msgstr "Käytä"
1837
+
1838
+ #: classes/gateways/class.pmprogateway_braintree.php:419
1839
+ #: classes/gateways/class.pmprogateway_stripe.php:1026
1840
+ msgid "Unknown error: Initial payment failed."
1841
+ msgstr ""
1842
+
1843
+ #: classes/gateways/class.pmprogateway_braintree.php:478
1844
+ msgid "Error during settlement:"
1845
+ msgstr ""
1846
+
1847
+ #: classes/gateways/class.pmprogateway_braintree.php:487
1848
+ msgid "Error during charge:"
1849
+ msgstr ""
1850
+
1851
+ #: classes/gateways/class.pmprogateway_braintree.php:579
1852
+ msgid "Failed to update customer."
1853
+ msgstr ""
1854
+
1855
+ #: classes/gateways/class.pmprogateway_braintree.php:627
1856
+ msgid "Failed to create customer."
1857
+ msgstr ""
1858
+
1859
+ #: classes/gateways/class.pmprogateway_braintree.php:634
1860
+ msgid "Error creating customer record with Braintree:"
1861
+ msgstr ""
1862
+
1863
+ #: classes/gateways/class.pmprogateway_braintree.php:734
1864
+ msgid "Error subscribing customer to plan with Braintree:"
1865
+ msgstr ""
1866
+
1867
+ #: classes/gateways/class.pmprogateway_braintree.php:749
1868
+ msgid "Failed to subscribe with Braintree:"
1869
+ msgstr ""
1870
+
1871
+ #: classes/gateways/class.pmprogateway_braintree.php:787
1872
+ #: classes/gateways/class.pmprogateway_braintree.php:800
1873
+ #: classes/gateways/class.pmprogateway_braintree.php:807
1874
+ msgid "Could not find the subscription."
1875
+ msgstr ""
1876
+
1877
+ #: classes/gateways/class.pmprogateway_check.php:48 paid-memberships-pro.php:117
1878
+ msgid "Pay by Check"
1879
+ msgstr "Shekkimaksu"
1880
+
1881
+ #: classes/gateways/class.pmprogateway_check.php:100
1882
+ msgid "Pay by Check Settings"
1883
+ msgstr ""
1884
+
1885
+ #: classes/gateways/class.pmprogateway_check.php:105
1886
+ msgid "Instructions"
1887
+ msgstr "Ohjeistus"
1888
+
1889
+ #: classes/gateways/class.pmprogateway_check.php:109
1890
+ msgid ""
1891
+ "Who to write the check out to. Where to mail it. Shown on checkout, confirmation, "
1892
+ "and invoice pages."
1893
+ msgstr ""
1894
+ "Kenelle kirjoittaa shekki ja minne se postitetaan. Näytetään tilaamisen, "
1895
+ "tilausvahvistuksen ja ostoskorin yhteydessä."
1896
+
1897
+ #: classes/gateways/class.pmprogateway_cybersource.php:42
1898
+ msgid "CyberSource"
1899
+ msgstr ""
1900
+
1901
+ #: classes/gateways/class.pmprogateway_cybersource.php:96
1902
+ msgid "CyberSource Settings"
1903
+ msgstr ""
1904
+
1905
+ #: classes/gateways/class.pmprogateway_cybersource.php:101
1906
+ msgid ""
1907
+ "This gateway option is in beta. Some functionality may not be available. Please "
1908
+ "contact Paid Memberships Pro with any issues you run into. <strong>Please be sure "
1909
+ "to upgrade Paid Memberships Pro to the latest versions when available.</strong>"
1910
+ msgstr ""
1911
+
1912
+ #: classes/gateways/class.pmprogateway_cybersource.php:114
1913
+ msgid "Transaction Security Key"
1914
+ msgstr ""
1915
+
1916
+ #: classes/gateways/class.pmprogateway_payflowpro.php:39
1917
+ msgid "Payflow Pro/PayPal Pro"
1918
+ msgstr ""
1919
+
1920
+ #: classes/gateways/class.pmprogateway_payflowpro.php:95
1921
+ msgid "Payflow Pro Settings"
1922
+ msgstr ""
1923
+
1924
+ #: classes/gateways/class.pmprogateway_payflowpro.php:100
1925
+ msgid "Partner"
1926
+ msgstr "Yhteistyökumppani"
1927
+
1928
+ #: classes/gateways/class.pmprogateway_payflowpro.php:108
1929
+ msgid "Vendor"
1930
+ msgstr "Myyjä"
1931
+
1932
+ #: classes/gateways/class.pmprogateway_payflowpro.php:124 pages/checkout.php:189
1933
+ msgid "Password"
1934
+ msgstr "Salasana"
1935
+
1936
+ #: classes/gateways/class.pmprogateway_payflowpro.php:132
1937
+ msgid "IPN Handler"
1938
+ msgstr ""
1939
+
1940
+ #: classes/gateways/class.pmprogateway_payflowpro.php:137
1941
+ #, php-format
1942
+ msgid ""
1943
+ "Payflow does not use IPN. To sync recurring subscriptions, please see <a target="
1944
+ "\"_blank\" href=\"%s\">this addon</a>."
1945
+ msgstr ""
1946
+
1947
+ #: classes/gateways/class.pmprogateway_payflowpro.php:194
1948
+ #: classes/gateways/class.pmprogateway_paypal.php:277
1949
+ msgid ""
1950
+ "A partial payment was made that we could not refund. Please contact the site owner "
1951
+ "immediately to correct this."
1952
+ msgstr ""
1953
+
1954
+ #: classes/gateways/class.pmprogateway_paypal.php:57 paid-memberships-pro.php:120
1955
+ msgid "PayPal Website Payments Pro"
1956
+ msgstr ""
1957
+
1958
+ #: classes/gateways/class.pmprogateway_paypal.php:113
1959
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:118
1960
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:112
1961
+ msgid "PayPal Settings"
1962
+ msgstr ""
1963
+
1964
+ #: classes/gateways/class.pmprogateway_paypal.php:118
1965
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:123
1966
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:117
1967
+ msgid ""
1968
+ "We do not recommend using PayPal Standard. We suggest using PayPal Express, Website "
1969
+ "Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href="
1970
+ "\"http://www.paidmembershipspro.com/2013/09/read-using-paypal-standard-paid-"
1971
+ "memberships-pro/\">More information on why can be found here.</a>"
1972
+ msgstr ""
1973
+
1974
+ #: classes/gateways/class.pmprogateway_paypal.php:123
1975
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:128
1976
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:122
1977
+ msgid "Gateway Account Email"
1978
+ msgstr ""
1979
+
1980
+ #: classes/gateways/class.pmprogateway_paypal.php:131
1981
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:136
1982
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:130
1983
+ #: classes/gateways/class.pmprogateway_twocheckout.php:121
1984
+ msgid "API Username"
1985
+ msgstr ""
1986
+
1987
+ #: classes/gateways/class.pmprogateway_paypal.php:139
1988
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:144
1989
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:138
1990
+ #: classes/gateways/class.pmprogateway_twocheckout.php:130
1991
+ msgid "API Password"
1992
+ msgstr ""
1993
+
1994
+ #: classes/gateways/class.pmprogateway_paypal.php:147
1995
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:152
1996
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:146
1997
+ msgid "API Signature"
1998
+ msgstr ""
1999
+
2000
+ #: classes/gateways/class.pmprogateway_paypal.php:155
2001
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:160
2002
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:154
2003
+ msgid "IPN Handler URL"
2004
+ msgstr ""
2005
+
2006
+ #: classes/gateways/class.pmprogateway_paypal.php:158
2007
+ msgid ""
2008
+ "This URL is passed to PayPal for all new charges and subscriptions. You SHOULD NOT "
2009
+ "set this in your PayPal account settings."
2010
+ msgstr ""
2011
+
2012
+ #: classes/gateways/class.pmprogateway_paypal.php:178
2013
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:402
2014
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:202 pages/checkout.php:295
2015
+ msgid "Check Out with PayPal"
2016
+ msgstr ""
2017
+
2018
+ #: classes/gateways/class.pmprogateway_paypal.php:184
2019
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:408
2020
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:208 pages/checkout.php:713
2021
+ msgid "Submit and Check Out"
2022
+ msgstr ""
2023
+
2024
+ #: classes/gateways/class.pmprogateway_paypal.php:184
2025
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:408
2026
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:208
2027
+ #: classes/gateways/class.pmprogateway_twocheckout.php:214 pages/checkout.php:713
2028
+ msgid "Submit and Confirm"
2029
+ msgstr ""
2030
+
2031
+ #: classes/gateways/class.pmprogateway_paypal.php:605
2032
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:740
2033
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:466
2034
+ msgid ""
2035
+ "Please contact the site owner or cancel your subscription from within PayPal to "
2036
+ "make sure you are not charged going forward."
2037
+ msgstr ""
2038
+
2039
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:63
2040
+ #: paid-memberships-pro.php:119
2041
+ msgid "PayPal Express"
2042
+ msgstr ""
2043
+
2044
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:163
2045
+ msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
2046
+ msgstr ""
2047
+
2048
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:268
2049
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:320
2050
+ msgid "The PayPal Token was lost."
2051
+ msgstr ""
2052
+
2053
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:60
2054
+ #: paid-memberships-pro.php:122
2055
+ msgid "PayPal Standard"
2056
+ msgstr ""
2057
+
2058
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:157
2059
+ msgid ""
2060
+ "Here is your IPN URL for reference. You SHOULD NOT set this in your PayPal settings."
2061
+ msgstr ""
2062
+
2063
+ #: classes/gateways/class.pmprogateway_stripe.php:94 paid-memberships-pro.php:118
2064
+ msgid "Stripe"
2065
+ msgstr ""
2066
+
2067
+ #: classes/gateways/class.pmprogateway_stripe.php:149
2068
+ msgid "Stripe Settings"
2069
+ msgstr ""
2070
+
2071
+ #: classes/gateways/class.pmprogateway_stripe.php:154
2072
+ msgid "Secret Key"
2073
+ msgstr ""
2074
+
2075
+ #: classes/gateways/class.pmprogateway_stripe.php:162
2076
+ msgid "Publishable Key"
2077
+ msgstr ""
2078
+
2079
+ #: classes/gateways/class.pmprogateway_stripe.php:170
2080
+ msgid "Show Billing Address Fields"
2081
+ msgstr ""
2082
+
2083
+ #: classes/gateways/class.pmprogateway_stripe.php:177
2084
+ msgid ""
2085
+ "Stripe doesn't require billing address fields. Choose 'No' to hide them on the "
2086
+ "checkout page.<br /><strong>If No, make sure you disable address verification in "
2087
+ "the Stripe dashboard settings.</strong>"
2088
+ msgstr ""
2089
+
2090
+ #: classes/gateways/class.pmprogateway_stripe.php:185
2091
+ msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
2092
+ msgstr ""
2093
+
2094
+ #: classes/gateways/class.pmprogateway_stripe.php:568
2095
+ msgid "Subscription Updates"
2096
+ msgstr ""
2097
+
2098
+ #: classes/gateways/class.pmprogateway_stripe.php:572
2099
+ msgid ""
2100
+ "Subscription updates, allow you to change the member's subscription values at "
2101
+ "predefined times. Be sure to click Update Profile after making changes."
2102
+ msgstr ""
2103
+
2104
+ #: classes/gateways/class.pmprogateway_stripe.php:574
2105
+ msgid ""
2106
+ "Subscription updates, allow you to change the member's subscription values at "
2107
+ "predefined times. Be sure to click Update User after making changes."
2108
+ msgstr ""
2109
+
2110
+ #: classes/gateways/class.pmprogateway_stripe.php:579 pages/billing.php:338
2111
+ msgid "Update"
2112
+ msgstr "Päivitä"
2113
+
2114
+ #: classes/gateways/class.pmprogateway_stripe.php:770
2115
+ msgid "Could not cancel the old subscription. Updates have not been processed."
2116
+ msgstr ""
2117
+
2118
+ #: classes/gateways/class.pmprogateway_stripe.php:1204
2119
+ msgid "Error creating customer record with Stripe:"
2120
+ msgstr ""
2121
+
2122
+ #: classes/gateways/class.pmprogateway_stripe.php:1261
2123
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
2124
+ msgid "Error creating plan with Stripe:"
2125
+ msgstr ""
2126
+
2127
+ #: classes/gateways/class.pmprogateway_stripe.php:1442
2128
+ msgid "Error subscribing customer to plan with Stripe:"
2129
+ msgstr ""
2130
+
2131
+ #: classes/gateways/class.pmprogateway_stripe.php:1538
2132
+ msgid "Could not cancel old subscription."
2133
+ msgstr ""
2134
+
2135
+ #: classes/gateways/class.pmprogateway_stripe.php:1555
2136
+ msgid "Could not find the customer."
2137
+ msgstr ""
2138
+
2139
+ #: classes/gateways/class.pmprogateway_twocheckout.php:60
2140
+ #: paid-memberships-pro.php:125
2141
+ msgid "2Checkout"
2142
+ msgstr ""
2143
+
2144
+ #: classes/gateways/class.pmprogateway_twocheckout.php:116
2145
+ msgid "2Checkout Settings"
2146
+ msgstr ""
2147
+
2148
+ #: classes/gateways/class.pmprogateway_twocheckout.php:125
2149
+ msgid ""
2150
+ "Go to Account &raquo; User Management in 2Checkout and create a user with API "
2151
+ "Access and API Updating."
2152
+ msgstr ""
2153
+
2154
+ #: classes/gateways/class.pmprogateway_twocheckout.php:134
2155
+ msgid "Password for the API user created."
2156
+ msgstr ""
2157
+
2158
+ #: classes/gateways/class.pmprogateway_twocheckout.php:139
2159
+ msgid "API Private Key"
2160
+ msgstr ""
2161
+
2162
+ #: classes/gateways/class.pmprogateway_twocheckout.php:143
2163
+ msgid ""
2164
+ "Go to API in 2Checkout and generate a new key pair. Paste the Private Key here."
2165
+ msgstr ""
2166
+
2167
+ #: classes/gateways/class.pmprogateway_twocheckout.php:152
2168
+ msgid "Click on the profile icon in 2Checkout to find your Account Number."
2169
+ msgstr ""
2170
+
2171
+ #: classes/gateways/class.pmprogateway_twocheckout.php:157
2172
+ msgid "Secret Word"
2173
+ msgstr ""
2174
+
2175
+ #: classes/gateways/class.pmprogateway_twocheckout.php:161
2176
+ msgid ""
2177
+ "Go to Account &raquo; Site Management. Look under Checkout Options to find the "
2178
+ "Secret Word."
2179
+ msgstr ""
2180
+
2181
+ #: classes/gateways/class.pmprogateway_twocheckout.php:166
2182
+ msgid "TwoCheckout INS URL"
2183
+ msgstr ""
2184
+
2185
+ #: classes/gateways/class.pmprogateway_twocheckout.php:169
2186
+ msgid ""
2187
+ "To fully integrate with 2Checkout, be sure to use the following for your INS URL "
2188
+ "and Approved URL"
2189
+ msgstr ""
2190
+
2191
+ #: classes/gateways/class.pmprogateway_twocheckout.php:214
2192
+ msgid "Check Out with 2Checkout"
2193
+ msgstr ""
2194
+
2195
+ #: includes/adminpages.php:47
2196
+ msgid "Memberships"
2197
+ msgstr "Tilaajat"
2198
+
2199
+ #: includes/adminpages.php:48 includes/adminpages.php:118
2200
+ msgid "Page Settings"
2201
+ msgstr "Sivuasetukset"
2202
+
2203
+ #: includes/adminpages.php:49 includes/adminpages.php:125
2204
+ msgid "Payment Settings"
2205
+ msgstr "Maksuasetukset"
2206
+
2207
+ #: includes/adminpages.php:54 includes/adminpages.php:160
2208
+ msgid "Reports"
2209
+ msgstr "Raportit"
2210
+
2211
+ #: includes/adminpages.php:56 includes/adminpages.php:174
2212
+ msgid "Discount Codes"
2213
+ msgstr "Alennuskoodit"
2214
+
2215
+ #: includes/adminpages.php:104
2216
+ msgid "<span class=\"ab-icon\"></span>Memberships"
2217
+ msgstr ""
2218
+
2219
+ #: includes/adminpages.php:265
2220
+ msgid "View PMPro Documentation"
2221
+ msgstr ""
2222
+
2223
+ #: includes/adminpages.php:265
2224
+ msgid "Docs"
2225
+ msgstr ""
2226
+
2227
+ #: includes/adminpages.php:266
2228
+ msgid "Visit Customer Support Forum"
2229
+ msgstr ""
2230
+
2231
+ #: includes/adminpages.php:266
2232
+ msgid "Support"
2233
+ msgstr "Tuki"
2234
+
2235
+ #: includes/currencies.php:7 includes/currencies.php:75
2236
+ msgid "US Dollars (&#36;)"
2237
+ msgstr ""
2238
+
2239
+ #: includes/currencies.php:9 includes/currencies.php:78
2240
+ msgid "Euros (&euro;)"
2241
+ msgstr ""
2242
+
2243
+ #: includes/currencies.php:14 includes/currencies.php:77
2244
+ msgid "Pounds Sterling (&pound;)"
2245
+ msgstr ""
2246
+
2247
+ #: includes/currencies.php:18
2248
+ msgid "Australian Dollars (&#36;)"
2249
+ msgstr ""
2250
+
2251
+ #: includes/currencies.php:20
2252
+ msgid "Brazilian Real (R&#36;)"
2253
+ msgstr ""
2254
+
2255
+ #: includes/currencies.php:24 includes/currencies.php:76
2256
+ msgid "Canadian Dollars (&#36;)"
2257
+ msgstr ""
2258
+
2259
+ #: includes/currencies.php:25
2260
+ msgid "Chinese Yuan"
2261
+ msgstr ""
2262
+
2263
+ #: includes/currencies.php:27
2264
+ msgid "Czech Koruna"
2265
+ msgstr ""
2266
+
2267
+ #: includes/currencies.php:34
2268
+ msgid "Danish Krone"
2269
+ msgstr ""
2270
+
2271
+ #: includes/currencies.php:35
2272
+ msgid "Hong Kong Dollar (&#36;)"
2273
+ msgstr ""
2274
+
2275
+ #: includes/currencies.php:36
2276
+ msgid "Hungarian Forint"
2277
+ msgstr ""
2278
+
2279
+ #: includes/currencies.php:37
2280
+ msgid "Indian Rupee"
2281
+ msgstr ""
2282
+
2283
+ #: includes/currencies.php:38
2284
+ msgid "Indonesia Rupiah"
2285
+ msgstr ""
2286
+
2287
+ #: includes/currencies.php:39
2288
+ msgid "Israeli Shekel"
2289
+ msgstr ""
2290
+
2291
+ #: includes/currencies.php:41
2292
+ msgid "Japanese Yen (&yen;)"
2293
+ msgstr ""
2294
+
2295
+ #: includes/currencies.php:45
2296
+ msgid "Malaysian Ringgits"
2297
+ msgstr ""
2298
+
2299
+ #: includes/currencies.php:46
2300
+ msgid "Mexican Peso (&#36;)"
2301
+ msgstr ""
2302
+
2303
+ #: includes/currencies.php:47
2304
+ msgid "New Zealand Dollar (&#36;)"
2305
+ msgstr ""
2306
+
2307
+ #: includes/currencies.php:48
2308
+ msgid "Norwegian Krone"
2309
+ msgstr ""
2310
+
2311
+ #: includes/currencies.php:49
2312
+ msgid "Philippine Pesos"
2313
+ msgstr ""
2314
+
2315
+ #: includes/currencies.php:50
2316
+ msgid "Polish Zloty"
2317
+ msgstr ""
2318
+
2319
+ #: includes/currencies.php:52
2320
+ msgid "Singapore Dollar (&#36;)"
2321
+ msgstr ""
2322
+
2323
+ #: includes/currencies.php:57
2324
+ msgid "South African Rand (R)"
2325
+ msgstr ""
2326
+
2327
+ #: includes/currencies.php:61
2328
+ msgid "South Korean Won"
2329
+ msgstr ""
2330
+
2331
+ #: includes/currencies.php:62
2332
+ msgid "Swedish Krona"
2333
+ msgstr ""
2334
+
2335
+ #: includes/currencies.php:63
2336
+ msgid "Swiss Franc"
2337
+ msgstr ""
2338
+
2339
+ #: includes/currencies.php:64
2340
+ msgid "Taiwan New Dollars"
2341
+ msgstr ""
2342
+
2343
+ #: includes/currencies.php:65
2344
+ msgid "Thai Baht"
2345
+ msgstr ""
2346
+
2347
+ #: includes/currencies.php:66
2348
+ msgid "Turkish Lira"
2349
+ msgstr ""
2350
+
2351
+ #: includes/currencies.php:67
2352
+ msgid "Vietnamese Dong"
2353
+ msgstr ""
2354
+
2355
+ #: includes/functions.php:200
2356
+ #, php-format
2357
+ msgid "The price for membership is <strong>%s</strong> now"
2358
+ msgstr ""
2359
+
2360
+ #: includes/functions.php:202
2361
+ #, php-format
2362
+ msgid "<strong>%s</strong> now"
2363
+ msgstr ""
2364
+
2365
+ #: includes/functions.php:211
2366
+ #, php-format
2367
+ msgid " and then <strong>%s per %s for %d more %s</strong>."
2368
+ msgstr ""
2369
+
2370
+ #: includes/functions.php:215
2371
+ #, php-format
2372
+ msgid " and then <strong>%s every %d %s for %d more %s</strong>."
2373
+ msgstr ""
2374
+
2375
+ #: includes/functions.php:220
2376
+ #, php-format
2377
+ msgid " and then <strong>%s after %d %s</strong>."
2378
+ msgstr ""
2379
+
2380
+ #: includes/functions.php:228
2381
+ #, php-format
2382
+ msgid "The price for membership is <strong>%s per %s</strong>."
2383
+ msgstr ""
2384
+
2385
+ #: includes/functions.php:230
2386
+ #, php-format
2387
+ msgid "<strong>%s per %s</strong>."
2388
+ msgstr ""
2389
+
2390
+ #: includes/functions.php:235
2391
+ #, php-format
2392
+ msgid "The price for membership is <strong>%s every %d %s</strong>."
2393
+ msgstr ""
2394
+
2395
+ #: includes/functions.php:237
2396
+ #, php-format
2397
+ msgid "<strong>%s every %d %s</strong>."
2398
+ msgstr ""
2399
+
2400
+ #: includes/functions.php:242
2401
+ #, php-format
2402
+ msgid " and then <strong>%s per %s</strong>."
2403
+ msgstr ""
2404
+
2405
+ #: includes/functions.php:246
2406
+ #, php-format
2407
+ msgid " and then <strong>%s every %d %s</strong>."
2408
+ msgstr ""
2409
+
2410
+ #: includes/functions.php:264
2411
+ msgid "After your initial payment, your first payment is Free."
2412
+ msgstr ""
2413
+
2414
+ #: includes/functions.php:268
2415
+ #, php-format
2416
+ msgid "After your initial payment, your first %d payments are Free."
2417
+ msgstr ""
2418
+
2419
+ #: includes/functions.php:275
2420
+ #, php-format
2421
+ msgid "After your initial payment, your first payment will cost %s."
2422
+ msgstr ""
2423
+
2424
+ #: includes/functions.php:279
2425
+ #, php-format
2426
+ msgid "After your initial payment, your first %d payments will cost %s."
2427
+ msgstr ""
2428
+
2429
+ #: includes/functions.php:290
2430
+ #, php-format
2431
+ msgid "Customers in %s will be charged %s%% tax."
2432
+ msgstr ""
2433
+
2434
+ #: includes/functions.php:304
2435
+ #, php-format
2436
+ msgid "Membership expires after %d %s."
2437
+ msgstr "Tilaaja vanhenee %d %s jälkeen."
2438
+
2439
+ #: includes/functions.php:592
2440
+ msgid "User ID not found."
2441
+ msgstr ""
2442
+
2443
+ #: includes/functions.php:612
2444
+ msgid "Invalid level."
2445
+ msgstr "Virheellinen tilaajataso."
2446
+
2447
+ #: includes/functions.php:623
2448
+ msgid "not changing?"
2449
+ msgstr ""
2450
+
2451
+ #: includes/functions.php:640 includes/functions.php:699 includes/functions.php:723
2452
+ msgid "Error interacting with database"
2453
+ msgstr ""
2454
+
2455
+ #: includes/functions.php:764 includes/functions.php:803
2456
+ msgid "Membership level not found."
2457
+ msgstr ""
2458
+
2459
+ #: includes/functions.php:1173
2460
+ msgid "No code was given to check."
2461
+ msgstr ""
2462
+
2463
+ #: includes/functions.php:1182
2464
+ msgid "The discount code could not be found."
2465
+ msgstr ""
2466
+
2467
+ #: includes/functions.php:1197
2468
+ #, php-format
2469
+ msgid "This discount code goes into effect on %s."
2470
+ msgstr ""
2471
+
2472
+ #: includes/functions.php:1204
2473
+ #, php-format
2474
+ msgid "This discount code expired on %s."
2475
+ msgstr ""
2476
+
2477
+ #: includes/functions.php:1214
2478
+ msgid "This discount code is no longer valid."
2479
+ msgstr ""
2480
+
2481
+ #: includes/functions.php:1227
2482
+ msgid "This discount code does not apply to this membership level."
2483
+ msgstr ""
2484
+
2485
+ #: includes/functions.php:1253
2486
+ msgid "This discount code is okay."
2487
+ msgstr ""
2488
+
2489
+ #: includes/functions.php:1278
2490
+ msgid "and"
2491
+ msgstr "ja"
2492
+
2493
+ #: includes/functions.php:1473
2494
+ msgid "Sign Up for !!name!! Now"
2495
+ msgstr "Rekisteröidy !!name!!ksi nyt"
2496
+
2497
+ #: includes/functions.php:1479
2498
+ msgid "Please specify a level id."
2499
+ msgstr ""
2500
+
2501
+ #: includes/init.php:237 includes/profile.php:39
2502
+ msgid "None"
2503
+ msgstr "Ei mitään"
2504
+
2505
+ #: includes/localization.php:26
2506
+ #, fuzzy
2507
+ msgid "Day"
2508
+ msgstr "Päivä"
2509
+
2510
+ #: includes/localization.php:28
2511
+ #, fuzzy
2512
+ msgid "Week"
2513
+ msgstr "Viikko"
2514
+
2515
+ #: includes/localization.php:30
2516
+ #, fuzzy
2517
+ msgid "Month"
2518
+ msgstr "Kuukausi"
2519
+
2520
+ #: includes/localization.php:32
2521
+ #, fuzzy
2522
+ msgid "Year"
2523
+ msgstr "Vuosi"
2524
+
2525
+ #: includes/localization.php:37
2526
+ msgid "Days"
2527
+ msgstr "Päivää"
2528
+
2529
+ #: includes/localization.php:39
2530
+ msgid "Weeks"
2531
+ msgstr "Viikkoa"
2532
+
2533
+ #: includes/localization.php:41
2534
+ msgid "Months"
2535
+ msgstr "Kuukautta"
2536
+
2537
+ #: includes/localization.php:43
2538
+ msgid "Years"
2539
+ msgstr "Vuotta"
2540
+
2541
+ #: includes/metaboxes.php:38
2542
+ msgid ""
2543
+ "This post is already protected for this level because it is within a category that "
2544
+ "requires membership."
2545
+ msgstr ""
2546
+
2547
+ #: includes/metaboxes.php:99 includes/metaboxes.php:100
2548
+ msgid "Require Membership"
2549
+ msgstr "Vaadi Tilaus"
2550
+
2551
+ #: includes/profile.php:36
2552
+ msgid "Current Level"
2553
+ msgstr "Nykyinen tilaajataso"
2554
+
2555
+ #: includes/profile.php:54
2556
+ msgid "Not paying."
2557
+ msgstr ""
2558
+
2559
+ #: includes/profile.php:64
2560
+ msgid ""
2561
+ "This will not change the subscription at the gateway unless the 'Cancel' checkbox "
2562
+ "is selected below."
2563
+ msgstr ""
2564
+
2565
+ #: includes/upgradecheck.php:422
2566
+ #, php-format
2567
+ msgid "This content is for !!levels!! members only.<br /><a href=\"%s\">Register</a>"
2568
+ msgstr "Tämä sisältö on vain tilaajille.<br /><a href=\"%s\">Rekisteröidy tästä</a>"
2569
+
2570
+ #: includes/upgradecheck.php:425
2571
+ #, php-format
2572
+ msgid ""
2573
+ "This content is for !!levels!! members only.<br /><a href=\"%s\">Log In</a> <a href="
2574
+ "\"%s\">Register</a>"
2575
+ msgstr ""
2576
+ "Tämä sisältö on vain tilaajille.<br /><a href=\"%s\">Kirjaudu</a> <a href=\"%s"
2577
+ "\">Rekisteröidy</a>"
2578
+
2579
+ # !!levels!! muutetaan käyttäjätilin mukaan mutta tällä kertaa on kyse vain tilaajista
2580
+ #: includes/upgradecheck.php:429
2581
+ msgid ""
2582
+ "This content is for !!levels!! members only. Visit the site and log in/register to "
2583
+ "read."
2584
+ msgstr ""
2585
+ "Tämä sisältö on vain tilaajille. Kirjaudu sisään tai rekisteröidy lukeaksesi sen."
2586
+
2587
+ #: pages/billing.php:23
2588
+ #, php-format
2589
+ msgid "Logged in as <strong>%s</strong>."
2590
+ msgstr "Kirjautuneena <strong>%s</strong>."
2591
+
2592
+ #: pages/billing.php:23
2593
+ msgid "logout"
2594
+ msgstr "uloskirjaus"
2595
+
2596
+ #: pages/billing.php:25 pages/cancel.php:52 pages/invoice.php:109 pages/levels.php:13
2597
+ #: shortcodes/pmpro_account.php:44 shortcodes/pmpro_account.php:123
2598
+ msgid "Level"
2599
+ msgstr ""
2600
+
2601
+ #: pages/billing.php:27
2602
+ msgid "Membership Fee"
2603
+ msgstr "Tilaajamaksu"
2604
+
2605
+ #: pages/billing.php:31
2606
+ #, php-format
2607
+ msgid "%s every %d %s."
2608
+ msgstr "%s joka %d %s."
2609
+
2610
+ #: pages/billing.php:33
2611
+ #, php-format
2612
+ msgid "%s per %s."
2613
+ msgstr ""
2614
+
2615
+ #: pages/billing.php:42
2616
+ msgid "Duration"
2617
+ msgstr "Kesto"
2618
+
2619
+ #: pages/billing.php:52
2620
+ msgid ""
2621
+ "Your payment subscription is managed by PayPal. Please <a href=\"http://www.paypal."
2622
+ "com\">login to PayPal here</a> to update your billing information."
2623
+ msgstr ""
2624
+
2625
+ #: pages/billing.php:78 pages/checkout.php:318
2626
+ msgid "First Name"
2627
+ msgstr "Etunimi"
2628
+
2629
+ #: pages/billing.php:82 pages/checkout.php:322
2630
+ msgid "Last Name"
2631
+ msgstr "Sukunimi"
2632
+
2633
+ #: pages/billing.php:86 pages/checkout.php:326
2634
+ msgid "Address 1"
2635
+ msgstr "Osoite 1"
2636
+
2637
+ #: pages/billing.php:90 pages/checkout.php:330
2638
+ msgid "Address 2"
2639
+ msgstr "Osoite 2"
2640
+
2641
+ #: pages/billing.php:100 pages/checkout.php:340
2642
+ msgid "City"
2643
+ msgstr "Kaupunki"
2644
+
2645
+ #: pages/billing.php:104 pages/checkout.php:344
2646
+ msgid "State"
2647
+ msgstr "Alue"
2648
+
2649
+ #: pages/billing.php:108 pages/checkout.php:348
2650
+ msgid "Postal Code"
2651
+ msgstr "Postinumero"
2652
+
2653
+ #: pages/billing.php:117 pages/checkout.php:357
2654
+ msgid "City, State Zip"
2655
+ msgstr "Kaupunki"
2656
+
2657
+ #: pages/billing.php:170 pages/checkout.php:410
2658
+ msgid "Country"
2659
+ msgstr "Maa"
2660
+
2661
+ #: pages/billing.php:195 pages/checkout.php:435
2662
+ msgid "Phone"
2663
+ msgstr "Puhelinnumero"
2664
+
2665
+ #: pages/billing.php:206 pages/checkout.php:216 pages/checkout.php:449
2666
+ msgid "E-mail Address"
2667
+ msgstr "Sähköposti"
2668
+
2669
+ #: pages/billing.php:210 pages/checkout.php:458
2670
+ msgid "Confirm E-mail"
2671
+ msgstr "Vahvista Sähköposti"
2672
+
2673
+ #: pages/billing.php:230
2674
+ #, php-format
2675
+ msgid "We accept %s"
2676
+ msgstr "Meillä käy %s"
2677
+
2678
+ #: pages/billing.php:230
2679
+ msgid "Credit Card Information"
2680
+ msgstr "Luottokortin tiedot"
2681
+
2682
+ #: pages/billing.php:353
2683
+ msgid ""
2684
+ "This subscription is not recurring. So you don't need to update your billing "
2685
+ "information."
2686
+ msgstr ""
2687
+
2688
+ #: pages/cancel.php:26
2689
+ msgid "Are you sure you want to cancel your membership?"
2690
+ msgstr ""
2691
+
2692
+ #: pages/cancel.php:32
2693
+ #, php-format
2694
+ msgid "Are you sure you want to cancel your %s membership?"
2695
+ msgstr ""
2696
+
2697
+ #: pages/cancel.php:37
2698
+ msgid "Yes, cancel my account"
2699
+ msgstr "Kyllä, peruuta tilini"
2700
+
2701
+ #: pages/cancel.php:38
2702
+ msgid "No, keep my account"
2703
+ msgstr "Ei, pidä tilini"
2704
+
2705
+ #: pages/cancel.php:48 shortcodes/pmpro_account.php:40
2706
+ msgid "My Memberships"
2707
+ msgstr ""
2708
+
2709
+ #: pages/cancel.php:77
2710
+ msgid "Cancel All Memberships"
2711
+ msgstr ""
2712
+
2713
+ #: pages/cancel.php:86
2714
+ msgid "Click here to go to the home page."
2715
+ msgstr "Klikkaa tästä päästäksesi etusivulle."
2716
+
2717
+ #: pages/checkout.php:35
2718
+ msgid ""
2719
+ "Almost done. Review the membership information and pricing below then <strong>click "
2720
+ "the \"Complete Payment\" button</strong> to finish your order."
2721
+ msgstr ""
2722
+
2723
+ #: pages/checkout.php:42
2724
+ msgid "change"
2725
+ msgstr ""
2726
+
2727
+ #: pages/checkout.php:50
2728
+ #, php-format
2729
+ msgid "You have selected the <strong>%s</strong> membership level."
2730
+ msgstr ""
2731
+
2732
+ #: pages/checkout.php:60
2733
+ #, php-format
2734
+ msgid ""
2735
+ "<p class=\"pmpro_level_discount_applied\">The <strong>%s</strong> code has been "
2736
+ "applied to your order.</p>"
2737
+ msgstr ""
2738
+
2739
+ #: pages/checkout.php:71 services/applydiscountcode.php:89
2740
+ msgid "Click here to change your discount code"
2741
+ msgstr ""
2742
+
2743
+ #: pages/checkout.php:73
2744
+ msgid "Do you have a discount code?"
2745
+ msgstr ""
2746
+
2747
+ #: pages/checkout.php:73
2748
+ msgid "Click here to enter your discount code"
2749
+ msgstr ""
2750
+
2751
+ #: pages/checkout.php:172
2752
+ msgid "Already have an account?"
2753
+ msgstr ""
2754
+
2755
+ #: pages/checkout.php:172
2756
+ msgid "Log in here"
2757
+ msgstr "Kirjaudu sisään täältä"
2758
+
2759
+ #: pages/checkout.php:172
2760
+ msgid "Account Information"
2761
+ msgstr "Tilitiedot"
2762
+
2763
+ #: pages/checkout.php:198
2764
+ msgid "Confirm Password"
2765
+ msgstr "Vahvista salasana"
2766
+
2767
+ #: pages/checkout.php:225
2768
+ msgid "Confirm E-mail Address"
2769
+ msgstr "Vahvista sähköpostiosoite"
2770
+
2771
+ #: pages/checkout.php:244
2772
+ msgid "Full Name"
2773
+ msgstr "Kokonimi"
2774
+
2775
+ #: pages/checkout.php:245
2776
+ msgid "LEAVE THIS BLANK"
2777
+ msgstr "JÄTÄ TYHJÄKSI"
2778
+
2779
+ #: pages/checkout.php:269
2780
+ #, php-format
2781
+ msgid ""
2782
+ "You are logged in as <strong>%s</strong>. If you would like to use a different "
2783
+ "account for this membership, <a href=\"%s\">log out now</a>."
2784
+ msgstr ""
2785
+
2786
+ #: pages/checkout.php:285
2787
+ msgid "Choose your Payment Method"
2788
+ msgstr ""
2789
+
2790
+ #: pages/checkout.php:293
2791
+ msgid "Check Out with a Credit Card Here"
2792
+ msgstr ""
2793
+
2794
+ #: pages/checkout.php:681
2795
+ #, php-format
2796
+ msgid "I agree to the %s"
2797
+ msgstr "Hyväksyn %s"
2798
+
2799
+ #: pages/checkout.php:701
2800
+ msgid "Complete Payment"
2801
+ msgstr ""
2802
+
2803
+ #: pages/checkout.php:723
2804
+ msgid "Processing..."
2805
+ msgstr "Prosessoidaan..."
2806
+
2807
+ #: pages/confirmation.php:12
2808
+ msgid "Your payment has been submitted. Your membership will be activated shortly."
2809
+ msgstr ""
2810
+
2811
+ #: pages/confirmation.php:14
2812
+ #, php-format
2813
+ msgid "Thank you for your membership to %s. Your %s membership is now active."
2814
+ msgstr ""
2815
+
2816
+ #: pages/confirmation.php:28
2817
+ #, php-format
2818
+ msgid ""
2819
+ "Below are details about your membership account and a receipt for your initial "
2820
+ "membership invoice. A welcome email with a copy of your initial membership invoice "
2821
+ "has been sent to %s."
2822
+ msgstr ""
2823
+
2824
+ #: pages/confirmation.php:41 pages/invoice.php:22
2825
+ #, php-format
2826
+ msgid "Invoice #%s on %s"
2827
+ msgstr ""
2828
+
2829
+ #: pages/confirmation.php:43 pages/invoice.php:24
2830
+ msgid "Print"
2831
+ msgstr "Tulosta"
2832
+
2833
+ #: pages/confirmation.php:46 pages/confirmation.php:104 pages/invoice.php:27
2834
+ msgid "Account"
2835
+ msgstr "Käyttäjätili"
2836
+
2837
+ #: pages/confirmation.php:49 pages/invoice.php:30
2838
+ msgid "Membership Expires"
2839
+ msgstr ""
2840
+
2841
+ #: pages/confirmation.php:63 pages/invoice.php:50
2842
+ msgid "Payment Method"
2843
+ msgstr ""
2844
+
2845
+ #: pages/confirmation.php:65 pages/invoice.php:52 pages/invoice.php:110
2846
+ msgid "Total Billed"
2847
+ msgstr "Yhteensä laskutettu"
2848
+
2849
+ #: pages/confirmation.php:82 pages/invoice.php:69
2850
+ msgid "ending in"
2851
+ msgstr ""
2852
+
2853
+ #: pages/confirmation.php:97
2854
+ #, php-format
2855
+ msgid ""
2856
+ "Below are details about your membership account. A welcome email has been sent to "
2857
+ "%s."
2858
+ msgstr ""
2859
+
2860
+ #: pages/confirmation.php:105
2861
+ msgctxt "User without membership is in {pending} status."
2862
+ msgid "Pending"
2863
+ msgstr ""
2864
+
2865
+ #: pages/confirmation.php:113 pages/invoice.php:141
2866
+ msgid "View Your Membership Account &rarr;"
2867
+ msgstr ""
2868
+
2869
+ #: pages/confirmation.php:115
2870
+ msgid ""
2871
+ "If your account is not activated within a few minutes, please contact the site "
2872
+ "owner."
2873
+ msgstr ""
2874
+
2875
+ #: pages/invoice.php:79
2876
+ msgid "Subtotal"
2877
+ msgstr "Välisumma"
2878
+
2879
+ #: pages/invoice.php:82
2880
+ msgid "Coupon"
2881
+ msgstr ""
2882
+
2883
+ #: pages/invoice.php:108
2884
+ msgid "Invoice #"
2885
+ msgstr ""
2886
+
2887
+ #: pages/invoice.php:134
2888
+ msgid "No invoices found."
2889
+ msgstr ""
2890
+
2891
+ #: pages/invoice.php:145
2892
+ msgid "&larr; View All Invoices"
2893
+ msgstr ""
2894
+
2895
+ #: pages/levels.php:14
2896
+ msgid "Price"
2897
+ msgstr "Hinta"
2898
+
2899
+ #: pages/levels.php:33
2900
+ msgid "Free"
2901
+ msgstr "Ilmainen"
2902
+
2903
+ #: pages/levels.php:47 pages/levels.php:49
2904
+ msgid "Select"
2905
+ msgstr "Valitse"
2906
+
2907
+ #: pages/levels.php:57 shortcodes/pmpro_account.php:59
2908
+ msgid "Renew"
2909
+ msgstr "Uusi"
2910
+
2911
+ #: pages/levels.php:63
2912
+ msgid "Your&nbsp;Level"
2913
+ msgstr ""
2914
+
2915
+ #: pages/levels.php:79
2916
+ msgid "&larr; Return to Your Account"
2917
+ msgstr ""
2918
+
2919
+ #: pages/levels.php:81
2920
+ msgid "&larr; Return to Home"
2921
+ msgstr ""
2922
+
2923
+ #: paid-memberships-pro.php:116
2924
+ msgid "Testing Only"
2925
+ msgstr "Vain Testaus"
2926
+
2927
+ #: paid-memberships-pro.php:121
2928
+ msgid "PayPal Payflow Pro/PayPal Pro"
2929
+ msgstr ""
2930
+
2931
+ #: paid-memberships-pro.php:126
2932
+ msgid "Cybersource"
2933
+ msgstr ""
2934
+
2935
+ #: preheaders/account.php:10 preheaders/levels.php:22
2936
+ msgid "Your membership status has been updated - Thank you!"
2937
+ msgstr ""
2938
+
2939
+ #: preheaders/account.php:12 preheaders/levels.php:24
2940
+ msgid ""
2941
+ "Sorry, your request could not be completed - please try again in a few moments."
2942
+ msgstr ""
2943
+
2944
+ #: preheaders/billing.php:270 preheaders/checkout.php:332
2945
+ msgid "Please complete all required fields."
2946
+ msgstr ""
2947
+
2948
+ #: preheaders/billing.php:273 preheaders/checkout.php:340
2949
+ msgid "Your email addresses do not match. Please try again."
2950
+ msgstr ""
2951
+
2952
+ #: preheaders/billing.php:276 preheaders/checkout.php:345
2953
+ msgid "The email address entered is in an invalid format. Please try again."
2954
+ msgstr ""
2955
+
2956
+ #: preheaders/billing.php:280
2957
+ msgid "All good!"
2958
+ msgstr "Kaikki kunnossa!"
2959
+
2960
+ #: preheaders/billing.php:350
2961
+ #, php-format
2962
+ msgid "Information updated. <a href=\"%s\">&laquo; back to my account</a>"
2963
+ msgstr ""
2964
+
2965
+ #: preheaders/billing.php:356
2966
+ msgid "Error updating billing information."
2967
+ msgstr ""
2968
+
2969
+ #: preheaders/cancel.php:28
2970
+ msgid "Your membership has been cancelled."
2971
+ msgstr ""
2972
+
2973
+ #: preheaders/checkout.php:32 preheaders/checkout.php:354
2974
+ msgid "Invalid gateway."
2975
+ msgstr "Virheellinen maksuväylä."
2976
+
2977
+ #: preheaders/checkout.php:95
2978
+ msgid "Checkout: Payment Information"
2979
+ msgstr ""
2980
+
2981
+ #: preheaders/checkout.php:100
2982
+ msgid "Set Up Your Account"
2983
+ msgstr ""
2984
+
2985
+ #: preheaders/checkout.php:300
2986
+ msgid "There are JavaScript errors on the page. Please contact the webmaster."
2987
+ msgstr ""
2988
+
2989
+ #: preheaders/checkout.php:335
2990
+ msgid "Your passwords do not match. Please try again."
2991
+ msgstr "Salasanat eivät täsmää. Yritä uudelleen."
2992
+
2993
+ #: preheaders/checkout.php:350
2994
+ #, php-format
2995
+ msgid "Please check the box to agree to the %s."
2996
+ msgstr "Klikkaa laatikosta hyväksyäksesi %s."
2997
+
2998
+ #: preheaders/checkout.php:357
2999
+ msgid "Are you a spammer?"
3000
+ msgstr "Oletko roskapostittaja?"
3001
+
3002
+ #: preheaders/checkout.php:377
3003
+ msgid "That username is already taken. Please try another."
3004
+ msgstr ""
3005
+
3006
+ #: preheaders/checkout.php:382
3007
+ msgid "That email address is already taken. Please try another."
3008
+ msgstr ""
3009
+
3010
+ #: preheaders/checkout.php:416
3011
+ #, php-format
3012
+ msgid "reCAPTCHA failed. (%s) Please try again."
3013
+ msgstr ""
3014
+
3015
+ #: preheaders/checkout.php:501
3016
+ msgid "Payment accepted."
3017
+ msgstr "Maksu hyväksytty."
3018
+
3019
+ #: preheaders/checkout.php:509
3020
+ msgid "Unknown error generating account. Please contact us to set up your membership."
3021
+ msgstr ""
3022
+
3023
+ #: preheaders/checkout.php:571
3024
+ msgid ""
3025
+ "Your payment was accepted, but there was an error setting up your account. Please "
3026
+ "contact us."
3027
+ msgstr ""
3028
+
3029
+ #: preheaders/checkout.php:712
3030
+ msgid ""
3031
+ "IMPORTANT: Something went wrong during membership creation. Your credit card "
3032
+ "authorized, but we cancelled the order immediately. You should not try to submit "
3033
+ "this form again. Please contact the site owner to fix this issue."
3034
+ msgstr ""
3035
+
3036
+ #: preheaders/checkout.php:715
3037
+ msgid ""
3038
+ "IMPORTANT: Something went wrong during membership creation. Your credit card was "
3039
+ "charged, but we couldn't assign your membership. You should not submit this form "
3040
+ "again. Please contact the site owner to fix this issue."
3041
+ msgstr ""
3042
+
3043
+ #: preheaders/checkout.php:726
3044
+ #, php-format
3045
+ msgid ""
3046
+ "You must <a href=\"%s\">set up a Payment Gateway</a> before any payments will be "
3047
+ "processed."
3048
+ msgstr ""
3049
+
3050
+ #: preheaders/checkout.php:728
3051
+ msgid "A Payment Gateway must be set up before any payments will be processed."
3052
+ msgstr ""
3053
+
3054
+ #: scheduled/crons.php:38
3055
+ #, php-format
3056
+ msgid "Membership expired email sent to %s. "
3057
+ msgstr ""
3058
+
3059
+ #: scheduled/crons.php:84
3060
+ #, php-format
3061
+ msgid "Membership expiring email sent to %s. "
3062
+ msgstr ""
3063
+
3064
+ #: scheduled/crons.php:157
3065
+ #, php-format
3066
+ msgid "Credit card expiring email sent to %s. "
3067
+ msgstr ""
3068
+
3069
+ #: scheduled/crons.php:210
3070
+ #, php-format
3071
+ msgid "Trial ending email sent to %s. "
3072
+ msgstr ""
3073
+
3074
+ #: services/applydiscountcode.php:67
3075
+ #, php-format
3076
+ msgid "The %s code has been applied to your order. "
3077
+ msgstr ""
3078
+
3079
+ #: services/applydiscountcode.php:97
3080
+ #, php-format
3081
+ msgid "The <strong>%s</strong> code has been applied to your order."
3082
+ msgstr ""
3083
+
3084
+ #: services/authnet-silent-post.php:141
3085
+ msgid ""
3086
+ "<p>A payment is being held for review within Authorize.net.</p><p>Payment "
3087
+ "Information From Authorize.net"
3088
+ msgstr ""
3089
+
3090
+ #: services/stripe-webhook.php:270
3091
+ #, php-format
3092
+ msgid ""
3093
+ "%s has had their payment subscription cancelled by Stripe. Please check that this "
3094
+ "user's membership is cancelled on your site if it should be."
3095
+ msgstr ""
3096
+
3097
+ #: shortcodes/pmpro_account.php:45
3098
+ msgid "Billing"
3099
+ msgstr "Laskutus"
3100
+
3101
+ #: shortcodes/pmpro_account.php:62
3102
+ msgid "Update Billing Info"
3103
+ msgstr "Päivitä laskutustiedot"
3104
+
3105
+ #: shortcodes/pmpro_account.php:68
3106
+ msgid "Change"
3107
+ msgstr "Päivitä"
3108
+
3109
+ #: shortcodes/pmpro_account.php:90
3110
+ msgid "View all Membership Options"
3111
+ msgstr ""
3112
+
3113
+ #: shortcodes/pmpro_account.php:99
3114
+ msgid "My Account"
3115
+ msgstr "Oma tili"
3116
+
3117
+ #: shortcodes/pmpro_account.php:110
3118
+ msgid "Edit Profile"
3119
+ msgstr "Muokkaa profiilia"
3120
+
3121
+ #: shortcodes/pmpro_account.php:111
3122
+ msgid "Change Password"
3123
+ msgstr "Muuta salasanasi"
3124
+
3125
+ #: shortcodes/pmpro_account.php:118
3126
+ msgid "Past Invoices"
3127
+ msgstr "Edelliset laskut"
3128
+
3129
+ #: shortcodes/pmpro_account.php:124
3130
+ msgid "Amount"
3131
+ msgstr "Määrä"
3132
+
3133
+ #: shortcodes/pmpro_account.php:152
3134
+ msgid "View All Invoices"
3135
+ msgstr "Näytä kaikki laskut"
3136
+
3137
+ #: shortcodes/pmpro_account.php:159
3138
+ msgid "Member Links"
3139
+ msgstr ""
3140
+
3141
+ #~ msgid "Setup the membership pages"
3142
+ #~ msgstr "Aseta sivut tilaajia varten"
3143
+
3144
+ #~ msgid "Setup your SSL certificate and payment gateway"
3145
+ #~ msgstr "Aseta SSL-sertifikaatti ja maksuväylä"
3146
+
3147
+ #~ msgid "Disable default css?"
3148
+ #~ msgstr "Poista oletustyylit käytöstä?"
3149
+
3150
+ #~ msgid "No - Use the default styling bundled with paid susbcriptions."
3151
+ #~ msgstr "Ei - Käytä paid subscriptions -lisäosan mukana tulevia tyylejä."
3152
+
3153
+ #~ msgid "Yes - Use your styling instead."
3154
+ #~ msgstr "Kyllä - Käytä omia css-sääntöjä sen sijaan."
3155
+
3156
+ #~ msgid ""
3157
+ #~ "If unchecked, all emails from \"%s &lt; %s &gt;\" will be filtered to use the "
3158
+ #~ "above settings."
3159
+ #~ msgstr ""
3160
+ #~ "Jos tämä ei ole valittuna <strong>kaikki</strong> sivuston sähköpostit "
3161
+ #~ "lähetetään osoitteesta \"%s &lt; %s &gt;\""
3162
+
3163
+ #~ msgid "Billing Cycle"
3164
+ #~ msgstr "Laskutusjakso"
3165
+
3166
+ #~ msgid "Trial Cycle"
3167
+ #~ msgstr "Kokeiluaika"
3168
+
3169
+ #~ msgid "every"
3170
+ #~ msgstr "per"
3171
+
3172
+ #~ msgid "for"
3173
+ #~ msgstr "/"
3174
+
3175
+ #~ msgid ""
3176
+ #~ "Are you sure you want to delete membership level %s? All subscriptions will be "
3177
+ #~ "cancelled."
3178
+ #~ msgstr "Haluatko varmasti poistaa tilaajatason %s? Kaikki tilaukset peruutetaan."
3179
+
3180
+ #~ msgid "Never"
3181
+ #~ msgstr "Ei koskaan"
3182
+
3183
+ #~ msgid ""
3184
+ #~ "Manage the WordPress pages assigned to each required Paid Subscriptions page."
3185
+ #~ msgstr "Hallitse Paid Subscriptions:n tarvitsemia WordPress sivuja"
3186
+
3187
+ #~ msgid "Assign the WordPress pages for each required Paid Subscriptions page or"
3188
+ #~ msgstr "Aseta tarvittat WordPress-sivut jokaiselle Paid Subscriptions -sivulle tai"
3189
+
3190
+ #~ msgid "User is not paying."
3191
+ #~ msgstr "Käyttäjä ei maksa."
3192
+
3193
+ #~ msgid "Your membership is <strong>active</strong>."
3194
+ #~ msgstr "Tilauksesi on <strong>aktiivinen</strong>."
3195
+
3196
+ #~ msgid "Change Membership Level"
3197
+ #~ msgstr "Muuta tilaajataso"
3198
+
3199
+ #~ msgid "Cancel Membership"
3200
+ #~ msgstr "Peruuta Tilaaja"
languages/pmpro-fr_FR.mo CHANGED
Binary file
languages/pmpro-fr_FR.po CHANGED
@@ -2,16 +2,16 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: pmpro\n"
4
  "POT-Creation-Date: 2015-04-30 19:35+0100\n"
5
- "PO-Revision-Date: 2015-04-30 19:52+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
8
  "Language: fr_FR\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.7.6\n"
13
  "X-Poedit-KeywordsList: __;_;_e;_ex;_x;_n\n"
14
- "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: includes\n"
16
  "X-Poedit-SearchPath-1: .\n"
17
  "X-Poedit-SearchPath-2: classes\n"
@@ -62,22 +62,22 @@ msgstr ""
62
 
63
  #: adminpages/admin_header.php:46
64
  msgid ""
65
- "The billing details for this level are not supported by Stripe. Please "
66
- "review the notes in the Billing Details section below."
67
  msgstr ""
68
  "Les détails de facturation pour ce niveau ne sont pas pris en charge par "
69
- "Stripe. S'il vous plaît examiner les notes dans la section Détails de "
70
- "facturation ci-dessous."
71
 
72
  #: adminpages/admin_header.php:50 adminpages/admin_header.php:70
73
  #: adminpages/admin_header.php:90 adminpages/admin_header.php:111
74
  msgid "The levels with issues are highlighted below."
75
- msgstr "Les niveaux de questions sont soulignées ci-dessous."
76
 
77
  #: adminpages/admin_header.php:52 adminpages/admin_header.php:72
78
  #: adminpages/admin_header.php:92 adminpages/admin_header.php:113
79
  msgid "Please edit your levels"
80
- msgstr "S'il vous plaît modifier vos niveaux"
81
 
82
  #: adminpages/admin_header.php:58
83
  msgid ""
@@ -93,8 +93,8 @@ msgid ""
93
  "review the notes in the Billing Details section below."
94
  msgstr ""
95
  "Les détails de facturation pour ce niveau ne sont pas pris en charge par "
96
- "Payflow. S'il vous plaît examiner les notes dans la section Détails de "
97
- "facturation ci-dessous."
98
 
99
  #: adminpages/admin_header.php:78
100
  msgid ""
@@ -110,20 +110,25 @@ msgid ""
110
  "review the notes in the Billing Details section below."
111
  msgstr ""
112
  "Les détails de facturation pour ce niveau ne sont pas pris en charge par "
113
- "Braintree. S'il vous plaît examiner les notes dans la section Détails de "
114
- "facturation ci-dessous."
115
 
116
  #: adminpages/admin_header.php:98
117
  msgid ""
118
  "The billing details for some of your membership levels is not supported by "
119
  "TwoCheckout."
120
  msgstr ""
 
 
121
 
122
  #: adminpages/admin_header.php:107
123
  msgid ""
124
  "The billing details for this level are not supported by 2Checkout. Please "
125
  "review the notes in the Billing Details section below."
126
  msgstr ""
 
 
 
127
 
128
  #: adminpages/admin_header.php:127
129
  msgid "Plugin Support"
@@ -159,7 +164,7 @@ msgstr "Avancé"
159
  #: adminpages/admin_header.php:154 includes/adminpages.php:52
160
  #: includes/adminpages.php:142
161
  msgid "Add Ons"
162
- msgstr ""
163
 
164
  #: adminpages/advancedsettings.php:43
165
  msgid "Your advanced settings have been updated."
@@ -168,9 +173,10 @@ msgstr "Vos réglages avancés ont été mis à jour."
168
  #: adminpages/advancedsettings.php:68
169
  #, php-format
170
  msgid ""
171
- "This content is for !!levels!! members only. <a href=\"%s\">Register here</"
172
- "a>."
173
  msgstr ""
 
 
174
 
175
  #: adminpages/advancedsettings.php:73
176
  #, php-format
@@ -178,11 +184,15 @@ msgid ""
178
  "Please <a href=\"%s\">login</a> to view this content. (<a href=\"%s"
179
  "\">Register here</a>.)"
180
  msgstr ""
 
 
181
 
182
  #: adminpages/advancedsettings.php:78
183
  msgid ""
184
  "This content is for members only. Visit the site and log in/register to read."
185
  msgstr ""
 
 
186
 
187
  #: adminpages/advancedsettings.php:88 includes/adminpages.php:51
188
  #: includes/adminpages.php:135
@@ -197,7 +207,7 @@ msgstr "Message pour connecté non-membres"
197
  msgid ""
198
  "This message replaces the post content for non-members. Available variables"
199
  msgstr ""
200
- "Ce message remplace le contenu de poste pour les non-membres. Les variables "
201
  "disponibles"
202
 
203
  #: adminpages/advancedsettings.php:103
@@ -207,7 +217,7 @@ msgstr "Message pour les utilisateurs connectés"
207
  #: adminpages/advancedsettings.php:107
208
  msgid "This message replaces the post content for logged-out visitors."
209
  msgstr ""
210
- "Ce message remplace le contenu du post pour les visiteurs non connecté."
211
 
212
  #: adminpages/advancedsettings.php:112
213
  msgid "Message for RSS Feed"
@@ -215,33 +225,37 @@ msgstr "Message pour Flux RSS"
215
 
216
  #: adminpages/advancedsettings.php:116
217
  msgid "This message replaces the post content in RSS feeds."
218
- msgstr "Ce message remplace le contenu du post dans les flux RSS."
219
 
220
  #: adminpages/advancedsettings.php:122
221
  msgid "Filter searches and archives?"
222
- msgstr ""
223
 
224
  #: adminpages/advancedsettings.php:126
225
  msgid ""
226
  "No - Non-members will see restricted posts/pages in searches and archives."
227
  msgstr ""
 
 
228
 
229
  #: adminpages/advancedsettings.php:127
230
  msgid ""
231
  "Yes - Only members will see restricted posts/pages in searches and archives."
232
  msgstr ""
 
 
233
 
234
  #: adminpages/advancedsettings.php:133
235
  msgid "Show Excerpts to Non-Members?"
236
- msgstr "Afficher Extraits aux non-membres?"
237
 
238
  #: adminpages/advancedsettings.php:137
239
  msgid "No - Hide excerpts."
240
- msgstr "Non - Masquer extraits."
241
 
242
  #: adminpages/advancedsettings.php:138
243
  msgid "Yes - Show excerpts."
244
- msgstr "Oui - Voir les extraits."
245
 
246
  #: adminpages/advancedsettings.php:144
247
  msgid "Hide Ads From Members?"
@@ -256,30 +270,31 @@ msgstr "Non"
256
 
257
  #: adminpages/advancedsettings.php:149
258
  msgid "Hide Ads From All Members"
259
- msgstr "Masquer les publicités de tous les membres"
260
 
261
  #: adminpages/advancedsettings.php:150
262
  msgid "Hide Ads From Certain Members"
263
- msgstr "Masquer les publicités de certains membres"
264
 
265
  #: adminpages/advancedsettings.php:157
266
  msgid "Ads from the following plugins will be automatically turned off"
267
- msgstr "Publicités des plugins suivants seront automatiquement désactivés"
268
 
269
  #: adminpages/advancedsettings.php:158
270
  msgid "To hide ads in your template code, use code like the following"
271
  msgstr ""
272
- "Pour masquer des annonces dans le code de votre modèle, utiliser le code "
273
  "suivant"
274
 
275
  #: adminpages/advancedsettings.php:169
276
  msgid "Choose Levels to Hide Ads From"
277
- msgstr "Choisir les niveaux pour masquer les annonces de"
278
 
279
  #: adminpages/advancedsettings.php:203
280
  msgid "Redirect all traffic from registration page to /susbcription/?"
281
  msgstr ""
282
- "Rediriger tout le trafic à partir de la page d'inscription à /subscription/ ?"
 
283
 
284
  #: adminpages/advancedsettings.php:203
285
  msgid "multisite only"
@@ -297,15 +312,15 @@ msgstr "Utilisez reCAPTCHA?"
297
 
298
  #: adminpages/advancedsettings.php:220
299
  msgid "Yes - Free memberships only."
300
- msgstr "Oui - adhésions gratuites seulement."
301
 
302
  #: adminpages/advancedsettings.php:221
303
  msgid "Yes - All memberships."
304
- msgstr "Oui - Tous les abonnements."
305
 
306
  #: adminpages/advancedsettings.php:223
307
  msgid "A free reCAPTCHA key is required."
308
- msgstr "Une clé reCAPTCHA libre est nécessaire."
309
 
310
  #: adminpages/advancedsettings.php:223
311
  msgid "Click here to signup for reCAPTCHA"
@@ -321,7 +336,7 @@ msgstr "reCAPTCHA Clé privée"
321
 
322
  #: adminpages/advancedsettings.php:238
323
  msgid "Require Terms of Service on signups?"
324
- msgstr "Exiger Conditions d'utilisation sur inscriptions?"
325
 
326
  #: adminpages/advancedsettings.php:245
327
  msgid ""
@@ -329,11 +344,11 @@ msgid ""
329
  "using the dropdown above."
330
  msgstr ""
331
  "Si oui, créez une page WordPress contenant votre contrat de conditions "
332
- "d'utilisation et l'assigner en utilisant le menu déroulant ci-dessus."
333
 
334
  #: adminpages/advancedsettings.php:285
335
  msgid "selected"
336
- msgstr ""
337
 
338
  #: adminpages/advancedsettings.php:368 adminpages/pagesettings.php:251
339
  #: adminpages/paymentsettings.php:238
@@ -347,44 +362,45 @@ msgstr "Code promo mis à jour."
347
  #: adminpages/discountcodes.php:55
348
  msgid "Error updating discount code. That code may already be in use."
349
  msgstr ""
350
- "Erreur mise à jour de code de réduction. Ce code peut être déjà en cours "
351
- "d'utilisation."
352
 
353
  #: adminpages/discountcodes.php:64
354
  msgid "Discount code added successfully."
355
- msgstr "Code promo ajouté avec succès."
356
 
357
  #: adminpages/discountcodes.php:72
358
  msgid "Error adding discount code. That code may already be in use."
359
  msgstr ""
360
- "Erreur d'ajout de code de réduction. Ce code peut être déjà en cours "
361
- "d'utilisation."
362
 
363
  #: adminpages/discountcodes.php:197
364
  #, php-format
365
  msgid "Error saving values for the %s level."
366
- msgstr "Erreur en sauvegardant la valeur pour ce %s niveau."
367
 
368
  #: adminpages/discountcodes.php:205
369
  msgid "There were errors updating the level values: "
370
- msgstr "Il y eu des erreurs en mettant à jour les valeurs du niveau."
 
371
 
372
  #: adminpages/discountcodes.php:238
373
  #, php-format
374
  msgid "Code %s deleted successfully."
375
- msgstr "Code %s supprimé avec succés."
376
 
377
  #: adminpages/discountcodes.php:243
378
  msgid ""
379
- "Error deleting discount code. The code was only partially deleted. Please "
380
- "try again."
381
  msgstr ""
382
- "Erreur de suppression code de réduction. Le code n'a été que partiellement "
383
- "supprimé. S'il vous plaît essayer de nouveau."
384
 
385
  #: adminpages/discountcodes.php:249
386
  msgid "Error deleting code. Please try again."
387
- msgstr "Erreur de suppression du code. S'il vous plaît essayer de nouveau."
388
 
389
  #: adminpages/discountcodes.php:255
390
  msgid "Code not found."
@@ -407,7 +423,7 @@ msgstr ""
407
 
408
  #: adminpages/discountcodes.php:311 adminpages/orders.php:261
409
  msgid "This will be generated when you save."
410
- msgstr "Ce sera généré lorsque vous enregistrez."
411
 
412
  #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:587
413
  #: adminpages/orders.php:265 adminpages/orders.php:901
@@ -435,7 +451,7 @@ msgstr "Laissez ce champ vide pour des utilisations illimitées."
435
 
436
  #: adminpages/discountcodes.php:401
437
  msgid "Which Levels Will This Code Apply To?"
438
- msgstr ""
439
 
440
  #: adminpages/discountcodes.php:431 adminpages/membershiplevels.php:339
441
  msgid "Initial Payment"
@@ -443,19 +459,19 @@ msgstr "Paiement initial"
443
 
444
  #: adminpages/discountcodes.php:442 adminpages/membershiplevels.php:350
445
  msgid "The initial amount collected at registration."
446
- msgstr "Le montant initial recueillies lors de l'inscription."
447
 
448
  #: adminpages/discountcodes.php:447 adminpages/membershiplevels.php:354
449
  msgid "Recurring Subscription"
450
- msgstr "abonnement récurrent"
451
 
452
  #: adminpages/discountcodes.php:448 adminpages/membershiplevels.php:355
453
  msgid "Check if this level has a recurring subscription payment."
454
- msgstr "Vérifiez si ce niveau a un paiement d'abonnement récurrent."
455
 
456
  #: adminpages/discountcodes.php:452 adminpages/membershiplevels.php:359
457
  msgid "Billing Amount"
458
- msgstr "Montant de la facture"
459
 
460
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
461
  #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:477
@@ -487,17 +503,17 @@ msgstr "Le montant à facturer un cycle après le paiement initial."
487
 
488
  #: adminpages/discountcodes.php:480 adminpages/membershiplevels.php:401
489
  msgid "Billing Cycle Limit"
490
- msgstr "Facturation Limite de cycle"
491
 
492
  #: adminpages/discountcodes.php:483 adminpages/membershiplevels.php:405
493
  msgid ""
494
- "The <strong>total</strong> number of recurring billing cycles for this "
495
- "level, including the trial period (if applicable) but not including the "
496
- "initial payment. Set to zero if membership is indefinite."
497
  msgstr ""
498
- "Le nombre <strong>total</strong> de cycles de facturation récurrente pour ce "
499
  "niveau, y compris la période d'essai (le cas échéant), mais non compris le "
500
- "paiement initial. Mis à zéro si l'adhésion est indéterminée."
501
 
502
  #: adminpages/discountcodes.php:488 adminpages/membershiplevels.php:414
503
  msgid "Custom Trial"
@@ -509,7 +525,7 @@ msgstr "Cochez pour ajouter une période d'essai personnalisé."
509
 
510
  #: adminpages/discountcodes.php:493 adminpages/membershiplevels.php:425
511
  msgid "Trial Billing Amount"
512
- msgstr "Essai montant de facturation"
513
 
514
  #: adminpages/discountcodes.php:504 adminpages/membershiplevels.php:436
515
  msgid "for the first"
@@ -525,11 +541,11 @@ msgstr "Expiration de l'adhésion"
525
 
526
  #: adminpages/discountcodes.php:512 adminpages/membershiplevels.php:468
527
  msgid "Check this to set when membership access expires."
528
- msgstr "Cochez cette case pour définir si le niveau d'adhésion expire."
529
 
530
  #: adminpages/discountcodes.php:516 adminpages/membershiplevels.php:472
531
  msgid "Expires In"
532
- msgstr "expire en"
533
 
534
  #: adminpages/discountcodes.php:529 adminpages/membershiplevels.php:485
535
  msgid ""
@@ -537,17 +553,17 @@ msgid ""
537
  "(recurring subscription, if any) will be cancelled when the membership "
538
  "expires."
539
  msgstr ""
540
- "Réglez la durée du niveau d'adhésion. Notez que les tous les paiements "
541
- "futurs (abonnement récurrent, le cas échéant) seront annulés lorsque "
542
- "l'abonnement expirera."
543
 
544
  #: adminpages/discountcodes.php:557
545
  msgid "Memberships Discount Codes"
546
- msgstr "Adhésions Codes de réduction"
547
 
548
  #: adminpages/discountcodes.php:567
549
  msgid "Search Discount Codes"
550
- msgstr "Recherche Codes de réduction"
551
 
552
  #: adminpages/discountcodes.php:570 adminpages/reports/login.php:83
553
  msgid "Search"
@@ -555,7 +571,7 @@ msgstr "Rechercher"
555
 
556
  #: adminpages/discountcodes.php:588
557
  msgid "Starts"
558
- msgstr "Démarrages"
559
 
560
  #: adminpages/discountcodes.php:589 adminpages/memberslist.php:169
561
  #: adminpages/reports/login.php:147 includes/profile.php:98
@@ -571,12 +587,12 @@ msgid ""
571
  "Discount codes allow you to offer your memberships at discounted prices to "
572
  "select customers."
573
  msgstr ""
574
- "Ces codes de réduction vous permet d'offrir à vos abonnements des prix "
575
- "réduits pour choisir les clients."
576
 
577
  #: adminpages/discountcodes.php:603
578
  msgid "Create your first discount code now"
579
- msgstr "Créer votre premier code de réduction maintenant"
580
 
581
  #: adminpages/discountcodes.php:648 adminpages/membershiplevels.php:580
582
  #: adminpages/orders.php:979
@@ -590,9 +606,9 @@ msgid ""
590
  "existing users will not change, but new users will not be able to use this "
591
  "code anymore."
592
  msgstr ""
593
- "Etes-vous sûr de vouloir effacer le %s code de réduction? Les abonnements "
594
  "pour les utilisateurs existants ne changeront pas, mais les nouveaux "
595
- "utilisateurs ne seront pas en mesure d'utiliser ce code plus."
596
 
597
  #: adminpages/discountcodes.php:651 adminpages/membershiplevels.php:580
598
  #: adminpages/orders.php:985
@@ -602,7 +618,7 @@ msgstr "supprimer"
602
  #: adminpages/emailsettings.php:69 includes/adminpages.php:50
603
  #: includes/adminpages.php:128
604
  msgid "Email Settings"
605
- msgstr "Paramètres d'e-mail"
606
 
607
  #: adminpages/emailsettings.php:70
608
  msgid ""
@@ -610,47 +626,47 @@ msgid ""
610
  "<em><strong>wordpress@yourdomain.com</strong></em>. You can update this from "
611
  "address using the fields below."
612
  msgstr ""
613
- "Par défaut, les e-mails générés par le système sont envoyés par "
614
- "<em><strong>wordpress@yourdomain.com</strong></em>. Vous pouvez mettre à "
615
- "jour cette adresse en utilisant les champs ci-dessous"
616
 
617
  #: adminpages/emailsettings.php:72
618
  msgid ""
619
  "To modify the appearance of system generated emails, add the files "
620
  "<em>email_header.html</em> and <em>email_footer.html</em> to your theme's "
621
  "directory. This will modify both the WordPress default messages as well as "
622
- "messages generated by Paid Memberships Pro. <a title=\"Paid Memberships Pro "
623
- "- Member Communications\" target=\"_blank\" href=\"http://www."
624
  "paidmembershipspro.com/documentation/member-communications/\">Click here to "
625
  "learn more about Paid Memberships Pro emails</a>."
626
  msgstr ""
627
- "Pour modifier l'apparence des e-mails générés, ajoutez les fichiers "
628
  "<em>email_header.html</em> et <em>email_footer.html</em> dans le répertoire "
629
- "de votre thème. Cela va modifier à la fois les messages par défaut de "
630
- "Wordpress ainsi que les messages générés par Paid Menberships Pro. <a title="
631
- "\"Paid Memberships Pro - Member Communications\" target=\"_blank\" href="
632
- "\"http://www.paidmembershipspro.com/documentation/member-communications/"
633
- "\">Clic ici pour en apprendre plus sur Paid Memberships Pro emails</a>."
634
 
635
  #: adminpages/emailsettings.php:78
636
  msgid "From Email"
637
- msgstr "De E-mail"
638
 
639
  #: adminpages/emailsettings.php:86
640
  msgid "From Name"
641
- msgstr "De Nom"
642
 
643
  #: adminpages/emailsettings.php:94
644
  msgid "Only Filter PMPro Emails?"
645
- msgstr "Filtrer seulement les e-mails de PMPro?"
646
 
647
  #: adminpages/emailsettings.php:98
648
  msgid "If unchecked, all emails from \"WordPress &lt;"
649
- msgstr "Si décocher, tous les e-mails venant de \"WordPress &lt;"
650
 
651
  #: adminpages/emailsettings.php:115
652
  msgid "Send the site admin emails"
653
- msgstr "Envoyer les e-mails d'administration du site."
654
 
655
  #: adminpages/emailsettings.php:121
656
  msgid "Checkout"
@@ -662,12 +678,12 @@ msgstr "quand un membre paye."
662
 
663
  #: adminpages/emailsettings.php:130
664
  msgid "Admin Changes"
665
- msgstr "Administration des changements"
666
 
667
  #: adminpages/emailsettings.php:134
668
  msgid "when an admin changes a user's membership level through the dashboard."
669
  msgstr ""
670
- "quand une administration change le niveau d'adhésion d'un utilisateur par le "
671
  "tableau de bord."
672
 
673
  #: adminpages/emailsettings.php:139
@@ -688,7 +704,7 @@ msgstr "lorsqu'un utilisateur met à jour ses informations de facturation."
688
 
689
  #: adminpages/emailsettings.php:158
690
  msgid "Send members emails"
691
- msgstr "Envoyer des e-mails aux membres"
692
 
693
  #: adminpages/emailsettings.php:164
694
  msgid "New Users"
@@ -699,13 +715,13 @@ msgid ""
699
  "Default WP notification email. (Recommended: Leave unchecked. Members will "
700
  "still get an email confirmation from PMPro after checkout.)"
701
  msgstr ""
702
- "Notification e-mail de Wordpress par défaut. (Recommandé : Laissez décochée. "
703
- "Les membres continueront de recevoir un e-mail de confirmation de PMPpro "
704
- "aprés paiement."
705
 
706
  #: adminpages/membershiplevels.php:118
707
  msgid "Membership level updated successfully."
708
- msgstr "Niveau d'adhésion mis à jour avec succès."
709
 
710
  #: adminpages/membershiplevels.php:124
711
  msgid "Error updating membership level."
@@ -713,11 +729,11 @@ msgstr "Erreur de mise à jour du niveau d'adhésion."
713
 
714
  #: adminpages/membershiplevels.php:141
715
  msgid "Membership level added successfully."
716
- msgstr "Niveau d'adhésion ajouté avec succés."
717
 
718
  #: adminpages/membershiplevels.php:146
719
  msgid "Error adding membership level."
720
- msgstr "Erreur en ajoutant un niveau d'adhésion."
721
 
722
  #: adminpages/membershiplevels.php:181
723
  #, php-format
@@ -726,9 +742,9 @@ msgid ""
726
  "want to check your payment gateway to see if their subscription is still "
727
  "active."
728
  msgstr ""
729
- "Il a eu une erreur en annulant l'abonnement de l'utilisateur avec ID=%d. "
730
- "Vous devriez vérifier votre passerelle de paiement pour voir si leur "
731
- "abonnement est toujours actif."
732
 
733
  #: adminpages/membershiplevels.php:184
734
  msgid "Last Invoice"
@@ -736,15 +752,15 @@ msgstr "Dernière facture"
736
 
737
  #: adminpages/membershiplevels.php:198
738
  msgid "Membership level deleted successfully."
739
- msgstr "Niveau d'adhésioin supprimé avec succès."
740
 
741
  #: adminpages/membershiplevels.php:203 adminpages/membershiplevels.php:209
742
  msgid "Error deleting membership level."
743
- msgstr "Erreur en supprimant le niveau d'adhésion."
744
 
745
  #: adminpages/membershiplevels.php:224
746
  msgid "Edit Membership Level"
747
- msgstr "Editer le niveau d'adhésion."
748
 
749
  #: adminpages/membershiplevels.php:226
750
  msgid "Add New Membership Level"
@@ -765,7 +781,7 @@ msgstr "Message de confirmation"
765
 
766
  #: adminpages/membershiplevels.php:335 adminpages/membershiplevels.php:543
767
  msgid "Billing Details"
768
- msgstr "Détails de facturation."
769
 
770
  #: adminpages/membershiplevels.php:370
771
  #: classes/gateways/class.pmprogateway_stripe.php:619
@@ -777,22 +793,24 @@ msgid ""
777
  "Stripe integration currently only supports billing periods of \"Week\", "
778
  "\"Month\" or \"Year\"."
779
  msgstr ""
 
 
780
 
781
  #: adminpages/membershiplevels.php:387
782
  msgid ""
783
- "Braintree integration currently only supports billing periods of \"Month\" "
784
- "or \"Year\"."
785
  msgstr ""
786
- "Intégration de Braintree supporte actuellement que les périodes de "
787
- "facturation de \"Month\" ou \"Year\"."
788
 
789
  #: adminpages/membershiplevels.php:389
790
  msgid ""
791
  "Payflow integration currently only supports billing frequencies of 1 and "
792
  "billing periods of \"Week\", \"Month\" or \"Year\"."
793
  msgstr ""
794
- "Intégration de Payflow supporte actuellement les fréquences de facturation "
795
- "de 1 et les périodes de facturation de \"Week\", \"Month\" ou \"Year\"."
796
 
797
  #: adminpages/membershiplevels.php:393 adminpages/membershiplevels.php:395
798
  #: classes/gateways/class.pmprogateway_cybersource.php:101
@@ -808,17 +826,17 @@ msgid ""
808
  "Braintree dashboard with the same settings and the \"Plan ID\" set to "
809
  "<em>pmpro_#</em>, where # is the level ID."
810
  msgstr ""
811
- "Après avoir sauvé ce niveau, prendre note de l'ID et crée un \"Plan\" dans "
812
- "votre tableau de bord Braintree avec les mêmes réglages et le \"Plan ID\" "
813
- "mis à <em>pmpro_#</em>, où # est l'ID du niveau."
814
 
815
  #: adminpages/membershiplevels.php:395
816
  msgid ""
817
  "You will need to create a \"Plan\" in your Braintree dashboard with the same "
818
  "settings and the \"Plan ID\" set to"
819
  msgstr ""
820
- "Vous aurez besoin de créer un \"Plan\" dans votre tableau de bord Braintree "
821
- "avec les mêmes réglages et le \"Plan ID\" mis à "
822
 
823
  #: adminpages/membershiplevels.php:407
824
  msgid ""
@@ -833,28 +851,31 @@ msgid ""
833
  "2Checkout integration does not support custom trials. You can do one period "
834
  "trials by setting an initial payment different from the billing amount."
835
  msgstr ""
 
 
 
836
 
837
  #: adminpages/membershiplevels.php:441
838
  msgid ""
839
  "Stripe integration currently does not support trial amounts greater than $0."
840
  msgstr ""
841
- "L'intégration de Stripe ne supporte actuellement pas les périodes d'essai "
842
- "supérieur à 0€"
843
 
844
  #: adminpages/membershiplevels.php:445
845
  msgid ""
846
  "Braintree integration currently does not support trial amounts greater than "
847
  "$0."
848
  msgstr ""
849
- "L'intégration de Braintree ne supporte actuellement pas les périodes d'essai "
850
- "supérieur à 0€"
851
 
852
  #: adminpages/membershiplevels.php:449
853
  msgid ""
854
  "Payflow integration currently does not support trial amounts greater than $0."
855
  msgstr ""
856
- "L'intégration de Payflow ne supporte actuellement pas les périodes d'essai "
857
- "supérieur à 0€"
858
 
859
  #: adminpages/membershiplevels.php:458
860
  msgid "Other Settings"
@@ -869,8 +890,8 @@ msgid ""
869
  "Check to hide this level from the membership levels page and disable "
870
  "registration."
871
  msgstr ""
872
- "Cocher pour cacher ce niveau de la page des niveaux d'adhésion et désactiver "
873
- "l'enregistrement."
874
 
875
  #: adminpages/membershiplevels.php:493
876
  msgid "Content Settings"
@@ -901,7 +922,7 @@ msgstr "Recherche de niveaux"
901
  #: pages/confirmation.php:83 pages/invoice.php:70
902
  #: shortcodes/pmpro_account.php:46
903
  msgid "Expiration"
904
- msgstr ""
905
 
906
  #: adminpages/membershiplevels.php:545
907
  msgid "Allow Signups"
@@ -1006,27 +1027,27 @@ msgstr "Terminé"
1006
 
1007
  #: adminpages/memberslist.php:251 adminpages/reports/login.php:212
1008
  msgid "No members found."
1009
- msgstr "Aucun membres trouvés."
1010
 
1011
  #: adminpages/memberslist.php:251 adminpages/reports/login.php:212
1012
  msgid "Search all levels"
1013
- msgstr "Rechercher tous les niveaux"
1014
 
1015
  #: adminpages/orders.php:67
1016
  msgid "Order deleted successfully."
1017
- msgstr "Commande supprimé avec succès"
1018
 
1019
  #: adminpages/orders.php:72
1020
  msgid "Error deleting order."
1021
- msgstr "Erreur de suppresion de la commande."
1022
 
1023
  #: adminpages/orders.php:169
1024
  msgid "Order saved successfully."
1025
- msgstr "Commande sauvegardé avec succès."
1026
 
1027
  #: adminpages/orders.php:174
1028
  msgid "Error updating order timestamp."
1029
- msgstr "Erreur en mettant à jour le timestamp de la commande"
1030
 
1031
  #: adminpages/orders.php:180
1032
  msgid "Error saving order."
@@ -1094,11 +1115,11 @@ msgstr "Montant du coupon"
1094
 
1095
  #: adminpages/orders.php:370 adminpages/orders.php:905 pages/invoice.php:84
1096
  msgid "Total"
1097
- msgstr "Totale"
1098
 
1099
  #: adminpages/orders.php:375
1100
  msgid "Should be subtotal + tax - couponamount."
1101
- msgstr "Devrait être le sous-total + La taxe + le montant du coupon."
1102
 
1103
  #: adminpages/orders.php:380
1104
  msgid "Payment Type"
@@ -1106,7 +1127,7 @@ msgstr "Type de paiement"
1106
 
1107
  #: adminpages/orders.php:385
1108
  msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
1109
- msgstr ""
1110
 
1111
  #: adminpages/orders.php:389
1112
  #: classes/gateways/class.pmprogateway_braintree.php:304
@@ -1117,7 +1138,7 @@ msgstr "Type de carte"
1117
 
1118
  #: adminpages/orders.php:394
1119
  msgid "e.g. Visa, MasterCard, AMEX, etc"
1120
- msgstr ""
1121
 
1122
  #: adminpages/orders.php:398
1123
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
@@ -1126,7 +1147,7 @@ msgstr "Numéro de compte"
1126
 
1127
  #: adminpages/orders.php:403
1128
  msgid "Obscure all but last 4 digits."
1129
- msgstr "Obscure tout sauf les 4 derniers chiffres."
1130
 
1131
  #: adminpages/orders.php:408
1132
  msgid "Expiration Month"
@@ -1162,16 +1183,15 @@ msgstr "ID de la transaction du paiement"
1162
 
1163
  #: adminpages/orders.php:479
1164
  msgid "Generated by the gateway. Useful to cross reference orders."
1165
- msgstr ""
1166
- "Généré par la passerelle. Utile pour voir les références des commandes."
1167
 
1168
  #: adminpages/orders.php:483
1169
  msgid "Subscription Transaction ID"
1170
- msgstr ""
1171
 
1172
  #: adminpages/orders.php:488
1173
  msgid "Generated by the gateway. Useful to cross reference subscriptions."
1174
- msgstr "Généré par la passerelle. Utile pour voir la référence des abonnements"
1175
 
1176
  #: adminpages/orders.php:493 adminpages/orders.php:910 pages/invoice.php:107
1177
  #: shortcodes/pmpro_account.php:122
@@ -1192,7 +1212,7 @@ msgstr "Remarques"
1192
 
1193
  #: adminpages/orders.php:560
1194
  msgid "Save Order"
1195
- msgstr "Sauver la commande"
1196
 
1197
  #: adminpages/orders.php:570 includes/adminpages.php:55
1198
  #: includes/adminpages.php:163
@@ -1201,47 +1221,47 @@ msgstr "Commandes"
1201
 
1202
  #: adminpages/orders.php:571
1203
  msgid "Add New Order"
1204
- msgstr "Ajouter nouvelle commande"
1205
 
1206
  #: adminpages/orders.php:605
1207
  msgid "All"
1208
- msgstr ""
1209
 
1210
  #: adminpages/orders.php:606
1211
  msgid "Within a Date Range"
1212
- msgstr ""
1213
 
1214
  #: adminpages/orders.php:607
1215
  msgid "Predefined Date Range"
1216
- msgstr ""
1217
 
1218
  #: adminpages/orders.php:608
1219
  msgid "Within a Level"
1220
- msgstr ""
1221
 
1222
  #: adminpages/orders.php:609
1223
  msgid "Within a Status"
1224
- msgstr ""
1225
 
1226
  #: adminpages/orders.php:612
1227
  msgid "From"
1228
- msgstr ""
1229
 
1230
  #: adminpages/orders.php:624
1231
  msgid "To"
1232
- msgstr ""
1233
 
1234
  #: adminpages/orders.php:636
1235
  msgid "filter by "
1236
- msgstr ""
1237
 
1238
  #: adminpages/orders.php:674
1239
  msgid "Filter"
1240
- msgstr ""
1241
 
1242
  #: adminpages/orders.php:777 adminpages/orders.php:780
1243
  msgid "Search Orders"
1244
- msgstr "Rechercher les commandes"
1245
 
1246
  #: adminpages/orders.php:893
1247
  #, php-format
@@ -1281,41 +1301,41 @@ msgid ""
1281
  "Deleting orders is permanent and can affect active users. Are you sure you "
1282
  "want to delete order %s?"
1283
  msgstr ""
1284
- "La suppresion de commande est permanente et peut affecter les utilisateurs "
1285
- "actifs. Etes-vous sûr de vouloir supprimer la commande %s ?"
1286
 
1287
  #: adminpages/orders.php:995
1288
  msgid "No orders found."
1289
- msgstr "Aucune commandes trouvées."
1290
 
1291
  #: adminpages/pagesettings.php:51
1292
  msgid "Membership Account"
1293
- msgstr ""
1294
 
1295
  #: adminpages/pagesettings.php:54
1296
  msgid "Membership Billing"
1297
- msgstr ""
1298
 
1299
  #: adminpages/pagesettings.php:57
1300
  msgid "Membership Cancel"
1301
- msgstr ""
1302
 
1303
  #: adminpages/pagesettings.php:60
1304
  msgid "Membership Checkout"
1305
- msgstr ""
1306
 
1307
  #: adminpages/pagesettings.php:63
1308
  msgid "Membership Confirmation"
1309
- msgstr ""
1310
 
1311
  #: adminpages/pagesettings.php:66
1312
  msgid "Membership Invoice"
1313
- msgstr ""
1314
 
1315
  #: adminpages/pagesettings.php:73
1316
  #, php-format
1317
  msgid "Membership %s"
1318
- msgstr ""
1319
 
1320
  #: adminpages/pagesettings.php:111
1321
  msgid "The following pages have been created for you"
@@ -1325,8 +1345,7 @@ msgstr "Les pages qui suivent ont été créés pour vous"
1325
  msgid ""
1326
  "Manage the WordPress pages assigned to each required Paid Memberships Pro "
1327
  "page."
1328
- msgstr ""
1329
- "Gérer les pages Wordpress assignées à chaque page Paid Memberships Pro."
1330
 
1331
  #: adminpages/pagesettings.php:132
1332
  msgid ""
@@ -1379,7 +1398,7 @@ msgstr "Page d'annulation"
1379
 
1380
  #: adminpages/pagesettings.php:186
1381
  msgid "Checkout Page"
1382
- msgstr "Page de contröle"
1383
 
1384
  #: adminpages/pagesettings.php:202
1385
  msgid "Confirmation Page"
@@ -1387,7 +1406,7 @@ msgstr "Page de confirmation"
1387
 
1388
  #: adminpages/pagesettings.php:218
1389
  msgid "Invoice Page"
1390
- msgstr "Page de facture"
1391
 
1392
  #: adminpages/pagesettings.php:234
1393
  msgid "Levels Page"
@@ -1410,8 +1429,8 @@ msgid ""
1410
  "Learn more about <a title=\"Paid Memberships Pro - SSL Settings\" target="
1411
  "\"_blank\" href=\"http://www.paidmembershipspro.com/support/initial-plugin-"
1412
  "setup/ssl/\">SSL</a> or <a title=\"Paid Memberships Pro - Payment Gateway "
1413
- "Settings\" target=\"_blank\" href=\"http://www.paidmembershipspro.com/"
1414
- "support/initial-plugin-setup/payment-gateway/\">Payment Gateway Settings</a>."
1415
  msgstr ""
1416
 
1417
  #: adminpages/paymentsettings.php:153
@@ -1420,19 +1439,19 @@ msgstr "Devise"
1420
 
1421
  #: adminpages/paymentsettings.php:169
1422
  msgid ""
1423
- "Not all currencies will be supported by every gateway. Please check with "
1424
- "your gateway."
1425
  msgstr ""
1426
  "Toutes les devises ne sont pas supportées par chaque passerelle de paiement. "
1427
  "Veuillez vérifier votre passerelle de paiement."
1428
 
1429
  #: adminpages/paymentsettings.php:174
1430
  msgid "Accepted Credit Card Types"
1431
- msgstr "Type de cartes de crédit accepté"
1432
 
1433
  #: adminpages/paymentsettings.php:188
1434
  msgid "Sales Tax"
1435
- msgstr "La taxe de vente"
1436
 
1437
  #: adminpages/paymentsettings.php:188 pages/billing.php:82
1438
  msgid "optional"
@@ -1440,15 +1459,15 @@ msgstr "optionnel"
1440
 
1441
  #: adminpages/paymentsettings.php:191
1442
  msgid "Tax State"
1443
- msgstr "Impot d'état"
1444
 
1445
  #: adminpages/paymentsettings.php:192
1446
  msgid "abbreviation, e.g. \"PA\""
1447
- msgstr "abréviation, e.g. \"PA\""
1448
 
1449
  #: adminpages/paymentsettings.php:194
1450
  msgid "decimal, e.g. \"0.06\""
1451
- msgstr "décimal, e.g. \"0.06\""
1452
 
1453
  #: adminpages/paymentsettings.php:195
1454
  msgid ""
@@ -1457,14 +1476,19 @@ msgid ""
1457
  "<a target=\"_blank\" href=\"http://www.paidmembershipspro.com/2013/10/non-us-"
1458
  "taxes-paid-memberships-pro/\">pmpro_tax filter</a>."
1459
  msgstr ""
 
 
 
 
 
1460
 
1461
  #: adminpages/paymentsettings.php:206
1462
  msgid "Force SSL"
1463
- msgstr ""
1464
 
1465
  #: adminpages/paymentsettings.php:212
1466
  msgid "Yes (with JavaScript redirects)"
1467
- msgstr ""
1468
 
1469
  #: adminpages/paymentsettings.php:219
1470
  msgid "SSL Seal Code"
@@ -1472,7 +1496,7 @@ msgstr "Code d'approbation SSL"
1472
 
1473
  #: adminpages/paymentsettings.php:228
1474
  msgid "Extra HTTPS URL Filter"
1475
- msgstr ""
1476
 
1477
  #: adminpages/paymentsettings.php:231
1478
  msgid ""
@@ -1480,6 +1504,9 @@ msgid ""
1480
  "secure pages. Check this if you are using SSL and have warnings on your "
1481
  "checkout pages."
1482
  msgstr ""
 
 
 
1483
 
1484
  #: adminpages/reports.php:40
1485
  msgid "Details"
@@ -1507,7 +1534,7 @@ msgstr "Vues ajourdhui"
1507
 
1508
  #: adminpages/reports/login.php:33 adminpages/reports/login.php:151
1509
  msgid "Views This Month"
1510
- msgstr "Vues ce moi ci"
1511
 
1512
  #: adminpages/reports/login.php:34
1513
  msgid "Views All Time"
@@ -1543,7 +1570,7 @@ msgstr "Totale des visites"
1543
 
1544
  #: adminpages/reports/login.php:152
1545
  msgid "Total Views"
1546
- msgstr "Totales des vues"
1547
 
1548
  #: adminpages/reports/login.php:153
1549
  msgid "Last Login"
@@ -1551,52 +1578,51 @@ msgstr "Dernière connexion"
1551
 
1552
  #: adminpages/reports/login.php:155
1553
  msgid "Total Logins"
1554
- msgstr "Totales des connexions"
1555
 
1556
- #: adminpages/reports/memberships.php:18
1557
- #: adminpages/reports/memberships.php:288
1558
  msgid "Membership Stats"
1559
- msgstr ""
1560
 
1561
  #: adminpages/reports/memberships.php:48
1562
  msgid "Signups"
1563
- msgstr ""
1564
 
1565
  #: adminpages/reports/memberships.php:50 adminpages/reports/memberships.php:69
1566
  msgid "All Time"
1567
- msgstr ""
1568
 
1569
  #: adminpages/reports/memberships.php:54 adminpages/reports/memberships.php:73
1570
  msgid "This Year"
1571
- msgstr ""
1572
 
1573
  #: adminpages/reports/memberships.php:58 adminpages/reports/memberships.php:77
1574
  msgid "This Month"
1575
- msgstr ""
1576
 
1577
  #: adminpages/reports/memberships.php:62 adminpages/reports/memberships.php:81
1578
  msgid "Today"
1579
- msgstr ""
1580
 
1581
  #: adminpages/reports/memberships.php:67
1582
  msgid "Cancellations"
1583
- msgstr ""
1584
 
1585
  #: adminpages/reports/memberships.php:86
1586
  msgid "Other Stats"
1587
- msgstr ""
1588
 
1589
  #: adminpages/reports/memberships.php:88
1590
  msgid "Monthly Recurring Revenue (MRR)"
1591
- msgstr ""
1592
 
1593
  #: adminpages/reports/memberships.php:92
1594
  msgid "Cancellation Rate"
1595
- msgstr ""
1596
 
1597
  #: adminpages/reports/memberships.php:96
1598
  msgid "Lifetime Value (LTV)"
1599
- msgstr ""
1600
 
1601
  #: adminpages/reports/memberships.php:294 adminpages/reports/sales.php:195
1602
  msgid "Daily"
@@ -1608,11 +1634,11 @@ msgstr "Mensuellement"
1608
 
1609
  #: adminpages/reports/memberships.php:296 adminpages/reports/sales.php:197
1610
  msgid "Annual"
1611
- msgstr "Annuel"
1612
 
1613
  #: adminpages/reports/memberships.php:299
1614
  msgid "Signups vs. Cancellations"
1615
- msgstr ""
1616
 
1617
  #: adminpages/reports/memberships.php:304
1618
  #: adminpages/reports/memberships.php:315 adminpages/reports/sales.php:203
@@ -1622,19 +1648,19 @@ msgstr "pour"
1622
 
1623
  #: adminpages/reports/memberships.php:331 adminpages/reports/sales.php:230
1624
  msgid "Generate Report"
1625
- msgstr "Produisez Rapport"
1626
 
1627
  #: adminpages/reports/sales.php:18
1628
  msgid "Sales and Revenue (Testing/Sandbox)"
1629
- msgstr "Ventes et Revenu (Environnement de test)"
1630
 
1631
  #: adminpages/reports/sales.php:20 adminpages/reports/sales.php:189
1632
  msgid "Sales and Revenue"
1633
- msgstr "Ventes et Revenu"
1634
 
1635
  #: adminpages/reports/sales.php:200
1636
  msgid "Revenue"
1637
- msgstr "Revenu"
1638
 
1639
  #: adminpages/reports/sales.php:201
1640
  msgid "Sales"
@@ -1647,9 +1673,9 @@ msgid ""
1647
  "want to check your payment gateway to see if their subscription is still "
1648
  "active."
1649
  msgstr ""
1650
- "Il y a eu une erreur d'annulation d'abonnement for l'utilisateur avec l ID="
1651
- "%s. Vous voudrez vérifier votre passerelle de paiement pour voir si leur "
1652
- "abonnement est toujours actif."
1653
 
1654
  #: classes/class.pmproemail.php:37
1655
  #, php-format
@@ -1659,12 +1685,12 @@ msgstr "Un Courrier électronique de %s"
1659
  #: classes/class.pmproemail.php:125
1660
  #, php-format
1661
  msgid "Your membership at %s has been CANCELLED"
1662
- msgstr "Votre adhésion à %s a été ANNULÉE"
1663
 
1664
  #: classes/class.pmproemail.php:147
1665
  #, php-format
1666
  msgid "Membership for %s at %s has been CANCELLED"
1667
- msgstr "L'adhésion pour %s à %s a été ANNULÉE"
1668
 
1669
  #: classes/class.pmproemail.php:178
1670
  #, php-format
@@ -1690,7 +1716,7 @@ msgstr "Cette adhésion prendra fin le %s."
1690
  #: classes/class.pmproemail.php:278
1691
  #, php-format
1692
  msgid "Member Checkout for %s at %s"
1693
- msgstr "Controle de membre pour %s à %s"
1694
 
1695
  #: classes/class.pmproemail.php:366
1696
  #, php-format
@@ -1715,7 +1741,7 @@ msgstr "Le paiement de l'adhésion a échoué pour %s à %s"
1715
  #: classes/class.pmproemail.php:560
1716
  #, php-format
1717
  msgid "Credit Card on File Expiring Soon at %s"
1718
- msgstr ""
1719
 
1720
  #: classes/class.pmproemail.php:608
1721
  #, php-format
@@ -1725,7 +1751,7 @@ msgstr "FACTURE pour adhésion %s"
1725
  #: classes/class.pmproemail.php:679
1726
  #, php-format
1727
  msgid "Your trial at %s is ending soon"
1728
- msgstr "Votre période d'éssai à %s se termine bientôt"
1729
 
1730
  #: classes/class.pmproemail.php:713
1731
  #, php-format
@@ -1745,11 +1771,11 @@ msgstr "Votre adhésion à %s a été changée"
1745
  #: classes/class.pmproemail.php:762 classes/class.pmproemail.php:800
1746
  #, php-format
1747
  msgid "The new level is %s"
1748
- msgstr ""
1749
 
1750
  #: classes/class.pmproemail.php:764
1751
  msgid "Your membership has been cancelled"
1752
- msgstr "Votre adhésion a été supprimée"
1753
 
1754
  #: classes/class.pmproemail.php:768 classes/class.pmproemail.php:806
1755
  #, php-format
@@ -1758,16 +1784,16 @@ msgstr "Cette adhésion prendra fin le %s"
1758
 
1759
  #: classes/class.pmproemail.php:772 classes/class.pmproemail.php:810
1760
  msgid "This membership does not expire"
1761
- msgstr "Cette adhésion n'expire pas"
1762
 
1763
  #: classes/class.pmproemail.php:796
1764
  #, php-format
1765
  msgid "Membership for %s at %s has been changed"
1766
- msgstr "Adhésion de %s à %s a été changé"
1767
 
1768
  #: classes/class.pmproemail.php:802
1769
  msgid "Membership has been cancelled"
1770
- msgstr ""
1771
 
1772
  #: classes/gateways/class.pmprogateway.php:55
1773
  #: classes/gateways/class.pmprogateway_authorizenet.php:171
@@ -1804,17 +1830,17 @@ msgid ""
1804
  "A partial payment was made that we could not void. Please contact the site "
1805
  "owner immediately to correct this."
1806
  msgstr ""
1807
- "Un paiement partiel que nous ne pouvions pas annuler a été fait. S'il vous "
1808
- "plaît contacter le propriétaire du site immédiatement pour corriger cela."
1809
 
1810
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
1811
  #: paid-memberships-pro.php:123
1812
  msgid "Authorize.net"
1813
- msgstr ""
1814
 
1815
  #: classes/gateways/class.pmprogateway_authorizenet.php:93
1816
  msgid "Authorize.net Settings"
1817
- msgstr ""
1818
 
1819
  #: classes/gateways/class.pmprogateway_authorizenet.php:98
1820
  msgid "Login Name"
@@ -1843,11 +1869,11 @@ msgstr "Impossible de se connecter à Authorize.net"
1843
  #: classes/gateways/class.pmprogateway_braintree.php:76
1844
  #: paid-memberships-pro.php:124
1845
  msgid "Braintree Payments"
1846
- msgstr ""
1847
 
1848
  #: classes/gateways/class.pmprogateway_braintree.php:132
1849
  msgid "Braintree Settings"
1850
- msgstr ""
1851
 
1852
  #: classes/gateways/class.pmprogateway_braintree.php:137
1853
  #: classes/gateways/class.pmprogateway_cybersource.php:106
@@ -1904,26 +1930,26 @@ msgstr "Code de sécurité"
1904
  #: classes/gateways/class.pmprogateway_stripe.php:487 pages/billing.php:286
1905
  #: pages/checkout.php:586
1906
  msgid "what's this?"
1907
- msgstr "qu'est ce que c'est?"
1908
 
1909
  #: classes/gateways/class.pmprogateway_braintree.php:364
1910
  #: classes/gateways/class.pmprogateway_stripe.php:497 pages/checkout.php:78
1911
  #: pages/checkout.php:596
1912
  msgid "Apply"
1913
- msgstr "appliquer"
1914
 
1915
  #: classes/gateways/class.pmprogateway_braintree.php:419
1916
  #: classes/gateways/class.pmprogateway_stripe.php:1025
1917
  msgid "Unknown error: Initial payment failed."
1918
- msgstr "Erreur inconnue: paiement initial a échoué."
1919
 
1920
  #: classes/gateways/class.pmprogateway_braintree.php:478
1921
  msgid "Error during settlement:"
1922
- msgstr "Erreur lors du règlement:"
1923
 
1924
  #: classes/gateways/class.pmprogateway_braintree.php:487
1925
  msgid "Error during charge:"
1926
- msgstr "Erreur lors de la charge:"
1927
 
1928
  #: classes/gateways/class.pmprogateway_braintree.php:579
1929
  msgid "Failed to update customer."
@@ -1935,15 +1961,15 @@ msgstr "Impossible de créer le client."
1935
 
1936
  #: classes/gateways/class.pmprogateway_braintree.php:634
1937
  msgid "Error creating customer record with Braintree:"
1938
- msgstr "Erreur de création du dossier client avec Braintree:"
1939
 
1940
  #: classes/gateways/class.pmprogateway_braintree.php:734
1941
  msgid "Error subscribing customer to plan with Braintree:"
1942
- msgstr "Erreur d'abonnement de l'utilisater avec Braintree"
1943
 
1944
  #: classes/gateways/class.pmprogateway_braintree.php:749
1945
  msgid "Failed to subscribe with Braintree:"
1946
- msgstr "Souscription échoué avec Braintree:"
1947
 
1948
  #: classes/gateways/class.pmprogateway_braintree.php:787
1949
  #: classes/gateways/class.pmprogateway_braintree.php:800
@@ -1954,21 +1980,23 @@ msgstr "Impossible de trouver l'abonnement."
1954
  #: classes/gateways/class.pmprogateway_check.php:48
1955
  #: paid-memberships-pro.php:117
1956
  msgid "Pay by Check"
1957
- msgstr "Paie par chèque"
1958
 
1959
  #: classes/gateways/class.pmprogateway_check.php:100
1960
  msgid "Pay by Check Settings"
1961
- msgstr ""
1962
 
1963
  #: classes/gateways/class.pmprogateway_check.php:105
1964
  msgid "Instructions"
1965
- msgstr ""
1966
 
1967
  #: classes/gateways/class.pmprogateway_check.php:109
1968
  msgid ""
1969
  "Who to write the check out to. Where to mail it. Shown on checkout, "
1970
  "confirmation, and invoice pages."
1971
  msgstr ""
 
 
1972
 
1973
  #: classes/gateways/class.pmprogateway_cybersource.php:42
1974
  msgid "CyberSource"
@@ -1982,13 +2010,13 @@ msgstr ""
1982
  msgid ""
1983
  "This gateway option is in beta. Some functionality may not be available. "
1984
  "Please contact Paid Memberships Pro with any issues you run into. "
1985
- "<strong>Please be sure to upgrade Paid Memberships Pro to the latest "
1986
- "versions when available.</strong>"
1987
  msgstr ""
1988
 
1989
  #: classes/gateways/class.pmprogateway_cybersource.php:114
1990
  msgid "Transaction Security Key"
1991
- msgstr ""
1992
 
1993
  #: classes/gateways/class.pmprogateway_payflowpro.php:39
1994
  msgid "Payflow Pro/PayPal Pro"
@@ -1996,7 +2024,7 @@ msgstr ""
1996
 
1997
  #: classes/gateways/class.pmprogateway_payflowpro.php:95
1998
  msgid "Payflow Pro Settings"
1999
- msgstr ""
2000
 
2001
  #: classes/gateways/class.pmprogateway_payflowpro.php:100
2002
  msgid "Partner"
@@ -2028,9 +2056,8 @@ msgid ""
2028
  "A partial payment was made that we could not refund. Please contact the site "
2029
  "owner immediately to correct this."
2030
  msgstr ""
2031
- "Un paiement partiel que nous ne pouvions pas rembourser a été fait. S'il "
2032
- "vous plaît contacter le propriétaire du site immédiatement pour corriger "
2033
- "cela."
2034
 
2035
  #: classes/gateways/class.pmprogateway_paypal.php:57
2036
  #: paid-memberships-pro.php:120
@@ -2041,44 +2068,48 @@ msgstr ""
2041
  #: classes/gateways/class.pmprogateway_paypalexpress.php:118
2042
  #: classes/gateways/class.pmprogateway_paypalstandard.php:112
2043
  msgid "PayPal Settings"
2044
- msgstr ""
2045
 
2046
  #: classes/gateways/class.pmprogateway_paypal.php:118
2047
  #: classes/gateways/class.pmprogateway_paypalexpress.php:123
2048
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
2049
  msgid ""
2050
  "We do not recommend using PayPal Standard. We suggest using PayPal Express, "
2051
- "Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target="
2052
- "\"_blank\" href=\"http://www.paidmembershipspro.com/2013/09/read-using-"
2053
- "paypal-standard-paid-memberships-pro/\">More information on why can be found "
2054
- "here.</a>"
2055
  msgstr ""
 
 
 
 
2056
 
2057
  #: classes/gateways/class.pmprogateway_paypal.php:123
2058
  #: classes/gateways/class.pmprogateway_paypalexpress.php:128
2059
  #: classes/gateways/class.pmprogateway_paypalstandard.php:122
2060
  msgid "Gateway Account Email"
2061
- msgstr "Passerelle compte Email"
2062
 
2063
  #: classes/gateways/class.pmprogateway_paypal.php:131
2064
  #: classes/gateways/class.pmprogateway_paypalexpress.php:136
2065
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
2066
  #: classes/gateways/class.pmprogateway_twocheckout.php:113
2067
  msgid "API Username"
2068
- msgstr "API Nom d'utilisateur"
2069
 
2070
  #: classes/gateways/class.pmprogateway_paypal.php:139
2071
  #: classes/gateways/class.pmprogateway_paypalexpress.php:144
2072
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
2073
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
2074
  msgid "API Password"
2075
- msgstr "API Mot de passe"
2076
 
2077
  #: classes/gateways/class.pmprogateway_paypal.php:147
2078
  #: classes/gateways/class.pmprogateway_paypalexpress.php:152
2079
  #: classes/gateways/class.pmprogateway_paypalstandard.php:146
2080
  msgid "API Signature"
2081
- msgstr "API Signature"
2082
 
2083
  #: classes/gateways/class.pmprogateway_paypal.php:155
2084
  #: classes/gateways/class.pmprogateway_paypalexpress.php:160
@@ -2091,20 +2122,22 @@ msgid ""
2091
  "This URL is passed to PayPal for all new charges and subscriptions. You "
2092
  "SHOULD NOT set this in your PayPal account settings."
2093
  msgstr ""
 
 
2094
 
2095
  #: classes/gateways/class.pmprogateway_paypal.php:178
2096
  #: classes/gateways/class.pmprogateway_paypalexpress.php:402
2097
  #: classes/gateways/class.pmprogateway_paypalstandard.php:202
2098
  #: pages/checkout.php:286
2099
  msgid "Check Out with PayPal"
2100
- msgstr "Vérification avec Paypal"
2101
 
2102
  #: classes/gateways/class.pmprogateway_paypal.php:184
2103
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
2104
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
2105
  #: pages/checkout.php:704
2106
  msgid "Submit and Check Out"
2107
- msgstr "Soumettre et vérifier"
2108
 
2109
  #: classes/gateways/class.pmprogateway_paypal.php:184
2110
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
@@ -2121,6 +2154,8 @@ msgid ""
2121
  "Please contact the site owner or cancel your subscription from within PayPal "
2122
  "to make sure you are not charged going forward."
2123
  msgstr ""
 
 
2124
 
2125
  #: classes/gateways/class.pmprogateway_paypalexpress.php:63
2126
  #: paid-memberships-pro.php:119
@@ -2148,6 +2183,8 @@ msgid ""
2148
  "Here is your IPN URL for reference. You SHOULD NOT set this in your PayPal "
2149
  "settings."
2150
  msgstr ""
 
 
2151
 
2152
  #: classes/gateways/class.pmprogateway_stripe.php:93
2153
  #: paid-memberships-pro.php:118
@@ -2156,7 +2193,7 @@ msgstr ""
2156
 
2157
  #: classes/gateways/class.pmprogateway_stripe.php:148
2158
  msgid "Stripe Settings"
2159
- msgstr ""
2160
 
2161
  #: classes/gateways/class.pmprogateway_stripe.php:153
2162
  msgid "Secret Key"
@@ -2189,14 +2226,14 @@ msgstr ""
2189
 
2190
  #: classes/gateways/class.pmprogateway_stripe.php:571
2191
  msgid ""
2192
- "Subscription updates, allow you to change the member's subscription values "
2193
- "at predefined times. Be sure to click Update Profile after making changes."
2194
  msgstr ""
2195
 
2196
  #: classes/gateways/class.pmprogateway_stripe.php:573
2197
  msgid ""
2198
- "Subscription updates, allow you to change the member's subscription values "
2199
- "at predefined times. Be sure to click Update User after making changes."
2200
  msgstr ""
2201
 
2202
  #: classes/gateways/class.pmprogateway_stripe.php:578 pages/billing.php:329
@@ -2288,7 +2325,7 @@ msgstr ""
2288
 
2289
  #: includes/adminpages.php:262
2290
  msgid "Visit Customer Support Forum"
2291
- msgstr ""
2292
 
2293
  #: includes/adminpages.php:262
2294
  msgid "Support"
@@ -2417,7 +2454,7 @@ msgstr ""
2417
  #: includes/functions.php:207
2418
  #, php-format
2419
  msgid "The price for membership is <strong>%s</strong> now"
2420
- msgstr "Le prix pour l'adhésion est de <strong>%s</strong>."
2421
 
2422
  #: includes/functions.php:209
2423
  #, php-format
@@ -2427,12 +2464,12 @@ msgstr "<strong>%s</strong> maintenant"
2427
  #: includes/functions.php:218
2428
  #, php-format
2429
  msgid " and then <strong>%s per %s for %d more %s</strong>."
2430
- msgstr "et ensuite <strong>%s par %s pour %d plus %s</strong>."
2431
 
2432
  #: includes/functions.php:222
2433
  #, php-format
2434
  msgid " and then <strong>%s every %d %s for %d more %s</strong>."
2435
- msgstr "et ensuite <strong>%s chaque %d %s pour %d plus %s</strong>."
2436
 
2437
  #: includes/functions.php:227
2438
  #, php-format
@@ -2486,17 +2523,17 @@ msgstr "Après votre paiement initial, votre premier versement coûtera %s."
2486
  #: includes/functions.php:286
2487
  #, php-format
2488
  msgid "After your initial payment, your first %d payments will cost %s."
2489
- msgstr "Après votre paiement initial, vos premiers %d paiements va coûter %s."
2490
 
2491
  #: includes/functions.php:297
2492
  #, php-format
2493
  msgid "Customers in %s will be charged %s%% tax."
2494
- msgstr "Les clients de %s seront facturés %s%% d'impot."
2495
 
2496
  #: includes/functions.php:311
2497
  #, php-format
2498
  msgid "Membership expires after %d %s."
2499
- msgstr "Adhésion expire après %d %s."
2500
 
2501
  #: includes/functions.php:576
2502
  msgid "User ID not found."
@@ -2521,7 +2558,7 @@ msgstr "Niveau d'adhésion introuvable."
2521
 
2522
  #: includes/functions.php:1157
2523
  msgid "No code was given to check."
2524
- msgstr ""
2525
 
2526
  #: includes/functions.php:1166
2527
  msgid "The discount code could not be found."
@@ -2547,7 +2584,7 @@ msgstr "Ce code de réduction ne s'applique pas à ce niveau d'adhésion."
2547
 
2548
  #: includes/functions.php:1237
2549
  msgid "This discount code is okay."
2550
- msgstr "Ce code de réduction est correct."
2551
 
2552
  #: includes/functions.php:1262
2553
  msgid "and"
@@ -2555,11 +2592,11 @@ msgstr "et"
2555
 
2556
  #: includes/functions.php:1457
2557
  msgid "Sign Up for !!name!! Now"
2558
- msgstr "Inscrivez-vous !!name!! Maintenant"
2559
 
2560
  #: includes/functions.php:1463
2561
  msgid "Please specify a level id."
2562
- msgstr "S'il vous plaît spécifier un niveau d'id"
2563
 
2564
  #: includes/init.php:233 includes/profile.php:39
2565
  msgid "None"
@@ -2599,15 +2636,15 @@ msgstr "Années"
2599
 
2600
  #: includes/metaboxes.php:38
2601
  msgid ""
2602
- "This post is already protected for this level because it is within a "
2603
- "category that requires membership."
2604
  msgstr ""
2605
  "Ce poste est déjà protégé à ce niveau, car il est dans une catégorie qui "
2606
  "nécessite l'adhésion."
2607
 
2608
  #: includes/metaboxes.php:99 includes/metaboxes.php:100
2609
  msgid "Require Membership"
2610
- msgstr "Exiger adhésion"
2611
 
2612
  #: includes/profile.php:36
2613
  msgid "Current Level"
@@ -2615,19 +2652,23 @@ msgstr "Niveau actuel"
2615
 
2616
  #: includes/profile.php:54
2617
  msgid "Not paying."
2618
- msgstr ""
2619
 
2620
  #: includes/profile.php:64
2621
  msgid ""
2622
  "This will not change the subscription at the gateway unless the 'Cancel' "
2623
  "checkbox is selected below."
2624
  msgstr ""
 
 
2625
 
2626
  #: includes/upgradecheck.php:422
2627
  #, php-format
2628
  msgid ""
2629
  "This content is for !!levels!! members only.<br /><a href=\"%s\">Register</a>"
2630
  msgstr ""
 
 
2631
 
2632
  #: includes/upgradecheck.php:425
2633
  #, php-format
@@ -2635,12 +2676,16 @@ msgid ""
2635
  "This content is for !!levels!! members only.<br /><a href=\"%s\">Log In</a> "
2636
  "<a href=\"%s\">Register</a>"
2637
  msgstr ""
 
 
2638
 
2639
  #: includes/upgradecheck.php:429
2640
  msgid ""
2641
  "This content is for !!levels!! members only. Visit the site and log in/"
2642
  "register to read."
2643
  msgstr ""
 
 
2644
 
2645
  #: pages/billing.php:14
2646
  #, php-format
@@ -2659,7 +2704,7 @@ msgstr "Niveau"
2659
 
2660
  #: pages/billing.php:18
2661
  msgid "Membership Fee"
2662
- msgstr "Droits d'inscription"
2663
 
2664
  #: pages/billing.php:22
2665
  #, php-format
@@ -2710,11 +2755,11 @@ msgstr "État"
2710
 
2711
  #: pages/billing.php:99 pages/checkout.php:339
2712
  msgid "Postal Code"
2713
- msgstr "Code postale"
2714
 
2715
  #: pages/billing.php:108 pages/checkout.php:348
2716
  msgid "City, State Zip"
2717
- msgstr "Ville, Etat Zip"
2718
 
2719
  #: pages/billing.php:161 pages/checkout.php:401
2720
  msgid "Country"
@@ -2726,11 +2771,11 @@ msgstr "Téléphone"
2726
 
2727
  #: pages/billing.php:197 pages/checkout.php:207 pages/checkout.php:440
2728
  msgid "E-mail Address"
2729
- msgstr "Adresse e-mail"
2730
 
2731
  #: pages/billing.php:201 pages/checkout.php:449
2732
  msgid "Confirm E-mail"
2733
- msgstr "Confirmer E-mail"
2734
 
2735
  #: pages/billing.php:221
2736
  #, php-format
@@ -2746,17 +2791,17 @@ msgid ""
2746
  "This subscription is not recurring. So you don't need to update your billing "
2747
  "information."
2748
  msgstr ""
2749
- "Cet abonnement n'est pas récurrente. Donc, vous n'avez pas besoin de mettre "
2750
- "à jour vos informations de facturation."
2751
 
2752
  #: pages/cancel.php:26
2753
  msgid "Are you sure you want to cancel your membership?"
2754
- msgstr "Etes-vous sûr de vouloir annuler votre adhésion?"
2755
 
2756
  #: pages/cancel.php:32
2757
  #, php-format
2758
  msgid "Are you sure you want to cancel your %s membership?"
2759
- msgstr "Êtes-vous sûr de vouloir supprimer votre adhésion %s?"
2760
 
2761
  #: pages/cancel.php:37
2762
  msgid "Yes, cancel my account"
@@ -2768,11 +2813,11 @@ msgstr "Non, garder mon compte"
2768
 
2769
  #: pages/cancel.php:48 shortcodes/pmpro_account.php:40
2770
  msgid "My Memberships"
2771
- msgstr "Mon adhésion"
2772
 
2773
  #: pages/cancel.php:77
2774
  msgid "Cancel All Memberships"
2775
- msgstr "Annuler toutes mes adhésions"
2776
 
2777
  #: pages/cancel.php:86
2778
  msgid "Click here to go to the home page."
@@ -2784,7 +2829,7 @@ msgid ""
2784
  "<strong>click the \"Complete Payment\" button</strong> to finish your order."
2785
  msgstr ""
2786
  "Presque fini. Vérifiez les informations d'adhésion et les prix ci-dessous "
2787
- "puis <strong>cliquez sur le \"Complete Payment\" button</strong> pour "
2788
  "terminer votre commande."
2789
 
2790
  #: pages/checkout.php:33
@@ -2802,6 +2847,8 @@ msgid ""
2802
  "<p class=\"pmpro_level_discount_applied\">The <strong>%s</strong> code has "
2803
  "been applied to your order.</p>"
2804
  msgstr ""
 
 
2805
 
2806
  #: pages/checkout.php:62 services/applydiscountcode.php:89
2807
  msgid "Click here to change your discount code"
@@ -2809,7 +2856,7 @@ msgstr "Cliquez ici pour modifier votre code de réduction"
2809
 
2810
  #: pages/checkout.php:64
2811
  msgid "Do you have a discount code?"
2812
- msgstr "Avez-vous un code de réduction?"
2813
 
2814
  #: pages/checkout.php:64
2815
  msgid "Click here to enter your discount code"
@@ -2817,7 +2864,7 @@ msgstr "Cliquez ici pour entrer votre code de réduction"
2817
 
2818
  #: pages/checkout.php:163
2819
  msgid "Already have an account?"
2820
- msgstr "Vous avez déjà un compte?"
2821
 
2822
  #: pages/checkout.php:163
2823
  msgid "Log in here"
@@ -2829,15 +2876,15 @@ msgstr "Informations du compte"
2829
 
2830
  #: pages/checkout.php:189
2831
  msgid "Confirm Password"
2832
- msgstr "Confirmez mot de passe"
2833
 
2834
  #: pages/checkout.php:216
2835
  msgid "Confirm E-mail Address"
2836
- msgstr "Confirmer E-mail"
2837
 
2838
  #: pages/checkout.php:235
2839
  msgid "Full Name"
2840
- msgstr "nom et prénom"
2841
 
2842
  #: pages/checkout.php:236
2843
  msgid "LEAVE THIS BLANK"
@@ -2850,8 +2897,8 @@ msgid ""
2850
  "different account for this membership, <a href=\"%s\">log out now</a>."
2851
  msgstr ""
2852
  "Vous êtes connecté en tant de <strong>%s </ strong>. Si vous souhaitez "
2853
- "utiliser un compte différent pour cette adhésion, <a href=\"%s\"> "
2854
- "déconnecter maintenant </a>."
2855
 
2856
  #: pages/checkout.php:276
2857
  msgid "Choose your Payment Method"
@@ -2859,7 +2906,7 @@ msgstr "Choisissez votre mode de paiement"
2859
 
2860
  #: pages/checkout.php:284
2861
  msgid "Check Out with a Credit Card Here"
2862
- msgstr "Vérification avec carte de crédit ici"
2863
 
2864
  #: pages/checkout.php:672
2865
  #, php-format
@@ -2868,7 +2915,7 @@ msgstr "Je suis d'accord avec le %s"
2868
 
2869
  #: pages/checkout.php:692
2870
  msgid "Complete Payment"
2871
- msgstr "Paiement complet"
2872
 
2873
  #: pages/checkout.php:714
2874
  msgid "Processing..."
@@ -2881,7 +2928,7 @@ msgstr "Champ obligatoire"
2881
  #: pages/confirmation.php:12
2882
  msgid ""
2883
  "Your payment has been submitted. Your membership will be activated shortly."
2884
- msgstr ""
2885
 
2886
  #: pages/confirmation.php:14
2887
  #, php-format
@@ -2897,13 +2944,13 @@ msgid ""
2897
  "initial membership invoice. A welcome email with a copy of your initial "
2898
  "membership invoice has been sent to %s."
2899
  msgstr ""
2900
- "Voici les détails de votre compte et un reçu pour votre facture. Un email de "
2901
- "bienvenue avec une copie de votre facture vous a été envoyé à %s."
2902
 
2903
  #: pages/confirmation.php:41 pages/invoice.php:22
2904
  #, php-format
2905
  msgid "Invoice #%s on %s"
2906
- msgstr "Facture #%s on %s"
2907
 
2908
  #: pages/confirmation.php:43 pages/invoice.php:24
2909
  msgid "Print"
@@ -2923,7 +2970,7 @@ msgstr "Méthode de paiement"
2923
 
2924
  #: pages/confirmation.php:65 pages/invoice.php:52 pages/invoice.php:110
2925
  msgid "Total Billed"
2926
- msgstr "Total facturé"
2927
 
2928
  #: pages/confirmation.php:82 pages/invoice.php:69
2929
  msgid "ending in"
@@ -2935,6 +2982,8 @@ msgid ""
2935
  "Below are details about your membership account. A welcome email has been "
2936
  "sent to %s."
2937
  msgstr ""
 
 
2938
 
2939
  #: pages/confirmation.php:105
2940
  msgid "Pending"
@@ -2949,12 +2998,12 @@ msgid ""
2949
  "If your account is not activated within a few minutes, please contact the "
2950
  "site owner."
2951
  msgstr ""
2952
- "Si votre compte n'est pas activé en quelques minutes, s'il vous plaît "
2953
- "contacter le propriétaire du site."
2954
 
2955
  #: pages/invoice.php:79
2956
  msgid "Subtotal"
2957
- msgstr "Sous-totale"
2958
 
2959
  #: pages/invoice.php:82
2960
  msgid "Coupon"
@@ -2962,19 +3011,19 @@ msgstr "Promo"
2962
 
2963
  #: pages/invoice.php:108
2964
  msgid "Invoice #"
2965
- msgstr "Facture #"
2966
 
2967
  #: pages/invoice.php:134
2968
  msgid "No invoices found."
2969
- msgstr "Aucune facture trouvée."
2970
 
2971
  #: pages/invoice.php:145
2972
  msgid "&larr; View All Invoices"
2973
- msgstr "&larr; Voir toutes les factures"
2974
 
2975
  #: pages/levels.php:14
2976
  msgid "Price"
2977
- msgstr "Prix"
2978
 
2979
  #: pages/levels.php:33
2980
  msgid "Free"
@@ -2982,7 +3031,7 @@ msgstr "Gratuit"
2982
 
2983
  #: pages/levels.php:47 pages/levels.php:49
2984
  msgid "Select"
2985
- msgstr "Sélectionner"
2986
 
2987
  #: pages/levels.php:57 shortcodes/pmpro_account.php:59
2988
  msgid "Renew"
@@ -2998,7 +3047,7 @@ msgstr "&larr; Retourner à votre compte"
2998
 
2999
  #: pages/levels.php:81
3000
  msgid "&larr; Return to Home"
3001
- msgstr "&larr; Retourner à la page d'Accueil"
3002
 
3003
  #: paid-memberships-pro.php:116
3004
  msgid "Testing Only"
@@ -3026,18 +3075,17 @@ msgstr ""
3026
 
3027
  #: preheaders/billing.php:270 preheaders/checkout.php:332
3028
  msgid "Please complete all required fields."
3029
- msgstr "S'il vous plaît remplir tous les champs obligatoires."
3030
 
3031
  #: preheaders/billing.php:273 preheaders/checkout.php:340
3032
  msgid "Your email addresses do not match. Please try again."
3033
- msgstr ""
3034
- "Vos adresses emails ne correspondent pas. S'il vous plaît essayer de nouveau."
3035
 
3036
  #: preheaders/billing.php:276 preheaders/checkout.php:345
3037
  msgid "The email address entered is in an invalid format. Please try again."
3038
  msgstr ""
3039
- "L'adresse email saisie est dans un format non valide. S'il vous plaît "
3040
- "essayer de nouveau."
3041
 
3042
  #: preheaders/billing.php:280
3043
  msgid "All good!"
@@ -3047,15 +3095,15 @@ msgstr "Tout est bon !"
3047
  #, php-format
3048
  msgid "Information updated. <a href=\"%s\">&laquo; back to my account</a>"
3049
  msgstr ""
3050
- "Information mis à jour. <a href=\"%s\">&laquo; Retourner dans mon compte</a>"
3051
 
3052
  #: preheaders/billing.php:356
3053
  msgid "Error updating billing information."
3054
- msgstr "Erreur mise à jour des informations de facturation."
3055
 
3056
  #: preheaders/cancel.php:25
3057
  msgid "Your membership has been cancelled."
3058
- msgstr "Votre adhésion a été annulée."
3059
 
3060
  #: preheaders/checkout.php:32 preheaders/checkout.php:354
3061
  msgid "Invalid gateway."
@@ -3063,7 +3111,7 @@ msgstr "Passerelle invalide."
3063
 
3064
  #: preheaders/checkout.php:95
3065
  msgid "Checkout: Payment Information"
3066
- msgstr "Vérification : conditions de vente"
3067
 
3068
  #: preheaders/checkout.php:100
3069
  msgid "Set up Your Account"
@@ -3071,17 +3119,16 @@ msgstr "Configurer votre compte"
3071
 
3072
  #: preheaders/checkout.php:300
3073
  msgid "There are JavaScript errors on the page. Please contact the webmaster."
3074
- msgstr ""
3075
 
3076
  #: preheaders/checkout.php:335
3077
  msgid "Your passwords do not match. Please try again."
3078
- msgstr ""
3079
- "Vos mots de passe ne correspondent pas. S'il vous plaît essayer de nouveau."
3080
 
3081
  #: preheaders/checkout.php:350
3082
  #, php-format
3083
  msgid "Please check the box to agree to the %s."
3084
- msgstr "S'il vous plaît cochez la case pour accepter le %s."
3085
 
3086
  #: preheaders/checkout.php:357
3087
  msgid "Are you a spammer?"
@@ -3089,7 +3136,7 @@ msgstr "Êtes-vous un spammeur?"
3089
 
3090
  #: preheaders/checkout.php:377
3091
  msgid "That username is already taken. Please try another."
3092
- msgstr "Ce nom d'utilisateur est déjà pris. S'il vous plaît essayer un autre."
3093
 
3094
  #: preheaders/checkout.php:382
3095
  msgid "That email address is already taken. Please try another."
@@ -3098,7 +3145,7 @@ msgstr "Cette adresse email est déjà prise."
3098
  #: preheaders/checkout.php:416
3099
  #, php-format
3100
  msgid "reCAPTCHA failed. (%s) Please try again."
3101
- msgstr "reCAPTCHA a échoué. (%s) S'il vous plaît essayer de nouveau."
3102
 
3103
  #: preheaders/checkout.php:501
3104
  msgid "Payment accepted."
@@ -3108,16 +3155,16 @@ msgstr "Paiement accepté."
3108
  msgid ""
3109
  "Unknown error generating account. Please contact us to set up your membership."
3110
  msgstr ""
3111
- "Erreur inconnu lors de la génération du compte. S'il vous plaît contactez "
3112
- "nous pour configurer votre adhésion."
3113
 
3114
  #: preheaders/checkout.php:569
3115
  msgid ""
3116
  "Your payment was accepted, but there was an error setting up your account. "
3117
  "Please contact us."
3118
  msgstr ""
3119
- "Votre paiement a été accepté, mais il y a eu une erreur lors de la "
3120
- "configuration de votre compte. S'il vous plaît contactez-nous."
3121
 
3122
  #: preheaders/checkout.php:710
3123
  msgid ""
@@ -3125,10 +3172,10 @@ msgid ""
3125
  "authorized, but we cancelled the order immediately. You should not try to "
3126
  "submit this form again. Please contact the site owner to fix this issue."
3127
  msgstr ""
3128
- "IMPORTANT: Quelque chose a mal tourné lors de la création d'adhésion. Votre "
3129
- "carte de crédit est autorisé, mais nous avons annulé la commande. Ne "
3130
- "complétez pas ce formulaire. S'il vous plaît contacter le propriétaire du "
3131
- "site pour résoudre ce problème."
3132
 
3133
  #: preheaders/checkout.php:713
3134
  msgid ""
@@ -3137,9 +3184,9 @@ msgid ""
3137
  "this form again. Please contact the site owner to fix this issue."
3138
  msgstr ""
3139
  "IMPORTANT: Quelque chose a mal tourné lors de la création d'adhésion. Votre "
3140
- "carte de crédit a été débitée, mais nous ne pouvions pas valider votre "
3141
- "adhésion. Ne soumettez pas de nouveau ce formulaire. S'il vous plaît "
3142
- "contacter le propriétaire du site pour résoudre ce problème."
3143
 
3144
  #: preheaders/checkout.php:724
3145
  #, php-format
@@ -3153,46 +3200,47 @@ msgstr ""
3153
  #: preheaders/checkout.php:726
3154
  msgid "A Payment Gateway must be set up before any payments will be processed."
3155
  msgstr ""
3156
- "Une passerelle de paiement doit être configuré avant que les paiements "
3157
  "puissent être traités."
3158
 
3159
  #: scheduled/crons.php:38
3160
  #, php-format
3161
  msgid "Membership expired email sent to %s. "
3162
- msgstr "E-mail d'adhésion expiré envoyé à %s."
3163
 
3164
  #: scheduled/crons.php:84
3165
  #, php-format
3166
  msgid "Membership expiring email sent to %s. "
3167
- msgstr "E-mail d'expiration d'adhésion a été envoyé à %s."
3168
 
3169
  #: scheduled/crons.php:157
3170
  #, php-format
3171
  msgid "Credit card expiring email sent to %s. "
3172
- msgstr "E-mail d'expiration de la carte decrédit a été envoyé à %s."
3173
 
3174
  #: scheduled/crons.php:210
3175
  #, php-format
3176
  msgid "Trial ending email sent to %s. "
3177
- msgstr "E-mail de fin de période d'essai envoyé à %s."
3178
 
3179
  #: services/applydiscountcode.php:67
3180
  #, php-format
3181
  msgid "The %s code has been applied to your order. "
3182
- msgstr ""
3183
 
3184
  #: services/applydiscountcode.php:97
3185
  #, php-format
3186
  msgid "The <strong>%s</strong> code has been applied to your order."
3187
- msgstr "Le <strong>%s</strong> code a été appliqué à votre commande."
 
3188
 
3189
  #: services/authnet-silent-post.php:141
3190
  msgid ""
3191
  "<p>A payment is being held for review within Authorize.net.</p><p>Payment "
3192
  "Information From Authorize.net"
3193
  msgstr ""
3194
- "<p>Un paiement est tenu pour examen au sein de Authorize.net</"
3195
- "p><p>conditions de vente De Authorize.net"
3196
 
3197
  #: services/stripe-webhook.php:270
3198
  #, php-format
@@ -3201,7 +3249,7 @@ msgid ""
3201
  "this user's membership is cancelled on your site if it should be."
3202
  msgstr ""
3203
  "%s a eu son abonnement de paiement annulé par Stripe. Veuillez vérifier que "
3204
- "l'adhésion de cet utilisateur est annulé sur votre site si sa doit être le "
3205
  "cas."
3206
 
3207
  #: shortcodes/pmpro_account.php:45
@@ -3226,7 +3274,7 @@ msgstr "Mon compte"
3226
 
3227
  #: shortcodes/pmpro_account.php:110
3228
  msgid "Edit Profile"
3229
- msgstr "Éditer profil"
3230
 
3231
  #: shortcodes/pmpro_account.php:111
3232
  msgid "Change Password"
@@ -3234,7 +3282,7 @@ msgstr "Changer le mot de passe"
3234
 
3235
  #: shortcodes/pmpro_account.php:118
3236
  msgid "Past Invoices"
3237
- msgstr "Factures antérieures"
3238
 
3239
  #: shortcodes/pmpro_account.php:124
3240
  msgid "Amount"
@@ -3242,11 +3290,11 @@ msgstr "Montant"
3242
 
3243
  #: shortcodes/pmpro_account.php:152
3244
  msgid "View All Invoices"
3245
- msgstr "Voir toutes les factures"
3246
 
3247
  #: shortcodes/pmpro_account.php:159
3248
  msgid "Member Links"
3249
- msgstr "Liens membres"
3250
 
3251
  #~ msgid "User is not paying."
3252
  #~ msgstr "L'utilisateur ne paie pas."
@@ -3260,15 +3308,15 @@ msgstr "Liens membres"
3260
  #~ "inscriptions."
3261
 
3262
  #~ msgid ""
3263
- #~ "How long before the expiration expires. Note that any future payments "
3264
- #~ "will be cancelled when the membership expires."
3265
  #~ msgstr ""
3266
  #~ "Combien de temps avant la fin de l'expiration. Notez que tous les "
3267
  #~ "paiements futurs seront annulés lorsque l'abonnement expire."
3268
 
3269
  #~ msgid ""
3270
- #~ "Stripe integration currently only supports billing periods of \"Month\" "
3271
- #~ "or \"Year\"."
3272
  #~ msgstr ""
3273
  #~ "Intégration de Stripe supporte actuellement que les périodes de "
3274
  #~ "facturation de \"Month\" ou \"Year\"."
@@ -3352,8 +3400,8 @@ msgstr "Liens membres"
3352
  #~ "Below are details about your membership account. A welcome email with has "
3353
  #~ "been sent to %s."
3354
  #~ msgstr ""
3355
- #~ "Voici les détails de votre compte. Un email de bienvenue avec a été "
3356
- #~ "envoyé à %s."
3357
 
3358
  #~ msgid "View Invoice"
3359
  #~ msgstr "Voir facture"
2
  msgstr ""
3
  "Project-Id-Version: pmpro\n"
4
  "POT-Creation-Date: 2015-04-30 19:35+0100\n"
5
+ "PO-Revision-Date: 2015-07-06 21:24+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
8
  "Language: fr_FR\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.8.2\n"
13
  "X-Poedit-KeywordsList: __;_;_e;_ex;_x;_n\n"
14
+ "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SearchPath-0: includes\n"
16
  "X-Poedit-SearchPath-1: .\n"
17
  "X-Poedit-SearchPath-2: classes\n"
62
 
63
  #: adminpages/admin_header.php:46
64
  msgid ""
65
+ "The billing details for this level are not supported by Stripe. Please review "
66
+ "the notes in the Billing Details section below."
67
  msgstr ""
68
  "Les détails de facturation pour ce niveau ne sont pas pris en charge par "
69
+ "Stripe. Veuillez examiner les notes dans la section Détails de facturation ci-"
70
+ "dessous."
71
 
72
  #: adminpages/admin_header.php:50 adminpages/admin_header.php:70
73
  #: adminpages/admin_header.php:90 adminpages/admin_header.php:111
74
  msgid "The levels with issues are highlighted below."
75
+ msgstr "Les niveaux posant problème sont soulignés ci-dessous."
76
 
77
  #: adminpages/admin_header.php:52 adminpages/admin_header.php:72
78
  #: adminpages/admin_header.php:92 adminpages/admin_header.php:113
79
  msgid "Please edit your levels"
80
+ msgstr "Veuillez modifier vos niveaux"
81
 
82
  #: adminpages/admin_header.php:58
83
  msgid ""
93
  "review the notes in the Billing Details section below."
94
  msgstr ""
95
  "Les détails de facturation pour ce niveau ne sont pas pris en charge par "
96
+ "Payflow. Veuillez examiner les notes dans la section Détails de facturation "
97
+ "ci-dessous."
98
 
99
  #: adminpages/admin_header.php:78
100
  msgid ""
110
  "review the notes in the Billing Details section below."
111
  msgstr ""
112
  "Les détails de facturation pour ce niveau ne sont pas pris en charge par "
113
+ "Braintree. Veuillez examiner les notes dans la section Détails de facturation "
114
+ "ci-dessous."
115
 
116
  #: adminpages/admin_header.php:98
117
  msgid ""
118
  "The billing details for some of your membership levels is not supported by "
119
  "TwoCheckout."
120
  msgstr ""
121
+ "Les détails de facturation pour certains de vos niveaux d'adhésion sont pas "
122
+ "pris en charge par TwoCheckout."
123
 
124
  #: adminpages/admin_header.php:107
125
  msgid ""
126
  "The billing details for this level are not supported by 2Checkout. Please "
127
  "review the notes in the Billing Details section below."
128
  msgstr ""
129
+ "Les détails de facturation pour ce niveau ne sont pas pris en charge par "
130
+ "2Checkout. Veuillez examiner les notes dans la section Détails de facturation "
131
+ "ci-dessous."
132
 
133
  #: adminpages/admin_header.php:127
134
  msgid "Plugin Support"
164
  #: adminpages/admin_header.php:154 includes/adminpages.php:52
165
  #: includes/adminpages.php:142
166
  msgid "Add Ons"
167
+ msgstr "Compléments"
168
 
169
  #: adminpages/advancedsettings.php:43
170
  msgid "Your advanced settings have been updated."
173
  #: adminpages/advancedsettings.php:68
174
  #, php-format
175
  msgid ""
176
+ "This content is for !!levels!! members only. <a href=\"%s\">Register here</a>."
 
177
  msgstr ""
178
+ "Ce contenu est réservé aux membres de niveau !!levels!!. <a href=\"%s"
179
+ "\">Adhérez ici</a>."
180
 
181
  #: adminpages/advancedsettings.php:73
182
  #, php-format
184
  "Please <a href=\"%s\">login</a> to view this content. (<a href=\"%s"
185
  "\">Register here</a>.)"
186
  msgstr ""
187
+ "Veuillez <a href=\"%s\">vous connecter</a> pour voir ce contenu. (<a href=\"%s"
188
+ "\">Adhésion</a>.)"
189
 
190
  #: adminpages/advancedsettings.php:78
191
  msgid ""
192
  "This content is for members only. Visit the site and log in/register to read."
193
  msgstr ""
194
+ "Ce contenu est réservé aux membres. Visitez le site et connectez-vous ou bien "
195
+ "adhérez pour le lire."
196
 
197
  #: adminpages/advancedsettings.php:88 includes/adminpages.php:51
198
  #: includes/adminpages.php:135
207
  msgid ""
208
  "This message replaces the post content for non-members. Available variables"
209
  msgstr ""
210
+ "Ce message remplace le contenu d'article pour les non-membres. Les variables "
211
  "disponibles"
212
 
213
  #: adminpages/advancedsettings.php:103
217
  #: adminpages/advancedsettings.php:107
218
  msgid "This message replaces the post content for logged-out visitors."
219
  msgstr ""
220
+ "Ce message remplace le contenu de l'article pour les visiteurs non connectés."
221
 
222
  #: adminpages/advancedsettings.php:112
223
  msgid "Message for RSS Feed"
225
 
226
  #: adminpages/advancedsettings.php:116
227
  msgid "This message replaces the post content in RSS feeds."
228
+ msgstr "Ce message remplace le contenu de l'article dans les flux RSS."
229
 
230
  #: adminpages/advancedsettings.php:122
231
  msgid "Filter searches and archives?"
232
+ msgstr "Filtrer les recherches et les archives ?"
233
 
234
  #: adminpages/advancedsettings.php:126
235
  msgid ""
236
  "No - Non-members will see restricted posts/pages in searches and archives."
237
  msgstr ""
238
+ "Non : les non-membres pourront voir les articles et pages réservés dans les "
239
+ "résultats et les archives."
240
 
241
  #: adminpages/advancedsettings.php:127
242
  msgid ""
243
  "Yes - Only members will see restricted posts/pages in searches and archives."
244
  msgstr ""
245
+ "Oui : seuls les membres pourront voir les articles et pages réservés dans les "
246
+ "résultats et les archives."
247
 
248
  #: adminpages/advancedsettings.php:133
249
  msgid "Show Excerpts to Non-Members?"
250
+ msgstr "Afficher les extraits pour les non-membres?"
251
 
252
  #: adminpages/advancedsettings.php:137
253
  msgid "No - Hide excerpts."
254
+ msgstr "Non : masquer les extraits."
255
 
256
  #: adminpages/advancedsettings.php:138
257
  msgid "Yes - Show excerpts."
258
+ msgstr "Oui : voir les extraits."
259
 
260
  #: adminpages/advancedsettings.php:144
261
  msgid "Hide Ads From Members?"
270
 
271
  #: adminpages/advancedsettings.php:149
272
  msgid "Hide Ads From All Members"
273
+ msgstr "Masquer les publicités pour tous les membres"
274
 
275
  #: adminpages/advancedsettings.php:150
276
  msgid "Hide Ads From Certain Members"
277
+ msgstr "Masquer les publicités pour certains membres"
278
 
279
  #: adminpages/advancedsettings.php:157
280
  msgid "Ads from the following plugins will be automatically turned off"
281
+ msgstr "Les publicités des plugins suivants seront automatiquement désactivées"
282
 
283
  #: adminpages/advancedsettings.php:158
284
  msgid "To hide ads in your template code, use code like the following"
285
  msgstr ""
286
+ "Pour masquer des annonces dans le code de votre modèle, utilisez le code "
287
  "suivant"
288
 
289
  #: adminpages/advancedsettings.php:169
290
  msgid "Choose Levels to Hide Ads From"
291
+ msgstr "Choisir les niveaux pour lesquels masquer les annonces"
292
 
293
  #: adminpages/advancedsettings.php:203
294
  msgid "Redirect all traffic from registration page to /susbcription/?"
295
  msgstr ""
296
+ "Rediriger tout le trafic à partir de la page d'inscription vers /"
297
+ "subscription/ ?"
298
 
299
  #: adminpages/advancedsettings.php:203
300
  msgid "multisite only"
312
 
313
  #: adminpages/advancedsettings.php:220
314
  msgid "Yes - Free memberships only."
315
+ msgstr "Oui : seulement pour les adhésions gratuites."
316
 
317
  #: adminpages/advancedsettings.php:221
318
  msgid "Yes - All memberships."
319
+ msgstr "Oui : pour toutes les adhésions."
320
 
321
  #: adminpages/advancedsettings.php:223
322
  msgid "A free reCAPTCHA key is required."
323
+ msgstr "Une clé reCAPTCHA gratuite est nécessaire."
324
 
325
  #: adminpages/advancedsettings.php:223
326
  msgid "Click here to signup for reCAPTCHA"
336
 
337
  #: adminpages/advancedsettings.php:238
338
  msgid "Require Terms of Service on signups?"
339
+ msgstr "Exiger la validation des Conditions d'utilisation à l'inscription ?"
340
 
341
  #: adminpages/advancedsettings.php:245
342
  msgid ""
344
  "using the dropdown above."
345
  msgstr ""
346
  "Si oui, créez une page WordPress contenant votre contrat de conditions "
347
+ "d'utilisation et assignez-la en utilisant le menu déroulant ci-dessus."
348
 
349
  #: adminpages/advancedsettings.php:285
350
  msgid "selected"
351
+ msgstr "choisi"
352
 
353
  #: adminpages/advancedsettings.php:368 adminpages/pagesettings.php:251
354
  #: adminpages/paymentsettings.php:238
362
  #: adminpages/discountcodes.php:55
363
  msgid "Error updating discount code. That code may already be in use."
364
  msgstr ""
365
+ "Erreur dans la mise à jour du code de réduction. Ce code est peut-être déjà "
366
+ "utilisé."
367
 
368
  #: adminpages/discountcodes.php:64
369
  msgid "Discount code added successfully."
370
+ msgstr "Code promo ajouté."
371
 
372
  #: adminpages/discountcodes.php:72
373
  msgid "Error adding discount code. That code may already be in use."
374
  msgstr ""
375
+ "Erreur lors de l'ajout du code de réduction. Ce code est peut-être déjà "
376
+ "utilisé."
377
 
378
  #: adminpages/discountcodes.php:197
379
  #, php-format
380
  msgid "Error saving values for the %s level."
381
+ msgstr "Erreur lors de la sauvegarde de la valeur pour le niveau %s."
382
 
383
  #: adminpages/discountcodes.php:205
384
  msgid "There were errors updating the level values: "
385
+ msgstr ""
386
+ "Des erreurs se sont produites lors de la mise à jour des valeurs du niveau :"
387
 
388
  #: adminpages/discountcodes.php:238
389
  #, php-format
390
  msgid "Code %s deleted successfully."
391
+ msgstr "Le code %s a été supprimé."
392
 
393
  #: adminpages/discountcodes.php:243
394
  msgid ""
395
+ "Error deleting discount code. The code was only partially deleted. Please try "
396
+ "again."
397
  msgstr ""
398
+ "Erreur lors de la suppression du code de réduction. Le code n'a été que "
399
+ "partiellement supprimé. Veuillez essayer de nouveau."
400
 
401
  #: adminpages/discountcodes.php:249
402
  msgid "Error deleting code. Please try again."
403
+ msgstr "Erreur lors de la suppression du code. Veuillez essayer de nouveau."
404
 
405
  #: adminpages/discountcodes.php:255
406
  msgid "Code not found."
423
 
424
  #: adminpages/discountcodes.php:311 adminpages/orders.php:261
425
  msgid "This will be generated when you save."
426
+ msgstr "Généré à l'enregistrement."
427
 
428
  #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:587
429
  #: adminpages/orders.php:265 adminpages/orders.php:901
451
 
452
  #: adminpages/discountcodes.php:401
453
  msgid "Which Levels Will This Code Apply To?"
454
+ msgstr "À quels niveaux s'appliquera ce code ?"
455
 
456
  #: adminpages/discountcodes.php:431 adminpages/membershiplevels.php:339
457
  msgid "Initial Payment"
459
 
460
  #: adminpages/discountcodes.php:442 adminpages/membershiplevels.php:350
461
  msgid "The initial amount collected at registration."
462
+ msgstr "Le montant initial recueilli lors de l'inscription."
463
 
464
  #: adminpages/discountcodes.php:447 adminpages/membershiplevels.php:354
465
  msgid "Recurring Subscription"
466
+ msgstr "Abonnement récurrent"
467
 
468
  #: adminpages/discountcodes.php:448 adminpages/membershiplevels.php:355
469
  msgid "Check if this level has a recurring subscription payment."
470
+ msgstr "Cochez si ce niveau a un paiement d'abonnement récurrent."
471
 
472
  #: adminpages/discountcodes.php:452 adminpages/membershiplevels.php:359
473
  msgid "Billing Amount"
474
+ msgstr "Montant payé"
475
 
476
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
477
  #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:477
503
 
504
  #: adminpages/discountcodes.php:480 adminpages/membershiplevels.php:401
505
  msgid "Billing Cycle Limit"
506
+ msgstr "Maximum de cycles de paiement"
507
 
508
  #: adminpages/discountcodes.php:483 adminpages/membershiplevels.php:405
509
  msgid ""
510
+ "The <strong>total</strong> number of recurring billing cycles for this level, "
511
+ "including the trial period (if applicable) but not including the initial "
512
+ "payment. Set to zero if membership is indefinite."
513
  msgstr ""
514
+ "Le nombre <strong>total</strong> de cycles de paiement récurrents pour ce "
515
  "niveau, y compris la période d'essai (le cas échéant), mais non compris le "
516
+ "paiement initial. Mettre à zéro si l'adhésion est sans limite de temps."
517
 
518
  #: adminpages/discountcodes.php:488 adminpages/membershiplevels.php:414
519
  msgid "Custom Trial"
525
 
526
  #: adminpages/discountcodes.php:493 adminpages/membershiplevels.php:425
527
  msgid "Trial Billing Amount"
528
+ msgstr "Montant pour l'essai personnalisé"
529
 
530
  #: adminpages/discountcodes.php:504 adminpages/membershiplevels.php:436
531
  msgid "for the first"
541
 
542
  #: adminpages/discountcodes.php:512 adminpages/membershiplevels.php:468
543
  msgid "Check this to set when membership access expires."
544
+ msgstr "Cochez cette case pour définir quand le niveau d'adhésion expire."
545
 
546
  #: adminpages/discountcodes.php:516 adminpages/membershiplevels.php:472
547
  msgid "Expires In"
548
+ msgstr "Expire en"
549
 
550
  #: adminpages/discountcodes.php:529 adminpages/membershiplevels.php:485
551
  msgid ""
553
  "(recurring subscription, if any) will be cancelled when the membership "
554
  "expires."
555
  msgstr ""
556
+ "Réglez la durée du niveau d'adhésion. Notez que les tous les paiements futurs "
557
+ "(abonnement récurrent, le cas échéant) seront annulés lorsque l'abonnement "
558
+ "expirera."
559
 
560
  #: adminpages/discountcodes.php:557
561
  msgid "Memberships Discount Codes"
562
+ msgstr "Codes de réduction sur les adhésions"
563
 
564
  #: adminpages/discountcodes.php:567
565
  msgid "Search Discount Codes"
566
+ msgstr "Rechercher parmi les codes de réduction"
567
 
568
  #: adminpages/discountcodes.php:570 adminpages/reports/login.php:83
569
  msgid "Search"
571
 
572
  #: adminpages/discountcodes.php:588
573
  msgid "Starts"
574
+ msgstr "Commence"
575
 
576
  #: adminpages/discountcodes.php:589 adminpages/memberslist.php:169
577
  #: adminpages/reports/login.php:147 includes/profile.php:98
587
  "Discount codes allow you to offer your memberships at discounted prices to "
588
  "select customers."
589
  msgstr ""
590
+ "Ces codes de réduction vous permettent d'offrir vos abonnements à prix "
591
+ "réduits pour certains clients."
592
 
593
  #: adminpages/discountcodes.php:603
594
  msgid "Create your first discount code now"
595
+ msgstr "Créez votre premier code de réduction maintenant"
596
 
597
  #: adminpages/discountcodes.php:648 adminpages/membershiplevels.php:580
598
  #: adminpages/orders.php:979
606
  "existing users will not change, but new users will not be able to use this "
607
  "code anymore."
608
  msgstr ""
609
+ "Êtes-vous sûr de vouloir effacer le code de réduction %s ? Les abonnements "
610
  "pour les utilisateurs existants ne changeront pas, mais les nouveaux "
611
+ "utilisateurs ne pourront plus utiliser ce code."
612
 
613
  #: adminpages/discountcodes.php:651 adminpages/membershiplevels.php:580
614
  #: adminpages/orders.php:985
618
  #: adminpages/emailsettings.php:69 includes/adminpages.php:50
619
  #: includes/adminpages.php:128
620
  msgid "Email Settings"
621
+ msgstr "Paramètres d'email"
622
 
623
  #: adminpages/emailsettings.php:70
624
  msgid ""
626
  "<em><strong>wordpress@yourdomain.com</strong></em>. You can update this from "
627
  "address using the fields below."
628
  msgstr ""
629
+ "Par défaut, les emails générés par le système sont envoyés par "
630
+ "<em><strong>wordpress@yourdomain.com</strong></em>. Vous pouvez mettre à jour "
631
+ "cette adresse en utilisant les champs ci-dessous"
632
 
633
  #: adminpages/emailsettings.php:72
634
  msgid ""
635
  "To modify the appearance of system generated emails, add the files "
636
  "<em>email_header.html</em> and <em>email_footer.html</em> to your theme's "
637
  "directory. This will modify both the WordPress default messages as well as "
638
+ "messages generated by Paid Memberships Pro. <a title=\"Paid Memberships Pro - "
639
+ "Member Communications\" target=\"_blank\" href=\"http://www."
640
  "paidmembershipspro.com/documentation/member-communications/\">Click here to "
641
  "learn more about Paid Memberships Pro emails</a>."
642
  msgstr ""
643
+ "Pour modifier l'apparence des emails générés, ajoutez les fichiers "
644
  "<em>email_header.html</em> et <em>email_footer.html</em> dans le répertoire "
645
+ "de votre thème. Cela modifiera à la fois les messages par défaut de Wordpress "
646
+ "et les messages générés par Paid Menberships Pro. <a title=\"Paid Memberships "
647
+ "Pro - Member Communications\" target=\"_blank\" href=\"http://www."
648
+ "paidmembershipspro.com/documentation/member-communications/\">Cliquez ici "
649
+ "pour en apprendre plus sur les emails dans Paid Memberships Pro</a>."
650
 
651
  #: adminpages/emailsettings.php:78
652
  msgid "From Email"
653
+ msgstr "Email d'envoi"
654
 
655
  #: adminpages/emailsettings.php:86
656
  msgid "From Name"
657
+ msgstr "Nom d'envoi"
658
 
659
  #: adminpages/emailsettings.php:94
660
  msgid "Only Filter PMPro Emails?"
661
+ msgstr "Filtrer seulement les emails de PMPro ?"
662
 
663
  #: adminpages/emailsettings.php:98
664
  msgid "If unchecked, all emails from \"WordPress &lt;"
665
+ msgstr "Si décoché, tous les emails venant de \"WordPress &lt;"
666
 
667
  #: adminpages/emailsettings.php:115
668
  msgid "Send the site admin emails"
669
+ msgstr "Envoyer des emails aux administrateurs du site"
670
 
671
  #: adminpages/emailsettings.php:121
672
  msgid "Checkout"
678
 
679
  #: adminpages/emailsettings.php:130
680
  msgid "Admin Changes"
681
+ msgstr "Changements par un admin"
682
 
683
  #: adminpages/emailsettings.php:134
684
  msgid "when an admin changes a user's membership level through the dashboard."
685
  msgstr ""
686
+ "quand un administrateur change le niveau d'adhésion d'un utilisateur par le "
687
  "tableau de bord."
688
 
689
  #: adminpages/emailsettings.php:139
704
 
705
  #: adminpages/emailsettings.php:158
706
  msgid "Send members emails"
707
+ msgstr "Envoyer des emails aux membres"
708
 
709
  #: adminpages/emailsettings.php:164
710
  msgid "New Users"
715
  "Default WP notification email. (Recommended: Leave unchecked. Members will "
716
  "still get an email confirmation from PMPro after checkout.)"
717
  msgstr ""
718
+ "Notification email de Wordpress par défaut. (Recommandé : Laissez décochée. "
719
+ "Les membres continueront de recevoir un email de confirmation de PMPpro après "
720
+ "paiement.)"
721
 
722
  #: adminpages/membershiplevels.php:118
723
  msgid "Membership level updated successfully."
724
+ msgstr "Niveau d'adhésion mis à jour."
725
 
726
  #: adminpages/membershiplevels.php:124
727
  msgid "Error updating membership level."
729
 
730
  #: adminpages/membershiplevels.php:141
731
  msgid "Membership level added successfully."
732
+ msgstr "Niveau d'adhésion ajouté."
733
 
734
  #: adminpages/membershiplevels.php:146
735
  msgid "Error adding membership level."
736
+ msgstr "Erreur lors de l'ajout d'un niveau d'adhésion."
737
 
738
  #: adminpages/membershiplevels.php:181
739
  #, php-format
742
  "want to check your payment gateway to see if their subscription is still "
743
  "active."
744
  msgstr ""
745
+ "Une erreur est survenue lors de l'annulation de l'abonnement de l'utilisateur "
746
+ "avec ID=%d. Vous devriez vérifier votre passerelle de paiement pour voir si "
747
+ "son abonnement est toujours actif."
748
 
749
  #: adminpages/membershiplevels.php:184
750
  msgid "Last Invoice"
752
 
753
  #: adminpages/membershiplevels.php:198
754
  msgid "Membership level deleted successfully."
755
+ msgstr "Niveau d'adhésion supprimé."
756
 
757
  #: adminpages/membershiplevels.php:203 adminpages/membershiplevels.php:209
758
  msgid "Error deleting membership level."
759
+ msgstr "Erreur lors de la suppression du niveau d'adhésion."
760
 
761
  #: adminpages/membershiplevels.php:224
762
  msgid "Edit Membership Level"
763
+ msgstr "Éditer le niveau d'adhésion."
764
 
765
  #: adminpages/membershiplevels.php:226
766
  msgid "Add New Membership Level"
781
 
782
  #: adminpages/membershiplevels.php:335 adminpages/membershiplevels.php:543
783
  msgid "Billing Details"
784
+ msgstr "Détails de facturation"
785
 
786
  #: adminpages/membershiplevels.php:370
787
  #: classes/gateways/class.pmprogateway_stripe.php:619
793
  "Stripe integration currently only supports billing periods of \"Week\", "
794
  "\"Month\" or \"Year\"."
795
  msgstr ""
796
+ "L'intégration Stripe ne supporte actuellement que les périodes de facturation "
797
+ "par semaine, mois et année."
798
 
799
  #: adminpages/membershiplevels.php:387
800
  msgid ""
801
+ "Braintree integration currently only supports billing periods of \"Month\" or "
802
+ "\"Year\"."
803
  msgstr ""
804
+ "L'intégration Braintree ne supporte actuellement que les périodes de "
805
+ "facturation par mois et année."
806
 
807
  #: adminpages/membershiplevels.php:389
808
  msgid ""
809
  "Payflow integration currently only supports billing frequencies of 1 and "
810
  "billing periods of \"Week\", \"Month\" or \"Year\"."
811
  msgstr ""
812
+ "L'intégration Payflox ne supporte actuellement que les fréquences de 1 et les "
813
+ "périodes de facturation par semaine, mois et année."
814
 
815
  #: adminpages/membershiplevels.php:393 adminpages/membershiplevels.php:395
816
  #: classes/gateways/class.pmprogateway_cybersource.php:101
826
  "Braintree dashboard with the same settings and the \"Plan ID\" set to "
827
  "<em>pmpro_#</em>, where # is the level ID."
828
  msgstr ""
829
+ "Après avoir enregistré ce niveau, prenez note de son ID et créez un \"Plan\" "
830
+ "dans votre tableau de bord Braintree avec les mêmes réglages et le \"Plan ID"
831
+ "\" mis à <em>pmpro_#</em>, où # est l'ID du niveau."
832
 
833
  #: adminpages/membershiplevels.php:395
834
  msgid ""
835
  "You will need to create a \"Plan\" in your Braintree dashboard with the same "
836
  "settings and the \"Plan ID\" set to"
837
  msgstr ""
838
+ "Vous devrez créer un \"Plan\" dans votre tableau de bord Braintree avec les "
839
+ "mêmes réglages et le \"Plan ID\" mis à "
840
 
841
  #: adminpages/membershiplevels.php:407
842
  msgid ""
851
  "2Checkout integration does not support custom trials. You can do one period "
852
  "trials by setting an initial payment different from the billing amount."
853
  msgstr ""
854
+ "L'intégration 2Checkout ne supporte pas les essais personnalisés. Vous "
855
+ "pouvez avoir une période d'essai en mettant un paiement initial différent du "
856
+ "montant récurrent."
857
 
858
  #: adminpages/membershiplevels.php:441
859
  msgid ""
860
  "Stripe integration currently does not support trial amounts greater than $0."
861
  msgstr ""
862
+ "L'intégration de Stripe ne supporte actuellement pas des périodes d'essai "
863
+ "supérieures à 0€"
864
 
865
  #: adminpages/membershiplevels.php:445
866
  msgid ""
867
  "Braintree integration currently does not support trial amounts greater than "
868
  "$0."
869
  msgstr ""
870
+ "L'intégration de Braintree ne supporte actuellement pas des périodes d'essai "
871
+ "supérieures à 0€"
872
 
873
  #: adminpages/membershiplevels.php:449
874
  msgid ""
875
  "Payflow integration currently does not support trial amounts greater than $0."
876
  msgstr ""
877
+ "L'intégration de Payflow ne supporte actuellement pas des périodes d'essai "
878
+ "supérieures à 0€"
879
 
880
  #: adminpages/membershiplevels.php:458
881
  msgid "Other Settings"
890
  "Check to hide this level from the membership levels page and disable "
891
  "registration."
892
  msgstr ""
893
+ "Cochez pour cacher ce niveau de la page des niveaux d'adhésion et désactiver "
894
+ "l'adhésion."
895
 
896
  #: adminpages/membershiplevels.php:493
897
  msgid "Content Settings"
922
  #: pages/confirmation.php:83 pages/invoice.php:70
923
  #: shortcodes/pmpro_account.php:46
924
  msgid "Expiration"
925
+ msgstr "Expiration"
926
 
927
  #: adminpages/membershiplevels.php:545
928
  msgid "Allow Signups"
1027
 
1028
  #: adminpages/memberslist.php:251 adminpages/reports/login.php:212
1029
  msgid "No members found."
1030
+ msgstr "Aucun membre trouvé."
1031
 
1032
  #: adminpages/memberslist.php:251 adminpages/reports/login.php:212
1033
  msgid "Search all levels"
1034
+ msgstr "Rechercher parmi tous les niveaux"
1035
 
1036
  #: adminpages/orders.php:67
1037
  msgid "Order deleted successfully."
1038
+ msgstr "Commande supprimée."
1039
 
1040
  #: adminpages/orders.php:72
1041
  msgid "Error deleting order."
1042
+ msgstr "Erreur lors de la suppression de la commande."
1043
 
1044
  #: adminpages/orders.php:169
1045
  msgid "Order saved successfully."
1046
+ msgstr "Commande enregistgrée."
1047
 
1048
  #: adminpages/orders.php:174
1049
  msgid "Error updating order timestamp."
1050
+ msgstr "Erreur lors de la mise à jour de la date de la commande."
1051
 
1052
  #: adminpages/orders.php:180
1053
  msgid "Error saving order."
1115
 
1116
  #: adminpages/orders.php:370 adminpages/orders.php:905 pages/invoice.php:84
1117
  msgid "Total"
1118
+ msgstr "Total"
1119
 
1120
  #: adminpages/orders.php:375
1121
  msgid "Should be subtotal + tax - couponamount."
1122
+ msgstr "Devrait être le sous-total + la taxe - le montant du coupon."
1123
 
1124
  #: adminpages/orders.php:380
1125
  msgid "Payment Type"
1127
 
1128
  #: adminpages/orders.php:385
1129
  msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
1130
+ msgstr "c'est-à-dire PayPal Express, PayPal Standard ou carte de crédit."
1131
 
1132
  #: adminpages/orders.php:389
1133
  #: classes/gateways/class.pmprogateway_braintree.php:304
1138
 
1139
  #: adminpages/orders.php:394
1140
  msgid "e.g. Visa, MasterCard, AMEX, etc"
1141
+ msgstr "c'est-à-dire Visa, MasterCartd, AMEX, etc."
1142
 
1143
  #: adminpages/orders.php:398
1144
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
1147
 
1148
  #: adminpages/orders.php:403
1149
  msgid "Obscure all but last 4 digits."
1150
+ msgstr "Masque tout sauf les 4 derniers chiffres."
1151
 
1152
  #: adminpages/orders.php:408
1153
  msgid "Expiration Month"
1183
 
1184
  #: adminpages/orders.php:479
1185
  msgid "Generated by the gateway. Useful to cross reference orders."
1186
+ msgstr "Généré par la passerelle. Utile pour voir les références des commandes."
 
1187
 
1188
  #: adminpages/orders.php:483
1189
  msgid "Subscription Transaction ID"
1190
+ msgstr "Numéro de la transaction d'abonnement"
1191
 
1192
  #: adminpages/orders.php:488
1193
  msgid "Generated by the gateway. Useful to cross reference subscriptions."
1194
+ msgstr "Généré par la passerelle. Utile pour voir la référence des abonnements."
1195
 
1196
  #: adminpages/orders.php:493 adminpages/orders.php:910 pages/invoice.php:107
1197
  #: shortcodes/pmpro_account.php:122
1212
 
1213
  #: adminpages/orders.php:560
1214
  msgid "Save Order"
1215
+ msgstr "Enregistrer la commande"
1216
 
1217
  #: adminpages/orders.php:570 includes/adminpages.php:55
1218
  #: includes/adminpages.php:163
1221
 
1222
  #: adminpages/orders.php:571
1223
  msgid "Add New Order"
1224
+ msgstr "Ajouter une nouvelle commande"
1225
 
1226
  #: adminpages/orders.php:605
1227
  msgid "All"
1228
+ msgstr "Tout"
1229
 
1230
  #: adminpages/orders.php:606
1231
  msgid "Within a Date Range"
1232
+ msgstr "Dans la plage de dates"
1233
 
1234
  #: adminpages/orders.php:607
1235
  msgid "Predefined Date Range"
1236
+ msgstr "Plage de date prédéfinie"
1237
 
1238
  #: adminpages/orders.php:608
1239
  msgid "Within a Level"
1240
+ msgstr "Dans le niveau"
1241
 
1242
  #: adminpages/orders.php:609
1243
  msgid "Within a Status"
1244
+ msgstr "Dans le statut"
1245
 
1246
  #: adminpages/orders.php:612
1247
  msgid "From"
1248
+ msgstr "De"
1249
 
1250
  #: adminpages/orders.php:624
1251
  msgid "To"
1252
+ msgstr "À"
1253
 
1254
  #: adminpages/orders.php:636
1255
  msgid "filter by "
1256
+ msgstr "filtré par"
1257
 
1258
  #: adminpages/orders.php:674
1259
  msgid "Filter"
1260
+ msgstr "FIltrer"
1261
 
1262
  #: adminpages/orders.php:777 adminpages/orders.php:780
1263
  msgid "Search Orders"
1264
+ msgstr "Rechercher parmi les commandes"
1265
 
1266
  #: adminpages/orders.php:893
1267
  #, php-format
1301
  "Deleting orders is permanent and can affect active users. Are you sure you "
1302
  "want to delete order %s?"
1303
  msgstr ""
1304
+ "La suppression des commandes est permanente et peut affecter les utilisateurs "
1305
+ "actifs. Êtes-vous sûr de vouloir supprimer la commande %s ?"
1306
 
1307
  #: adminpages/orders.php:995
1308
  msgid "No orders found."
1309
+ msgstr "Aucune commande trouvée."
1310
 
1311
  #: adminpages/pagesettings.php:51
1312
  msgid "Membership Account"
1313
+ msgstr "Compte d'adhérent"
1314
 
1315
  #: adminpages/pagesettings.php:54
1316
  msgid "Membership Billing"
1317
+ msgstr "Reçu d'adhésion"
1318
 
1319
  #: adminpages/pagesettings.php:57
1320
  msgid "Membership Cancel"
1321
+ msgstr "Annulation d'adhésion"
1322
 
1323
  #: adminpages/pagesettings.php:60
1324
  msgid "Membership Checkout"
1325
+ msgstr "Paiement d'adhésion"
1326
 
1327
  #: adminpages/pagesettings.php:63
1328
  msgid "Membership Confirmation"
1329
+ msgstr "Confirmation d'adhésion"
1330
 
1331
  #: adminpages/pagesettings.php:66
1332
  msgid "Membership Invoice"
1333
+ msgstr "Facture d'adhésion"
1334
 
1335
  #: adminpages/pagesettings.php:73
1336
  #, php-format
1337
  msgid "Membership %s"
1338
+ msgstr "Adhésion %s"
1339
 
1340
  #: adminpages/pagesettings.php:111
1341
  msgid "The following pages have been created for you"
1345
  msgid ""
1346
  "Manage the WordPress pages assigned to each required Paid Memberships Pro "
1347
  "page."
1348
+ msgstr "Gérer les pages Wordpress assignées à chaque page Paid Memberships Pro."
 
1349
 
1350
  #: adminpages/pagesettings.php:132
1351
  msgid ""
1398
 
1399
  #: adminpages/pagesettings.php:186
1400
  msgid "Checkout Page"
1401
+ msgstr "Page de paiement"
1402
 
1403
  #: adminpages/pagesettings.php:202
1404
  msgid "Confirmation Page"
1406
 
1407
  #: adminpages/pagesettings.php:218
1408
  msgid "Invoice Page"
1409
+ msgstr "Page de facture"
1410
 
1411
  #: adminpages/pagesettings.php:234
1412
  msgid "Levels Page"
1429
  "Learn more about <a title=\"Paid Memberships Pro - SSL Settings\" target="
1430
  "\"_blank\" href=\"http://www.paidmembershipspro.com/support/initial-plugin-"
1431
  "setup/ssl/\">SSL</a> or <a title=\"Paid Memberships Pro - Payment Gateway "
1432
+ "Settings\" target=\"_blank\" href=\"http://www.paidmembershipspro.com/support/"
1433
+ "initial-plugin-setup/payment-gateway/\">Payment Gateway Settings</a>."
1434
  msgstr ""
1435
 
1436
  #: adminpages/paymentsettings.php:153
1439
 
1440
  #: adminpages/paymentsettings.php:169
1441
  msgid ""
1442
+ "Not all currencies will be supported by every gateway. Please check with your "
1443
+ "gateway."
1444
  msgstr ""
1445
  "Toutes les devises ne sont pas supportées par chaque passerelle de paiement. "
1446
  "Veuillez vérifier votre passerelle de paiement."
1447
 
1448
  #: adminpages/paymentsettings.php:174
1449
  msgid "Accepted Credit Card Types"
1450
+ msgstr "Type de cartes de crédit acceptées"
1451
 
1452
  #: adminpages/paymentsettings.php:188
1453
  msgid "Sales Tax"
1454
+ msgstr "Taxes sur les ventes"
1455
 
1456
  #: adminpages/paymentsettings.php:188 pages/billing.php:82
1457
  msgid "optional"
1459
 
1460
  #: adminpages/paymentsettings.php:191
1461
  msgid "Tax State"
1462
+ msgstr "Taxe d'État"
1463
 
1464
  #: adminpages/paymentsettings.php:192
1465
  msgid "abbreviation, e.g. \"PA\""
1466
+ msgstr "abréviation, par exemple « PA »"
1467
 
1468
  #: adminpages/paymentsettings.php:194
1469
  msgid "decimal, e.g. \"0.06\""
1470
+ msgstr "décimal, par exemple \"0.06\""
1471
 
1472
  #: adminpages/paymentsettings.php:195
1473
  msgid ""
1476
  "<a target=\"_blank\" href=\"http://www.paidmembershipspro.com/2013/10/non-us-"
1477
  "taxes-paid-memberships-pro/\">pmpro_tax filter</a>."
1478
  msgstr ""
1479
+ "Valable pour les États-Unis seulement. S'il y a des valeurs, elles "
1480
+ "s'appliqeront à tous les membres commandant d'un État particulier.<br />Hors "
1481
+ "des États-Unis ou pour des règles de taxe plus complexes, utilisez le <a "
1482
+ "target=\"_blank\" href=\"http://www.paidmembershipspro.com/2013/10/non-us-"
1483
+ "taxes-paid-memberships-pro/\">filtre de taxes pmpro</a>."
1484
 
1485
  #: adminpages/paymentsettings.php:206
1486
  msgid "Force SSL"
1487
+ msgstr "Forcer le SSL"
1488
 
1489
  #: adminpages/paymentsettings.php:212
1490
  msgid "Yes (with JavaScript redirects)"
1491
+ msgstr "Oui (avec redirection Javascript)"
1492
 
1493
  #: adminpages/paymentsettings.php:219
1494
  msgid "SSL Seal Code"
1496
 
1497
  #: adminpages/paymentsettings.php:228
1498
  msgid "Extra HTTPS URL Filter"
1499
+ msgstr "Filtre d'URL HTTPS supplémentaire"
1500
 
1501
  #: adminpages/paymentsettings.php:231
1502
  msgid ""
1504
  "secure pages. Check this if you are using SSL and have warnings on your "
1505
  "checkout pages."
1506
  msgstr ""
1507
+ "Passer tout le HTML généré à traver un filtre d'URL pour ajouter HTTPS aux "
1508
+ "URL sur les pages sécurisés. Cochez cela si vous utilisez SSL et avez des "
1509
+ "avertissements sur vos pages de paiement."
1510
 
1511
  #: adminpages/reports.php:40
1512
  msgid "Details"
1534
 
1535
  #: adminpages/reports/login.php:33 adminpages/reports/login.php:151
1536
  msgid "Views This Month"
1537
+ msgstr "Vues ce mois"
1538
 
1539
  #: adminpages/reports/login.php:34
1540
  msgid "Views All Time"
1570
 
1571
  #: adminpages/reports/login.php:152
1572
  msgid "Total Views"
1573
+ msgstr "Totals des vues"
1574
 
1575
  #: adminpages/reports/login.php:153
1576
  msgid "Last Login"
1578
 
1579
  #: adminpages/reports/login.php:155
1580
  msgid "Total Logins"
1581
+ msgstr "Totals des connexions"
1582
 
1583
+ #: adminpages/reports/memberships.php:18 adminpages/reports/memberships.php:288
 
1584
  msgid "Membership Stats"
1585
+ msgstr "Statistiques d'adhésion"
1586
 
1587
  #: adminpages/reports/memberships.php:48
1588
  msgid "Signups"
1589
+ msgstr "Inscriptions"
1590
 
1591
  #: adminpages/reports/memberships.php:50 adminpages/reports/memberships.php:69
1592
  msgid "All Time"
1593
+ msgstr "Depuis le début"
1594
 
1595
  #: adminpages/reports/memberships.php:54 adminpages/reports/memberships.php:73
1596
  msgid "This Year"
1597
+ msgstr "Cette année"
1598
 
1599
  #: adminpages/reports/memberships.php:58 adminpages/reports/memberships.php:77
1600
  msgid "This Month"
1601
+ msgstr "Ce mois"
1602
 
1603
  #: adminpages/reports/memberships.php:62 adminpages/reports/memberships.php:81
1604
  msgid "Today"
1605
+ msgstr "Aujourd'hui"
1606
 
1607
  #: adminpages/reports/memberships.php:67
1608
  msgid "Cancellations"
1609
+ msgstr "Résiliations"
1610
 
1611
  #: adminpages/reports/memberships.php:86
1612
  msgid "Other Stats"
1613
+ msgstr "Autres statistiques"
1614
 
1615
  #: adminpages/reports/memberships.php:88
1616
  msgid "Monthly Recurring Revenue (MRR)"
1617
+ msgstr "Revenu mensuel récurrent (MRR)"
1618
 
1619
  #: adminpages/reports/memberships.php:92
1620
  msgid "Cancellation Rate"
1621
+ msgstr "Taux de résiliation"
1622
 
1623
  #: adminpages/reports/memberships.php:96
1624
  msgid "Lifetime Value (LTV)"
1625
+ msgstr "Temps de vie (LTV)"
1626
 
1627
  #: adminpages/reports/memberships.php:294 adminpages/reports/sales.php:195
1628
  msgid "Daily"
1634
 
1635
  #: adminpages/reports/memberships.php:296 adminpages/reports/sales.php:197
1636
  msgid "Annual"
1637
+ msgstr "Annuellement"
1638
 
1639
  #: adminpages/reports/memberships.php:299
1640
  msgid "Signups vs. Cancellations"
1641
+ msgstr "Inscriptions / Résiliations"
1642
 
1643
  #: adminpages/reports/memberships.php:304
1644
  #: adminpages/reports/memberships.php:315 adminpages/reports/sales.php:203
1648
 
1649
  #: adminpages/reports/memberships.php:331 adminpages/reports/sales.php:230
1650
  msgid "Generate Report"
1651
+ msgstr "Générer le rapport"
1652
 
1653
  #: adminpages/reports/sales.php:18
1654
  msgid "Sales and Revenue (Testing/Sandbox)"
1655
+ msgstr "Ventes et produits (Environnement de test)"
1656
 
1657
  #: adminpages/reports/sales.php:20 adminpages/reports/sales.php:189
1658
  msgid "Sales and Revenue"
1659
+ msgstr "Ventes et produits"
1660
 
1661
  #: adminpages/reports/sales.php:200
1662
  msgid "Revenue"
1663
+ msgstr "Produits"
1664
 
1665
  #: adminpages/reports/sales.php:201
1666
  msgid "Sales"
1673
  "want to check your payment gateway to see if their subscription is still "
1674
  "active."
1675
  msgstr ""
1676
+ "Une erreur est survenue lors de l'annulation d'abonnement pour l'utilisateur "
1677
+ "avec l ID=%s. Vous devrez vérifier sur votre passerelle de paiement pour voir "
1678
+ "si leur abonnement est toujours actif."
1679
 
1680
  #: classes/class.pmproemail.php:37
1681
  #, php-format
1685
  #: classes/class.pmproemail.php:125
1686
  #, php-format
1687
  msgid "Your membership at %s has been CANCELLED"
1688
+ msgstr "Votre adhésion à %s a été RÉSILIÉE"
1689
 
1690
  #: classes/class.pmproemail.php:147
1691
  #, php-format
1692
  msgid "Membership for %s at %s has been CANCELLED"
1693
+ msgstr "L'adhésion pour %s à %s a été RÉSILIÉE"
1694
 
1695
  #: classes/class.pmproemail.php:178
1696
  #, php-format
1716
  #: classes/class.pmproemail.php:278
1717
  #, php-format
1718
  msgid "Member Checkout for %s at %s"
1719
+ msgstr "Paiement d'adhésion pour %s à %s"
1720
 
1721
  #: classes/class.pmproemail.php:366
1722
  #, php-format
1741
  #: classes/class.pmproemail.php:560
1742
  #, php-format
1743
  msgid "Credit Card on File Expiring Soon at %s"
1744
+ msgstr "La carte de crédit enregistrée expire bientôt, le %s"
1745
 
1746
  #: classes/class.pmproemail.php:608
1747
  #, php-format
1751
  #: classes/class.pmproemail.php:679
1752
  #, php-format
1753
  msgid "Your trial at %s is ending soon"
1754
+ msgstr "Votre période d'essai à %s se termine bientôt"
1755
 
1756
  #: classes/class.pmproemail.php:713
1757
  #, php-format
1771
  #: classes/class.pmproemail.php:762 classes/class.pmproemail.php:800
1772
  #, php-format
1773
  msgid "The new level is %s"
1774
+ msgstr "Le nouveau niveau est %s"
1775
 
1776
  #: classes/class.pmproemail.php:764
1777
  msgid "Your membership has been cancelled"
1778
+ msgstr "Votre adhésion a été résiliée"
1779
 
1780
  #: classes/class.pmproemail.php:768 classes/class.pmproemail.php:806
1781
  #, php-format
1784
 
1785
  #: classes/class.pmproemail.php:772 classes/class.pmproemail.php:810
1786
  msgid "This membership does not expire"
1787
+ msgstr "Cette adhésion est sans limite de temps"
1788
 
1789
  #: classes/class.pmproemail.php:796
1790
  #, php-format
1791
  msgid "Membership for %s at %s has been changed"
1792
+ msgstr "L'adhésion de %s à %s a été changée"
1793
 
1794
  #: classes/class.pmproemail.php:802
1795
  msgid "Membership has been cancelled"
1796
+ msgstr "L'adhésion a été résiliée"
1797
 
1798
  #: classes/gateways/class.pmprogateway.php:55
1799
  #: classes/gateways/class.pmprogateway_authorizenet.php:171
1830
  "A partial payment was made that we could not void. Please contact the site "
1831
  "owner immediately to correct this."
1832
  msgstr ""
1833
+ "Un paiement partiel que nous ne pouvions pas annuler a été fait. Veuillez "
1834
+ "contacter le propriétaire du site immédiatement pour corriger cela."
1835
 
1836
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
1837
  #: paid-memberships-pro.php:123
1838
  msgid "Authorize.net"
1839
+ msgstr "Authorize.net"
1840
 
1841
  #: classes/gateways/class.pmprogateway_authorizenet.php:93
1842
  msgid "Authorize.net Settings"
1843
+ msgstr "Réglages Authorize.net"
1844
 
1845
  #: classes/gateways/class.pmprogateway_authorizenet.php:98
1846
  msgid "Login Name"
1869
  #: classes/gateways/class.pmprogateway_braintree.php:76
1870
  #: paid-memberships-pro.php:124
1871
  msgid "Braintree Payments"
1872
+ msgstr "Braintree Payments"
1873
 
1874
  #: classes/gateways/class.pmprogateway_braintree.php:132
1875
  msgid "Braintree Settings"
1876
+ msgstr "Réglages Braintree"
1877
 
1878
  #: classes/gateways/class.pmprogateway_braintree.php:137
1879
  #: classes/gateways/class.pmprogateway_cybersource.php:106
1930
  #: classes/gateways/class.pmprogateway_stripe.php:487 pages/billing.php:286
1931
  #: pages/checkout.php:586
1932
  msgid "what's this?"
1933
+ msgstr "qu'est ce que c'est ?"
1934
 
1935
  #: classes/gateways/class.pmprogateway_braintree.php:364
1936
  #: classes/gateways/class.pmprogateway_stripe.php:497 pages/checkout.php:78
1937
  #: pages/checkout.php:596
1938
  msgid "Apply"
1939
+ msgstr "Soumettre"
1940
 
1941
  #: classes/gateways/class.pmprogateway_braintree.php:419
1942
  #: classes/gateways/class.pmprogateway_stripe.php:1025
1943
  msgid "Unknown error: Initial payment failed."
1944
+ msgstr "Erreur inconnue : le paiement initial a échoué."
1945
 
1946
  #: classes/gateways/class.pmprogateway_braintree.php:478
1947
  msgid "Error during settlement:"
1948
+ msgstr "Erreur lors du règlement :"
1949
 
1950
  #: classes/gateways/class.pmprogateway_braintree.php:487
1951
  msgid "Error during charge:"
1952
+ msgstr "Erreur lors de la charge :"
1953
 
1954
  #: classes/gateways/class.pmprogateway_braintree.php:579
1955
  msgid "Failed to update customer."
1961
 
1962
  #: classes/gateways/class.pmprogateway_braintree.php:634
1963
  msgid "Error creating customer record with Braintree:"
1964
+ msgstr "Erreur de création du dossier client avec Braintree :"
1965
 
1966
  #: classes/gateways/class.pmprogateway_braintree.php:734
1967
  msgid "Error subscribing customer to plan with Braintree:"
1968
+ msgstr "Erreur d'abonnement de l'utilisateur avec Braintree :"
1969
 
1970
  #: classes/gateways/class.pmprogateway_braintree.php:749
1971
  msgid "Failed to subscribe with Braintree:"
1972
+ msgstr "Abonnement échoué à Braintree :"
1973
 
1974
  #: classes/gateways/class.pmprogateway_braintree.php:787
1975
  #: classes/gateways/class.pmprogateway_braintree.php:800
1980
  #: classes/gateways/class.pmprogateway_check.php:48
1981
  #: paid-memberships-pro.php:117
1982
  msgid "Pay by Check"
1983
+ msgstr "Payer par chèque"
1984
 
1985
  #: classes/gateways/class.pmprogateway_check.php:100
1986
  msgid "Pay by Check Settings"
1987
+ msgstr "Réglages de paiement par chèque"
1988
 
1989
  #: classes/gateways/class.pmprogateway_check.php:105
1990
  msgid "Instructions"
1991
+ msgstr "Instructions"
1992
 
1993
  #: classes/gateways/class.pmprogateway_check.php:109
1994
  msgid ""
1995
  "Who to write the check out to. Where to mail it. Shown on checkout, "
1996
  "confirmation, and invoice pages."
1997
  msgstr ""
1998
+ "À qui écrire le chèque. Où l'envoyer. Affiché sur les pages de paiement, de "
1999
+ "confirmation et de facturation."
2000
 
2001
  #: classes/gateways/class.pmprogateway_cybersource.php:42
2002
  msgid "CyberSource"
2010
  msgid ""
2011
  "This gateway option is in beta. Some functionality may not be available. "
2012
  "Please contact Paid Memberships Pro with any issues you run into. "
2013
+ "<strong>Please be sure to upgrade Paid Memberships Pro to the latest versions "
2014
+ "when available.</strong>"
2015
  msgstr ""
2016
 
2017
  #: classes/gateways/class.pmprogateway_cybersource.php:114
2018
  msgid "Transaction Security Key"
2019
+ msgstr "Clé de sécurité de transaction"
2020
 
2021
  #: classes/gateways/class.pmprogateway_payflowpro.php:39
2022
  msgid "Payflow Pro/PayPal Pro"
2024
 
2025
  #: classes/gateways/class.pmprogateway_payflowpro.php:95
2026
  msgid "Payflow Pro Settings"
2027
+ msgstr "Réglages Payflow Pro"
2028
 
2029
  #: classes/gateways/class.pmprogateway_payflowpro.php:100
2030
  msgid "Partner"
2056
  "A partial payment was made that we could not refund. Please contact the site "
2057
  "owner immediately to correct this."
2058
  msgstr ""
2059
+ "Un paiement partiel que nous ne pouvions pas rembourser a été fait. S'il vous "
2060
+ "plaît contacter le propriétaire du site immédiatement pour corriger cela."
 
2061
 
2062
  #: classes/gateways/class.pmprogateway_paypal.php:57
2063
  #: paid-memberships-pro.php:120
2068
  #: classes/gateways/class.pmprogateway_paypalexpress.php:118
2069
  #: classes/gateways/class.pmprogateway_paypalstandard.php:112
2070
  msgid "PayPal Settings"
2071
+ msgstr "Réglages PayPal"
2072
 
2073
  #: classes/gateways/class.pmprogateway_paypal.php:118
2074
  #: classes/gateways/class.pmprogateway_paypalexpress.php:123
2075
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
2076
  msgid ""
2077
  "We do not recommend using PayPal Standard. We suggest using PayPal Express, "
2078
+ "Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank"
2079
+ "\" href=\"http://www.paidmembershipspro.com/2013/09/read-using-paypal-"
2080
+ "standard-paid-memberships-pro/\">More information on why can be found here.</"
2081
+ "a>"
2082
  msgstr ""
2083
+ "Nous ne recommandons pas l'usage de PayPal Standard. Nous vous suggérons "
2084
+ "plutôt PayPal Express, Website Payments Pro (ancien), or PayPal Pro (Payflow "
2085
+ "Pro). <a target=\"_blank\" href=\"http://www.paidmembershipspro.com/2013/09/"
2086
+ "read-using-paypal-standard-paid-memberships-pro/\">En savoir plus ici.</a>"
2087
 
2088
  #: classes/gateways/class.pmprogateway_paypal.php:123
2089
  #: classes/gateways/class.pmprogateway_paypalexpress.php:128
2090
  #: classes/gateways/class.pmprogateway_paypalstandard.php:122
2091
  msgid "Gateway Account Email"
2092
+ msgstr "Email du compte"
2093
 
2094
  #: classes/gateways/class.pmprogateway_paypal.php:131
2095
  #: classes/gateways/class.pmprogateway_paypalexpress.php:136
2096
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
2097
  #: classes/gateways/class.pmprogateway_twocheckout.php:113
2098
  msgid "API Username"
2099
+ msgstr "Nom d'utilisateur API"
2100
 
2101
  #: classes/gateways/class.pmprogateway_paypal.php:139
2102
  #: classes/gateways/class.pmprogateway_paypalexpress.php:144
2103
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
2104
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
2105
  msgid "API Password"
2106
+ msgstr "Mot de passe API"
2107
 
2108
  #: classes/gateways/class.pmprogateway_paypal.php:147
2109
  #: classes/gateways/class.pmprogateway_paypalexpress.php:152
2110
  #: classes/gateways/class.pmprogateway_paypalstandard.php:146
2111
  msgid "API Signature"
2112
+ msgstr "Signature API"
2113
 
2114
  #: classes/gateways/class.pmprogateway_paypal.php:155
2115
  #: classes/gateways/class.pmprogateway_paypalexpress.php:160
2122
  "This URL is passed to PayPal for all new charges and subscriptions. You "
2123
  "SHOULD NOT set this in your PayPal account settings."
2124
  msgstr ""
2125
+ "Cette URL est transmise à PayPal pour tous les paiements et abonnements. Vous "
2126
+ "ne DEVRIEZ PAS l'entrer dans votre compte PayPal."
2127
 
2128
  #: classes/gateways/class.pmprogateway_paypal.php:178
2129
  #: classes/gateways/class.pmprogateway_paypalexpress.php:402
2130
  #: classes/gateways/class.pmprogateway_paypalstandard.php:202
2131
  #: pages/checkout.php:286
2132
  msgid "Check Out with PayPal"
2133
+ msgstr "Payer avec Paypal"
2134
 
2135
  #: classes/gateways/class.pmprogateway_paypal.php:184
2136
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
2137
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
2138
  #: pages/checkout.php:704
2139
  msgid "Submit and Check Out"
2140
+ msgstr "Soumettre et payer"
2141
 
2142
  #: classes/gateways/class.pmprogateway_paypal.php:184
2143
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
2154
  "Please contact the site owner or cancel your subscription from within PayPal "
2155
  "to make sure you are not charged going forward."
2156
  msgstr ""
2157
+ "Veuillez contacter le propriétaire du site ou bien annuler votre abonnement "
2158
+ "depuis PayPal pour être sûr de ne pas être débité en continuant."
2159
 
2160
  #: classes/gateways/class.pmprogateway_paypalexpress.php:63
2161
  #: paid-memberships-pro.php:119
2183
  "Here is your IPN URL for reference. You SHOULD NOT set this in your PayPal "
2184
  "settings."
2185
  msgstr ""
2186
+ "Voici pour mémoire votre IPN URL. Vous de DEVRIEZ PAS l'entrer dans votre "
2187
+ "compte PayPal."
2188
 
2189
  #: classes/gateways/class.pmprogateway_stripe.php:93
2190
  #: paid-memberships-pro.php:118
2193
 
2194
  #: classes/gateways/class.pmprogateway_stripe.php:148
2195
  msgid "Stripe Settings"
2196
+ msgstr "Réglages Stripe"
2197
 
2198
  #: classes/gateways/class.pmprogateway_stripe.php:153
2199
  msgid "Secret Key"
2226
 
2227
  #: classes/gateways/class.pmprogateway_stripe.php:571
2228
  msgid ""
2229
+ "Subscription updates, allow you to change the member's subscription values at "
2230
+ "predefined times. Be sure to click Update Profile after making changes."
2231
  msgstr ""
2232
 
2233
  #: classes/gateways/class.pmprogateway_stripe.php:573
2234
  msgid ""
2235
+ "Subscription updates, allow you to change the member's subscription values at "
2236
+ "predefined times. Be sure to click Update User after making changes."
2237
  msgstr ""
2238
 
2239
  #: classes/gateways/class.pmprogateway_stripe.php:578 pages/billing.php:329
2325
 
2326
  #: includes/adminpages.php:262
2327
  msgid "Visit Customer Support Forum"
2328
+ msgstr "Consultez le forum de support"
2329
 
2330
  #: includes/adminpages.php:262
2331
  msgid "Support"
2454
  #: includes/functions.php:207
2455
  #, php-format
2456
  msgid "The price for membership is <strong>%s</strong> now"
2457
+ msgstr "Le coût de l'adhésion est de <strong>%s</strong>."
2458
 
2459
  #: includes/functions.php:209
2460
  #, php-format
2464
  #: includes/functions.php:218
2465
  #, php-format
2466
  msgid " and then <strong>%s per %s for %d more %s</strong>."
2467
+ msgstr "et ensuite <strong>%s par %s pour encore %d %s</strong>."
2468
 
2469
  #: includes/functions.php:222
2470
  #, php-format
2471
  msgid " and then <strong>%s every %d %s for %d more %s</strong>."
2472
+ msgstr "et ensuite <strong>%s chaque %d %s pour encore %d %s</strong>."
2473
 
2474
  #: includes/functions.php:227
2475
  #, php-format
2523
  #: includes/functions.php:286
2524
  #, php-format
2525
  msgid "After your initial payment, your first %d payments will cost %s."
2526
+ msgstr "Après votre paiement initial, vos premiers %d paiements coûtera %s."
2527
 
2528
  #: includes/functions.php:297
2529
  #, php-format
2530
  msgid "Customers in %s will be charged %s%% tax."
2531
+ msgstr "Les clients de %s seront taxés à %s%%."
2532
 
2533
  #: includes/functions.php:311
2534
  #, php-format
2535
  msgid "Membership expires after %d %s."
2536
+ msgstr "L'adhésion expire après %d %s."
2537
 
2538
  #: includes/functions.php:576
2539
  msgid "User ID not found."
2558
 
2559
  #: includes/functions.php:1157
2560
  msgid "No code was given to check."
2561
+ msgstr "Aucun code à vérifier."
2562
 
2563
  #: includes/functions.php:1166
2564
  msgid "The discount code could not be found."
2584
 
2585
  #: includes/functions.php:1237
2586
  msgid "This discount code is okay."
2587
+ msgstr "Ce code de réduction est valide."
2588
 
2589
  #: includes/functions.php:1262
2590
  msgid "and"
2592
 
2593
  #: includes/functions.php:1457
2594
  msgid "Sign Up for !!name!! Now"
2595
+ msgstr "!!name!!, inscrivez-vous maintenant !"
2596
 
2597
  #: includes/functions.php:1463
2598
  msgid "Please specify a level id."
2599
+ msgstr "Veuillez spécifier un n° de niveau."
2600
 
2601
  #: includes/init.php:233 includes/profile.php:39
2602
  msgid "None"
2636
 
2637
  #: includes/metaboxes.php:38
2638
  msgid ""
2639
+ "This post is already protected for this level because it is within a category "
2640
+ "that requires membership."
2641
  msgstr ""
2642
  "Ce poste est déjà protégé à ce niveau, car il est dans une catégorie qui "
2643
  "nécessite l'adhésion."
2644
 
2645
  #: includes/metaboxes.php:99 includes/metaboxes.php:100
2646
  msgid "Require Membership"
2647
+ msgstr "Exiger l'adhésion"
2648
 
2649
  #: includes/profile.php:36
2650
  msgid "Current Level"
2652
 
2653
  #: includes/profile.php:54
2654
  msgid "Not paying."
2655
+ msgstr "Rien à payer."
2656
 
2657
  #: includes/profile.php:64
2658
  msgid ""
2659
  "This will not change the subscription at the gateway unless the 'Cancel' "
2660
  "checkbox is selected below."
2661
  msgstr ""
2662
+ "Cela ne changera pas l'abonnement sur la passerelle à moins que la case "
2663
+ "Annuler soit cochée ci-dessous."
2664
 
2665
  #: includes/upgradecheck.php:422
2666
  #, php-format
2667
  msgid ""
2668
  "This content is for !!levels!! members only.<br /><a href=\"%s\">Register</a>"
2669
  msgstr ""
2670
+ "Ce contenu est réservé aux membres du niveau !!levels!!. <br /><a href=\"%s"
2671
+ "\">Adhérer</a>"
2672
 
2673
  #: includes/upgradecheck.php:425
2674
  #, php-format
2676
  "This content is for !!levels!! members only.<br /><a href=\"%s\">Log In</a> "
2677
  "<a href=\"%s\">Register</a>"
2678
  msgstr ""
2679
+ "Ce contenu est réservé aux membres du niveau !!levels!!. <br /><a href=\"%s"
2680
+ "\">Se connecter</a> <a href=\"%s\">Adhérer</a>"
2681
 
2682
  #: includes/upgradecheck.php:429
2683
  msgid ""
2684
  "This content is for !!levels!! members only. Visit the site and log in/"
2685
  "register to read."
2686
  msgstr ""
2687
+ "Ce contenu est réservé aux membres du niveau !!levels!!. Visitez le site et "
2688
+ "connectez-vous ou adhérez pour le lire."
2689
 
2690
  #: pages/billing.php:14
2691
  #, php-format
2704
 
2705
  #: pages/billing.php:18
2706
  msgid "Membership Fee"
2707
+ msgstr "Droits d'adhésion"
2708
 
2709
  #: pages/billing.php:22
2710
  #, php-format
2755
 
2756
  #: pages/billing.php:99 pages/checkout.php:339
2757
  msgid "Postal Code"
2758
+ msgstr "Code postal"
2759
 
2760
  #: pages/billing.php:108 pages/checkout.php:348
2761
  msgid "City, State Zip"
2762
+ msgstr "Ville, code d'État"
2763
 
2764
  #: pages/billing.php:161 pages/checkout.php:401
2765
  msgid "Country"
2771
 
2772
  #: pages/billing.php:197 pages/checkout.php:207 pages/checkout.php:440
2773
  msgid "E-mail Address"
2774
+ msgstr "Adresse email"
2775
 
2776
  #: pages/billing.php:201 pages/checkout.php:449
2777
  msgid "Confirm E-mail"
2778
+ msgstr "Confirmer l'email"
2779
 
2780
  #: pages/billing.php:221
2781
  #, php-format
2791
  "This subscription is not recurring. So you don't need to update your billing "
2792
  "information."
2793
  msgstr ""
2794
+ "Cet abonnement n'est pas récurrent. Vous n'avez donc pas besoin de mettre à "
2795
+ "jour vos informations de facturation."
2796
 
2797
  #: pages/cancel.php:26
2798
  msgid "Are you sure you want to cancel your membership?"
2799
+ msgstr "Êtes-vous sûr de vouloir résilier votre adhésion?"
2800
 
2801
  #: pages/cancel.php:32
2802
  #, php-format
2803
  msgid "Are you sure you want to cancel your %s membership?"
2804
+ msgstr "Êtes-vous sûr de vouloir résilier votre adhésion %s ?"
2805
 
2806
  #: pages/cancel.php:37
2807
  msgid "Yes, cancel my account"
2813
 
2814
  #: pages/cancel.php:48 shortcodes/pmpro_account.php:40
2815
  msgid "My Memberships"
2816
+ msgstr "Mes adhésions"
2817
 
2818
  #: pages/cancel.php:77
2819
  msgid "Cancel All Memberships"
2820
+ msgstr "Résilier toutes mes adhésions"
2821
 
2822
  #: pages/cancel.php:86
2823
  msgid "Click here to go to the home page."
2829
  "<strong>click the \"Complete Payment\" button</strong> to finish your order."
2830
  msgstr ""
2831
  "Presque fini. Vérifiez les informations d'adhésion et les prix ci-dessous "
2832
+ "puis <strong>cliquez sur le bouton Terminer le paiement</strong> pour "
2833
  "terminer votre commande."
2834
 
2835
  #: pages/checkout.php:33
2847
  "<p class=\"pmpro_level_discount_applied\">The <strong>%s</strong> code has "
2848
  "been applied to your order.</p>"
2849
  msgstr ""
2850
+ "<p class=\"pmpro_level_discount_applied\">Le code de réduction <strong>%s</"
2851
+ "strong> a été appliqué à votre commande.</p>"
2852
 
2853
  #: pages/checkout.php:62 services/applydiscountcode.php:89
2854
  msgid "Click here to change your discount code"
2856
 
2857
  #: pages/checkout.php:64
2858
  msgid "Do you have a discount code?"
2859
+ msgstr "Avez-vous un code de réduction ?"
2860
 
2861
  #: pages/checkout.php:64
2862
  msgid "Click here to enter your discount code"
2864
 
2865
  #: pages/checkout.php:163
2866
  msgid "Already have an account?"
2867
+ msgstr "Vous avez déjà un compte ?"
2868
 
2869
  #: pages/checkout.php:163
2870
  msgid "Log in here"
2876
 
2877
  #: pages/checkout.php:189
2878
  msgid "Confirm Password"
2879
+ msgstr "Confirmez le mot de passe"
2880
 
2881
  #: pages/checkout.php:216
2882
  msgid "Confirm E-mail Address"
2883
+ msgstr "Confirmer l'email"
2884
 
2885
  #: pages/checkout.php:235
2886
  msgid "Full Name"
2887
+ msgstr "Nom et prénom"
2888
 
2889
  #: pages/checkout.php:236
2890
  msgid "LEAVE THIS BLANK"
2897
  "different account for this membership, <a href=\"%s\">log out now</a>."
2898
  msgstr ""
2899
  "Vous êtes connecté en tant de <strong>%s </ strong>. Si vous souhaitez "
2900
+ "utiliser un compte différent pour cette adhésion, <a href=\"%s\">déconnectez-"
2901
+ "vous</a>."
2902
 
2903
  #: pages/checkout.php:276
2904
  msgid "Choose your Payment Method"
2906
 
2907
  #: pages/checkout.php:284
2908
  msgid "Check Out with a Credit Card Here"
2909
+ msgstr "Payer avec une carte de crédit ici"
2910
 
2911
  #: pages/checkout.php:672
2912
  #, php-format
2915
 
2916
  #: pages/checkout.php:692
2917
  msgid "Complete Payment"
2918
+ msgstr "Terminer le paiement"
2919
 
2920
  #: pages/checkout.php:714
2921
  msgid "Processing..."
2928
  #: pages/confirmation.php:12
2929
  msgid ""
2930
  "Your payment has been submitted. Your membership will be activated shortly."
2931
+ msgstr "Votre paiement a été envoyé. Votre adhésion sera activée très bientôt."
2932
 
2933
  #: pages/confirmation.php:14
2934
  #, php-format
2944
  "initial membership invoice. A welcome email with a copy of your initial "
2945
  "membership invoice has been sent to %s."
2946
  msgstr ""
2947
+ "Voici les détails de votre compte et un reçu pour votre adhésion initiale. Un "
2948
+ "email de bienvenue avec une copie de votre reçu vous a été envoyé à %s."
2949
 
2950
  #: pages/confirmation.php:41 pages/invoice.php:22
2951
  #, php-format
2952
  msgid "Invoice #%s on %s"
2953
+ msgstr "Reçu #%s on %s"
2954
 
2955
  #: pages/confirmation.php:43 pages/invoice.php:24
2956
  msgid "Print"
2970
 
2971
  #: pages/confirmation.php:65 pages/invoice.php:52 pages/invoice.php:110
2972
  msgid "Total Billed"
2973
+ msgstr "Montant total"
2974
 
2975
  #: pages/confirmation.php:82 pages/invoice.php:69
2976
  msgid "ending in"
2982
  "Below are details about your membership account. A welcome email has been "
2983
  "sent to %s."
2984
  msgstr ""
2985
+ "Ci-dessous les détails de votre compte d'adhérent. Un mail de bienvenue a été "
2986
+ "envoyé à %s."
2987
 
2988
  #: pages/confirmation.php:105
2989
  msgid "Pending"
2998
  "If your account is not activated within a few minutes, please contact the "
2999
  "site owner."
3000
  msgstr ""
3001
+ "Si votre compte n'est pas activé d'ici quelques minutes, veuillez contacter "
3002
+ "le propriétaire du site."
3003
 
3004
  #: pages/invoice.php:79
3005
  msgid "Subtotal"
3006
+ msgstr "Sous-total"
3007
 
3008
  #: pages/invoice.php:82
3009
  msgid "Coupon"
3011
 
3012
  #: pages/invoice.php:108
3013
  msgid "Invoice #"
3014
+ msgstr "Reçu "
3015
 
3016
  #: pages/invoice.php:134
3017
  msgid "No invoices found."
3018
+ msgstr "Aucun reçu trouvé."
3019
 
3020
  #: pages/invoice.php:145
3021
  msgid "&larr; View All Invoices"
3022
+ msgstr "&larr; Voir tous les reçus"
3023
 
3024
  #: pages/levels.php:14
3025
  msgid "Price"
3026
+ msgstr "Montant"
3027
 
3028
  #: pages/levels.php:33
3029
  msgid "Free"
3031
 
3032
  #: pages/levels.php:47 pages/levels.php:49
3033
  msgid "Select"
3034
+ msgstr "Choisir"
3035
 
3036
  #: pages/levels.php:57 shortcodes/pmpro_account.php:59
3037
  msgid "Renew"
3047
 
3048
  #: pages/levels.php:81
3049
  msgid "&larr; Return to Home"
3050
+ msgstr "&larr; Retourner à la page d'accueil"
3051
 
3052
  #: paid-memberships-pro.php:116
3053
  msgid "Testing Only"
3075
 
3076
  #: preheaders/billing.php:270 preheaders/checkout.php:332
3077
  msgid "Please complete all required fields."
3078
+ msgstr "Veuillez remplir tous les champs obligatoires."
3079
 
3080
  #: preheaders/billing.php:273 preheaders/checkout.php:340
3081
  msgid "Your email addresses do not match. Please try again."
3082
+ msgstr "Vos adresses emails ne correspondent pas. Veuillez essayer de nouveau."
 
3083
 
3084
  #: preheaders/billing.php:276 preheaders/checkout.php:345
3085
  msgid "The email address entered is in an invalid format. Please try again."
3086
  msgstr ""
3087
+ "L'adresse email saisie est dans un format non valide. Veuillez essayer de "
3088
+ "nouveau."
3089
 
3090
  #: preheaders/billing.php:280
3091
  msgid "All good!"
3095
  #, php-format
3096
  msgid "Information updated. <a href=\"%s\">&laquo; back to my account</a>"
3097
  msgstr ""
3098
+ "Information mise à jour. <a href=\"%s\">&laquo; Retourner dans mon compte</a>"
3099
 
3100
  #: preheaders/billing.php:356
3101
  msgid "Error updating billing information."
3102
+ msgstr "Erreur lors de la mise à jour des informations de facturation."
3103
 
3104
  #: preheaders/cancel.php:25
3105
  msgid "Your membership has been cancelled."
3106
+ msgstr "Votre adhésion a été résiliée."
3107
 
3108
  #: preheaders/checkout.php:32 preheaders/checkout.php:354
3109
  msgid "Invalid gateway."
3111
 
3112
  #: preheaders/checkout.php:95
3113
  msgid "Checkout: Payment Information"
3114
+ msgstr "Paiement : informations de facturation"
3115
 
3116
  #: preheaders/checkout.php:100
3117
  msgid "Set up Your Account"
3119
 
3120
  #: preheaders/checkout.php:300
3121
  msgid "There are JavaScript errors on the page. Please contact the webmaster."
3122
+ msgstr "Il y a des erreurs Javascript sur la page. Contactez le webmaster."
3123
 
3124
  #: preheaders/checkout.php:335
3125
  msgid "Your passwords do not match. Please try again."
3126
+ msgstr "Vos mots de passe ne correspondent pas. Veuillez essayer de nouveau."
 
3127
 
3128
  #: preheaders/checkout.php:350
3129
  #, php-format
3130
  msgid "Please check the box to agree to the %s."
3131
+ msgstr "Veuillez cochee la case pour accepter le %s."
3132
 
3133
  #: preheaders/checkout.php:357
3134
  msgid "Are you a spammer?"
3136
 
3137
  #: preheaders/checkout.php:377
3138
  msgid "That username is already taken. Please try another."
3139
+ msgstr "Ce nom d'utilisateur est déjà pris. Veuillez en essayer un autre."
3140
 
3141
  #: preheaders/checkout.php:382
3142
  msgid "That email address is already taken. Please try another."
3145
  #: preheaders/checkout.php:416
3146
  #, php-format
3147
  msgid "reCAPTCHA failed. (%s) Please try again."
3148
+ msgstr "reCAPTCHA a échoué. (%s) Veuillez essayer de nouveau."
3149
 
3150
  #: preheaders/checkout.php:501
3151
  msgid "Payment accepted."
3155
  msgid ""
3156
  "Unknown error generating account. Please contact us to set up your membership."
3157
  msgstr ""
3158
+ "Erreur inconnue lors de la génération du compte. Veuillez nous contacter pour "
3159
+ "finir votre adhésion."
3160
 
3161
  #: preheaders/checkout.php:569
3162
  msgid ""
3163
  "Your payment was accepted, but there was an error setting up your account. "
3164
  "Please contact us."
3165
  msgstr ""
3166
+ "Votre paiement a été accepté, mais une erreur est survenue lors de la "
3167
+ "configuration de votre compte. Veuillez nous contacter."
3168
 
3169
  #: preheaders/checkout.php:710
3170
  msgid ""
3172
  "authorized, but we cancelled the order immediately. You should not try to "
3173
  "submit this form again. Please contact the site owner to fix this issue."
3174
  msgstr ""
3175
+ "IMPORTANT : Quelque chose a mal tourné lors de la création d'adhésion. Votre "
3176
+ "carte de crédit est autorisée, mais nous avons annulé la commande. Ne "
3177
+ "renvoyez pas ce formulaire. Veuillez contacter le propriétaire du site pour "
3178
+ "résoudre ce problème."
3179
 
3180
  #: preheaders/checkout.php:713
3181
  msgid ""
3184
  "this form again. Please contact the site owner to fix this issue."
3185
  msgstr ""
3186
  "IMPORTANT: Quelque chose a mal tourné lors de la création d'adhésion. Votre "
3187
+ "carte de crédit a été débitée, mais nous n'avons pas pu valider votre "
3188
+ "adhésion. Ne renvoyez pas ce formulaire. Veuillez contacter le propriétaire "
3189
+ "du site pour résoudre ce problème."
3190
 
3191
  #: preheaders/checkout.php:724
3192
  #, php-format
3200
  #: preheaders/checkout.php:726
3201
  msgid "A Payment Gateway must be set up before any payments will be processed."
3202
  msgstr ""
3203
+ "Une passerelle de paiement doit être configurée avant que les paiements "
3204
  "puissent être traités."
3205
 
3206
  #: scheduled/crons.php:38
3207
  #, php-format
3208
  msgid "Membership expired email sent to %s. "
3209
+ msgstr "Email d'adhésion expirée envoyé à %s. "
3210
 
3211
  #: scheduled/crons.php:84
3212
  #, php-format
3213
  msgid "Membership expiring email sent to %s. "
3214
+ msgstr "Email d'expiration d'adhésion envoyé à %s. "
3215
 
3216
  #: scheduled/crons.php:157
3217
  #, php-format
3218
  msgid "Credit card expiring email sent to %s. "
3219
+ msgstr "Email d'expiration de la carte de crédit envoyé à %s. "
3220
 
3221
  #: scheduled/crons.php:210
3222
  #, php-format
3223
  msgid "Trial ending email sent to %s. "
3224
+ msgstr "Email de fin de période d'essai envoyé à %s. "
3225
 
3226
  #: services/applydiscountcode.php:67
3227
  #, php-format
3228
  msgid "The %s code has been applied to your order. "
3229
+ msgstr "Le code de réduction %s a été appliqué à votre commande. "
3230
 
3231
  #: services/applydiscountcode.php:97
3232
  #, php-format
3233
  msgid "The <strong>%s</strong> code has been applied to your order."
3234
+ msgstr ""
3235
+ "Le code de réduction <strong>%s</strong> a été appliqué à votre commande."
3236
 
3237
  #: services/authnet-silent-post.php:141
3238
  msgid ""
3239
  "<p>A payment is being held for review within Authorize.net.</p><p>Payment "
3240
  "Information From Authorize.net"
3241
  msgstr ""
3242
+ "<p>Un paiement est retenu pour examen par Authorize.net.</p><p>Conditions de "
3243
+ "vente de Authorize.net"
3244
 
3245
  #: services/stripe-webhook.php:270
3246
  #, php-format
3249
  "this user's membership is cancelled on your site if it should be."
3250
  msgstr ""
3251
  "%s a eu son abonnement de paiement annulé par Stripe. Veuillez vérifier que "
3252
+ "l'adhésion de cet utilisateur est annulée sur votre site si ça doit être le "
3253
  "cas."
3254
 
3255
  #: shortcodes/pmpro_account.php:45
3274
 
3275
  #: shortcodes/pmpro_account.php:110
3276
  msgid "Edit Profile"
3277
+ msgstr "Éditer le profil"
3278
 
3279
  #: shortcodes/pmpro_account.php:111
3280
  msgid "Change Password"
3282
 
3283
  #: shortcodes/pmpro_account.php:118
3284
  msgid "Past Invoices"
3285
+ msgstr "Reçus antérieurs"
3286
 
3287
  #: shortcodes/pmpro_account.php:124
3288
  msgid "Amount"
3290
 
3291
  #: shortcodes/pmpro_account.php:152
3292
  msgid "View All Invoices"
3293
+ msgstr "Voir toutes les reçus"
3294
 
3295
  #: shortcodes/pmpro_account.php:159
3296
  msgid "Member Links"
3297
+ msgstr "Liens pour les membres"
3298
 
3299
  #~ msgid "User is not paying."
3300
  #~ msgstr "L'utilisateur ne paie pas."
3308
  #~ "inscriptions."
3309
 
3310
  #~ msgid ""
3311
+ #~ "How long before the expiration expires. Note that any future payments will "
3312
+ #~ "be cancelled when the membership expires."
3313
  #~ msgstr ""
3314
  #~ "Combien de temps avant la fin de l'expiration. Notez que tous les "
3315
  #~ "paiements futurs seront annulés lorsque l'abonnement expire."
3316
 
3317
  #~ msgid ""
3318
+ #~ "Stripe integration currently only supports billing periods of \"Month\" or "
3319
+ #~ "\"Year\"."
3320
  #~ msgstr ""
3321
  #~ "Intégration de Stripe supporte actuellement que les périodes de "
3322
  #~ "facturation de \"Month\" ou \"Year\"."
3400
  #~ "Below are details about your membership account. A welcome email with has "
3401
  #~ "been sent to %s."
3402
  #~ msgstr ""
3403
+ #~ "Voici les détails de votre compte. Un email de bienvenue avec a été envoyé "
3404
+ #~ "à %s."
3405
 
3406
  #~ msgid "View Invoice"
3407
  #~ msgstr "Voir facture"
languages/pmpro.mo CHANGED
Binary file
languages/pmpro.po CHANGED
@@ -5,7 +5,7 @@
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: pmpro\n"
8
- "POT-Creation-Date: 2015-05-20 11:36-0400\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: \n"
11
  "Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
@@ -13,26 +13,161 @@ msgstr ""
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
 
 
 
 
 
 
 
16
  #: adminpages/addons.php:5 adminpages/advancedsettings.php:5
17
  #: adminpages/discountcodes.php:5 adminpages/emailsettings.php:5
18
  #: adminpages/membershiplevels.php:5 adminpages/memberslist-csv.php:5
19
  #: adminpages/memberslist.php:5 adminpages/orders-csv.php:5
20
  #: adminpages/orders.php:5 adminpages/pagesettings.php:5
21
- #: adminpages/paymentsettings.php:5 adminpages/addons.php:5
22
- #: adminpages/advancedsettings.php:5 adminpages/discountcodes.php:5
23
- #: adminpages/emailsettings.php:5 adminpages/membershiplevels.php:5
24
- #: adminpages/memberslist-csv.php:5 adminpages/memberslist.php:5
25
- #: adminpages/orders-csv.php:5 adminpages/orders.php:5
26
- #: adminpages/pagesettings.php:5 adminpages/paymentsettings.php:5
27
  msgid "You do not have permissions to perform this action."
28
  msgstr ""
29
 
30
- #: adminpages/addons.php:79 adminpages/addons.php:79
31
- msgid "Disabled"
 
 
 
 
 
 
32
  msgstr ""
33
 
34
- #: adminpages/addons.php:79 adminpages/addons.php:79
35
- msgid "Enabled"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  msgstr ""
37
 
38
  #: adminpages/admin_header.php:25 adminpages/admin_header.php:25
@@ -119,52 +254,47 @@ msgstr ""
119
  msgid "User Forum"
120
  msgstr ""
121
 
122
- #: adminpages/admin_header.php:150 adminpages/membershiplevels.php:569
123
  #: adminpages/pagesettings.php:69 includes/adminpages.php:64
124
  #: includes/adminpages.php:65 includes/adminpages.php:111
125
  #: adminpages/admin_header.php:128 adminpages/admin_header.php:149
126
- #: adminpages/membershiplevels.php:490 adminpages/membershiplevels.php:496
127
- #: adminpages/membershiplevels.php:498 adminpages/membershiplevels.php:525
128
- #: adminpages/membershiplevels.php:526 adminpages/pagesettings.php:69
 
129
  #: includes/adminpages.php:44 includes/adminpages.php:64
130
  #: includes/adminpages.php:65 includes/adminpages.php:100
131
- #: includes/adminpages.php:107
132
  msgid "Membership Levels"
133
  msgstr ""
134
 
135
  #: adminpages/admin_header.php:154 adminpages/pagesettings.php:120
136
  #: adminpages/admin_header.php:129 adminpages/admin_header.php:150
137
- #: adminpages/pagesettings.php:92 adminpages/pagesettings.php:120
 
138
  msgid "Pages"
139
  msgstr ""
140
 
141
  #: adminpages/admin_header.php:158 adminpages/admin_header.php:130
142
- #: adminpages/admin_header.php:151
143
  msgid "Payment Gateway &amp; SSL"
144
  msgstr ""
145
 
146
- #: adminpages/admin_header.php:162 adminpages/memberslist.php:158
147
  #: shortcodes/pmpro_account.php:106 adminpages/admin_header.php:131
148
- #: adminpages/admin_header.php:152 adminpages/memberslist.php:115
149
- #: adminpages/memberslist.php:148 adminpages/memberslist.php:158
 
150
  #: pages/account.php:52 pages/account.php:56 pages/account.php:77
151
  #: shortcodes/pmpro_account.php:106
152
  msgid "Email"
153
  msgstr ""
154
 
155
  #: adminpages/admin_header.php:166 adminpages/admin_header.php:132
156
- #: adminpages/admin_header.php:153
157
  msgid "Advanced"
158
  msgstr ""
159
 
160
- #: adminpages/admin_header.php:170 includes/adminpages.php:52
161
- #: includes/adminpages.php:146 adminpages/admin_header.php:133
162
- #: adminpages/admin_header.php:154 includes/adminpages.php:14
163
- #: includes/adminpages.php:52 includes/adminpages.php:69
164
- #: includes/adminpages.php:135 includes/adminpages.php:142
165
- msgid "Add Ons"
166
- msgstr ""
167
-
168
  #: adminpages/advancedsettings.php:43 adminpages/advancedsettings.php:35
169
  #: adminpages/advancedsettings.php:42 adminpages/advancedsettings.php:43
170
  msgid "Your advanced settings have been updated."
@@ -197,7 +327,7 @@ msgstr ""
197
  #: adminpages/advancedsettings.php:86 adminpages/advancedsettings.php:88
198
  #: includes/adminpages.php:13 includes/adminpages.php:51
199
  #: includes/adminpages.php:64 includes/adminpages.php:128
200
- #: includes/adminpages.php:135
201
  msgid "Advanced Settings"
202
  msgstr ""
203
 
@@ -261,14 +391,14 @@ msgstr ""
261
  msgid "Yes - Show excerpts."
262
  msgstr ""
263
 
264
- #: adminpages/advancedsettings.php:144
265
  msgid "Hide Ads From Members?"
266
  msgstr ""
267
 
268
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
269
- #: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:658
270
  #: adminpages/paymentsettings.php:210
271
- #: classes/gateways/class.pmprogateway_stripe.php:173 includes/profile.php:101
272
  #: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
273
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:187
274
  #: adminpages/advancedsettings.php:194 adminpages/advancedsettings.php:199
@@ -276,11 +406,13 @@ msgstr ""
276
  #: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:563
277
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
278
  #: adminpages/membershiplevels.php:578 adminpages/membershiplevels.php:598
279
- #: adminpages/paymentsettings.php:210 adminpages/paymentsettings.php:414
280
- #: adminpages/paymentsettings.php:429 adminpages/paymentsettings.php:434
281
- #: adminpages/paymentsettings.php:436 adminpages/paymentsettings.php:454
282
- #: adminpages/paymentsettings.php:459 adminpages/paymentsettings.php:461
283
- #: classes/gateways/class.pmprogateway_stripe.php:173 includes/profile.php:101
 
 
284
  #: includes/profile.php:121 includes/profile.php:123
285
  msgid "No"
286
  msgstr ""
@@ -320,19 +452,20 @@ msgstr ""
320
  msgid "multisite only"
321
  msgstr ""
322
 
323
- #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:658
324
  #: adminpages/paymentsettings.php:211
325
- #: classes/gateways/class.pmprogateway_stripe.php:174 includes/profile.php:102
326
  #: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
327
  #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:563
328
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
329
  #: adminpages/membershiplevels.php:578 adminpages/membershiplevels.php:598
330
- #: adminpages/paymentsettings.php:211 adminpages/paymentsettings.php:415
331
- #: adminpages/paymentsettings.php:424 adminpages/paymentsettings.php:430
332
- #: adminpages/paymentsettings.php:435 adminpages/paymentsettings.php:437
333
- #: adminpages/paymentsettings.php:455 adminpages/paymentsettings.php:460
334
- #: adminpages/paymentsettings.php:462
335
- #: classes/gateways/class.pmprogateway_stripe.php:174 includes/profile.php:102
 
336
  #: includes/profile.php:122 includes/profile.php:124
337
  msgid "Yes"
338
  msgstr ""
@@ -389,13 +522,14 @@ msgstr ""
389
  msgid "selected"
390
  msgstr ""
391
 
392
- #: adminpages/advancedsettings.php:368 adminpages/pagesettings.php:254
393
  #: adminpages/paymentsettings.php:238 adminpages/advancedsettings.php:284
394
  #: adminpages/advancedsettings.php:355 adminpages/advancedsettings.php:368
395
  #: adminpages/pagesettings.php:209 adminpages/pagesettings.php:223
396
- #: adminpages/pagesettings.php:251 adminpages/paymentsettings.php:238
397
- #: adminpages/paymentsettings.php:485 adminpages/paymentsettings.php:526
398
- #: adminpages/paymentsettings.php:532 adminpages/paymentsettings.php:534
 
399
  msgid "Save Settings"
400
  msgstr ""
401
 
@@ -464,18 +598,20 @@ msgid "Add New Discount Code"
464
  msgstr ""
465
 
466
  #: adminpages/discountcodes.php:310 adminpages/discountcodes.php:586
467
- #: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:583
468
- #: adminpages/memberslist.php:154 adminpages/orders.php:900
469
  #: adminpages/reports/login.php:142 adminpages/discountcodes.php:306
470
  #: adminpages/discountcodes.php:309 adminpages/discountcodes.php:310
471
  #: adminpages/discountcodes.php:547 adminpages/discountcodes.php:557
472
  #: adminpages/discountcodes.php:585 adminpages/discountcodes.php:586
473
  #: adminpages/membershiplevels.php:284 adminpages/membershiplevels.php:286
474
- #: adminpages/membershiplevels.php:505 adminpages/membershiplevels.php:511
475
- #: adminpages/membershiplevels.php:513 adminpages/membershiplevels.php:540
476
- #: adminpages/membershiplevels.php:541 adminpages/memberslist.php:111
 
477
  #: adminpages/memberslist.php:144 adminpages/memberslist.php:154
478
- #: adminpages/orders.php:597 adminpages/orders.php:900
 
479
  #: adminpages/reports/login.php:140 adminpages/reports/login.php:142
480
  msgid "ID"
481
  msgstr ""
@@ -488,13 +624,13 @@ msgid "This will be generated when you save."
488
  msgstr ""
489
 
490
  #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:587
491
- #: adminpages/orders.php:265 adminpages/orders.php:901
492
  #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
493
  #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:548
494
  #: adminpages/discountcodes.php:558 adminpages/discountcodes.php:586
495
  #: adminpages/discountcodes.php:587 adminpages/orders.php:215
496
  #: adminpages/orders.php:265 adminpages/orders.php:598
497
- #: adminpages/orders.php:901
498
  msgid "Code"
499
  msgstr ""
500
 
@@ -505,14 +641,16 @@ msgstr ""
505
 
506
  #: adminpages/discountcodes.php:371
507
  #: classes/gateways/class.pmprogateway_braintree.php:321
508
- #: classes/gateways/class.pmprogateway_stripe.php:454 pages/billing.php:253
509
- #: pages/checkout.php:553 adminpages/discountcodes.php:367
510
  #: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
511
  #: classes/gateways/class.pmprogateway_braintree.php:308
512
  #: classes/gateways/class.pmprogateway_braintree.php:321
513
- #: classes/gateways/class.pmprogateway_stripe.php:454 pages/billing.php:249
514
- #: pages/billing.php:253 pages/checkout.php:508 pages/checkout.php:524
515
- #: pages/checkout.php:525 pages/checkout.php:532 pages/checkout.php:553
 
 
516
  msgid "Expiration Date"
517
  msgstr ""
518
 
@@ -534,196 +672,212 @@ msgstr ""
534
  msgid "Which Levels Will This Code Apply To?"
535
  msgstr ""
536
 
537
- #: adminpages/discountcodes.php:431 adminpages/membershiplevels.php:341
538
  #: adminpages/discountcodes.php:427 adminpages/discountcodes.php:430
539
  #: adminpages/discountcodes.php:431 adminpages/membershiplevels.php:337
540
- #: adminpages/membershiplevels.php:339 adminpages/membershiplevels.php:507
541
- #: adminpages/membershiplevels.php:513 adminpages/membershiplevels.php:515
542
- #: adminpages/membershiplevels.php:542 pages/levels.php:14
 
543
  msgid "Initial Payment"
544
  msgstr ""
545
 
546
- #: adminpages/discountcodes.php:442 adminpages/membershiplevels.php:352
547
  #: adminpages/discountcodes.php:428 adminpages/discountcodes.php:431
548
  #: adminpages/discountcodes.php:441 adminpages/discountcodes.php:442
549
  #: adminpages/membershiplevels.php:338 adminpages/membershiplevels.php:340
550
- #: adminpages/membershiplevels.php:350
551
  msgid "The initial amount collected at registration."
552
  msgstr ""
553
 
554
- #: adminpages/discountcodes.php:447 adminpages/membershiplevels.php:356
555
  #: adminpages/discountcodes.php:432 adminpages/discountcodes.php:435
556
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:447
557
  #: adminpages/membershiplevels.php:342 adminpages/membershiplevels.php:344
558
- #: adminpages/membershiplevels.php:354
559
  msgid "Recurring Subscription"
560
  msgstr ""
561
 
562
- #: adminpages/discountcodes.php:448 adminpages/membershiplevels.php:357
563
  #: adminpages/discountcodes.php:433 adminpages/discountcodes.php:436
564
  #: adminpages/discountcodes.php:447 adminpages/discountcodes.php:448
565
  #: adminpages/membershiplevels.php:343 adminpages/membershiplevels.php:345
566
- #: adminpages/membershiplevels.php:355
567
  msgid "Check if this level has a recurring subscription payment."
568
  msgstr ""
569
 
570
- #: adminpages/discountcodes.php:452 adminpages/membershiplevels.php:361
571
  #: adminpages/discountcodes.php:440 adminpages/discountcodes.php:451
572
  #: adminpages/discountcodes.php:452 adminpages/membershiplevels.php:347
573
  #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:359
 
574
  msgid "Billing Amount"
575
  msgstr ""
576
 
577
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
578
- #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
579
- #: classes/gateways/class.pmprogateway_stripe.php:521
580
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
581
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
582
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
583
  #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
584
- #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:449
585
- #: adminpages/membershiplevels.php:476 adminpages/membershiplevels.php:477
 
586
  #: classes/gateways/class.pmprogateway_stripe.php:521
 
587
  msgid "Day(s)"
588
  msgstr ""
589
 
590
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
591
- #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
592
- #: classes/gateways/class.pmprogateway_stripe.php:521
593
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
594
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
595
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
596
  #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
597
- #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:449
598
- #: adminpages/membershiplevels.php:476 adminpages/membershiplevels.php:477
 
599
  #: classes/gateways/class.pmprogateway_stripe.php:521
 
600
  msgid "Month(s)"
601
  msgstr ""
602
 
603
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
604
- #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
605
- #: classes/gateways/class.pmprogateway_stripe.php:521
606
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
607
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
608
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
609
  #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
610
- #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:449
611
- #: adminpages/membershiplevels.php:476 adminpages/membershiplevels.php:477
 
612
  #: classes/gateways/class.pmprogateway_stripe.php:521
 
613
  msgid "Week(s)"
614
  msgstr ""
615
 
616
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
617
- #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
618
- #: classes/gateways/class.pmprogateway_stripe.php:521
619
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
620
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
621
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
622
  #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
623
- #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:449
624
- #: adminpages/membershiplevels.php:476 adminpages/membershiplevels.php:477
 
625
  #: classes/gateways/class.pmprogateway_stripe.php:521
 
626
  msgid "Year(s)"
627
  msgstr ""
628
 
629
- #: adminpages/discountcodes.php:475 adminpages/membershiplevels.php:385
630
  #: adminpages/discountcodes.php:451 adminpages/discountcodes.php:454
631
  #: adminpages/discountcodes.php:474 adminpages/discountcodes.php:475
632
  #: adminpages/membershiplevels.php:362 adminpages/membershiplevels.php:364
633
- #: adminpages/membershiplevels.php:383
634
  msgid "The amount to be billed one cycle after the initial payment."
635
  msgstr ""
636
 
637
- #: adminpages/discountcodes.php:480 adminpages/membershiplevels.php:403
638
  #: adminpages/discountcodes.php:456 adminpages/discountcodes.php:459
639
  #: adminpages/discountcodes.php:479 adminpages/discountcodes.php:480
640
  #: adminpages/membershiplevels.php:380 adminpages/membershiplevels.php:382
641
- #: adminpages/membershiplevels.php:401
642
  msgid "Billing Cycle Limit"
643
  msgstr ""
644
 
645
- #: adminpages/discountcodes.php:483 adminpages/membershiplevels.php:407
646
  #: adminpages/discountcodes.php:459 adminpages/discountcodes.php:462
647
  #: adminpages/discountcodes.php:482 adminpages/discountcodes.php:483
648
  #: adminpages/membershiplevels.php:384 adminpages/membershiplevels.php:386
649
- #: adminpages/membershiplevels.php:405
650
  msgid ""
651
  "The <strong>total</strong> number of recurring billing cycles for this "
652
  "level, including the trial period (if applicable) but not including the "
653
  "initial payment. Set to zero if membership is indefinite."
654
  msgstr ""
655
 
656
- #: adminpages/discountcodes.php:488 adminpages/membershiplevels.php:416
657
  #: adminpages/discountcodes.php:464 adminpages/discountcodes.php:467
658
  #: adminpages/discountcodes.php:487 adminpages/discountcodes.php:488
659
  #: adminpages/membershiplevels.php:393 adminpages/membershiplevels.php:395
660
- #: adminpages/membershiplevels.php:414
661
  msgid "Custom Trial"
662
  msgstr ""
663
 
664
- #: adminpages/discountcodes.php:489 adminpages/membershiplevels.php:418
665
  #: adminpages/discountcodes.php:465 adminpages/discountcodes.php:468
666
  #: adminpages/discountcodes.php:488 adminpages/discountcodes.php:489
667
  #: adminpages/membershiplevels.php:394 adminpages/membershiplevels.php:395
668
  #: adminpages/membershiplevels.php:397 adminpages/membershiplevels.php:416
 
669
  msgid "Check to add a custom trial period."
670
  msgstr ""
671
 
672
- #: adminpages/discountcodes.php:493 adminpages/membershiplevels.php:427
673
  #: adminpages/discountcodes.php:469 adminpages/discountcodes.php:472
674
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:493
675
  #: adminpages/membershiplevels.php:398 adminpages/membershiplevels.php:404
676
  #: adminpages/membershiplevels.php:406 adminpages/membershiplevels.php:425
 
677
  msgid "Trial Billing Amount"
678
  msgstr ""
679
 
680
- #: adminpages/discountcodes.php:504 adminpages/membershiplevels.php:438
681
  #: adminpages/discountcodes.php:472 adminpages/discountcodes.php:475
682
  #: adminpages/discountcodes.php:503 adminpages/discountcodes.php:504
683
  #: adminpages/membershiplevels.php:401 adminpages/membershiplevels.php:407
684
  #: adminpages/membershiplevels.php:409 adminpages/membershiplevels.php:436
 
685
  msgid "for the first"
686
  msgstr ""
687
 
688
- #: adminpages/discountcodes.php:506 adminpages/membershiplevels.php:440
689
  #: adminpages/discountcodes.php:474 adminpages/discountcodes.php:477
690
  #: adminpages/discountcodes.php:505 adminpages/discountcodes.php:506
691
  #: adminpages/membershiplevels.php:403 adminpages/membershiplevels.php:409
692
  #: adminpages/membershiplevels.php:411 adminpages/membershiplevels.php:438
 
693
  msgid "subscription payments"
694
  msgstr ""
695
 
696
- #: adminpages/discountcodes.php:511 adminpages/membershiplevels.php:469
697
  #: adminpages/discountcodes.php:479 adminpages/discountcodes.php:482
698
  #: adminpages/discountcodes.php:510 adminpages/discountcodes.php:511
699
  #: adminpages/membershiplevels.php:431 adminpages/membershiplevels.php:437
700
  #: adminpages/membershiplevels.php:439 adminpages/membershiplevels.php:466
701
- #: adminpages/membershiplevels.php:467
702
  msgid "Membership Expiration"
703
  msgstr ""
704
 
705
- #: adminpages/discountcodes.php:512 adminpages/membershiplevels.php:470
706
  #: adminpages/discountcodes.php:483 adminpages/discountcodes.php:511
707
  #: adminpages/discountcodes.php:512 adminpages/membershiplevels.php:432
708
  #: adminpages/membershiplevels.php:438 adminpages/membershiplevels.php:440
709
  #: adminpages/membershiplevels.php:467 adminpages/membershiplevels.php:468
 
710
  msgid "Check this to set when membership access expires."
711
  msgstr ""
712
 
713
- #: adminpages/discountcodes.php:516 adminpages/membershiplevels.php:474
714
  #: adminpages/discountcodes.php:484 adminpages/discountcodes.php:487
715
  #: adminpages/discountcodes.php:515 adminpages/discountcodes.php:516
716
  #: adminpages/membershiplevels.php:436 adminpages/membershiplevels.php:442
717
  #: adminpages/membershiplevels.php:444 adminpages/membershiplevels.php:471
718
- #: adminpages/membershiplevels.php:472
719
  msgid "Expires In"
720
  msgstr ""
721
 
722
- #: adminpages/discountcodes.php:529 adminpages/membershiplevels.php:487
723
  #: adminpages/discountcodes.php:500 adminpages/discountcodes.php:528
724
  #: adminpages/discountcodes.php:529 adminpages/membershiplevels.php:449
725
  #: adminpages/membershiplevels.php:455 adminpages/membershiplevels.php:457
726
  #: adminpages/membershiplevels.php:484 adminpages/membershiplevels.php:485
 
727
  msgid ""
728
  "Set the duration of membership access. Note that the any future payments "
729
  "(recurring subscription, if any) will be cancelled when the membership "
@@ -755,14 +909,14 @@ msgstr ""
755
  msgid "Starts"
756
  msgstr ""
757
 
758
- #: adminpages/discountcodes.php:589 adminpages/memberslist.php:169
759
- #: adminpages/reports/login.php:147 includes/profile.php:98
760
  #: adminpages/discountcodes.php:550 adminpages/discountcodes.php:560
761
  #: adminpages/discountcodes.php:588 adminpages/discountcodes.php:589
762
  #: adminpages/memberslist.php:121 adminpages/memberslist.php:159
763
- #: adminpages/memberslist.php:169 adminpages/reports/login.php:145
764
- #: adminpages/reports/login.php:147 includes/profile.php:98
765
- #: includes/profile.php:118 includes/profile.php:120
766
  msgid "Expires"
767
  msgstr ""
768
 
@@ -786,18 +940,19 @@ msgid ""
786
  "select customers."
787
  msgstr ""
788
 
789
- #: adminpages/discountcodes.php:648 adminpages/membershiplevels.php:660
790
- #: adminpages/orders.php:979 adminpages/discountcodes.php:614
791
  #: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
792
  #: adminpages/discountcodes.php:648 adminpages/membershiplevels.php:564
793
  #: adminpages/membershiplevels.php:570 adminpages/membershiplevels.php:572
794
  #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:599
795
- #: adminpages/orders.php:658 adminpages/orders.php:961
796
- #: adminpages/orders.php:979
 
797
  msgid "edit"
798
  msgstr ""
799
 
800
- #: adminpages/discountcodes.php:651 adminpages/discountcodes.php:617
801
  #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
802
  #: adminpages/discountcodes.php:651
803
  #, php-format
@@ -807,14 +962,15 @@ msgid ""
807
  "code anymore."
808
  msgstr ""
809
 
810
- #: adminpages/discountcodes.php:651 adminpages/membershiplevels.php:660
811
- #: adminpages/orders.php:985 adminpages/discountcodes.php:617
812
  #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
813
  #: adminpages/discountcodes.php:651 adminpages/membershiplevels.php:566
814
  #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
815
  #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
816
- #: adminpages/orders.php:664 adminpages/orders.php:967
817
- #: adminpages/orders.php:985
 
818
  msgid "delete"
819
  msgstr ""
820
 
@@ -823,6 +979,7 @@ msgstr ""
823
  #: adminpages/emailsettings.php:69 includes/adminpages.php:12
824
  #: includes/adminpages.php:50 includes/adminpages.php:59
825
  #: includes/adminpages.php:121 includes/adminpages.php:128
 
826
  msgid "Email Settings"
827
  msgstr ""
828
 
@@ -927,23 +1084,27 @@ msgid ""
927
  msgstr ""
928
 
929
  #: adminpages/membershiplevels.php:120 adminpages/membershiplevels.php:118
 
930
  msgid "Membership level updated successfully."
931
  msgstr ""
932
 
933
  #: adminpages/membershiplevels.php:126 adminpages/membershiplevels.php:124
 
934
  msgid "Error updating membership level."
935
  msgstr ""
936
 
937
  #: adminpages/membershiplevels.php:143 adminpages/membershiplevels.php:141
 
938
  msgid "Membership level added successfully."
939
  msgstr ""
940
 
941
  #: adminpages/membershiplevels.php:148 adminpages/membershiplevels.php:146
 
942
  msgid "Error adding membership level."
943
  msgstr ""
944
 
945
  #: adminpages/membershiplevels.php:183 adminpages/membershiplevels.php:179
946
- #: adminpages/membershiplevels.php:181
947
  #, php-format
948
  msgid ""
949
  "There was an error canceling the subscription for user with ID=%d. You will "
@@ -952,102 +1113,105 @@ msgid ""
952
  msgstr ""
953
 
954
  #: adminpages/membershiplevels.php:186 adminpages/membershiplevels.php:182
955
- #: adminpages/membershiplevels.php:184
956
  msgid "Last Invoice"
957
  msgstr ""
958
 
959
  #: adminpages/membershiplevels.php:200 adminpages/membershiplevels.php:196
960
- #: adminpages/membershiplevels.php:198
961
  msgid "Membership level deleted successfully."
962
  msgstr ""
963
 
964
  #: adminpages/membershiplevels.php:205 adminpages/membershiplevels.php:211
965
  #: adminpages/membershiplevels.php:201 adminpages/membershiplevels.php:203
966
- #: adminpages/membershiplevels.php:207 adminpages/membershiplevels.php:209
 
967
  msgid "Error deleting membership level."
968
  msgstr ""
969
 
970
  #: adminpages/membershiplevels.php:226 adminpages/membershiplevels.php:222
971
- #: adminpages/membershiplevels.php:224
972
  msgid "Edit Membership Level"
973
  msgstr ""
974
 
975
  #: adminpages/membershiplevels.php:228 adminpages/membershiplevels.php:224
976
- #: adminpages/membershiplevels.php:226
977
  msgid "Add New Membership Level"
978
  msgstr ""
979
 
980
- #: adminpages/membershiplevels.php:295 adminpages/membershiplevels.php:584
981
  #: adminpages/reports/login.php:144 adminpages/membershiplevels.php:291
982
- #: adminpages/membershiplevels.php:293 adminpages/membershiplevels.php:506
983
- #: adminpages/membershiplevels.php:512 adminpages/membershiplevels.php:514
984
- #: adminpages/membershiplevels.php:541 adminpages/membershiplevels.php:542
 
985
  #: adminpages/reports/login.php:142 adminpages/reports/login.php:144
986
  msgid "Name"
987
  msgstr ""
988
 
989
- #: adminpages/membershiplevels.php:300 adminpages/membershiplevels.php:296
990
- #: adminpages/membershiplevels.php:298
991
- msgid "Description"
992
- msgstr ""
993
-
994
  #: adminpages/membershiplevels.php:318 adminpages/membershiplevels.php:314
995
- #: adminpages/membershiplevels.php:316
996
  msgid "Confirmation Message"
997
  msgstr ""
998
 
999
- #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:585
1000
  #: adminpages/membershiplevels.php:333 adminpages/membershiplevels.php:335
1001
- #: adminpages/membershiplevels.php:543
 
1002
  msgid "Billing Details"
1003
  msgstr ""
1004
 
1005
- #: adminpages/membershiplevels.php:372
1006
- #: classes/gateways/class.pmprogateway_stripe.php:619
1007
  #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
1008
- #: adminpages/membershiplevels.php:370
1009
  #: classes/gateways/class.pmprogateway_stripe.php:619
 
1010
  msgid "per"
1011
  msgstr ""
1012
 
1013
- #: adminpages/membershiplevels.php:387 adminpages/membershiplevels.php:366
1014
- #: adminpages/membershiplevels.php:385
1015
  msgid ""
1016
  "Stripe integration currently only supports billing periods of \"Week\", "
1017
  "\"Month\" or \"Year\"."
1018
  msgstr ""
1019
 
1020
- #: adminpages/membershiplevels.php:389 adminpages/membershiplevels.php:366
1021
  #: adminpages/membershiplevels.php:368 adminpages/membershiplevels.php:387
 
1022
  msgid ""
1023
  "Braintree integration currently only supports billing periods of \"Month\" "
1024
  "or \"Year\"."
1025
  msgstr ""
1026
 
1027
- #: adminpages/membershiplevels.php:391 adminpages/membershiplevels.php:368
1028
  #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:389
 
1029
  msgid ""
1030
  "Payflow integration currently only supports billing frequencies of 1 and "
1031
  "billing periods of \"Week\", \"Month\" or \"Year\"."
1032
  msgstr ""
1033
 
1034
- #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:372
1035
  #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:393
 
1036
  msgid ""
1037
  "After saving this level, make note of the ID and create a \"Plan\" in your "
1038
  "Braintree dashboard with the same settings and the \"Plan ID\" set to "
1039
  "<em>pmpro_#</em>, where # is the level ID."
1040
  msgstr ""
1041
 
1042
- #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:397
1043
  #: classes/gateways/class.pmprogateway_cybersource.php:101
1044
  #: classes/gateways/class.pmprogateway_paypal.php:118
1045
- #: classes/gateways/class.pmprogateway_paypalexpress.php:123
1046
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
1047
  #: adminpages/membershiplevels.php:372 adminpages/membershiplevels.php:374
1048
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:393
1049
- #: adminpages/membershiplevels.php:395 adminpages/paymentsettings.php:170
1050
- #: adminpages/paymentsettings.php:174 adminpages/paymentsettings.php:179
 
1051
  #: classes/gateways/class.pmprogateway_cybersource.php:101
1052
  #: classes/gateways/class.pmprogateway_paypal.php:118
1053
  #: classes/gateways/class.pmprogateway_paypalexpress.php:123
@@ -1055,155 +1219,161 @@ msgstr ""
1055
  msgid "Note"
1056
  msgstr ""
1057
 
1058
- #: adminpages/membershiplevels.php:397 adminpages/membershiplevels.php:374
1059
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:395
 
1060
  msgid ""
1061
  "You will need to create a \"Plan\" in your Braintree dashboard with the same "
1062
  "settings and the \"Plan ID\" set to"
1063
  msgstr ""
1064
 
1065
- #: adminpages/membershiplevels.php:409 adminpages/membershiplevels.php:386
1066
  #: adminpages/membershiplevels.php:388 adminpages/membershiplevels.php:407
 
1067
  msgid ""
1068
  "Stripe integration currently does not support billing limits. You can still "
1069
  "set an expiration date below."
1070
  msgstr ""
1071
 
1072
- #: adminpages/membershiplevels.php:421 adminpages/membershiplevels.php:398
1073
  #: adminpages/membershiplevels.php:400 adminpages/membershiplevels.php:419
 
1074
  msgid ""
1075
  "2Checkout integration does not support custom trials. You can do one period "
1076
  "trials by setting an initial payment different from the billing amount."
1077
  msgstr ""
1078
 
1079
- #: adminpages/membershiplevels.php:443 adminpages/membershiplevels.php:406
1080
  #: adminpages/membershiplevels.php:412 adminpages/membershiplevels.php:414
1081
- #: adminpages/membershiplevels.php:441
1082
  msgid ""
1083
  "Stripe integration currently does not support trial amounts greater than $0."
1084
  msgstr ""
1085
 
1086
- #: adminpages/membershiplevels.php:447 adminpages/membershiplevels.php:410
1087
  #: adminpages/membershiplevels.php:416 adminpages/membershiplevels.php:418
1088
- #: adminpages/membershiplevels.php:445
1089
  msgid ""
1090
  "Braintree integration currently does not support trial amounts greater than "
1091
  "$0."
1092
  msgstr ""
1093
 
1094
- #: adminpages/membershiplevels.php:451 adminpages/membershiplevels.php:414
1095
  #: adminpages/membershiplevels.php:420 adminpages/membershiplevels.php:422
1096
- #: adminpages/membershiplevels.php:449
1097
  msgid ""
1098
  "Payflow integration currently does not support trial amounts greater than $0."
1099
  msgstr ""
1100
 
1101
- #: adminpages/membershiplevels.php:460 adminpages/membershiplevels.php:422
1102
  #: adminpages/membershiplevels.php:428 adminpages/membershiplevels.php:430
1103
  #: adminpages/membershiplevels.php:457 adminpages/membershiplevels.php:458
 
1104
  msgid "Other Settings"
1105
  msgstr ""
1106
 
1107
- #: adminpages/membershiplevels.php:464 adminpages/membershiplevels.php:426
1108
  #: adminpages/membershiplevels.php:432 adminpages/membershiplevels.php:434
1109
  #: adminpages/membershiplevels.php:461 adminpages/membershiplevels.php:462
 
1110
  msgid "Disable New Signups"
1111
  msgstr ""
1112
 
1113
- #: adminpages/membershiplevels.php:465 adminpages/membershiplevels.php:427
1114
  #: adminpages/membershiplevels.php:433 adminpages/membershiplevels.php:435
1115
  #: adminpages/membershiplevels.php:462 adminpages/membershiplevels.php:463
 
1116
  msgid ""
1117
  "Check to hide this level from the membership levels page and disable "
1118
  "registration."
1119
  msgstr ""
1120
 
1121
- #: adminpages/membershiplevels.php:495 adminpages/membershiplevels.php:457
1122
  #: adminpages/membershiplevels.php:463 adminpages/membershiplevels.php:465
1123
  #: adminpages/membershiplevels.php:492 adminpages/membershiplevels.php:493
 
1124
  msgid "Content Settings"
1125
  msgstr ""
1126
 
1127
- #: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:461
1128
  #: adminpages/membershiplevels.php:467 adminpages/membershiplevels.php:469
1129
  #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:497
 
1130
  msgid "Categories"
1131
  msgstr ""
1132
 
1133
- #: adminpages/membershiplevels.php:516
1134
  msgid "Save Level"
1135
  msgstr ""
1136
 
1137
- #: adminpages/membershiplevels.php:517 adminpages/orders.php:561
1138
- #: pages/billing.php:330 pages/cancel.php:71 shortcodes/pmpro_account.php:70
1139
- #: adminpages/orders.php:511 adminpages/orders.php:561 pages/account.php:44
1140
- #: pages/billing.php:295 pages/billing.php:299 pages/billing.php:330
 
1141
  #: pages/cancel.php:71 shortcodes/pmpro_account.php:70
1142
  msgid "Cancel"
1143
  msgstr ""
1144
 
1145
- #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:490
1146
  #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
1147
  #: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:526
 
1148
  msgid "Add New Level"
1149
  msgstr ""
1150
 
1151
- #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:575
1152
  #: adminpages/membershiplevels.php:493 adminpages/membershiplevels.php:496
1153
  #: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:501
1154
  #: adminpages/membershiplevels.php:502 adminpages/membershiplevels.php:504
1155
  #: adminpages/membershiplevels.php:528 adminpages/membershiplevels.php:529
1156
  #: adminpages/membershiplevels.php:531 adminpages/membershiplevels.php:532
 
1157
  msgid "Search Levels"
1158
  msgstr ""
1159
 
1160
- #: adminpages/membershiplevels.php:579
1161
  msgid "Drag and drop membership levels to reorder them on the Levels page."
1162
  msgstr ""
1163
 
1164
- #: adminpages/membershiplevels.php:586 pages/cancel.php:53
1165
  #: pages/confirmation.php:83 pages/invoice.php:70
1166
  #: shortcodes/pmpro_account.php:46 adminpages/membershiplevels.php:510
1167
  #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:518
1168
  #: adminpages/membershiplevels.php:544 adminpages/membershiplevels.php:545
1169
- #: pages/account.php:20 pages/cancel.php:53 pages/confirmation.php:81
1170
- #: pages/confirmation.php:83 pages/invoice.php:68 pages/invoice.php:70
1171
- #: shortcodes/pmpro_account.php:46
1172
  msgid "Expiration"
1173
  msgstr ""
1174
 
1175
- #: adminpages/membershiplevels.php:587 adminpages/membershiplevels.php:511
1176
  #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:519
1177
  #: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:546
 
1178
  msgid "Allow Signups"
1179
  msgstr ""
1180
 
1181
- #: adminpages/membershiplevels.php:646 adminpages/membershiplevels.php:534
1182
  #: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:542
1183
  #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:569
 
1184
  msgid "FREE"
1185
  msgstr ""
1186
 
1187
- #: adminpages/membershiplevels.php:655 adminpages/membershiplevels.php:560
1188
  #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:568
1189
  #: adminpages/membershiplevels.php:575 adminpages/membershiplevels.php:595
 
1190
  msgid "After"
1191
  msgstr ""
1192
 
1193
- #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:566
1194
- #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
1195
- #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
1196
- #, php-format
1197
- msgid ""
1198
- "Are you sure you want to delete membership level %s? All subscriptions will "
1199
- "be cancelled."
1200
- msgstr ""
1201
-
1202
- #: adminpages/membershiplevels.php:660 adminpages/orders.php:982
1203
  #: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
1204
  #: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
1205
- #: adminpages/membershiplevels.php:600 adminpages/orders.php:661
1206
- #: adminpages/orders.php:964 adminpages/orders.php:982
 
1207
  msgid "copy"
1208
  msgstr ""
1209
 
@@ -1211,7 +1381,7 @@ msgstr ""
1211
  #: includes/adminpages.php:153 adminpages/memberslist.php:25
1212
  #: includes/adminpages.php:15 includes/adminpages.php:53
1213
  #: includes/adminpages.php:74 includes/adminpages.php:142
1214
- #: includes/adminpages.php:149
1215
  msgid "Members List"
1216
  msgstr ""
1217
 
@@ -1260,80 +1430,87 @@ msgstr ""
1260
  msgid "Search Members"
1261
  msgstr ""
1262
 
1263
- #: adminpages/memberslist.php:146 adminpages/memberslist.php:103
1264
  #: adminpages/memberslist.php:136 adminpages/memberslist.php:146
 
1265
  #, php-format
1266
  msgid "%d members found."
1267
  msgstr ""
1268
 
1269
- #: adminpages/memberslist.php:155 pages/checkout.php:171
1270
  #: shortcodes/pmpro_account.php:105 adminpages/memberslist.php:112
1271
  #: adminpages/memberslist.php:145 adminpages/memberslist.php:155
1272
- #: pages/account.php:51 pages/account.php:55 pages/account.php:76
1273
- #: pages/checkout.php:168 pages/checkout.php:171 pages/checkout.php:173
 
1274
  #: shortcodes/pmpro_account.php:105
1275
  msgid "Username"
1276
  msgstr ""
1277
 
1278
- #: adminpages/memberslist.php:156 adminpages/memberslist.php:113
1279
  #: adminpages/memberslist.php:146 adminpages/memberslist.php:156
 
1280
  msgid "First&nbsp;Name"
1281
  msgstr ""
1282
 
1283
- #: adminpages/memberslist.php:157 adminpages/memberslist.php:114
1284
  #: adminpages/memberslist.php:147 adminpages/memberslist.php:157
 
1285
  msgid "Last&nbsp;Name"
1286
  msgstr ""
1287
 
1288
- #: adminpages/memberslist.php:160 pages/billing.php:62 pages/checkout.php:302
1289
  #: pages/confirmation.php:61 pages/invoice.php:48
1290
  #: adminpages/memberslist.php:117 adminpages/memberslist.php:150
1291
- #: adminpages/memberslist.php:160 pages/account.php:90 pages/account.php:94
1292
- #: pages/billing.php:58 pages/billing.php:62 pages/checkout.php:298
1293
- #: pages/checkout.php:300 pages/checkout.php:302 pages/checkout.php:314
1294
- #: pages/checkout.php:321 pages/confirmation.php:59 pages/confirmation.php:61
1295
- #: pages/invoice.php:46 pages/invoice.php:48
 
1296
  msgid "Billing Address"
1297
  msgstr ""
1298
 
1299
- #: adminpages/memberslist.php:161 adminpages/reports/login.php:145
1300
  #: classes/gateways/class.pmprogateway_authorizenet.php:303
1301
  #: adminpages/memberslist.php:118 adminpages/memberslist.php:151
1302
- #: adminpages/memberslist.php:161 adminpages/pagesettings.php:51
1303
- #: adminpages/reports/login.php:143 adminpages/reports/login.php:145
 
1304
  #: classes/gateways/class.pmprogateway_authorizenet.php:187
1305
  #: classes/gateways/class.pmprogateway_authorizenet.php:303
1306
  msgid "Membership"
1307
  msgstr ""
1308
 
1309
- #: adminpages/memberslist.php:162 adminpages/memberslist.php:119
1310
  #: adminpages/memberslist.php:152 adminpages/memberslist.php:162
 
1311
  msgid "Fee"
1312
  msgstr ""
1313
 
1314
- #: adminpages/memberslist.php:163 adminpages/reports/login.php:146
1315
  #: adminpages/memberslist.php:120 adminpages/memberslist.php:153
1316
- #: adminpages/memberslist.php:163 adminpages/reports/login.php:144
1317
- #: adminpages/reports/login.php:146
1318
  msgid "Joined"
1319
  msgstr ""
1320
 
1321
- #: adminpages/memberslist.php:167 adminpages/memberslist.php:157
1322
- #: adminpages/memberslist.php:167
1323
  msgid "Ended"
1324
  msgstr ""
1325
 
1326
- #: adminpages/memberslist.php:251 adminpages/reports/login.php:212
1327
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1328
- #: adminpages/memberslist.php:251 adminpages/reports/login.php:210
1329
- #: adminpages/reports/login.php:212
1330
  msgid "No members found."
1331
  msgstr ""
1332
 
1333
- #: adminpages/memberslist.php:251 adminpages/reports/login.php:212
1334
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1335
- #: adminpages/memberslist.php:251 adminpages/reports/login.php:210
1336
- #: adminpages/reports/login.php:212
1337
  msgid "Search all levels"
1338
  msgstr ""
1339
 
@@ -1435,10 +1612,10 @@ msgstr ""
1435
  msgid "Coupon Amount"
1436
  msgstr ""
1437
 
1438
- #: adminpages/orders.php:370 adminpages/orders.php:905 pages/invoice.php:84
1439
  #: adminpages/orders.php:320 adminpages/orders.php:370
1440
- #: adminpages/orders.php:602 adminpages/orders.php:905 pages/invoice.php:82
1441
- #: pages/invoice.php:84
1442
  msgid "Total"
1443
  msgstr ""
1444
 
@@ -1459,13 +1636,15 @@ msgstr ""
1459
 
1460
  #: adminpages/orders.php:389
1461
  #: classes/gateways/class.pmprogateway_braintree.php:304
1462
- #: classes/gateways/class.pmprogateway_stripe.php:408 pages/billing.php:238
1463
- #: pages/checkout.php:507 adminpages/orders.php:339 adminpages/orders.php:389
1464
  #: classes/gateways/class.pmprogateway_braintree.php:291
1465
  #: classes/gateways/class.pmprogateway_braintree.php:304
1466
- #: classes/gateways/class.pmprogateway_stripe.php:408 pages/billing.php:234
1467
- #: pages/billing.php:238 pages/checkout.php:493 pages/checkout.php:507
1468
- #: pages/checkout.php:510 pages/checkout.php:517
 
 
1469
  msgid "Card Type"
1470
  msgstr ""
1471
 
@@ -1479,6 +1658,7 @@ msgstr ""
1479
  #: adminpages/orders.php:348 adminpages/orders.php:398
1480
  #: adminpages/paymentsettings.php:347 adminpages/paymentsettings.php:352
1481
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
 
1482
  msgid "Account Number"
1483
  msgstr ""
1484
 
@@ -1497,15 +1677,17 @@ msgstr ""
1497
  msgid "Expiration Year"
1498
  msgstr ""
1499
 
1500
- #: adminpages/orders.php:423 adminpages/orders.php:909
1501
  #: adminpages/orders.php:373 adminpages/orders.php:423
1502
  #: adminpages/orders.php:606 adminpages/orders.php:909
 
1503
  msgid "Status"
1504
  msgstr ""
1505
 
1506
- #: adminpages/orders.php:444 adminpages/orders.php:907
1507
  #: adminpages/orders.php:394 adminpages/orders.php:444
1508
  #: adminpages/orders.php:604 adminpages/orders.php:907
 
1509
  msgid "Gateway"
1510
  msgstr ""
1511
 
@@ -1553,12 +1735,12 @@ msgstr ""
1553
  msgid "Generated by the gateway. Useful to cross reference subscriptions."
1554
  msgstr ""
1555
 
1556
- #: adminpages/orders.php:493 adminpages/orders.php:910 pages/invoice.php:107
1557
  #: shortcodes/pmpro_account.php:122 adminpages/orders.php:442
1558
  #: adminpages/orders.php:492 adminpages/orders.php:493
1559
- #: adminpages/orders.php:607 adminpages/orders.php:910 pages/account.php:91
1560
- #: pages/invoice.php:105 pages/invoice.php:107
1561
- #: shortcodes/pmpro_account.php:122
1562
  msgid "Date"
1563
  msgstr ""
1564
 
@@ -1587,6 +1769,7 @@ msgstr ""
1587
  #: adminpages/orders.php:570 includes/adminpages.php:17
1588
  #: includes/adminpages.php:55 includes/adminpages.php:84
1589
  #: includes/adminpages.php:156 includes/adminpages.php:163
 
1590
  msgid "Orders"
1591
  msgstr ""
1592
 
@@ -1595,10 +1778,6 @@ msgstr ""
1595
  msgid "Add New Order"
1596
  msgstr ""
1597
 
1598
- #: adminpages/orders.php:605 adminpages/orders.php:605
1599
- msgid "All"
1600
- msgstr ""
1601
-
1602
  #: adminpages/orders.php:606 adminpages/orders.php:606
1603
  msgid "Within a Date Range"
1604
  msgstr ""
@@ -1637,67 +1816,73 @@ msgstr ""
1637
  msgid "Search Orders"
1638
  msgstr ""
1639
 
1640
- #: adminpages/orders.php:893 adminpages/orders.php:590
1641
- #: adminpages/orders.php:893
1642
  #, php-format
1643
  msgid "%d orders found."
1644
  msgstr ""
1645
 
1646
- #: adminpages/orders.php:902 adminpages/reports/login.php:143
1647
  #: classes/gateways/class.pmprogateway_payflowpro.php:116
1648
  #: adminpages/orders.php:599 adminpages/orders.php:902
1649
- #: adminpages/paymentsettings.php:211 adminpages/paymentsettings.php:215
1650
- #: adminpages/paymentsettings.php:220 adminpages/reports/login.php:141
1651
- #: adminpages/reports/login.php:143
1652
  #: classes/gateways/class.pmprogateway_payflowpro.php:116
1653
  msgid "User"
1654
  msgstr ""
1655
 
1656
- #: adminpages/orders.php:904 includes/init.php:220 includes/profile.php:27
1657
- #: pages/checkout.php:33 pages/confirmation.php:47 pages/confirmation.php:64
1658
  #: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
1659
- #: adminpages/orders.php:601 adminpages/orders.php:904 includes/init.php:214
1660
- #: includes/init.php:217 includes/init.php:218 includes/profile.php:25
1661
- #: includes/profile.php:27 pages/checkout.php:33 pages/checkout.php:34
1662
- #: pages/checkout.php:35 pages/confirmation.php:46 pages/confirmation.php:47
 
 
1663
  #: pages/confirmation.php:62 pages/confirmation.php:64
1664
  #: pages/confirmation.php:103 pages/confirmation.php:105 pages/invoice.php:27
1665
  #: pages/invoice.php:28 pages/invoice.php:49 pages/invoice.php:51
1666
  msgid "Membership Level"
1667
  msgstr ""
1668
 
1669
- #: adminpages/orders.php:906 adminpages/orders.php:972
1670
  #: adminpages/orders.php:603 adminpages/orders.php:651
1671
- #: adminpages/orders.php:906 adminpages/orders.php:954
1672
- #: adminpages/orders.php:972
 
1673
  msgid "Payment"
1674
  msgstr ""
1675
 
1676
- #: adminpages/orders.php:908 adminpages/orders.php:605
1677
- #: adminpages/orders.php:908
1678
  msgid "Transaction IDs"
1679
  msgstr ""
1680
 
1681
- #: adminpages/orders.php:933 adminpages/orders.php:630
1682
- #: adminpages/orders.php:933
1683
  msgid "deleted"
1684
  msgstr ""
1685
 
1686
- #: adminpages/orders.php:974 adminpages/orders.php:653
1687
  #: adminpages/orders.php:956 adminpages/orders.php:974
 
1688
  msgid "Subscription"
1689
  msgstr ""
1690
 
1691
- #: adminpages/orders.php:985 adminpages/orders.php:664
1692
  #: adminpages/orders.php:967 adminpages/orders.php:985
 
1693
  #, php-format
1694
  msgid ""
1695
  "Deleting orders is permanent and can affect active users. Are you sure you "
1696
  "want to delete order %s?"
1697
  msgstr ""
1698
 
1699
- #: adminpages/orders.php:995 adminpages/orders.php:674
1700
  #: adminpages/orders.php:977 adminpages/orders.php:995
 
1701
  msgid "No orders found."
1702
  msgstr ""
1703
 
@@ -1758,88 +1943,110 @@ msgstr ""
1758
  msgid "Account Page"
1759
  msgstr ""
1760
 
1761
- #: adminpages/pagesettings.php:144 adminpages/pagesettings.php:147
1762
- #: adminpages/pagesettings.php:162 adminpages/pagesettings.php:177
1763
- #: adminpages/pagesettings.php:193 adminpages/pagesettings.php:209
1764
- #: adminpages/pagesettings.php:225 adminpages/pagesettings.php:241
 
 
 
 
 
 
 
1765
  msgid "Choose One"
1766
  msgstr ""
1767
 
1768
- #: adminpages/pagesettings.php:150 adminpages/pagesettings.php:165
1769
- #: adminpages/pagesettings.php:180 adminpages/pagesettings.php:196
1770
- #: adminpages/pagesettings.php:212 adminpages/pagesettings.php:228
1771
- #: adminpages/pagesettings.php:244 adminpages/pagesettings.php:119
1772
  #: adminpages/pagesettings.php:132 adminpages/pagesettings.php:134
1773
  #: adminpages/pagesettings.php:145 adminpages/pagesettings.php:147
1774
- #: adminpages/pagesettings.php:149 adminpages/pagesettings.php:159
1775
- #: adminpages/pagesettings.php:162 adminpages/pagesettings.php:165
1776
- #: adminpages/pagesettings.php:173 adminpages/pagesettings.php:177
 
1777
  #: adminpages/pagesettings.php:181 adminpages/pagesettings.php:187
1778
- #: adminpages/pagesettings.php:193 adminpages/pagesettings.php:197
1779
- #: adminpages/pagesettings.php:201 adminpages/pagesettings.php:209
 
1780
  #: adminpages/pagesettings.php:213 adminpages/pagesettings.php:225
1781
- #: adminpages/pagesettings.php:241
 
1782
  msgid "edit page"
1783
  msgstr ""
1784
 
1785
- #: adminpages/pagesettings.php:152 adminpages/pagesettings.php:167
1786
- #: adminpages/pagesettings.php:182 adminpages/pagesettings.php:198
1787
- #: adminpages/pagesettings.php:214 adminpages/pagesettings.php:230
1788
- #: adminpages/pagesettings.php:246 adminpages/pagesettings.php:121
1789
  #: adminpages/pagesettings.php:136 adminpages/pagesettings.php:149
1790
- #: adminpages/pagesettings.php:151 adminpages/pagesettings.php:164
1791
- #: adminpages/pagesettings.php:167 adminpages/pagesettings.php:179
 
1792
  #: adminpages/pagesettings.php:183 adminpages/pagesettings.php:195
1793
- #: adminpages/pagesettings.php:199 adminpages/pagesettings.php:211
 
1794
  #: adminpages/pagesettings.php:215 adminpages/pagesettings.php:227
1795
- #: adminpages/pagesettings.php:243
 
1796
  msgid "view page"
1797
  msgstr ""
1798
 
1799
- #: adminpages/pagesettings.php:154 adminpages/pagesettings.php:169
1800
- #: adminpages/pagesettings.php:184 adminpages/pagesettings.php:200
1801
- #: adminpages/pagesettings.php:216 adminpages/pagesettings.php:232
1802
- #: adminpages/pagesettings.php:248 adminpages/pagesettings.php:121
1803
  #: adminpages/pagesettings.php:123 adminpages/pagesettings.php:134
1804
  #: adminpages/pagesettings.php:138 adminpages/pagesettings.php:147
1805
  #: adminpages/pagesettings.php:151 adminpages/pagesettings.php:153
1806
- #: adminpages/pagesettings.php:161 adminpages/pagesettings.php:166
1807
- #: adminpages/pagesettings.php:169 adminpages/pagesettings.php:175
1808
- #: adminpages/pagesettings.php:181 adminpages/pagesettings.php:185
 
1809
  #: adminpages/pagesettings.php:189 adminpages/pagesettings.php:197
1810
- #: adminpages/pagesettings.php:201 adminpages/pagesettings.php:203
1811
- #: adminpages/pagesettings.php:213 adminpages/pagesettings.php:217
1812
- #: adminpages/pagesettings.php:229 adminpages/pagesettings.php:245
 
 
1813
  msgid "Include the shortcode"
1814
  msgstr ""
1815
 
1816
- #: adminpages/pagesettings.php:158 adminpages/pagesettings.php:125
1817
  #: adminpages/pagesettings.php:127 adminpages/pagesettings.php:155
 
1818
  msgid "Billing Information Page"
1819
  msgstr ""
1820
 
1821
- #: adminpages/pagesettings.php:173 adminpages/pagesettings.php:138
1822
  #: adminpages/pagesettings.php:142 adminpages/pagesettings.php:170
 
1823
  msgid "Cancel Page"
1824
  msgstr ""
1825
 
1826
- #: adminpages/pagesettings.php:189 adminpages/pagesettings.php:152
1827
  #: adminpages/pagesettings.php:158 adminpages/pagesettings.php:186
 
1828
  msgid "Checkout Page"
1829
  msgstr ""
1830
 
1831
- #: adminpages/pagesettings.php:205 adminpages/pagesettings.php:166
1832
  #: adminpages/pagesettings.php:174 adminpages/pagesettings.php:202
 
1833
  msgid "Confirmation Page"
1834
  msgstr ""
1835
 
1836
- #: adminpages/pagesettings.php:221 adminpages/pagesettings.php:180
1837
  #: adminpages/pagesettings.php:190 adminpages/pagesettings.php:218
 
1838
  msgid "Invoice Page"
1839
  msgstr ""
1840
 
1841
- #: adminpages/pagesettings.php:237 adminpages/pagesettings.php:194
1842
  #: adminpages/pagesettings.php:206 adminpages/pagesettings.php:234
 
1843
  msgid "Levels Page"
1844
  msgstr ""
1845
 
@@ -1896,11 +2103,11 @@ msgstr ""
1896
  msgid "Sales Tax"
1897
  msgstr ""
1898
 
1899
- #: adminpages/paymentsettings.php:188 pages/billing.php:82
1900
  #: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:398
1901
  #: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
1902
  #: adminpages/paymentsettings.php:445 pages/billing.php:78
1903
- #: pages/billing.php:82
1904
  msgid "optional"
1905
  msgstr ""
1906
 
@@ -2182,182 +2389,192 @@ msgstr ""
2182
  msgid "An Email From %s"
2183
  msgstr ""
2184
 
2185
- #: classes/class.pmproemail.php:125 classes/class.pmproemail.php:120
2186
  #: classes/class.pmproemail.php:122 classes/class.pmproemail.php:125
 
2187
  #, php-format
2188
  msgid "Your membership at %s has been CANCELLED"
2189
  msgstr ""
2190
 
2191
- #: classes/class.pmproemail.php:147 classes/class.pmproemail.php:142
2192
  #: classes/class.pmproemail.php:144 classes/class.pmproemail.php:147
 
2193
  #, php-format
2194
  msgid "Membership for %s at %s has been CANCELLED"
2195
  msgstr ""
2196
 
2197
- #: classes/class.pmproemail.php:178 classes/class.pmproemail.php:172
2198
  #: classes/class.pmproemail.php:173 classes/class.pmproemail.php:175
2199
- #: classes/class.pmproemail.php:178
2200
  #, php-format
2201
  msgid "Your membership confirmation for %s"
2202
  msgstr ""
2203
 
2204
- #: classes/class.pmproemail.php:231 classes/class.pmproemail.php:240
2205
- #: classes/class.pmproemail.php:249 classes/class.pmproemail.php:328
2206
- #: classes/class.pmproemail.php:337 classes/class.pmproemail.php:648
2207
  #: classes/gateways/class.pmprogateway_braintree.php:362
2208
- #: classes/gateways/class.pmprogateway_stripe.php:495 pages/checkout.php:66
2209
- #: pages/checkout.php:76 pages/checkout.php:594 pages/confirmation.php:52
2210
  #: pages/invoice.php:33 classes/class.pmproemail.php:216
2211
  #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
2212
  #: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
2213
  #: classes/class.pmproemail.php:231 classes/class.pmproemail.php:234
2214
  #: classes/class.pmproemail.php:236 classes/class.pmproemail.php:237
2215
  #: classes/class.pmproemail.php:240 classes/class.pmproemail.php:246
2216
- #: classes/class.pmproemail.php:249 classes/class.pmproemail.php:304
2217
- #: classes/class.pmproemail.php:307 classes/class.pmproemail.php:313
2218
- #: classes/class.pmproemail.php:316 classes/class.pmproemail.php:325
2219
- #: classes/class.pmproemail.php:328 classes/class.pmproemail.php:334
2220
- #: classes/class.pmproemail.php:337 classes/class.pmproemail.php:532
 
2221
  #: classes/class.pmproemail.php:580 classes/class.pmproemail.php:645
2222
- #: classes/class.pmproemail.php:648
2223
  #: classes/gateways/class.pmprogateway_braintree.php:349
2224
  #: classes/gateways/class.pmprogateway_braintree.php:362
2225
- #: classes/gateways/class.pmprogateway_stripe.php:495 pages/checkout.php:66
2226
- #: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:76
2227
- #: pages/checkout.php:77 pages/checkout.php:78 pages/checkout.php:549
2228
- #: pages/checkout.php:565 pages/checkout.php:566 pages/checkout.php:573
2229
- #: pages/checkout.php:594 pages/confirmation.php:51 pages/confirmation.php:52
 
 
2230
  #: pages/invoice.php:32 pages/invoice.php:33
2231
  msgid "Discount Code"
2232
  msgstr ""
2233
 
2234
- #: classes/class.pmproemail.php:256 classes/class.pmproemail.php:349
2235
- #: classes/class.pmproemail.php:654 classes/class.pmproemail.php:241
2236
  #: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
2237
- #: classes/class.pmproemail.php:256 classes/class.pmproemail.php:325
2238
- #: classes/class.pmproemail.php:328 classes/class.pmproemail.php:346
2239
- #: classes/class.pmproemail.php:349 classes/class.pmproemail.php:538
 
2240
  #: classes/class.pmproemail.php:586 classes/class.pmproemail.php:651
2241
- #: classes/class.pmproemail.php:654
2242
  #, php-format
2243
  msgid "This membership will expire on %s."
2244
  msgstr ""
2245
 
2246
- #: classes/class.pmproemail.php:278 classes/class.pmproemail.php:263
2247
  #: classes/class.pmproemail.php:265 classes/class.pmproemail.php:275
2248
- #: classes/class.pmproemail.php:278
2249
  #, php-format
2250
  msgid "Member Checkout for %s at %s"
2251
  msgstr ""
2252
 
2253
- #: classes/class.pmproemail.php:366 classes/class.pmproemail.php:342
2254
  #: classes/class.pmproemail.php:345 classes/class.pmproemail.php:363
2255
- #: classes/class.pmproemail.php:366
2256
  #, php-format
2257
  msgid "Your billing information has been udpated at %s"
2258
  msgstr ""
2259
 
2260
- #: classes/class.pmproemail.php:419 classes/class.pmproemail.php:386
2261
  #: classes/class.pmproemail.php:390 classes/class.pmproemail.php:416
2262
- #: classes/class.pmproemail.php:419
2263
  #, php-format
2264
  msgid "Billing information has been udpated for %s at %s"
2265
  msgstr ""
2266
 
2267
- #: classes/class.pmproemail.php:467 classes/class.pmproemail.php:425
2268
  #: classes/class.pmproemail.php:430 classes/class.pmproemail.php:464
2269
- #: classes/class.pmproemail.php:467
2270
  #, php-format
2271
  msgid "Membership Payment Failed at %s"
2272
  msgstr ""
2273
 
2274
- #: classes/class.pmproemail.php:513 classes/class.pmproemail.php:462
2275
  #: classes/class.pmproemail.php:468 classes/class.pmproemail.php:510
2276
- #: classes/class.pmproemail.php:513
2277
  #, php-format
2278
  msgid "Membership Payment Failed For %s at %s"
2279
  msgstr ""
2280
 
2281
- #: classes/class.pmproemail.php:560 classes/class.pmproemail.php:508
2282
  #: classes/class.pmproemail.php:557 classes/class.pmproemail.php:560
 
2283
  #, php-format
2284
  msgid "Credit Card on File Expiring Soon at %s"
2285
  msgstr ""
2286
 
2287
- #: classes/class.pmproemail.php:608 classes/class.pmproemail.php:501
2288
  #: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
2289
- #: classes/class.pmproemail.php:608
2290
  #, php-format
2291
  msgid "INVOICE for %s membership"
2292
  msgstr ""
2293
 
2294
- #: classes/class.pmproemail.php:679 classes/class.pmproemail.php:563
2295
  #: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
2296
- #: classes/class.pmproemail.php:679
2297
  #, php-format
2298
  msgid "Your trial at %s is ending soon"
2299
  msgstr ""
2300
 
2301
- #: classes/class.pmproemail.php:713 classes/class.pmproemail.php:596
2302
  #: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
2303
- #: classes/class.pmproemail.php:713
2304
  #, php-format
2305
  msgid "Your membership at %s has ended"
2306
  msgstr ""
2307
 
2308
- #: classes/class.pmproemail.php:738 classes/class.pmproemail.php:621
2309
  #: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
2310
- #: classes/class.pmproemail.php:738
2311
  #, php-format
2312
  msgid "Your membership at %s will end soon"
2313
  msgstr ""
2314
 
2315
- #: classes/class.pmproemail.php:758 classes/class.pmproemail.php:641
2316
  #: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
2317
- #: classes/class.pmproemail.php:758
2318
  #, php-format
2319
  msgid "Your membership at %s has been changed"
2320
  msgstr ""
2321
 
2322
- #: classes/class.pmproemail.php:762 classes/class.pmproemail.php:800
2323
  #: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
2324
- #: classes/class.pmproemail.php:800
 
2325
  #, php-format
2326
  msgid "The new level is %s"
2327
  msgstr ""
2328
 
2329
- #: classes/class.pmproemail.php:764 classes/class.pmproemail.php:647
2330
  #: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
2331
- #: classes/class.pmproemail.php:764
2332
  msgid "Your membership has been cancelled"
2333
  msgstr ""
2334
 
2335
- #: classes/class.pmproemail.php:768 classes/class.pmproemail.php:806
2336
  #: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
2337
  #: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
2338
  #: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
2339
- #: classes/class.pmproemail.php:803 classes/class.pmproemail.php:806
 
2340
  #, php-format
2341
  msgid "This membership will expire on %s"
2342
  msgstr ""
2343
 
2344
- #: classes/class.pmproemail.php:772 classes/class.pmproemail.php:810
2345
  #: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
2346
  #: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
2347
  #: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
2348
- #: classes/class.pmproemail.php:807 classes/class.pmproemail.php:810
 
2349
  msgid "This membership does not expire"
2350
  msgstr ""
2351
 
2352
- #: classes/class.pmproemail.php:796 classes/class.pmproemail.php:679
2353
  #: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
2354
- #: classes/class.pmproemail.php:796
2355
  #, php-format
2356
  msgid "Membership for %s at %s has been changed"
2357
  msgstr ""
2358
 
2359
- #: classes/class.pmproemail.php:802 classes/class.pmproemail.php:799
2360
- #: classes/class.pmproemail.php:802
2361
  msgid "Membership has been cancelled"
2362
  msgstr ""
2363
 
@@ -2443,7 +2660,7 @@ msgid ""
2443
  msgstr ""
2444
 
2445
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
2446
- #: paid-memberships-pro.php:123
2447
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
2448
  #: paid-memberships-pro.php:122 paid-memberships-pro.php:123
2449
  msgid "Authorize.net"
@@ -2496,7 +2713,7 @@ msgid "Could not connect to Authorize.net"
2496
  msgstr ""
2497
 
2498
  #: classes/gateways/class.pmprogateway_braintree.php:76
2499
- #: paid-memberships-pro.php:124
2500
  #: classes/gateways/class.pmprogateway_braintree.php:63
2501
  #: classes/gateways/class.pmprogateway_braintree.php:76
2502
  #: paid-memberships-pro.php:123 paid-memberships-pro.php:124
@@ -2545,7 +2762,7 @@ msgid "Client-Side Encryption Key"
2545
  msgstr ""
2546
 
2547
  #: classes/gateways/class.pmprogateway_braintree.php:169
2548
- #: classes/gateways/class.pmprogateway_stripe.php:181
2549
  #: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
2550
  #: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
2551
  #: adminpages/paymentsettings.php:511 adminpages/paymentsettings.php:517
@@ -2553,6 +2770,7 @@ msgstr ""
2553
  #: classes/gateways/class.pmprogateway_braintree.php:156
2554
  #: classes/gateways/class.pmprogateway_braintree.php:169
2555
  #: classes/gateways/class.pmprogateway_stripe.php:181
 
2556
  msgid "Web Hook URL"
2557
  msgstr ""
2558
 
@@ -2565,79 +2783,89 @@ msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
2565
  msgstr ""
2566
 
2567
  #: classes/gateways/class.pmprogateway_braintree.php:283
2568
- #: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:485
2569
  #: classes/gateways/class.pmprogateway_braintree.php:270
2570
  #: classes/gateways/class.pmprogateway_braintree.php:283
2571
- #: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:476
 
2572
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
2573
- #: pages/checkout.php:500
2574
  msgid "Payment Information"
2575
  msgstr ""
2576
 
2577
  #: classes/gateways/class.pmprogateway_braintree.php:283
2578
- #: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:485
2579
  #: classes/gateways/class.pmprogateway_braintree.php:270
2580
  #: classes/gateways/class.pmprogateway_braintree.php:283
2581
- #: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:476
 
2582
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
2583
- #: pages/checkout.php:500
2584
  #, php-format
2585
  msgid "We Accept %s"
2586
  msgstr ""
2587
 
2588
  #: classes/gateways/class.pmprogateway_braintree.php:316
2589
- #: classes/gateways/class.pmprogateway_stripe.php:449 pages/billing.php:248
2590
- #: pages/checkout.php:548
2591
  #: classes/gateways/class.pmprogateway_braintree.php:303
2592
  #: classes/gateways/class.pmprogateway_braintree.php:316
2593
- #: classes/gateways/class.pmprogateway_stripe.php:449 pages/billing.php:244
2594
- #: pages/billing.php:248 pages/checkout.php:503 pages/checkout.php:519
2595
- #: pages/checkout.php:520 pages/checkout.php:527 pages/checkout.php:548
 
 
2596
  msgid "Card Number"
2597
  msgstr ""
2598
 
2599
  #: classes/gateways/class.pmprogateway_braintree.php:353
2600
- #: classes/gateways/class.pmprogateway_stripe.php:486 pages/billing.php:285
2601
- #: pages/checkout.php:585
2602
  #: classes/gateways/class.pmprogateway_braintree.php:340
2603
  #: classes/gateways/class.pmprogateway_braintree.php:353
2604
- #: classes/gateways/class.pmprogateway_stripe.php:486 pages/billing.php:281
2605
- #: pages/billing.php:285 pages/checkout.php:540 pages/checkout.php:556
2606
- #: pages/checkout.php:557 pages/checkout.php:564 pages/checkout.php:585
 
 
2607
  msgid "CVV"
2608
  msgstr ""
2609
 
2610
  #: classes/gateways/class.pmprogateway_braintree.php:354
2611
- #: classes/gateways/class.pmprogateway_stripe.php:487 pages/billing.php:286
2612
- #: pages/checkout.php:586
2613
  #: classes/gateways/class.pmprogateway_braintree.php:341
2614
  #: classes/gateways/class.pmprogateway_braintree.php:354
2615
- #: classes/gateways/class.pmprogateway_stripe.php:487 pages/billing.php:282
2616
- #: pages/billing.php:286 pages/checkout.php:541 pages/checkout.php:557
2617
- #: pages/checkout.php:558 pages/checkout.php:565 pages/checkout.php:586
 
 
2618
  msgid "what's this?"
2619
  msgstr ""
2620
 
2621
  #: classes/gateways/class.pmprogateway_braintree.php:364
2622
- #: classes/gateways/class.pmprogateway_stripe.php:497 pages/checkout.php:78
2623
- #: pages/checkout.php:596
2624
  #: classes/gateways/class.pmprogateway_braintree.php:351
2625
  #: classes/gateways/class.pmprogateway_braintree.php:364
2626
- #: classes/gateways/class.pmprogateway_stripe.php:497 pages/checkout.php:78
2627
- #: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:551
2628
- #: pages/checkout.php:567 pages/checkout.php:568 pages/checkout.php:575
2629
- #: pages/checkout.php:596
 
2630
  msgid "Apply"
2631
  msgstr ""
2632
 
2633
  #: classes/gateways/class.pmprogateway_braintree.php:419
2634
- #: classes/gateways/class.pmprogateway_stripe.php:1025
2635
  #: classes/gateways/class.pmprogateway_braintree.php:61
2636
  #: classes/gateways/class.pmprogateway_braintree.php:406
2637
  #: classes/gateways/class.pmprogateway_braintree.php:419
2638
  #: classes/gateways/class.pmprogateway_stripe.php:53
2639
  #: classes/gateways/class.pmprogateway_stripe.php:1011
2640
  #: classes/gateways/class.pmprogateway_stripe.php:1025
 
2641
  msgid "Unknown error: Initial payment failed."
2642
  msgstr ""
2643
 
@@ -2727,7 +2955,7 @@ msgid "Could not find the subscription."
2727
  msgstr ""
2728
 
2729
  #: classes/gateways/class.pmprogateway_check.php:48
2730
- #: paid-memberships-pro.php:117 adminpages/orders.php:399
2731
  #: adminpages/orders.php:449 adminpages/paymentsettings.php:157
2732
  #: adminpages/paymentsettings.php:159
2733
  #: classes/gateways/class.pmprogateway_check.php:48
@@ -2807,10 +3035,11 @@ msgid "Vendor"
2807
  msgstr ""
2808
 
2809
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
2810
- #: pages/checkout.php:180 adminpages/paymentsettings.php:219
2811
  #: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:228
2812
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
2813
  #: pages/checkout.php:177 pages/checkout.php:180 pages/checkout.php:182
 
2814
  msgid "Password"
2815
  msgstr ""
2816
 
@@ -2839,14 +3068,14 @@ msgid ""
2839
  msgstr ""
2840
 
2841
  #: classes/gateways/class.pmprogateway_paypal.php:57
2842
- #: paid-memberships-pro.php:120
2843
  #: classes/gateways/class.pmprogateway_paypal.php:57
2844
  #: paid-memberships-pro.php:119 paid-memberships-pro.php:120
2845
  msgid "PayPal Website Payments Pro"
2846
  msgstr ""
2847
 
2848
  #: classes/gateways/class.pmprogateway_paypal.php:113
2849
- #: classes/gateways/class.pmprogateway_paypalexpress.php:118
2850
  #: classes/gateways/class.pmprogateway_paypalstandard.php:112
2851
  #: classes/gateways/class.pmprogateway_paypal.php:113
2852
  #: classes/gateways/class.pmprogateway_paypalexpress.php:118
@@ -2855,7 +3084,7 @@ msgid "PayPal Settings"
2855
  msgstr ""
2856
 
2857
  #: classes/gateways/class.pmprogateway_paypal.php:118
2858
- #: classes/gateways/class.pmprogateway_paypalexpress.php:123
2859
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
2860
  #: adminpages/paymentsettings.php:179
2861
  #: classes/gateways/class.pmprogateway_paypal.php:118
@@ -2870,7 +3099,7 @@ msgid ""
2870
  msgstr ""
2871
 
2872
  #: classes/gateways/class.pmprogateway_paypal.php:123
2873
- #: classes/gateways/class.pmprogateway_paypalexpress.php:128
2874
  #: classes/gateways/class.pmprogateway_paypalstandard.php:122
2875
  #: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:231
2876
  #: adminpages/paymentsettings.php:236
@@ -2881,7 +3110,7 @@ msgid "Gateway Account Email"
2881
  msgstr ""
2882
 
2883
  #: classes/gateways/class.pmprogateway_paypal.php:131
2884
- #: classes/gateways/class.pmprogateway_paypalexpress.php:136
2885
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
2886
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
2887
  #: adminpages/paymentsettings.php:235 adminpages/paymentsettings.php:239
@@ -2891,11 +3120,12 @@ msgstr ""
2891
  #: classes/gateways/class.pmprogateway_paypalexpress.php:136
2892
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
2893
  #: classes/gateways/class.pmprogateway_twocheckout.php:113
 
2894
  msgid "API Username"
2895
  msgstr ""
2896
 
2897
  #: classes/gateways/class.pmprogateway_paypal.php:139
2898
- #: classes/gateways/class.pmprogateway_paypalexpress.php:144
2899
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
2900
  #: classes/gateways/class.pmprogateway_twocheckout.php:130
2901
  #: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:247
@@ -2905,11 +3135,12 @@ msgstr ""
2905
  #: classes/gateways/class.pmprogateway_paypalexpress.php:144
2906
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
2907
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
 
2908
  msgid "API Password"
2909
  msgstr ""
2910
 
2911
  #: classes/gateways/class.pmprogateway_paypal.php:147
2912
- #: classes/gateways/class.pmprogateway_paypalexpress.php:152
2913
  #: classes/gateways/class.pmprogateway_paypalstandard.php:146
2914
  #: adminpages/paymentsettings.php:251 adminpages/paymentsettings.php:255
2915
  #: adminpages/paymentsettings.php:260
@@ -2920,7 +3151,7 @@ msgid "API Signature"
2920
  msgstr ""
2921
 
2922
  #: classes/gateways/class.pmprogateway_paypal.php:155
2923
- #: classes/gateways/class.pmprogateway_paypalexpress.php:160
2924
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
2925
  #: adminpages/paymentsettings.php:446 adminpages/paymentsettings.php:479
2926
  #: adminpages/paymentsettings.php:485 adminpages/paymentsettings.php:487
@@ -2938,43 +3169,44 @@ msgid ""
2938
  msgstr ""
2939
 
2940
  #: classes/gateways/class.pmprogateway_paypal.php:178
2941
- #: classes/gateways/class.pmprogateway_paypalexpress.php:402
2942
  #: classes/gateways/class.pmprogateway_paypalstandard.php:202
2943
- #: pages/checkout.php:286 classes/gateways/class.pmprogateway_paypal.php:178
2944
  #: classes/gateways/class.pmprogateway_paypalexpress.php:402
2945
  #: classes/gateways/class.pmprogateway_paypalstandard.php:202
2946
- #: pages/checkout.php:286 pages/checkout.php:288 pages/checkout.php:302
2947
- #: pages/checkout.php:309 pages/checkout.php:675 pages/checkout.php:682
2948
- #: pages/checkout.php:685 pages/checkout.php:701
2949
  msgid "Check Out with PayPal"
2950
  msgstr ""
2951
 
2952
  #: classes/gateways/class.pmprogateway_paypal.php:184
2953
- #: classes/gateways/class.pmprogateway_paypalexpress.php:408
2954
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
2955
- #: pages/checkout.php:704 classes/gateways/class.pmprogateway_paypal.php:184
2956
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
2957
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
2958
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
2959
- #: pages/checkout.php:704 pages/checkout.php:707
2960
  msgid "Submit and Check Out"
2961
  msgstr ""
2962
 
2963
  #: classes/gateways/class.pmprogateway_paypal.php:184
2964
- #: classes/gateways/class.pmprogateway_paypalexpress.php:408
2965
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
2966
  #: classes/gateways/class.pmprogateway_twocheckout.php:214
2967
- #: pages/checkout.php:704 classes/gateways/class.pmprogateway_paypal.php:184
2968
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
2969
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
2970
  #: classes/gateways/class.pmprogateway_twocheckout.php:192
 
2971
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
2972
- #: pages/checkout.php:704 pages/checkout.php:707
2973
  msgid "Submit and Confirm"
2974
  msgstr ""
2975
 
2976
  #: classes/gateways/class.pmprogateway_paypal.php:605
2977
- #: classes/gateways/class.pmprogateway_paypalexpress.php:740
2978
  #: classes/gateways/class.pmprogateway_paypalstandard.php:466
2979
  #: classes/gateways/class.pmprogateway_paypal.php:385
2980
  #: classes/gateways/class.pmprogateway_paypal.php:605
@@ -2993,22 +3225,22 @@ msgid ""
2993
  "to make sure you are not charged going forward."
2994
  msgstr ""
2995
 
2996
- #: classes/gateways/class.pmprogateway_paypalexpress.php:63
2997
- #: paid-memberships-pro.php:119
2998
  #: classes/gateways/class.pmprogateway_paypalexpress.php:63
2999
  #: paid-memberships-pro.php:118 paid-memberships-pro.php:119
3000
  msgid "PayPal Express"
3001
  msgstr ""
3002
 
3003
- #: classes/gateways/class.pmprogateway_paypalexpress.php:163
3004
  #: adminpages/paymentsettings.php:449 adminpages/paymentsettings.php:482
3005
  #: adminpages/paymentsettings.php:488 adminpages/paymentsettings.php:490
3006
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
3007
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
3008
  msgstr ""
3009
 
3010
- #: classes/gateways/class.pmprogateway_paypalexpress.php:268
3011
- #: classes/gateways/class.pmprogateway_paypalexpress.php:320
3012
  #: classes/gateways/class.pmprogateway_paypalexpress.php:268
3013
  #: classes/gateways/class.pmprogateway_paypalexpress.php:320
3014
  #: preheaders/checkout.php:690 preheaders/checkout.php:697
@@ -3021,7 +3253,7 @@ msgid "The PayPal Token was lost."
3021
  msgstr ""
3022
 
3023
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
3024
- #: paid-memberships-pro.php:122
3025
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
3026
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:122
3027
  msgid "PayPal Standard"
@@ -3034,86 +3266,98 @@ msgid ""
3034
  "settings."
3035
  msgstr ""
3036
 
 
 
3037
  #: classes/gateways/class.pmprogateway_stripe.php:93
3038
- #: paid-memberships-pro.php:118
3039
- #: classes/gateways/class.pmprogateway_stripe.php:93
3040
  #: paid-memberships-pro.php:117 paid-memberships-pro.php:118
3041
  msgid "Stripe"
3042
  msgstr ""
3043
 
 
3044
  #: classes/gateways/class.pmprogateway_stripe.php:148
3045
- #: classes/gateways/class.pmprogateway_stripe.php:148
3046
  msgid "Stripe Settings"
3047
  msgstr ""
3048
 
3049
- #: classes/gateways/class.pmprogateway_stripe.php:153
3050
  #: adminpages/paymentsettings.php:277 adminpages/paymentsettings.php:281
3051
  #: adminpages/paymentsettings.php:286
3052
  #: classes/gateways/class.pmprogateway_stripe.php:153
 
3053
  msgid "Secret Key"
3054
  msgstr ""
3055
 
3056
- #: classes/gateways/class.pmprogateway_stripe.php:161
3057
  #: adminpages/paymentsettings.php:285 adminpages/paymentsettings.php:289
3058
  #: adminpages/paymentsettings.php:294
3059
  #: classes/gateways/class.pmprogateway_stripe.php:161
 
3060
  msgid "Publishable Key"
3061
  msgstr ""
3062
 
3063
- #: classes/gateways/class.pmprogateway_stripe.php:169
3064
  #: adminpages/paymentsettings.php:425 adminpages/paymentsettings.php:430
3065
  #: adminpages/paymentsettings.php:432
3066
  #: classes/gateways/class.pmprogateway_stripe.php:169
 
3067
  msgid "Show Billing Address Fields"
3068
  msgstr ""
3069
 
3070
- #: classes/gateways/class.pmprogateway_stripe.php:176
3071
  #: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:439
3072
  #: classes/gateways/class.pmprogateway_stripe.php:176
 
3073
  msgid ""
3074
  "Stripe doesn't require billing address fields. Choose 'No' to hide them on "
3075
  "the checkout page.<br /><strong>If No, make sure you disable address "
3076
  "verification in the Stripe dashboard settings.</strong>"
3077
  msgstr ""
3078
 
3079
- #: classes/gateways/class.pmprogateway_stripe.php:184
3080
  #: adminpages/paymentsettings.php:465 adminpages/paymentsettings.php:506
3081
  #: adminpages/paymentsettings.php:512 adminpages/paymentsettings.php:514
3082
  #: classes/gateways/class.pmprogateway_stripe.php:184
 
3083
  msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
3084
  msgstr ""
3085
 
 
3086
  #: classes/gateways/class.pmprogateway_stripe.php:567
3087
- #: classes/gateways/class.pmprogateway_stripe.php:567
3088
  msgid "Subscription Updates"
3089
  msgstr ""
3090
 
 
3091
  #: classes/gateways/class.pmprogateway_stripe.php:571
3092
- #: classes/gateways/class.pmprogateway_stripe.php:571
3093
  msgid ""
3094
  "Subscription updates, allow you to change the member's subscription values "
3095
  "at predefined times. Be sure to click Update Profile after making changes."
3096
  msgstr ""
3097
 
 
3098
  #: classes/gateways/class.pmprogateway_stripe.php:573
3099
- #: classes/gateways/class.pmprogateway_stripe.php:573
3100
  msgid ""
3101
  "Subscription updates, allow you to change the member's subscription values "
3102
  "at predefined times. Be sure to click Update User after making changes."
3103
  msgstr ""
3104
 
3105
- #: classes/gateways/class.pmprogateway_stripe.php:578 pages/billing.php:329
3106
- #: classes/gateways/class.pmprogateway_stripe.php:578 pages/billing.php:294
3107
- #: pages/billing.php:298 pages/billing.php:329
 
3108
  msgid "Update"
3109
  msgstr ""
3110
 
 
3111
  #: classes/gateways/class.pmprogateway_stripe.php:769
3112
- #: classes/gateways/class.pmprogateway_stripe.php:769
3113
  msgid "Could not cancel the old subscription. Updates have not been processed."
3114
  msgstr ""
3115
 
3116
- #: classes/gateways/class.pmprogateway_stripe.php:1203
3117
  #: classes/gateways/class.pmprogateway_stripe.php:190
3118
  #: classes/gateways/class.pmprogateway_stripe.php:192
3119
  #: classes/gateways/class.pmprogateway_stripe.php:199
@@ -3122,11 +3366,12 @@ msgstr ""
3122
  #: classes/gateways/class.pmprogateway_stripe.php:1188
3123
  #: classes/gateways/class.pmprogateway_stripe.php:1202
3124
  #: classes/gateways/class.pmprogateway_stripe.php:1203
 
3125
  msgid "Error creating customer record with Stripe:"
3126
  msgstr ""
3127
 
3128
- #: classes/gateways/class.pmprogateway_stripe.php:1260
3129
- #: classes/gateways/class.pmprogateway_stripe.php:1410
3130
  #: classes/gateways/class.pmprogateway_stripe.php:278
3131
  #: classes/gateways/class.pmprogateway_stripe.php:279
3132
  #: classes/gateways/class.pmprogateway_stripe.php:286
@@ -3137,14 +3382,16 @@ msgstr ""
3137
  #: classes/gateways/class.pmprogateway_stripe.php:1245
3138
  #: classes/gateways/class.pmprogateway_stripe.php:1259
3139
  #: classes/gateways/class.pmprogateway_stripe.php:1260
 
3140
  #: classes/gateways/class.pmprogateway_stripe.php:1390
3141
  #: classes/gateways/class.pmprogateway_stripe.php:1391
3142
  #: classes/gateways/class.pmprogateway_stripe.php:1409
3143
  #: classes/gateways/class.pmprogateway_stripe.php:1410
 
3144
  msgid "Error creating plan with Stripe:"
3145
  msgstr ""
3146
 
3147
- #: classes/gateways/class.pmprogateway_stripe.php:1441
3148
  #: classes/gateways/class.pmprogateway_stripe.php:294
3149
  #: classes/gateways/class.pmprogateway_stripe.php:295
3150
  #: classes/gateways/class.pmprogateway_stripe.php:302
@@ -3156,10 +3403,11 @@ msgstr ""
3156
  #: classes/gateways/class.pmprogateway_stripe.php:1422
3157
  #: classes/gateways/class.pmprogateway_stripe.php:1440
3158
  #: classes/gateways/class.pmprogateway_stripe.php:1441
 
3159
  msgid "Error subscribing customer to plan with Stripe:"
3160
  msgstr ""
3161
 
3162
- #: classes/gateways/class.pmprogateway_stripe.php:1537
3163
  #: classes/gateways/class.pmprogateway_stripe.php:383
3164
  #: classes/gateways/class.pmprogateway_stripe.php:389
3165
  #: classes/gateways/class.pmprogateway_stripe.php:410
@@ -3168,50 +3416,59 @@ msgstr ""
3168
  #: classes/gateways/class.pmprogateway_stripe.php:1518
3169
  #: classes/gateways/class.pmprogateway_stripe.php:1536
3170
  #: classes/gateways/class.pmprogateway_stripe.php:1537
 
3171
  msgid "Could not cancel old subscription."
3172
  msgstr ""
3173
 
3174
- #: classes/gateways/class.pmprogateway_stripe.php:1554
3175
  #: classes/gateways/class.pmprogateway_stripe.php:1533
3176
  #: classes/gateways/class.pmprogateway_stripe.php:1534
3177
  #: classes/gateways/class.pmprogateway_stripe.php:1535
3178
  #: classes/gateways/class.pmprogateway_stripe.php:1553
3179
  #: classes/gateways/class.pmprogateway_stripe.php:1554
 
3180
  msgid "Could not find the customer."
3181
  msgstr ""
3182
 
3183
  #: classes/gateways/class.pmprogateway_twocheckout.php:60
3184
- #: paid-memberships-pro.php:125
3185
  #: classes/gateways/class.pmprogateway_twocheckout.php:53
 
3186
  #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
3187
  msgid "2Checkout"
3188
  msgstr ""
3189
 
3190
  #: classes/gateways/class.pmprogateway_twocheckout.php:116
3191
  #: classes/gateways/class.pmprogateway_twocheckout.php:108
 
3192
  msgid "2Checkout Settings"
3193
  msgstr ""
3194
 
 
3195
  #: classes/gateways/class.pmprogateway_twocheckout.php:125
3196
  msgid ""
3197
  "Go to Account &raquo; User Management in 2Checkout and create a user with "
3198
  "API Access and API Updating."
3199
  msgstr ""
3200
 
 
3201
  #: classes/gateways/class.pmprogateway_twocheckout.php:134
3202
  msgid "Password for the API user created."
3203
  msgstr ""
3204
 
 
3205
  #: classes/gateways/class.pmprogateway_twocheckout.php:139
3206
  msgid "API Private Key"
3207
  msgstr ""
3208
 
 
3209
  #: classes/gateways/class.pmprogateway_twocheckout.php:143
3210
  msgid ""
3211
  "Go to API in 2Checkout and generate a new key pair. Paste the Private Key "
3212
  "here."
3213
  msgstr ""
3214
 
 
3215
  #: classes/gateways/class.pmprogateway_twocheckout.php:152
3216
  msgid "Click on the profile icon in 2Checkout to find your Account Number."
3217
  msgstr ""
@@ -3219,9 +3476,11 @@ msgstr ""
3219
  #: classes/gateways/class.pmprogateway_twocheckout.php:157
3220
  #: adminpages/paymentsettings.php:355 adminpages/paymentsettings.php:360
3221
  #: classes/gateways/class.pmprogateway_twocheckout.php:137
 
3222
  msgid "Secret Word"
3223
  msgstr ""
3224
 
 
3225
  #: classes/gateways/class.pmprogateway_twocheckout.php:161
3226
  msgid ""
3227
  "Go to Account &raquo; Site Management. Look under Checkout Options to find "
@@ -3232,9 +3491,11 @@ msgstr ""
3232
  #: adminpages/paymentsettings.php:487 adminpages/paymentsettings.php:493
3233
  #: adminpages/paymentsettings.php:495
3234
  #: classes/gateways/class.pmprogateway_twocheckout.php:145
 
3235
  msgid "TwoCheckout INS URL"
3236
  msgstr ""
3237
 
 
3238
  #: classes/gateways/class.pmprogateway_twocheckout.php:169
3239
  msgid ""
3240
  "To fully integrate with 2Checkout, be sure to use the following for your INS "
@@ -3243,6 +3504,7 @@ msgstr ""
3243
 
3244
  #: classes/gateways/class.pmprogateway_twocheckout.php:214
3245
  #: classes/gateways/class.pmprogateway_twocheckout.php:192
 
3246
  msgid "Check Out with 2Checkout"
3247
  msgstr ""
3248
 
@@ -3255,48 +3517,53 @@ msgstr ""
3255
  #: includes/adminpages.php:48 includes/adminpages.php:118
3256
  #: includes/adminpages.php:10 includes/adminpages.php:48
3257
  #: includes/adminpages.php:49 includes/adminpages.php:107
3258
- #: includes/adminpages.php:114
3259
  msgid "Page Settings"
3260
  msgstr ""
3261
 
3262
  #: includes/adminpages.php:49 includes/adminpages.php:125
3263
  #: includes/adminpages.php:11 includes/adminpages.php:49
3264
  #: includes/adminpages.php:54 includes/adminpages.php:114
3265
- #: includes/adminpages.php:121
3266
  msgid "Payment Settings"
3267
  msgstr ""
3268
 
3269
  #: includes/adminpages.php:54 includes/adminpages.php:160
3270
  #: includes/adminpages.php:16 includes/adminpages.php:54
3271
  #: includes/adminpages.php:79 includes/adminpages.php:149
3272
- #: includes/adminpages.php:156
3273
  msgid "Reports"
3274
  msgstr ""
3275
 
3276
  #: includes/adminpages.php:56 includes/adminpages.php:174
3277
  #: includes/adminpages.php:18 includes/adminpages.php:56
3278
  #: includes/adminpages.php:89 includes/adminpages.php:163
3279
- #: includes/adminpages.php:170
3280
  msgid "Discount Codes"
3281
  msgstr ""
3282
 
3283
  #: includes/adminpages.php:104 includes/adminpages.php:100
 
3284
  msgid "<span class=\"ab-icon\"></span>Memberships"
3285
  msgstr ""
3286
 
3287
  #: includes/adminpages.php:265 includes/adminpages.php:261
 
3288
  msgid "Docs"
3289
  msgstr ""
3290
 
3291
  #: includes/adminpages.php:265 includes/adminpages.php:261
 
3292
  msgid "View PMPro Documentation"
3293
  msgstr ""
3294
 
3295
  #: includes/adminpages.php:266 includes/adminpages.php:262
 
3296
  msgid "Support"
3297
  msgstr ""
3298
 
3299
  #: includes/adminpages.php:266 includes/adminpages.php:262
 
3300
  msgid "Visit Customer Support Forum"
3301
  msgstr ""
3302
 
@@ -3616,35 +3883,37 @@ msgstr ""
3616
  msgid "Membership expires after %d %s."
3617
  msgstr ""
3618
 
3619
- #: includes/functions.php:569 includes/functions.php:491
3620
  #: includes/functions.php:514 includes/functions.php:525
3621
  #: includes/functions.php:536 includes/functions.php:537
3622
  #: includes/functions.php:538 includes/functions.php:545
3623
  #: includes/functions.php:569 includes/functions.php:570
3624
- #: includes/functions.php:576
3625
  msgid "User ID not found."
3626
  msgstr ""
3627
 
3628
- #: includes/functions.php:589 includes/functions.php:508
3629
  #: includes/functions.php:531 includes/functions.php:542
3630
  #: includes/functions.php:553 includes/functions.php:554
3631
  #: includes/functions.php:555 includes/functions.php:562
3632
  #: includes/functions.php:586 includes/functions.php:587
3633
  #: includes/functions.php:589 includes/functions.php:596
 
3634
  msgid "Invalid level."
3635
  msgstr ""
3636
 
3637
- #: includes/functions.php:600 includes/functions.php:520
3638
  #: includes/functions.php:542 includes/functions.php:553
3639
  #: includes/functions.php:564 includes/functions.php:565
3640
  #: includes/functions.php:566 includes/functions.php:573
3641
  #: includes/functions.php:597 includes/functions.php:598
3642
  #: includes/functions.php:600 includes/functions.php:607
 
3643
  msgid "not changing?"
3644
  msgstr ""
3645
 
3646
- #: includes/functions.php:617 includes/functions.php:676
3647
- #: includes/functions.php:700 includes/functions.php:537
3648
  #: includes/functions.php:559 includes/functions.php:570
3649
  #: includes/functions.php:581 includes/functions.php:582
3650
  #: includes/functions.php:583 includes/functions.php:590
@@ -3659,11 +3928,12 @@ msgstr ""
3659
  #: includes/functions.php:673 includes/functions.php:674
3660
  #: includes/functions.php:676 includes/functions.php:683
3661
  #: includes/functions.php:697 includes/functions.php:698
3662
- #: includes/functions.php:700 includes/functions.php:707
 
3663
  msgid "Error interacting with database"
3664
  msgstr ""
3665
 
3666
- #: includes/functions.php:741 includes/functions.php:780
3667
  #: includes/functions.php:629 includes/functions.php:651
3668
  #: includes/functions.php:667 includes/functions.php:668
3669
  #: includes/functions.php:678 includes/functions.php:681
@@ -3674,121 +3944,191 @@ msgstr ""
3674
  #: includes/functions.php:737 includes/functions.php:738
3675
  #: includes/functions.php:739 includes/functions.php:741
3676
  #: includes/functions.php:748 includes/functions.php:753
3677
- #: includes/functions.php:777 includes/functions.php:778
3678
- #: includes/functions.php:780 includes/functions.php:787
 
3679
  msgid "Membership level not found."
3680
  msgstr ""
3681
 
3682
- #: includes/functions.php:1150 includes/functions.php:1100
3683
  #: includes/functions.php:1101 includes/functions.php:1118
3684
  #: includes/functions.php:1142 includes/functions.php:1143
3685
  #: includes/functions.php:1150 includes/functions.php:1157
 
3686
  msgid "No code was given to check."
3687
  msgstr ""
3688
 
3689
- #: includes/functions.php:1159 includes/functions.php:1050
3690
  #: includes/functions.php:1072 includes/functions.php:1088
3691
  #: includes/functions.php:1099 includes/functions.php:1102
3692
  #: includes/functions.php:1109 includes/functions.php:1110
3693
  #: includes/functions.php:1112 includes/functions.php:1113
3694
  #: includes/functions.php:1127 includes/functions.php:1151
3695
  #: includes/functions.php:1152 includes/functions.php:1159
3696
- #: includes/functions.php:1166
3697
  msgid "The discount code could not be found."
3698
  msgstr ""
3699
 
3700
- #: includes/functions.php:1174 includes/functions.php:1066
3701
  #: includes/functions.php:1088 includes/functions.php:1104
3702
  #: includes/functions.php:1115 includes/functions.php:1118
3703
  #: includes/functions.php:1124 includes/functions.php:1125
3704
  #: includes/functions.php:1128 includes/functions.php:1129
3705
  #: includes/functions.php:1142 includes/functions.php:1166
3706
  #: includes/functions.php:1167 includes/functions.php:1174
3707
- #: includes/functions.php:1181
3708
  #, php-format
3709
  msgid "This discount code goes into effect on %s."
3710
  msgstr ""
3711
 
3712
- #: includes/functions.php:1181 includes/functions.php:1075
3713
  #: includes/functions.php:1097 includes/functions.php:1113
3714
  #: includes/functions.php:1124 includes/functions.php:1127
3715
  #: includes/functions.php:1131 includes/functions.php:1132
3716
  #: includes/functions.php:1137 includes/functions.php:1138
3717
  #: includes/functions.php:1149 includes/functions.php:1173
3718
  #: includes/functions.php:1174 includes/functions.php:1181
3719
- #: includes/functions.php:1188
3720
  #, php-format
3721
  msgid "This discount code expired on %s."
3722
  msgstr ""
3723
 
3724
- #: includes/functions.php:1191 includes/functions.php:1087
3725
  #: includes/functions.php:1109 includes/functions.php:1125
3726
  #: includes/functions.php:1136 includes/functions.php:1139
3727
  #: includes/functions.php:1141 includes/functions.php:1142
3728
  #: includes/functions.php:1149 includes/functions.php:1150
3729
  #: includes/functions.php:1159 includes/functions.php:1183
3730
  #: includes/functions.php:1184 includes/functions.php:1191
3731
- #: includes/functions.php:1198
3732
  msgid "This discount code is no longer valid."
3733
  msgstr ""
3734
 
3735
- #: includes/functions.php:1204 includes/functions.php:1102
3736
  #: includes/functions.php:1124 includes/functions.php:1140
3737
  #: includes/functions.php:1151 includes/functions.php:1154
3738
  #: includes/functions.php:1155 includes/functions.php:1164
3739
  #: includes/functions.php:1165 includes/functions.php:1172
3740
  #: includes/functions.php:1196 includes/functions.php:1197
3741
  #: includes/functions.php:1204 includes/functions.php:1211
 
3742
  msgid "This discount code does not apply to this membership level."
3743
  msgstr ""
3744
 
3745
- #: includes/functions.php:1230 includes/functions.php:1110
3746
  #: includes/functions.php:1132 includes/functions.php:1148
3747
  #: includes/functions.php:1159 includes/functions.php:1162
3748
  #: includes/functions.php:1172 includes/functions.php:1180
3749
  #: includes/functions.php:1181 includes/functions.php:1182
3750
  #: includes/functions.php:1198 includes/functions.php:1222
3751
  #: includes/functions.php:1223 includes/functions.php:1230
3752
- #: includes/functions.php:1237
3753
  msgid "This discount code is okay."
3754
  msgstr ""
3755
 
3756
- #: includes/functions.php:1255 includes/functions.php:1134
3757
  #: includes/functions.php:1156 includes/functions.php:1172
3758
  #: includes/functions.php:1183 includes/functions.php:1186
3759
  #: includes/functions.php:1196 includes/functions.php:1205
3760
  #: includes/functions.php:1206 includes/functions.php:1223
3761
  #: includes/functions.php:1247 includes/functions.php:1248
3762
  #: includes/functions.php:1255 includes/functions.php:1262
 
3763
  msgid "and"
3764
  msgstr ""
3765
 
3766
- #: includes/functions.php:1450 includes/functions.php:1319
3767
  #: includes/functions.php:1341 includes/functions.php:1361
3768
  #: includes/functions.php:1372 includes/functions.php:1375
3769
  #: includes/functions.php:1385 includes/functions.php:1394
3770
  #: includes/functions.php:1395 includes/functions.php:1412
3771
  #: includes/functions.php:1436 includes/functions.php:1437
3772
  #: includes/functions.php:1450 includes/functions.php:1457
 
3773
  msgid "Sign Up for !!name!! Now"
3774
  msgstr ""
3775
 
3776
- #: includes/functions.php:1456 includes/functions.php:1325
3777
  #: includes/functions.php:1347 includes/functions.php:1367
3778
  #: includes/functions.php:1378 includes/functions.php:1381
3779
  #: includes/functions.php:1391 includes/functions.php:1400
3780
  #: includes/functions.php:1401 includes/functions.php:1418
3781
  #: includes/functions.php:1442 includes/functions.php:1443
3782
  #: includes/functions.php:1456 includes/functions.php:1463
 
3783
  msgid "Please specify a level id."
3784
  msgstr ""
3785
 
3786
- #: includes/init.php:235 includes/profile.php:39 includes/init.php:229
3787
- #: includes/init.php:232 includes/init.php:233 includes/profile.php:37
3788
- #: includes/profile.php:39
3789
  msgid "None"
3790
  msgstr ""
3791
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3792
  #: includes/localization.php:26 includes/localization.php:23
3793
  #: includes/localization.php:26
3794
  msgid "Day"
@@ -3840,11 +4180,11 @@ msgstr ""
3840
  msgid "Current Level"
3841
  msgstr ""
3842
 
3843
- #: includes/profile.php:54 includes/profile.php:54
3844
  msgid "Not paying."
3845
  msgstr ""
3846
 
3847
- #: includes/profile.php:64 includes/profile.php:64
3848
  msgid ""
3849
  "This will not change the subscription at the gateway unless the 'Cancel' "
3850
  "checkbox is selected below."
@@ -3872,136 +4212,152 @@ msgid ""
3872
  "register to read."
3873
  msgstr ""
3874
 
3875
- #: pages/billing.php:14 pages/billing.php:14
3876
  #, php-format
3877
  msgid "Logged in as <strong>%s</strong>."
3878
  msgstr ""
3879
 
3880
- #: pages/billing.php:14 pages/billing.php:14
3881
  msgid "logout"
3882
  msgstr ""
3883
 
3884
- #: pages/billing.php:16 pages/cancel.php:52 pages/invoice.php:109
3885
  #: pages/levels.php:13 shortcodes/pmpro_account.php:44
3886
  #: shortcodes/pmpro_account.php:123 pages/account.php:12 pages/account.php:18
3887
- #: pages/account.php:92 pages/billing.php:16 pages/cancel.php:52
3888
- #: pages/invoice.php:109 pages/levels.php:13 shortcodes/pmpro_account.php:44
3889
- #: shortcodes/pmpro_account.php:123
3890
  msgid "Level"
3891
  msgstr ""
3892
 
3893
- #: pages/billing.php:18 pages/account.php:14 pages/billing.php:18
 
3894
  msgid "Membership Fee"
3895
  msgstr ""
3896
 
3897
- #: pages/billing.php:22 pages/account.php:18 pages/billing.php:22
3898
- #: pages/levels.php:70
3899
  #, php-format
3900
  msgid "%s every %d %s."
3901
  msgstr ""
3902
 
3903
- #: pages/billing.php:24 pages/account.php:20 pages/billing.php:24
3904
- #: pages/levels.php:66
3905
  #, php-format
3906
  msgid "%s per %s."
3907
  msgstr ""
3908
 
3909
- #: pages/billing.php:33 pages/account.php:25 pages/account.php:29
3910
- #: pages/billing.php:29 pages/billing.php:33
3911
  msgid "Duration"
3912
  msgstr ""
3913
 
3914
- #: pages/billing.php:43 pages/billing.php:39 pages/billing.php:43
 
3915
  msgid ""
3916
  "Your payment subscription is managed by PayPal. Please <a href=\"http://www."
3917
  "paypal.com\">login to PayPal here</a> to update your billing information."
3918
  msgstr ""
3919
 
3920
- #: pages/billing.php:69 pages/checkout.php:309 pages/billing.php:65
3921
- #: pages/billing.php:69 pages/checkout.php:305 pages/checkout.php:307
3922
- #: pages/checkout.php:309 pages/checkout.php:321 pages/checkout.php:328
 
3923
  msgid "First Name"
3924
  msgstr ""
3925
 
3926
- #: pages/billing.php:73 pages/checkout.php:313 pages/billing.php:69
3927
- #: pages/billing.php:73 pages/checkout.php:309 pages/checkout.php:311
3928
- #: pages/checkout.php:313 pages/checkout.php:325 pages/checkout.php:332
 
3929
  msgid "Last Name"
3930
  msgstr ""
3931
 
3932
- #: pages/billing.php:77 pages/checkout.php:317 pages/billing.php:73
3933
- #: pages/billing.php:77 pages/checkout.php:313 pages/checkout.php:315
3934
- #: pages/checkout.php:317 pages/checkout.php:329 pages/checkout.php:336
 
3935
  msgid "Address 1"
3936
  msgstr ""
3937
 
3938
- #: pages/billing.php:81 pages/checkout.php:321 pages/billing.php:77
3939
- #: pages/billing.php:81 pages/checkout.php:317 pages/checkout.php:319
3940
- #: pages/checkout.php:321 pages/checkout.php:333 pages/checkout.php:340
 
3941
  msgid "Address 2"
3942
  msgstr ""
3943
 
3944
- #: pages/billing.php:91 pages/checkout.php:331 pages/billing.php:87
3945
- #: pages/billing.php:91 pages/checkout.php:327 pages/checkout.php:329
3946
- #: pages/checkout.php:331 pages/checkout.php:343 pages/checkout.php:350
 
3947
  msgid "City"
3948
  msgstr ""
3949
 
3950
- #: pages/billing.php:95 pages/checkout.php:335 pages/billing.php:91
3951
- #: pages/billing.php:95 pages/checkout.php:331 pages/checkout.php:333
3952
- #: pages/checkout.php:335 pages/checkout.php:347 pages/checkout.php:354
 
3953
  msgid "State"
3954
  msgstr ""
3955
 
3956
- #: pages/billing.php:99 pages/checkout.php:339 pages/billing.php:95
3957
- #: pages/billing.php:99 pages/checkout.php:335 pages/checkout.php:337
3958
- #: pages/checkout.php:339 pages/checkout.php:351 pages/checkout.php:358
 
3959
  msgid "Postal Code"
3960
  msgstr ""
3961
 
3962
- #: pages/billing.php:108 pages/checkout.php:348 pages/billing.php:104
3963
- #: pages/billing.php:108 pages/checkout.php:344 pages/checkout.php:346
3964
- #: pages/checkout.php:348 pages/checkout.php:360 pages/checkout.php:367
 
3965
  msgid "City, State Zip"
3966
  msgstr ""
3967
 
3968
- #: pages/billing.php:161 pages/checkout.php:401 pages/billing.php:157
3969
- #: pages/billing.php:161 pages/checkout.php:397 pages/checkout.php:399
3970
- #: pages/checkout.php:401 pages/checkout.php:413 pages/checkout.php:420
 
3971
  msgid "Country"
3972
  msgstr ""
3973
 
3974
- #: pages/billing.php:186 pages/checkout.php:426 pages/billing.php:182
3975
- #: pages/billing.php:186 pages/checkout.php:422 pages/checkout.php:424
3976
- #: pages/checkout.php:426 pages/checkout.php:438 pages/checkout.php:445
 
3977
  msgid "Phone"
3978
  msgstr ""
3979
 
3980
- #: pages/billing.php:197 pages/checkout.php:207 pages/checkout.php:440
3981
- #: pages/billing.php:193 pages/billing.php:197 pages/checkout.php:204
3982
- #: pages/checkout.php:207 pages/checkout.php:209 pages/checkout.php:436
3983
- #: pages/checkout.php:438 pages/checkout.php:440 pages/checkout.php:453
 
3984
  #: pages/checkout.php:460
3985
  msgid "E-mail Address"
3986
  msgstr ""
3987
 
3988
- #: pages/billing.php:201 pages/checkout.php:449 pages/billing.php:197
3989
- #: pages/billing.php:201 pages/checkout.php:445 pages/checkout.php:447
3990
- #: pages/checkout.php:449 pages/checkout.php:462 pages/checkout.php:469
 
3991
  msgid "Confirm E-mail"
3992
  msgstr ""
3993
 
3994
- #: pages/billing.php:221 pages/billing.php:217 pages/billing.php:221
 
3995
  msgid "Credit Card Information"
3996
  msgstr ""
3997
 
3998
- #: pages/billing.php:221 pages/billing.php:217 pages/billing.php:221
 
3999
  #, php-format
4000
  msgid "We accept %s"
4001
  msgstr ""
4002
 
4003
- #: pages/billing.php:344 pages/billing.php:309 pages/billing.php:313
4004
- #: pages/billing.php:344
4005
  msgid ""
4006
  "This subscription is not recurring. So you don't need to update your billing "
4007
  "information."
@@ -4037,114 +4393,119 @@ msgstr ""
4037
  msgid "Click here to go to the home page."
4038
  msgstr ""
4039
 
4040
- #: pages/checkout.php:26 pages/checkout.php:26 pages/checkout.php:27
4041
- #: pages/checkout.php:28
4042
  msgid ""
4043
  "Almost done. Review the membership information and pricing below then "
4044
  "<strong>click the \"Complete Payment\" button</strong> to finish your order."
4045
  msgstr ""
4046
 
4047
- #: pages/checkout.php:33 pages/checkout.php:33 pages/checkout.php:34
4048
- #: pages/checkout.php:35
4049
  msgid "change"
4050
  msgstr ""
4051
 
4052
- #: pages/checkout.php:41 pages/checkout.php:41 pages/checkout.php:42
4053
- #: pages/checkout.php:43
4054
  #, php-format
4055
  msgid "You have selected the <strong>%s</strong> membership level."
4056
  msgstr ""
4057
 
4058
- #: pages/checkout.php:51 pages/checkout.php:51 pages/checkout.php:53
 
4059
  #, php-format
4060
  msgid ""
4061
  "<p class=\"pmpro_level_discount_applied\">The <strong>%s</strong> code has "
4062
  "been applied to your order.</p>"
4063
  msgstr ""
4064
 
4065
- #: pages/checkout.php:62 services/applydiscountcode.php:89
4066
  #: pages/checkout.php:62 pages/checkout.php:63 pages/checkout.php:64
4067
- #: services/applydiscountcode.php:74 services/applydiscountcode.php:75
4068
- #: services/applydiscountcode.php:78 services/applydiscountcode.php:89
 
4069
  msgid "Click here to change your discount code"
4070
  msgstr ""
4071
 
4072
- #: pages/checkout.php:64 pages/checkout.php:64 pages/checkout.php:65
4073
- #: pages/checkout.php:66
4074
  msgid "Click here to enter your discount code"
4075
  msgstr ""
4076
 
4077
- #: pages/checkout.php:64 pages/checkout.php:64 pages/checkout.php:65
4078
- #: pages/checkout.php:66
4079
  msgid "Do you have a discount code?"
4080
  msgstr ""
4081
 
4082
- #: pages/checkout.php:163 pages/checkout.php:160 pages/checkout.php:163
4083
- #: pages/checkout.php:165
4084
  msgid "Account Information"
4085
  msgstr ""
4086
 
4087
- #: pages/checkout.php:163 pages/checkout.php:160 pages/checkout.php:163
4088
- #: pages/checkout.php:165
4089
  msgid "Already have an account?"
4090
  msgstr ""
4091
 
4092
- #: pages/checkout.php:163 pages/checkout.php:160 pages/checkout.php:163
4093
- #: pages/checkout.php:165
4094
  msgid "Log in here"
4095
  msgstr ""
4096
 
4097
- #: pages/checkout.php:189 pages/checkout.php:186 pages/checkout.php:189
4098
- #: pages/checkout.php:191
4099
  msgid "Confirm Password"
4100
  msgstr ""
4101
 
4102
- #: pages/checkout.php:216 pages/checkout.php:213 pages/checkout.php:216
4103
- #: pages/checkout.php:218
4104
  msgid "Confirm E-mail Address"
4105
  msgstr ""
4106
 
4107
- #: pages/checkout.php:235 pages/checkout.php:232 pages/checkout.php:235
4108
- #: pages/checkout.php:237
4109
  msgid "Full Name"
4110
  msgstr ""
4111
 
4112
- #: pages/checkout.php:236 pages/checkout.php:233 pages/checkout.php:236
4113
- #: pages/checkout.php:238
4114
  msgid "LEAVE THIS BLANK"
4115
  msgstr ""
4116
 
4117
- #: pages/checkout.php:260 pages/checkout.php:257 pages/checkout.php:260
4118
- #: pages/checkout.php:262
4119
  #, php-format
4120
  msgid ""
4121
  "You are logged in as <strong>%s</strong>. If you would like to use a "
4122
  "different account for this membership, <a href=\"%s\">log out now</a>."
4123
  msgstr ""
4124
 
4125
- #: pages/checkout.php:276 pages/checkout.php:276 pages/checkout.php:278
4126
- #: pages/checkout.php:292 pages/checkout.php:299
4127
  msgid "Choose your Payment Method"
4128
  msgstr ""
4129
 
4130
- #: pages/checkout.php:284 pages/checkout.php:284 pages/checkout.php:286
4131
- #: pages/checkout.php:300 pages/checkout.php:307
4132
  msgid "Check Out with a Credit Card Here"
4133
  msgstr ""
4134
 
4135
- #: pages/checkout.php:672 pages/checkout.php:277 pages/checkout.php:284
4136
  #: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
 
4137
  #, php-format
4138
  msgid "I agree to the %s"
4139
  msgstr ""
4140
 
4141
- #: pages/checkout.php:692 pages/checkout.php:667 pages/checkout.php:674
4142
  #: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
 
4143
  msgid "Complete Payment"
4144
  msgstr ""
4145
 
4146
- #: pages/checkout.php:714 pages/checkout.php:687 pages/checkout.php:694
4147
  #: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
 
4148
  msgid "Processing..."
4149
  msgstr ""
4150
 
@@ -4285,18 +4646,18 @@ msgstr ""
4285
  msgid "&larr; Return to Home"
4286
  msgstr ""
4287
 
4288
- #: paid-memberships-pro.php:116 adminpages/orders.php:398
4289
  #: adminpages/orders.php:448 paid-memberships-pro.php:115
4290
  #: paid-memberships-pro.php:116
4291
  msgid "Testing Only"
4292
  msgstr ""
4293
 
4294
- #: paid-memberships-pro.php:121 paid-memberships-pro.php:120
4295
  #: paid-memberships-pro.php:121
4296
  msgid "PayPal Payflow Pro/PayPal Pro"
4297
  msgstr ""
4298
 
4299
- #: paid-memberships-pro.php:126 paid-memberships-pro.php:125
4300
  #: paid-memberships-pro.php:126
4301
  msgid "Cybersource"
4302
  msgstr ""
@@ -4365,7 +4726,8 @@ msgstr ""
4365
  msgid "Error updating billing information."
4366
  msgstr ""
4367
 
4368
- #: preheaders/cancel.php:25 preheaders/cancel.php:24 preheaders/cancel.php:25
 
4369
  msgid "Your membership has been cancelled."
4370
  msgstr ""
4371
 
@@ -4385,10 +4747,8 @@ msgstr ""
4385
  msgid "Checkout: Payment Information"
4386
  msgstr ""
4387
 
4388
- #: preheaders/checkout.php:100 preheaders/checkout.php:99
4389
- #: preheaders/checkout.php:100 preheaders/checkout.php:102
4390
- #: preheaders/checkout.php:109
4391
- msgid "Set up Your Account"
4392
  msgstr ""
4393
 
4394
  #: preheaders/checkout.php:300 preheaders/checkout.php:300
@@ -4455,62 +4815,63 @@ msgstr ""
4455
  #: preheaders/checkout.php:665 preheaders/checkout.php:691
4456
  #: preheaders/checkout.php:709 preheaders/checkout.php:710
4457
  msgid ""
4458
- "Unknown error generating account. Please contact us to set up your membership."
 
4459
  msgstr ""
4460
 
4461
- #: preheaders/checkout.php:569 preheaders/checkout.php:550
4462
  #: preheaders/checkout.php:552 preheaders/checkout.php:569
4463
- #: preheaders/checkout.php:785 preheaders/checkout.php:792
4464
- #: preheaders/checkout.php:797 preheaders/checkout.php:825
4465
- #: preheaders/checkout.php:844 preheaders/checkout.php:859
4466
- #: preheaders/checkout.php:860
4467
  msgid ""
4468
  "Your payment was accepted, but there was an error setting up your account. "
4469
  "Please contact us."
4470
  msgstr ""
4471
 
4472
- #: preheaders/checkout.php:710 preheaders/checkout.php:691
4473
  #: preheaders/checkout.php:693 preheaders/checkout.php:710
4474
- #: preheaders/checkout.php:953 preheaders/checkout.php:960
4475
- #: preheaders/checkout.php:970 preheaders/checkout.php:983
4476
- #: preheaders/checkout.php:1030 preheaders/checkout.php:1045
4477
- #: preheaders/checkout.php:1046
4478
  msgid ""
4479
  "IMPORTANT: Something went wrong during membership creation. Your credit card "
4480
  "authorized, but we cancelled the order immediately. You should not try to "
4481
  "submit this form again. Please contact the site owner to fix this issue."
4482
  msgstr ""
4483
 
4484
- #: preheaders/checkout.php:713 preheaders/checkout.php:694
4485
  #: preheaders/checkout.php:696 preheaders/checkout.php:713
4486
- #: preheaders/checkout.php:956 preheaders/checkout.php:963
4487
- #: preheaders/checkout.php:973 preheaders/checkout.php:988
4488
- #: preheaders/checkout.php:1035 preheaders/checkout.php:1050
4489
- #: preheaders/checkout.php:1051
4490
  msgid ""
4491
  "IMPORTANT: Something went wrong during membership creation. Your credit card "
4492
  "was charged, but we couldn't assign your membership. You should not submit "
4493
  "this form again. Please contact the site owner to fix this issue."
4494
  msgstr ""
4495
 
4496
- #: preheaders/checkout.php:724 preheaders/checkout.php:705
4497
  #: preheaders/checkout.php:707 preheaders/checkout.php:724
4498
- #: preheaders/checkout.php:967 preheaders/checkout.php:974
4499
- #: preheaders/checkout.php:984 preheaders/checkout.php:1001
4500
- #: preheaders/checkout.php:1048 preheaders/checkout.php:1063
4501
- #: preheaders/checkout.php:1064
4502
  #, php-format
4503
  msgid ""
4504
- "You must <a href=\"%s\">set up a Payment Gateway</a> before any payments will "
4505
- "be processed."
4506
  msgstr ""
4507
 
4508
- #: preheaders/checkout.php:726 preheaders/checkout.php:707
4509
  #: preheaders/checkout.php:709 preheaders/checkout.php:726
4510
- #: preheaders/checkout.php:969 preheaders/checkout.php:976
4511
- #: preheaders/checkout.php:986 preheaders/checkout.php:1003
4512
- #: preheaders/checkout.php:1050 preheaders/checkout.php:1065
4513
- #: preheaders/checkout.php:1066
4514
  msgid "A Payment Gateway must be set up before any payments will be processed."
4515
  msgstr ""
4516
 
@@ -4623,6 +4984,14 @@ msgstr ""
4623
  msgid "Member Links"
4624
  msgstr ""
4625
 
 
 
 
 
 
 
 
 
4626
  #: adminpages/discountcodes.php:437
4627
  msgid "Billing Ammount"
4628
  msgstr ""
@@ -4665,6 +5034,15 @@ msgstr ""
4665
  msgid "every"
4666
  msgstr ""
4667
 
 
 
 
 
 
 
 
 
 
4668
  #: adminpages/memberslist.php:184 adminpages/memberslist.php:212
4669
  msgid "Never"
4670
  msgstr ""
@@ -4813,3 +5191,8 @@ msgstr ""
4813
  #, php-format
4814
  msgid "%s after %d %s."
4815
  msgstr ""
 
 
 
 
 
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: pmpro\n"
8
+ "POT-Creation-Date: 2015-08-04 10:23-0400\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: \n"
11
  "Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
 
16
+ #: adminpages/addons.php:21 adminpages/advancedsettings.php:5
17
+ #: adminpages/discountcodes.php:5 adminpages/emailsettings.php:5
18
+ #: adminpages/membershiplevels.php:5 adminpages/memberslist-csv.php:5
19
+ #: adminpages/memberslist.php:5 adminpages/orders-csv.php:5
20
+ #: adminpages/orders.php:5 adminpages/pagesettings.php:5
21
+ #: adminpages/paymentsettings.php:5 includes/license.php:36
22
  #: adminpages/addons.php:5 adminpages/advancedsettings.php:5
23
  #: adminpages/discountcodes.php:5 adminpages/emailsettings.php:5
24
  #: adminpages/membershiplevels.php:5 adminpages/memberslist-csv.php:5
25
  #: adminpages/memberslist.php:5 adminpages/orders-csv.php:5
26
  #: adminpages/orders.php:5 adminpages/pagesettings.php:5
27
+ #: adminpages/paymentsettings.php:5
 
 
 
 
 
28
  msgid "You do not have permissions to perform this action."
29
  msgstr ""
30
 
31
+ #: adminpages/addons.php:80 adminpages/admin_header.php:170
32
+ #: includes/adminpages.php:52 includes/adminpages.php:146
33
+ #: adminpages/admin_header.php:133 adminpages/admin_header.php:154
34
+ #: adminpages/admin_header.php:170 includes/adminpages.php:14
35
+ #: includes/adminpages.php:52 includes/adminpages.php:69
36
+ #: includes/adminpages.php:135 includes/adminpages.php:142
37
+ #: includes/adminpages.php:146
38
+ msgid "Add Ons"
39
  msgstr ""
40
 
41
+ #: adminpages/addons.php:87
42
+ #, php-format
43
+ msgid "Last checked on %s at %s."
44
+ msgstr ""
45
+
46
+ #: adminpages/addons.php:88
47
+ msgid "Check Again"
48
+ msgstr ""
49
+
50
+ #: adminpages/addons.php:92 adminpages/orders.php:605
51
+ #: adminpages/orders.php:605
52
+ msgid "All"
53
+ msgstr ""
54
+
55
+ #: adminpages/addons.php:93
56
+ msgid "Active"
57
+ msgstr ""
58
+
59
+ #: adminpages/addons.php:94
60
+ msgid "Inactive"
61
+ msgstr ""
62
+
63
+ #: adminpages/addons.php:95
64
+ msgid "Update Available"
65
+ msgstr ""
66
+
67
+ #: adminpages/addons.php:96
68
+ msgid "Not Installed"
69
+ msgstr ""
70
+
71
+ #: adminpages/addons.php:109
72
+ msgid "Add On Name"
73
+ msgstr ""
74
+
75
+ #: adminpages/addons.php:110
76
+ msgid "Type"
77
+ msgstr ""
78
+
79
+ #: adminpages/addons.php:111 adminpages/membershiplevels.php:300
80
+ #: adminpages/membershiplevels.php:296 adminpages/membershiplevels.php:298
81
+ #: adminpages/membershiplevels.php:300
82
+ msgid "Description"
83
+ msgstr ""
84
+
85
+ #: adminpages/addons.php:134
86
+ msgid "No Add Ons found."
87
+ msgstr ""
88
+
89
+ #: adminpages/addons.php:195 adminpages/addons.php:200
90
+ #: adminpages/addons.php:212
91
+ msgid "Install Now"
92
+ msgstr ""
93
+
94
+ #: adminpages/addons.php:201 adminpages/addons.php:207
95
+ #: adminpages/addons.php:213 adminpages/addons.php:219
96
+ msgid "Download"
97
+ msgstr ""
98
+
99
+ #: adminpages/addons.php:206 adminpages/addons.php:218
100
+ msgid "Update License"
101
+ msgstr ""
102
+
103
+ #: adminpages/addons.php:224
104
+ msgid "Deactivate"
105
+ msgstr ""
106
+
107
+ #: adminpages/addons.php:224
108
+ #, php-format
109
+ msgid "Deactivate %s"
110
+ msgstr ""
111
+
112
+ #: adminpages/addons.php:228
113
+ msgid "Activate"
114
+ msgstr ""
115
+
116
+ #: adminpages/addons.php:228
117
+ #, php-format
118
+ msgid "Activate %s"
119
+ msgstr ""
120
+
121
+ #: adminpages/addons.php:229
122
+ msgid "Delete"
123
+ msgstr ""
124
+
125
+ #: adminpages/addons.php:229
126
+ #, php-format
127
+ msgid "Delete %s"
128
+ msgstr ""
129
+
130
+ #: adminpages/addons.php:239
131
+ msgid "PMPro Free"
132
+ msgstr ""
133
+
134
+ #: adminpages/addons.php:241
135
+ msgid "PMPro Core"
136
+ msgstr ""
137
+
138
+ #: adminpages/addons.php:243
139
+ msgid "PMPro Plus"
140
+ msgstr ""
141
+
142
+ #: adminpages/addons.php:245
143
+ msgid "WordPress.org"
144
+ msgstr ""
145
+
146
+ #: adminpages/addons.php:247
147
+ msgid "N/A"
148
+ msgstr ""
149
+
150
+ #: adminpages/addons.php:256
151
+ #, php-format
152
+ msgid "Version %s"
153
+ msgstr ""
154
+
155
+ #: adminpages/addons.php:261
156
+ #, php-format
157
+ msgid "By %s"
158
+ msgstr ""
159
+
160
+ #: adminpages/addons.php:268
161
+ #, php-format
162
+ msgid "More information about %s"
163
+ msgstr ""
164
+
165
+ #: adminpages/addons.php:270
166
+ msgid "View details"
167
+ msgstr ""
168
+
169
+ #: adminpages/addons.php:275
170
+ msgid "Visit plugin site"
171
  msgstr ""
172
 
173
  #: adminpages/admin_header.php:25 adminpages/admin_header.php:25
254
  msgid "User Forum"
255
  msgstr ""
256
 
257
+ #: adminpages/admin_header.php:150 adminpages/membershiplevels.php:619
258
  #: adminpages/pagesettings.php:69 includes/adminpages.php:64
259
  #: includes/adminpages.php:65 includes/adminpages.php:111
260
  #: adminpages/admin_header.php:128 adminpages/admin_header.php:149
261
+ #: adminpages/admin_header.php:150 adminpages/membershiplevels.php:490
262
+ #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
263
+ #: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:526
264
+ #: adminpages/membershiplevels.php:569 adminpages/pagesettings.php:69
265
  #: includes/adminpages.php:44 includes/adminpages.php:64
266
  #: includes/adminpages.php:65 includes/adminpages.php:100
267
+ #: includes/adminpages.php:107 includes/adminpages.php:111
268
  msgid "Membership Levels"
269
  msgstr ""
270
 
271
  #: adminpages/admin_header.php:154 adminpages/pagesettings.php:120
272
  #: adminpages/admin_header.php:129 adminpages/admin_header.php:150
273
+ #: adminpages/admin_header.php:154 adminpages/pagesettings.php:92
274
+ #: adminpages/pagesettings.php:120
275
  msgid "Pages"
276
  msgstr ""
277
 
278
  #: adminpages/admin_header.php:158 adminpages/admin_header.php:130
279
+ #: adminpages/admin_header.php:151 adminpages/admin_header.php:158
280
  msgid "Payment Gateway &amp; SSL"
281
  msgstr ""
282
 
283
+ #: adminpages/admin_header.php:162 adminpages/memberslist.php:168
284
  #: shortcodes/pmpro_account.php:106 adminpages/admin_header.php:131
285
+ #: adminpages/admin_header.php:152 adminpages/admin_header.php:162
286
+ #: adminpages/memberslist.php:115 adminpages/memberslist.php:148
287
+ #: adminpages/memberslist.php:158 adminpages/memberslist.php:168
288
  #: pages/account.php:52 pages/account.php:56 pages/account.php:77
289
  #: shortcodes/pmpro_account.php:106
290
  msgid "Email"
291
  msgstr ""
292
 
293
  #: adminpages/admin_header.php:166 adminpages/admin_header.php:132
294
+ #: adminpages/admin_header.php:153 adminpages/admin_header.php:166
295
  msgid "Advanced"
296
  msgstr ""
297
 
 
 
 
 
 
 
 
 
298
  #: adminpages/advancedsettings.php:43 adminpages/advancedsettings.php:35
299
  #: adminpages/advancedsettings.php:42 adminpages/advancedsettings.php:43
300
  msgid "Your advanced settings have been updated."
327
  #: adminpages/advancedsettings.php:86 adminpages/advancedsettings.php:88
328
  #: includes/adminpages.php:13 includes/adminpages.php:51
329
  #: includes/adminpages.php:64 includes/adminpages.php:128
330
+ #: includes/adminpages.php:135 includes/adminpages.php:139
331
  msgid "Advanced Settings"
332
  msgstr ""
333
 
391
  msgid "Yes - Show excerpts."
392
  msgstr ""
393
 
394
+ #: adminpages/advancedsettings.php:144 adminpages/advancedsettings.php:144
395
  msgid "Hide Ads From Members?"
396
  msgstr ""
397
 
398
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
399
+ #: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:668
400
  #: adminpages/paymentsettings.php:210
401
+ #: classes/gateways/class.pmprogateway_stripe.php:174 includes/profile.php:105
402
  #: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
403
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:187
404
  #: adminpages/advancedsettings.php:194 adminpages/advancedsettings.php:199
406
  #: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:563
407
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
408
  #: adminpages/membershiplevels.php:578 adminpages/membershiplevels.php:598
409
+ #: adminpages/membershiplevels.php:658 adminpages/paymentsettings.php:210
410
+ #: adminpages/paymentsettings.php:414 adminpages/paymentsettings.php:429
411
+ #: adminpages/paymentsettings.php:434 adminpages/paymentsettings.php:436
412
+ #: adminpages/paymentsettings.php:454 adminpages/paymentsettings.php:459
413
+ #: adminpages/paymentsettings.php:461
414
+ #: classes/gateways/class.pmprogateway_stripe.php:173
415
+ #: classes/gateways/class.pmprogateway_stripe.php:174 includes/profile.php:101
416
  #: includes/profile.php:121 includes/profile.php:123
417
  msgid "No"
418
  msgstr ""
452
  msgid "multisite only"
453
  msgstr ""
454
 
455
+ #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:668
456
  #: adminpages/paymentsettings.php:211
457
+ #: classes/gateways/class.pmprogateway_stripe.php:175 includes/profile.php:106
458
  #: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
459
  #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:563
460
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
461
  #: adminpages/membershiplevels.php:578 adminpages/membershiplevels.php:598
462
+ #: adminpages/membershiplevels.php:658 adminpages/paymentsettings.php:211
463
+ #: adminpages/paymentsettings.php:415 adminpages/paymentsettings.php:424
464
+ #: adminpages/paymentsettings.php:430 adminpages/paymentsettings.php:435
465
+ #: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:455
466
+ #: adminpages/paymentsettings.php:460 adminpages/paymentsettings.php:462
467
+ #: classes/gateways/class.pmprogateway_stripe.php:174
468
+ #: classes/gateways/class.pmprogateway_stripe.php:175 includes/profile.php:102
469
  #: includes/profile.php:122 includes/profile.php:124
470
  msgid "Yes"
471
  msgstr ""
522
  msgid "selected"
523
  msgstr ""
524
 
525
+ #: adminpages/advancedsettings.php:368 adminpages/pagesettings.php:251
526
  #: adminpages/paymentsettings.php:238 adminpages/advancedsettings.php:284
527
  #: adminpages/advancedsettings.php:355 adminpages/advancedsettings.php:368
528
  #: adminpages/pagesettings.php:209 adminpages/pagesettings.php:223
529
+ #: adminpages/pagesettings.php:251 adminpages/pagesettings.php:254
530
+ #: adminpages/paymentsettings.php:238 adminpages/paymentsettings.php:485
531
+ #: adminpages/paymentsettings.php:526 adminpages/paymentsettings.php:532
532
+ #: adminpages/paymentsettings.php:534
533
  msgid "Save Settings"
534
  msgstr ""
535
 
598
  msgstr ""
599
 
600
  #: adminpages/discountcodes.php:310 adminpages/discountcodes.php:586
601
+ #: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:637
602
+ #: adminpages/memberslist.php:164 adminpages/orders.php:910
603
  #: adminpages/reports/login.php:142 adminpages/discountcodes.php:306
604
  #: adminpages/discountcodes.php:309 adminpages/discountcodes.php:310
605
  #: adminpages/discountcodes.php:547 adminpages/discountcodes.php:557
606
  #: adminpages/discountcodes.php:585 adminpages/discountcodes.php:586
607
  #: adminpages/membershiplevels.php:284 adminpages/membershiplevels.php:286
608
+ #: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:505
609
+ #: adminpages/membershiplevels.php:511 adminpages/membershiplevels.php:513
610
+ #: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:541
611
+ #: adminpages/membershiplevels.php:583 adminpages/memberslist.php:111
612
  #: adminpages/memberslist.php:144 adminpages/memberslist.php:154
613
+ #: adminpages/memberslist.php:164 adminpages/orders.php:597
614
+ #: adminpages/orders.php:900 adminpages/orders.php:910
615
  #: adminpages/reports/login.php:140 adminpages/reports/login.php:142
616
  msgid "ID"
617
  msgstr ""
624
  msgstr ""
625
 
626
  #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:587
627
+ #: adminpages/orders.php:265 adminpages/orders.php:911
628
  #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
629
  #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:548
630
  #: adminpages/discountcodes.php:558 adminpages/discountcodes.php:586
631
  #: adminpages/discountcodes.php:587 adminpages/orders.php:215
632
  #: adminpages/orders.php:265 adminpages/orders.php:598
633
+ #: adminpages/orders.php:901 adminpages/orders.php:911
634
  msgid "Code"
635
  msgstr ""
636
 
641
 
642
  #: adminpages/discountcodes.php:371
643
  #: classes/gateways/class.pmprogateway_braintree.php:321
644
+ #: classes/gateways/class.pmprogateway_stripe.php:455 pages/billing.php:262
645
+ #: pages/checkout.php:562 adminpages/discountcodes.php:367
646
  #: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
647
  #: classes/gateways/class.pmprogateway_braintree.php:308
648
  #: classes/gateways/class.pmprogateway_braintree.php:321
649
+ #: classes/gateways/class.pmprogateway_stripe.php:454
650
+ #: classes/gateways/class.pmprogateway_stripe.php:455 pages/billing.php:249
651
+ #: pages/billing.php:253 pages/billing.php:262 pages/checkout.php:508
652
+ #: pages/checkout.php:524 pages/checkout.php:525 pages/checkout.php:532
653
+ #: pages/checkout.php:553 pages/checkout.php:562
654
  msgid "Expiration Date"
655
  msgstr ""
656
 
672
  msgid "Which Levels Will This Code Apply To?"
673
  msgstr ""
674
 
675
+ #: adminpages/discountcodes.php:431 adminpages/membershiplevels.php:342
676
  #: adminpages/discountcodes.php:427 adminpages/discountcodes.php:430
677
  #: adminpages/discountcodes.php:431 adminpages/membershiplevels.php:337
678
+ #: adminpages/membershiplevels.php:339 adminpages/membershiplevels.php:341
679
+ #: adminpages/membershiplevels.php:507 adminpages/membershiplevels.php:513
680
+ #: adminpages/membershiplevels.php:515 adminpages/membershiplevels.php:542
681
+ #: pages/levels.php:14
682
  msgid "Initial Payment"
683
  msgstr ""
684
 
685
+ #: adminpages/discountcodes.php:442 adminpages/membershiplevels.php:353
686
  #: adminpages/discountcodes.php:428 adminpages/discountcodes.php:431
687
  #: adminpages/discountcodes.php:441 adminpages/discountcodes.php:442
688
  #: adminpages/membershiplevels.php:338 adminpages/membershiplevels.php:340
689
+ #: adminpages/membershiplevels.php:350 adminpages/membershiplevels.php:352
690
  msgid "The initial amount collected at registration."
691
  msgstr ""
692
 
693
+ #: adminpages/discountcodes.php:447 adminpages/membershiplevels.php:357
694
  #: adminpages/discountcodes.php:432 adminpages/discountcodes.php:435
695
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:447
696
  #: adminpages/membershiplevels.php:342 adminpages/membershiplevels.php:344
697
+ #: adminpages/membershiplevels.php:354 adminpages/membershiplevels.php:356
698
  msgid "Recurring Subscription"
699
  msgstr ""
700
 
701
+ #: adminpages/discountcodes.php:448 adminpages/membershiplevels.php:358
702
  #: adminpages/discountcodes.php:433 adminpages/discountcodes.php:436
703
  #: adminpages/discountcodes.php:447 adminpages/discountcodes.php:448
704
  #: adminpages/membershiplevels.php:343 adminpages/membershiplevels.php:345
705
+ #: adminpages/membershiplevels.php:355 adminpages/membershiplevels.php:357
706
  msgid "Check if this level has a recurring subscription payment."
707
  msgstr ""
708
 
709
+ #: adminpages/discountcodes.php:452 adminpages/membershiplevels.php:362
710
  #: adminpages/discountcodes.php:440 adminpages/discountcodes.php:451
711
  #: adminpages/discountcodes.php:452 adminpages/membershiplevels.php:347
712
  #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:359
713
+ #: adminpages/membershiplevels.php:361
714
  msgid "Billing Amount"
715
  msgstr ""
716
 
717
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
718
+ #: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:480
719
+ #: classes/gateways/class.pmprogateway_stripe.php:522
720
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
721
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
722
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
723
  #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
724
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:376
725
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
726
+ #: adminpages/membershiplevels.php:477 adminpages/membershiplevels.php:479
727
  #: classes/gateways/class.pmprogateway_stripe.php:521
728
+ #: classes/gateways/class.pmprogateway_stripe.php:522
729
  msgid "Day(s)"
730
  msgstr ""
731
 
732
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
733
+ #: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:480
734
+ #: classes/gateways/class.pmprogateway_stripe.php:522
735
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
736
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
737
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
738
  #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
739
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:376
740
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
741
+ #: adminpages/membershiplevels.php:477 adminpages/membershiplevels.php:479
742
  #: classes/gateways/class.pmprogateway_stripe.php:521
743
+ #: classes/gateways/class.pmprogateway_stripe.php:522
744
  msgid "Month(s)"
745
  msgstr ""
746
 
747
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
748
+ #: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:480
749
+ #: classes/gateways/class.pmprogateway_stripe.php:522
750
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
751
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
752
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
753
  #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
754
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:376
755
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
756
+ #: adminpages/membershiplevels.php:477 adminpages/membershiplevels.php:479
757
  #: classes/gateways/class.pmprogateway_stripe.php:521
758
+ #: classes/gateways/class.pmprogateway_stripe.php:522
759
  msgid "Week(s)"
760
  msgstr ""
761
 
762
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
763
+ #: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:480
764
+ #: classes/gateways/class.pmprogateway_stripe.php:522
765
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
766
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
767
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
768
  #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
769
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:376
770
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
771
+ #: adminpages/membershiplevels.php:477 adminpages/membershiplevels.php:479
772
  #: classes/gateways/class.pmprogateway_stripe.php:521
773
+ #: classes/gateways/class.pmprogateway_stripe.php:522
774
  msgid "Year(s)"
775
  msgstr ""
776
 
777
+ #: adminpages/discountcodes.php:475 adminpages/membershiplevels.php:386
778
  #: adminpages/discountcodes.php:451 adminpages/discountcodes.php:454
779
  #: adminpages/discountcodes.php:474 adminpages/discountcodes.php:475
780
  #: adminpages/membershiplevels.php:362 adminpages/membershiplevels.php:364
781
+ #: adminpages/membershiplevels.php:383 adminpages/membershiplevels.php:385
782
  msgid "The amount to be billed one cycle after the initial payment."
783
  msgstr ""
784
 
785
+ #: adminpages/discountcodes.php:480 adminpages/membershiplevels.php:404
786
  #: adminpages/discountcodes.php:456 adminpages/discountcodes.php:459
787
  #: adminpages/discountcodes.php:479 adminpages/discountcodes.php:480
788
  #: adminpages/membershiplevels.php:380 adminpages/membershiplevels.php:382
789
+ #: adminpages/membershiplevels.php:401 adminpages/membershiplevels.php:403
790
  msgid "Billing Cycle Limit"
791
  msgstr ""
792
 
793
+ #: adminpages/discountcodes.php:483 adminpages/membershiplevels.php:408
794
  #: adminpages/discountcodes.php:459 adminpages/discountcodes.php:462
795
  #: adminpages/discountcodes.php:482 adminpages/discountcodes.php:483
796
  #: adminpages/membershiplevels.php:384 adminpages/membershiplevels.php:386
797
+ #: adminpages/membershiplevels.php:405 adminpages/membershiplevels.php:407
798
  msgid ""
799
  "The <strong>total</strong> number of recurring billing cycles for this "
800
  "level, including the trial period (if applicable) but not including the "
801
  "initial payment. Set to zero if membership is indefinite."
802
  msgstr ""
803
 
804
+ #: adminpages/discountcodes.php:488 adminpages/membershiplevels.php:417
805
  #: adminpages/discountcodes.php:464 adminpages/discountcodes.php:467
806
  #: adminpages/discountcodes.php:487 adminpages/discountcodes.php:488
807
  #: adminpages/membershiplevels.php:393 adminpages/membershiplevels.php:395
808
+ #: adminpages/membershiplevels.php:414 adminpages/membershiplevels.php:416
809
  msgid "Custom Trial"
810
  msgstr ""
811
 
812
+ #: adminpages/discountcodes.php:489 adminpages/membershiplevels.php:419
813
  #: adminpages/discountcodes.php:465 adminpages/discountcodes.php:468
814
  #: adminpages/discountcodes.php:488 adminpages/discountcodes.php:489
815
  #: adminpages/membershiplevels.php:394 adminpages/membershiplevels.php:395
816
  #: adminpages/membershiplevels.php:397 adminpages/membershiplevels.php:416
817
+ #: adminpages/membershiplevels.php:418
818
  msgid "Check to add a custom trial period."
819
  msgstr ""
820
 
821
+ #: adminpages/discountcodes.php:493 adminpages/membershiplevels.php:428
822
  #: adminpages/discountcodes.php:469 adminpages/discountcodes.php:472
823
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:493
824
  #: adminpages/membershiplevels.php:398 adminpages/membershiplevels.php:404
825
  #: adminpages/membershiplevels.php:406 adminpages/membershiplevels.php:425
826
+ #: adminpages/membershiplevels.php:427
827
  msgid "Trial Billing Amount"
828
  msgstr ""
829
 
830
+ #: adminpages/discountcodes.php:504 adminpages/membershiplevels.php:439
831
  #: adminpages/discountcodes.php:472 adminpages/discountcodes.php:475
832
  #: adminpages/discountcodes.php:503 adminpages/discountcodes.php:504
833
  #: adminpages/membershiplevels.php:401 adminpages/membershiplevels.php:407
834
  #: adminpages/membershiplevels.php:409 adminpages/membershiplevels.php:436
835
+ #: adminpages/membershiplevels.php:438
836
  msgid "for the first"
837
  msgstr ""
838
 
839
+ #: adminpages/discountcodes.php:506 adminpages/membershiplevels.php:441
840
  #: adminpages/discountcodes.php:474 adminpages/discountcodes.php:477
841
  #: adminpages/discountcodes.php:505 adminpages/discountcodes.php:506
842
  #: adminpages/membershiplevels.php:403 adminpages/membershiplevels.php:409
843
  #: adminpages/membershiplevels.php:411 adminpages/membershiplevels.php:438
844
+ #: adminpages/membershiplevels.php:440
845
  msgid "subscription payments"
846
  msgstr ""
847
 
848
+ #: adminpages/discountcodes.php:511 adminpages/membershiplevels.php:470
849
  #: adminpages/discountcodes.php:479 adminpages/discountcodes.php:482
850
  #: adminpages/discountcodes.php:510 adminpages/discountcodes.php:511
851
  #: adminpages/membershiplevels.php:431 adminpages/membershiplevels.php:437
852
  #: adminpages/membershiplevels.php:439 adminpages/membershiplevels.php:466
853
+ #: adminpages/membershiplevels.php:467 adminpages/membershiplevels.php:469
854
  msgid "Membership Expiration"
855
  msgstr ""
856
 
857
+ #: adminpages/discountcodes.php:512 adminpages/membershiplevels.php:471
858
  #: adminpages/discountcodes.php:483 adminpages/discountcodes.php:511
859
  #: adminpages/discountcodes.php:512 adminpages/membershiplevels.php:432
860
  #: adminpages/membershiplevels.php:438 adminpages/membershiplevels.php:440
861
  #: adminpages/membershiplevels.php:467 adminpages/membershiplevels.php:468
862
+ #: adminpages/membershiplevels.php:470
863
  msgid "Check this to set when membership access expires."
864
  msgstr ""
865
 
866
+ #: adminpages/discountcodes.php:516 adminpages/membershiplevels.php:475
867
  #: adminpages/discountcodes.php:484 adminpages/discountcodes.php:487
868
  #: adminpages/discountcodes.php:515 adminpages/discountcodes.php:516
869
  #: adminpages/membershiplevels.php:436 adminpages/membershiplevels.php:442
870
  #: adminpages/membershiplevels.php:444 adminpages/membershiplevels.php:471
871
+ #: adminpages/membershiplevels.php:472 adminpages/membershiplevels.php:474
872
  msgid "Expires In"
873
  msgstr ""
874
 
875
+ #: adminpages/discountcodes.php:529 adminpages/membershiplevels.php:488
876
  #: adminpages/discountcodes.php:500 adminpages/discountcodes.php:528
877
  #: adminpages/discountcodes.php:529 adminpages/membershiplevels.php:449
878
  #: adminpages/membershiplevels.php:455 adminpages/membershiplevels.php:457
879
  #: adminpages/membershiplevels.php:484 adminpages/membershiplevels.php:485
880
+ #: adminpages/membershiplevels.php:487
881
  msgid ""
882
  "Set the duration of membership access. Note that the any future payments "
883
  "(recurring subscription, if any) will be cancelled when the membership "
909
  msgid "Starts"
910
  msgstr ""
911
 
912
+ #: adminpages/discountcodes.php:589 adminpages/memberslist.php:179
913
+ #: adminpages/reports/login.php:147 includes/profile.php:102
914
  #: adminpages/discountcodes.php:550 adminpages/discountcodes.php:560
915
  #: adminpages/discountcodes.php:588 adminpages/discountcodes.php:589
916
  #: adminpages/memberslist.php:121 adminpages/memberslist.php:159
917
+ #: adminpages/memberslist.php:169 adminpages/memberslist.php:179
918
+ #: adminpages/reports/login.php:145 adminpages/reports/login.php:147
919
+ #: includes/profile.php:98 includes/profile.php:118 includes/profile.php:120
920
  msgid "Expires"
921
  msgstr ""
922
 
940
  "select customers."
941
  msgstr ""
942
 
943
+ #: adminpages/discountcodes.php:649 adminpages/membershiplevels.php:670
944
+ #: adminpages/orders.php:992 adminpages/discountcodes.php:614
945
  #: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
946
  #: adminpages/discountcodes.php:648 adminpages/membershiplevels.php:564
947
  #: adminpages/membershiplevels.php:570 adminpages/membershiplevels.php:572
948
  #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:599
949
+ #: adminpages/membershiplevels.php:660 adminpages/orders.php:658
950
+ #: adminpages/orders.php:961 adminpages/orders.php:979
951
+ #: adminpages/orders.php:989
952
  msgid "edit"
953
  msgstr ""
954
 
955
+ #: adminpages/discountcodes.php:652 adminpages/discountcodes.php:617
956
  #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
957
  #: adminpages/discountcodes.php:651
958
  #, php-format
962
  "code anymore."
963
  msgstr ""
964
 
965
+ #: adminpages/discountcodes.php:652 adminpages/membershiplevels.php:670
966
+ #: adminpages/orders.php:998 adminpages/discountcodes.php:617
967
  #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
968
  #: adminpages/discountcodes.php:651 adminpages/membershiplevels.php:566
969
  #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
970
  #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
971
+ #: adminpages/membershiplevels.php:660 adminpages/orders.php:664
972
+ #: adminpages/orders.php:967 adminpages/orders.php:985
973
+ #: adminpages/orders.php:995
974
  msgid "delete"
975
  msgstr ""
976
 
979
  #: adminpages/emailsettings.php:69 includes/adminpages.php:12
980
  #: includes/adminpages.php:50 includes/adminpages.php:59
981
  #: includes/adminpages.php:121 includes/adminpages.php:128
982
+ #: includes/adminpages.php:132
983
  msgid "Email Settings"
984
  msgstr ""
985
 
1084
  msgstr ""
1085
 
1086
  #: adminpages/membershiplevels.php:120 adminpages/membershiplevels.php:118
1087
+ #: adminpages/membershiplevels.php:120
1088
  msgid "Membership level updated successfully."
1089
  msgstr ""
1090
 
1091
  #: adminpages/membershiplevels.php:126 adminpages/membershiplevels.php:124
1092
+ #: adminpages/membershiplevels.php:126
1093
  msgid "Error updating membership level."
1094
  msgstr ""
1095
 
1096
  #: adminpages/membershiplevels.php:143 adminpages/membershiplevels.php:141
1097
+ #: adminpages/membershiplevels.php:143
1098
  msgid "Membership level added successfully."
1099
  msgstr ""
1100
 
1101
  #: adminpages/membershiplevels.php:148 adminpages/membershiplevels.php:146
1102
+ #: adminpages/membershiplevels.php:148
1103
  msgid "Error adding membership level."
1104
  msgstr ""
1105
 
1106
  #: adminpages/membershiplevels.php:183 adminpages/membershiplevels.php:179
1107
+ #: adminpages/membershiplevels.php:181 adminpages/membershiplevels.php:183
1108
  #, php-format
1109
  msgid ""
1110
  "There was an error canceling the subscription for user with ID=%d. You will "
1113
  msgstr ""
1114
 
1115
  #: adminpages/membershiplevels.php:186 adminpages/membershiplevels.php:182
1116
+ #: adminpages/membershiplevels.php:184 adminpages/membershiplevels.php:186
1117
  msgid "Last Invoice"
1118
  msgstr ""
1119
 
1120
  #: adminpages/membershiplevels.php:200 adminpages/membershiplevels.php:196
1121
+ #: adminpages/membershiplevels.php:198 adminpages/membershiplevels.php:200
1122
  msgid "Membership level deleted successfully."
1123
  msgstr ""
1124
 
1125
  #: adminpages/membershiplevels.php:205 adminpages/membershiplevels.php:211
1126
  #: adminpages/membershiplevels.php:201 adminpages/membershiplevels.php:203
1127
+ #: adminpages/membershiplevels.php:205 adminpages/membershiplevels.php:207
1128
+ #: adminpages/membershiplevels.php:209 adminpages/membershiplevels.php:211
1129
  msgid "Error deleting membership level."
1130
  msgstr ""
1131
 
1132
  #: adminpages/membershiplevels.php:226 adminpages/membershiplevels.php:222
1133
+ #: adminpages/membershiplevels.php:224 adminpages/membershiplevels.php:226
1134
  msgid "Edit Membership Level"
1135
  msgstr ""
1136
 
1137
  #: adminpages/membershiplevels.php:228 adminpages/membershiplevels.php:224
1138
+ #: adminpages/membershiplevels.php:226 adminpages/membershiplevels.php:228
1139
  msgid "Add New Membership Level"
1140
  msgstr ""
1141
 
1142
+ #: adminpages/membershiplevels.php:295 adminpages/membershiplevels.php:638
1143
  #: adminpages/reports/login.php:144 adminpages/membershiplevels.php:291
1144
+ #: adminpages/membershiplevels.php:293 adminpages/membershiplevels.php:295
1145
+ #: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:512
1146
+ #: adminpages/membershiplevels.php:514 adminpages/membershiplevels.php:541
1147
+ #: adminpages/membershiplevels.php:542 adminpages/membershiplevels.php:584
1148
  #: adminpages/reports/login.php:142 adminpages/reports/login.php:144
1149
  msgid "Name"
1150
  msgstr ""
1151
 
 
 
 
 
 
1152
  #: adminpages/membershiplevels.php:318 adminpages/membershiplevels.php:314
1153
+ #: adminpages/membershiplevels.php:316 adminpages/membershiplevels.php:318
1154
  msgid "Confirmation Message"
1155
  msgstr ""
1156
 
1157
+ #: adminpages/membershiplevels.php:338 adminpages/membershiplevels.php:639
1158
  #: adminpages/membershiplevels.php:333 adminpages/membershiplevels.php:335
1159
+ #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:543
1160
+ #: adminpages/membershiplevels.php:585
1161
  msgid "Billing Details"
1162
  msgstr ""
1163
 
1164
+ #: adminpages/membershiplevels.php:373
1165
+ #: classes/gateways/class.pmprogateway_stripe.php:620
1166
  #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
1167
+ #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
1168
  #: classes/gateways/class.pmprogateway_stripe.php:619
1169
+ #: classes/gateways/class.pmprogateway_stripe.php:620
1170
  msgid "per"
1171
  msgstr ""
1172
 
1173
+ #: adminpages/membershiplevels.php:388 adminpages/membershiplevels.php:366
1174
+ #: adminpages/membershiplevels.php:385 adminpages/membershiplevels.php:387
1175
  msgid ""
1176
  "Stripe integration currently only supports billing periods of \"Week\", "
1177
  "\"Month\" or \"Year\"."
1178
  msgstr ""
1179
 
1180
+ #: adminpages/membershiplevels.php:390 adminpages/membershiplevels.php:366
1181
  #: adminpages/membershiplevels.php:368 adminpages/membershiplevels.php:387
1182
+ #: adminpages/membershiplevels.php:389
1183
  msgid ""
1184
  "Braintree integration currently only supports billing periods of \"Month\" "
1185
  "or \"Year\"."
1186
  msgstr ""
1187
 
1188
+ #: adminpages/membershiplevels.php:392 adminpages/membershiplevels.php:368
1189
  #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:389
1190
+ #: adminpages/membershiplevels.php:391
1191
  msgid ""
1192
  "Payflow integration currently only supports billing frequencies of 1 and "
1193
  "billing periods of \"Week\", \"Month\" or \"Year\"."
1194
  msgstr ""
1195
 
1196
+ #: adminpages/membershiplevels.php:396 adminpages/membershiplevels.php:372
1197
  #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:393
1198
+ #: adminpages/membershiplevels.php:395
1199
  msgid ""
1200
  "After saving this level, make note of the ID and create a \"Plan\" in your "
1201
  "Braintree dashboard with the same settings and the \"Plan ID\" set to "
1202
  "<em>pmpro_#</em>, where # is the level ID."
1203
  msgstr ""
1204
 
1205
+ #: adminpages/membershiplevels.php:396 adminpages/membershiplevels.php:398
1206
  #: classes/gateways/class.pmprogateway_cybersource.php:101
1207
  #: classes/gateways/class.pmprogateway_paypal.php:118
1208
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:133
1209
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
1210
  #: adminpages/membershiplevels.php:372 adminpages/membershiplevels.php:374
1211
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:393
1212
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:397
1213
+ #: adminpages/paymentsettings.php:170 adminpages/paymentsettings.php:174
1214
+ #: adminpages/paymentsettings.php:179
1215
  #: classes/gateways/class.pmprogateway_cybersource.php:101
1216
  #: classes/gateways/class.pmprogateway_paypal.php:118
1217
  #: classes/gateways/class.pmprogateway_paypalexpress.php:123
1219
  msgid "Note"
1220
  msgstr ""
1221
 
1222
+ #: adminpages/membershiplevels.php:398 adminpages/membershiplevels.php:374
1223
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:395
1224
+ #: adminpages/membershiplevels.php:397
1225
  msgid ""
1226
  "You will need to create a \"Plan\" in your Braintree dashboard with the same "
1227
  "settings and the \"Plan ID\" set to"
1228
  msgstr ""
1229
 
1230
+ #: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:386
1231
  #: adminpages/membershiplevels.php:388 adminpages/membershiplevels.php:407
1232
+ #: adminpages/membershiplevels.php:409
1233
  msgid ""
1234
  "Stripe integration currently does not support billing limits. You can still "
1235
  "set an expiration date below."
1236
  msgstr ""
1237
 
1238
+ #: adminpages/membershiplevels.php:422 adminpages/membershiplevels.php:398
1239
  #: adminpages/membershiplevels.php:400 adminpages/membershiplevels.php:419
1240
+ #: adminpages/membershiplevels.php:421
1241
  msgid ""
1242
  "2Checkout integration does not support custom trials. You can do one period "
1243
  "trials by setting an initial payment different from the billing amount."
1244
  msgstr ""
1245
 
1246
+ #: adminpages/membershiplevels.php:444 adminpages/membershiplevels.php:406
1247
  #: adminpages/membershiplevels.php:412 adminpages/membershiplevels.php:414
1248
+ #: adminpages/membershiplevels.php:441 adminpages/membershiplevels.php:443
1249
  msgid ""
1250
  "Stripe integration currently does not support trial amounts greater than $0."
1251
  msgstr ""
1252
 
1253
+ #: adminpages/membershiplevels.php:448 adminpages/membershiplevels.php:410
1254
  #: adminpages/membershiplevels.php:416 adminpages/membershiplevels.php:418
1255
+ #: adminpages/membershiplevels.php:445 adminpages/membershiplevels.php:447
1256
  msgid ""
1257
  "Braintree integration currently does not support trial amounts greater than "
1258
  "$0."
1259
  msgstr ""
1260
 
1261
+ #: adminpages/membershiplevels.php:452 adminpages/membershiplevels.php:414
1262
  #: adminpages/membershiplevels.php:420 adminpages/membershiplevels.php:422
1263
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:451
1264
  msgid ""
1265
  "Payflow integration currently does not support trial amounts greater than $0."
1266
  msgstr ""
1267
 
1268
+ #: adminpages/membershiplevels.php:461 adminpages/membershiplevels.php:422
1269
  #: adminpages/membershiplevels.php:428 adminpages/membershiplevels.php:430
1270
  #: adminpages/membershiplevels.php:457 adminpages/membershiplevels.php:458
1271
+ #: adminpages/membershiplevels.php:460
1272
  msgid "Other Settings"
1273
  msgstr ""
1274
 
1275
+ #: adminpages/membershiplevels.php:465 adminpages/membershiplevels.php:426
1276
  #: adminpages/membershiplevels.php:432 adminpages/membershiplevels.php:434
1277
  #: adminpages/membershiplevels.php:461 adminpages/membershiplevels.php:462
1278
+ #: adminpages/membershiplevels.php:464
1279
  msgid "Disable New Signups"
1280
  msgstr ""
1281
 
1282
+ #: adminpages/membershiplevels.php:466 adminpages/membershiplevels.php:427
1283
  #: adminpages/membershiplevels.php:433 adminpages/membershiplevels.php:435
1284
  #: adminpages/membershiplevels.php:462 adminpages/membershiplevels.php:463
1285
+ #: adminpages/membershiplevels.php:465
1286
  msgid ""
1287
  "Check to hide this level from the membership levels page and disable "
1288
  "registration."
1289
  msgstr ""
1290
 
1291
+ #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:457
1292
  #: adminpages/membershiplevels.php:463 adminpages/membershiplevels.php:465
1293
  #: adminpages/membershiplevels.php:492 adminpages/membershiplevels.php:493
1294
+ #: adminpages/membershiplevels.php:495
1295
  msgid "Content Settings"
1296
  msgstr ""
1297
 
1298
+ #: adminpages/membershiplevels.php:500 adminpages/membershiplevels.php:461
1299
  #: adminpages/membershiplevels.php:467 adminpages/membershiplevels.php:469
1300
  #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:497
1301
+ #: adminpages/membershiplevels.php:499
1302
  msgid "Categories"
1303
  msgstr ""
1304
 
1305
+ #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:516
1306
  msgid "Save Level"
1307
  msgstr ""
1308
 
1309
+ #: adminpages/membershiplevels.php:518 adminpages/orders.php:561
1310
+ #: pages/billing.php:339 pages/cancel.php:71 shortcodes/pmpro_account.php:70
1311
+ #: adminpages/membershiplevels.php:517 adminpages/orders.php:511
1312
+ #: adminpages/orders.php:561 pages/account.php:44 pages/billing.php:295
1313
+ #: pages/billing.php:299 pages/billing.php:330 pages/billing.php:339
1314
  #: pages/cancel.php:71 shortcodes/pmpro_account.php:70
1315
  msgid "Cancel"
1316
  msgstr ""
1317
 
1318
+ #: adminpages/membershiplevels.php:619 adminpages/membershiplevels.php:490
1319
  #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
1320
  #: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:526
1321
+ #: adminpages/membershiplevels.php:569
1322
  msgid "Add New Level"
1323
  msgstr ""
1324
 
1325
+ #: adminpages/membershiplevels.php:622 adminpages/membershiplevels.php:625
1326
  #: adminpages/membershiplevels.php:493 adminpages/membershiplevels.php:496
1327
  #: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:501
1328
  #: adminpages/membershiplevels.php:502 adminpages/membershiplevels.php:504
1329
  #: adminpages/membershiplevels.php:528 adminpages/membershiplevels.php:529
1330
  #: adminpages/membershiplevels.php:531 adminpages/membershiplevels.php:532
1331
+ #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:575
1332
  msgid "Search Levels"
1333
  msgstr ""
1334
 
1335
+ #: adminpages/membershiplevels.php:631 adminpages/membershiplevels.php:579
1336
  msgid "Drag and drop membership levels to reorder them on the Levels page."
1337
  msgstr ""
1338
 
1339
+ #: adminpages/membershiplevels.php:640 pages/cancel.php:53
1340
  #: pages/confirmation.php:83 pages/invoice.php:70
1341
  #: shortcodes/pmpro_account.php:46 adminpages/membershiplevels.php:510
1342
  #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:518
1343
  #: adminpages/membershiplevels.php:544 adminpages/membershiplevels.php:545
1344
+ #: adminpages/membershiplevels.php:586 pages/account.php:20
1345
+ #: pages/cancel.php:53 pages/confirmation.php:81 pages/confirmation.php:83
1346
+ #: pages/invoice.php:68 pages/invoice.php:70 shortcodes/pmpro_account.php:46
1347
  msgid "Expiration"
1348
  msgstr ""
1349
 
1350
+ #: adminpages/membershiplevels.php:641 adminpages/membershiplevels.php:511
1351
  #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:519
1352
  #: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:546
1353
+ #: adminpages/membershiplevels.php:587
1354
  msgid "Allow Signups"
1355
  msgstr ""
1356
 
1357
+ #: adminpages/membershiplevels.php:656 adminpages/membershiplevels.php:534
1358
  #: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:542
1359
  #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:569
1360
+ #: adminpages/membershiplevels.php:646
1361
  msgid "FREE"
1362
  msgstr ""
1363
 
1364
+ #: adminpages/membershiplevels.php:665 adminpages/membershiplevels.php:560
1365
  #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:568
1366
  #: adminpages/membershiplevels.php:575 adminpages/membershiplevels.php:595
1367
+ #: adminpages/membershiplevels.php:655
1368
  msgid "After"
1369
  msgstr ""
1370
 
1371
+ #: adminpages/membershiplevels.php:670 adminpages/orders.php:995
 
 
 
 
 
 
 
 
 
1372
  #: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
1373
  #: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
1374
+ #: adminpages/membershiplevels.php:600 adminpages/membershiplevels.php:660
1375
+ #: adminpages/orders.php:661 adminpages/orders.php:964
1376
+ #: adminpages/orders.php:982 adminpages/orders.php:992
1377
  msgid "copy"
1378
  msgstr ""
1379
 
1381
  #: includes/adminpages.php:153 adminpages/memberslist.php:25
1382
  #: includes/adminpages.php:15 includes/adminpages.php:53
1383
  #: includes/adminpages.php:74 includes/adminpages.php:142
1384
+ #: includes/adminpages.php:149 includes/adminpages.php:153
1385
  msgid "Members List"
1386
  msgstr ""
1387
 
1430
  msgid "Search Members"
1431
  msgstr ""
1432
 
1433
+ #: adminpages/memberslist.php:156 adminpages/memberslist.php:103
1434
  #: adminpages/memberslist.php:136 adminpages/memberslist.php:146
1435
+ #: adminpages/memberslist.php:156
1436
  #, php-format
1437
  msgid "%d members found."
1438
  msgstr ""
1439
 
1440
+ #: adminpages/memberslist.php:165 pages/checkout.php:180
1441
  #: shortcodes/pmpro_account.php:105 adminpages/memberslist.php:112
1442
  #: adminpages/memberslist.php:145 adminpages/memberslist.php:155
1443
+ #: adminpages/memberslist.php:165 pages/account.php:51 pages/account.php:55
1444
+ #: pages/account.php:76 pages/checkout.php:168 pages/checkout.php:171
1445
+ #: pages/checkout.php:173 pages/checkout.php:180
1446
  #: shortcodes/pmpro_account.php:105
1447
  msgid "Username"
1448
  msgstr ""
1449
 
1450
+ #: adminpages/memberslist.php:166 adminpages/memberslist.php:113
1451
  #: adminpages/memberslist.php:146 adminpages/memberslist.php:156
1452
+ #: adminpages/memberslist.php:166
1453
  msgid "First&nbsp;Name"
1454
  msgstr ""
1455
 
1456
+ #: adminpages/memberslist.php:167 adminpages/memberslist.php:114
1457
  #: adminpages/memberslist.php:147 adminpages/memberslist.php:157
1458
+ #: adminpages/memberslist.php:167
1459
  msgid "Last&nbsp;Name"
1460
  msgstr ""
1461
 
1462
+ #: adminpages/memberslist.php:170 pages/billing.php:71 pages/checkout.php:311
1463
  #: pages/confirmation.php:61 pages/invoice.php:48
1464
  #: adminpages/memberslist.php:117 adminpages/memberslist.php:150
1465
+ #: adminpages/memberslist.php:160 adminpages/memberslist.php:170
1466
+ #: pages/account.php:90 pages/account.php:94 pages/billing.php:58
1467
+ #: pages/billing.php:62 pages/billing.php:71 pages/checkout.php:298
1468
+ #: pages/checkout.php:300 pages/checkout.php:302 pages/checkout.php:311
1469
+ #: pages/checkout.php:314 pages/checkout.php:321 pages/confirmation.php:59
1470
+ #: pages/confirmation.php:61 pages/invoice.php:46 pages/invoice.php:48
1471
  msgid "Billing Address"
1472
  msgstr ""
1473
 
1474
+ #: adminpages/memberslist.php:171 adminpages/reports/login.php:145
1475
  #: classes/gateways/class.pmprogateway_authorizenet.php:303
1476
  #: adminpages/memberslist.php:118 adminpages/memberslist.php:151
1477
+ #: adminpages/memberslist.php:161 adminpages/memberslist.php:171
1478
+ #: adminpages/pagesettings.php:51 adminpages/reports/login.php:143
1479
+ #: adminpages/reports/login.php:145
1480
  #: classes/gateways/class.pmprogateway_authorizenet.php:187
1481
  #: classes/gateways/class.pmprogateway_authorizenet.php:303
1482
  msgid "Membership"
1483
  msgstr ""
1484
 
1485
+ #: adminpages/memberslist.php:172 adminpages/memberslist.php:119
1486
  #: adminpages/memberslist.php:152 adminpages/memberslist.php:162
1487
+ #: adminpages/memberslist.php:172
1488
  msgid "Fee"
1489
  msgstr ""
1490
 
1491
+ #: adminpages/memberslist.php:173 adminpages/reports/login.php:146
1492
  #: adminpages/memberslist.php:120 adminpages/memberslist.php:153
1493
+ #: adminpages/memberslist.php:163 adminpages/memberslist.php:173
1494
+ #: adminpages/reports/login.php:144 adminpages/reports/login.php:146
1495
  msgid "Joined"
1496
  msgstr ""
1497
 
1498
+ #: adminpages/memberslist.php:177 adminpages/memberslist.php:157
1499
+ #: adminpages/memberslist.php:167 adminpages/memberslist.php:177
1500
  msgid "Ended"
1501
  msgstr ""
1502
 
1503
+ #: adminpages/memberslist.php:261 adminpages/reports/login.php:212
1504
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1505
+ #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
1506
+ #: adminpages/reports/login.php:210 adminpages/reports/login.php:212
1507
  msgid "No members found."
1508
  msgstr ""
1509
 
1510
+ #: adminpages/memberslist.php:261 adminpages/reports/login.php:212
1511
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1512
+ #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
1513
+ #: adminpages/reports/login.php:210 adminpages/reports/login.php:212
1514
  msgid "Search all levels"
1515
  msgstr ""
1516
 
1612
  msgid "Coupon Amount"
1613
  msgstr ""
1614
 
1615
+ #: adminpages/orders.php:370 adminpages/orders.php:915 pages/invoice.php:84
1616
  #: adminpages/orders.php:320 adminpages/orders.php:370
1617
+ #: adminpages/orders.php:602 adminpages/orders.php:905
1618
+ #: adminpages/orders.php:915 pages/invoice.php:82 pages/invoice.php:84
1619
  msgid "Total"
1620
  msgstr ""
1621
 
1636
 
1637
  #: adminpages/orders.php:389
1638
  #: classes/gateways/class.pmprogateway_braintree.php:304
1639
+ #: classes/gateways/class.pmprogateway_stripe.php:409 pages/billing.php:247
1640
+ #: pages/checkout.php:516 adminpages/orders.php:339 adminpages/orders.php:389
1641
  #: classes/gateways/class.pmprogateway_braintree.php:291
1642
  #: classes/gateways/class.pmprogateway_braintree.php:304
1643
+ #: classes/gateways/class.pmprogateway_stripe.php:408
1644
+ #: classes/gateways/class.pmprogateway_stripe.php:409 pages/billing.php:234
1645
+ #: pages/billing.php:238 pages/billing.php:247 pages/checkout.php:493
1646
+ #: pages/checkout.php:507 pages/checkout.php:510 pages/checkout.php:516
1647
+ #: pages/checkout.php:517
1648
  msgid "Card Type"
1649
  msgstr ""
1650
 
1658
  #: adminpages/orders.php:348 adminpages/orders.php:398
1659
  #: adminpages/paymentsettings.php:347 adminpages/paymentsettings.php:352
1660
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
1661
+ #: classes/gateways/class.pmprogateway_twocheckout.php:148
1662
  msgid "Account Number"
1663
  msgstr ""
1664
 
1677
  msgid "Expiration Year"
1678
  msgstr ""
1679
 
1680
+ #: adminpages/orders.php:423 adminpages/orders.php:919
1681
  #: adminpages/orders.php:373 adminpages/orders.php:423
1682
  #: adminpages/orders.php:606 adminpages/orders.php:909
1683
+ #: adminpages/orders.php:919
1684
  msgid "Status"
1685
  msgstr ""
1686
 
1687
+ #: adminpages/orders.php:444 adminpages/orders.php:917
1688
  #: adminpages/orders.php:394 adminpages/orders.php:444
1689
  #: adminpages/orders.php:604 adminpages/orders.php:907
1690
+ #: adminpages/orders.php:917
1691
  msgid "Gateway"
1692
  msgstr ""
1693
 
1735
  msgid "Generated by the gateway. Useful to cross reference subscriptions."
1736
  msgstr ""
1737
 
1738
+ #: adminpages/orders.php:493 adminpages/orders.php:920 pages/invoice.php:107
1739
  #: shortcodes/pmpro_account.php:122 adminpages/orders.php:442
1740
  #: adminpages/orders.php:492 adminpages/orders.php:493
1741
+ #: adminpages/orders.php:607 adminpages/orders.php:910
1742
+ #: adminpages/orders.php:920 pages/account.php:91 pages/invoice.php:105
1743
+ #: pages/invoice.php:107 shortcodes/pmpro_account.php:122
1744
  msgid "Date"
1745
  msgstr ""
1746
 
1769
  #: adminpages/orders.php:570 includes/adminpages.php:17
1770
  #: includes/adminpages.php:55 includes/adminpages.php:84
1771
  #: includes/adminpages.php:156 includes/adminpages.php:163
1772
+ #: includes/adminpages.php:167
1773
  msgid "Orders"
1774
  msgstr ""
1775
 
1778
  msgid "Add New Order"
1779
  msgstr ""
1780
 
 
 
 
 
1781
  #: adminpages/orders.php:606 adminpages/orders.php:606
1782
  msgid "Within a Date Range"
1783
  msgstr ""
1816
  msgid "Search Orders"
1817
  msgstr ""
1818
 
1819
+ #: adminpages/orders.php:903 adminpages/orders.php:590
1820
+ #: adminpages/orders.php:893 adminpages/orders.php:903
1821
  #, php-format
1822
  msgid "%d orders found."
1823
  msgstr ""
1824
 
1825
+ #: adminpages/orders.php:912 adminpages/reports/login.php:143
1826
  #: classes/gateways/class.pmprogateway_payflowpro.php:116
1827
  #: adminpages/orders.php:599 adminpages/orders.php:902
1828
+ #: adminpages/orders.php:912 adminpages/paymentsettings.php:211
1829
+ #: adminpages/paymentsettings.php:215 adminpages/paymentsettings.php:220
1830
+ #: adminpages/reports/login.php:141 adminpages/reports/login.php:143
1831
  #: classes/gateways/class.pmprogateway_payflowpro.php:116
1832
  msgid "User"
1833
  msgstr ""
1834
 
1835
+ #: adminpages/orders.php:914 includes/init.php:222 includes/profile.php:27
1836
+ #: pages/checkout.php:42 pages/confirmation.php:47 pages/confirmation.php:64
1837
  #: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
1838
+ #: adminpages/orders.php:601 adminpages/orders.php:904
1839
+ #: adminpages/orders.php:914 includes/init.php:214 includes/init.php:217
1840
+ #: includes/init.php:218 includes/init.php:220 includes/init.php:222
1841
+ #: includes/profile.php:25 includes/profile.php:27 pages/checkout.php:33
1842
+ #: pages/checkout.php:34 pages/checkout.php:35 pages/checkout.php:42
1843
+ #: pages/confirmation.php:46 pages/confirmation.php:47
1844
  #: pages/confirmation.php:62 pages/confirmation.php:64
1845
  #: pages/confirmation.php:103 pages/confirmation.php:105 pages/invoice.php:27
1846
  #: pages/invoice.php:28 pages/invoice.php:49 pages/invoice.php:51
1847
  msgid "Membership Level"
1848
  msgstr ""
1849
 
1850
+ #: adminpages/orders.php:916 adminpages/orders.php:982
1851
  #: adminpages/orders.php:603 adminpages/orders.php:651
1852
+ #: adminpages/orders.php:906 adminpages/orders.php:916
1853
+ #: adminpages/orders.php:954 adminpages/orders.php:972
1854
+ #: adminpages/orders.php:982
1855
  msgid "Payment"
1856
  msgstr ""
1857
 
1858
+ #: adminpages/orders.php:918 adminpages/orders.php:605
1859
+ #: adminpages/orders.php:908 adminpages/orders.php:918
1860
  msgid "Transaction IDs"
1861
  msgstr ""
1862
 
1863
+ #: adminpages/orders.php:943 adminpages/orders.php:630
1864
+ #: adminpages/orders.php:933 adminpages/orders.php:943
1865
  msgid "deleted"
1866
  msgstr ""
1867
 
1868
+ #: adminpages/orders.php:984 adminpages/orders.php:653
1869
  #: adminpages/orders.php:956 adminpages/orders.php:974
1870
+ #: adminpages/orders.php:984
1871
  msgid "Subscription"
1872
  msgstr ""
1873
 
1874
+ #: adminpages/orders.php:998 adminpages/orders.php:664
1875
  #: adminpages/orders.php:967 adminpages/orders.php:985
1876
+ #: adminpages/orders.php:995
1877
  #, php-format
1878
  msgid ""
1879
  "Deleting orders is permanent and can affect active users. Are you sure you "
1880
  "want to delete order %s?"
1881
  msgstr ""
1882
 
1883
+ #: adminpages/orders.php:1008 adminpages/orders.php:674
1884
  #: adminpages/orders.php:977 adminpages/orders.php:995
1885
+ #: adminpages/orders.php:1005
1886
  msgid "No orders found."
1887
  msgstr ""
1888
 
1943
  msgid "Account Page"
1944
  msgstr ""
1945
 
1946
+ #: adminpages/pagesettings.php:144 adminpages/pagesettings.php:159
1947
+ #: adminpages/pagesettings.php:174 adminpages/pagesettings.php:190
1948
+ #: adminpages/pagesettings.php:206 adminpages/pagesettings.php:222
1949
+ #: adminpages/pagesettings.php:238 adminpages/pagesettings.php:144
1950
+ #: adminpages/pagesettings.php:147 adminpages/pagesettings.php:159
1951
+ #: adminpages/pagesettings.php:162 adminpages/pagesettings.php:174
1952
+ #: adminpages/pagesettings.php:177 adminpages/pagesettings.php:190
1953
+ #: adminpages/pagesettings.php:193 adminpages/pagesettings.php:206
1954
+ #: adminpages/pagesettings.php:209 adminpages/pagesettings.php:222
1955
+ #: adminpages/pagesettings.php:225 adminpages/pagesettings.php:238
1956
+ #: adminpages/pagesettings.php:241
1957
  msgid "Choose One"
1958
  msgstr ""
1959
 
1960
+ #: adminpages/pagesettings.php:147 adminpages/pagesettings.php:162
1961
+ #: adminpages/pagesettings.php:177 adminpages/pagesettings.php:193
1962
+ #: adminpages/pagesettings.php:209 adminpages/pagesettings.php:225
1963
+ #: adminpages/pagesettings.php:241 adminpages/pagesettings.php:119
1964
  #: adminpages/pagesettings.php:132 adminpages/pagesettings.php:134
1965
  #: adminpages/pagesettings.php:145 adminpages/pagesettings.php:147
1966
+ #: adminpages/pagesettings.php:149 adminpages/pagesettings.php:150
1967
+ #: adminpages/pagesettings.php:159 adminpages/pagesettings.php:162
1968
+ #: adminpages/pagesettings.php:165 adminpages/pagesettings.php:173
1969
+ #: adminpages/pagesettings.php:177 adminpages/pagesettings.php:180
1970
  #: adminpages/pagesettings.php:181 adminpages/pagesettings.php:187
1971
+ #: adminpages/pagesettings.php:193 adminpages/pagesettings.php:196
1972
+ #: adminpages/pagesettings.php:197 adminpages/pagesettings.php:201
1973
+ #: adminpages/pagesettings.php:209 adminpages/pagesettings.php:212
1974
  #: adminpages/pagesettings.php:213 adminpages/pagesettings.php:225
1975
+ #: adminpages/pagesettings.php:228 adminpages/pagesettings.php:241
1976
+ #: adminpages/pagesettings.php:244
1977
  msgid "edit page"
1978
  msgstr ""
1979
 
1980
+ #: adminpages/pagesettings.php:149 adminpages/pagesettings.php:164
1981
+ #: adminpages/pagesettings.php:179 adminpages/pagesettings.php:195
1982
+ #: adminpages/pagesettings.php:211 adminpages/pagesettings.php:227
1983
+ #: adminpages/pagesettings.php:243 adminpages/pagesettings.php:121
1984
  #: adminpages/pagesettings.php:136 adminpages/pagesettings.php:149
1985
+ #: adminpages/pagesettings.php:151 adminpages/pagesettings.php:152
1986
+ #: adminpages/pagesettings.php:164 adminpages/pagesettings.php:167
1987
+ #: adminpages/pagesettings.php:179 adminpages/pagesettings.php:182
1988
  #: adminpages/pagesettings.php:183 adminpages/pagesettings.php:195
1989
+ #: adminpages/pagesettings.php:198 adminpages/pagesettings.php:199
1990
+ #: adminpages/pagesettings.php:211 adminpages/pagesettings.php:214
1991
  #: adminpages/pagesettings.php:215 adminpages/pagesettings.php:227
1992
+ #: adminpages/pagesettings.php:230 adminpages/pagesettings.php:243
1993
+ #: adminpages/pagesettings.php:246
1994
  msgid "view page"
1995
  msgstr ""
1996
 
1997
+ #: adminpages/pagesettings.php:151 adminpages/pagesettings.php:166
1998
+ #: adminpages/pagesettings.php:181 adminpages/pagesettings.php:197
1999
+ #: adminpages/pagesettings.php:213 adminpages/pagesettings.php:229
2000
+ #: adminpages/pagesettings.php:245 adminpages/pagesettings.php:121
2001
  #: adminpages/pagesettings.php:123 adminpages/pagesettings.php:134
2002
  #: adminpages/pagesettings.php:138 adminpages/pagesettings.php:147
2003
  #: adminpages/pagesettings.php:151 adminpages/pagesettings.php:153
2004
+ #: adminpages/pagesettings.php:154 adminpages/pagesettings.php:161
2005
+ #: adminpages/pagesettings.php:166 adminpages/pagesettings.php:169
2006
+ #: adminpages/pagesettings.php:175 adminpages/pagesettings.php:181
2007
+ #: adminpages/pagesettings.php:184 adminpages/pagesettings.php:185
2008
  #: adminpages/pagesettings.php:189 adminpages/pagesettings.php:197
2009
+ #: adminpages/pagesettings.php:200 adminpages/pagesettings.php:201
2010
+ #: adminpages/pagesettings.php:203 adminpages/pagesettings.php:213
2011
+ #: adminpages/pagesettings.php:216 adminpages/pagesettings.php:217
2012
+ #: adminpages/pagesettings.php:229 adminpages/pagesettings.php:232
2013
+ #: adminpages/pagesettings.php:245 adminpages/pagesettings.php:248
2014
  msgid "Include the shortcode"
2015
  msgstr ""
2016
 
2017
+ #: adminpages/pagesettings.php:155 adminpages/pagesettings.php:125
2018
  #: adminpages/pagesettings.php:127 adminpages/pagesettings.php:155
2019
+ #: adminpages/pagesettings.php:158
2020
  msgid "Billing Information Page"
2021
  msgstr ""
2022
 
2023
+ #: adminpages/pagesettings.php:170 adminpages/pagesettings.php:138
2024
  #: adminpages/pagesettings.php:142 adminpages/pagesettings.php:170
2025
+ #: adminpages/pagesettings.php:173
2026
  msgid "Cancel Page"
2027
  msgstr ""
2028
 
2029
+ #: adminpages/pagesettings.php:186 adminpages/pagesettings.php:152
2030
  #: adminpages/pagesettings.php:158 adminpages/pagesettings.php:186
2031
+ #: adminpages/pagesettings.php:189
2032
  msgid "Checkout Page"
2033
  msgstr ""
2034
 
2035
+ #: adminpages/pagesettings.php:202 adminpages/pagesettings.php:166
2036
  #: adminpages/pagesettings.php:174 adminpages/pagesettings.php:202
2037
+ #: adminpages/pagesettings.php:205
2038
  msgid "Confirmation Page"
2039
  msgstr ""
2040
 
2041
+ #: adminpages/pagesettings.php:218 adminpages/pagesettings.php:180
2042
  #: adminpages/pagesettings.php:190 adminpages/pagesettings.php:218
2043
+ #: adminpages/pagesettings.php:221
2044
  msgid "Invoice Page"
2045
  msgstr ""
2046
 
2047
+ #: adminpages/pagesettings.php:234 adminpages/pagesettings.php:194
2048
  #: adminpages/pagesettings.php:206 adminpages/pagesettings.php:234
2049
+ #: adminpages/pagesettings.php:237
2050
  msgid "Levels Page"
2051
  msgstr ""
2052
 
2103
  msgid "Sales Tax"
2104
  msgstr ""
2105
 
2106
+ #: adminpages/paymentsettings.php:188 pages/billing.php:91
2107
  #: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:398
2108
  #: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
2109
  #: adminpages/paymentsettings.php:445 pages/billing.php:78
2110
+ #: pages/billing.php:82 pages/billing.php:91
2111
  msgid "optional"
2112
  msgstr ""
2113
 
2389
  msgid "An Email From %s"
2390
  msgstr ""
2391
 
2392
+ #: classes/class.pmproemail.php:134 classes/class.pmproemail.php:120
2393
  #: classes/class.pmproemail.php:122 classes/class.pmproemail.php:125
2394
+ #: classes/class.pmproemail.php:134
2395
  #, php-format
2396
  msgid "Your membership at %s has been CANCELLED"
2397
  msgstr ""
2398
 
2399
+ #: classes/class.pmproemail.php:156 classes/class.pmproemail.php:142
2400
  #: classes/class.pmproemail.php:144 classes/class.pmproemail.php:147
2401
+ #: classes/class.pmproemail.php:156
2402
  #, php-format
2403
  msgid "Membership for %s at %s has been CANCELLED"
2404
  msgstr ""
2405
 
2406
+ #: classes/class.pmproemail.php:187 classes/class.pmproemail.php:172
2407
  #: classes/class.pmproemail.php:173 classes/class.pmproemail.php:175
2408
+ #: classes/class.pmproemail.php:178 classes/class.pmproemail.php:187
2409
  #, php-format
2410
  msgid "Your membership confirmation for %s"
2411
  msgstr ""
2412
 
2413
+ #: classes/class.pmproemail.php:240 classes/class.pmproemail.php:249
2414
+ #: classes/class.pmproemail.php:258 classes/class.pmproemail.php:337
2415
+ #: classes/class.pmproemail.php:346 classes/class.pmproemail.php:657
2416
  #: classes/gateways/class.pmprogateway_braintree.php:362
2417
+ #: classes/gateways/class.pmprogateway_stripe.php:496 pages/checkout.php:75
2418
+ #: pages/checkout.php:85 pages/checkout.php:603 pages/confirmation.php:52
2419
  #: pages/invoice.php:33 classes/class.pmproemail.php:216
2420
  #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
2421
  #: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
2422
  #: classes/class.pmproemail.php:231 classes/class.pmproemail.php:234
2423
  #: classes/class.pmproemail.php:236 classes/class.pmproemail.php:237
2424
  #: classes/class.pmproemail.php:240 classes/class.pmproemail.php:246
2425
+ #: classes/class.pmproemail.php:249 classes/class.pmproemail.php:258
2426
+ #: classes/class.pmproemail.php:304 classes/class.pmproemail.php:307
2427
+ #: classes/class.pmproemail.php:313 classes/class.pmproemail.php:316
2428
+ #: classes/class.pmproemail.php:325 classes/class.pmproemail.php:328
2429
+ #: classes/class.pmproemail.php:334 classes/class.pmproemail.php:337
2430
+ #: classes/class.pmproemail.php:346 classes/class.pmproemail.php:532
2431
  #: classes/class.pmproemail.php:580 classes/class.pmproemail.php:645
2432
+ #: classes/class.pmproemail.php:648 classes/class.pmproemail.php:657
2433
  #: classes/gateways/class.pmprogateway_braintree.php:349
2434
  #: classes/gateways/class.pmprogateway_braintree.php:362
2435
+ #: classes/gateways/class.pmprogateway_stripe.php:495
2436
+ #: classes/gateways/class.pmprogateway_stripe.php:496 pages/checkout.php:66
2437
+ #: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:75
2438
+ #: pages/checkout.php:76 pages/checkout.php:77 pages/checkout.php:78
2439
+ #: pages/checkout.php:85 pages/checkout.php:549 pages/checkout.php:565
2440
+ #: pages/checkout.php:566 pages/checkout.php:573 pages/checkout.php:594
2441
+ #: pages/checkout.php:603 pages/confirmation.php:51 pages/confirmation.php:52
2442
  #: pages/invoice.php:32 pages/invoice.php:33
2443
  msgid "Discount Code"
2444
  msgstr ""
2445
 
2446
+ #: classes/class.pmproemail.php:265 classes/class.pmproemail.php:358
2447
+ #: classes/class.pmproemail.php:663 classes/class.pmproemail.php:241
2448
  #: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
2449
+ #: classes/class.pmproemail.php:256 classes/class.pmproemail.php:265
2450
+ #: classes/class.pmproemail.php:325 classes/class.pmproemail.php:328
2451
+ #: classes/class.pmproemail.php:346 classes/class.pmproemail.php:349
2452
+ #: classes/class.pmproemail.php:358 classes/class.pmproemail.php:538
2453
  #: classes/class.pmproemail.php:586 classes/class.pmproemail.php:651
2454
+ #: classes/class.pmproemail.php:654 classes/class.pmproemail.php:663
2455
  #, php-format
2456
  msgid "This membership will expire on %s."
2457
  msgstr ""
2458
 
2459
+ #: classes/class.pmproemail.php:287 classes/class.pmproemail.php:263
2460
  #: classes/class.pmproemail.php:265 classes/class.pmproemail.php:275
2461
+ #: classes/class.pmproemail.php:278 classes/class.pmproemail.php:287
2462
  #, php-format
2463
  msgid "Member Checkout for %s at %s"
2464
  msgstr ""
2465
 
2466
+ #: classes/class.pmproemail.php:375 classes/class.pmproemail.php:342
2467
  #: classes/class.pmproemail.php:345 classes/class.pmproemail.php:363
2468
+ #: classes/class.pmproemail.php:366 classes/class.pmproemail.php:375
2469
  #, php-format
2470
  msgid "Your billing information has been udpated at %s"
2471
  msgstr ""
2472
 
2473
+ #: classes/class.pmproemail.php:428 classes/class.pmproemail.php:386
2474
  #: classes/class.pmproemail.php:390 classes/class.pmproemail.php:416
2475
+ #: classes/class.pmproemail.php:419 classes/class.pmproemail.php:428
2476
  #, php-format
2477
  msgid "Billing information has been udpated for %s at %s"
2478
  msgstr ""
2479
 
2480
+ #: classes/class.pmproemail.php:476 classes/class.pmproemail.php:425
2481
  #: classes/class.pmproemail.php:430 classes/class.pmproemail.php:464
2482
+ #: classes/class.pmproemail.php:467 classes/class.pmproemail.php:476
2483
  #, php-format
2484
  msgid "Membership Payment Failed at %s"
2485
  msgstr ""
2486
 
2487
+ #: classes/class.pmproemail.php:522 classes/class.pmproemail.php:462
2488
  #: classes/class.pmproemail.php:468 classes/class.pmproemail.php:510
2489
+ #: classes/class.pmproemail.php:513 classes/class.pmproemail.php:522
2490
  #, php-format
2491
  msgid "Membership Payment Failed For %s at %s"
2492
  msgstr ""
2493
 
2494
+ #: classes/class.pmproemail.php:569 classes/class.pmproemail.php:508
2495
  #: classes/class.pmproemail.php:557 classes/class.pmproemail.php:560
2496
+ #: classes/class.pmproemail.php:569
2497
  #, php-format
2498
  msgid "Credit Card on File Expiring Soon at %s"
2499
  msgstr ""
2500
 
2501
+ #: classes/class.pmproemail.php:617 classes/class.pmproemail.php:501
2502
  #: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
2503
+ #: classes/class.pmproemail.php:608 classes/class.pmproemail.php:617
2504
  #, php-format
2505
  msgid "INVOICE for %s membership"
2506
  msgstr ""
2507
 
2508
+ #: classes/class.pmproemail.php:688 classes/class.pmproemail.php:563
2509
  #: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
2510
+ #: classes/class.pmproemail.php:679 classes/class.pmproemail.php:688
2511
  #, php-format
2512
  msgid "Your trial at %s is ending soon"
2513
  msgstr ""
2514
 
2515
+ #: classes/class.pmproemail.php:722 classes/class.pmproemail.php:596
2516
  #: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
2517
+ #: classes/class.pmproemail.php:713 classes/class.pmproemail.php:722
2518
  #, php-format
2519
  msgid "Your membership at %s has ended"
2520
  msgstr ""
2521
 
2522
+ #: classes/class.pmproemail.php:747 classes/class.pmproemail.php:621
2523
  #: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
2524
+ #: classes/class.pmproemail.php:738 classes/class.pmproemail.php:747
2525
  #, php-format
2526
  msgid "Your membership at %s will end soon"
2527
  msgstr ""
2528
 
2529
+ #: classes/class.pmproemail.php:767 classes/class.pmproemail.php:641
2530
  #: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
2531
+ #: classes/class.pmproemail.php:758 classes/class.pmproemail.php:767
2532
  #, php-format
2533
  msgid "Your membership at %s has been changed"
2534
  msgstr ""
2535
 
2536
+ #: classes/class.pmproemail.php:771 classes/class.pmproemail.php:809
2537
  #: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
2538
+ #: classes/class.pmproemail.php:771 classes/class.pmproemail.php:800
2539
+ #: classes/class.pmproemail.php:809
2540
  #, php-format
2541
  msgid "The new level is %s"
2542
  msgstr ""
2543
 
2544
+ #: classes/class.pmproemail.php:773 classes/class.pmproemail.php:647
2545
  #: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
2546
+ #: classes/class.pmproemail.php:764 classes/class.pmproemail.php:773
2547
  msgid "Your membership has been cancelled"
2548
  msgstr ""
2549
 
2550
+ #: classes/class.pmproemail.php:777 classes/class.pmproemail.php:815
2551
  #: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
2552
  #: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
2553
  #: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
2554
+ #: classes/class.pmproemail.php:777 classes/class.pmproemail.php:803
2555
+ #: classes/class.pmproemail.php:806 classes/class.pmproemail.php:815
2556
  #, php-format
2557
  msgid "This membership will expire on %s"
2558
  msgstr ""
2559
 
2560
+ #: classes/class.pmproemail.php:781 classes/class.pmproemail.php:819
2561
  #: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
2562
  #: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
2563
  #: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
2564
+ #: classes/class.pmproemail.php:781 classes/class.pmproemail.php:807
2565
+ #: classes/class.pmproemail.php:810 classes/class.pmproemail.php:819
2566
  msgid "This membership does not expire"
2567
  msgstr ""
2568
 
2569
+ #: classes/class.pmproemail.php:805 classes/class.pmproemail.php:679
2570
  #: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
2571
+ #: classes/class.pmproemail.php:796 classes/class.pmproemail.php:805
2572
  #, php-format
2573
  msgid "Membership for %s at %s has been changed"
2574
  msgstr ""
2575
 
2576
+ #: classes/class.pmproemail.php:811 classes/class.pmproemail.php:799
2577
+ #: classes/class.pmproemail.php:802 classes/class.pmproemail.php:811
2578
  msgid "Membership has been cancelled"
2579
  msgstr ""
2580
 
2660
  msgstr ""
2661
 
2662
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
2663
+ #: paid-memberships-pro.php:130
2664
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
2665
  #: paid-memberships-pro.php:122 paid-memberships-pro.php:123
2666
  msgid "Authorize.net"
2713
  msgstr ""
2714
 
2715
  #: classes/gateways/class.pmprogateway_braintree.php:76
2716
+ #: paid-memberships-pro.php:131
2717
  #: classes/gateways/class.pmprogateway_braintree.php:63
2718
  #: classes/gateways/class.pmprogateway_braintree.php:76
2719
  #: paid-memberships-pro.php:123 paid-memberships-pro.php:124
2762
  msgstr ""
2763
 
2764
  #: classes/gateways/class.pmprogateway_braintree.php:169
2765
+ #: classes/gateways/class.pmprogateway_stripe.php:182
2766
  #: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
2767
  #: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
2768
  #: adminpages/paymentsettings.php:511 adminpages/paymentsettings.php:517
2770
  #: classes/gateways/class.pmprogateway_braintree.php:156
2771
  #: classes/gateways/class.pmprogateway_braintree.php:169
2772
  #: classes/gateways/class.pmprogateway_stripe.php:181
2773
+ #: classes/gateways/class.pmprogateway_stripe.php:182
2774
  msgid "Web Hook URL"
2775
  msgstr ""
2776
 
2783
  msgstr ""
2784
 
2785
  #: classes/gateways/class.pmprogateway_braintree.php:283
2786
+ #: classes/gateways/class.pmprogateway_stripe.php:388 pages/checkout.php:494
2787
  #: classes/gateways/class.pmprogateway_braintree.php:270
2788
  #: classes/gateways/class.pmprogateway_braintree.php:283
2789
+ #: classes/gateways/class.pmprogateway_stripe.php:387
2790
+ #: classes/gateways/class.pmprogateway_stripe.php:388 pages/checkout.php:476
2791
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
2792
+ #: pages/checkout.php:494 pages/checkout.php:500
2793
  msgid "Payment Information"
2794
  msgstr ""
2795
 
2796
  #: classes/gateways/class.pmprogateway_braintree.php:283
2797
+ #: classes/gateways/class.pmprogateway_stripe.php:388 pages/checkout.php:494
2798
  #: classes/gateways/class.pmprogateway_braintree.php:270
2799
  #: classes/gateways/class.pmprogateway_braintree.php:283
2800
+ #: classes/gateways/class.pmprogateway_stripe.php:387
2801
+ #: classes/gateways/class.pmprogateway_stripe.php:388 pages/checkout.php:476
2802
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
2803
+ #: pages/checkout.php:494 pages/checkout.php:500
2804
  #, php-format
2805
  msgid "We Accept %s"
2806
  msgstr ""
2807
 
2808
  #: classes/gateways/class.pmprogateway_braintree.php:316
2809
+ #: classes/gateways/class.pmprogateway_stripe.php:450 pages/billing.php:257
2810
+ #: pages/checkout.php:557
2811
  #: classes/gateways/class.pmprogateway_braintree.php:303
2812
  #: classes/gateways/class.pmprogateway_braintree.php:316
2813
+ #: classes/gateways/class.pmprogateway_stripe.php:449
2814
+ #: classes/gateways/class.pmprogateway_stripe.php:450 pages/billing.php:244
2815
+ #: pages/billing.php:248 pages/billing.php:257 pages/checkout.php:503
2816
+ #: pages/checkout.php:519 pages/checkout.php:520 pages/checkout.php:527
2817
+ #: pages/checkout.php:548 pages/checkout.php:557
2818
  msgid "Card Number"
2819
  msgstr ""
2820
 
2821
  #: classes/gateways/class.pmprogateway_braintree.php:353
2822
+ #: classes/gateways/class.pmprogateway_stripe.php:487 pages/billing.php:294
2823
+ #: pages/checkout.php:594
2824
  #: classes/gateways/class.pmprogateway_braintree.php:340
2825
  #: classes/gateways/class.pmprogateway_braintree.php:353
2826
+ #: classes/gateways/class.pmprogateway_stripe.php:486
2827
+ #: classes/gateways/class.pmprogateway_stripe.php:487 pages/billing.php:281
2828
+ #: pages/billing.php:285 pages/billing.php:294 pages/checkout.php:540
2829
+ #: pages/checkout.php:556 pages/checkout.php:557 pages/checkout.php:564
2830
+ #: pages/checkout.php:585 pages/checkout.php:594
2831
  msgid "CVV"
2832
  msgstr ""
2833
 
2834
  #: classes/gateways/class.pmprogateway_braintree.php:354
2835
+ #: classes/gateways/class.pmprogateway_stripe.php:488 pages/billing.php:295
2836
+ #: pages/checkout.php:595
2837
  #: classes/gateways/class.pmprogateway_braintree.php:341
2838
  #: classes/gateways/class.pmprogateway_braintree.php:354
2839
+ #: classes/gateways/class.pmprogateway_stripe.php:487
2840
+ #: classes/gateways/class.pmprogateway_stripe.php:488 pages/billing.php:282
2841
+ #: pages/billing.php:286 pages/billing.php:295 pages/checkout.php:541
2842
+ #: pages/checkout.php:557 pages/checkout.php:558 pages/checkout.php:565
2843
+ #: pages/checkout.php:586 pages/checkout.php:595
2844
  msgid "what's this?"
2845
  msgstr ""
2846
 
2847
  #: classes/gateways/class.pmprogateway_braintree.php:364
2848
+ #: classes/gateways/class.pmprogateway_stripe.php:498 pages/checkout.php:87
2849
+ #: pages/checkout.php:605
2850
  #: classes/gateways/class.pmprogateway_braintree.php:351
2851
  #: classes/gateways/class.pmprogateway_braintree.php:364
2852
+ #: classes/gateways/class.pmprogateway_stripe.php:497
2853
+ #: classes/gateways/class.pmprogateway_stripe.php:498 pages/checkout.php:78
2854
+ #: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:87
2855
+ #: pages/checkout.php:551 pages/checkout.php:567 pages/checkout.php:568
2856
+ #: pages/checkout.php:575 pages/checkout.php:596 pages/checkout.php:605
2857
  msgid "Apply"
2858
  msgstr ""
2859
 
2860
  #: classes/gateways/class.pmprogateway_braintree.php:419
2861
+ #: classes/gateways/class.pmprogateway_stripe.php:1026
2862
  #: classes/gateways/class.pmprogateway_braintree.php:61
2863
  #: classes/gateways/class.pmprogateway_braintree.php:406
2864
  #: classes/gateways/class.pmprogateway_braintree.php:419
2865
  #: classes/gateways/class.pmprogateway_stripe.php:53
2866
  #: classes/gateways/class.pmprogateway_stripe.php:1011
2867
  #: classes/gateways/class.pmprogateway_stripe.php:1025
2868
+ #: classes/gateways/class.pmprogateway_stripe.php:1026
2869
  msgid "Unknown error: Initial payment failed."
2870
  msgstr ""
2871
 
2955
  msgstr ""
2956
 
2957
  #: classes/gateways/class.pmprogateway_check.php:48
2958
+ #: paid-memberships-pro.php:124 adminpages/orders.php:399
2959
  #: adminpages/orders.php:449 adminpages/paymentsettings.php:157
2960
  #: adminpages/paymentsettings.php:159
2961
  #: classes/gateways/class.pmprogateway_check.php:48
3035
  msgstr ""
3036
 
3037
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
3038
+ #: pages/checkout.php:189 adminpages/paymentsettings.php:219
3039
  #: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:228
3040
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
3041
  #: pages/checkout.php:177 pages/checkout.php:180 pages/checkout.php:182
3042
+ #: pages/checkout.php:189
3043
  msgid "Password"
3044
  msgstr ""
3045
 
3068
  msgstr ""
3069
 
3070
  #: classes/gateways/class.pmprogateway_paypal.php:57
3071
+ #: paid-memberships-pro.php:127
3072
  #: classes/gateways/class.pmprogateway_paypal.php:57
3073
  #: paid-memberships-pro.php:119 paid-memberships-pro.php:120
3074
  msgid "PayPal Website Payments Pro"
3075
  msgstr ""
3076
 
3077
  #: classes/gateways/class.pmprogateway_paypal.php:113
3078
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:128
3079
  #: classes/gateways/class.pmprogateway_paypalstandard.php:112
3080
  #: classes/gateways/class.pmprogateway_paypal.php:113
3081
  #: classes/gateways/class.pmprogateway_paypalexpress.php:118
3084
  msgstr ""
3085
 
3086
  #: classes/gateways/class.pmprogateway_paypal.php:118
3087
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:133
3088
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
3089
  #: adminpages/paymentsettings.php:179
3090
  #: classes/gateways/class.pmprogateway_paypal.php:118
3099
  msgstr ""
3100
 
3101
  #: classes/gateways/class.pmprogateway_paypal.php:123
3102
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:138
3103
  #: classes/gateways/class.pmprogateway_paypalstandard.php:122
3104
  #: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:231
3105
  #: adminpages/paymentsettings.php:236
3110
  msgstr ""
3111
 
3112
  #: classes/gateways/class.pmprogateway_paypal.php:131
3113
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:146
3114
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
3115
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
3116
  #: adminpages/paymentsettings.php:235 adminpages/paymentsettings.php:239
3120
  #: classes/gateways/class.pmprogateway_paypalexpress.php:136
3121
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
3122
  #: classes/gateways/class.pmprogateway_twocheckout.php:113
3123
+ #: classes/gateways/class.pmprogateway_twocheckout.php:121
3124
  msgid "API Username"
3125
  msgstr ""
3126
 
3127
  #: classes/gateways/class.pmprogateway_paypal.php:139
3128
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:154
3129
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
3130
  #: classes/gateways/class.pmprogateway_twocheckout.php:130
3131
  #: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:247
3135
  #: classes/gateways/class.pmprogateway_paypalexpress.php:144
3136
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
3137
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
3138
+ #: classes/gateways/class.pmprogateway_twocheckout.php:130
3139
  msgid "API Password"
3140
  msgstr ""
3141
 
3142
  #: classes/gateways/class.pmprogateway_paypal.php:147
3143
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:162
3144
  #: classes/gateways/class.pmprogateway_paypalstandard.php:146
3145
  #: adminpages/paymentsettings.php:251 adminpages/paymentsettings.php:255
3146
  #: adminpages/paymentsettings.php:260
3151
  msgstr ""
3152
 
3153
  #: classes/gateways/class.pmprogateway_paypal.php:155
3154
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:170
3155
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
3156
  #: adminpages/paymentsettings.php:446 adminpages/paymentsettings.php:479
3157
  #: adminpages/paymentsettings.php:485 adminpages/paymentsettings.php:487
3169
  msgstr ""
3170
 
3171
  #: classes/gateways/class.pmprogateway_paypal.php:178
3172
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:412
3173
  #: classes/gateways/class.pmprogateway_paypalstandard.php:202
3174
+ #: pages/checkout.php:295 classes/gateways/class.pmprogateway_paypal.php:178
3175
  #: classes/gateways/class.pmprogateway_paypalexpress.php:402
3176
  #: classes/gateways/class.pmprogateway_paypalstandard.php:202
3177
+ #: pages/checkout.php:286 pages/checkout.php:288 pages/checkout.php:295
3178
+ #: pages/checkout.php:302 pages/checkout.php:309 pages/checkout.php:675
3179
+ #: pages/checkout.php:682 pages/checkout.php:685 pages/checkout.php:701
3180
  msgid "Check Out with PayPal"
3181
  msgstr ""
3182
 
3183
  #: classes/gateways/class.pmprogateway_paypal.php:184
3184
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3185
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3186
+ #: pages/checkout.php:713 classes/gateways/class.pmprogateway_paypal.php:184
3187
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3188
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3189
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3190
+ #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3191
  msgid "Submit and Check Out"
3192
  msgstr ""
3193
 
3194
  #: classes/gateways/class.pmprogateway_paypal.php:184
3195
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3196
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3197
  #: classes/gateways/class.pmprogateway_twocheckout.php:214
3198
+ #: pages/checkout.php:713 classes/gateways/class.pmprogateway_paypal.php:184
3199
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3200
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3201
  #: classes/gateways/class.pmprogateway_twocheckout.php:192
3202
+ #: classes/gateways/class.pmprogateway_twocheckout.php:214
3203
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3204
+ #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3205
  msgid "Submit and Confirm"
3206
  msgstr ""
3207
 
3208
  #: classes/gateways/class.pmprogateway_paypal.php:605
3209
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:750
3210
  #: classes/gateways/class.pmprogateway_paypalstandard.php:466
3211
  #: classes/gateways/class.pmprogateway_paypal.php:385
3212
  #: classes/gateways/class.pmprogateway_paypal.php:605
3225
  "to make sure you are not charged going forward."
3226
  msgstr ""
3227
 
3228
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:73
3229
+ #: paid-memberships-pro.php:126
3230
  #: classes/gateways/class.pmprogateway_paypalexpress.php:63
3231
  #: paid-memberships-pro.php:118 paid-memberships-pro.php:119
3232
  msgid "PayPal Express"
3233
  msgstr ""
3234
 
3235
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:173
3236
  #: adminpages/paymentsettings.php:449 adminpages/paymentsettings.php:482
3237
  #: adminpages/paymentsettings.php:488 adminpages/paymentsettings.php:490
3238
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
3239
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
3240
  msgstr ""
3241
 
3242
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:278
3243
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:330
3244
  #: classes/gateways/class.pmprogateway_paypalexpress.php:268
3245
  #: classes/gateways/class.pmprogateway_paypalexpress.php:320
3246
  #: preheaders/checkout.php:690 preheaders/checkout.php:697
3253
  msgstr ""
3254
 
3255
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
3256
+ #: paid-memberships-pro.php:129
3257
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
3258
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:122
3259
  msgid "PayPal Standard"
3266
  "settings."
3267
  msgstr ""
3268
 
3269
+ #: classes/gateways/class.pmprogateway_stripe.php:94
3270
+ #: paid-memberships-pro.php:125
3271
  #: classes/gateways/class.pmprogateway_stripe.php:93
3272
+ #: classes/gateways/class.pmprogateway_stripe.php:94
 
3273
  #: paid-memberships-pro.php:117 paid-memberships-pro.php:118
3274
  msgid "Stripe"
3275
  msgstr ""
3276
 
3277
+ #: classes/gateways/class.pmprogateway_stripe.php:149
3278
  #: classes/gateways/class.pmprogateway_stripe.php:148
3279
+ #: classes/gateways/class.pmprogateway_stripe.php:149
3280
  msgid "Stripe Settings"
3281
  msgstr ""
3282
 
3283
+ #: classes/gateways/class.pmprogateway_stripe.php:154
3284
  #: adminpages/paymentsettings.php:277 adminpages/paymentsettings.php:281
3285
  #: adminpages/paymentsettings.php:286
3286
  #: classes/gateways/class.pmprogateway_stripe.php:153
3287
+ #: classes/gateways/class.pmprogateway_stripe.php:154
3288
  msgid "Secret Key"
3289
  msgstr ""
3290
 
3291
+ #: classes/gateways/class.pmprogateway_stripe.php:162
3292
  #: adminpages/paymentsettings.php:285 adminpages/paymentsettings.php:289
3293
  #: adminpages/paymentsettings.php:294
3294
  #: classes/gateways/class.pmprogateway_stripe.php:161
3295
+ #: classes/gateways/class.pmprogateway_stripe.php:162
3296
  msgid "Publishable Key"
3297
  msgstr ""
3298
 
3299
+ #: classes/gateways/class.pmprogateway_stripe.php:170
3300
  #: adminpages/paymentsettings.php:425 adminpages/paymentsettings.php:430
3301
  #: adminpages/paymentsettings.php:432
3302
  #: classes/gateways/class.pmprogateway_stripe.php:169
3303
+ #: classes/gateways/class.pmprogateway_stripe.php:170
3304
  msgid "Show Billing Address Fields"
3305
  msgstr ""
3306
 
3307
+ #: classes/gateways/class.pmprogateway_stripe.php:177
3308
  #: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:439
3309
  #: classes/gateways/class.pmprogateway_stripe.php:176
3310
+ #: classes/gateways/class.pmprogateway_stripe.php:177
3311
  msgid ""
3312
  "Stripe doesn't require billing address fields. Choose 'No' to hide them on "
3313
  "the checkout page.<br /><strong>If No, make sure you disable address "
3314
  "verification in the Stripe dashboard settings.</strong>"
3315
  msgstr ""
3316
 
3317
+ #: classes/gateways/class.pmprogateway_stripe.php:185
3318
  #: adminpages/paymentsettings.php:465 adminpages/paymentsettings.php:506
3319
  #: adminpages/paymentsettings.php:512 adminpages/paymentsettings.php:514
3320
  #: classes/gateways/class.pmprogateway_stripe.php:184
3321
+ #: classes/gateways/class.pmprogateway_stripe.php:185
3322
  msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
3323
  msgstr ""
3324
 
3325
+ #: classes/gateways/class.pmprogateway_stripe.php:568
3326
  #: classes/gateways/class.pmprogateway_stripe.php:567
3327
+ #: classes/gateways/class.pmprogateway_stripe.php:568
3328
  msgid "Subscription Updates"
3329
  msgstr ""
3330
 
3331
+ #: classes/gateways/class.pmprogateway_stripe.php:572
3332
  #: classes/gateways/class.pmprogateway_stripe.php:571
3333
+ #: classes/gateways/class.pmprogateway_stripe.php:572
3334
  msgid ""
3335
  "Subscription updates, allow you to change the member's subscription values "
3336
  "at predefined times. Be sure to click Update Profile after making changes."
3337
  msgstr ""
3338
 
3339
+ #: classes/gateways/class.pmprogateway_stripe.php:574
3340
  #: classes/gateways/class.pmprogateway_stripe.php:573
3341
+ #: classes/gateways/class.pmprogateway_stripe.php:574
3342
  msgid ""
3343
  "Subscription updates, allow you to change the member's subscription values "
3344
  "at predefined times. Be sure to click Update User after making changes."
3345
  msgstr ""
3346
 
3347
+ #: classes/gateways/class.pmprogateway_stripe.php:579 pages/billing.php:338
3348
+ #: classes/gateways/class.pmprogateway_stripe.php:578
3349
+ #: classes/gateways/class.pmprogateway_stripe.php:579 pages/billing.php:294
3350
+ #: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
3351
  msgid "Update"
3352
  msgstr ""
3353
 
3354
+ #: classes/gateways/class.pmprogateway_stripe.php:770
3355
  #: classes/gateways/class.pmprogateway_stripe.php:769
3356
+ #: classes/gateways/class.pmprogateway_stripe.php:770
3357
  msgid "Could not cancel the old subscription. Updates have not been processed."
3358
  msgstr ""
3359
 
3360
+ #: classes/gateways/class.pmprogateway_stripe.php:1204
3361
  #: classes/gateways/class.pmprogateway_stripe.php:190
3362
  #: classes/gateways/class.pmprogateway_stripe.php:192
3363
  #: classes/gateways/class.pmprogateway_stripe.php:199
3366
  #: classes/gateways/class.pmprogateway_stripe.php:1188
3367
  #: classes/gateways/class.pmprogateway_stripe.php:1202
3368
  #: classes/gateways/class.pmprogateway_stripe.php:1203
3369
+ #: classes/gateways/class.pmprogateway_stripe.php:1204
3370
  msgid "Error creating customer record with Stripe:"
3371
  msgstr ""
3372
 
3373
+ #: classes/gateways/class.pmprogateway_stripe.php:1261
3374
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
3375
  #: classes/gateways/class.pmprogateway_stripe.php:278
3376
  #: classes/gateways/class.pmprogateway_stripe.php:279
3377
  #: classes/gateways/class.pmprogateway_stripe.php:286
3382
  #: classes/gateways/class.pmprogateway_stripe.php:1245
3383
  #: classes/gateways/class.pmprogateway_stripe.php:1259
3384
  #: classes/gateways/class.pmprogateway_stripe.php:1260
3385
+ #: classes/gateways/class.pmprogateway_stripe.php:1261
3386
  #: classes/gateways/class.pmprogateway_stripe.php:1390
3387
  #: classes/gateways/class.pmprogateway_stripe.php:1391
3388
  #: classes/gateways/class.pmprogateway_stripe.php:1409
3389
  #: classes/gateways/class.pmprogateway_stripe.php:1410
3390
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
3391
  msgid "Error creating plan with Stripe:"
3392
  msgstr ""
3393
 
3394
+ #: classes/gateways/class.pmprogateway_stripe.php:1442
3395
  #: classes/gateways/class.pmprogateway_stripe.php:294
3396
  #: classes/gateways/class.pmprogateway_stripe.php:295
3397
  #: classes/gateways/class.pmprogateway_stripe.php:302
3403
  #: classes/gateways/class.pmprogateway_stripe.php:1422
3404
  #: classes/gateways/class.pmprogateway_stripe.php:1440
3405
  #: classes/gateways/class.pmprogateway_stripe.php:1441
3406
+ #: classes/gateways/class.pmprogateway_stripe.php:1442
3407
  msgid "Error subscribing customer to plan with Stripe:"
3408
  msgstr ""
3409
 
3410
+ #: classes/gateways/class.pmprogateway_stripe.php:1538
3411
  #: classes/gateways/class.pmprogateway_stripe.php:383
3412
  #: classes/gateways/class.pmprogateway_stripe.php:389
3413
  #: classes/gateways/class.pmprogateway_stripe.php:410
3416
  #: classes/gateways/class.pmprogateway_stripe.php:1518
3417
  #: classes/gateways/class.pmprogateway_stripe.php:1536
3418
  #: classes/gateways/class.pmprogateway_stripe.php:1537
3419
+ #: classes/gateways/class.pmprogateway_stripe.php:1538
3420
  msgid "Could not cancel old subscription."
3421
  msgstr ""
3422
 
3423
+ #: classes/gateways/class.pmprogateway_stripe.php:1555
3424
  #: classes/gateways/class.pmprogateway_stripe.php:1533
3425
  #: classes/gateways/class.pmprogateway_stripe.php:1534
3426
  #: classes/gateways/class.pmprogateway_stripe.php:1535
3427
  #: classes/gateways/class.pmprogateway_stripe.php:1553
3428
  #: classes/gateways/class.pmprogateway_stripe.php:1554
3429
+ #: classes/gateways/class.pmprogateway_stripe.php:1555
3430
  msgid "Could not find the customer."
3431
  msgstr ""
3432
 
3433
  #: classes/gateways/class.pmprogateway_twocheckout.php:60
3434
+ #: paid-memberships-pro.php:132
3435
  #: classes/gateways/class.pmprogateway_twocheckout.php:53
3436
+ #: classes/gateways/class.pmprogateway_twocheckout.php:60
3437
  #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
3438
  msgid "2Checkout"
3439
  msgstr ""
3440
 
3441
  #: classes/gateways/class.pmprogateway_twocheckout.php:116
3442
  #: classes/gateways/class.pmprogateway_twocheckout.php:108
3443
+ #: classes/gateways/class.pmprogateway_twocheckout.php:116
3444
  msgid "2Checkout Settings"
3445
  msgstr ""
3446
 
3447
+ #: classes/gateways/class.pmprogateway_twocheckout.php:125
3448
  #: classes/gateways/class.pmprogateway_twocheckout.php:125
3449
  msgid ""
3450
  "Go to Account &raquo; User Management in 2Checkout and create a user with "
3451
  "API Access and API Updating."
3452
  msgstr ""
3453
 
3454
+ #: classes/gateways/class.pmprogateway_twocheckout.php:134
3455
  #: classes/gateways/class.pmprogateway_twocheckout.php:134
3456
  msgid "Password for the API user created."
3457
  msgstr ""
3458
 
3459
+ #: classes/gateways/class.pmprogateway_twocheckout.php:139
3460
  #: classes/gateways/class.pmprogateway_twocheckout.php:139
3461
  msgid "API Private Key"
3462
  msgstr ""
3463
 
3464
+ #: classes/gateways/class.pmprogateway_twocheckout.php:143
3465
  #: classes/gateways/class.pmprogateway_twocheckout.php:143
3466
  msgid ""
3467
  "Go to API in 2Checkout and generate a new key pair. Paste the Private Key "
3468
  "here."
3469
  msgstr ""
3470
 
3471
+ #: classes/gateways/class.pmprogateway_twocheckout.php:152
3472
  #: classes/gateways/class.pmprogateway_twocheckout.php:152
3473
  msgid "Click on the profile icon in 2Checkout to find your Account Number."
3474
  msgstr ""
3476
  #: classes/gateways/class.pmprogateway_twocheckout.php:157
3477
  #: adminpages/paymentsettings.php:355 adminpages/paymentsettings.php:360
3478
  #: classes/gateways/class.pmprogateway_twocheckout.php:137
3479
+ #: classes/gateways/class.pmprogateway_twocheckout.php:157
3480
  msgid "Secret Word"
3481
  msgstr ""
3482
 
3483
+ #: classes/gateways/class.pmprogateway_twocheckout.php:161
3484
  #: classes/gateways/class.pmprogateway_twocheckout.php:161
3485
  msgid ""
3486
  "Go to Account &raquo; Site Management. Look under Checkout Options to find "
3491
  #: adminpages/paymentsettings.php:487 adminpages/paymentsettings.php:493
3492
  #: adminpages/paymentsettings.php:495
3493
  #: classes/gateways/class.pmprogateway_twocheckout.php:145
3494
+ #: classes/gateways/class.pmprogateway_twocheckout.php:166
3495
  msgid "TwoCheckout INS URL"
3496
  msgstr ""
3497
 
3498
+ #: classes/gateways/class.pmprogateway_twocheckout.php:169
3499
  #: classes/gateways/class.pmprogateway_twocheckout.php:169
3500
  msgid ""
3501
  "To fully integrate with 2Checkout, be sure to use the following for your INS "
3504
 
3505
  #: classes/gateways/class.pmprogateway_twocheckout.php:214
3506
  #: classes/gateways/class.pmprogateway_twocheckout.php:192
3507
+ #: classes/gateways/class.pmprogateway_twocheckout.php:214
3508
  msgid "Check Out with 2Checkout"
3509
  msgstr ""
3510
 
3517
  #: includes/adminpages.php:48 includes/adminpages.php:118
3518
  #: includes/adminpages.php:10 includes/adminpages.php:48
3519
  #: includes/adminpages.php:49 includes/adminpages.php:107
3520
+ #: includes/adminpages.php:114 includes/adminpages.php:118
3521
  msgid "Page Settings"
3522
  msgstr ""
3523
 
3524
  #: includes/adminpages.php:49 includes/adminpages.php:125
3525
  #: includes/adminpages.php:11 includes/adminpages.php:49
3526
  #: includes/adminpages.php:54 includes/adminpages.php:114
3527
+ #: includes/adminpages.php:121 includes/adminpages.php:125
3528
  msgid "Payment Settings"
3529
  msgstr ""
3530
 
3531
  #: includes/adminpages.php:54 includes/adminpages.php:160
3532
  #: includes/adminpages.php:16 includes/adminpages.php:54
3533
  #: includes/adminpages.php:79 includes/adminpages.php:149
3534
+ #: includes/adminpages.php:156 includes/adminpages.php:160
3535
  msgid "Reports"
3536
  msgstr ""
3537
 
3538
  #: includes/adminpages.php:56 includes/adminpages.php:174
3539
  #: includes/adminpages.php:18 includes/adminpages.php:56
3540
  #: includes/adminpages.php:89 includes/adminpages.php:163
3541
+ #: includes/adminpages.php:170 includes/adminpages.php:174
3542
  msgid "Discount Codes"
3543
  msgstr ""
3544
 
3545
  #: includes/adminpages.php:104 includes/adminpages.php:100
3546
+ #: includes/adminpages.php:104
3547
  msgid "<span class=\"ab-icon\"></span>Memberships"
3548
  msgstr ""
3549
 
3550
  #: includes/adminpages.php:265 includes/adminpages.php:261
3551
+ #: includes/adminpages.php:265
3552
  msgid "Docs"
3553
  msgstr ""
3554
 
3555
  #: includes/adminpages.php:265 includes/adminpages.php:261
3556
+ #: includes/adminpages.php:265
3557
  msgid "View PMPro Documentation"
3558
  msgstr ""
3559
 
3560
  #: includes/adminpages.php:266 includes/adminpages.php:262
3561
+ #: includes/adminpages.php:266
3562
  msgid "Support"
3563
  msgstr ""
3564
 
3565
  #: includes/adminpages.php:266 includes/adminpages.php:262
3566
+ #: includes/adminpages.php:266
3567
  msgid "Visit Customer Support Forum"
3568
  msgstr ""
3569
 
3883
  msgid "Membership expires after %d %s."
3884
  msgstr ""
3885
 
3886
+ #: includes/functions.php:615 includes/functions.php:491
3887
  #: includes/functions.php:514 includes/functions.php:525
3888
  #: includes/functions.php:536 includes/functions.php:537
3889
  #: includes/functions.php:538 includes/functions.php:545
3890
  #: includes/functions.php:569 includes/functions.php:570
3891
+ #: includes/functions.php:576 includes/functions.php:592
3892
  msgid "User ID not found."
3893
  msgstr ""
3894
 
3895
+ #: includes/functions.php:635 includes/functions.php:508
3896
  #: includes/functions.php:531 includes/functions.php:542
3897
  #: includes/functions.php:553 includes/functions.php:554
3898
  #: includes/functions.php:555 includes/functions.php:562
3899
  #: includes/functions.php:586 includes/functions.php:587
3900
  #: includes/functions.php:589 includes/functions.php:596
3901
+ #: includes/functions.php:612
3902
  msgid "Invalid level."
3903
  msgstr ""
3904
 
3905
+ #: includes/functions.php:646 includes/functions.php:520
3906
  #: includes/functions.php:542 includes/functions.php:553
3907
  #: includes/functions.php:564 includes/functions.php:565
3908
  #: includes/functions.php:566 includes/functions.php:573
3909
  #: includes/functions.php:597 includes/functions.php:598
3910
  #: includes/functions.php:600 includes/functions.php:607
3911
+ #: includes/functions.php:623
3912
  msgid "not changing?"
3913
  msgstr ""
3914
 
3915
+ #: includes/functions.php:663 includes/functions.php:722
3916
+ #: includes/functions.php:746 includes/functions.php:537
3917
  #: includes/functions.php:559 includes/functions.php:570
3918
  #: includes/functions.php:581 includes/functions.php:582
3919
  #: includes/functions.php:583 includes/functions.php:590
3928
  #: includes/functions.php:673 includes/functions.php:674
3929
  #: includes/functions.php:676 includes/functions.php:683
3930
  #: includes/functions.php:697 includes/functions.php:698
3931
+ #: includes/functions.php:699 includes/functions.php:700
3932
+ #: includes/functions.php:707 includes/functions.php:723
3933
  msgid "Error interacting with database"
3934
  msgstr ""
3935
 
3936
+ #: includes/functions.php:787 includes/functions.php:826
3937
  #: includes/functions.php:629 includes/functions.php:651
3938
  #: includes/functions.php:667 includes/functions.php:668
3939
  #: includes/functions.php:678 includes/functions.php:681
3944
  #: includes/functions.php:737 includes/functions.php:738
3945
  #: includes/functions.php:739 includes/functions.php:741
3946
  #: includes/functions.php:748 includes/functions.php:753
3947
+ #: includes/functions.php:764 includes/functions.php:777
3948
+ #: includes/functions.php:778 includes/functions.php:780
3949
+ #: includes/functions.php:787 includes/functions.php:803
3950
  msgid "Membership level not found."
3951
  msgstr ""
3952
 
3953
+ #: includes/functions.php:1196 includes/functions.php:1100
3954
  #: includes/functions.php:1101 includes/functions.php:1118
3955
  #: includes/functions.php:1142 includes/functions.php:1143
3956
  #: includes/functions.php:1150 includes/functions.php:1157
3957
+ #: includes/functions.php:1173
3958
  msgid "No code was given to check."
3959
  msgstr ""
3960
 
3961
+ #: includes/functions.php:1205 includes/functions.php:1050
3962
  #: includes/functions.php:1072 includes/functions.php:1088
3963
  #: includes/functions.php:1099 includes/functions.php:1102
3964
  #: includes/functions.php:1109 includes/functions.php:1110
3965
  #: includes/functions.php:1112 includes/functions.php:1113
3966
  #: includes/functions.php:1127 includes/functions.php:1151
3967
  #: includes/functions.php:1152 includes/functions.php:1159
3968
+ #: includes/functions.php:1166 includes/functions.php:1182
3969
  msgid "The discount code could not be found."
3970
  msgstr ""
3971
 
3972
+ #: includes/functions.php:1220 includes/functions.php:1066
3973
  #: includes/functions.php:1088 includes/functions.php:1104
3974
  #: includes/functions.php:1115 includes/functions.php:1118
3975
  #: includes/functions.php:1124 includes/functions.php:1125
3976
  #: includes/functions.php:1128 includes/functions.php:1129
3977
  #: includes/functions.php:1142 includes/functions.php:1166
3978
  #: includes/functions.php:1167 includes/functions.php:1174
3979
+ #: includes/functions.php:1181 includes/functions.php:1197
3980
  #, php-format
3981
  msgid "This discount code goes into effect on %s."
3982
  msgstr ""
3983
 
3984
+ #: includes/functions.php:1227 includes/functions.php:1075
3985
  #: includes/functions.php:1097 includes/functions.php:1113
3986
  #: includes/functions.php:1124 includes/functions.php:1127
3987
  #: includes/functions.php:1131 includes/functions.php:1132
3988
  #: includes/functions.php:1137 includes/functions.php:1138
3989
  #: includes/functions.php:1149 includes/functions.php:1173
3990
  #: includes/functions.php:1174 includes/functions.php:1181
3991
+ #: includes/functions.php:1188 includes/functions.php:1204
3992
  #, php-format
3993
  msgid "This discount code expired on %s."
3994
  msgstr ""
3995
 
3996
+ #: includes/functions.php:1237 includes/functions.php:1087
3997
  #: includes/functions.php:1109 includes/functions.php:1125
3998
  #: includes/functions.php:1136 includes/functions.php:1139
3999
  #: includes/functions.php:1141 includes/functions.php:1142
4000
  #: includes/functions.php:1149 includes/functions.php:1150
4001
  #: includes/functions.php:1159 includes/functions.php:1183
4002
  #: includes/functions.php:1184 includes/functions.php:1191
4003
+ #: includes/functions.php:1198 includes/functions.php:1214
4004
  msgid "This discount code is no longer valid."
4005
  msgstr ""
4006
 
4007
+ #: includes/functions.php:1250 includes/functions.php:1102
4008
  #: includes/functions.php:1124 includes/functions.php:1140
4009
  #: includes/functions.php:1151 includes/functions.php:1154
4010
  #: includes/functions.php:1155 includes/functions.php:1164
4011
  #: includes/functions.php:1165 includes/functions.php:1172
4012
  #: includes/functions.php:1196 includes/functions.php:1197
4013
  #: includes/functions.php:1204 includes/functions.php:1211
4014
+ #: includes/functions.php:1227
4015
  msgid "This discount code does not apply to this membership level."
4016
  msgstr ""
4017
 
4018
+ #: includes/functions.php:1276 includes/functions.php:1110
4019
  #: includes/functions.php:1132 includes/functions.php:1148
4020
  #: includes/functions.php:1159 includes/functions.php:1162
4021
  #: includes/functions.php:1172 includes/functions.php:1180
4022
  #: includes/functions.php:1181 includes/functions.php:1182
4023
  #: includes/functions.php:1198 includes/functions.php:1222
4024
  #: includes/functions.php:1223 includes/functions.php:1230
4025
+ #: includes/functions.php:1237 includes/functions.php:1253
4026
  msgid "This discount code is okay."
4027
  msgstr ""
4028
 
4029
+ #: includes/functions.php:1301 includes/functions.php:1134
4030
  #: includes/functions.php:1156 includes/functions.php:1172
4031
  #: includes/functions.php:1183 includes/functions.php:1186
4032
  #: includes/functions.php:1196 includes/functions.php:1205
4033
  #: includes/functions.php:1206 includes/functions.php:1223
4034
  #: includes/functions.php:1247 includes/functions.php:1248
4035
  #: includes/functions.php:1255 includes/functions.php:1262
4036
+ #: includes/functions.php:1278
4037
  msgid "and"
4038
  msgstr ""
4039
 
4040
+ #: includes/functions.php:1496 includes/functions.php:1319
4041
  #: includes/functions.php:1341 includes/functions.php:1361
4042
  #: includes/functions.php:1372 includes/functions.php:1375
4043
  #: includes/functions.php:1385 includes/functions.php:1394
4044
  #: includes/functions.php:1395 includes/functions.php:1412
4045
  #: includes/functions.php:1436 includes/functions.php:1437
4046
  #: includes/functions.php:1450 includes/functions.php:1457
4047
+ #: includes/functions.php:1473
4048
  msgid "Sign Up for !!name!! Now"
4049
  msgstr ""
4050
 
4051
+ #: includes/functions.php:1502 includes/functions.php:1325
4052
  #: includes/functions.php:1347 includes/functions.php:1367
4053
  #: includes/functions.php:1378 includes/functions.php:1381
4054
  #: includes/functions.php:1391 includes/functions.php:1400
4055
  #: includes/functions.php:1401 includes/functions.php:1418
4056
  #: includes/functions.php:1442 includes/functions.php:1443
4057
  #: includes/functions.php:1456 includes/functions.php:1463
4058
+ #: includes/functions.php:1479
4059
  msgid "Please specify a level id."
4060
  msgstr ""
4061
 
4062
+ #: includes/init.php:237 includes/profile.php:39 includes/init.php:229
4063
+ #: includes/init.php:232 includes/init.php:233 includes/init.php:235
4064
+ #: includes/init.php:237 includes/profile.php:37 includes/profile.php:39
4065
  msgid "None"
4066
  msgstr ""
4067
 
4068
+ #: includes/license.php:51
4069
+ msgid "Your license key has been validated."
4070
+ msgstr ""
4071
+
4072
+ #: includes/license.php:81
4073
+ msgid "Paid Memberships Pro Support License"
4074
+ msgstr ""
4075
+
4076
+ #: includes/license.php:86
4077
+ msgid "License Key"
4078
+ msgstr ""
4079
+
4080
+ #: includes/license.php:89
4081
+ msgid ""
4082
+ "Enter your support license key.</strong> Your license key can be found in "
4083
+ "your membership email receipt or in your <a href=\"http://www."
4084
+ "paidmembershipspro.com/login/?redirect_to=/membership-account/\" target="
4085
+ "\"_blank\">Membership Account</a>."
4086
+ msgstr ""
4087
+
4088
+ #: includes/license.php:91
4089
+ msgid ""
4090
+ "Visit the PMPro <a href=\"http://www.paidmembershipspro.com/login/?"
4091
+ "redirect_to=/membership-account/\" target=\"_blank\">Membership Account</a> "
4092
+ "page to confirm that your account is active and to find your license key."
4093
+ msgstr ""
4094
+
4095
+ #: includes/license.php:91
4096
+ msgid "Your license is invalid or expired."
4097
+ msgstr ""
4098
+
4099
+ #: includes/license.php:93
4100
+ #, php-format
4101
+ msgid ""
4102
+ "<p><strong>Thank you!</strong> A valid <strong>%s</strong> license key has "
4103
+ "been used to activate your support license on this site.</p>"
4104
+ msgstr ""
4105
+
4106
+ #: includes/license.php:100
4107
+ msgid "Enter license key here..."
4108
+ msgstr ""
4109
+
4110
+ #: includes/license.php:102
4111
+ msgid "Verify Key"
4112
+ msgstr ""
4113
+
4114
+ #: includes/license.php:273
4115
+ msgid ""
4116
+ "If you're running Paid Memberships Pro on a production website, we recommend "
4117
+ "an annual support license."
4118
+ msgstr ""
4119
+
4120
+ #: includes/license.php:273
4121
+ msgid "Invalid PMPro License Key."
4122
+ msgstr ""
4123
+
4124
+ #: includes/license.php:274
4125
+ msgid "Dismiss"
4126
+ msgstr ""
4127
+
4128
+ #: includes/license.php:274
4129
+ msgid "More Info"
4130
+ msgstr ""
4131
+
4132
  #: includes/localization.php:26 includes/localization.php:23
4133
  #: includes/localization.php:26
4134
  msgid "Day"
4180
  msgid "Current Level"
4181
  msgstr ""
4182
 
4183
+ #: includes/profile.php:60 includes/profile.php:54
4184
  msgid "Not paying."
4185
  msgstr ""
4186
 
4187
+ #: includes/profile.php:68 includes/profile.php:64
4188
  msgid ""
4189
  "This will not change the subscription at the gateway unless the 'Cancel' "
4190
  "checkbox is selected below."
4212
  "register to read."
4213
  msgstr ""
4214
 
4215
+ #: pages/billing.php:23 pages/billing.php:14 pages/billing.php:23
4216
  #, php-format
4217
  msgid "Logged in as <strong>%s</strong>."
4218
  msgstr ""
4219
 
4220
+ #: pages/billing.php:23 pages/billing.php:14 pages/billing.php:23
4221
  msgid "logout"
4222
  msgstr ""
4223
 
4224
+ #: pages/billing.php:25 pages/cancel.php:52 pages/invoice.php:109
4225
  #: pages/levels.php:13 shortcodes/pmpro_account.php:44
4226
  #: shortcodes/pmpro_account.php:123 pages/account.php:12 pages/account.php:18
4227
+ #: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
4228
+ #: pages/cancel.php:52 pages/invoice.php:109 pages/levels.php:13
4229
+ #: shortcodes/pmpro_account.php:44 shortcodes/pmpro_account.php:123
4230
  msgid "Level"
4231
  msgstr ""
4232
 
4233
+ #: pages/billing.php:27 pages/account.php:14 pages/billing.php:18
4234
+ #: pages/billing.php:27
4235
  msgid "Membership Fee"
4236
  msgstr ""
4237
 
4238
+ #: pages/billing.php:31 pages/account.php:18 pages/billing.php:22
4239
+ #: pages/billing.php:31 pages/levels.php:70
4240
  #, php-format
4241
  msgid "%s every %d %s."
4242
  msgstr ""
4243
 
4244
+ #: pages/billing.php:33 pages/account.php:20 pages/billing.php:24
4245
+ #: pages/billing.php:33 pages/levels.php:66
4246
  #, php-format
4247
  msgid "%s per %s."
4248
  msgstr ""
4249
 
4250
+ #: pages/billing.php:42 pages/account.php:25 pages/account.php:29
4251
+ #: pages/billing.php:29 pages/billing.php:33 pages/billing.php:42
4252
  msgid "Duration"
4253
  msgstr ""
4254
 
4255
+ #: pages/billing.php:52 pages/billing.php:39 pages/billing.php:43
4256
+ #: pages/billing.php:52
4257
  msgid ""
4258
  "Your payment subscription is managed by PayPal. Please <a href=\"http://www."
4259
  "paypal.com\">login to PayPal here</a> to update your billing information."
4260
  msgstr ""
4261
 
4262
+ #: pages/billing.php:78 pages/checkout.php:318 pages/billing.php:65
4263
+ #: pages/billing.php:69 pages/billing.php:78 pages/checkout.php:305
4264
+ #: pages/checkout.php:307 pages/checkout.php:309 pages/checkout.php:318
4265
+ #: pages/checkout.php:321 pages/checkout.php:328
4266
  msgid "First Name"
4267
  msgstr ""
4268
 
4269
+ #: pages/billing.php:82 pages/checkout.php:322 pages/billing.php:69
4270
+ #: pages/billing.php:73 pages/billing.php:82 pages/checkout.php:309
4271
+ #: pages/checkout.php:311 pages/checkout.php:313 pages/checkout.php:322
4272
+ #: pages/checkout.php:325 pages/checkout.php:332
4273
  msgid "Last Name"
4274
  msgstr ""
4275
 
4276
+ #: pages/billing.php:86 pages/checkout.php:326 pages/billing.php:73
4277
+ #: pages/billing.php:77 pages/billing.php:86 pages/checkout.php:313
4278
+ #: pages/checkout.php:315 pages/checkout.php:317 pages/checkout.php:326
4279
+ #: pages/checkout.php:329 pages/checkout.php:336
4280
  msgid "Address 1"
4281
  msgstr ""
4282
 
4283
+ #: pages/billing.php:90 pages/checkout.php:330 pages/billing.php:77
4284
+ #: pages/billing.php:81 pages/billing.php:90 pages/checkout.php:317
4285
+ #: pages/checkout.php:319 pages/checkout.php:321 pages/checkout.php:330
4286
+ #: pages/checkout.php:333 pages/checkout.php:340
4287
  msgid "Address 2"
4288
  msgstr ""
4289
 
4290
+ #: pages/billing.php:100 pages/checkout.php:340 pages/billing.php:87
4291
+ #: pages/billing.php:91 pages/billing.php:100 pages/checkout.php:327
4292
+ #: pages/checkout.php:329 pages/checkout.php:331 pages/checkout.php:340
4293
+ #: pages/checkout.php:343 pages/checkout.php:350
4294
  msgid "City"
4295
  msgstr ""
4296
 
4297
+ #: pages/billing.php:104 pages/checkout.php:344 pages/billing.php:91
4298
+ #: pages/billing.php:95 pages/billing.php:104 pages/checkout.php:331
4299
+ #: pages/checkout.php:333 pages/checkout.php:335 pages/checkout.php:344
4300
+ #: pages/checkout.php:347 pages/checkout.php:354
4301
  msgid "State"
4302
  msgstr ""
4303
 
4304
+ #: pages/billing.php:108 pages/checkout.php:348 pages/billing.php:95
4305
+ #: pages/billing.php:99 pages/billing.php:108 pages/checkout.php:335
4306
+ #: pages/checkout.php:337 pages/checkout.php:339 pages/checkout.php:348
4307
+ #: pages/checkout.php:351 pages/checkout.php:358
4308
  msgid "Postal Code"
4309
  msgstr ""
4310
 
4311
+ #: pages/billing.php:117 pages/checkout.php:357 pages/billing.php:104
4312
+ #: pages/billing.php:108 pages/billing.php:117 pages/checkout.php:344
4313
+ #: pages/checkout.php:346 pages/checkout.php:348 pages/checkout.php:357
4314
+ #: pages/checkout.php:360 pages/checkout.php:367
4315
  msgid "City, State Zip"
4316
  msgstr ""
4317
 
4318
+ #: pages/billing.php:170 pages/checkout.php:410 pages/billing.php:157
4319
+ #: pages/billing.php:161 pages/billing.php:170 pages/checkout.php:397
4320
+ #: pages/checkout.php:399 pages/checkout.php:401 pages/checkout.php:410
4321
+ #: pages/checkout.php:413 pages/checkout.php:420
4322
  msgid "Country"
4323
  msgstr ""
4324
 
4325
+ #: pages/billing.php:195 pages/checkout.php:435 pages/billing.php:182
4326
+ #: pages/billing.php:186 pages/billing.php:195 pages/checkout.php:422
4327
+ #: pages/checkout.php:424 pages/checkout.php:426 pages/checkout.php:435
4328
+ #: pages/checkout.php:438 pages/checkout.php:445
4329
  msgid "Phone"
4330
  msgstr ""
4331
 
4332
+ #: pages/billing.php:206 pages/checkout.php:216 pages/checkout.php:449
4333
+ #: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
4334
+ #: pages/checkout.php:204 pages/checkout.php:207 pages/checkout.php:209
4335
+ #: pages/checkout.php:216 pages/checkout.php:436 pages/checkout.php:438
4336
+ #: pages/checkout.php:440 pages/checkout.php:449 pages/checkout.php:453
4337
  #: pages/checkout.php:460
4338
  msgid "E-mail Address"
4339
  msgstr ""
4340
 
4341
+ #: pages/billing.php:210 pages/checkout.php:458 pages/billing.php:197
4342
+ #: pages/billing.php:201 pages/billing.php:210 pages/checkout.php:445
4343
+ #: pages/checkout.php:447 pages/checkout.php:449 pages/checkout.php:458
4344
+ #: pages/checkout.php:462 pages/checkout.php:469
4345
  msgid "Confirm E-mail"
4346
  msgstr ""
4347
 
4348
+ #: pages/billing.php:230 pages/billing.php:217 pages/billing.php:221
4349
+ #: pages/billing.php:230
4350
  msgid "Credit Card Information"
4351
  msgstr ""
4352
 
4353
+ #: pages/billing.php:230 pages/billing.php:217 pages/billing.php:221
4354
+ #: pages/billing.php:230
4355
  #, php-format
4356
  msgid "We accept %s"
4357
  msgstr ""
4358
 
4359
+ #: pages/billing.php:353 pages/billing.php:309 pages/billing.php:313
4360
+ #: pages/billing.php:344 pages/billing.php:353
4361
  msgid ""
4362
  "This subscription is not recurring. So you don't need to update your billing "
4363
  "information."
4393
  msgid "Click here to go to the home page."
4394
  msgstr ""
4395
 
4396
+ #: pages/checkout.php:35 pages/checkout.php:26 pages/checkout.php:27
4397
+ #: pages/checkout.php:28 pages/checkout.php:35
4398
  msgid ""
4399
  "Almost done. Review the membership information and pricing below then "
4400
  "<strong>click the \"Complete Payment\" button</strong> to finish your order."
4401
  msgstr ""
4402
 
4403
+ #: pages/checkout.php:42 pages/checkout.php:33 pages/checkout.php:34
4404
+ #: pages/checkout.php:35 pages/checkout.php:42
4405
  msgid "change"
4406
  msgstr ""
4407
 
4408
+ #: pages/checkout.php:50 pages/checkout.php:41 pages/checkout.php:42
4409
+ #: pages/checkout.php:43 pages/checkout.php:50
4410
  #, php-format
4411
  msgid "You have selected the <strong>%s</strong> membership level."
4412
  msgstr ""
4413
 
4414
+ #: pages/checkout.php:60 pages/checkout.php:51 pages/checkout.php:53
4415
+ #: pages/checkout.php:60
4416
  #, php-format
4417
  msgid ""
4418
  "<p class=\"pmpro_level_discount_applied\">The <strong>%s</strong> code has "
4419
  "been applied to your order.</p>"
4420
  msgstr ""
4421
 
4422
+ #: pages/checkout.php:71 services/applydiscountcode.php:89
4423
  #: pages/checkout.php:62 pages/checkout.php:63 pages/checkout.php:64
4424
+ #: pages/checkout.php:71 services/applydiscountcode.php:74
4425
+ #: services/applydiscountcode.php:75 services/applydiscountcode.php:78
4426
+ #: services/applydiscountcode.php:89
4427
  msgid "Click here to change your discount code"
4428
  msgstr ""
4429
 
4430
+ #: pages/checkout.php:73 pages/checkout.php:64 pages/checkout.php:65
4431
+ #: pages/checkout.php:66 pages/checkout.php:73
4432
  msgid "Click here to enter your discount code"
4433
  msgstr ""
4434
 
4435
+ #: pages/checkout.php:73 pages/checkout.php:64 pages/checkout.php:65
4436
+ #: pages/checkout.php:66 pages/checkout.php:73
4437
  msgid "Do you have a discount code?"
4438
  msgstr ""
4439
 
4440
+ #: pages/checkout.php:172 pages/checkout.php:160 pages/checkout.php:163
4441
+ #: pages/checkout.php:165 pages/checkout.php:172
4442
  msgid "Account Information"
4443
  msgstr ""
4444
 
4445
+ #: pages/checkout.php:172 pages/checkout.php:160 pages/checkout.php:163
4446
+ #: pages/checkout.php:165 pages/checkout.php:172
4447
  msgid "Already have an account?"
4448
  msgstr ""
4449
 
4450
+ #: pages/checkout.php:172 pages/checkout.php:160 pages/checkout.php:163
4451
+ #: pages/checkout.php:165 pages/checkout.php:172
4452
  msgid "Log in here"
4453
  msgstr ""
4454
 
4455
+ #: pages/checkout.php:198 pages/checkout.php:186 pages/checkout.php:189
4456
+ #: pages/checkout.php:191 pages/checkout.php:198
4457
  msgid "Confirm Password"
4458
  msgstr ""
4459
 
4460
+ #: pages/checkout.php:225 pages/checkout.php:213 pages/checkout.php:216
4461
+ #: pages/checkout.php:218 pages/checkout.php:225
4462
  msgid "Confirm E-mail Address"
4463
  msgstr ""
4464
 
4465
+ #: pages/checkout.php:244 pages/checkout.php:232 pages/checkout.php:235
4466
+ #: pages/checkout.php:237 pages/checkout.php:244
4467
  msgid "Full Name"
4468
  msgstr ""
4469
 
4470
+ #: pages/checkout.php:245 pages/checkout.php:233 pages/checkout.php:236
4471
+ #: pages/checkout.php:238 pages/checkout.php:245
4472
  msgid "LEAVE THIS BLANK"
4473
  msgstr ""
4474
 
4475
+ #: pages/checkout.php:269 pages/checkout.php:257 pages/checkout.php:260
4476
+ #: pages/checkout.php:262 pages/checkout.php:269
4477
  #, php-format
4478
  msgid ""
4479
  "You are logged in as <strong>%s</strong>. If you would like to use a "
4480
  "different account for this membership, <a href=\"%s\">log out now</a>."
4481
  msgstr ""
4482
 
4483
+ #: pages/checkout.php:285 pages/checkout.php:276 pages/checkout.php:278
4484
+ #: pages/checkout.php:285 pages/checkout.php:292 pages/checkout.php:299
4485
  msgid "Choose your Payment Method"
4486
  msgstr ""
4487
 
4488
+ #: pages/checkout.php:293 pages/checkout.php:284 pages/checkout.php:286
4489
+ #: pages/checkout.php:293 pages/checkout.php:300 pages/checkout.php:307
4490
  msgid "Check Out with a Credit Card Here"
4491
  msgstr ""
4492
 
4493
+ #: pages/checkout.php:681 pages/checkout.php:277 pages/checkout.php:284
4494
  #: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
4495
+ #: pages/checkout.php:681
4496
  #, php-format
4497
  msgid "I agree to the %s"
4498
  msgstr ""
4499
 
4500
+ #: pages/checkout.php:701 pages/checkout.php:667 pages/checkout.php:674
4501
  #: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
4502
+ #: pages/checkout.php:701
4503
  msgid "Complete Payment"
4504
  msgstr ""
4505
 
4506
+ #: pages/checkout.php:723 pages/checkout.php:687 pages/checkout.php:694
4507
  #: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
4508
+ #: pages/checkout.php:723
4509
  msgid "Processing..."
4510
  msgstr ""
4511
 
4646
  msgid "&larr; Return to Home"
4647
  msgstr ""
4648
 
4649
+ #: paid-memberships-pro.php:123 adminpages/orders.php:398
4650
  #: adminpages/orders.php:448 paid-memberships-pro.php:115
4651
  #: paid-memberships-pro.php:116
4652
  msgid "Testing Only"
4653
  msgstr ""
4654
 
4655
+ #: paid-memberships-pro.php:128 paid-memberships-pro.php:120
4656
  #: paid-memberships-pro.php:121
4657
  msgid "PayPal Payflow Pro/PayPal Pro"
4658
  msgstr ""
4659
 
4660
+ #: paid-memberships-pro.php:133 paid-memberships-pro.php:125
4661
  #: paid-memberships-pro.php:126
4662
  msgid "Cybersource"
4663
  msgstr ""
4726
  msgid "Error updating billing information."
4727
  msgstr ""
4728
 
4729
+ #: preheaders/cancel.php:28 preheaders/cancel.php:24 preheaders/cancel.php:25
4730
+ #: preheaders/cancel.php:28
4731
  msgid "Your membership has been cancelled."
4732
  msgstr ""
4733
 
4747
  msgid "Checkout: Payment Information"
4748
  msgstr ""
4749
 
4750
+ #: preheaders/checkout.php:100 preheaders/checkout.php:100
4751
+ msgid "Set Up Your Account"
 
 
4752
  msgstr ""
4753
 
4754
  #: preheaders/checkout.php:300 preheaders/checkout.php:300
4815
  #: preheaders/checkout.php:665 preheaders/checkout.php:691
4816
  #: preheaders/checkout.php:709 preheaders/checkout.php:710
4817
  msgid ""
4818
+ "Unknown error generating account. Please contact us to set up your "
4819
+ "membership."
4820
  msgstr ""
4821
 
4822
+ #: preheaders/checkout.php:571 preheaders/checkout.php:550
4823
  #: preheaders/checkout.php:552 preheaders/checkout.php:569
4824
+ #: preheaders/checkout.php:571 preheaders/checkout.php:785
4825
+ #: preheaders/checkout.php:792 preheaders/checkout.php:797
4826
+ #: preheaders/checkout.php:825 preheaders/checkout.php:844
4827
+ #: preheaders/checkout.php:859 preheaders/checkout.php:860
4828
  msgid ""
4829
  "Your payment was accepted, but there was an error setting up your account. "
4830
  "Please contact us."
4831
  msgstr ""
4832
 
4833
+ #: preheaders/checkout.php:712 preheaders/checkout.php:691
4834
  #: preheaders/checkout.php:693 preheaders/checkout.php:710
4835
+ #: preheaders/checkout.php:712 preheaders/checkout.php:953
4836
+ #: preheaders/checkout.php:960 preheaders/checkout.php:970
4837
+ #: preheaders/checkout.php:983 preheaders/checkout.php:1030
4838
+ #: preheaders/checkout.php:1045 preheaders/checkout.php:1046
4839
  msgid ""
4840
  "IMPORTANT: Something went wrong during membership creation. Your credit card "
4841
  "authorized, but we cancelled the order immediately. You should not try to "
4842
  "submit this form again. Please contact the site owner to fix this issue."
4843
  msgstr ""
4844
 
4845
+ #: preheaders/checkout.php:715 preheaders/checkout.php:694
4846
  #: preheaders/checkout.php:696 preheaders/checkout.php:713
4847
+ #: preheaders/checkout.php:715 preheaders/checkout.php:956
4848
+ #: preheaders/checkout.php:963 preheaders/checkout.php:973
4849
+ #: preheaders/checkout.php:988 preheaders/checkout.php:1035
4850
+ #: preheaders/checkout.php:1050 preheaders/checkout.php:1051
4851
  msgid ""
4852
  "IMPORTANT: Something went wrong during membership creation. Your credit card "
4853
  "was charged, but we couldn't assign your membership. You should not submit "
4854
  "this form again. Please contact the site owner to fix this issue."
4855
  msgstr ""
4856
 
4857
+ #: preheaders/checkout.php:726 preheaders/checkout.php:705
4858
  #: preheaders/checkout.php:707 preheaders/checkout.php:724
4859
+ #: preheaders/checkout.php:726 preheaders/checkout.php:967
4860
+ #: preheaders/checkout.php:974 preheaders/checkout.php:984
4861
+ #: preheaders/checkout.php:1001 preheaders/checkout.php:1048
4862
+ #: preheaders/checkout.php:1063 preheaders/checkout.php:1064
4863
  #, php-format
4864
  msgid ""
4865
+ "You must <a href=\"%s\">set up a Payment Gateway</a> before any payments "
4866
+ "will be processed."
4867
  msgstr ""
4868
 
4869
+ #: preheaders/checkout.php:728 preheaders/checkout.php:707
4870
  #: preheaders/checkout.php:709 preheaders/checkout.php:726
4871
+ #: preheaders/checkout.php:728 preheaders/checkout.php:969
4872
+ #: preheaders/checkout.php:976 preheaders/checkout.php:986
4873
+ #: preheaders/checkout.php:1003 preheaders/checkout.php:1050
4874
+ #: preheaders/checkout.php:1065 preheaders/checkout.php:1066
4875
  msgid "A Payment Gateway must be set up before any payments will be processed."
4876
  msgstr ""
4877
 
4984
  msgid "Member Links"
4985
  msgstr ""
4986
 
4987
+ #: adminpages/addons.php:79
4988
+ msgid "Disabled"
4989
+ msgstr ""
4990
+
4991
+ #: adminpages/addons.php:79
4992
+ msgid "Enabled"
4993
+ msgstr ""
4994
+
4995
  #: adminpages/discountcodes.php:437
4996
  msgid "Billing Ammount"
4997
  msgstr ""
5034
  msgid "every"
5035
  msgstr ""
5036
 
5037
+ #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:572
5038
+ #: adminpages/membershiplevels.php:574 adminpages/membershiplevels.php:580
5039
+ #: adminpages/membershiplevels.php:601 adminpages/membershiplevels.php:660
5040
+ #, php-format
5041
+ msgid ""
5042
+ "Are you sure you want to delete membership level %s? All subscriptions will "
5043
+ "be cancelled."
5044
+ msgstr ""
5045
+
5046
  #: adminpages/memberslist.php:184 adminpages/memberslist.php:212
5047
  msgid "Never"
5048
  msgstr ""
5191
  #, php-format
5192
  msgid "%s after %d %s."
5193
  msgstr ""
5194
+
5195
+ #: preheaders/checkout.php:99 preheaders/checkout.php:100
5196
+ #: preheaders/checkout.php:102 preheaders/checkout.php:109
5197
+ msgid "Set up Your Account"
5198
+ msgstr ""
languages/pmpro.pot CHANGED
@@ -5,7 +5,7 @@
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: pmpro\n"
8
- "POT-Creation-Date: 2015-05-20 11:36-0400\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: \n"
11
  "Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
@@ -13,26 +13,161 @@ msgstr ""
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
 
 
 
 
 
 
 
16
  #: adminpages/addons.php:5 adminpages/advancedsettings.php:5
17
  #: adminpages/discountcodes.php:5 adminpages/emailsettings.php:5
18
  #: adminpages/membershiplevels.php:5 adminpages/memberslist-csv.php:5
19
  #: adminpages/memberslist.php:5 adminpages/orders-csv.php:5
20
  #: adminpages/orders.php:5 adminpages/pagesettings.php:5
21
- #: adminpages/paymentsettings.php:5 adminpages/addons.php:5
22
- #: adminpages/advancedsettings.php:5 adminpages/discountcodes.php:5
23
- #: adminpages/emailsettings.php:5 adminpages/membershiplevels.php:5
24
- #: adminpages/memberslist-csv.php:5 adminpages/memberslist.php:5
25
- #: adminpages/orders-csv.php:5 adminpages/orders.php:5
26
- #: adminpages/pagesettings.php:5 adminpages/paymentsettings.php:5
27
  msgid "You do not have permissions to perform this action."
28
  msgstr ""
29
 
30
- #: adminpages/addons.php:79 adminpages/addons.php:79
31
- msgid "Disabled"
 
 
 
 
 
 
32
  msgstr ""
33
 
34
- #: adminpages/addons.php:79 adminpages/addons.php:79
35
- msgid "Enabled"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  msgstr ""
37
 
38
  #: adminpages/admin_header.php:25 adminpages/admin_header.php:25
@@ -119,52 +254,47 @@ msgstr ""
119
  msgid "User Forum"
120
  msgstr ""
121
 
122
- #: adminpages/admin_header.php:150 adminpages/membershiplevels.php:569
123
  #: adminpages/pagesettings.php:69 includes/adminpages.php:64
124
  #: includes/adminpages.php:65 includes/adminpages.php:111
125
  #: adminpages/admin_header.php:128 adminpages/admin_header.php:149
126
- #: adminpages/membershiplevels.php:490 adminpages/membershiplevels.php:496
127
- #: adminpages/membershiplevels.php:498 adminpages/membershiplevels.php:525
128
- #: adminpages/membershiplevels.php:526 adminpages/pagesettings.php:69
 
129
  #: includes/adminpages.php:44 includes/adminpages.php:64
130
  #: includes/adminpages.php:65 includes/adminpages.php:100
131
- #: includes/adminpages.php:107
132
  msgid "Membership Levels"
133
  msgstr ""
134
 
135
  #: adminpages/admin_header.php:154 adminpages/pagesettings.php:120
136
  #: adminpages/admin_header.php:129 adminpages/admin_header.php:150
137
- #: adminpages/pagesettings.php:92 adminpages/pagesettings.php:120
 
138
  msgid "Pages"
139
  msgstr ""
140
 
141
  #: adminpages/admin_header.php:158 adminpages/admin_header.php:130
142
- #: adminpages/admin_header.php:151
143
  msgid "Payment Gateway &amp; SSL"
144
  msgstr ""
145
 
146
- #: adminpages/admin_header.php:162 adminpages/memberslist.php:158
147
  #: shortcodes/pmpro_account.php:106 adminpages/admin_header.php:131
148
- #: adminpages/admin_header.php:152 adminpages/memberslist.php:115
149
- #: adminpages/memberslist.php:148 adminpages/memberslist.php:158
 
150
  #: pages/account.php:52 pages/account.php:56 pages/account.php:77
151
  #: shortcodes/pmpro_account.php:106
152
  msgid "Email"
153
  msgstr ""
154
 
155
  #: adminpages/admin_header.php:166 adminpages/admin_header.php:132
156
- #: adminpages/admin_header.php:153
157
  msgid "Advanced"
158
  msgstr ""
159
 
160
- #: adminpages/admin_header.php:170 includes/adminpages.php:52
161
- #: includes/adminpages.php:146 adminpages/admin_header.php:133
162
- #: adminpages/admin_header.php:154 includes/adminpages.php:14
163
- #: includes/adminpages.php:52 includes/adminpages.php:69
164
- #: includes/adminpages.php:135 includes/adminpages.php:142
165
- msgid "Add Ons"
166
- msgstr ""
167
-
168
  #: adminpages/advancedsettings.php:43 adminpages/advancedsettings.php:35
169
  #: adminpages/advancedsettings.php:42 adminpages/advancedsettings.php:43
170
  msgid "Your advanced settings have been updated."
@@ -197,7 +327,7 @@ msgstr ""
197
  #: adminpages/advancedsettings.php:86 adminpages/advancedsettings.php:88
198
  #: includes/adminpages.php:13 includes/adminpages.php:51
199
  #: includes/adminpages.php:64 includes/adminpages.php:128
200
- #: includes/adminpages.php:135
201
  msgid "Advanced Settings"
202
  msgstr ""
203
 
@@ -261,14 +391,14 @@ msgstr ""
261
  msgid "Yes - Show excerpts."
262
  msgstr ""
263
 
264
- #: adminpages/advancedsettings.php:144
265
  msgid "Hide Ads From Members?"
266
  msgstr ""
267
 
268
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
269
- #: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:658
270
  #: adminpages/paymentsettings.php:210
271
- #: classes/gateways/class.pmprogateway_stripe.php:173 includes/profile.php:101
272
  #: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
273
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:187
274
  #: adminpages/advancedsettings.php:194 adminpages/advancedsettings.php:199
@@ -276,11 +406,13 @@ msgstr ""
276
  #: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:563
277
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
278
  #: adminpages/membershiplevels.php:578 adminpages/membershiplevels.php:598
279
- #: adminpages/paymentsettings.php:210 adminpages/paymentsettings.php:414
280
- #: adminpages/paymentsettings.php:429 adminpages/paymentsettings.php:434
281
- #: adminpages/paymentsettings.php:436 adminpages/paymentsettings.php:454
282
- #: adminpages/paymentsettings.php:459 adminpages/paymentsettings.php:461
283
- #: classes/gateways/class.pmprogateway_stripe.php:173 includes/profile.php:101
 
 
284
  #: includes/profile.php:121 includes/profile.php:123
285
  msgid "No"
286
  msgstr ""
@@ -320,19 +452,20 @@ msgstr ""
320
  msgid "multisite only"
321
  msgstr ""
322
 
323
- #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:658
324
  #: adminpages/paymentsettings.php:211
325
- #: classes/gateways/class.pmprogateway_stripe.php:174 includes/profile.php:102
326
  #: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
327
  #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:563
328
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
329
  #: adminpages/membershiplevels.php:578 adminpages/membershiplevels.php:598
330
- #: adminpages/paymentsettings.php:211 adminpages/paymentsettings.php:415
331
- #: adminpages/paymentsettings.php:424 adminpages/paymentsettings.php:430
332
- #: adminpages/paymentsettings.php:435 adminpages/paymentsettings.php:437
333
- #: adminpages/paymentsettings.php:455 adminpages/paymentsettings.php:460
334
- #: adminpages/paymentsettings.php:462
335
- #: classes/gateways/class.pmprogateway_stripe.php:174 includes/profile.php:102
 
336
  #: includes/profile.php:122 includes/profile.php:124
337
  msgid "Yes"
338
  msgstr ""
@@ -389,13 +522,14 @@ msgstr ""
389
  msgid "selected"
390
  msgstr ""
391
 
392
- #: adminpages/advancedsettings.php:368 adminpages/pagesettings.php:254
393
  #: adminpages/paymentsettings.php:238 adminpages/advancedsettings.php:284
394
  #: adminpages/advancedsettings.php:355 adminpages/advancedsettings.php:368
395
  #: adminpages/pagesettings.php:209 adminpages/pagesettings.php:223
396
- #: adminpages/pagesettings.php:251 adminpages/paymentsettings.php:238
397
- #: adminpages/paymentsettings.php:485 adminpages/paymentsettings.php:526
398
- #: adminpages/paymentsettings.php:532 adminpages/paymentsettings.php:534
 
399
  msgid "Save Settings"
400
  msgstr ""
401
 
@@ -464,18 +598,20 @@ msgid "Add New Discount Code"
464
  msgstr ""
465
 
466
  #: adminpages/discountcodes.php:310 adminpages/discountcodes.php:586
467
- #: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:583
468
- #: adminpages/memberslist.php:154 adminpages/orders.php:900
469
  #: adminpages/reports/login.php:142 adminpages/discountcodes.php:306
470
  #: adminpages/discountcodes.php:309 adminpages/discountcodes.php:310
471
  #: adminpages/discountcodes.php:547 adminpages/discountcodes.php:557
472
  #: adminpages/discountcodes.php:585 adminpages/discountcodes.php:586
473
  #: adminpages/membershiplevels.php:284 adminpages/membershiplevels.php:286
474
- #: adminpages/membershiplevels.php:505 adminpages/membershiplevels.php:511
475
- #: adminpages/membershiplevels.php:513 adminpages/membershiplevels.php:540
476
- #: adminpages/membershiplevels.php:541 adminpages/memberslist.php:111
 
477
  #: adminpages/memberslist.php:144 adminpages/memberslist.php:154
478
- #: adminpages/orders.php:597 adminpages/orders.php:900
 
479
  #: adminpages/reports/login.php:140 adminpages/reports/login.php:142
480
  msgid "ID"
481
  msgstr ""
@@ -488,13 +624,13 @@ msgid "This will be generated when you save."
488
  msgstr ""
489
 
490
  #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:587
491
- #: adminpages/orders.php:265 adminpages/orders.php:901
492
  #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
493
  #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:548
494
  #: adminpages/discountcodes.php:558 adminpages/discountcodes.php:586
495
  #: adminpages/discountcodes.php:587 adminpages/orders.php:215
496
  #: adminpages/orders.php:265 adminpages/orders.php:598
497
- #: adminpages/orders.php:901
498
  msgid "Code"
499
  msgstr ""
500
 
@@ -505,14 +641,16 @@ msgstr ""
505
 
506
  #: adminpages/discountcodes.php:371
507
  #: classes/gateways/class.pmprogateway_braintree.php:321
508
- #: classes/gateways/class.pmprogateway_stripe.php:454 pages/billing.php:253
509
- #: pages/checkout.php:553 adminpages/discountcodes.php:367
510
  #: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
511
  #: classes/gateways/class.pmprogateway_braintree.php:308
512
  #: classes/gateways/class.pmprogateway_braintree.php:321
513
- #: classes/gateways/class.pmprogateway_stripe.php:454 pages/billing.php:249
514
- #: pages/billing.php:253 pages/checkout.php:508 pages/checkout.php:524
515
- #: pages/checkout.php:525 pages/checkout.php:532 pages/checkout.php:553
 
 
516
  msgid "Expiration Date"
517
  msgstr ""
518
 
@@ -534,196 +672,212 @@ msgstr ""
534
  msgid "Which Levels Will This Code Apply To?"
535
  msgstr ""
536
 
537
- #: adminpages/discountcodes.php:431 adminpages/membershiplevels.php:341
538
  #: adminpages/discountcodes.php:427 adminpages/discountcodes.php:430
539
  #: adminpages/discountcodes.php:431 adminpages/membershiplevels.php:337
540
- #: adminpages/membershiplevels.php:339 adminpages/membershiplevels.php:507
541
- #: adminpages/membershiplevels.php:513 adminpages/membershiplevels.php:515
542
- #: adminpages/membershiplevels.php:542 pages/levels.php:14
 
543
  msgid "Initial Payment"
544
  msgstr ""
545
 
546
- #: adminpages/discountcodes.php:442 adminpages/membershiplevels.php:352
547
  #: adminpages/discountcodes.php:428 adminpages/discountcodes.php:431
548
  #: adminpages/discountcodes.php:441 adminpages/discountcodes.php:442
549
  #: adminpages/membershiplevels.php:338 adminpages/membershiplevels.php:340
550
- #: adminpages/membershiplevels.php:350
551
  msgid "The initial amount collected at registration."
552
  msgstr ""
553
 
554
- #: adminpages/discountcodes.php:447 adminpages/membershiplevels.php:356
555
  #: adminpages/discountcodes.php:432 adminpages/discountcodes.php:435
556
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:447
557
  #: adminpages/membershiplevels.php:342 adminpages/membershiplevels.php:344
558
- #: adminpages/membershiplevels.php:354
559
  msgid "Recurring Subscription"
560
  msgstr ""
561
 
562
- #: adminpages/discountcodes.php:448 adminpages/membershiplevels.php:357
563
  #: adminpages/discountcodes.php:433 adminpages/discountcodes.php:436
564
  #: adminpages/discountcodes.php:447 adminpages/discountcodes.php:448
565
  #: adminpages/membershiplevels.php:343 adminpages/membershiplevels.php:345
566
- #: adminpages/membershiplevels.php:355
567
  msgid "Check if this level has a recurring subscription payment."
568
  msgstr ""
569
 
570
- #: adminpages/discountcodes.php:452 adminpages/membershiplevels.php:361
571
  #: adminpages/discountcodes.php:440 adminpages/discountcodes.php:451
572
  #: adminpages/discountcodes.php:452 adminpages/membershiplevels.php:347
573
  #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:359
 
574
  msgid "Billing Amount"
575
  msgstr ""
576
 
577
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
578
- #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
579
- #: classes/gateways/class.pmprogateway_stripe.php:521
580
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
581
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
582
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
583
  #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
584
- #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:449
585
- #: adminpages/membershiplevels.php:476 adminpages/membershiplevels.php:477
 
586
  #: classes/gateways/class.pmprogateway_stripe.php:521
 
587
  msgid "Day(s)"
588
  msgstr ""
589
 
590
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
591
- #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
592
- #: classes/gateways/class.pmprogateway_stripe.php:521
593
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
594
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
595
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
596
  #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
597
- #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:449
598
- #: adminpages/membershiplevels.php:476 adminpages/membershiplevels.php:477
 
599
  #: classes/gateways/class.pmprogateway_stripe.php:521
 
600
  msgid "Month(s)"
601
  msgstr ""
602
 
603
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
604
- #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
605
- #: classes/gateways/class.pmprogateway_stripe.php:521
606
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
607
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
608
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
609
  #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
610
- #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:449
611
- #: adminpages/membershiplevels.php:476 adminpages/membershiplevels.php:477
 
612
  #: classes/gateways/class.pmprogateway_stripe.php:521
 
613
  msgid "Week(s)"
614
  msgstr ""
615
 
616
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
617
- #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
618
- #: classes/gateways/class.pmprogateway_stripe.php:521
619
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
620
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
621
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
622
  #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
623
- #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:449
624
- #: adminpages/membershiplevels.php:476 adminpages/membershiplevels.php:477
 
625
  #: classes/gateways/class.pmprogateway_stripe.php:521
 
626
  msgid "Year(s)"
627
  msgstr ""
628
 
629
- #: adminpages/discountcodes.php:475 adminpages/membershiplevels.php:385
630
  #: adminpages/discountcodes.php:451 adminpages/discountcodes.php:454
631
  #: adminpages/discountcodes.php:474 adminpages/discountcodes.php:475
632
  #: adminpages/membershiplevels.php:362 adminpages/membershiplevels.php:364
633
- #: adminpages/membershiplevels.php:383
634
  msgid "The amount to be billed one cycle after the initial payment."
635
  msgstr ""
636
 
637
- #: adminpages/discountcodes.php:480 adminpages/membershiplevels.php:403
638
  #: adminpages/discountcodes.php:456 adminpages/discountcodes.php:459
639
  #: adminpages/discountcodes.php:479 adminpages/discountcodes.php:480
640
  #: adminpages/membershiplevels.php:380 adminpages/membershiplevels.php:382
641
- #: adminpages/membershiplevels.php:401
642
  msgid "Billing Cycle Limit"
643
  msgstr ""
644
 
645
- #: adminpages/discountcodes.php:483 adminpages/membershiplevels.php:407
646
  #: adminpages/discountcodes.php:459 adminpages/discountcodes.php:462
647
  #: adminpages/discountcodes.php:482 adminpages/discountcodes.php:483
648
  #: adminpages/membershiplevels.php:384 adminpages/membershiplevels.php:386
649
- #: adminpages/membershiplevels.php:405
650
  msgid ""
651
  "The <strong>total</strong> number of recurring billing cycles for this "
652
  "level, including the trial period (if applicable) but not including the "
653
  "initial payment. Set to zero if membership is indefinite."
654
  msgstr ""
655
 
656
- #: adminpages/discountcodes.php:488 adminpages/membershiplevels.php:416
657
  #: adminpages/discountcodes.php:464 adminpages/discountcodes.php:467
658
  #: adminpages/discountcodes.php:487 adminpages/discountcodes.php:488
659
  #: adminpages/membershiplevels.php:393 adminpages/membershiplevels.php:395
660
- #: adminpages/membershiplevels.php:414
661
  msgid "Custom Trial"
662
  msgstr ""
663
 
664
- #: adminpages/discountcodes.php:489 adminpages/membershiplevels.php:418
665
  #: adminpages/discountcodes.php:465 adminpages/discountcodes.php:468
666
  #: adminpages/discountcodes.php:488 adminpages/discountcodes.php:489
667
  #: adminpages/membershiplevels.php:394 adminpages/membershiplevels.php:395
668
  #: adminpages/membershiplevels.php:397 adminpages/membershiplevels.php:416
 
669
  msgid "Check to add a custom trial period."
670
  msgstr ""
671
 
672
- #: adminpages/discountcodes.php:493 adminpages/membershiplevels.php:427
673
  #: adminpages/discountcodes.php:469 adminpages/discountcodes.php:472
674
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:493
675
  #: adminpages/membershiplevels.php:398 adminpages/membershiplevels.php:404
676
  #: adminpages/membershiplevels.php:406 adminpages/membershiplevels.php:425
 
677
  msgid "Trial Billing Amount"
678
  msgstr ""
679
 
680
- #: adminpages/discountcodes.php:504 adminpages/membershiplevels.php:438
681
  #: adminpages/discountcodes.php:472 adminpages/discountcodes.php:475
682
  #: adminpages/discountcodes.php:503 adminpages/discountcodes.php:504
683
  #: adminpages/membershiplevels.php:401 adminpages/membershiplevels.php:407
684
  #: adminpages/membershiplevels.php:409 adminpages/membershiplevels.php:436
 
685
  msgid "for the first"
686
  msgstr ""
687
 
688
- #: adminpages/discountcodes.php:506 adminpages/membershiplevels.php:440
689
  #: adminpages/discountcodes.php:474 adminpages/discountcodes.php:477
690
  #: adminpages/discountcodes.php:505 adminpages/discountcodes.php:506
691
  #: adminpages/membershiplevels.php:403 adminpages/membershiplevels.php:409
692
  #: adminpages/membershiplevels.php:411 adminpages/membershiplevels.php:438
 
693
  msgid "subscription payments"
694
  msgstr ""
695
 
696
- #: adminpages/discountcodes.php:511 adminpages/membershiplevels.php:469
697
  #: adminpages/discountcodes.php:479 adminpages/discountcodes.php:482
698
  #: adminpages/discountcodes.php:510 adminpages/discountcodes.php:511
699
  #: adminpages/membershiplevels.php:431 adminpages/membershiplevels.php:437
700
  #: adminpages/membershiplevels.php:439 adminpages/membershiplevels.php:466
701
- #: adminpages/membershiplevels.php:467
702
  msgid "Membership Expiration"
703
  msgstr ""
704
 
705
- #: adminpages/discountcodes.php:512 adminpages/membershiplevels.php:470
706
  #: adminpages/discountcodes.php:483 adminpages/discountcodes.php:511
707
  #: adminpages/discountcodes.php:512 adminpages/membershiplevels.php:432
708
  #: adminpages/membershiplevels.php:438 adminpages/membershiplevels.php:440
709
  #: adminpages/membershiplevels.php:467 adminpages/membershiplevels.php:468
 
710
  msgid "Check this to set when membership access expires."
711
  msgstr ""
712
 
713
- #: adminpages/discountcodes.php:516 adminpages/membershiplevels.php:474
714
  #: adminpages/discountcodes.php:484 adminpages/discountcodes.php:487
715
  #: adminpages/discountcodes.php:515 adminpages/discountcodes.php:516
716
  #: adminpages/membershiplevels.php:436 adminpages/membershiplevels.php:442
717
  #: adminpages/membershiplevels.php:444 adminpages/membershiplevels.php:471
718
- #: adminpages/membershiplevels.php:472
719
  msgid "Expires In"
720
  msgstr ""
721
 
722
- #: adminpages/discountcodes.php:529 adminpages/membershiplevels.php:487
723
  #: adminpages/discountcodes.php:500 adminpages/discountcodes.php:528
724
  #: adminpages/discountcodes.php:529 adminpages/membershiplevels.php:449
725
  #: adminpages/membershiplevels.php:455 adminpages/membershiplevels.php:457
726
  #: adminpages/membershiplevels.php:484 adminpages/membershiplevels.php:485
 
727
  msgid ""
728
  "Set the duration of membership access. Note that the any future payments "
729
  "(recurring subscription, if any) will be cancelled when the membership "
@@ -755,14 +909,14 @@ msgstr ""
755
  msgid "Starts"
756
  msgstr ""
757
 
758
- #: adminpages/discountcodes.php:589 adminpages/memberslist.php:169
759
- #: adminpages/reports/login.php:147 includes/profile.php:98
760
  #: adminpages/discountcodes.php:550 adminpages/discountcodes.php:560
761
  #: adminpages/discountcodes.php:588 adminpages/discountcodes.php:589
762
  #: adminpages/memberslist.php:121 adminpages/memberslist.php:159
763
- #: adminpages/memberslist.php:169 adminpages/reports/login.php:145
764
- #: adminpages/reports/login.php:147 includes/profile.php:98
765
- #: includes/profile.php:118 includes/profile.php:120
766
  msgid "Expires"
767
  msgstr ""
768
 
@@ -786,18 +940,19 @@ msgid ""
786
  "select customers."
787
  msgstr ""
788
 
789
- #: adminpages/discountcodes.php:648 adminpages/membershiplevels.php:660
790
- #: adminpages/orders.php:979 adminpages/discountcodes.php:614
791
  #: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
792
  #: adminpages/discountcodes.php:648 adminpages/membershiplevels.php:564
793
  #: adminpages/membershiplevels.php:570 adminpages/membershiplevels.php:572
794
  #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:599
795
- #: adminpages/orders.php:658 adminpages/orders.php:961
796
- #: adminpages/orders.php:979
 
797
  msgid "edit"
798
  msgstr ""
799
 
800
- #: adminpages/discountcodes.php:651 adminpages/discountcodes.php:617
801
  #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
802
  #: adminpages/discountcodes.php:651
803
  #, php-format
@@ -807,14 +962,15 @@ msgid ""
807
  "code anymore."
808
  msgstr ""
809
 
810
- #: adminpages/discountcodes.php:651 adminpages/membershiplevels.php:660
811
- #: adminpages/orders.php:985 adminpages/discountcodes.php:617
812
  #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
813
  #: adminpages/discountcodes.php:651 adminpages/membershiplevels.php:566
814
  #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
815
  #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
816
- #: adminpages/orders.php:664 adminpages/orders.php:967
817
- #: adminpages/orders.php:985
 
818
  msgid "delete"
819
  msgstr ""
820
 
@@ -823,6 +979,7 @@ msgstr ""
823
  #: adminpages/emailsettings.php:69 includes/adminpages.php:12
824
  #: includes/adminpages.php:50 includes/adminpages.php:59
825
  #: includes/adminpages.php:121 includes/adminpages.php:128
 
826
  msgid "Email Settings"
827
  msgstr ""
828
 
@@ -927,23 +1084,27 @@ msgid ""
927
  msgstr ""
928
 
929
  #: adminpages/membershiplevels.php:120 adminpages/membershiplevels.php:118
 
930
  msgid "Membership level updated successfully."
931
  msgstr ""
932
 
933
  #: adminpages/membershiplevels.php:126 adminpages/membershiplevels.php:124
 
934
  msgid "Error updating membership level."
935
  msgstr ""
936
 
937
  #: adminpages/membershiplevels.php:143 adminpages/membershiplevels.php:141
 
938
  msgid "Membership level added successfully."
939
  msgstr ""
940
 
941
  #: adminpages/membershiplevels.php:148 adminpages/membershiplevels.php:146
 
942
  msgid "Error adding membership level."
943
  msgstr ""
944
 
945
  #: adminpages/membershiplevels.php:183 adminpages/membershiplevels.php:179
946
- #: adminpages/membershiplevels.php:181
947
  #, php-format
948
  msgid ""
949
  "There was an error canceling the subscription for user with ID=%d. You will "
@@ -952,102 +1113,105 @@ msgid ""
952
  msgstr ""
953
 
954
  #: adminpages/membershiplevels.php:186 adminpages/membershiplevels.php:182
955
- #: adminpages/membershiplevels.php:184
956
  msgid "Last Invoice"
957
  msgstr ""
958
 
959
  #: adminpages/membershiplevels.php:200 adminpages/membershiplevels.php:196
960
- #: adminpages/membershiplevels.php:198
961
  msgid "Membership level deleted successfully."
962
  msgstr ""
963
 
964
  #: adminpages/membershiplevels.php:205 adminpages/membershiplevels.php:211
965
  #: adminpages/membershiplevels.php:201 adminpages/membershiplevels.php:203
966
- #: adminpages/membershiplevels.php:207 adminpages/membershiplevels.php:209
 
967
  msgid "Error deleting membership level."
968
  msgstr ""
969
 
970
  #: adminpages/membershiplevels.php:226 adminpages/membershiplevels.php:222
971
- #: adminpages/membershiplevels.php:224
972
  msgid "Edit Membership Level"
973
  msgstr ""
974
 
975
  #: adminpages/membershiplevels.php:228 adminpages/membershiplevels.php:224
976
- #: adminpages/membershiplevels.php:226
977
  msgid "Add New Membership Level"
978
  msgstr ""
979
 
980
- #: adminpages/membershiplevels.php:295 adminpages/membershiplevels.php:584
981
  #: adminpages/reports/login.php:144 adminpages/membershiplevels.php:291
982
- #: adminpages/membershiplevels.php:293 adminpages/membershiplevels.php:506
983
- #: adminpages/membershiplevels.php:512 adminpages/membershiplevels.php:514
984
- #: adminpages/membershiplevels.php:541 adminpages/membershiplevels.php:542
 
985
  #: adminpages/reports/login.php:142 adminpages/reports/login.php:144
986
  msgid "Name"
987
  msgstr ""
988
 
989
- #: adminpages/membershiplevels.php:300 adminpages/membershiplevels.php:296
990
- #: adminpages/membershiplevels.php:298
991
- msgid "Description"
992
- msgstr ""
993
-
994
  #: adminpages/membershiplevels.php:318 adminpages/membershiplevels.php:314
995
- #: adminpages/membershiplevels.php:316
996
  msgid "Confirmation Message"
997
  msgstr ""
998
 
999
- #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:585
1000
  #: adminpages/membershiplevels.php:333 adminpages/membershiplevels.php:335
1001
- #: adminpages/membershiplevels.php:543
 
1002
  msgid "Billing Details"
1003
  msgstr ""
1004
 
1005
- #: adminpages/membershiplevels.php:372
1006
- #: classes/gateways/class.pmprogateway_stripe.php:619
1007
  #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
1008
- #: adminpages/membershiplevels.php:370
1009
  #: classes/gateways/class.pmprogateway_stripe.php:619
 
1010
  msgid "per"
1011
  msgstr ""
1012
 
1013
- #: adminpages/membershiplevels.php:387 adminpages/membershiplevels.php:366
1014
- #: adminpages/membershiplevels.php:385
1015
  msgid ""
1016
  "Stripe integration currently only supports billing periods of \"Week\", "
1017
  "\"Month\" or \"Year\"."
1018
  msgstr ""
1019
 
1020
- #: adminpages/membershiplevels.php:389 adminpages/membershiplevels.php:366
1021
  #: adminpages/membershiplevels.php:368 adminpages/membershiplevels.php:387
 
1022
  msgid ""
1023
  "Braintree integration currently only supports billing periods of \"Month\" "
1024
  "or \"Year\"."
1025
  msgstr ""
1026
 
1027
- #: adminpages/membershiplevels.php:391 adminpages/membershiplevels.php:368
1028
  #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:389
 
1029
  msgid ""
1030
  "Payflow integration currently only supports billing frequencies of 1 and "
1031
  "billing periods of \"Week\", \"Month\" or \"Year\"."
1032
  msgstr ""
1033
 
1034
- #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:372
1035
  #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:393
 
1036
  msgid ""
1037
  "After saving this level, make note of the ID and create a \"Plan\" in your "
1038
  "Braintree dashboard with the same settings and the \"Plan ID\" set to "
1039
  "<em>pmpro_#</em>, where # is the level ID."
1040
  msgstr ""
1041
 
1042
- #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:397
1043
  #: classes/gateways/class.pmprogateway_cybersource.php:101
1044
  #: classes/gateways/class.pmprogateway_paypal.php:118
1045
- #: classes/gateways/class.pmprogateway_paypalexpress.php:123
1046
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
1047
  #: adminpages/membershiplevels.php:372 adminpages/membershiplevels.php:374
1048
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:393
1049
- #: adminpages/membershiplevels.php:395 adminpages/paymentsettings.php:170
1050
- #: adminpages/paymentsettings.php:174 adminpages/paymentsettings.php:179
 
1051
  #: classes/gateways/class.pmprogateway_cybersource.php:101
1052
  #: classes/gateways/class.pmprogateway_paypal.php:118
1053
  #: classes/gateways/class.pmprogateway_paypalexpress.php:123
@@ -1055,155 +1219,161 @@ msgstr ""
1055
  msgid "Note"
1056
  msgstr ""
1057
 
1058
- #: adminpages/membershiplevels.php:397 adminpages/membershiplevels.php:374
1059
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:395
 
1060
  msgid ""
1061
  "You will need to create a \"Plan\" in your Braintree dashboard with the same "
1062
  "settings and the \"Plan ID\" set to"
1063
  msgstr ""
1064
 
1065
- #: adminpages/membershiplevels.php:409 adminpages/membershiplevels.php:386
1066
  #: adminpages/membershiplevels.php:388 adminpages/membershiplevels.php:407
 
1067
  msgid ""
1068
  "Stripe integration currently does not support billing limits. You can still "
1069
  "set an expiration date below."
1070
  msgstr ""
1071
 
1072
- #: adminpages/membershiplevels.php:421 adminpages/membershiplevels.php:398
1073
  #: adminpages/membershiplevels.php:400 adminpages/membershiplevels.php:419
 
1074
  msgid ""
1075
  "2Checkout integration does not support custom trials. You can do one period "
1076
  "trials by setting an initial payment different from the billing amount."
1077
  msgstr ""
1078
 
1079
- #: adminpages/membershiplevels.php:443 adminpages/membershiplevels.php:406
1080
  #: adminpages/membershiplevels.php:412 adminpages/membershiplevels.php:414
1081
- #: adminpages/membershiplevels.php:441
1082
  msgid ""
1083
  "Stripe integration currently does not support trial amounts greater than $0."
1084
  msgstr ""
1085
 
1086
- #: adminpages/membershiplevels.php:447 adminpages/membershiplevels.php:410
1087
  #: adminpages/membershiplevels.php:416 adminpages/membershiplevels.php:418
1088
- #: adminpages/membershiplevels.php:445
1089
  msgid ""
1090
  "Braintree integration currently does not support trial amounts greater than "
1091
  "$0."
1092
  msgstr ""
1093
 
1094
- #: adminpages/membershiplevels.php:451 adminpages/membershiplevels.php:414
1095
  #: adminpages/membershiplevels.php:420 adminpages/membershiplevels.php:422
1096
- #: adminpages/membershiplevels.php:449
1097
  msgid ""
1098
  "Payflow integration currently does not support trial amounts greater than $0."
1099
  msgstr ""
1100
 
1101
- #: adminpages/membershiplevels.php:460 adminpages/membershiplevels.php:422
1102
  #: adminpages/membershiplevels.php:428 adminpages/membershiplevels.php:430
1103
  #: adminpages/membershiplevels.php:457 adminpages/membershiplevels.php:458
 
1104
  msgid "Other Settings"
1105
  msgstr ""
1106
 
1107
- #: adminpages/membershiplevels.php:464 adminpages/membershiplevels.php:426
1108
  #: adminpages/membershiplevels.php:432 adminpages/membershiplevels.php:434
1109
  #: adminpages/membershiplevels.php:461 adminpages/membershiplevels.php:462
 
1110
  msgid "Disable New Signups"
1111
  msgstr ""
1112
 
1113
- #: adminpages/membershiplevels.php:465 adminpages/membershiplevels.php:427
1114
  #: adminpages/membershiplevels.php:433 adminpages/membershiplevels.php:435
1115
  #: adminpages/membershiplevels.php:462 adminpages/membershiplevels.php:463
 
1116
  msgid ""
1117
  "Check to hide this level from the membership levels page and disable "
1118
  "registration."
1119
  msgstr ""
1120
 
1121
- #: adminpages/membershiplevels.php:495 adminpages/membershiplevels.php:457
1122
  #: adminpages/membershiplevels.php:463 adminpages/membershiplevels.php:465
1123
  #: adminpages/membershiplevels.php:492 adminpages/membershiplevels.php:493
 
1124
  msgid "Content Settings"
1125
  msgstr ""
1126
 
1127
- #: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:461
1128
  #: adminpages/membershiplevels.php:467 adminpages/membershiplevels.php:469
1129
  #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:497
 
1130
  msgid "Categories"
1131
  msgstr ""
1132
 
1133
- #: adminpages/membershiplevels.php:516
1134
  msgid "Save Level"
1135
  msgstr ""
1136
 
1137
- #: adminpages/membershiplevels.php:517 adminpages/orders.php:561
1138
- #: pages/billing.php:330 pages/cancel.php:71 shortcodes/pmpro_account.php:70
1139
- #: adminpages/orders.php:511 adminpages/orders.php:561 pages/account.php:44
1140
- #: pages/billing.php:295 pages/billing.php:299 pages/billing.php:330
 
1141
  #: pages/cancel.php:71 shortcodes/pmpro_account.php:70
1142
  msgid "Cancel"
1143
  msgstr ""
1144
 
1145
- #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:490
1146
  #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
1147
  #: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:526
 
1148
  msgid "Add New Level"
1149
  msgstr ""
1150
 
1151
- #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:575
1152
  #: adminpages/membershiplevels.php:493 adminpages/membershiplevels.php:496
1153
  #: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:501
1154
  #: adminpages/membershiplevels.php:502 adminpages/membershiplevels.php:504
1155
  #: adminpages/membershiplevels.php:528 adminpages/membershiplevels.php:529
1156
  #: adminpages/membershiplevels.php:531 adminpages/membershiplevels.php:532
 
1157
  msgid "Search Levels"
1158
  msgstr ""
1159
 
1160
- #: adminpages/membershiplevels.php:579
1161
  msgid "Drag and drop membership levels to reorder them on the Levels page."
1162
  msgstr ""
1163
 
1164
- #: adminpages/membershiplevels.php:586 pages/cancel.php:53
1165
  #: pages/confirmation.php:83 pages/invoice.php:70
1166
  #: shortcodes/pmpro_account.php:46 adminpages/membershiplevels.php:510
1167
  #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:518
1168
  #: adminpages/membershiplevels.php:544 adminpages/membershiplevels.php:545
1169
- #: pages/account.php:20 pages/cancel.php:53 pages/confirmation.php:81
1170
- #: pages/confirmation.php:83 pages/invoice.php:68 pages/invoice.php:70
1171
- #: shortcodes/pmpro_account.php:46
1172
  msgid "Expiration"
1173
  msgstr ""
1174
 
1175
- #: adminpages/membershiplevels.php:587 adminpages/membershiplevels.php:511
1176
  #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:519
1177
  #: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:546
 
1178
  msgid "Allow Signups"
1179
  msgstr ""
1180
 
1181
- #: adminpages/membershiplevels.php:646 adminpages/membershiplevels.php:534
1182
  #: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:542
1183
  #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:569
 
1184
  msgid "FREE"
1185
  msgstr ""
1186
 
1187
- #: adminpages/membershiplevels.php:655 adminpages/membershiplevels.php:560
1188
  #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:568
1189
  #: adminpages/membershiplevels.php:575 adminpages/membershiplevels.php:595
 
1190
  msgid "After"
1191
  msgstr ""
1192
 
1193
- #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:566
1194
- #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
1195
- #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
1196
- #, php-format
1197
- msgid ""
1198
- "Are you sure you want to delete membership level %s? All subscriptions will "
1199
- "be cancelled."
1200
- msgstr ""
1201
-
1202
- #: adminpages/membershiplevels.php:660 adminpages/orders.php:982
1203
  #: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
1204
  #: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
1205
- #: adminpages/membershiplevels.php:600 adminpages/orders.php:661
1206
- #: adminpages/orders.php:964 adminpages/orders.php:982
 
1207
  msgid "copy"
1208
  msgstr ""
1209
 
@@ -1211,7 +1381,7 @@ msgstr ""
1211
  #: includes/adminpages.php:153 adminpages/memberslist.php:25
1212
  #: includes/adminpages.php:15 includes/adminpages.php:53
1213
  #: includes/adminpages.php:74 includes/adminpages.php:142
1214
- #: includes/adminpages.php:149
1215
  msgid "Members List"
1216
  msgstr ""
1217
 
@@ -1260,80 +1430,87 @@ msgstr ""
1260
  msgid "Search Members"
1261
  msgstr ""
1262
 
1263
- #: adminpages/memberslist.php:146 adminpages/memberslist.php:103
1264
  #: adminpages/memberslist.php:136 adminpages/memberslist.php:146
 
1265
  #, php-format
1266
  msgid "%d members found."
1267
  msgstr ""
1268
 
1269
- #: adminpages/memberslist.php:155 pages/checkout.php:171
1270
  #: shortcodes/pmpro_account.php:105 adminpages/memberslist.php:112
1271
  #: adminpages/memberslist.php:145 adminpages/memberslist.php:155
1272
- #: pages/account.php:51 pages/account.php:55 pages/account.php:76
1273
- #: pages/checkout.php:168 pages/checkout.php:171 pages/checkout.php:173
 
1274
  #: shortcodes/pmpro_account.php:105
1275
  msgid "Username"
1276
  msgstr ""
1277
 
1278
- #: adminpages/memberslist.php:156 adminpages/memberslist.php:113
1279
  #: adminpages/memberslist.php:146 adminpages/memberslist.php:156
 
1280
  msgid "First&nbsp;Name"
1281
  msgstr ""
1282
 
1283
- #: adminpages/memberslist.php:157 adminpages/memberslist.php:114
1284
  #: adminpages/memberslist.php:147 adminpages/memberslist.php:157
 
1285
  msgid "Last&nbsp;Name"
1286
  msgstr ""
1287
 
1288
- #: adminpages/memberslist.php:160 pages/billing.php:62 pages/checkout.php:302
1289
  #: pages/confirmation.php:61 pages/invoice.php:48
1290
  #: adminpages/memberslist.php:117 adminpages/memberslist.php:150
1291
- #: adminpages/memberslist.php:160 pages/account.php:90 pages/account.php:94
1292
- #: pages/billing.php:58 pages/billing.php:62 pages/checkout.php:298
1293
- #: pages/checkout.php:300 pages/checkout.php:302 pages/checkout.php:314
1294
- #: pages/checkout.php:321 pages/confirmation.php:59 pages/confirmation.php:61
1295
- #: pages/invoice.php:46 pages/invoice.php:48
 
1296
  msgid "Billing Address"
1297
  msgstr ""
1298
 
1299
- #: adminpages/memberslist.php:161 adminpages/reports/login.php:145
1300
  #: classes/gateways/class.pmprogateway_authorizenet.php:303
1301
  #: adminpages/memberslist.php:118 adminpages/memberslist.php:151
1302
- #: adminpages/memberslist.php:161 adminpages/pagesettings.php:51
1303
- #: adminpages/reports/login.php:143 adminpages/reports/login.php:145
 
1304
  #: classes/gateways/class.pmprogateway_authorizenet.php:187
1305
  #: classes/gateways/class.pmprogateway_authorizenet.php:303
1306
  msgid "Membership"
1307
  msgstr ""
1308
 
1309
- #: adminpages/memberslist.php:162 adminpages/memberslist.php:119
1310
  #: adminpages/memberslist.php:152 adminpages/memberslist.php:162
 
1311
  msgid "Fee"
1312
  msgstr ""
1313
 
1314
- #: adminpages/memberslist.php:163 adminpages/reports/login.php:146
1315
  #: adminpages/memberslist.php:120 adminpages/memberslist.php:153
1316
- #: adminpages/memberslist.php:163 adminpages/reports/login.php:144
1317
- #: adminpages/reports/login.php:146
1318
  msgid "Joined"
1319
  msgstr ""
1320
 
1321
- #: adminpages/memberslist.php:167 adminpages/memberslist.php:157
1322
- #: adminpages/memberslist.php:167
1323
  msgid "Ended"
1324
  msgstr ""
1325
 
1326
- #: adminpages/memberslist.php:251 adminpages/reports/login.php:212
1327
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1328
- #: adminpages/memberslist.php:251 adminpages/reports/login.php:210
1329
- #: adminpages/reports/login.php:212
1330
  msgid "No members found."
1331
  msgstr ""
1332
 
1333
- #: adminpages/memberslist.php:251 adminpages/reports/login.php:212
1334
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1335
- #: adminpages/memberslist.php:251 adminpages/reports/login.php:210
1336
- #: adminpages/reports/login.php:212
1337
  msgid "Search all levels"
1338
  msgstr ""
1339
 
@@ -1435,10 +1612,10 @@ msgstr ""
1435
  msgid "Coupon Amount"
1436
  msgstr ""
1437
 
1438
- #: adminpages/orders.php:370 adminpages/orders.php:905 pages/invoice.php:84
1439
  #: adminpages/orders.php:320 adminpages/orders.php:370
1440
- #: adminpages/orders.php:602 adminpages/orders.php:905 pages/invoice.php:82
1441
- #: pages/invoice.php:84
1442
  msgid "Total"
1443
  msgstr ""
1444
 
@@ -1459,13 +1636,15 @@ msgstr ""
1459
 
1460
  #: adminpages/orders.php:389
1461
  #: classes/gateways/class.pmprogateway_braintree.php:304
1462
- #: classes/gateways/class.pmprogateway_stripe.php:408 pages/billing.php:238
1463
- #: pages/checkout.php:507 adminpages/orders.php:339 adminpages/orders.php:389
1464
  #: classes/gateways/class.pmprogateway_braintree.php:291
1465
  #: classes/gateways/class.pmprogateway_braintree.php:304
1466
- #: classes/gateways/class.pmprogateway_stripe.php:408 pages/billing.php:234
1467
- #: pages/billing.php:238 pages/checkout.php:493 pages/checkout.php:507
1468
- #: pages/checkout.php:510 pages/checkout.php:517
 
 
1469
  msgid "Card Type"
1470
  msgstr ""
1471
 
@@ -1479,6 +1658,7 @@ msgstr ""
1479
  #: adminpages/orders.php:348 adminpages/orders.php:398
1480
  #: adminpages/paymentsettings.php:347 adminpages/paymentsettings.php:352
1481
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
 
1482
  msgid "Account Number"
1483
  msgstr ""
1484
 
@@ -1497,15 +1677,17 @@ msgstr ""
1497
  msgid "Expiration Year"
1498
  msgstr ""
1499
 
1500
- #: adminpages/orders.php:423 adminpages/orders.php:909
1501
  #: adminpages/orders.php:373 adminpages/orders.php:423
1502
  #: adminpages/orders.php:606 adminpages/orders.php:909
 
1503
  msgid "Status"
1504
  msgstr ""
1505
 
1506
- #: adminpages/orders.php:444 adminpages/orders.php:907
1507
  #: adminpages/orders.php:394 adminpages/orders.php:444
1508
  #: adminpages/orders.php:604 adminpages/orders.php:907
 
1509
  msgid "Gateway"
1510
  msgstr ""
1511
 
@@ -1553,12 +1735,12 @@ msgstr ""
1553
  msgid "Generated by the gateway. Useful to cross reference subscriptions."
1554
  msgstr ""
1555
 
1556
- #: adminpages/orders.php:493 adminpages/orders.php:910 pages/invoice.php:107
1557
  #: shortcodes/pmpro_account.php:122 adminpages/orders.php:442
1558
  #: adminpages/orders.php:492 adminpages/orders.php:493
1559
- #: adminpages/orders.php:607 adminpages/orders.php:910 pages/account.php:91
1560
- #: pages/invoice.php:105 pages/invoice.php:107
1561
- #: shortcodes/pmpro_account.php:122
1562
  msgid "Date"
1563
  msgstr ""
1564
 
@@ -1587,6 +1769,7 @@ msgstr ""
1587
  #: adminpages/orders.php:570 includes/adminpages.php:17
1588
  #: includes/adminpages.php:55 includes/adminpages.php:84
1589
  #: includes/adminpages.php:156 includes/adminpages.php:163
 
1590
  msgid "Orders"
1591
  msgstr ""
1592
 
@@ -1595,10 +1778,6 @@ msgstr ""
1595
  msgid "Add New Order"
1596
  msgstr ""
1597
 
1598
- #: adminpages/orders.php:605 adminpages/orders.php:605
1599
- msgid "All"
1600
- msgstr ""
1601
-
1602
  #: adminpages/orders.php:606 adminpages/orders.php:606
1603
  msgid "Within a Date Range"
1604
  msgstr ""
@@ -1637,67 +1816,73 @@ msgstr ""
1637
  msgid "Search Orders"
1638
  msgstr ""
1639
 
1640
- #: adminpages/orders.php:893 adminpages/orders.php:590
1641
- #: adminpages/orders.php:893
1642
  #, php-format
1643
  msgid "%d orders found."
1644
  msgstr ""
1645
 
1646
- #: adminpages/orders.php:902 adminpages/reports/login.php:143
1647
  #: classes/gateways/class.pmprogateway_payflowpro.php:116
1648
  #: adminpages/orders.php:599 adminpages/orders.php:902
1649
- #: adminpages/paymentsettings.php:211 adminpages/paymentsettings.php:215
1650
- #: adminpages/paymentsettings.php:220 adminpages/reports/login.php:141
1651
- #: adminpages/reports/login.php:143
1652
  #: classes/gateways/class.pmprogateway_payflowpro.php:116
1653
  msgid "User"
1654
  msgstr ""
1655
 
1656
- #: adminpages/orders.php:904 includes/init.php:220 includes/profile.php:27
1657
- #: pages/checkout.php:33 pages/confirmation.php:47 pages/confirmation.php:64
1658
  #: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
1659
- #: adminpages/orders.php:601 adminpages/orders.php:904 includes/init.php:214
1660
- #: includes/init.php:217 includes/init.php:218 includes/profile.php:25
1661
- #: includes/profile.php:27 pages/checkout.php:33 pages/checkout.php:34
1662
- #: pages/checkout.php:35 pages/confirmation.php:46 pages/confirmation.php:47
 
 
1663
  #: pages/confirmation.php:62 pages/confirmation.php:64
1664
  #: pages/confirmation.php:103 pages/confirmation.php:105 pages/invoice.php:27
1665
  #: pages/invoice.php:28 pages/invoice.php:49 pages/invoice.php:51
1666
  msgid "Membership Level"
1667
  msgstr ""
1668
 
1669
- #: adminpages/orders.php:906 adminpages/orders.php:972
1670
  #: adminpages/orders.php:603 adminpages/orders.php:651
1671
- #: adminpages/orders.php:906 adminpages/orders.php:954
1672
- #: adminpages/orders.php:972
 
1673
  msgid "Payment"
1674
  msgstr ""
1675
 
1676
- #: adminpages/orders.php:908 adminpages/orders.php:605
1677
- #: adminpages/orders.php:908
1678
  msgid "Transaction IDs"
1679
  msgstr ""
1680
 
1681
- #: adminpages/orders.php:933 adminpages/orders.php:630
1682
- #: adminpages/orders.php:933
1683
  msgid "deleted"
1684
  msgstr ""
1685
 
1686
- #: adminpages/orders.php:974 adminpages/orders.php:653
1687
  #: adminpages/orders.php:956 adminpages/orders.php:974
 
1688
  msgid "Subscription"
1689
  msgstr ""
1690
 
1691
- #: adminpages/orders.php:985 adminpages/orders.php:664
1692
  #: adminpages/orders.php:967 adminpages/orders.php:985
 
1693
  #, php-format
1694
  msgid ""
1695
  "Deleting orders is permanent and can affect active users. Are you sure you "
1696
  "want to delete order %s?"
1697
  msgstr ""
1698
 
1699
- #: adminpages/orders.php:995 adminpages/orders.php:674
1700
  #: adminpages/orders.php:977 adminpages/orders.php:995
 
1701
  msgid "No orders found."
1702
  msgstr ""
1703
 
@@ -1758,88 +1943,110 @@ msgstr ""
1758
  msgid "Account Page"
1759
  msgstr ""
1760
 
1761
- #: adminpages/pagesettings.php:144 adminpages/pagesettings.php:147
1762
- #: adminpages/pagesettings.php:162 adminpages/pagesettings.php:177
1763
- #: adminpages/pagesettings.php:193 adminpages/pagesettings.php:209
1764
- #: adminpages/pagesettings.php:225 adminpages/pagesettings.php:241
 
 
 
 
 
 
 
1765
  msgid "Choose One"
1766
  msgstr ""
1767
 
1768
- #: adminpages/pagesettings.php:150 adminpages/pagesettings.php:165
1769
- #: adminpages/pagesettings.php:180 adminpages/pagesettings.php:196
1770
- #: adminpages/pagesettings.php:212 adminpages/pagesettings.php:228
1771
- #: adminpages/pagesettings.php:244 adminpages/pagesettings.php:119
1772
  #: adminpages/pagesettings.php:132 adminpages/pagesettings.php:134
1773
  #: adminpages/pagesettings.php:145 adminpages/pagesettings.php:147
1774
- #: adminpages/pagesettings.php:149 adminpages/pagesettings.php:159
1775
- #: adminpages/pagesettings.php:162 adminpages/pagesettings.php:165
1776
- #: adminpages/pagesettings.php:173 adminpages/pagesettings.php:177
 
1777
  #: adminpages/pagesettings.php:181 adminpages/pagesettings.php:187
1778
- #: adminpages/pagesettings.php:193 adminpages/pagesettings.php:197
1779
- #: adminpages/pagesettings.php:201 adminpages/pagesettings.php:209
 
1780
  #: adminpages/pagesettings.php:213 adminpages/pagesettings.php:225
1781
- #: adminpages/pagesettings.php:241
 
1782
  msgid "edit page"
1783
  msgstr ""
1784
 
1785
- #: adminpages/pagesettings.php:152 adminpages/pagesettings.php:167
1786
- #: adminpages/pagesettings.php:182 adminpages/pagesettings.php:198
1787
- #: adminpages/pagesettings.php:214 adminpages/pagesettings.php:230
1788
- #: adminpages/pagesettings.php:246 adminpages/pagesettings.php:121
1789
  #: adminpages/pagesettings.php:136 adminpages/pagesettings.php:149
1790
- #: adminpages/pagesettings.php:151 adminpages/pagesettings.php:164
1791
- #: adminpages/pagesettings.php:167 adminpages/pagesettings.php:179
 
1792
  #: adminpages/pagesettings.php:183 adminpages/pagesettings.php:195
1793
- #: adminpages/pagesettings.php:199 adminpages/pagesettings.php:211
 
1794
  #: adminpages/pagesettings.php:215 adminpages/pagesettings.php:227
1795
- #: adminpages/pagesettings.php:243
 
1796
  msgid "view page"
1797
  msgstr ""
1798
 
1799
- #: adminpages/pagesettings.php:154 adminpages/pagesettings.php:169
1800
- #: adminpages/pagesettings.php:184 adminpages/pagesettings.php:200
1801
- #: adminpages/pagesettings.php:216 adminpages/pagesettings.php:232
1802
- #: adminpages/pagesettings.php:248 adminpages/pagesettings.php:121
1803
  #: adminpages/pagesettings.php:123 adminpages/pagesettings.php:134
1804
  #: adminpages/pagesettings.php:138 adminpages/pagesettings.php:147
1805
  #: adminpages/pagesettings.php:151 adminpages/pagesettings.php:153
1806
- #: adminpages/pagesettings.php:161 adminpages/pagesettings.php:166
1807
- #: adminpages/pagesettings.php:169 adminpages/pagesettings.php:175
1808
- #: adminpages/pagesettings.php:181 adminpages/pagesettings.php:185
 
1809
  #: adminpages/pagesettings.php:189 adminpages/pagesettings.php:197
1810
- #: adminpages/pagesettings.php:201 adminpages/pagesettings.php:203
1811
- #: adminpages/pagesettings.php:213 adminpages/pagesettings.php:217
1812
- #: adminpages/pagesettings.php:229 adminpages/pagesettings.php:245
 
 
1813
  msgid "Include the shortcode"
1814
  msgstr ""
1815
 
1816
- #: adminpages/pagesettings.php:158 adminpages/pagesettings.php:125
1817
  #: adminpages/pagesettings.php:127 adminpages/pagesettings.php:155
 
1818
  msgid "Billing Information Page"
1819
  msgstr ""
1820
 
1821
- #: adminpages/pagesettings.php:173 adminpages/pagesettings.php:138
1822
  #: adminpages/pagesettings.php:142 adminpages/pagesettings.php:170
 
1823
  msgid "Cancel Page"
1824
  msgstr ""
1825
 
1826
- #: adminpages/pagesettings.php:189 adminpages/pagesettings.php:152
1827
  #: adminpages/pagesettings.php:158 adminpages/pagesettings.php:186
 
1828
  msgid "Checkout Page"
1829
  msgstr ""
1830
 
1831
- #: adminpages/pagesettings.php:205 adminpages/pagesettings.php:166
1832
  #: adminpages/pagesettings.php:174 adminpages/pagesettings.php:202
 
1833
  msgid "Confirmation Page"
1834
  msgstr ""
1835
 
1836
- #: adminpages/pagesettings.php:221 adminpages/pagesettings.php:180
1837
  #: adminpages/pagesettings.php:190 adminpages/pagesettings.php:218
 
1838
  msgid "Invoice Page"
1839
  msgstr ""
1840
 
1841
- #: adminpages/pagesettings.php:237 adminpages/pagesettings.php:194
1842
  #: adminpages/pagesettings.php:206 adminpages/pagesettings.php:234
 
1843
  msgid "Levels Page"
1844
  msgstr ""
1845
 
@@ -1896,11 +2103,11 @@ msgstr ""
1896
  msgid "Sales Tax"
1897
  msgstr ""
1898
 
1899
- #: adminpages/paymentsettings.php:188 pages/billing.php:82
1900
  #: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:398
1901
  #: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
1902
  #: adminpages/paymentsettings.php:445 pages/billing.php:78
1903
- #: pages/billing.php:82
1904
  msgid "optional"
1905
  msgstr ""
1906
 
@@ -2182,182 +2389,192 @@ msgstr ""
2182
  msgid "An Email From %s"
2183
  msgstr ""
2184
 
2185
- #: classes/class.pmproemail.php:125 classes/class.pmproemail.php:120
2186
  #: classes/class.pmproemail.php:122 classes/class.pmproemail.php:125
 
2187
  #, php-format
2188
  msgid "Your membership at %s has been CANCELLED"
2189
  msgstr ""
2190
 
2191
- #: classes/class.pmproemail.php:147 classes/class.pmproemail.php:142
2192
  #: classes/class.pmproemail.php:144 classes/class.pmproemail.php:147
 
2193
  #, php-format
2194
  msgid "Membership for %s at %s has been CANCELLED"
2195
  msgstr ""
2196
 
2197
- #: classes/class.pmproemail.php:178 classes/class.pmproemail.php:172
2198
  #: classes/class.pmproemail.php:173 classes/class.pmproemail.php:175
2199
- #: classes/class.pmproemail.php:178
2200
  #, php-format
2201
  msgid "Your membership confirmation for %s"
2202
  msgstr ""
2203
 
2204
- #: classes/class.pmproemail.php:231 classes/class.pmproemail.php:240
2205
- #: classes/class.pmproemail.php:249 classes/class.pmproemail.php:328
2206
- #: classes/class.pmproemail.php:337 classes/class.pmproemail.php:648
2207
  #: classes/gateways/class.pmprogateway_braintree.php:362
2208
- #: classes/gateways/class.pmprogateway_stripe.php:495 pages/checkout.php:66
2209
- #: pages/checkout.php:76 pages/checkout.php:594 pages/confirmation.php:52
2210
  #: pages/invoice.php:33 classes/class.pmproemail.php:216
2211
  #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
2212
  #: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
2213
  #: classes/class.pmproemail.php:231 classes/class.pmproemail.php:234
2214
  #: classes/class.pmproemail.php:236 classes/class.pmproemail.php:237
2215
  #: classes/class.pmproemail.php:240 classes/class.pmproemail.php:246
2216
- #: classes/class.pmproemail.php:249 classes/class.pmproemail.php:304
2217
- #: classes/class.pmproemail.php:307 classes/class.pmproemail.php:313
2218
- #: classes/class.pmproemail.php:316 classes/class.pmproemail.php:325
2219
- #: classes/class.pmproemail.php:328 classes/class.pmproemail.php:334
2220
- #: classes/class.pmproemail.php:337 classes/class.pmproemail.php:532
 
2221
  #: classes/class.pmproemail.php:580 classes/class.pmproemail.php:645
2222
- #: classes/class.pmproemail.php:648
2223
  #: classes/gateways/class.pmprogateway_braintree.php:349
2224
  #: classes/gateways/class.pmprogateway_braintree.php:362
2225
- #: classes/gateways/class.pmprogateway_stripe.php:495 pages/checkout.php:66
2226
- #: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:76
2227
- #: pages/checkout.php:77 pages/checkout.php:78 pages/checkout.php:549
2228
- #: pages/checkout.php:565 pages/checkout.php:566 pages/checkout.php:573
2229
- #: pages/checkout.php:594 pages/confirmation.php:51 pages/confirmation.php:52
 
 
2230
  #: pages/invoice.php:32 pages/invoice.php:33
2231
  msgid "Discount Code"
2232
  msgstr ""
2233
 
2234
- #: classes/class.pmproemail.php:256 classes/class.pmproemail.php:349
2235
- #: classes/class.pmproemail.php:654 classes/class.pmproemail.php:241
2236
  #: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
2237
- #: classes/class.pmproemail.php:256 classes/class.pmproemail.php:325
2238
- #: classes/class.pmproemail.php:328 classes/class.pmproemail.php:346
2239
- #: classes/class.pmproemail.php:349 classes/class.pmproemail.php:538
 
2240
  #: classes/class.pmproemail.php:586 classes/class.pmproemail.php:651
2241
- #: classes/class.pmproemail.php:654
2242
  #, php-format
2243
  msgid "This membership will expire on %s."
2244
  msgstr ""
2245
 
2246
- #: classes/class.pmproemail.php:278 classes/class.pmproemail.php:263
2247
  #: classes/class.pmproemail.php:265 classes/class.pmproemail.php:275
2248
- #: classes/class.pmproemail.php:278
2249
  #, php-format
2250
  msgid "Member Checkout for %s at %s"
2251
  msgstr ""
2252
 
2253
- #: classes/class.pmproemail.php:366 classes/class.pmproemail.php:342
2254
  #: classes/class.pmproemail.php:345 classes/class.pmproemail.php:363
2255
- #: classes/class.pmproemail.php:366
2256
  #, php-format
2257
  msgid "Your billing information has been udpated at %s"
2258
  msgstr ""
2259
 
2260
- #: classes/class.pmproemail.php:419 classes/class.pmproemail.php:386
2261
  #: classes/class.pmproemail.php:390 classes/class.pmproemail.php:416
2262
- #: classes/class.pmproemail.php:419
2263
  #, php-format
2264
  msgid "Billing information has been udpated for %s at %s"
2265
  msgstr ""
2266
 
2267
- #: classes/class.pmproemail.php:467 classes/class.pmproemail.php:425
2268
  #: classes/class.pmproemail.php:430 classes/class.pmproemail.php:464
2269
- #: classes/class.pmproemail.php:467
2270
  #, php-format
2271
  msgid "Membership Payment Failed at %s"
2272
  msgstr ""
2273
 
2274
- #: classes/class.pmproemail.php:513 classes/class.pmproemail.php:462
2275
  #: classes/class.pmproemail.php:468 classes/class.pmproemail.php:510
2276
- #: classes/class.pmproemail.php:513
2277
  #, php-format
2278
  msgid "Membership Payment Failed For %s at %s"
2279
  msgstr ""
2280
 
2281
- #: classes/class.pmproemail.php:560 classes/class.pmproemail.php:508
2282
  #: classes/class.pmproemail.php:557 classes/class.pmproemail.php:560
 
2283
  #, php-format
2284
  msgid "Credit Card on File Expiring Soon at %s"
2285
  msgstr ""
2286
 
2287
- #: classes/class.pmproemail.php:608 classes/class.pmproemail.php:501
2288
  #: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
2289
- #: classes/class.pmproemail.php:608
2290
  #, php-format
2291
  msgid "INVOICE for %s membership"
2292
  msgstr ""
2293
 
2294
- #: classes/class.pmproemail.php:679 classes/class.pmproemail.php:563
2295
  #: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
2296
- #: classes/class.pmproemail.php:679
2297
  #, php-format
2298
  msgid "Your trial at %s is ending soon"
2299
  msgstr ""
2300
 
2301
- #: classes/class.pmproemail.php:713 classes/class.pmproemail.php:596
2302
  #: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
2303
- #: classes/class.pmproemail.php:713
2304
  #, php-format
2305
  msgid "Your membership at %s has ended"
2306
  msgstr ""
2307
 
2308
- #: classes/class.pmproemail.php:738 classes/class.pmproemail.php:621
2309
  #: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
2310
- #: classes/class.pmproemail.php:738
2311
  #, php-format
2312
  msgid "Your membership at %s will end soon"
2313
  msgstr ""
2314
 
2315
- #: classes/class.pmproemail.php:758 classes/class.pmproemail.php:641
2316
  #: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
2317
- #: classes/class.pmproemail.php:758
2318
  #, php-format
2319
  msgid "Your membership at %s has been changed"
2320
  msgstr ""
2321
 
2322
- #: classes/class.pmproemail.php:762 classes/class.pmproemail.php:800
2323
  #: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
2324
- #: classes/class.pmproemail.php:800
 
2325
  #, php-format
2326
  msgid "The new level is %s"
2327
  msgstr ""
2328
 
2329
- #: classes/class.pmproemail.php:764 classes/class.pmproemail.php:647
2330
  #: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
2331
- #: classes/class.pmproemail.php:764
2332
  msgid "Your membership has been cancelled"
2333
  msgstr ""
2334
 
2335
- #: classes/class.pmproemail.php:768 classes/class.pmproemail.php:806
2336
  #: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
2337
  #: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
2338
  #: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
2339
- #: classes/class.pmproemail.php:803 classes/class.pmproemail.php:806
 
2340
  #, php-format
2341
  msgid "This membership will expire on %s"
2342
  msgstr ""
2343
 
2344
- #: classes/class.pmproemail.php:772 classes/class.pmproemail.php:810
2345
  #: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
2346
  #: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
2347
  #: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
2348
- #: classes/class.pmproemail.php:807 classes/class.pmproemail.php:810
 
2349
  msgid "This membership does not expire"
2350
  msgstr ""
2351
 
2352
- #: classes/class.pmproemail.php:796 classes/class.pmproemail.php:679
2353
  #: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
2354
- #: classes/class.pmproemail.php:796
2355
  #, php-format
2356
  msgid "Membership for %s at %s has been changed"
2357
  msgstr ""
2358
 
2359
- #: classes/class.pmproemail.php:802 classes/class.pmproemail.php:799
2360
- #: classes/class.pmproemail.php:802
2361
  msgid "Membership has been cancelled"
2362
  msgstr ""
2363
 
@@ -2443,7 +2660,7 @@ msgid ""
2443
  msgstr ""
2444
 
2445
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
2446
- #: paid-memberships-pro.php:123
2447
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
2448
  #: paid-memberships-pro.php:122 paid-memberships-pro.php:123
2449
  msgid "Authorize.net"
@@ -2496,7 +2713,7 @@ msgid "Could not connect to Authorize.net"
2496
  msgstr ""
2497
 
2498
  #: classes/gateways/class.pmprogateway_braintree.php:76
2499
- #: paid-memberships-pro.php:124
2500
  #: classes/gateways/class.pmprogateway_braintree.php:63
2501
  #: classes/gateways/class.pmprogateway_braintree.php:76
2502
  #: paid-memberships-pro.php:123 paid-memberships-pro.php:124
@@ -2545,7 +2762,7 @@ msgid "Client-Side Encryption Key"
2545
  msgstr ""
2546
 
2547
  #: classes/gateways/class.pmprogateway_braintree.php:169
2548
- #: classes/gateways/class.pmprogateway_stripe.php:181
2549
  #: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
2550
  #: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
2551
  #: adminpages/paymentsettings.php:511 adminpages/paymentsettings.php:517
@@ -2553,6 +2770,7 @@ msgstr ""
2553
  #: classes/gateways/class.pmprogateway_braintree.php:156
2554
  #: classes/gateways/class.pmprogateway_braintree.php:169
2555
  #: classes/gateways/class.pmprogateway_stripe.php:181
 
2556
  msgid "Web Hook URL"
2557
  msgstr ""
2558
 
@@ -2565,79 +2783,89 @@ msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
2565
  msgstr ""
2566
 
2567
  #: classes/gateways/class.pmprogateway_braintree.php:283
2568
- #: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:485
2569
  #: classes/gateways/class.pmprogateway_braintree.php:270
2570
  #: classes/gateways/class.pmprogateway_braintree.php:283
2571
- #: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:476
 
2572
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
2573
- #: pages/checkout.php:500
2574
  msgid "Payment Information"
2575
  msgstr ""
2576
 
2577
  #: classes/gateways/class.pmprogateway_braintree.php:283
2578
- #: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:485
2579
  #: classes/gateways/class.pmprogateway_braintree.php:270
2580
  #: classes/gateways/class.pmprogateway_braintree.php:283
2581
- #: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:476
 
2582
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
2583
- #: pages/checkout.php:500
2584
  #, php-format
2585
  msgid "We Accept %s"
2586
  msgstr ""
2587
 
2588
  #: classes/gateways/class.pmprogateway_braintree.php:316
2589
- #: classes/gateways/class.pmprogateway_stripe.php:449 pages/billing.php:248
2590
- #: pages/checkout.php:548
2591
  #: classes/gateways/class.pmprogateway_braintree.php:303
2592
  #: classes/gateways/class.pmprogateway_braintree.php:316
2593
- #: classes/gateways/class.pmprogateway_stripe.php:449 pages/billing.php:244
2594
- #: pages/billing.php:248 pages/checkout.php:503 pages/checkout.php:519
2595
- #: pages/checkout.php:520 pages/checkout.php:527 pages/checkout.php:548
 
 
2596
  msgid "Card Number"
2597
  msgstr ""
2598
 
2599
  #: classes/gateways/class.pmprogateway_braintree.php:353
2600
- #: classes/gateways/class.pmprogateway_stripe.php:486 pages/billing.php:285
2601
- #: pages/checkout.php:585
2602
  #: classes/gateways/class.pmprogateway_braintree.php:340
2603
  #: classes/gateways/class.pmprogateway_braintree.php:353
2604
- #: classes/gateways/class.pmprogateway_stripe.php:486 pages/billing.php:281
2605
- #: pages/billing.php:285 pages/checkout.php:540 pages/checkout.php:556
2606
- #: pages/checkout.php:557 pages/checkout.php:564 pages/checkout.php:585
 
 
2607
  msgid "CVV"
2608
  msgstr ""
2609
 
2610
  #: classes/gateways/class.pmprogateway_braintree.php:354
2611
- #: classes/gateways/class.pmprogateway_stripe.php:487 pages/billing.php:286
2612
- #: pages/checkout.php:586
2613
  #: classes/gateways/class.pmprogateway_braintree.php:341
2614
  #: classes/gateways/class.pmprogateway_braintree.php:354
2615
- #: classes/gateways/class.pmprogateway_stripe.php:487 pages/billing.php:282
2616
- #: pages/billing.php:286 pages/checkout.php:541 pages/checkout.php:557
2617
- #: pages/checkout.php:558 pages/checkout.php:565 pages/checkout.php:586
 
 
2618
  msgid "what's this?"
2619
  msgstr ""
2620
 
2621
  #: classes/gateways/class.pmprogateway_braintree.php:364
2622
- #: classes/gateways/class.pmprogateway_stripe.php:497 pages/checkout.php:78
2623
- #: pages/checkout.php:596
2624
  #: classes/gateways/class.pmprogateway_braintree.php:351
2625
  #: classes/gateways/class.pmprogateway_braintree.php:364
2626
- #: classes/gateways/class.pmprogateway_stripe.php:497 pages/checkout.php:78
2627
- #: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:551
2628
- #: pages/checkout.php:567 pages/checkout.php:568 pages/checkout.php:575
2629
- #: pages/checkout.php:596
 
2630
  msgid "Apply"
2631
  msgstr ""
2632
 
2633
  #: classes/gateways/class.pmprogateway_braintree.php:419
2634
- #: classes/gateways/class.pmprogateway_stripe.php:1025
2635
  #: classes/gateways/class.pmprogateway_braintree.php:61
2636
  #: classes/gateways/class.pmprogateway_braintree.php:406
2637
  #: classes/gateways/class.pmprogateway_braintree.php:419
2638
  #: classes/gateways/class.pmprogateway_stripe.php:53
2639
  #: classes/gateways/class.pmprogateway_stripe.php:1011
2640
  #: classes/gateways/class.pmprogateway_stripe.php:1025
 
2641
  msgid "Unknown error: Initial payment failed."
2642
  msgstr ""
2643
 
@@ -2727,7 +2955,7 @@ msgid "Could not find the subscription."
2727
  msgstr ""
2728
 
2729
  #: classes/gateways/class.pmprogateway_check.php:48
2730
- #: paid-memberships-pro.php:117 adminpages/orders.php:399
2731
  #: adminpages/orders.php:449 adminpages/paymentsettings.php:157
2732
  #: adminpages/paymentsettings.php:159
2733
  #: classes/gateways/class.pmprogateway_check.php:48
@@ -2807,10 +3035,11 @@ msgid "Vendor"
2807
  msgstr ""
2808
 
2809
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
2810
- #: pages/checkout.php:180 adminpages/paymentsettings.php:219
2811
  #: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:228
2812
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
2813
  #: pages/checkout.php:177 pages/checkout.php:180 pages/checkout.php:182
 
2814
  msgid "Password"
2815
  msgstr ""
2816
 
@@ -2839,14 +3068,14 @@ msgid ""
2839
  msgstr ""
2840
 
2841
  #: classes/gateways/class.pmprogateway_paypal.php:57
2842
- #: paid-memberships-pro.php:120
2843
  #: classes/gateways/class.pmprogateway_paypal.php:57
2844
  #: paid-memberships-pro.php:119 paid-memberships-pro.php:120
2845
  msgid "PayPal Website Payments Pro"
2846
  msgstr ""
2847
 
2848
  #: classes/gateways/class.pmprogateway_paypal.php:113
2849
- #: classes/gateways/class.pmprogateway_paypalexpress.php:118
2850
  #: classes/gateways/class.pmprogateway_paypalstandard.php:112
2851
  #: classes/gateways/class.pmprogateway_paypal.php:113
2852
  #: classes/gateways/class.pmprogateway_paypalexpress.php:118
@@ -2855,7 +3084,7 @@ msgid "PayPal Settings"
2855
  msgstr ""
2856
 
2857
  #: classes/gateways/class.pmprogateway_paypal.php:118
2858
- #: classes/gateways/class.pmprogateway_paypalexpress.php:123
2859
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
2860
  #: adminpages/paymentsettings.php:179
2861
  #: classes/gateways/class.pmprogateway_paypal.php:118
@@ -2870,7 +3099,7 @@ msgid ""
2870
  msgstr ""
2871
 
2872
  #: classes/gateways/class.pmprogateway_paypal.php:123
2873
- #: classes/gateways/class.pmprogateway_paypalexpress.php:128
2874
  #: classes/gateways/class.pmprogateway_paypalstandard.php:122
2875
  #: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:231
2876
  #: adminpages/paymentsettings.php:236
@@ -2881,7 +3110,7 @@ msgid "Gateway Account Email"
2881
  msgstr ""
2882
 
2883
  #: classes/gateways/class.pmprogateway_paypal.php:131
2884
- #: classes/gateways/class.pmprogateway_paypalexpress.php:136
2885
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
2886
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
2887
  #: adminpages/paymentsettings.php:235 adminpages/paymentsettings.php:239
@@ -2891,11 +3120,12 @@ msgstr ""
2891
  #: classes/gateways/class.pmprogateway_paypalexpress.php:136
2892
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
2893
  #: classes/gateways/class.pmprogateway_twocheckout.php:113
 
2894
  msgid "API Username"
2895
  msgstr ""
2896
 
2897
  #: classes/gateways/class.pmprogateway_paypal.php:139
2898
- #: classes/gateways/class.pmprogateway_paypalexpress.php:144
2899
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
2900
  #: classes/gateways/class.pmprogateway_twocheckout.php:130
2901
  #: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:247
@@ -2905,11 +3135,12 @@ msgstr ""
2905
  #: classes/gateways/class.pmprogateway_paypalexpress.php:144
2906
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
2907
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
 
2908
  msgid "API Password"
2909
  msgstr ""
2910
 
2911
  #: classes/gateways/class.pmprogateway_paypal.php:147
2912
- #: classes/gateways/class.pmprogateway_paypalexpress.php:152
2913
  #: classes/gateways/class.pmprogateway_paypalstandard.php:146
2914
  #: adminpages/paymentsettings.php:251 adminpages/paymentsettings.php:255
2915
  #: adminpages/paymentsettings.php:260
@@ -2920,7 +3151,7 @@ msgid "API Signature"
2920
  msgstr ""
2921
 
2922
  #: classes/gateways/class.pmprogateway_paypal.php:155
2923
- #: classes/gateways/class.pmprogateway_paypalexpress.php:160
2924
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
2925
  #: adminpages/paymentsettings.php:446 adminpages/paymentsettings.php:479
2926
  #: adminpages/paymentsettings.php:485 adminpages/paymentsettings.php:487
@@ -2938,43 +3169,44 @@ msgid ""
2938
  msgstr ""
2939
 
2940
  #: classes/gateways/class.pmprogateway_paypal.php:178
2941
- #: classes/gateways/class.pmprogateway_paypalexpress.php:402
2942
  #: classes/gateways/class.pmprogateway_paypalstandard.php:202
2943
- #: pages/checkout.php:286 classes/gateways/class.pmprogateway_paypal.php:178
2944
  #: classes/gateways/class.pmprogateway_paypalexpress.php:402
2945
  #: classes/gateways/class.pmprogateway_paypalstandard.php:202
2946
- #: pages/checkout.php:286 pages/checkout.php:288 pages/checkout.php:302
2947
- #: pages/checkout.php:309 pages/checkout.php:675 pages/checkout.php:682
2948
- #: pages/checkout.php:685 pages/checkout.php:701
2949
  msgid "Check Out with PayPal"
2950
  msgstr ""
2951
 
2952
  #: classes/gateways/class.pmprogateway_paypal.php:184
2953
- #: classes/gateways/class.pmprogateway_paypalexpress.php:408
2954
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
2955
- #: pages/checkout.php:704 classes/gateways/class.pmprogateway_paypal.php:184
2956
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
2957
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
2958
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
2959
- #: pages/checkout.php:704 pages/checkout.php:707
2960
  msgid "Submit and Check Out"
2961
  msgstr ""
2962
 
2963
  #: classes/gateways/class.pmprogateway_paypal.php:184
2964
- #: classes/gateways/class.pmprogateway_paypalexpress.php:408
2965
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
2966
  #: classes/gateways/class.pmprogateway_twocheckout.php:214
2967
- #: pages/checkout.php:704 classes/gateways/class.pmprogateway_paypal.php:184
2968
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
2969
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
2970
  #: classes/gateways/class.pmprogateway_twocheckout.php:192
 
2971
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
2972
- #: pages/checkout.php:704 pages/checkout.php:707
2973
  msgid "Submit and Confirm"
2974
  msgstr ""
2975
 
2976
  #: classes/gateways/class.pmprogateway_paypal.php:605
2977
- #: classes/gateways/class.pmprogateway_paypalexpress.php:740
2978
  #: classes/gateways/class.pmprogateway_paypalstandard.php:466
2979
  #: classes/gateways/class.pmprogateway_paypal.php:385
2980
  #: classes/gateways/class.pmprogateway_paypal.php:605
@@ -2993,22 +3225,22 @@ msgid ""
2993
  "to make sure you are not charged going forward."
2994
  msgstr ""
2995
 
2996
- #: classes/gateways/class.pmprogateway_paypalexpress.php:63
2997
- #: paid-memberships-pro.php:119
2998
  #: classes/gateways/class.pmprogateway_paypalexpress.php:63
2999
  #: paid-memberships-pro.php:118 paid-memberships-pro.php:119
3000
  msgid "PayPal Express"
3001
  msgstr ""
3002
 
3003
- #: classes/gateways/class.pmprogateway_paypalexpress.php:163
3004
  #: adminpages/paymentsettings.php:449 adminpages/paymentsettings.php:482
3005
  #: adminpages/paymentsettings.php:488 adminpages/paymentsettings.php:490
3006
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
3007
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
3008
  msgstr ""
3009
 
3010
- #: classes/gateways/class.pmprogateway_paypalexpress.php:268
3011
- #: classes/gateways/class.pmprogateway_paypalexpress.php:320
3012
  #: classes/gateways/class.pmprogateway_paypalexpress.php:268
3013
  #: classes/gateways/class.pmprogateway_paypalexpress.php:320
3014
  #: preheaders/checkout.php:690 preheaders/checkout.php:697
@@ -3021,7 +3253,7 @@ msgid "The PayPal Token was lost."
3021
  msgstr ""
3022
 
3023
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
3024
- #: paid-memberships-pro.php:122
3025
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
3026
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:122
3027
  msgid "PayPal Standard"
@@ -3034,86 +3266,98 @@ msgid ""
3034
  "settings."
3035
  msgstr ""
3036
 
 
 
3037
  #: classes/gateways/class.pmprogateway_stripe.php:93
3038
- #: paid-memberships-pro.php:118
3039
- #: classes/gateways/class.pmprogateway_stripe.php:93
3040
  #: paid-memberships-pro.php:117 paid-memberships-pro.php:118
3041
  msgid "Stripe"
3042
  msgstr ""
3043
 
 
3044
  #: classes/gateways/class.pmprogateway_stripe.php:148
3045
- #: classes/gateways/class.pmprogateway_stripe.php:148
3046
  msgid "Stripe Settings"
3047
  msgstr ""
3048
 
3049
- #: classes/gateways/class.pmprogateway_stripe.php:153
3050
  #: adminpages/paymentsettings.php:277 adminpages/paymentsettings.php:281
3051
  #: adminpages/paymentsettings.php:286
3052
  #: classes/gateways/class.pmprogateway_stripe.php:153
 
3053
  msgid "Secret Key"
3054
  msgstr ""
3055
 
3056
- #: classes/gateways/class.pmprogateway_stripe.php:161
3057
  #: adminpages/paymentsettings.php:285 adminpages/paymentsettings.php:289
3058
  #: adminpages/paymentsettings.php:294
3059
  #: classes/gateways/class.pmprogateway_stripe.php:161
 
3060
  msgid "Publishable Key"
3061
  msgstr ""
3062
 
3063
- #: classes/gateways/class.pmprogateway_stripe.php:169
3064
  #: adminpages/paymentsettings.php:425 adminpages/paymentsettings.php:430
3065
  #: adminpages/paymentsettings.php:432
3066
  #: classes/gateways/class.pmprogateway_stripe.php:169
 
3067
  msgid "Show Billing Address Fields"
3068
  msgstr ""
3069
 
3070
- #: classes/gateways/class.pmprogateway_stripe.php:176
3071
  #: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:439
3072
  #: classes/gateways/class.pmprogateway_stripe.php:176
 
3073
  msgid ""
3074
  "Stripe doesn't require billing address fields. Choose 'No' to hide them on "
3075
  "the checkout page.<br /><strong>If No, make sure you disable address "
3076
  "verification in the Stripe dashboard settings.</strong>"
3077
  msgstr ""
3078
 
3079
- #: classes/gateways/class.pmprogateway_stripe.php:184
3080
  #: adminpages/paymentsettings.php:465 adminpages/paymentsettings.php:506
3081
  #: adminpages/paymentsettings.php:512 adminpages/paymentsettings.php:514
3082
  #: classes/gateways/class.pmprogateway_stripe.php:184
 
3083
  msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
3084
  msgstr ""
3085
 
 
3086
  #: classes/gateways/class.pmprogateway_stripe.php:567
3087
- #: classes/gateways/class.pmprogateway_stripe.php:567
3088
  msgid "Subscription Updates"
3089
  msgstr ""
3090
 
 
3091
  #: classes/gateways/class.pmprogateway_stripe.php:571
3092
- #: classes/gateways/class.pmprogateway_stripe.php:571
3093
  msgid ""
3094
  "Subscription updates, allow you to change the member's subscription values "
3095
  "at predefined times. Be sure to click Update Profile after making changes."
3096
  msgstr ""
3097
 
 
3098
  #: classes/gateways/class.pmprogateway_stripe.php:573
3099
- #: classes/gateways/class.pmprogateway_stripe.php:573
3100
  msgid ""
3101
  "Subscription updates, allow you to change the member's subscription values "
3102
  "at predefined times. Be sure to click Update User after making changes."
3103
  msgstr ""
3104
 
3105
- #: classes/gateways/class.pmprogateway_stripe.php:578 pages/billing.php:329
3106
- #: classes/gateways/class.pmprogateway_stripe.php:578 pages/billing.php:294
3107
- #: pages/billing.php:298 pages/billing.php:329
 
3108
  msgid "Update"
3109
  msgstr ""
3110
 
 
3111
  #: classes/gateways/class.pmprogateway_stripe.php:769
3112
- #: classes/gateways/class.pmprogateway_stripe.php:769
3113
  msgid "Could not cancel the old subscription. Updates have not been processed."
3114
  msgstr ""
3115
 
3116
- #: classes/gateways/class.pmprogateway_stripe.php:1203
3117
  #: classes/gateways/class.pmprogateway_stripe.php:190
3118
  #: classes/gateways/class.pmprogateway_stripe.php:192
3119
  #: classes/gateways/class.pmprogateway_stripe.php:199
@@ -3122,11 +3366,12 @@ msgstr ""
3122
  #: classes/gateways/class.pmprogateway_stripe.php:1188
3123
  #: classes/gateways/class.pmprogateway_stripe.php:1202
3124
  #: classes/gateways/class.pmprogateway_stripe.php:1203
 
3125
  msgid "Error creating customer record with Stripe:"
3126
  msgstr ""
3127
 
3128
- #: classes/gateways/class.pmprogateway_stripe.php:1260
3129
- #: classes/gateways/class.pmprogateway_stripe.php:1410
3130
  #: classes/gateways/class.pmprogateway_stripe.php:278
3131
  #: classes/gateways/class.pmprogateway_stripe.php:279
3132
  #: classes/gateways/class.pmprogateway_stripe.php:286
@@ -3137,14 +3382,16 @@ msgstr ""
3137
  #: classes/gateways/class.pmprogateway_stripe.php:1245
3138
  #: classes/gateways/class.pmprogateway_stripe.php:1259
3139
  #: classes/gateways/class.pmprogateway_stripe.php:1260
 
3140
  #: classes/gateways/class.pmprogateway_stripe.php:1390
3141
  #: classes/gateways/class.pmprogateway_stripe.php:1391
3142
  #: classes/gateways/class.pmprogateway_stripe.php:1409
3143
  #: classes/gateways/class.pmprogateway_stripe.php:1410
 
3144
  msgid "Error creating plan with Stripe:"
3145
  msgstr ""
3146
 
3147
- #: classes/gateways/class.pmprogateway_stripe.php:1441
3148
  #: classes/gateways/class.pmprogateway_stripe.php:294
3149
  #: classes/gateways/class.pmprogateway_stripe.php:295
3150
  #: classes/gateways/class.pmprogateway_stripe.php:302
@@ -3156,10 +3403,11 @@ msgstr ""
3156
  #: classes/gateways/class.pmprogateway_stripe.php:1422
3157
  #: classes/gateways/class.pmprogateway_stripe.php:1440
3158
  #: classes/gateways/class.pmprogateway_stripe.php:1441
 
3159
  msgid "Error subscribing customer to plan with Stripe:"
3160
  msgstr ""
3161
 
3162
- #: classes/gateways/class.pmprogateway_stripe.php:1537
3163
  #: classes/gateways/class.pmprogateway_stripe.php:383
3164
  #: classes/gateways/class.pmprogateway_stripe.php:389
3165
  #: classes/gateways/class.pmprogateway_stripe.php:410
@@ -3168,50 +3416,59 @@ msgstr ""
3168
  #: classes/gateways/class.pmprogateway_stripe.php:1518
3169
  #: classes/gateways/class.pmprogateway_stripe.php:1536
3170
  #: classes/gateways/class.pmprogateway_stripe.php:1537
 
3171
  msgid "Could not cancel old subscription."
3172
  msgstr ""
3173
 
3174
- #: classes/gateways/class.pmprogateway_stripe.php:1554
3175
  #: classes/gateways/class.pmprogateway_stripe.php:1533
3176
  #: classes/gateways/class.pmprogateway_stripe.php:1534
3177
  #: classes/gateways/class.pmprogateway_stripe.php:1535
3178
  #: classes/gateways/class.pmprogateway_stripe.php:1553
3179
  #: classes/gateways/class.pmprogateway_stripe.php:1554
 
3180
  msgid "Could not find the customer."
3181
  msgstr ""
3182
 
3183
  #: classes/gateways/class.pmprogateway_twocheckout.php:60
3184
- #: paid-memberships-pro.php:125
3185
  #: classes/gateways/class.pmprogateway_twocheckout.php:53
 
3186
  #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
3187
  msgid "2Checkout"
3188
  msgstr ""
3189
 
3190
  #: classes/gateways/class.pmprogateway_twocheckout.php:116
3191
  #: classes/gateways/class.pmprogateway_twocheckout.php:108
 
3192
  msgid "2Checkout Settings"
3193
  msgstr ""
3194
 
 
3195
  #: classes/gateways/class.pmprogateway_twocheckout.php:125
3196
  msgid ""
3197
  "Go to Account &raquo; User Management in 2Checkout and create a user with "
3198
  "API Access and API Updating."
3199
  msgstr ""
3200
 
 
3201
  #: classes/gateways/class.pmprogateway_twocheckout.php:134
3202
  msgid "Password for the API user created."
3203
  msgstr ""
3204
 
 
3205
  #: classes/gateways/class.pmprogateway_twocheckout.php:139
3206
  msgid "API Private Key"
3207
  msgstr ""
3208
 
 
3209
  #: classes/gateways/class.pmprogateway_twocheckout.php:143
3210
  msgid ""
3211
  "Go to API in 2Checkout and generate a new key pair. Paste the Private Key "
3212
  "here."
3213
  msgstr ""
3214
 
 
3215
  #: classes/gateways/class.pmprogateway_twocheckout.php:152
3216
  msgid "Click on the profile icon in 2Checkout to find your Account Number."
3217
  msgstr ""
@@ -3219,9 +3476,11 @@ msgstr ""
3219
  #: classes/gateways/class.pmprogateway_twocheckout.php:157
3220
  #: adminpages/paymentsettings.php:355 adminpages/paymentsettings.php:360
3221
  #: classes/gateways/class.pmprogateway_twocheckout.php:137
 
3222
  msgid "Secret Word"
3223
  msgstr ""
3224
 
 
3225
  #: classes/gateways/class.pmprogateway_twocheckout.php:161
3226
  msgid ""
3227
  "Go to Account &raquo; Site Management. Look under Checkout Options to find "
@@ -3232,9 +3491,11 @@ msgstr ""
3232
  #: adminpages/paymentsettings.php:487 adminpages/paymentsettings.php:493
3233
  #: adminpages/paymentsettings.php:495
3234
  #: classes/gateways/class.pmprogateway_twocheckout.php:145
 
3235
  msgid "TwoCheckout INS URL"
3236
  msgstr ""
3237
 
 
3238
  #: classes/gateways/class.pmprogateway_twocheckout.php:169
3239
  msgid ""
3240
  "To fully integrate with 2Checkout, be sure to use the following for your INS "
@@ -3243,6 +3504,7 @@ msgstr ""
3243
 
3244
  #: classes/gateways/class.pmprogateway_twocheckout.php:214
3245
  #: classes/gateways/class.pmprogateway_twocheckout.php:192
 
3246
  msgid "Check Out with 2Checkout"
3247
  msgstr ""
3248
 
@@ -3255,48 +3517,53 @@ msgstr ""
3255
  #: includes/adminpages.php:48 includes/adminpages.php:118
3256
  #: includes/adminpages.php:10 includes/adminpages.php:48
3257
  #: includes/adminpages.php:49 includes/adminpages.php:107
3258
- #: includes/adminpages.php:114
3259
  msgid "Page Settings"
3260
  msgstr ""
3261
 
3262
  #: includes/adminpages.php:49 includes/adminpages.php:125
3263
  #: includes/adminpages.php:11 includes/adminpages.php:49
3264
  #: includes/adminpages.php:54 includes/adminpages.php:114
3265
- #: includes/adminpages.php:121
3266
  msgid "Payment Settings"
3267
  msgstr ""
3268
 
3269
  #: includes/adminpages.php:54 includes/adminpages.php:160
3270
  #: includes/adminpages.php:16 includes/adminpages.php:54
3271
  #: includes/adminpages.php:79 includes/adminpages.php:149
3272
- #: includes/adminpages.php:156
3273
  msgid "Reports"
3274
  msgstr ""
3275
 
3276
  #: includes/adminpages.php:56 includes/adminpages.php:174
3277
  #: includes/adminpages.php:18 includes/adminpages.php:56
3278
  #: includes/adminpages.php:89 includes/adminpages.php:163
3279
- #: includes/adminpages.php:170
3280
  msgid "Discount Codes"
3281
  msgstr ""
3282
 
3283
  #: includes/adminpages.php:104 includes/adminpages.php:100
 
3284
  msgid "<span class=\"ab-icon\"></span>Memberships"
3285
  msgstr ""
3286
 
3287
  #: includes/adminpages.php:265 includes/adminpages.php:261
 
3288
  msgid "Docs"
3289
  msgstr ""
3290
 
3291
  #: includes/adminpages.php:265 includes/adminpages.php:261
 
3292
  msgid "View PMPro Documentation"
3293
  msgstr ""
3294
 
3295
  #: includes/adminpages.php:266 includes/adminpages.php:262
 
3296
  msgid "Support"
3297
  msgstr ""
3298
 
3299
  #: includes/adminpages.php:266 includes/adminpages.php:262
 
3300
  msgid "Visit Customer Support Forum"
3301
  msgstr ""
3302
 
@@ -3616,35 +3883,37 @@ msgstr ""
3616
  msgid "Membership expires after %d %s."
3617
  msgstr ""
3618
 
3619
- #: includes/functions.php:569 includes/functions.php:491
3620
  #: includes/functions.php:514 includes/functions.php:525
3621
  #: includes/functions.php:536 includes/functions.php:537
3622
  #: includes/functions.php:538 includes/functions.php:545
3623
  #: includes/functions.php:569 includes/functions.php:570
3624
- #: includes/functions.php:576
3625
  msgid "User ID not found."
3626
  msgstr ""
3627
 
3628
- #: includes/functions.php:589 includes/functions.php:508
3629
  #: includes/functions.php:531 includes/functions.php:542
3630
  #: includes/functions.php:553 includes/functions.php:554
3631
  #: includes/functions.php:555 includes/functions.php:562
3632
  #: includes/functions.php:586 includes/functions.php:587
3633
  #: includes/functions.php:589 includes/functions.php:596
 
3634
  msgid "Invalid level."
3635
  msgstr ""
3636
 
3637
- #: includes/functions.php:600 includes/functions.php:520
3638
  #: includes/functions.php:542 includes/functions.php:553
3639
  #: includes/functions.php:564 includes/functions.php:565
3640
  #: includes/functions.php:566 includes/functions.php:573
3641
  #: includes/functions.php:597 includes/functions.php:598
3642
  #: includes/functions.php:600 includes/functions.php:607
 
3643
  msgid "not changing?"
3644
  msgstr ""
3645
 
3646
- #: includes/functions.php:617 includes/functions.php:676
3647
- #: includes/functions.php:700 includes/functions.php:537
3648
  #: includes/functions.php:559 includes/functions.php:570
3649
  #: includes/functions.php:581 includes/functions.php:582
3650
  #: includes/functions.php:583 includes/functions.php:590
@@ -3659,11 +3928,12 @@ msgstr ""
3659
  #: includes/functions.php:673 includes/functions.php:674
3660
  #: includes/functions.php:676 includes/functions.php:683
3661
  #: includes/functions.php:697 includes/functions.php:698
3662
- #: includes/functions.php:700 includes/functions.php:707
 
3663
  msgid "Error interacting with database"
3664
  msgstr ""
3665
 
3666
- #: includes/functions.php:741 includes/functions.php:780
3667
  #: includes/functions.php:629 includes/functions.php:651
3668
  #: includes/functions.php:667 includes/functions.php:668
3669
  #: includes/functions.php:678 includes/functions.php:681
@@ -3674,121 +3944,191 @@ msgstr ""
3674
  #: includes/functions.php:737 includes/functions.php:738
3675
  #: includes/functions.php:739 includes/functions.php:741
3676
  #: includes/functions.php:748 includes/functions.php:753
3677
- #: includes/functions.php:777 includes/functions.php:778
3678
- #: includes/functions.php:780 includes/functions.php:787
 
3679
  msgid "Membership level not found."
3680
  msgstr ""
3681
 
3682
- #: includes/functions.php:1150 includes/functions.php:1100
3683
  #: includes/functions.php:1101 includes/functions.php:1118
3684
  #: includes/functions.php:1142 includes/functions.php:1143
3685
  #: includes/functions.php:1150 includes/functions.php:1157
 
3686
  msgid "No code was given to check."
3687
  msgstr ""
3688
 
3689
- #: includes/functions.php:1159 includes/functions.php:1050
3690
  #: includes/functions.php:1072 includes/functions.php:1088
3691
  #: includes/functions.php:1099 includes/functions.php:1102
3692
  #: includes/functions.php:1109 includes/functions.php:1110
3693
  #: includes/functions.php:1112 includes/functions.php:1113
3694
  #: includes/functions.php:1127 includes/functions.php:1151
3695
  #: includes/functions.php:1152 includes/functions.php:1159
3696
- #: includes/functions.php:1166
3697
  msgid "The discount code could not be found."
3698
  msgstr ""
3699
 
3700
- #: includes/functions.php:1174 includes/functions.php:1066
3701
  #: includes/functions.php:1088 includes/functions.php:1104
3702
  #: includes/functions.php:1115 includes/functions.php:1118
3703
  #: includes/functions.php:1124 includes/functions.php:1125
3704
  #: includes/functions.php:1128 includes/functions.php:1129
3705
  #: includes/functions.php:1142 includes/functions.php:1166
3706
  #: includes/functions.php:1167 includes/functions.php:1174
3707
- #: includes/functions.php:1181
3708
  #, php-format
3709
  msgid "This discount code goes into effect on %s."
3710
  msgstr ""
3711
 
3712
- #: includes/functions.php:1181 includes/functions.php:1075
3713
  #: includes/functions.php:1097 includes/functions.php:1113
3714
  #: includes/functions.php:1124 includes/functions.php:1127
3715
  #: includes/functions.php:1131 includes/functions.php:1132
3716
  #: includes/functions.php:1137 includes/functions.php:1138
3717
  #: includes/functions.php:1149 includes/functions.php:1173
3718
  #: includes/functions.php:1174 includes/functions.php:1181
3719
- #: includes/functions.php:1188
3720
  #, php-format
3721
  msgid "This discount code expired on %s."
3722
  msgstr ""
3723
 
3724
- #: includes/functions.php:1191 includes/functions.php:1087
3725
  #: includes/functions.php:1109 includes/functions.php:1125
3726
  #: includes/functions.php:1136 includes/functions.php:1139
3727
  #: includes/functions.php:1141 includes/functions.php:1142
3728
  #: includes/functions.php:1149 includes/functions.php:1150
3729
  #: includes/functions.php:1159 includes/functions.php:1183
3730
  #: includes/functions.php:1184 includes/functions.php:1191
3731
- #: includes/functions.php:1198
3732
  msgid "This discount code is no longer valid."
3733
  msgstr ""
3734
 
3735
- #: includes/functions.php:1204 includes/functions.php:1102
3736
  #: includes/functions.php:1124 includes/functions.php:1140
3737
  #: includes/functions.php:1151 includes/functions.php:1154
3738
  #: includes/functions.php:1155 includes/functions.php:1164
3739
  #: includes/functions.php:1165 includes/functions.php:1172
3740
  #: includes/functions.php:1196 includes/functions.php:1197
3741
  #: includes/functions.php:1204 includes/functions.php:1211
 
3742
  msgid "This discount code does not apply to this membership level."
3743
  msgstr ""
3744
 
3745
- #: includes/functions.php:1230 includes/functions.php:1110
3746
  #: includes/functions.php:1132 includes/functions.php:1148
3747
  #: includes/functions.php:1159 includes/functions.php:1162
3748
  #: includes/functions.php:1172 includes/functions.php:1180
3749
  #: includes/functions.php:1181 includes/functions.php:1182
3750
  #: includes/functions.php:1198 includes/functions.php:1222
3751
  #: includes/functions.php:1223 includes/functions.php:1230
3752
- #: includes/functions.php:1237
3753
  msgid "This discount code is okay."
3754
  msgstr ""
3755
 
3756
- #: includes/functions.php:1255 includes/functions.php:1134
3757
  #: includes/functions.php:1156 includes/functions.php:1172
3758
  #: includes/functions.php:1183 includes/functions.php:1186
3759
  #: includes/functions.php:1196 includes/functions.php:1205
3760
  #: includes/functions.php:1206 includes/functions.php:1223
3761
  #: includes/functions.php:1247 includes/functions.php:1248
3762
  #: includes/functions.php:1255 includes/functions.php:1262
 
3763
  msgid "and"
3764
  msgstr ""
3765
 
3766
- #: includes/functions.php:1450 includes/functions.php:1319
3767
  #: includes/functions.php:1341 includes/functions.php:1361
3768
  #: includes/functions.php:1372 includes/functions.php:1375
3769
  #: includes/functions.php:1385 includes/functions.php:1394
3770
  #: includes/functions.php:1395 includes/functions.php:1412
3771
  #: includes/functions.php:1436 includes/functions.php:1437
3772
  #: includes/functions.php:1450 includes/functions.php:1457
 
3773
  msgid "Sign Up for !!name!! Now"
3774
  msgstr ""
3775
 
3776
- #: includes/functions.php:1456 includes/functions.php:1325
3777
  #: includes/functions.php:1347 includes/functions.php:1367
3778
  #: includes/functions.php:1378 includes/functions.php:1381
3779
  #: includes/functions.php:1391 includes/functions.php:1400
3780
  #: includes/functions.php:1401 includes/functions.php:1418
3781
  #: includes/functions.php:1442 includes/functions.php:1443
3782
  #: includes/functions.php:1456 includes/functions.php:1463
 
3783
  msgid "Please specify a level id."
3784
  msgstr ""
3785
 
3786
- #: includes/init.php:235 includes/profile.php:39 includes/init.php:229
3787
- #: includes/init.php:232 includes/init.php:233 includes/profile.php:37
3788
- #: includes/profile.php:39
3789
  msgid "None"
3790
  msgstr ""
3791
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3792
  #: includes/localization.php:26 includes/localization.php:23
3793
  #: includes/localization.php:26
3794
  msgid "Day"
@@ -3840,11 +4180,11 @@ msgstr ""
3840
  msgid "Current Level"
3841
  msgstr ""
3842
 
3843
- #: includes/profile.php:54 includes/profile.php:54
3844
  msgid "Not paying."
3845
  msgstr ""
3846
 
3847
- #: includes/profile.php:64 includes/profile.php:64
3848
  msgid ""
3849
  "This will not change the subscription at the gateway unless the 'Cancel' "
3850
  "checkbox is selected below."
@@ -3872,136 +4212,152 @@ msgid ""
3872
  "register to read."
3873
  msgstr ""
3874
 
3875
- #: pages/billing.php:14 pages/billing.php:14
3876
  #, php-format
3877
  msgid "Logged in as <strong>%s</strong>."
3878
  msgstr ""
3879
 
3880
- #: pages/billing.php:14 pages/billing.php:14
3881
  msgid "logout"
3882
  msgstr ""
3883
 
3884
- #: pages/billing.php:16 pages/cancel.php:52 pages/invoice.php:109
3885
  #: pages/levels.php:13 shortcodes/pmpro_account.php:44
3886
  #: shortcodes/pmpro_account.php:123 pages/account.php:12 pages/account.php:18
3887
- #: pages/account.php:92 pages/billing.php:16 pages/cancel.php:52
3888
- #: pages/invoice.php:109 pages/levels.php:13 shortcodes/pmpro_account.php:44
3889
- #: shortcodes/pmpro_account.php:123
3890
  msgid "Level"
3891
  msgstr ""
3892
 
3893
- #: pages/billing.php:18 pages/account.php:14 pages/billing.php:18
 
3894
  msgid "Membership Fee"
3895
  msgstr ""
3896
 
3897
- #: pages/billing.php:22 pages/account.php:18 pages/billing.php:22
3898
- #: pages/levels.php:70
3899
  #, php-format
3900
  msgid "%s every %d %s."
3901
  msgstr ""
3902
 
3903
- #: pages/billing.php:24 pages/account.php:20 pages/billing.php:24
3904
- #: pages/levels.php:66
3905
  #, php-format
3906
  msgid "%s per %s."
3907
  msgstr ""
3908
 
3909
- #: pages/billing.php:33 pages/account.php:25 pages/account.php:29
3910
- #: pages/billing.php:29 pages/billing.php:33
3911
  msgid "Duration"
3912
  msgstr ""
3913
 
3914
- #: pages/billing.php:43 pages/billing.php:39 pages/billing.php:43
 
3915
  msgid ""
3916
  "Your payment subscription is managed by PayPal. Please <a href=\"http://www."
3917
  "paypal.com\">login to PayPal here</a> to update your billing information."
3918
  msgstr ""
3919
 
3920
- #: pages/billing.php:69 pages/checkout.php:309 pages/billing.php:65
3921
- #: pages/billing.php:69 pages/checkout.php:305 pages/checkout.php:307
3922
- #: pages/checkout.php:309 pages/checkout.php:321 pages/checkout.php:328
 
3923
  msgid "First Name"
3924
  msgstr ""
3925
 
3926
- #: pages/billing.php:73 pages/checkout.php:313 pages/billing.php:69
3927
- #: pages/billing.php:73 pages/checkout.php:309 pages/checkout.php:311
3928
- #: pages/checkout.php:313 pages/checkout.php:325 pages/checkout.php:332
 
3929
  msgid "Last Name"
3930
  msgstr ""
3931
 
3932
- #: pages/billing.php:77 pages/checkout.php:317 pages/billing.php:73
3933
- #: pages/billing.php:77 pages/checkout.php:313 pages/checkout.php:315
3934
- #: pages/checkout.php:317 pages/checkout.php:329 pages/checkout.php:336
 
3935
  msgid "Address 1"
3936
  msgstr ""
3937
 
3938
- #: pages/billing.php:81 pages/checkout.php:321 pages/billing.php:77
3939
- #: pages/billing.php:81 pages/checkout.php:317 pages/checkout.php:319
3940
- #: pages/checkout.php:321 pages/checkout.php:333 pages/checkout.php:340
 
3941
  msgid "Address 2"
3942
  msgstr ""
3943
 
3944
- #: pages/billing.php:91 pages/checkout.php:331 pages/billing.php:87
3945
- #: pages/billing.php:91 pages/checkout.php:327 pages/checkout.php:329
3946
- #: pages/checkout.php:331 pages/checkout.php:343 pages/checkout.php:350
 
3947
  msgid "City"
3948
  msgstr ""
3949
 
3950
- #: pages/billing.php:95 pages/checkout.php:335 pages/billing.php:91
3951
- #: pages/billing.php:95 pages/checkout.php:331 pages/checkout.php:333
3952
- #: pages/checkout.php:335 pages/checkout.php:347 pages/checkout.php:354
 
3953
  msgid "State"
3954
  msgstr ""
3955
 
3956
- #: pages/billing.php:99 pages/checkout.php:339 pages/billing.php:95
3957
- #: pages/billing.php:99 pages/checkout.php:335 pages/checkout.php:337
3958
- #: pages/checkout.php:339 pages/checkout.php:351 pages/checkout.php:358
 
3959
  msgid "Postal Code"
3960
  msgstr ""
3961
 
3962
- #: pages/billing.php:108 pages/checkout.php:348 pages/billing.php:104
3963
- #: pages/billing.php:108 pages/checkout.php:344 pages/checkout.php:346
3964
- #: pages/checkout.php:348 pages/checkout.php:360 pages/checkout.php:367
 
3965
  msgid "City, State Zip"
3966
  msgstr ""
3967
 
3968
- #: pages/billing.php:161 pages/checkout.php:401 pages/billing.php:157
3969
- #: pages/billing.php:161 pages/checkout.php:397 pages/checkout.php:399
3970
- #: pages/checkout.php:401 pages/checkout.php:413 pages/checkout.php:420
 
3971
  msgid "Country"
3972
  msgstr ""
3973
 
3974
- #: pages/billing.php:186 pages/checkout.php:426 pages/billing.php:182
3975
- #: pages/billing.php:186 pages/checkout.php:422 pages/checkout.php:424
3976
- #: pages/checkout.php:426 pages/checkout.php:438 pages/checkout.php:445
 
3977
  msgid "Phone"
3978
  msgstr ""
3979
 
3980
- #: pages/billing.php:197 pages/checkout.php:207 pages/checkout.php:440
3981
- #: pages/billing.php:193 pages/billing.php:197 pages/checkout.php:204
3982
- #: pages/checkout.php:207 pages/checkout.php:209 pages/checkout.php:436
3983
- #: pages/checkout.php:438 pages/checkout.php:440 pages/checkout.php:453
 
3984
  #: pages/checkout.php:460
3985
  msgid "E-mail Address"
3986
  msgstr ""
3987
 
3988
- #: pages/billing.php:201 pages/checkout.php:449 pages/billing.php:197
3989
- #: pages/billing.php:201 pages/checkout.php:445 pages/checkout.php:447
3990
- #: pages/checkout.php:449 pages/checkout.php:462 pages/checkout.php:469
 
3991
  msgid "Confirm E-mail"
3992
  msgstr ""
3993
 
3994
- #: pages/billing.php:221 pages/billing.php:217 pages/billing.php:221
 
3995
  msgid "Credit Card Information"
3996
  msgstr ""
3997
 
3998
- #: pages/billing.php:221 pages/billing.php:217 pages/billing.php:221
 
3999
  #, php-format
4000
  msgid "We accept %s"
4001
  msgstr ""
4002
 
4003
- #: pages/billing.php:344 pages/billing.php:309 pages/billing.php:313
4004
- #: pages/billing.php:344
4005
  msgid ""
4006
  "This subscription is not recurring. So you don't need to update your billing "
4007
  "information."
@@ -4037,114 +4393,119 @@ msgstr ""
4037
  msgid "Click here to go to the home page."
4038
  msgstr ""
4039
 
4040
- #: pages/checkout.php:26 pages/checkout.php:26 pages/checkout.php:27
4041
- #: pages/checkout.php:28
4042
  msgid ""
4043
  "Almost done. Review the membership information and pricing below then "
4044
  "<strong>click the \"Complete Payment\" button</strong> to finish your order."
4045
  msgstr ""
4046
 
4047
- #: pages/checkout.php:33 pages/checkout.php:33 pages/checkout.php:34
4048
- #: pages/checkout.php:35
4049
  msgid "change"
4050
  msgstr ""
4051
 
4052
- #: pages/checkout.php:41 pages/checkout.php:41 pages/checkout.php:42
4053
- #: pages/checkout.php:43
4054
  #, php-format
4055
  msgid "You have selected the <strong>%s</strong> membership level."
4056
  msgstr ""
4057
 
4058
- #: pages/checkout.php:51 pages/checkout.php:51 pages/checkout.php:53
 
4059
  #, php-format
4060
  msgid ""
4061
  "<p class=\"pmpro_level_discount_applied\">The <strong>%s</strong> code has "
4062
  "been applied to your order.</p>"
4063
  msgstr ""
4064
 
4065
- #: pages/checkout.php:62 services/applydiscountcode.php:89
4066
  #: pages/checkout.php:62 pages/checkout.php:63 pages/checkout.php:64
4067
- #: services/applydiscountcode.php:74 services/applydiscountcode.php:75
4068
- #: services/applydiscountcode.php:78 services/applydiscountcode.php:89
 
4069
  msgid "Click here to change your discount code"
4070
  msgstr ""
4071
 
4072
- #: pages/checkout.php:64 pages/checkout.php:64 pages/checkout.php:65
4073
- #: pages/checkout.php:66
4074
  msgid "Click here to enter your discount code"
4075
  msgstr ""
4076
 
4077
- #: pages/checkout.php:64 pages/checkout.php:64 pages/checkout.php:65
4078
- #: pages/checkout.php:66
4079
  msgid "Do you have a discount code?"
4080
  msgstr ""
4081
 
4082
- #: pages/checkout.php:163 pages/checkout.php:160 pages/checkout.php:163
4083
- #: pages/checkout.php:165
4084
  msgid "Account Information"
4085
  msgstr ""
4086
 
4087
- #: pages/checkout.php:163 pages/checkout.php:160 pages/checkout.php:163
4088
- #: pages/checkout.php:165
4089
  msgid "Already have an account?"
4090
  msgstr ""
4091
 
4092
- #: pages/checkout.php:163 pages/checkout.php:160 pages/checkout.php:163
4093
- #: pages/checkout.php:165
4094
  msgid "Log in here"
4095
  msgstr ""
4096
 
4097
- #: pages/checkout.php:189 pages/checkout.php:186 pages/checkout.php:189
4098
- #: pages/checkout.php:191
4099
  msgid "Confirm Password"
4100
  msgstr ""
4101
 
4102
- #: pages/checkout.php:216 pages/checkout.php:213 pages/checkout.php:216
4103
- #: pages/checkout.php:218
4104
  msgid "Confirm E-mail Address"
4105
  msgstr ""
4106
 
4107
- #: pages/checkout.php:235 pages/checkout.php:232 pages/checkout.php:235
4108
- #: pages/checkout.php:237
4109
  msgid "Full Name"
4110
  msgstr ""
4111
 
4112
- #: pages/checkout.php:236 pages/checkout.php:233 pages/checkout.php:236
4113
- #: pages/checkout.php:238
4114
  msgid "LEAVE THIS BLANK"
4115
  msgstr ""
4116
 
4117
- #: pages/checkout.php:260 pages/checkout.php:257 pages/checkout.php:260
4118
- #: pages/checkout.php:262
4119
  #, php-format
4120
  msgid ""
4121
  "You are logged in as <strong>%s</strong>. If you would like to use a "
4122
  "different account for this membership, <a href=\"%s\">log out now</a>."
4123
  msgstr ""
4124
 
4125
- #: pages/checkout.php:276 pages/checkout.php:276 pages/checkout.php:278
4126
- #: pages/checkout.php:292 pages/checkout.php:299
4127
  msgid "Choose your Payment Method"
4128
  msgstr ""
4129
 
4130
- #: pages/checkout.php:284 pages/checkout.php:284 pages/checkout.php:286
4131
- #: pages/checkout.php:300 pages/checkout.php:307
4132
  msgid "Check Out with a Credit Card Here"
4133
  msgstr ""
4134
 
4135
- #: pages/checkout.php:672 pages/checkout.php:277 pages/checkout.php:284
4136
  #: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
 
4137
  #, php-format
4138
  msgid "I agree to the %s"
4139
  msgstr ""
4140
 
4141
- #: pages/checkout.php:692 pages/checkout.php:667 pages/checkout.php:674
4142
  #: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
 
4143
  msgid "Complete Payment"
4144
  msgstr ""
4145
 
4146
- #: pages/checkout.php:714 pages/checkout.php:687 pages/checkout.php:694
4147
  #: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
 
4148
  msgid "Processing..."
4149
  msgstr ""
4150
 
@@ -4285,18 +4646,18 @@ msgstr ""
4285
  msgid "&larr; Return to Home"
4286
  msgstr ""
4287
 
4288
- #: paid-memberships-pro.php:116 adminpages/orders.php:398
4289
  #: adminpages/orders.php:448 paid-memberships-pro.php:115
4290
  #: paid-memberships-pro.php:116
4291
  msgid "Testing Only"
4292
  msgstr ""
4293
 
4294
- #: paid-memberships-pro.php:121 paid-memberships-pro.php:120
4295
  #: paid-memberships-pro.php:121
4296
  msgid "PayPal Payflow Pro/PayPal Pro"
4297
  msgstr ""
4298
 
4299
- #: paid-memberships-pro.php:126 paid-memberships-pro.php:125
4300
  #: paid-memberships-pro.php:126
4301
  msgid "Cybersource"
4302
  msgstr ""
@@ -4365,7 +4726,8 @@ msgstr ""
4365
  msgid "Error updating billing information."
4366
  msgstr ""
4367
 
4368
- #: preheaders/cancel.php:25 preheaders/cancel.php:24 preheaders/cancel.php:25
 
4369
  msgid "Your membership has been cancelled."
4370
  msgstr ""
4371
 
@@ -4385,10 +4747,8 @@ msgstr ""
4385
  msgid "Checkout: Payment Information"
4386
  msgstr ""
4387
 
4388
- #: preheaders/checkout.php:100 preheaders/checkout.php:99
4389
- #: preheaders/checkout.php:100 preheaders/checkout.php:102
4390
- #: preheaders/checkout.php:109
4391
- msgid "Set up Your Account"
4392
  msgstr ""
4393
 
4394
  #: preheaders/checkout.php:300 preheaders/checkout.php:300
@@ -4455,62 +4815,63 @@ msgstr ""
4455
  #: preheaders/checkout.php:665 preheaders/checkout.php:691
4456
  #: preheaders/checkout.php:709 preheaders/checkout.php:710
4457
  msgid ""
4458
- "Unknown error generating account. Please contact us to set up your membership."
 
4459
  msgstr ""
4460
 
4461
- #: preheaders/checkout.php:569 preheaders/checkout.php:550
4462
  #: preheaders/checkout.php:552 preheaders/checkout.php:569
4463
- #: preheaders/checkout.php:785 preheaders/checkout.php:792
4464
- #: preheaders/checkout.php:797 preheaders/checkout.php:825
4465
- #: preheaders/checkout.php:844 preheaders/checkout.php:859
4466
- #: preheaders/checkout.php:860
4467
  msgid ""
4468
  "Your payment was accepted, but there was an error setting up your account. "
4469
  "Please contact us."
4470
  msgstr ""
4471
 
4472
- #: preheaders/checkout.php:710 preheaders/checkout.php:691
4473
  #: preheaders/checkout.php:693 preheaders/checkout.php:710
4474
- #: preheaders/checkout.php:953 preheaders/checkout.php:960
4475
- #: preheaders/checkout.php:970 preheaders/checkout.php:983
4476
- #: preheaders/checkout.php:1030 preheaders/checkout.php:1045
4477
- #: preheaders/checkout.php:1046
4478
  msgid ""
4479
  "IMPORTANT: Something went wrong during membership creation. Your credit card "
4480
  "authorized, but we cancelled the order immediately. You should not try to "
4481
  "submit this form again. Please contact the site owner to fix this issue."
4482
  msgstr ""
4483
 
4484
- #: preheaders/checkout.php:713 preheaders/checkout.php:694
4485
  #: preheaders/checkout.php:696 preheaders/checkout.php:713
4486
- #: preheaders/checkout.php:956 preheaders/checkout.php:963
4487
- #: preheaders/checkout.php:973 preheaders/checkout.php:988
4488
- #: preheaders/checkout.php:1035 preheaders/checkout.php:1050
4489
- #: preheaders/checkout.php:1051
4490
  msgid ""
4491
  "IMPORTANT: Something went wrong during membership creation. Your credit card "
4492
  "was charged, but we couldn't assign your membership. You should not submit "
4493
  "this form again. Please contact the site owner to fix this issue."
4494
  msgstr ""
4495
 
4496
- #: preheaders/checkout.php:724 preheaders/checkout.php:705
4497
  #: preheaders/checkout.php:707 preheaders/checkout.php:724
4498
- #: preheaders/checkout.php:967 preheaders/checkout.php:974
4499
- #: preheaders/checkout.php:984 preheaders/checkout.php:1001
4500
- #: preheaders/checkout.php:1048 preheaders/checkout.php:1063
4501
- #: preheaders/checkout.php:1064
4502
  #, php-format
4503
  msgid ""
4504
- "You must <a href=\"%s\">set up a Payment Gateway</a> before any payments will "
4505
- "be processed."
4506
  msgstr ""
4507
 
4508
- #: preheaders/checkout.php:726 preheaders/checkout.php:707
4509
  #: preheaders/checkout.php:709 preheaders/checkout.php:726
4510
- #: preheaders/checkout.php:969 preheaders/checkout.php:976
4511
- #: preheaders/checkout.php:986 preheaders/checkout.php:1003
4512
- #: preheaders/checkout.php:1050 preheaders/checkout.php:1065
4513
- #: preheaders/checkout.php:1066
4514
  msgid "A Payment Gateway must be set up before any payments will be processed."
4515
  msgstr ""
4516
 
@@ -4623,6 +4984,14 @@ msgstr ""
4623
  msgid "Member Links"
4624
  msgstr ""
4625
 
 
 
 
 
 
 
 
 
4626
  #: adminpages/discountcodes.php:437
4627
  msgid "Billing Ammount"
4628
  msgstr ""
@@ -4665,6 +5034,15 @@ msgstr ""
4665
  msgid "every"
4666
  msgstr ""
4667
 
 
 
 
 
 
 
 
 
 
4668
  #: adminpages/memberslist.php:184 adminpages/memberslist.php:212
4669
  msgid "Never"
4670
  msgstr ""
@@ -4813,3 +5191,8 @@ msgstr ""
4813
  #, php-format
4814
  msgid "%s after %d %s."
4815
  msgstr ""
 
 
 
 
 
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: pmpro\n"
8
+ "POT-Creation-Date: 2015-08-04 10:23-0400\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: \n"
11
  "Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
 
16
+ #: adminpages/addons.php:21 adminpages/advancedsettings.php:5
17
+ #: adminpages/discountcodes.php:5 adminpages/emailsettings.php:5
18
+ #: adminpages/membershiplevels.php:5 adminpages/memberslist-csv.php:5
19
+ #: adminpages/memberslist.php:5 adminpages/orders-csv.php:5
20
+ #: adminpages/orders.php:5 adminpages/pagesettings.php:5
21
+ #: adminpages/paymentsettings.php:5 includes/license.php:36
22
  #: adminpages/addons.php:5 adminpages/advancedsettings.php:5
23
  #: adminpages/discountcodes.php:5 adminpages/emailsettings.php:5
24
  #: adminpages/membershiplevels.php:5 adminpages/memberslist-csv.php:5
25
  #: adminpages/memberslist.php:5 adminpages/orders-csv.php:5
26
  #: adminpages/orders.php:5 adminpages/pagesettings.php:5
27
+ #: adminpages/paymentsettings.php:5
 
 
 
 
 
28
  msgid "You do not have permissions to perform this action."
29
  msgstr ""
30
 
31
+ #: adminpages/addons.php:80 adminpages/admin_header.php:170
32
+ #: includes/adminpages.php:52 includes/adminpages.php:146
33
+ #: adminpages/admin_header.php:133 adminpages/admin_header.php:154
34
+ #: adminpages/admin_header.php:170 includes/adminpages.php:14
35
+ #: includes/adminpages.php:52 includes/adminpages.php:69
36
+ #: includes/adminpages.php:135 includes/adminpages.php:142
37
+ #: includes/adminpages.php:146
38
+ msgid "Add Ons"
39
  msgstr ""
40
 
41
+ #: adminpages/addons.php:87
42
+ #, php-format
43
+ msgid "Last checked on %s at %s."
44
+ msgstr ""
45
+
46
+ #: adminpages/addons.php:88
47
+ msgid "Check Again"
48
+ msgstr ""
49
+
50
+ #: adminpages/addons.php:92 adminpages/orders.php:605
51
+ #: adminpages/orders.php:605
52
+ msgid "All"
53
+ msgstr ""
54
+
55
+ #: adminpages/addons.php:93
56
+ msgid "Active"
57
+ msgstr ""
58
+
59
+ #: adminpages/addons.php:94
60
+ msgid "Inactive"
61
+ msgstr ""
62
+
63
+ #: adminpages/addons.php:95
64
+ msgid "Update Available"
65
+ msgstr ""
66
+
67
+ #: adminpages/addons.php:96
68
+ msgid "Not Installed"
69
+ msgstr ""
70
+
71
+ #: adminpages/addons.php:109
72
+ msgid "Add On Name"
73
+ msgstr ""
74
+
75
+ #: adminpages/addons.php:110
76
+ msgid "Type"
77
+ msgstr ""
78
+
79
+ #: adminpages/addons.php:111 adminpages/membershiplevels.php:300
80
+ #: adminpages/membershiplevels.php:296 adminpages/membershiplevels.php:298
81
+ #: adminpages/membershiplevels.php:300
82
+ msgid "Description"
83
+ msgstr ""
84
+
85
+ #: adminpages/addons.php:134
86
+ msgid "No Add Ons found."
87
+ msgstr ""
88
+
89
+ #: adminpages/addons.php:195 adminpages/addons.php:200
90
+ #: adminpages/addons.php:212
91
+ msgid "Install Now"
92
+ msgstr ""
93
+
94
+ #: adminpages/addons.php:201 adminpages/addons.php:207
95
+ #: adminpages/addons.php:213 adminpages/addons.php:219
96
+ msgid "Download"
97
+ msgstr ""
98
+
99
+ #: adminpages/addons.php:206 adminpages/addons.php:218
100
+ msgid "Update License"
101
+ msgstr ""
102
+
103
+ #: adminpages/addons.php:224
104
+ msgid "Deactivate"
105
+ msgstr ""
106
+
107
+ #: adminpages/addons.php:224
108
+ #, php-format
109
+ msgid "Deactivate %s"
110
+ msgstr ""
111
+
112
+ #: adminpages/addons.php:228
113
+ msgid "Activate"
114
+ msgstr ""
115
+
116
+ #: adminpages/addons.php:228
117
+ #, php-format
118
+ msgid "Activate %s"
119
+ msgstr ""
120
+
121
+ #: adminpages/addons.php:229
122
+ msgid "Delete"
123
+ msgstr ""
124
+
125
+ #: adminpages/addons.php:229
126
+ #, php-format
127
+ msgid "Delete %s"
128
+ msgstr ""
129
+
130
+ #: adminpages/addons.php:239
131
+ msgid "PMPro Free"
132
+ msgstr ""
133
+
134
+ #: adminpages/addons.php:241
135
+ msgid "PMPro Core"
136
+ msgstr ""
137
+
138
+ #: adminpages/addons.php:243
139
+ msgid "PMPro Plus"
140
+ msgstr ""
141
+
142
+ #: adminpages/addons.php:245
143
+ msgid "WordPress.org"
144
+ msgstr ""
145
+
146
+ #: adminpages/addons.php:247
147
+ msgid "N/A"
148
+ msgstr ""
149
+
150
+ #: adminpages/addons.php:256
151
+ #, php-format
152
+ msgid "Version %s"
153
+ msgstr ""
154
+
155
+ #: adminpages/addons.php:261
156
+ #, php-format
157
+ msgid "By %s"
158
+ msgstr ""
159
+
160
+ #: adminpages/addons.php:268
161
+ #, php-format
162
+ msgid "More information about %s"
163
+ msgstr ""
164
+
165
+ #: adminpages/addons.php:270
166
+ msgid "View details"
167
+ msgstr ""
168
+
169
+ #: adminpages/addons.php:275
170
+ msgid "Visit plugin site"
171
  msgstr ""
172
 
173
  #: adminpages/admin_header.php:25 adminpages/admin_header.php:25
254
  msgid "User Forum"
255
  msgstr ""
256
 
257
+ #: adminpages/admin_header.php:150 adminpages/membershiplevels.php:619
258
  #: adminpages/pagesettings.php:69 includes/adminpages.php:64
259
  #: includes/adminpages.php:65 includes/adminpages.php:111
260
  #: adminpages/admin_header.php:128 adminpages/admin_header.php:149
261
+ #: adminpages/admin_header.php:150 adminpages/membershiplevels.php:490
262
+ #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
263
+ #: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:526
264
+ #: adminpages/membershiplevels.php:569 adminpages/pagesettings.php:69
265
  #: includes/adminpages.php:44 includes/adminpages.php:64
266
  #: includes/adminpages.php:65 includes/adminpages.php:100
267
+ #: includes/adminpages.php:107 includes/adminpages.php:111
268
  msgid "Membership Levels"
269
  msgstr ""
270
 
271
  #: adminpages/admin_header.php:154 adminpages/pagesettings.php:120
272
  #: adminpages/admin_header.php:129 adminpages/admin_header.php:150
273
+ #: adminpages/admin_header.php:154 adminpages/pagesettings.php:92
274
+ #: adminpages/pagesettings.php:120
275
  msgid "Pages"
276
  msgstr ""
277
 
278
  #: adminpages/admin_header.php:158 adminpages/admin_header.php:130
279
+ #: adminpages/admin_header.php:151 adminpages/admin_header.php:158
280
  msgid "Payment Gateway &amp; SSL"
281
  msgstr ""
282
 
283
+ #: adminpages/admin_header.php:162 adminpages/memberslist.php:168
284
  #: shortcodes/pmpro_account.php:106 adminpages/admin_header.php:131
285
+ #: adminpages/admin_header.php:152 adminpages/admin_header.php:162
286
+ #: adminpages/memberslist.php:115 adminpages/memberslist.php:148
287
+ #: adminpages/memberslist.php:158 adminpages/memberslist.php:168
288
  #: pages/account.php:52 pages/account.php:56 pages/account.php:77
289
  #: shortcodes/pmpro_account.php:106
290
  msgid "Email"
291
  msgstr ""
292
 
293
  #: adminpages/admin_header.php:166 adminpages/admin_header.php:132
294
+ #: adminpages/admin_header.php:153 adminpages/admin_header.php:166
295
  msgid "Advanced"
296
  msgstr ""
297
 
 
 
 
 
 
 
 
 
298
  #: adminpages/advancedsettings.php:43 adminpages/advancedsettings.php:35
299
  #: adminpages/advancedsettings.php:42 adminpages/advancedsettings.php:43
300
  msgid "Your advanced settings have been updated."
327
  #: adminpages/advancedsettings.php:86 adminpages/advancedsettings.php:88
328
  #: includes/adminpages.php:13 includes/adminpages.php:51
329
  #: includes/adminpages.php:64 includes/adminpages.php:128
330
+ #: includes/adminpages.php:135 includes/adminpages.php:139
331
  msgid "Advanced Settings"
332
  msgstr ""
333
 
391
  msgid "Yes - Show excerpts."
392
  msgstr ""
393
 
394
+ #: adminpages/advancedsettings.php:144 adminpages/advancedsettings.php:144
395
  msgid "Hide Ads From Members?"
396
  msgstr ""
397
 
398
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
399
+ #: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:668
400
  #: adminpages/paymentsettings.php:210
401
+ #: classes/gateways/class.pmprogateway_stripe.php:174 includes/profile.php:105
402
  #: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
403
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:187
404
  #: adminpages/advancedsettings.php:194 adminpages/advancedsettings.php:199
406
  #: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:563
407
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
408
  #: adminpages/membershiplevels.php:578 adminpages/membershiplevels.php:598
409
+ #: adminpages/membershiplevels.php:658 adminpages/paymentsettings.php:210
410
+ #: adminpages/paymentsettings.php:414 adminpages/paymentsettings.php:429
411
+ #: adminpages/paymentsettings.php:434 adminpages/paymentsettings.php:436
412
+ #: adminpages/paymentsettings.php:454 adminpages/paymentsettings.php:459
413
+ #: adminpages/paymentsettings.php:461
414
+ #: classes/gateways/class.pmprogateway_stripe.php:173
415
+ #: classes/gateways/class.pmprogateway_stripe.php:174 includes/profile.php:101
416
  #: includes/profile.php:121 includes/profile.php:123
417
  msgid "No"
418
  msgstr ""
452
  msgid "multisite only"
453
  msgstr ""
454
 
455
+ #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:668
456
  #: adminpages/paymentsettings.php:211
457
+ #: classes/gateways/class.pmprogateway_stripe.php:175 includes/profile.php:106
458
  #: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
459
  #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:563
460
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
461
  #: adminpages/membershiplevels.php:578 adminpages/membershiplevels.php:598
462
+ #: adminpages/membershiplevels.php:658 adminpages/paymentsettings.php:211
463
+ #: adminpages/paymentsettings.php:415 adminpages/paymentsettings.php:424
464
+ #: adminpages/paymentsettings.php:430 adminpages/paymentsettings.php:435
465
+ #: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:455
466
+ #: adminpages/paymentsettings.php:460 adminpages/paymentsettings.php:462
467
+ #: classes/gateways/class.pmprogateway_stripe.php:174
468
+ #: classes/gateways/class.pmprogateway_stripe.php:175 includes/profile.php:102
469
  #: includes/profile.php:122 includes/profile.php:124
470
  msgid "Yes"
471
  msgstr ""
522
  msgid "selected"
523
  msgstr ""
524
 
525
+ #: adminpages/advancedsettings.php:368 adminpages/pagesettings.php:251
526
  #: adminpages/paymentsettings.php:238 adminpages/advancedsettings.php:284
527
  #: adminpages/advancedsettings.php:355 adminpages/advancedsettings.php:368
528
  #: adminpages/pagesettings.php:209 adminpages/pagesettings.php:223
529
+ #: adminpages/pagesettings.php:251 adminpages/pagesettings.php:254
530
+ #: adminpages/paymentsettings.php:238 adminpages/paymentsettings.php:485
531
+ #: adminpages/paymentsettings.php:526 adminpages/paymentsettings.php:532
532
+ #: adminpages/paymentsettings.php:534
533
  msgid "Save Settings"
534
  msgstr ""
535
 
598
  msgstr ""
599
 
600
  #: adminpages/discountcodes.php:310 adminpages/discountcodes.php:586
601
+ #: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:637
602
+ #: adminpages/memberslist.php:164 adminpages/orders.php:910
603
  #: adminpages/reports/login.php:142 adminpages/discountcodes.php:306
604
  #: adminpages/discountcodes.php:309 adminpages/discountcodes.php:310
605
  #: adminpages/discountcodes.php:547 adminpages/discountcodes.php:557
606
  #: adminpages/discountcodes.php:585 adminpages/discountcodes.php:586
607
  #: adminpages/membershiplevels.php:284 adminpages/membershiplevels.php:286
608
+ #: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:505
609
+ #: adminpages/membershiplevels.php:511 adminpages/membershiplevels.php:513
610
+ #: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:541
611
+ #: adminpages/membershiplevels.php:583 adminpages/memberslist.php:111
612
  #: adminpages/memberslist.php:144 adminpages/memberslist.php:154
613
+ #: adminpages/memberslist.php:164 adminpages/orders.php:597
614
+ #: adminpages/orders.php:900 adminpages/orders.php:910
615
  #: adminpages/reports/login.php:140 adminpages/reports/login.php:142
616
  msgid "ID"
617
  msgstr ""
624
  msgstr ""
625
 
626
  #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:587
627
+ #: adminpages/orders.php:265 adminpages/orders.php:911
628
  #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
629
  #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:548
630
  #: adminpages/discountcodes.php:558 adminpages/discountcodes.php:586
631
  #: adminpages/discountcodes.php:587 adminpages/orders.php:215
632
  #: adminpages/orders.php:265 adminpages/orders.php:598
633
+ #: adminpages/orders.php:901 adminpages/orders.php:911
634
  msgid "Code"
635
  msgstr ""
636
 
641
 
642
  #: adminpages/discountcodes.php:371
643
  #: classes/gateways/class.pmprogateway_braintree.php:321
644
+ #: classes/gateways/class.pmprogateway_stripe.php:455 pages/billing.php:262
645
+ #: pages/checkout.php:562 adminpages/discountcodes.php:367
646
  #: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
647
  #: classes/gateways/class.pmprogateway_braintree.php:308
648
  #: classes/gateways/class.pmprogateway_braintree.php:321
649
+ #: classes/gateways/class.pmprogateway_stripe.php:454
650
+ #: classes/gateways/class.pmprogateway_stripe.php:455 pages/billing.php:249
651
+ #: pages/billing.php:253 pages/billing.php:262 pages/checkout.php:508
652
+ #: pages/checkout.php:524 pages/checkout.php:525 pages/checkout.php:532
653
+ #: pages/checkout.php:553 pages/checkout.php:562
654
  msgid "Expiration Date"
655
  msgstr ""
656
 
672
  msgid "Which Levels Will This Code Apply To?"
673
  msgstr ""
674
 
675
+ #: adminpages/discountcodes.php:431 adminpages/membershiplevels.php:342
676
  #: adminpages/discountcodes.php:427 adminpages/discountcodes.php:430
677
  #: adminpages/discountcodes.php:431 adminpages/membershiplevels.php:337
678
+ #: adminpages/membershiplevels.php:339 adminpages/membershiplevels.php:341
679
+ #: adminpages/membershiplevels.php:507 adminpages/membershiplevels.php:513
680
+ #: adminpages/membershiplevels.php:515 adminpages/membershiplevels.php:542
681
+ #: pages/levels.php:14
682
  msgid "Initial Payment"
683
  msgstr ""
684
 
685
+ #: adminpages/discountcodes.php:442 adminpages/membershiplevels.php:353
686
  #: adminpages/discountcodes.php:428 adminpages/discountcodes.php:431
687
  #: adminpages/discountcodes.php:441 adminpages/discountcodes.php:442
688
  #: adminpages/membershiplevels.php:338 adminpages/membershiplevels.php:340
689
+ #: adminpages/membershiplevels.php:350 adminpages/membershiplevels.php:352
690
  msgid "The initial amount collected at registration."
691
  msgstr ""
692
 
693
+ #: adminpages/discountcodes.php:447 adminpages/membershiplevels.php:357
694
  #: adminpages/discountcodes.php:432 adminpages/discountcodes.php:435
695
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:447
696
  #: adminpages/membershiplevels.php:342 adminpages/membershiplevels.php:344
697
+ #: adminpages/membershiplevels.php:354 adminpages/membershiplevels.php:356
698
  msgid "Recurring Subscription"
699
  msgstr ""
700
 
701
+ #: adminpages/discountcodes.php:448 adminpages/membershiplevels.php:358
702
  #: adminpages/discountcodes.php:433 adminpages/discountcodes.php:436
703
  #: adminpages/discountcodes.php:447 adminpages/discountcodes.php:448
704
  #: adminpages/membershiplevels.php:343 adminpages/membershiplevels.php:345
705
+ #: adminpages/membershiplevels.php:355 adminpages/membershiplevels.php:357
706
  msgid "Check if this level has a recurring subscription payment."
707
  msgstr ""
708
 
709
+ #: adminpages/discountcodes.php:452 adminpages/membershiplevels.php:362
710
  #: adminpages/discountcodes.php:440 adminpages/discountcodes.php:451
711
  #: adminpages/discountcodes.php:452 adminpages/membershiplevels.php:347
712
  #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:359
713
+ #: adminpages/membershiplevels.php:361
714
  msgid "Billing Amount"
715
  msgstr ""
716
 
717
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
718
+ #: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:480
719
+ #: classes/gateways/class.pmprogateway_stripe.php:522
720
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
721
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
722
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
723
  #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
724
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:376
725
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
726
+ #: adminpages/membershiplevels.php:477 adminpages/membershiplevels.php:479
727
  #: classes/gateways/class.pmprogateway_stripe.php:521
728
+ #: classes/gateways/class.pmprogateway_stripe.php:522
729
  msgid "Day(s)"
730
  msgstr ""
731
 
732
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
733
+ #: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:480
734
+ #: classes/gateways/class.pmprogateway_stripe.php:522
735
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
736
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
737
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
738
  #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
739
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:376
740
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
741
+ #: adminpages/membershiplevels.php:477 adminpages/membershiplevels.php:479
742
  #: classes/gateways/class.pmprogateway_stripe.php:521
743
+ #: classes/gateways/class.pmprogateway_stripe.php:522
744
  msgid "Month(s)"
745
  msgstr ""
746
 
747
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
748
+ #: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:480
749
+ #: classes/gateways/class.pmprogateway_stripe.php:522
750
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
751
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
752
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
753
  #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
754
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:376
755
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
756
+ #: adminpages/membershiplevels.php:477 adminpages/membershiplevels.php:479
757
  #: classes/gateways/class.pmprogateway_stripe.php:521
758
+ #: classes/gateways/class.pmprogateway_stripe.php:522
759
  msgid "Week(s)"
760
  msgstr ""
761
 
762
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
763
+ #: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:480
764
+ #: classes/gateways/class.pmprogateway_stripe.php:522
765
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
766
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
767
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
768
  #: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
769
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:376
770
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:476
771
+ #: adminpages/membershiplevels.php:477 adminpages/membershiplevels.php:479
772
  #: classes/gateways/class.pmprogateway_stripe.php:521
773
+ #: classes/gateways/class.pmprogateway_stripe.php:522
774
  msgid "Year(s)"
775
  msgstr ""
776
 
777
+ #: adminpages/discountcodes.php:475 adminpages/membershiplevels.php:386
778
  #: adminpages/discountcodes.php:451 adminpages/discountcodes.php:454
779
  #: adminpages/discountcodes.php:474 adminpages/discountcodes.php:475
780
  #: adminpages/membershiplevels.php:362 adminpages/membershiplevels.php:364
781
+ #: adminpages/membershiplevels.php:383 adminpages/membershiplevels.php:385
782
  msgid "The amount to be billed one cycle after the initial payment."
783
  msgstr ""
784
 
785
+ #: adminpages/discountcodes.php:480 adminpages/membershiplevels.php:404
786
  #: adminpages/discountcodes.php:456 adminpages/discountcodes.php:459
787
  #: adminpages/discountcodes.php:479 adminpages/discountcodes.php:480
788
  #: adminpages/membershiplevels.php:380 adminpages/membershiplevels.php:382
789
+ #: adminpages/membershiplevels.php:401 adminpages/membershiplevels.php:403
790
  msgid "Billing Cycle Limit"
791
  msgstr ""
792
 
793
+ #: adminpages/discountcodes.php:483 adminpages/membershiplevels.php:408
794
  #: adminpages/discountcodes.php:459 adminpages/discountcodes.php:462
795
  #: adminpages/discountcodes.php:482 adminpages/discountcodes.php:483
796
  #: adminpages/membershiplevels.php:384 adminpages/membershiplevels.php:386
797
+ #: adminpages/membershiplevels.php:405 adminpages/membershiplevels.php:407
798
  msgid ""
799
  "The <strong>total</strong> number of recurring billing cycles for this "
800
  "level, including the trial period (if applicable) but not including the "
801
  "initial payment. Set to zero if membership is indefinite."
802
  msgstr ""
803
 
804
+ #: adminpages/discountcodes.php:488 adminpages/membershiplevels.php:417
805
  #: adminpages/discountcodes.php:464 adminpages/discountcodes.php:467
806
  #: adminpages/discountcodes.php:487 adminpages/discountcodes.php:488
807
  #: adminpages/membershiplevels.php:393 adminpages/membershiplevels.php:395
808
+ #: adminpages/membershiplevels.php:414 adminpages/membershiplevels.php:416
809
  msgid "Custom Trial"
810
  msgstr ""
811
 
812
+ #: adminpages/discountcodes.php:489 adminpages/membershiplevels.php:419
813
  #: adminpages/discountcodes.php:465 adminpages/discountcodes.php:468
814
  #: adminpages/discountcodes.php:488 adminpages/discountcodes.php:489
815
  #: adminpages/membershiplevels.php:394 adminpages/membershiplevels.php:395
816
  #: adminpages/membershiplevels.php:397 adminpages/membershiplevels.php:416
817
+ #: adminpages/membershiplevels.php:418
818
  msgid "Check to add a custom trial period."
819
  msgstr ""
820
 
821
+ #: adminpages/discountcodes.php:493 adminpages/membershiplevels.php:428
822
  #: adminpages/discountcodes.php:469 adminpages/discountcodes.php:472
823
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:493
824
  #: adminpages/membershiplevels.php:398 adminpages/membershiplevels.php:404
825
  #: adminpages/membershiplevels.php:406 adminpages/membershiplevels.php:425
826
+ #: adminpages/membershiplevels.php:427
827
  msgid "Trial Billing Amount"
828
  msgstr ""
829
 
830
+ #: adminpages/discountcodes.php:504 adminpages/membershiplevels.php:439
831
  #: adminpages/discountcodes.php:472 adminpages/discountcodes.php:475
832
  #: adminpages/discountcodes.php:503 adminpages/discountcodes.php:504
833
  #: adminpages/membershiplevels.php:401 adminpages/membershiplevels.php:407
834
  #: adminpages/membershiplevels.php:409 adminpages/membershiplevels.php:436
835
+ #: adminpages/membershiplevels.php:438
836
  msgid "for the first"
837
  msgstr ""
838
 
839
+ #: adminpages/discountcodes.php:506 adminpages/membershiplevels.php:441
840
  #: adminpages/discountcodes.php:474 adminpages/discountcodes.php:477
841
  #: adminpages/discountcodes.php:505 adminpages/discountcodes.php:506
842
  #: adminpages/membershiplevels.php:403 adminpages/membershiplevels.php:409
843
  #: adminpages/membershiplevels.php:411 adminpages/membershiplevels.php:438
844
+ #: adminpages/membershiplevels.php:440
845
  msgid "subscription payments"
846
  msgstr ""
847
 
848
+ #: adminpages/discountcodes.php:511 adminpages/membershiplevels.php:470
849
  #: adminpages/discountcodes.php:479 adminpages/discountcodes.php:482
850
  #: adminpages/discountcodes.php:510 adminpages/discountcodes.php:511
851
  #: adminpages/membershiplevels.php:431 adminpages/membershiplevels.php:437
852
  #: adminpages/membershiplevels.php:439 adminpages/membershiplevels.php:466
853
+ #: adminpages/membershiplevels.php:467 adminpages/membershiplevels.php:469
854
  msgid "Membership Expiration"
855
  msgstr ""
856
 
857
+ #: adminpages/discountcodes.php:512 adminpages/membershiplevels.php:471
858
  #: adminpages/discountcodes.php:483 adminpages/discountcodes.php:511
859
  #: adminpages/discountcodes.php:512 adminpages/membershiplevels.php:432
860
  #: adminpages/membershiplevels.php:438 adminpages/membershiplevels.php:440
861
  #: adminpages/membershiplevels.php:467 adminpages/membershiplevels.php:468
862
+ #: adminpages/membershiplevels.php:470
863
  msgid "Check this to set when membership access expires."
864
  msgstr ""
865
 
866
+ #: adminpages/discountcodes.php:516 adminpages/membershiplevels.php:475
867
  #: adminpages/discountcodes.php:484 adminpages/discountcodes.php:487
868
  #: adminpages/discountcodes.php:515 adminpages/discountcodes.php:516
869
  #: adminpages/membershiplevels.php:436 adminpages/membershiplevels.php:442
870
  #: adminpages/membershiplevels.php:444 adminpages/membershiplevels.php:471
871
+ #: adminpages/membershiplevels.php:472 adminpages/membershiplevels.php:474
872
  msgid "Expires In"
873
  msgstr ""
874
 
875
+ #: adminpages/discountcodes.php:529 adminpages/membershiplevels.php:488
876
  #: adminpages/discountcodes.php:500 adminpages/discountcodes.php:528
877
  #: adminpages/discountcodes.php:529 adminpages/membershiplevels.php:449
878
  #: adminpages/membershiplevels.php:455 adminpages/membershiplevels.php:457
879
  #: adminpages/membershiplevels.php:484 adminpages/membershiplevels.php:485
880
+ #: adminpages/membershiplevels.php:487
881
  msgid ""
882
  "Set the duration of membership access. Note that the any future payments "
883
  "(recurring subscription, if any) will be cancelled when the membership "
909
  msgid "Starts"
910
  msgstr ""
911
 
912
+ #: adminpages/discountcodes.php:589 adminpages/memberslist.php:179
913
+ #: adminpages/reports/login.php:147 includes/profile.php:102
914
  #: adminpages/discountcodes.php:550 adminpages/discountcodes.php:560
915
  #: adminpages/discountcodes.php:588 adminpages/discountcodes.php:589
916
  #: adminpages/memberslist.php:121 adminpages/memberslist.php:159
917
+ #: adminpages/memberslist.php:169 adminpages/memberslist.php:179
918
+ #: adminpages/reports/login.php:145 adminpages/reports/login.php:147
919
+ #: includes/profile.php:98 includes/profile.php:118 includes/profile.php:120
920
  msgid "Expires"
921
  msgstr ""
922
 
940
  "select customers."
941
  msgstr ""
942
 
943
+ #: adminpages/discountcodes.php:649 adminpages/membershiplevels.php:670
944
+ #: adminpages/orders.php:992 adminpages/discountcodes.php:614
945
  #: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
946
  #: adminpages/discountcodes.php:648 adminpages/membershiplevels.php:564
947
  #: adminpages/membershiplevels.php:570 adminpages/membershiplevels.php:572
948
  #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:599
949
+ #: adminpages/membershiplevels.php:660 adminpages/orders.php:658
950
+ #: adminpages/orders.php:961 adminpages/orders.php:979
951
+ #: adminpages/orders.php:989
952
  msgid "edit"
953
  msgstr ""
954
 
955
+ #: adminpages/discountcodes.php:652 adminpages/discountcodes.php:617
956
  #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
957
  #: adminpages/discountcodes.php:651
958
  #, php-format
962
  "code anymore."
963
  msgstr ""
964
 
965
+ #: adminpages/discountcodes.php:652 adminpages/membershiplevels.php:670
966
+ #: adminpages/orders.php:998 adminpages/discountcodes.php:617
967
  #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
968
  #: adminpages/discountcodes.php:651 adminpages/membershiplevels.php:566
969
  #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
970
  #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
971
+ #: adminpages/membershiplevels.php:660 adminpages/orders.php:664
972
+ #: adminpages/orders.php:967 adminpages/orders.php:985
973
+ #: adminpages/orders.php:995
974
  msgid "delete"
975
  msgstr ""
976
 
979
  #: adminpages/emailsettings.php:69 includes/adminpages.php:12
980
  #: includes/adminpages.php:50 includes/adminpages.php:59
981
  #: includes/adminpages.php:121 includes/adminpages.php:128
982
+ #: includes/adminpages.php:132
983
  msgid "Email Settings"
984
  msgstr ""
985
 
1084
  msgstr ""
1085
 
1086
  #: adminpages/membershiplevels.php:120 adminpages/membershiplevels.php:118
1087
+ #: adminpages/membershiplevels.php:120
1088
  msgid "Membership level updated successfully."
1089
  msgstr ""
1090
 
1091
  #: adminpages/membershiplevels.php:126 adminpages/membershiplevels.php:124
1092
+ #: adminpages/membershiplevels.php:126
1093
  msgid "Error updating membership level."
1094
  msgstr ""
1095
 
1096
  #: adminpages/membershiplevels.php:143 adminpages/membershiplevels.php:141
1097
+ #: adminpages/membershiplevels.php:143
1098
  msgid "Membership level added successfully."
1099
  msgstr ""
1100
 
1101
  #: adminpages/membershiplevels.php:148 adminpages/membershiplevels.php:146
1102
+ #: adminpages/membershiplevels.php:148
1103
  msgid "Error adding membership level."
1104
  msgstr ""
1105
 
1106
  #: adminpages/membershiplevels.php:183 adminpages/membershiplevels.php:179
1107
+ #: adminpages/membershiplevels.php:181 adminpages/membershiplevels.php:183
1108
  #, php-format
1109
  msgid ""
1110
  "There was an error canceling the subscription for user with ID=%d. You will "
1113
  msgstr ""
1114
 
1115
  #: adminpages/membershiplevels.php:186 adminpages/membershiplevels.php:182
1116
+ #: adminpages/membershiplevels.php:184 adminpages/membershiplevels.php:186
1117
  msgid "Last Invoice"
1118
  msgstr ""
1119
 
1120
  #: adminpages/membershiplevels.php:200 adminpages/membershiplevels.php:196
1121
+ #: adminpages/membershiplevels.php:198 adminpages/membershiplevels.php:200
1122
  msgid "Membership level deleted successfully."
1123
  msgstr ""
1124
 
1125
  #: adminpages/membershiplevels.php:205 adminpages/membershiplevels.php:211
1126
  #: adminpages/membershiplevels.php:201 adminpages/membershiplevels.php:203
1127
+ #: adminpages/membershiplevels.php:205 adminpages/membershiplevels.php:207
1128
+ #: adminpages/membershiplevels.php:209 adminpages/membershiplevels.php:211
1129
  msgid "Error deleting membership level."
1130
  msgstr ""
1131
 
1132
  #: adminpages/membershiplevels.php:226 adminpages/membershiplevels.php:222
1133
+ #: adminpages/membershiplevels.php:224 adminpages/membershiplevels.php:226
1134
  msgid "Edit Membership Level"
1135
  msgstr ""
1136
 
1137
  #: adminpages/membershiplevels.php:228 adminpages/membershiplevels.php:224
1138
+ #: adminpages/membershiplevels.php:226 adminpages/membershiplevels.php:228
1139
  msgid "Add New Membership Level"
1140
  msgstr ""
1141
 
1142
+ #: adminpages/membershiplevels.php:295 adminpages/membershiplevels.php:638
1143
  #: adminpages/reports/login.php:144 adminpages/membershiplevels.php:291
1144
+ #: adminpages/membershiplevels.php:293 adminpages/membershiplevels.php:295
1145
+ #: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:512
1146
+ #: adminpages/membershiplevels.php:514 adminpages/membershiplevels.php:541
1147
+ #: adminpages/membershiplevels.php:542 adminpages/membershiplevels.php:584
1148
  #: adminpages/reports/login.php:142 adminpages/reports/login.php:144
1149
  msgid "Name"
1150
  msgstr ""
1151
 
 
 
 
 
 
1152
  #: adminpages/membershiplevels.php:318 adminpages/membershiplevels.php:314
1153
+ #: adminpages/membershiplevels.php:316 adminpages/membershiplevels.php:318
1154
  msgid "Confirmation Message"
1155
  msgstr ""
1156
 
1157
+ #: adminpages/membershiplevels.php:338 adminpages/membershiplevels.php:639
1158
  #: adminpages/membershiplevels.php:333 adminpages/membershiplevels.php:335
1159
+ #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:543
1160
+ #: adminpages/membershiplevels.php:585
1161
  msgid "Billing Details"
1162
  msgstr ""
1163
 
1164
+ #: adminpages/membershiplevels.php:373
1165
+ #: classes/gateways/class.pmprogateway_stripe.php:620
1166
  #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
1167
+ #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
1168
  #: classes/gateways/class.pmprogateway_stripe.php:619
1169
+ #: classes/gateways/class.pmprogateway_stripe.php:620
1170
  msgid "per"
1171
  msgstr ""
1172
 
1173
+ #: adminpages/membershiplevels.php:388 adminpages/membershiplevels.php:366
1174
+ #: adminpages/membershiplevels.php:385 adminpages/membershiplevels.php:387
1175
  msgid ""
1176
  "Stripe integration currently only supports billing periods of \"Week\", "
1177
  "\"Month\" or \"Year\"."
1178
  msgstr ""
1179
 
1180
+ #: adminpages/membershiplevels.php:390 adminpages/membershiplevels.php:366
1181
  #: adminpages/membershiplevels.php:368 adminpages/membershiplevels.php:387
1182
+ #: adminpages/membershiplevels.php:389
1183
  msgid ""
1184
  "Braintree integration currently only supports billing periods of \"Month\" "
1185
  "or \"Year\"."
1186
  msgstr ""
1187
 
1188
+ #: adminpages/membershiplevels.php:392 adminpages/membershiplevels.php:368
1189
  #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:389
1190
+ #: adminpages/membershiplevels.php:391
1191
  msgid ""
1192
  "Payflow integration currently only supports billing frequencies of 1 and "
1193
  "billing periods of \"Week\", \"Month\" or \"Year\"."
1194
  msgstr ""
1195
 
1196
+ #: adminpages/membershiplevels.php:396 adminpages/membershiplevels.php:372
1197
  #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:393
1198
+ #: adminpages/membershiplevels.php:395
1199
  msgid ""
1200
  "After saving this level, make note of the ID and create a \"Plan\" in your "
1201
  "Braintree dashboard with the same settings and the \"Plan ID\" set to "
1202
  "<em>pmpro_#</em>, where # is the level ID."
1203
  msgstr ""
1204
 
1205
+ #: adminpages/membershiplevels.php:396 adminpages/membershiplevels.php:398
1206
  #: classes/gateways/class.pmprogateway_cybersource.php:101
1207
  #: classes/gateways/class.pmprogateway_paypal.php:118
1208
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:133
1209
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
1210
  #: adminpages/membershiplevels.php:372 adminpages/membershiplevels.php:374
1211
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:393
1212
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:397
1213
+ #: adminpages/paymentsettings.php:170 adminpages/paymentsettings.php:174
1214
+ #: adminpages/paymentsettings.php:179
1215
  #: classes/gateways/class.pmprogateway_cybersource.php:101
1216
  #: classes/gateways/class.pmprogateway_paypal.php:118
1217
  #: classes/gateways/class.pmprogateway_paypalexpress.php:123
1219
  msgid "Note"
1220
  msgstr ""
1221
 
1222
+ #: adminpages/membershiplevels.php:398 adminpages/membershiplevels.php:374
1223
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:395
1224
+ #: adminpages/membershiplevels.php:397
1225
  msgid ""
1226
  "You will need to create a \"Plan\" in your Braintree dashboard with the same "
1227
  "settings and the \"Plan ID\" set to"
1228
  msgstr ""
1229
 
1230
+ #: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:386
1231
  #: adminpages/membershiplevels.php:388 adminpages/membershiplevels.php:407
1232
+ #: adminpages/membershiplevels.php:409
1233
  msgid ""
1234
  "Stripe integration currently does not support billing limits. You can still "
1235
  "set an expiration date below."
1236
  msgstr ""
1237
 
1238
+ #: adminpages/membershiplevels.php:422 adminpages/membershiplevels.php:398
1239
  #: adminpages/membershiplevels.php:400 adminpages/membershiplevels.php:419
1240
+ #: adminpages/membershiplevels.php:421
1241
  msgid ""
1242
  "2Checkout integration does not support custom trials. You can do one period "
1243
  "trials by setting an initial payment different from the billing amount."
1244
  msgstr ""
1245
 
1246
+ #: adminpages/membershiplevels.php:444 adminpages/membershiplevels.php:406
1247
  #: adminpages/membershiplevels.php:412 adminpages/membershiplevels.php:414
1248
+ #: adminpages/membershiplevels.php:441 adminpages/membershiplevels.php:443
1249
  msgid ""
1250
  "Stripe integration currently does not support trial amounts greater than $0."
1251
  msgstr ""
1252
 
1253
+ #: adminpages/membershiplevels.php:448 adminpages/membershiplevels.php:410
1254
  #: adminpages/membershiplevels.php:416 adminpages/membershiplevels.php:418
1255
+ #: adminpages/membershiplevels.php:445 adminpages/membershiplevels.php:447
1256
  msgid ""
1257
  "Braintree integration currently does not support trial amounts greater than "
1258
  "$0."
1259
  msgstr ""
1260
 
1261
+ #: adminpages/membershiplevels.php:452 adminpages/membershiplevels.php:414
1262
  #: adminpages/membershiplevels.php:420 adminpages/membershiplevels.php:422
1263
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:451
1264
  msgid ""
1265
  "Payflow integration currently does not support trial amounts greater than $0."
1266
  msgstr ""
1267
 
1268
+ #: adminpages/membershiplevels.php:461 adminpages/membershiplevels.php:422
1269
  #: adminpages/membershiplevels.php:428 adminpages/membershiplevels.php:430
1270
  #: adminpages/membershiplevels.php:457 adminpages/membershiplevels.php:458
1271
+ #: adminpages/membershiplevels.php:460
1272
  msgid "Other Settings"
1273
  msgstr ""
1274
 
1275
+ #: adminpages/membershiplevels.php:465 adminpages/membershiplevels.php:426
1276
  #: adminpages/membershiplevels.php:432 adminpages/membershiplevels.php:434
1277
  #: adminpages/membershiplevels.php:461 adminpages/membershiplevels.php:462
1278
+ #: adminpages/membershiplevels.php:464
1279
  msgid "Disable New Signups"
1280
  msgstr ""
1281
 
1282
+ #: adminpages/membershiplevels.php:466 adminpages/membershiplevels.php:427
1283
  #: adminpages/membershiplevels.php:433 adminpages/membershiplevels.php:435
1284
  #: adminpages/membershiplevels.php:462 adminpages/membershiplevels.php:463
1285
+ #: adminpages/membershiplevels.php:465
1286
  msgid ""
1287
  "Check to hide this level from the membership levels page and disable "
1288
  "registration."
1289
  msgstr ""
1290
 
1291
+ #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:457
1292
  #: adminpages/membershiplevels.php:463 adminpages/membershiplevels.php:465
1293
  #: adminpages/membershiplevels.php:492 adminpages/membershiplevels.php:493
1294
+ #: adminpages/membershiplevels.php:495
1295
  msgid "Content Settings"
1296
  msgstr ""
1297
 
1298
+ #: adminpages/membershiplevels.php:500 adminpages/membershiplevels.php:461
1299
  #: adminpages/membershiplevels.php:467 adminpages/membershiplevels.php:469
1300
  #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:497
1301
+ #: adminpages/membershiplevels.php:499
1302
  msgid "Categories"
1303
  msgstr ""
1304
 
1305
+ #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:516
1306
  msgid "Save Level"
1307
  msgstr ""
1308
 
1309
+ #: adminpages/membershiplevels.php:518 adminpages/orders.php:561
1310
+ #: pages/billing.php:339 pages/cancel.php:71 shortcodes/pmpro_account.php:70
1311
+ #: adminpages/membershiplevels.php:517 adminpages/orders.php:511
1312
+ #: adminpages/orders.php:561 pages/account.php:44 pages/billing.php:295
1313
+ #: pages/billing.php:299 pages/billing.php:330 pages/billing.php:339
1314
  #: pages/cancel.php:71 shortcodes/pmpro_account.php:70
1315
  msgid "Cancel"
1316
  msgstr ""
1317
 
1318
+ #: adminpages/membershiplevels.php:619 adminpages/membershiplevels.php:490
1319
  #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
1320
  #: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:526
1321
+ #: adminpages/membershiplevels.php:569
1322
  msgid "Add New Level"
1323
  msgstr ""
1324
 
1325
+ #: adminpages/membershiplevels.php:622 adminpages/membershiplevels.php:625
1326
  #: adminpages/membershiplevels.php:493 adminpages/membershiplevels.php:496
1327
  #: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:501
1328
  #: adminpages/membershiplevels.php:502 adminpages/membershiplevels.php:504
1329
  #: adminpages/membershiplevels.php:528 adminpages/membershiplevels.php:529
1330
  #: adminpages/membershiplevels.php:531 adminpages/membershiplevels.php:532
1331
+ #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:575
1332
  msgid "Search Levels"
1333
  msgstr ""
1334
 
1335
+ #: adminpages/membershiplevels.php:631 adminpages/membershiplevels.php:579
1336
  msgid "Drag and drop membership levels to reorder them on the Levels page."
1337
  msgstr ""
1338
 
1339
+ #: adminpages/membershiplevels.php:640 pages/cancel.php:53
1340
  #: pages/confirmation.php:83 pages/invoice.php:70
1341
  #: shortcodes/pmpro_account.php:46 adminpages/membershiplevels.php:510
1342
  #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:518
1343
  #: adminpages/membershiplevels.php:544 adminpages/membershiplevels.php:545
1344
+ #: adminpages/membershiplevels.php:586 pages/account.php:20
1345
+ #: pages/cancel.php:53 pages/confirmation.php:81 pages/confirmation.php:83
1346
+ #: pages/invoice.php:68 pages/invoice.php:70 shortcodes/pmpro_account.php:46
1347
  msgid "Expiration"
1348
  msgstr ""
1349
 
1350
+ #: adminpages/membershiplevels.php:641 adminpages/membershiplevels.php:511
1351
  #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:519
1352
  #: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:546
1353
+ #: adminpages/membershiplevels.php:587
1354
  msgid "Allow Signups"
1355
  msgstr ""
1356
 
1357
+ #: adminpages/membershiplevels.php:656 adminpages/membershiplevels.php:534
1358
  #: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:542
1359
  #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:569
1360
+ #: adminpages/membershiplevels.php:646
1361
  msgid "FREE"
1362
  msgstr ""
1363
 
1364
+ #: adminpages/membershiplevels.php:665 adminpages/membershiplevels.php:560
1365
  #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:568
1366
  #: adminpages/membershiplevels.php:575 adminpages/membershiplevels.php:595
1367
+ #: adminpages/membershiplevels.php:655
1368
  msgid "After"
1369
  msgstr ""
1370
 
1371
+ #: adminpages/membershiplevels.php:670 adminpages/orders.php:995
 
 
 
 
 
 
 
 
 
1372
  #: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
1373
  #: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
1374
+ #: adminpages/membershiplevels.php:600 adminpages/membershiplevels.php:660
1375
+ #: adminpages/orders.php:661 adminpages/orders.php:964
1376
+ #: adminpages/orders.php:982 adminpages/orders.php:992
1377
  msgid "copy"
1378
  msgstr ""
1379
 
1381
  #: includes/adminpages.php:153 adminpages/memberslist.php:25
1382
  #: includes/adminpages.php:15 includes/adminpages.php:53
1383
  #: includes/adminpages.php:74 includes/adminpages.php:142
1384
+ #: includes/adminpages.php:149 includes/adminpages.php:153
1385
  msgid "Members List"
1386
  msgstr ""
1387
 
1430
  msgid "Search Members"
1431
  msgstr ""
1432
 
1433
+ #: adminpages/memberslist.php:156 adminpages/memberslist.php:103
1434
  #: adminpages/memberslist.php:136 adminpages/memberslist.php:146
1435
+ #: adminpages/memberslist.php:156
1436
  #, php-format
1437
  msgid "%d members found."
1438
  msgstr ""
1439
 
1440
+ #: adminpages/memberslist.php:165 pages/checkout.php:180
1441
  #: shortcodes/pmpro_account.php:105 adminpages/memberslist.php:112
1442
  #: adminpages/memberslist.php:145 adminpages/memberslist.php:155
1443
+ #: adminpages/memberslist.php:165 pages/account.php:51 pages/account.php:55
1444
+ #: pages/account.php:76 pages/checkout.php:168 pages/checkout.php:171
1445
+ #: pages/checkout.php:173 pages/checkout.php:180
1446
  #: shortcodes/pmpro_account.php:105
1447
  msgid "Username"
1448
  msgstr ""
1449
 
1450
+ #: adminpages/memberslist.php:166 adminpages/memberslist.php:113
1451
  #: adminpages/memberslist.php:146 adminpages/memberslist.php:156
1452
+ #: adminpages/memberslist.php:166
1453
  msgid "First&nbsp;Name"
1454
  msgstr ""
1455
 
1456
+ #: adminpages/memberslist.php:167 adminpages/memberslist.php:114
1457
  #: adminpages/memberslist.php:147 adminpages/memberslist.php:157
1458
+ #: adminpages/memberslist.php:167
1459
  msgid "Last&nbsp;Name"
1460
  msgstr ""
1461
 
1462
+ #: adminpages/memberslist.php:170 pages/billing.php:71 pages/checkout.php:311
1463
  #: pages/confirmation.php:61 pages/invoice.php:48
1464
  #: adminpages/memberslist.php:117 adminpages/memberslist.php:150
1465
+ #: adminpages/memberslist.php:160 adminpages/memberslist.php:170
1466
+ #: pages/account.php:90 pages/account.php:94 pages/billing.php:58
1467
+ #: pages/billing.php:62 pages/billing.php:71 pages/checkout.php:298
1468
+ #: pages/checkout.php:300 pages/checkout.php:302 pages/checkout.php:311
1469
+ #: pages/checkout.php:314 pages/checkout.php:321 pages/confirmation.php:59
1470
+ #: pages/confirmation.php:61 pages/invoice.php:46 pages/invoice.php:48
1471
  msgid "Billing Address"
1472
  msgstr ""
1473
 
1474
+ #: adminpages/memberslist.php:171 adminpages/reports/login.php:145
1475
  #: classes/gateways/class.pmprogateway_authorizenet.php:303
1476
  #: adminpages/memberslist.php:118 adminpages/memberslist.php:151
1477
+ #: adminpages/memberslist.php:161 adminpages/memberslist.php:171
1478
+ #: adminpages/pagesettings.php:51 adminpages/reports/login.php:143
1479
+ #: adminpages/reports/login.php:145
1480
  #: classes/gateways/class.pmprogateway_authorizenet.php:187
1481
  #: classes/gateways/class.pmprogateway_authorizenet.php:303
1482
  msgid "Membership"
1483
  msgstr ""
1484
 
1485
+ #: adminpages/memberslist.php:172 adminpages/memberslist.php:119
1486
  #: adminpages/memberslist.php:152 adminpages/memberslist.php:162
1487
+ #: adminpages/memberslist.php:172
1488
  msgid "Fee"
1489
  msgstr ""
1490
 
1491
+ #: adminpages/memberslist.php:173 adminpages/reports/login.php:146
1492
  #: adminpages/memberslist.php:120 adminpages/memberslist.php:153
1493
+ #: adminpages/memberslist.php:163 adminpages/memberslist.php:173
1494
+ #: adminpages/reports/login.php:144 adminpages/reports/login.php:146
1495
  msgid "Joined"
1496
  msgstr ""
1497
 
1498
+ #: adminpages/memberslist.php:177 adminpages/memberslist.php:157
1499
+ #: adminpages/memberslist.php:167 adminpages/memberslist.php:177
1500
  msgid "Ended"
1501
  msgstr ""
1502
 
1503
+ #: adminpages/memberslist.php:261 adminpages/reports/login.php:212
1504
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1505
+ #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
1506
+ #: adminpages/reports/login.php:210 adminpages/reports/login.php:212
1507
  msgid "No members found."
1508
  msgstr ""
1509
 
1510
+ #: adminpages/memberslist.php:261 adminpages/reports/login.php:212
1511
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1512
+ #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
1513
+ #: adminpages/reports/login.php:210 adminpages/reports/login.php:212
1514
  msgid "Search all levels"
1515
  msgstr ""
1516
 
1612
  msgid "Coupon Amount"
1613
  msgstr ""
1614
 
1615
+ #: adminpages/orders.php:370 adminpages/orders.php:915 pages/invoice.php:84
1616
  #: adminpages/orders.php:320 adminpages/orders.php:370
1617
+ #: adminpages/orders.php:602 adminpages/orders.php:905
1618
+ #: adminpages/orders.php:915 pages/invoice.php:82 pages/invoice.php:84
1619
  msgid "Total"
1620
  msgstr ""
1621
 
1636
 
1637
  #: adminpages/orders.php:389
1638
  #: classes/gateways/class.pmprogateway_braintree.php:304
1639
+ #: classes/gateways/class.pmprogateway_stripe.php:409 pages/billing.php:247
1640
+ #: pages/checkout.php:516 adminpages/orders.php:339 adminpages/orders.php:389
1641
  #: classes/gateways/class.pmprogateway_braintree.php:291
1642
  #: classes/gateways/class.pmprogateway_braintree.php:304
1643
+ #: classes/gateways/class.pmprogateway_stripe.php:408
1644
+ #: classes/gateways/class.pmprogateway_stripe.php:409 pages/billing.php:234
1645
+ #: pages/billing.php:238 pages/billing.php:247 pages/checkout.php:493
1646
+ #: pages/checkout.php:507 pages/checkout.php:510 pages/checkout.php:516
1647
+ #: pages/checkout.php:517
1648
  msgid "Card Type"
1649
  msgstr ""
1650
 
1658
  #: adminpages/orders.php:348 adminpages/orders.php:398
1659
  #: adminpages/paymentsettings.php:347 adminpages/paymentsettings.php:352
1660
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
1661
+ #: classes/gateways/class.pmprogateway_twocheckout.php:148
1662
  msgid "Account Number"
1663
  msgstr ""
1664
 
1677
  msgid "Expiration Year"
1678
  msgstr ""
1679
 
1680
+ #: adminpages/orders.php:423 adminpages/orders.php:919
1681
  #: adminpages/orders.php:373 adminpages/orders.php:423
1682
  #: adminpages/orders.php:606 adminpages/orders.php:909
1683
+ #: adminpages/orders.php:919
1684
  msgid "Status"
1685
  msgstr ""
1686
 
1687
+ #: adminpages/orders.php:444 adminpages/orders.php:917
1688
  #: adminpages/orders.php:394 adminpages/orders.php:444
1689
  #: adminpages/orders.php:604 adminpages/orders.php:907
1690
+ #: adminpages/orders.php:917
1691
  msgid "Gateway"
1692
  msgstr ""
1693
 
1735
  msgid "Generated by the gateway. Useful to cross reference subscriptions."
1736
  msgstr ""
1737
 
1738
+ #: adminpages/orders.php:493 adminpages/orders.php:920 pages/invoice.php:107
1739
  #: shortcodes/pmpro_account.php:122 adminpages/orders.php:442
1740
  #: adminpages/orders.php:492 adminpages/orders.php:493
1741
+ #: adminpages/orders.php:607 adminpages/orders.php:910
1742
+ #: adminpages/orders.php:920 pages/account.php:91 pages/invoice.php:105
1743
+ #: pages/invoice.php:107 shortcodes/pmpro_account.php:122
1744
  msgid "Date"
1745
  msgstr ""
1746
 
1769
  #: adminpages/orders.php:570 includes/adminpages.php:17
1770
  #: includes/adminpages.php:55 includes/adminpages.php:84
1771
  #: includes/adminpages.php:156 includes/adminpages.php:163
1772
+ #: includes/adminpages.php:167
1773
  msgid "Orders"
1774
  msgstr ""
1775
 
1778
  msgid "Add New Order"
1779
  msgstr ""
1780
 
 
 
 
 
1781
  #: adminpages/orders.php:606 adminpages/orders.php:606
1782
  msgid "Within a Date Range"
1783
  msgstr ""
1816
  msgid "Search Orders"
1817
  msgstr ""
1818
 
1819
+ #: adminpages/orders.php:903 adminpages/orders.php:590
1820
+ #: adminpages/orders.php:893 adminpages/orders.php:903
1821
  #, php-format
1822
  msgid "%d orders found."
1823
  msgstr ""
1824
 
1825
+ #: adminpages/orders.php:912 adminpages/reports/login.php:143
1826
  #: classes/gateways/class.pmprogateway_payflowpro.php:116
1827
  #: adminpages/orders.php:599 adminpages/orders.php:902
1828
+ #: adminpages/orders.php:912 adminpages/paymentsettings.php:211
1829
+ #: adminpages/paymentsettings.php:215 adminpages/paymentsettings.php:220
1830
+ #: adminpages/reports/login.php:141 adminpages/reports/login.php:143
1831
  #: classes/gateways/class.pmprogateway_payflowpro.php:116
1832
  msgid "User"
1833
  msgstr ""
1834
 
1835
+ #: adminpages/orders.php:914 includes/init.php:222 includes/profile.php:27
1836
+ #: pages/checkout.php:42 pages/confirmation.php:47 pages/confirmation.php:64
1837
  #: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
1838
+ #: adminpages/orders.php:601 adminpages/orders.php:904
1839
+ #: adminpages/orders.php:914 includes/init.php:214 includes/init.php:217
1840
+ #: includes/init.php:218 includes/init.php:220 includes/init.php:222
1841
+ #: includes/profile.php:25 includes/profile.php:27 pages/checkout.php:33
1842
+ #: pages/checkout.php:34 pages/checkout.php:35 pages/checkout.php:42
1843
+ #: pages/confirmation.php:46 pages/confirmation.php:47
1844
  #: pages/confirmation.php:62 pages/confirmation.php:64
1845
  #: pages/confirmation.php:103 pages/confirmation.php:105 pages/invoice.php:27
1846
  #: pages/invoice.php:28 pages/invoice.php:49 pages/invoice.php:51
1847
  msgid "Membership Level"
1848
  msgstr ""
1849
 
1850
+ #: adminpages/orders.php:916 adminpages/orders.php:982
1851
  #: adminpages/orders.php:603 adminpages/orders.php:651
1852
+ #: adminpages/orders.php:906 adminpages/orders.php:916
1853
+ #: adminpages/orders.php:954 adminpages/orders.php:972
1854
+ #: adminpages/orders.php:982
1855
  msgid "Payment"
1856
  msgstr ""
1857
 
1858
+ #: adminpages/orders.php:918 adminpages/orders.php:605
1859
+ #: adminpages/orders.php:908 adminpages/orders.php:918
1860
  msgid "Transaction IDs"
1861
  msgstr ""
1862
 
1863
+ #: adminpages/orders.php:943 adminpages/orders.php:630
1864
+ #: adminpages/orders.php:933 adminpages/orders.php:943
1865
  msgid "deleted"
1866
  msgstr ""
1867
 
1868
+ #: adminpages/orders.php:984 adminpages/orders.php:653
1869
  #: adminpages/orders.php:956 adminpages/orders.php:974
1870
+ #: adminpages/orders.php:984
1871
  msgid "Subscription"
1872
  msgstr ""
1873
 
1874
+ #: adminpages/orders.php:998 adminpages/orders.php:664
1875
  #: adminpages/orders.php:967 adminpages/orders.php:985
1876
+ #: adminpages/orders.php:995
1877
  #, php-format
1878
  msgid ""
1879
  "Deleting orders is permanent and can affect active users. Are you sure you "
1880
  "want to delete order %s?"
1881
  msgstr ""
1882
 
1883
+ #: adminpages/orders.php:1008 adminpages/orders.php:674
1884
  #: adminpages/orders.php:977 adminpages/orders.php:995
1885
+ #: adminpages/orders.php:1005
1886
  msgid "No orders found."
1887
  msgstr ""
1888
 
1943
  msgid "Account Page"
1944
  msgstr ""
1945
 
1946
+ #: adminpages/pagesettings.php:144 adminpages/pagesettings.php:159
1947
+ #: adminpages/pagesettings.php:174 adminpages/pagesettings.php:190
1948
+ #: adminpages/pagesettings.php:206 adminpages/pagesettings.php:222
1949
+ #: adminpages/pagesettings.php:238 adminpages/pagesettings.php:144
1950
+ #: adminpages/pagesettings.php:147 adminpages/pagesettings.php:159
1951
+ #: adminpages/pagesettings.php:162 adminpages/pagesettings.php:174
1952
+ #: adminpages/pagesettings.php:177 adminpages/pagesettings.php:190
1953
+ #: adminpages/pagesettings.php:193 adminpages/pagesettings.php:206
1954
+ #: adminpages/pagesettings.php:209 adminpages/pagesettings.php:222
1955
+ #: adminpages/pagesettings.php:225 adminpages/pagesettings.php:238
1956
+ #: adminpages/pagesettings.php:241
1957
  msgid "Choose One"
1958
  msgstr ""
1959
 
1960
+ #: adminpages/pagesettings.php:147 adminpages/pagesettings.php:162
1961
+ #: adminpages/pagesettings.php:177 adminpages/pagesettings.php:193
1962
+ #: adminpages/pagesettings.php:209 adminpages/pagesettings.php:225
1963
+ #: adminpages/pagesettings.php:241 adminpages/pagesettings.php:119
1964
  #: adminpages/pagesettings.php:132 adminpages/pagesettings.php:134
1965
  #: adminpages/pagesettings.php:145 adminpages/pagesettings.php:147
1966
+ #: adminpages/pagesettings.php:149 adminpages/pagesettings.php:150
1967
+ #: adminpages/pagesettings.php:159 adminpages/pagesettings.php:162
1968
+ #: adminpages/pagesettings.php:165 adminpages/pagesettings.php:173
1969
+ #: adminpages/pagesettings.php:177 adminpages/pagesettings.php:180
1970
  #: adminpages/pagesettings.php:181 adminpages/pagesettings.php:187
1971
+ #: adminpages/pagesettings.php:193 adminpages/pagesettings.php:196
1972
+ #: adminpages/pagesettings.php:197 adminpages/pagesettings.php:201
1973
+ #: adminpages/pagesettings.php:209 adminpages/pagesettings.php:212
1974
  #: adminpages/pagesettings.php:213 adminpages/pagesettings.php:225
1975
+ #: adminpages/pagesettings.php:228 adminpages/pagesettings.php:241
1976
+ #: adminpages/pagesettings.php:244
1977
  msgid "edit page"
1978
  msgstr ""
1979
 
1980
+ #: adminpages/pagesettings.php:149 adminpages/pagesettings.php:164
1981
+ #: adminpages/pagesettings.php:179 adminpages/pagesettings.php:195
1982
+ #: adminpages/pagesettings.php:211 adminpages/pagesettings.php:227
1983
+ #: adminpages/pagesettings.php:243 adminpages/pagesettings.php:121
1984
  #: adminpages/pagesettings.php:136 adminpages/pagesettings.php:149
1985
+ #: adminpages/pagesettings.php:151 adminpages/pagesettings.php:152
1986
+ #: adminpages/pagesettings.php:164 adminpages/pagesettings.php:167
1987
+ #: adminpages/pagesettings.php:179 adminpages/pagesettings.php:182
1988
  #: adminpages/pagesettings.php:183 adminpages/pagesettings.php:195
1989
+ #: adminpages/pagesettings.php:198 adminpages/pagesettings.php:199
1990
+ #: adminpages/pagesettings.php:211 adminpages/pagesettings.php:214
1991
  #: adminpages/pagesettings.php:215 adminpages/pagesettings.php:227
1992
+ #: adminpages/pagesettings.php:230 adminpages/pagesettings.php:243
1993
+ #: adminpages/pagesettings.php:246
1994
  msgid "view page"
1995
  msgstr ""
1996
 
1997
+ #: adminpages/pagesettings.php:151 adminpages/pagesettings.php:166
1998
+ #: adminpages/pagesettings.php:181 adminpages/pagesettings.php:197
1999
+ #: adminpages/pagesettings.php:213 adminpages/pagesettings.php:229
2000
+ #: adminpages/pagesettings.php:245 adminpages/pagesettings.php:121
2001
  #: adminpages/pagesettings.php:123 adminpages/pagesettings.php:134
2002
  #: adminpages/pagesettings.php:138 adminpages/pagesettings.php:147
2003
  #: adminpages/pagesettings.php:151 adminpages/pagesettings.php:153
2004
+ #: adminpages/pagesettings.php:154 adminpages/pagesettings.php:161
2005
+ #: adminpages/pagesettings.php:166 adminpages/pagesettings.php:169
2006
+ #: adminpages/pagesettings.php:175 adminpages/pagesettings.php:181
2007
+ #: adminpages/pagesettings.php:184 adminpages/pagesettings.php:185
2008
  #: adminpages/pagesettings.php:189 adminpages/pagesettings.php:197
2009
+ #: adminpages/pagesettings.php:200 adminpages/pagesettings.php:201
2010
+ #: adminpages/pagesettings.php:203 adminpages/pagesettings.php:213
2011
+ #: adminpages/pagesettings.php:216 adminpages/pagesettings.php:217
2012
+ #: adminpages/pagesettings.php:229 adminpages/pagesettings.php:232
2013
+ #: adminpages/pagesettings.php:245 adminpages/pagesettings.php:248
2014
  msgid "Include the shortcode"
2015
  msgstr ""
2016
 
2017
+ #: adminpages/pagesettings.php:155 adminpages/pagesettings.php:125
2018
  #: adminpages/pagesettings.php:127 adminpages/pagesettings.php:155
2019
+ #: adminpages/pagesettings.php:158
2020
  msgid "Billing Information Page"
2021
  msgstr ""
2022
 
2023
+ #: adminpages/pagesettings.php:170 adminpages/pagesettings.php:138
2024
  #: adminpages/pagesettings.php:142 adminpages/pagesettings.php:170
2025
+ #: adminpages/pagesettings.php:173
2026
  msgid "Cancel Page"
2027
  msgstr ""
2028
 
2029
+ #: adminpages/pagesettings.php:186 adminpages/pagesettings.php:152
2030
  #: adminpages/pagesettings.php:158 adminpages/pagesettings.php:186
2031
+ #: adminpages/pagesettings.php:189
2032
  msgid "Checkout Page"
2033
  msgstr ""
2034
 
2035
+ #: adminpages/pagesettings.php:202 adminpages/pagesettings.php:166
2036
  #: adminpages/pagesettings.php:174 adminpages/pagesettings.php:202
2037
+ #: adminpages/pagesettings.php:205
2038
  msgid "Confirmation Page"
2039
  msgstr ""
2040
 
2041
+ #: adminpages/pagesettings.php:218 adminpages/pagesettings.php:180
2042
  #: adminpages/pagesettings.php:190 adminpages/pagesettings.php:218
2043
+ #: adminpages/pagesettings.php:221
2044
  msgid "Invoice Page"
2045
  msgstr ""
2046
 
2047
+ #: adminpages/pagesettings.php:234 adminpages/pagesettings.php:194
2048
  #: adminpages/pagesettings.php:206 adminpages/pagesettings.php:234
2049
+ #: adminpages/pagesettings.php:237
2050
  msgid "Levels Page"
2051
  msgstr ""
2052
 
2103
  msgid "Sales Tax"
2104
  msgstr ""
2105
 
2106
+ #: adminpages/paymentsettings.php:188 pages/billing.php:91
2107
  #: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:398
2108
  #: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
2109
  #: adminpages/paymentsettings.php:445 pages/billing.php:78
2110
+ #: pages/billing.php:82 pages/billing.php:91
2111
  msgid "optional"
2112
  msgstr ""
2113
 
2389
  msgid "An Email From %s"
2390
  msgstr ""
2391
 
2392
+ #: classes/class.pmproemail.php:134 classes/class.pmproemail.php:120
2393
  #: classes/class.pmproemail.php:122 classes/class.pmproemail.php:125
2394
+ #: classes/class.pmproemail.php:134
2395
  #, php-format
2396
  msgid "Your membership at %s has been CANCELLED"
2397
  msgstr ""
2398
 
2399
+ #: classes/class.pmproemail.php:156 classes/class.pmproemail.php:142
2400
  #: classes/class.pmproemail.php:144 classes/class.pmproemail.php:147
2401
+ #: classes/class.pmproemail.php:156
2402
  #, php-format
2403
  msgid "Membership for %s at %s has been CANCELLED"
2404
  msgstr ""
2405
 
2406
+ #: classes/class.pmproemail.php:187 classes/class.pmproemail.php:172
2407
  #: classes/class.pmproemail.php:173 classes/class.pmproemail.php:175
2408
+ #: classes/class.pmproemail.php:178 classes/class.pmproemail.php:187
2409
  #, php-format
2410
  msgid "Your membership confirmation for %s"
2411
  msgstr ""
2412
 
2413
+ #: classes/class.pmproemail.php:240 classes/class.pmproemail.php:249
2414
+ #: classes/class.pmproemail.php:258 classes/class.pmproemail.php:337
2415
+ #: classes/class.pmproemail.php:346 classes/class.pmproemail.php:657
2416
  #: classes/gateways/class.pmprogateway_braintree.php:362
2417
+ #: classes/gateways/class.pmprogateway_stripe.php:496 pages/checkout.php:75
2418
+ #: pages/checkout.php:85 pages/checkout.php:603 pages/confirmation.php:52
2419
  #: pages/invoice.php:33 classes/class.pmproemail.php:216
2420
  #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
2421
  #: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
2422
  #: classes/class.pmproemail.php:231 classes/class.pmproemail.php:234
2423
  #: classes/class.pmproemail.php:236 classes/class.pmproemail.php:237
2424
  #: classes/class.pmproemail.php:240 classes/class.pmproemail.php:246
2425
+ #: classes/class.pmproemail.php:249 classes/class.pmproemail.php:258
2426
+ #: classes/class.pmproemail.php:304 classes/class.pmproemail.php:307
2427
+ #: classes/class.pmproemail.php:313 classes/class.pmproemail.php:316
2428
+ #: classes/class.pmproemail.php:325 classes/class.pmproemail.php:328
2429
+ #: classes/class.pmproemail.php:334 classes/class.pmproemail.php:337
2430
+ #: classes/class.pmproemail.php:346 classes/class.pmproemail.php:532
2431
  #: classes/class.pmproemail.php:580 classes/class.pmproemail.php:645
2432
+ #: classes/class.pmproemail.php:648 classes/class.pmproemail.php:657
2433
  #: classes/gateways/class.pmprogateway_braintree.php:349
2434
  #: classes/gateways/class.pmprogateway_braintree.php:362
2435
+ #: classes/gateways/class.pmprogateway_stripe.php:495
2436
+ #: classes/gateways/class.pmprogateway_stripe.php:496 pages/checkout.php:66
2437
+ #: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:75
2438
+ #: pages/checkout.php:76 pages/checkout.php:77 pages/checkout.php:78
2439
+ #: pages/checkout.php:85 pages/checkout.php:549 pages/checkout.php:565
2440
+ #: pages/checkout.php:566 pages/checkout.php:573 pages/checkout.php:594
2441
+ #: pages/checkout.php:603 pages/confirmation.php:51 pages/confirmation.php:52
2442
  #: pages/invoice.php:32 pages/invoice.php:33
2443
  msgid "Discount Code"
2444
  msgstr ""
2445
 
2446
+ #: classes/class.pmproemail.php:265 classes/class.pmproemail.php:358
2447
+ #: classes/class.pmproemail.php:663 classes/class.pmproemail.php:241
2448
  #: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
2449
+ #: classes/class.pmproemail.php:256 classes/class.pmproemail.php:265
2450
+ #: classes/class.pmproemail.php:325 classes/class.pmproemail.php:328
2451
+ #: classes/class.pmproemail.php:346 classes/class.pmproemail.php:349
2452
+ #: classes/class.pmproemail.php:358 classes/class.pmproemail.php:538
2453
  #: classes/class.pmproemail.php:586 classes/class.pmproemail.php:651
2454
+ #: classes/class.pmproemail.php:654 classes/class.pmproemail.php:663
2455
  #, php-format
2456
  msgid "This membership will expire on %s."
2457
  msgstr ""
2458
 
2459
+ #: classes/class.pmproemail.php:287 classes/class.pmproemail.php:263
2460
  #: classes/class.pmproemail.php:265 classes/class.pmproemail.php:275
2461
+ #: classes/class.pmproemail.php:278 classes/class.pmproemail.php:287
2462
  #, php-format
2463
  msgid "Member Checkout for %s at %s"
2464
  msgstr ""
2465
 
2466
+ #: classes/class.pmproemail.php:375 classes/class.pmproemail.php:342
2467
  #: classes/class.pmproemail.php:345 classes/class.pmproemail.php:363
2468
+ #: classes/class.pmproemail.php:366 classes/class.pmproemail.php:375
2469
  #, php-format
2470
  msgid "Your billing information has been udpated at %s"
2471
  msgstr ""
2472
 
2473
+ #: classes/class.pmproemail.php:428 classes/class.pmproemail.php:386
2474
  #: classes/class.pmproemail.php:390 classes/class.pmproemail.php:416
2475
+ #: classes/class.pmproemail.php:419 classes/class.pmproemail.php:428
2476
  #, php-format
2477
  msgid "Billing information has been udpated for %s at %s"
2478
  msgstr ""
2479
 
2480
+ #: classes/class.pmproemail.php:476 classes/class.pmproemail.php:425
2481
  #: classes/class.pmproemail.php:430 classes/class.pmproemail.php:464
2482
+ #: classes/class.pmproemail.php:467 classes/class.pmproemail.php:476
2483
  #, php-format
2484
  msgid "Membership Payment Failed at %s"
2485
  msgstr ""
2486
 
2487
+ #: classes/class.pmproemail.php:522 classes/class.pmproemail.php:462
2488
  #: classes/class.pmproemail.php:468 classes/class.pmproemail.php:510
2489
+ #: classes/class.pmproemail.php:513 classes/class.pmproemail.php:522
2490
  #, php-format
2491
  msgid "Membership Payment Failed For %s at %s"
2492
  msgstr ""
2493
 
2494
+ #: classes/class.pmproemail.php:569 classes/class.pmproemail.php:508
2495
  #: classes/class.pmproemail.php:557 classes/class.pmproemail.php:560
2496
+ #: classes/class.pmproemail.php:569
2497
  #, php-format
2498
  msgid "Credit Card on File Expiring Soon at %s"
2499
  msgstr ""
2500
 
2501
+ #: classes/class.pmproemail.php:617 classes/class.pmproemail.php:501
2502
  #: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
2503
+ #: classes/class.pmproemail.php:608 classes/class.pmproemail.php:617
2504
  #, php-format
2505
  msgid "INVOICE for %s membership"
2506
  msgstr ""
2507
 
2508
+ #: classes/class.pmproemail.php:688 classes/class.pmproemail.php:563
2509
  #: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
2510
+ #: classes/class.pmproemail.php:679 classes/class.pmproemail.php:688
2511
  #, php-format
2512
  msgid "Your trial at %s is ending soon"
2513
  msgstr ""
2514
 
2515
+ #: classes/class.pmproemail.php:722 classes/class.pmproemail.php:596
2516
  #: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
2517
+ #: classes/class.pmproemail.php:713 classes/class.pmproemail.php:722
2518
  #, php-format
2519
  msgid "Your membership at %s has ended"
2520
  msgstr ""
2521
 
2522
+ #: classes/class.pmproemail.php:747 classes/class.pmproemail.php:621
2523
  #: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
2524
+ #: classes/class.pmproemail.php:738 classes/class.pmproemail.php:747
2525
  #, php-format
2526
  msgid "Your membership at %s will end soon"
2527
  msgstr ""
2528
 
2529
+ #: classes/class.pmproemail.php:767 classes/class.pmproemail.php:641
2530
  #: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
2531
+ #: classes/class.pmproemail.php:758 classes/class.pmproemail.php:767
2532
  #, php-format
2533
  msgid "Your membership at %s has been changed"
2534
  msgstr ""
2535
 
2536
+ #: classes/class.pmproemail.php:771 classes/class.pmproemail.php:809
2537
  #: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
2538
+ #: classes/class.pmproemail.php:771 classes/class.pmproemail.php:800
2539
+ #: classes/class.pmproemail.php:809
2540
  #, php-format
2541
  msgid "The new level is %s"
2542
  msgstr ""
2543
 
2544
+ #: classes/class.pmproemail.php:773 classes/class.pmproemail.php:647
2545
  #: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
2546
+ #: classes/class.pmproemail.php:764 classes/class.pmproemail.php:773
2547
  msgid "Your membership has been cancelled"
2548
  msgstr ""
2549
 
2550
+ #: classes/class.pmproemail.php:777 classes/class.pmproemail.php:815
2551
  #: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
2552
  #: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
2553
  #: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
2554
+ #: classes/class.pmproemail.php:777 classes/class.pmproemail.php:803
2555
+ #: classes/class.pmproemail.php:806 classes/class.pmproemail.php:815
2556
  #, php-format
2557
  msgid "This membership will expire on %s"
2558
  msgstr ""
2559
 
2560
+ #: classes/class.pmproemail.php:781 classes/class.pmproemail.php:819
2561
  #: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
2562
  #: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
2563
  #: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
2564
+ #: classes/class.pmproemail.php:781 classes/class.pmproemail.php:807
2565
+ #: classes/class.pmproemail.php:810 classes/class.pmproemail.php:819
2566
  msgid "This membership does not expire"
2567
  msgstr ""
2568
 
2569
+ #: classes/class.pmproemail.php:805 classes/class.pmproemail.php:679
2570
  #: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
2571
+ #: classes/class.pmproemail.php:796 classes/class.pmproemail.php:805
2572
  #, php-format
2573
  msgid "Membership for %s at %s has been changed"
2574
  msgstr ""
2575
 
2576
+ #: classes/class.pmproemail.php:811 classes/class.pmproemail.php:799
2577
+ #: classes/class.pmproemail.php:802 classes/class.pmproemail.php:811
2578
  msgid "Membership has been cancelled"
2579
  msgstr ""
2580
 
2660
  msgstr ""
2661
 
2662
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
2663
+ #: paid-memberships-pro.php:130
2664
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
2665
  #: paid-memberships-pro.php:122 paid-memberships-pro.php:123
2666
  msgid "Authorize.net"
2713
  msgstr ""
2714
 
2715
  #: classes/gateways/class.pmprogateway_braintree.php:76
2716
+ #: paid-memberships-pro.php:131
2717
  #: classes/gateways/class.pmprogateway_braintree.php:63
2718
  #: classes/gateways/class.pmprogateway_braintree.php:76
2719
  #: paid-memberships-pro.php:123 paid-memberships-pro.php:124
2762
  msgstr ""
2763
 
2764
  #: classes/gateways/class.pmprogateway_braintree.php:169
2765
+ #: classes/gateways/class.pmprogateway_stripe.php:182
2766
  #: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
2767
  #: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
2768
  #: adminpages/paymentsettings.php:511 adminpages/paymentsettings.php:517
2770
  #: classes/gateways/class.pmprogateway_braintree.php:156
2771
  #: classes/gateways/class.pmprogateway_braintree.php:169
2772
  #: classes/gateways/class.pmprogateway_stripe.php:181
2773
+ #: classes/gateways/class.pmprogateway_stripe.php:182
2774
  msgid "Web Hook URL"
2775
  msgstr ""
2776
 
2783
  msgstr ""
2784
 
2785
  #: classes/gateways/class.pmprogateway_braintree.php:283
2786
+ #: classes/gateways/class.pmprogateway_stripe.php:388 pages/checkout.php:494
2787
  #: classes/gateways/class.pmprogateway_braintree.php:270
2788
  #: classes/gateways/class.pmprogateway_braintree.php:283
2789
+ #: classes/gateways/class.pmprogateway_stripe.php:387
2790
+ #: classes/gateways/class.pmprogateway_stripe.php:388 pages/checkout.php:476
2791
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
2792
+ #: pages/checkout.php:494 pages/checkout.php:500
2793
  msgid "Payment Information"
2794
  msgstr ""
2795
 
2796
  #: classes/gateways/class.pmprogateway_braintree.php:283
2797
+ #: classes/gateways/class.pmprogateway_stripe.php:388 pages/checkout.php:494
2798
  #: classes/gateways/class.pmprogateway_braintree.php:270
2799
  #: classes/gateways/class.pmprogateway_braintree.php:283
2800
+ #: classes/gateways/class.pmprogateway_stripe.php:387
2801
+ #: classes/gateways/class.pmprogateway_stripe.php:388 pages/checkout.php:476
2802
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
2803
+ #: pages/checkout.php:494 pages/checkout.php:500
2804
  #, php-format
2805
  msgid "We Accept %s"
2806
  msgstr ""
2807
 
2808
  #: classes/gateways/class.pmprogateway_braintree.php:316
2809
+ #: classes/gateways/class.pmprogateway_stripe.php:450 pages/billing.php:257
2810
+ #: pages/checkout.php:557
2811
  #: classes/gateways/class.pmprogateway_braintree.php:303
2812
  #: classes/gateways/class.pmprogateway_braintree.php:316
2813
+ #: classes/gateways/class.pmprogateway_stripe.php:449
2814
+ #: classes/gateways/class.pmprogateway_stripe.php:450 pages/billing.php:244
2815
+ #: pages/billing.php:248 pages/billing.php:257 pages/checkout.php:503
2816
+ #: pages/checkout.php:519 pages/checkout.php:520 pages/checkout.php:527
2817
+ #: pages/checkout.php:548 pages/checkout.php:557
2818
  msgid "Card Number"
2819
  msgstr ""
2820
 
2821
  #: classes/gateways/class.pmprogateway_braintree.php:353
2822
+ #: classes/gateways/class.pmprogateway_stripe.php:487 pages/billing.php:294
2823
+ #: pages/checkout.php:594
2824
  #: classes/gateways/class.pmprogateway_braintree.php:340
2825
  #: classes/gateways/class.pmprogateway_braintree.php:353
2826
+ #: classes/gateways/class.pmprogateway_stripe.php:486
2827
+ #: classes/gateways/class.pmprogateway_stripe.php:487 pages/billing.php:281
2828
+ #: pages/billing.php:285 pages/billing.php:294 pages/checkout.php:540
2829
+ #: pages/checkout.php:556 pages/checkout.php:557 pages/checkout.php:564
2830
+ #: pages/checkout.php:585 pages/checkout.php:594
2831
  msgid "CVV"
2832
  msgstr ""
2833
 
2834
  #: classes/gateways/class.pmprogateway_braintree.php:354
2835
+ #: classes/gateways/class.pmprogateway_stripe.php:488 pages/billing.php:295
2836
+ #: pages/checkout.php:595
2837
  #: classes/gateways/class.pmprogateway_braintree.php:341
2838
  #: classes/gateways/class.pmprogateway_braintree.php:354
2839
+ #: classes/gateways/class.pmprogateway_stripe.php:487
2840
+ #: classes/gateways/class.pmprogateway_stripe.php:488 pages/billing.php:282
2841
+ #: pages/billing.php:286 pages/billing.php:295 pages/checkout.php:541
2842
+ #: pages/checkout.php:557 pages/checkout.php:558 pages/checkout.php:565
2843
+ #: pages/checkout.php:586 pages/checkout.php:595
2844
  msgid "what's this?"
2845
  msgstr ""
2846
 
2847
  #: classes/gateways/class.pmprogateway_braintree.php:364
2848
+ #: classes/gateways/class.pmprogateway_stripe.php:498 pages/checkout.php:87
2849
+ #: pages/checkout.php:605
2850
  #: classes/gateways/class.pmprogateway_braintree.php:351
2851
  #: classes/gateways/class.pmprogateway_braintree.php:364
2852
+ #: classes/gateways/class.pmprogateway_stripe.php:497
2853
+ #: classes/gateways/class.pmprogateway_stripe.php:498 pages/checkout.php:78
2854
+ #: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:87
2855
+ #: pages/checkout.php:551 pages/checkout.php:567 pages/checkout.php:568
2856
+ #: pages/checkout.php:575 pages/checkout.php:596 pages/checkout.php:605
2857
  msgid "Apply"
2858
  msgstr ""
2859
 
2860
  #: classes/gateways/class.pmprogateway_braintree.php:419
2861
+ #: classes/gateways/class.pmprogateway_stripe.php:1026
2862
  #: classes/gateways/class.pmprogateway_braintree.php:61
2863
  #: classes/gateways/class.pmprogateway_braintree.php:406
2864
  #: classes/gateways/class.pmprogateway_braintree.php:419
2865
  #: classes/gateways/class.pmprogateway_stripe.php:53
2866
  #: classes/gateways/class.pmprogateway_stripe.php:1011
2867
  #: classes/gateways/class.pmprogateway_stripe.php:1025
2868
+ #: classes/gateways/class.pmprogateway_stripe.php:1026
2869
  msgid "Unknown error: Initial payment failed."
2870
  msgstr ""
2871
 
2955
  msgstr ""
2956
 
2957
  #: classes/gateways/class.pmprogateway_check.php:48
2958
+ #: paid-memberships-pro.php:124 adminpages/orders.php:399
2959
  #: adminpages/orders.php:449 adminpages/paymentsettings.php:157
2960
  #: adminpages/paymentsettings.php:159
2961
  #: classes/gateways/class.pmprogateway_check.php:48
3035
  msgstr ""
3036
 
3037
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
3038
+ #: pages/checkout.php:189 adminpages/paymentsettings.php:219
3039
  #: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:228
3040
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
3041
  #: pages/checkout.php:177 pages/checkout.php:180 pages/checkout.php:182
3042
+ #: pages/checkout.php:189
3043
  msgid "Password"
3044
  msgstr ""
3045
 
3068
  msgstr ""
3069
 
3070
  #: classes/gateways/class.pmprogateway_paypal.php:57
3071
+ #: paid-memberships-pro.php:127
3072
  #: classes/gateways/class.pmprogateway_paypal.php:57
3073
  #: paid-memberships-pro.php:119 paid-memberships-pro.php:120
3074
  msgid "PayPal Website Payments Pro"
3075
  msgstr ""
3076
 
3077
  #: classes/gateways/class.pmprogateway_paypal.php:113
3078
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:128
3079
  #: classes/gateways/class.pmprogateway_paypalstandard.php:112
3080
  #: classes/gateways/class.pmprogateway_paypal.php:113
3081
  #: classes/gateways/class.pmprogateway_paypalexpress.php:118
3084
  msgstr ""
3085
 
3086
  #: classes/gateways/class.pmprogateway_paypal.php:118
3087
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:133
3088
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
3089
  #: adminpages/paymentsettings.php:179
3090
  #: classes/gateways/class.pmprogateway_paypal.php:118
3099
  msgstr ""
3100
 
3101
  #: classes/gateways/class.pmprogateway_paypal.php:123
3102
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:138
3103
  #: classes/gateways/class.pmprogateway_paypalstandard.php:122
3104
  #: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:231
3105
  #: adminpages/paymentsettings.php:236
3110
  msgstr ""
3111
 
3112
  #: classes/gateways/class.pmprogateway_paypal.php:131
3113
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:146
3114
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
3115
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
3116
  #: adminpages/paymentsettings.php:235 adminpages/paymentsettings.php:239
3120
  #: classes/gateways/class.pmprogateway_paypalexpress.php:136
3121
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
3122
  #: classes/gateways/class.pmprogateway_twocheckout.php:113
3123
+ #: classes/gateways/class.pmprogateway_twocheckout.php:121
3124
  msgid "API Username"
3125
  msgstr ""
3126
 
3127
  #: classes/gateways/class.pmprogateway_paypal.php:139
3128
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:154
3129
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
3130
  #: classes/gateways/class.pmprogateway_twocheckout.php:130
3131
  #: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:247
3135
  #: classes/gateways/class.pmprogateway_paypalexpress.php:144
3136
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
3137
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
3138
+ #: classes/gateways/class.pmprogateway_twocheckout.php:130
3139
  msgid "API Password"
3140
  msgstr ""
3141
 
3142
  #: classes/gateways/class.pmprogateway_paypal.php:147
3143
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:162
3144
  #: classes/gateways/class.pmprogateway_paypalstandard.php:146
3145
  #: adminpages/paymentsettings.php:251 adminpages/paymentsettings.php:255
3146
  #: adminpages/paymentsettings.php:260
3151
  msgstr ""
3152
 
3153
  #: classes/gateways/class.pmprogateway_paypal.php:155
3154
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:170
3155
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
3156
  #: adminpages/paymentsettings.php:446 adminpages/paymentsettings.php:479
3157
  #: adminpages/paymentsettings.php:485 adminpages/paymentsettings.php:487
3169
  msgstr ""
3170
 
3171
  #: classes/gateways/class.pmprogateway_paypal.php:178
3172
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:412
3173
  #: classes/gateways/class.pmprogateway_paypalstandard.php:202
3174
+ #: pages/checkout.php:295 classes/gateways/class.pmprogateway_paypal.php:178
3175
  #: classes/gateways/class.pmprogateway_paypalexpress.php:402
3176
  #: classes/gateways/class.pmprogateway_paypalstandard.php:202
3177
+ #: pages/checkout.php:286 pages/checkout.php:288 pages/checkout.php:295
3178
+ #: pages/checkout.php:302 pages/checkout.php:309 pages/checkout.php:675
3179
+ #: pages/checkout.php:682 pages/checkout.php:685 pages/checkout.php:701
3180
  msgid "Check Out with PayPal"
3181
  msgstr ""
3182
 
3183
  #: classes/gateways/class.pmprogateway_paypal.php:184
3184
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3185
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3186
+ #: pages/checkout.php:713 classes/gateways/class.pmprogateway_paypal.php:184
3187
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3188
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3189
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3190
+ #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3191
  msgid "Submit and Check Out"
3192
  msgstr ""
3193
 
3194
  #: classes/gateways/class.pmprogateway_paypal.php:184
3195
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3196
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3197
  #: classes/gateways/class.pmprogateway_twocheckout.php:214
3198
+ #: pages/checkout.php:713 classes/gateways/class.pmprogateway_paypal.php:184
3199
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3200
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3201
  #: classes/gateways/class.pmprogateway_twocheckout.php:192
3202
+ #: classes/gateways/class.pmprogateway_twocheckout.php:214
3203
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3204
+ #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3205
  msgid "Submit and Confirm"
3206
  msgstr ""
3207
 
3208
  #: classes/gateways/class.pmprogateway_paypal.php:605
3209
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:750
3210
  #: classes/gateways/class.pmprogateway_paypalstandard.php:466
3211
  #: classes/gateways/class.pmprogateway_paypal.php:385
3212
  #: classes/gateways/class.pmprogateway_paypal.php:605
3225
  "to make sure you are not charged going forward."
3226
  msgstr ""
3227
 
3228
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:73
3229
+ #: paid-memberships-pro.php:126
3230
  #: classes/gateways/class.pmprogateway_paypalexpress.php:63
3231
  #: paid-memberships-pro.php:118 paid-memberships-pro.php:119
3232
  msgid "PayPal Express"
3233
  msgstr ""
3234
 
3235
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:173
3236
  #: adminpages/paymentsettings.php:449 adminpages/paymentsettings.php:482
3237
  #: adminpages/paymentsettings.php:488 adminpages/paymentsettings.php:490
3238
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
3239
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
3240
  msgstr ""
3241
 
3242
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:278
3243
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:330
3244
  #: classes/gateways/class.pmprogateway_paypalexpress.php:268
3245
  #: classes/gateways/class.pmprogateway_paypalexpress.php:320
3246
  #: preheaders/checkout.php:690 preheaders/checkout.php:697
3253
  msgstr ""
3254
 
3255
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
3256
+ #: paid-memberships-pro.php:129
3257
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
3258
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:122
3259
  msgid "PayPal Standard"
3266
  "settings."
3267
  msgstr ""
3268
 
3269
+ #: classes/gateways/class.pmprogateway_stripe.php:94
3270
+ #: paid-memberships-pro.php:125
3271
  #: classes/gateways/class.pmprogateway_stripe.php:93
3272
+ #: classes/gateways/class.pmprogateway_stripe.php:94
 
3273
  #: paid-memberships-pro.php:117 paid-memberships-pro.php:118
3274
  msgid "Stripe"
3275
  msgstr ""
3276
 
3277
+ #: classes/gateways/class.pmprogateway_stripe.php:149
3278
  #: classes/gateways/class.pmprogateway_stripe.php:148
3279
+ #: classes/gateways/class.pmprogateway_stripe.php:149
3280
  msgid "Stripe Settings"
3281
  msgstr ""
3282
 
3283
+ #: classes/gateways/class.pmprogateway_stripe.php:154
3284
  #: adminpages/paymentsettings.php:277 adminpages/paymentsettings.php:281
3285
  #: adminpages/paymentsettings.php:286
3286
  #: classes/gateways/class.pmprogateway_stripe.php:153
3287
+ #: classes/gateways/class.pmprogateway_stripe.php:154
3288
  msgid "Secret Key"
3289
  msgstr ""
3290
 
3291
+ #: classes/gateways/class.pmprogateway_stripe.php:162
3292
  #: adminpages/paymentsettings.php:285 adminpages/paymentsettings.php:289
3293
  #: adminpages/paymentsettings.php:294
3294
  #: classes/gateways/class.pmprogateway_stripe.php:161
3295
+ #: classes/gateways/class.pmprogateway_stripe.php:162
3296
  msgid "Publishable Key"
3297
  msgstr ""
3298
 
3299
+ #: classes/gateways/class.pmprogateway_stripe.php:170
3300
  #: adminpages/paymentsettings.php:425 adminpages/paymentsettings.php:430
3301
  #: adminpages/paymentsettings.php:432
3302
  #: classes/gateways/class.pmprogateway_stripe.php:169
3303
+ #: classes/gateways/class.pmprogateway_stripe.php:170
3304
  msgid "Show Billing Address Fields"
3305
  msgstr ""
3306
 
3307
+ #: classes/gateways/class.pmprogateway_stripe.php:177
3308
  #: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:439
3309
  #: classes/gateways/class.pmprogateway_stripe.php:176
3310
+ #: classes/gateways/class.pmprogateway_stripe.php:177
3311
  msgid ""
3312
  "Stripe doesn't require billing address fields. Choose 'No' to hide them on "
3313
  "the checkout page.<br /><strong>If No, make sure you disable address "
3314
  "verification in the Stripe dashboard settings.</strong>"
3315
  msgstr ""
3316
 
3317
+ #: classes/gateways/class.pmprogateway_stripe.php:185
3318
  #: adminpages/paymentsettings.php:465 adminpages/paymentsettings.php:506
3319
  #: adminpages/paymentsettings.php:512 adminpages/paymentsettings.php:514
3320
  #: classes/gateways/class.pmprogateway_stripe.php:184
3321
+ #: classes/gateways/class.pmprogateway_stripe.php:185
3322
  msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
3323
  msgstr ""
3324
 
3325
+ #: classes/gateways/class.pmprogateway_stripe.php:568
3326
  #: classes/gateways/class.pmprogateway_stripe.php:567
3327
+ #: classes/gateways/class.pmprogateway_stripe.php:568
3328
  msgid "Subscription Updates"
3329
  msgstr ""
3330
 
3331
+ #: classes/gateways/class.pmprogateway_stripe.php:572
3332
  #: classes/gateways/class.pmprogateway_stripe.php:571
3333
+ #: classes/gateways/class.pmprogateway_stripe.php:572
3334
  msgid ""
3335
  "Subscription updates, allow you to change the member's subscription values "
3336
  "at predefined times. Be sure to click Update Profile after making changes."
3337
  msgstr ""
3338
 
3339
+ #: classes/gateways/class.pmprogateway_stripe.php:574
3340
  #: classes/gateways/class.pmprogateway_stripe.php:573
3341
+ #: classes/gateways/class.pmprogateway_stripe.php:574
3342
  msgid ""
3343
  "Subscription updates, allow you to change the member's subscription values "
3344
  "at predefined times. Be sure to click Update User after making changes."
3345
  msgstr ""
3346
 
3347
+ #: classes/gateways/class.pmprogateway_stripe.php:579 pages/billing.php:338
3348
+ #: classes/gateways/class.pmprogateway_stripe.php:578
3349
+ #: classes/gateways/class.pmprogateway_stripe.php:579 pages/billing.php:294
3350
+ #: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
3351
  msgid "Update"
3352
  msgstr ""
3353
 
3354
+ #: classes/gateways/class.pmprogateway_stripe.php:770
3355
  #: classes/gateways/class.pmprogateway_stripe.php:769
3356
+ #: classes/gateways/class.pmprogateway_stripe.php:770
3357
  msgid "Could not cancel the old subscription. Updates have not been processed."
3358
  msgstr ""
3359
 
3360
+ #: classes/gateways/class.pmprogateway_stripe.php:1204
3361
  #: classes/gateways/class.pmprogateway_stripe.php:190
3362
  #: classes/gateways/class.pmprogateway_stripe.php:192
3363
  #: classes/gateways/class.pmprogateway_stripe.php:199
3366
  #: classes/gateways/class.pmprogateway_stripe.php:1188
3367
  #: classes/gateways/class.pmprogateway_stripe.php:1202
3368
  #: classes/gateways/class.pmprogateway_stripe.php:1203
3369
+ #: classes/gateways/class.pmprogateway_stripe.php:1204
3370
  msgid "Error creating customer record with Stripe:"
3371
  msgstr ""
3372
 
3373
+ #: classes/gateways/class.pmprogateway_stripe.php:1261
3374
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
3375
  #: classes/gateways/class.pmprogateway_stripe.php:278
3376
  #: classes/gateways/class.pmprogateway_stripe.php:279
3377
  #: classes/gateways/class.pmprogateway_stripe.php:286
3382
  #: classes/gateways/class.pmprogateway_stripe.php:1245
3383
  #: classes/gateways/class.pmprogateway_stripe.php:1259
3384
  #: classes/gateways/class.pmprogateway_stripe.php:1260
3385
+ #: classes/gateways/class.pmprogateway_stripe.php:1261
3386
  #: classes/gateways/class.pmprogateway_stripe.php:1390
3387
  #: classes/gateways/class.pmprogateway_stripe.php:1391
3388
  #: classes/gateways/class.pmprogateway_stripe.php:1409
3389
  #: classes/gateways/class.pmprogateway_stripe.php:1410
3390
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
3391
  msgid "Error creating plan with Stripe:"
3392
  msgstr ""
3393
 
3394
+ #: classes/gateways/class.pmprogateway_stripe.php:1442
3395
  #: classes/gateways/class.pmprogateway_stripe.php:294
3396
  #: classes/gateways/class.pmprogateway_stripe.php:295
3397
  #: classes/gateways/class.pmprogateway_stripe.php:302
3403
  #: classes/gateways/class.pmprogateway_stripe.php:1422
3404
  #: classes/gateways/class.pmprogateway_stripe.php:1440
3405
  #: classes/gateways/class.pmprogateway_stripe.php:1441
3406
+ #: classes/gateways/class.pmprogateway_stripe.php:1442
3407
  msgid "Error subscribing customer to plan with Stripe:"
3408
  msgstr ""
3409
 
3410
+ #: classes/gateways/class.pmprogateway_stripe.php:1538
3411
  #: classes/gateways/class.pmprogateway_stripe.php:383
3412
  #: classes/gateways/class.pmprogateway_stripe.php:389
3413
  #: classes/gateways/class.pmprogateway_stripe.php:410
3416
  #: classes/gateways/class.pmprogateway_stripe.php:1518
3417
  #: classes/gateways/class.pmprogateway_stripe.php:1536
3418
  #: classes/gateways/class.pmprogateway_stripe.php:1537
3419
+ #: classes/gateways/class.pmprogateway_stripe.php:1538
3420
  msgid "Could not cancel old subscription."
3421
  msgstr ""
3422
 
3423
+ #: classes/gateways/class.pmprogateway_stripe.php:1555
3424
  #: classes/gateways/class.pmprogateway_stripe.php:1533
3425
  #: classes/gateways/class.pmprogateway_stripe.php:1534
3426
  #: classes/gateways/class.pmprogateway_stripe.php:1535
3427
  #: classes/gateways/class.pmprogateway_stripe.php:1553
3428
  #: classes/gateways/class.pmprogateway_stripe.php:1554
3429
+ #: classes/gateways/class.pmprogateway_stripe.php:1555
3430
  msgid "Could not find the customer."
3431
  msgstr ""
3432
 
3433
  #: classes/gateways/class.pmprogateway_twocheckout.php:60
3434
+ #: paid-memberships-pro.php:132
3435
  #: classes/gateways/class.pmprogateway_twocheckout.php:53
3436
+ #: classes/gateways/class.pmprogateway_twocheckout.php:60
3437
  #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
3438
  msgid "2Checkout"
3439
  msgstr ""
3440
 
3441
  #: classes/gateways/class.pmprogateway_twocheckout.php:116
3442
  #: classes/gateways/class.pmprogateway_twocheckout.php:108
3443
+ #: classes/gateways/class.pmprogateway_twocheckout.php:116
3444
  msgid "2Checkout Settings"
3445
  msgstr ""
3446
 
3447
+ #: classes/gateways/class.pmprogateway_twocheckout.php:125
3448
  #: classes/gateways/class.pmprogateway_twocheckout.php:125
3449
  msgid ""
3450
  "Go to Account &raquo; User Management in 2Checkout and create a user with "
3451
  "API Access and API Updating."
3452
  msgstr ""
3453
 
3454
+ #: classes/gateways/class.pmprogateway_twocheckout.php:134
3455
  #: classes/gateways/class.pmprogateway_twocheckout.php:134
3456
  msgid "Password for the API user created."
3457
  msgstr ""
3458
 
3459
+ #: classes/gateways/class.pmprogateway_twocheckout.php:139
3460
  #: classes/gateways/class.pmprogateway_twocheckout.php:139
3461
  msgid "API Private Key"
3462
  msgstr ""
3463
 
3464
+ #: classes/gateways/class.pmprogateway_twocheckout.php:143
3465
  #: classes/gateways/class.pmprogateway_twocheckout.php:143
3466
  msgid ""
3467
  "Go to API in 2Checkout and generate a new key pair. Paste the Private Key "
3468
  "here."
3469
  msgstr ""
3470
 
3471
+ #: classes/gateways/class.pmprogateway_twocheckout.php:152
3472
  #: classes/gateways/class.pmprogateway_twocheckout.php:152
3473
  msgid "Click on the profile icon in 2Checkout to find your Account Number."
3474
  msgstr ""
3476
  #: classes/gateways/class.pmprogateway_twocheckout.php:157
3477
  #: adminpages/paymentsettings.php:355 adminpages/paymentsettings.php:360
3478
  #: classes/gateways/class.pmprogateway_twocheckout.php:137
3479
+ #: classes/gateways/class.pmprogateway_twocheckout.php:157
3480
  msgid "Secret Word"
3481
  msgstr ""
3482
 
3483
+ #: classes/gateways/class.pmprogateway_twocheckout.php:161
3484
  #: classes/gateways/class.pmprogateway_twocheckout.php:161
3485
  msgid ""
3486
  "Go to Account &raquo; Site Management. Look under Checkout Options to find "
3491
  #: adminpages/paymentsettings.php:487 adminpages/paymentsettings.php:493
3492
  #: adminpages/paymentsettings.php:495
3493
  #: classes/gateways/class.pmprogateway_twocheckout.php:145
3494
+ #: classes/gateways/class.pmprogateway_twocheckout.php:166
3495
  msgid "TwoCheckout INS URL"
3496
  msgstr ""
3497
 
3498
+ #: classes/gateways/class.pmprogateway_twocheckout.php:169
3499
  #: classes/gateways/class.pmprogateway_twocheckout.php:169
3500
  msgid ""
3501
  "To fully integrate with 2Checkout, be sure to use the following for your INS "
3504
 
3505
  #: classes/gateways/class.pmprogateway_twocheckout.php:214
3506
  #: classes/gateways/class.pmprogateway_twocheckout.php:192
3507
+ #: classes/gateways/class.pmprogateway_twocheckout.php:214
3508
  msgid "Check Out with 2Checkout"
3509
  msgstr ""
3510
 
3517
  #: includes/adminpages.php:48 includes/adminpages.php:118
3518
  #: includes/adminpages.php:10 includes/adminpages.php:48
3519
  #: includes/adminpages.php:49 includes/adminpages.php:107
3520
+ #: includes/adminpages.php:114 includes/adminpages.php:118
3521
  msgid "Page Settings"
3522
  msgstr ""
3523
 
3524
  #: includes/adminpages.php:49 includes/adminpages.php:125
3525
  #: includes/adminpages.php:11 includes/adminpages.php:49
3526
  #: includes/adminpages.php:54 includes/adminpages.php:114
3527
+ #: includes/adminpages.php:121 includes/adminpages.php:125
3528
  msgid "Payment Settings"
3529
  msgstr ""
3530
 
3531
  #: includes/adminpages.php:54 includes/adminpages.php:160
3532
  #: includes/adminpages.php:16 includes/adminpages.php:54
3533
  #: includes/adminpages.php:79 includes/adminpages.php:149
3534
+ #: includes/adminpages.php:156 includes/adminpages.php:160
3535
  msgid "Reports"
3536
  msgstr ""
3537
 
3538
  #: includes/adminpages.php:56 includes/adminpages.php:174
3539
  #: includes/adminpages.php:18 includes/adminpages.php:56
3540
  #: includes/adminpages.php:89 includes/adminpages.php:163
3541
+ #: includes/adminpages.php:170 includes/adminpages.php:174
3542
  msgid "Discount Codes"
3543
  msgstr ""
3544
 
3545
  #: includes/adminpages.php:104 includes/adminpages.php:100
3546
+ #: includes/adminpages.php:104
3547
  msgid "<span class=\"ab-icon\"></span>Memberships"
3548
  msgstr ""
3549
 
3550
  #: includes/adminpages.php:265 includes/adminpages.php:261
3551
+ #: includes/adminpages.php:265
3552
  msgid "Docs"
3553
  msgstr ""
3554
 
3555
  #: includes/adminpages.php:265 includes/adminpages.php:261
3556
+ #: includes/adminpages.php:265
3557
  msgid "View PMPro Documentation"
3558
  msgstr ""
3559
 
3560
  #: includes/adminpages.php:266 includes/adminpages.php:262
3561
+ #: includes/adminpages.php:266
3562
  msgid "Support"
3563
  msgstr ""
3564
 
3565
  #: includes/adminpages.php:266 includes/adminpages.php:262
3566
+ #: includes/adminpages.php:266
3567
  msgid "Visit Customer Support Forum"
3568
  msgstr ""
3569
 
3883
  msgid "Membership expires after %d %s."
3884
  msgstr ""
3885
 
3886
+ #: includes/functions.php:615 includes/functions.php:491
3887
  #: includes/functions.php:514 includes/functions.php:525
3888
  #: includes/functions.php:536 includes/functions.php:537
3889
  #: includes/functions.php:538 includes/functions.php:545
3890
  #: includes/functions.php:569 includes/functions.php:570
3891
+ #: includes/functions.php:576 includes/functions.php:592
3892
  msgid "User ID not found."
3893
  msgstr ""
3894
 
3895
+ #: includes/functions.php:635 includes/functions.php:508
3896
  #: includes/functions.php:531 includes/functions.php:542
3897
  #: includes/functions.php:553 includes/functions.php:554
3898
  #: includes/functions.php:555 includes/functions.php:562
3899
  #: includes/functions.php:586 includes/functions.php:587
3900
  #: includes/functions.php:589 includes/functions.php:596
3901
+ #: includes/functions.php:612
3902
  msgid "Invalid level."
3903
  msgstr ""
3904
 
3905
+ #: includes/functions.php:646 includes/functions.php:520
3906
  #: includes/functions.php:542 includes/functions.php:553
3907
  #: includes/functions.php:564 includes/functions.php:565
3908
  #: includes/functions.php:566 includes/functions.php:573
3909
  #: includes/functions.php:597 includes/functions.php:598
3910
  #: includes/functions.php:600 includes/functions.php:607
3911
+ #: includes/functions.php:623
3912
  msgid "not changing?"
3913
  msgstr ""
3914
 
3915
+ #: includes/functions.php:663 includes/functions.php:722
3916
+ #: includes/functions.php:746 includes/functions.php:537
3917
  #: includes/functions.php:559 includes/functions.php:570
3918
  #: includes/functions.php:581 includes/functions.php:582
3919
  #: includes/functions.php:583 includes/functions.php:590
3928
  #: includes/functions.php:673 includes/functions.php:674
3929
  #: includes/functions.php:676 includes/functions.php:683
3930
  #: includes/functions.php:697 includes/functions.php:698
3931
+ #: includes/functions.php:699 includes/functions.php:700
3932
+ #: includes/functions.php:707 includes/functions.php:723
3933
  msgid "Error interacting with database"
3934
  msgstr ""
3935
 
3936
+ #: includes/functions.php:787 includes/functions.php:826
3937
  #: includes/functions.php:629 includes/functions.php:651
3938
  #: includes/functions.php:667 includes/functions.php:668
3939
  #: includes/functions.php:678 includes/functions.php:681
3944
  #: includes/functions.php:737 includes/functions.php:738
3945
  #: includes/functions.php:739 includes/functions.php:741
3946
  #: includes/functions.php:748 includes/functions.php:753
3947
+ #: includes/functions.php:764 includes/functions.php:777
3948
+ #: includes/functions.php:778 includes/functions.php:780
3949
+ #: includes/functions.php:787 includes/functions.php:803
3950
  msgid "Membership level not found."
3951
  msgstr ""
3952
 
3953
+ #: includes/functions.php:1196 includes/functions.php:1100
3954
  #: includes/functions.php:1101 includes/functions.php:1118
3955
  #: includes/functions.php:1142 includes/functions.php:1143
3956
  #: includes/functions.php:1150 includes/functions.php:1157
3957
+ #: includes/functions.php:1173
3958
  msgid "No code was given to check."
3959
  msgstr ""
3960
 
3961
+ #: includes/functions.php:1205 includes/functions.php:1050
3962
  #: includes/functions.php:1072 includes/functions.php:1088
3963
  #: includes/functions.php:1099 includes/functions.php:1102
3964
  #: includes/functions.php:1109 includes/functions.php:1110
3965
  #: includes/functions.php:1112 includes/functions.php:1113
3966
  #: includes/functions.php:1127 includes/functions.php:1151
3967
  #: includes/functions.php:1152 includes/functions.php:1159
3968
+ #: includes/functions.php:1166 includes/functions.php:1182
3969
  msgid "The discount code could not be found."
3970
  msgstr ""
3971
 
3972
+ #: includes/functions.php:1220 includes/functions.php:1066
3973
  #: includes/functions.php:1088 includes/functions.php:1104
3974
  #: includes/functions.php:1115 includes/functions.php:1118
3975
  #: includes/functions.php:1124 includes/functions.php:1125
3976
  #: includes/functions.php:1128 includes/functions.php:1129
3977
  #: includes/functions.php:1142 includes/functions.php:1166
3978
  #: includes/functions.php:1167 includes/functions.php:1174
3979
+ #: includes/functions.php:1181 includes/functions.php:1197
3980
  #, php-format
3981
  msgid "This discount code goes into effect on %s."
3982
  msgstr ""
3983
 
3984
+ #: includes/functions.php:1227 includes/functions.php:1075
3985
  #: includes/functions.php:1097 includes/functions.php:1113
3986
  #: includes/functions.php:1124 includes/functions.php:1127
3987
  #: includes/functions.php:1131 includes/functions.php:1132
3988
  #: includes/functions.php:1137 includes/functions.php:1138
3989
  #: includes/functions.php:1149 includes/functions.php:1173
3990
  #: includes/functions.php:1174 includes/functions.php:1181
3991
+ #: includes/functions.php:1188 includes/functions.php:1204
3992
  #, php-format
3993
  msgid "This discount code expired on %s."
3994
  msgstr ""
3995
 
3996
+ #: includes/functions.php:1237 includes/functions.php:1087
3997
  #: includes/functions.php:1109 includes/functions.php:1125
3998
  #: includes/functions.php:1136 includes/functions.php:1139
3999
  #: includes/functions.php:1141 includes/functions.php:1142
4000
  #: includes/functions.php:1149 includes/functions.php:1150
4001
  #: includes/functions.php:1159 includes/functions.php:1183
4002
  #: includes/functions.php:1184 includes/functions.php:1191
4003
+ #: includes/functions.php:1198 includes/functions.php:1214
4004
  msgid "This discount code is no longer valid."
4005
  msgstr ""
4006
 
4007
+ #: includes/functions.php:1250 includes/functions.php:1102
4008
  #: includes/functions.php:1124 includes/functions.php:1140
4009
  #: includes/functions.php:1151 includes/functions.php:1154
4010
  #: includes/functions.php:1155 includes/functions.php:1164
4011
  #: includes/functions.php:1165 includes/functions.php:1172
4012
  #: includes/functions.php:1196 includes/functions.php:1197
4013
  #: includes/functions.php:1204 includes/functions.php:1211
4014
+ #: includes/functions.php:1227
4015
  msgid "This discount code does not apply to this membership level."
4016
  msgstr ""
4017
 
4018
+ #: includes/functions.php:1276 includes/functions.php:1110
4019
  #: includes/functions.php:1132 includes/functions.php:1148
4020
  #: includes/functions.php:1159 includes/functions.php:1162
4021
  #: includes/functions.php:1172 includes/functions.php:1180
4022
  #: includes/functions.php:1181 includes/functions.php:1182
4023
  #: includes/functions.php:1198 includes/functions.php:1222
4024
  #: includes/functions.php:1223 includes/functions.php:1230
4025
+ #: includes/functions.php:1237 includes/functions.php:1253
4026
  msgid "This discount code is okay."
4027
  msgstr ""
4028
 
4029
+ #: includes/functions.php:1301 includes/functions.php:1134
4030
  #: includes/functions.php:1156 includes/functions.php:1172
4031
  #: includes/functions.php:1183 includes/functions.php:1186
4032
  #: includes/functions.php:1196 includes/functions.php:1205
4033
  #: includes/functions.php:1206 includes/functions.php:1223
4034
  #: includes/functions.php:1247 includes/functions.php:1248
4035
  #: includes/functions.php:1255 includes/functions.php:1262
4036
+ #: includes/functions.php:1278
4037
  msgid "and"
4038
  msgstr ""
4039
 
4040
+ #: includes/functions.php:1496 includes/functions.php:1319
4041
  #: includes/functions.php:1341 includes/functions.php:1361
4042
  #: includes/functions.php:1372 includes/functions.php:1375
4043
  #: includes/functions.php:1385 includes/functions.php:1394
4044
  #: includes/functions.php:1395 includes/functions.php:1412
4045
  #: includes/functions.php:1436 includes/functions.php:1437
4046
  #: includes/functions.php:1450 includes/functions.php:1457
4047
+ #: includes/functions.php:1473
4048
  msgid "Sign Up for !!name!! Now"
4049
  msgstr ""
4050
 
4051
+ #: includes/functions.php:1502 includes/functions.php:1325
4052
  #: includes/functions.php:1347 includes/functions.php:1367
4053
  #: includes/functions.php:1378 includes/functions.php:1381
4054
  #: includes/functions.php:1391 includes/functions.php:1400
4055
  #: includes/functions.php:1401 includes/functions.php:1418
4056
  #: includes/functions.php:1442 includes/functions.php:1443
4057
  #: includes/functions.php:1456 includes/functions.php:1463
4058
+ #: includes/functions.php:1479
4059
  msgid "Please specify a level id."
4060
  msgstr ""
4061
 
4062
+ #: includes/init.php:237 includes/profile.php:39 includes/init.php:229
4063
+ #: includes/init.php:232 includes/init.php:233 includes/init.php:235
4064
+ #: includes/init.php:237 includes/profile.php:37 includes/profile.php:39
4065
  msgid "None"
4066
  msgstr ""
4067
 
4068
+ #: includes/license.php:51
4069
+ msgid "Your license key has been validated."
4070
+ msgstr ""
4071
+
4072
+ #: includes/license.php:81
4073
+ msgid "Paid Memberships Pro Support License"
4074
+ msgstr ""
4075
+
4076
+ #: includes/license.php:86
4077
+ msgid "License Key"
4078
+ msgstr ""
4079
+
4080
+ #: includes/license.php:89
4081
+ msgid ""
4082
+ "Enter your support license key.</strong> Your license key can be found in "
4083
+ "your membership email receipt or in your <a href=\"http://www."
4084
+ "paidmembershipspro.com/login/?redirect_to=/membership-account/\" target="
4085
+ "\"_blank\">Membership Account</a>."
4086
+ msgstr ""
4087
+
4088
+ #: includes/license.php:91
4089
+ msgid ""
4090
+ "Visit the PMPro <a href=\"http://www.paidmembershipspro.com/login/?"
4091
+ "redirect_to=/membership-account/\" target=\"_blank\">Membership Account</a> "
4092
+ "page to confirm that your account is active and to find your license key."
4093
+ msgstr ""
4094
+
4095
+ #: includes/license.php:91
4096
+ msgid "Your license is invalid or expired."
4097
+ msgstr ""
4098
+
4099
+ #: includes/license.php:93
4100
+ #, php-format
4101
+ msgid ""
4102
+ "<p><strong>Thank you!</strong> A valid <strong>%s</strong> license key has "
4103
+ "been used to activate your support license on this site.</p>"
4104
+ msgstr ""
4105
+
4106
+ #: includes/license.php:100
4107
+ msgid "Enter license key here..."
4108
+ msgstr ""
4109
+
4110
+ #: includes/license.php:102
4111
+ msgid "Verify Key"
4112
+ msgstr ""
4113
+
4114
+ #: includes/license.php:273
4115
+ msgid ""
4116
+ "If you're running Paid Memberships Pro on a production website, we recommend "
4117
+ "an annual support license."
4118
+ msgstr ""
4119
+
4120
+ #: includes/license.php:273
4121
+ msgid "Invalid PMPro License Key."
4122
+ msgstr ""
4123
+
4124
+ #: includes/license.php:274
4125
+ msgid "Dismiss"
4126
+ msgstr ""
4127
+
4128
+ #: includes/license.php:274
4129
+ msgid "More Info"
4130
+ msgstr ""
4131
+
4132
  #: includes/localization.php:26 includes/localization.php:23
4133
  #: includes/localization.php:26
4134
  msgid "Day"
4180
  msgid "Current Level"
4181
  msgstr ""
4182
 
4183
+ #: includes/profile.php:60 includes/profile.php:54
4184
  msgid "Not paying."
4185
  msgstr ""
4186
 
4187
+ #: includes/profile.php:68 includes/profile.php:64
4188
  msgid ""
4189
  "This will not change the subscription at the gateway unless the 'Cancel' "
4190
  "checkbox is selected below."
4212
  "register to read."
4213
  msgstr ""
4214
 
4215
+ #: pages/billing.php:23 pages/billing.php:14 pages/billing.php:23
4216
  #, php-format
4217
  msgid "Logged in as <strong>%s</strong>."
4218
  msgstr ""
4219
 
4220
+ #: pages/billing.php:23 pages/billing.php:14 pages/billing.php:23
4221
  msgid "logout"
4222
  msgstr ""
4223
 
4224
+ #: pages/billing.php:25 pages/cancel.php:52 pages/invoice.php:109
4225
  #: pages/levels.php:13 shortcodes/pmpro_account.php:44
4226
  #: shortcodes/pmpro_account.php:123 pages/account.php:12 pages/account.php:18
4227
+ #: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
4228
+ #: pages/cancel.php:52 pages/invoice.php:109 pages/levels.php:13
4229
+ #: shortcodes/pmpro_account.php:44 shortcodes/pmpro_account.php:123
4230
  msgid "Level"
4231
  msgstr ""
4232
 
4233
+ #: pages/billing.php:27 pages/account.php:14 pages/billing.php:18
4234
+ #: pages/billing.php:27
4235
  msgid "Membership Fee"
4236
  msgstr ""
4237
 
4238
+ #: pages/billing.php:31 pages/account.php:18 pages/billing.php:22
4239
+ #: pages/billing.php:31 pages/levels.php:70
4240
  #, php-format
4241
  msgid "%s every %d %s."
4242
  msgstr ""
4243
 
4244
+ #: pages/billing.php:33 pages/account.php:20 pages/billing.php:24
4245
+ #: pages/billing.php:33 pages/levels.php:66
4246
  #, php-format
4247
  msgid "%s per %s."
4248
  msgstr ""
4249
 
4250
+ #: pages/billing.php:42 pages/account.php:25 pages/account.php:29
4251
+ #: pages/billing.php:29 pages/billing.php:33 pages/billing.php:42
4252
  msgid "Duration"
4253
  msgstr ""
4254
 
4255
+ #: pages/billing.php:52 pages/billing.php:39 pages/billing.php:43
4256
+ #: pages/billing.php:52
4257
  msgid ""
4258
  "Your payment subscription is managed by PayPal. Please <a href=\"http://www."
4259
  "paypal.com\">login to PayPal here</a> to update your billing information."
4260
  msgstr ""
4261
 
4262
+ #: pages/billing.php:78 pages/checkout.php:318 pages/billing.php:65
4263
+ #: pages/billing.php:69 pages/billing.php:78 pages/checkout.php:305
4264
+ #: pages/checkout.php:307 pages/checkout.php:309 pages/checkout.php:318
4265
+ #: pages/checkout.php:321 pages/checkout.php:328
4266
  msgid "First Name"
4267
  msgstr ""
4268
 
4269
+ #: pages/billing.php:82 pages/checkout.php:322 pages/billing.php:69
4270
+ #: pages/billing.php:73 pages/billing.php:82 pages/checkout.php:309
4271
+ #: pages/checkout.php:311 pages/checkout.php:313 pages/checkout.php:322
4272
+ #: pages/checkout.php:325 pages/checkout.php:332
4273
  msgid "Last Name"
4274
  msgstr ""
4275
 
4276
+ #: pages/billing.php:86 pages/checkout.php:326 pages/billing.php:73
4277
+ #: pages/billing.php:77 pages/billing.php:86 pages/checkout.php:313
4278
+ #: pages/checkout.php:315 pages/checkout.php:317 pages/checkout.php:326
4279
+ #: pages/checkout.php:329 pages/checkout.php:336
4280
  msgid "Address 1"
4281
  msgstr ""
4282
 
4283
+ #: pages/billing.php:90 pages/checkout.php:330 pages/billing.php:77
4284
+ #: pages/billing.php:81 pages/billing.php:90 pages/checkout.php:317
4285
+ #: pages/checkout.php:319 pages/checkout.php:321 pages/checkout.php:330
4286
+ #: pages/checkout.php:333 pages/checkout.php:340
4287
  msgid "Address 2"
4288
  msgstr ""
4289
 
4290
+ #: pages/billing.php:100 pages/checkout.php:340 pages/billing.php:87
4291
+ #: pages/billing.php:91 pages/billing.php:100 pages/checkout.php:327
4292
+ #: pages/checkout.php:329 pages/checkout.php:331 pages/checkout.php:340
4293
+ #: pages/checkout.php:343 pages/checkout.php:350
4294
  msgid "City"
4295
  msgstr ""
4296
 
4297
+ #: pages/billing.php:104 pages/checkout.php:344 pages/billing.php:91
4298
+ #: pages/billing.php:95 pages/billing.php:104 pages/checkout.php:331
4299
+ #: pages/checkout.php:333 pages/checkout.php:335 pages/checkout.php:344
4300
+ #: pages/checkout.php:347 pages/checkout.php:354
4301
  msgid "State"
4302
  msgstr ""
4303
 
4304
+ #: pages/billing.php:108 pages/checkout.php:348 pages/billing.php:95
4305
+ #: pages/billing.php:99 pages/billing.php:108 pages/checkout.php:335
4306
+ #: pages/checkout.php:337 pages/checkout.php:339 pages/checkout.php:348
4307
+ #: pages/checkout.php:351 pages/checkout.php:358
4308
  msgid "Postal Code"
4309
  msgstr ""
4310
 
4311
+ #: pages/billing.php:117 pages/checkout.php:357 pages/billing.php:104
4312
+ #: pages/billing.php:108 pages/billing.php:117 pages/checkout.php:344
4313
+ #: pages/checkout.php:346 pages/checkout.php:348 pages/checkout.php:357
4314
+ #: pages/checkout.php:360 pages/checkout.php:367
4315
  msgid "City, State Zip"
4316
  msgstr ""
4317
 
4318
+ #: pages/billing.php:170 pages/checkout.php:410 pages/billing.php:157
4319
+ #: pages/billing.php:161 pages/billing.php:170 pages/checkout.php:397
4320
+ #: pages/checkout.php:399 pages/checkout.php:401 pages/checkout.php:410
4321
+ #: pages/checkout.php:413 pages/checkout.php:420
4322
  msgid "Country"
4323
  msgstr ""
4324
 
4325
+ #: pages/billing.php:195 pages/checkout.php:435 pages/billing.php:182
4326
+ #: pages/billing.php:186 pages/billing.php:195 pages/checkout.php:422
4327
+ #: pages/checkout.php:424 pages/checkout.php:426 pages/checkout.php:435
4328
+ #: pages/checkout.php:438 pages/checkout.php:445
4329
  msgid "Phone"
4330
  msgstr ""
4331
 
4332
+ #: pages/billing.php:206 pages/checkout.php:216 pages/checkout.php:449
4333
+ #: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
4334
+ #: pages/checkout.php:204 pages/checkout.php:207 pages/checkout.php:209
4335
+ #: pages/checkout.php:216 pages/checkout.php:436 pages/checkout.php:438
4336
+ #: pages/checkout.php:440 pages/checkout.php:449 pages/checkout.php:453
4337
  #: pages/checkout.php:460
4338
  msgid "E-mail Address"
4339
  msgstr ""
4340
 
4341
+ #: pages/billing.php:210 pages/checkout.php:458 pages/billing.php:197
4342
+ #: pages/billing.php:201 pages/billing.php:210 pages/checkout.php:445
4343
+ #: pages/checkout.php:447 pages/checkout.php:449 pages/checkout.php:458
4344
+ #: pages/checkout.php:462 pages/checkout.php:469
4345
  msgid "Confirm E-mail"
4346
  msgstr ""
4347
 
4348
+ #: pages/billing.php:230 pages/billing.php:217 pages/billing.php:221
4349
+ #: pages/billing.php:230
4350
  msgid "Credit Card Information"
4351
  msgstr ""
4352
 
4353
+ #: pages/billing.php:230 pages/billing.php:217 pages/billing.php:221
4354
+ #: pages/billing.php:230
4355
  #, php-format
4356
  msgid "We accept %s"
4357
  msgstr ""
4358
 
4359
+ #: pages/billing.php:353 pages/billing.php:309 pages/billing.php:313
4360
+ #: pages/billing.php:344 pages/billing.php:353
4361
  msgid ""
4362
  "This subscription is not recurring. So you don't need to update your billing "
4363
  "information."
4393
  msgid "Click here to go to the home page."
4394
  msgstr ""
4395
 
4396
+ #: pages/checkout.php:35 pages/checkout.php:26 pages/checkout.php:27
4397
+ #: pages/checkout.php:28 pages/checkout.php:35
4398
  msgid ""
4399
  "Almost done. Review the membership information and pricing below then "
4400
  "<strong>click the \"Complete Payment\" button</strong> to finish your order."
4401
  msgstr ""
4402
 
4403
+ #: pages/checkout.php:42 pages/checkout.php:33 pages/checkout.php:34
4404
+ #: pages/checkout.php:35 pages/checkout.php:42
4405
  msgid "change"
4406
  msgstr ""
4407
 
4408
+ #: pages/checkout.php:50 pages/checkout.php:41 pages/checkout.php:42
4409
+ #: pages/checkout.php:43 pages/checkout.php:50
4410
  #, php-format
4411
  msgid "You have selected the <strong>%s</strong> membership level."
4412
  msgstr ""
4413
 
4414
+ #: pages/checkout.php:60 pages/checkout.php:51 pages/checkout.php:53
4415
+ #: pages/checkout.php:60
4416
  #, php-format
4417
  msgid ""
4418
  "<p class=\"pmpro_level_discount_applied\">The <strong>%s</strong> code has "
4419
  "been applied to your order.</p>"
4420
  msgstr ""
4421
 
4422
+ #: pages/checkout.php:71 services/applydiscountcode.php:89
4423
  #: pages/checkout.php:62 pages/checkout.php:63 pages/checkout.php:64
4424
+ #: pages/checkout.php:71 services/applydiscountcode.php:74
4425
+ #: services/applydiscountcode.php:75 services/applydiscountcode.php:78
4426
+ #: services/applydiscountcode.php:89
4427
  msgid "Click here to change your discount code"
4428
  msgstr ""
4429
 
4430
+ #: pages/checkout.php:73 pages/checkout.php:64 pages/checkout.php:65
4431
+ #: pages/checkout.php:66 pages/checkout.php:73
4432
  msgid "Click here to enter your discount code"
4433
  msgstr ""
4434
 
4435
+ #: pages/checkout.php:73 pages/checkout.php:64 pages/checkout.php:65
4436
+ #: pages/checkout.php:66 pages/checkout.php:73
4437
  msgid "Do you have a discount code?"
4438
  msgstr ""
4439
 
4440
+ #: pages/checkout.php:172 pages/checkout.php:160 pages/checkout.php:163
4441
+ #: pages/checkout.php:165 pages/checkout.php:172
4442
  msgid "Account Information"
4443
  msgstr ""
4444
 
4445
+ #: pages/checkout.php:172 pages/checkout.php:160 pages/checkout.php:163
4446
+ #: pages/checkout.php:165 pages/checkout.php:172
4447
  msgid "Already have an account?"
4448
  msgstr ""
4449
 
4450
+ #: pages/checkout.php:172 pages/checkout.php:160 pages/checkout.php:163
4451
+ #: pages/checkout.php:165 pages/checkout.php:172
4452
  msgid "Log in here"
4453
  msgstr ""
4454
 
4455
+ #: pages/checkout.php:198 pages/checkout.php:186 pages/checkout.php:189
4456
+ #: pages/checkout.php:191 pages/checkout.php:198
4457
  msgid "Confirm Password"
4458
  msgstr ""
4459
 
4460
+ #: pages/checkout.php:225 pages/checkout.php:213 pages/checkout.php:216
4461
+ #: pages/checkout.php:218 pages/checkout.php:225
4462
  msgid "Confirm E-mail Address"
4463
  msgstr ""
4464
 
4465
+ #: pages/checkout.php:244 pages/checkout.php:232 pages/checkout.php:235
4466
+ #: pages/checkout.php:237 pages/checkout.php:244
4467
  msgid "Full Name"
4468
  msgstr ""
4469
 
4470
+ #: pages/checkout.php:245 pages/checkout.php:233 pages/checkout.php:236
4471
+ #: pages/checkout.php:238 pages/checkout.php:245
4472
  msgid "LEAVE THIS BLANK"
4473
  msgstr ""
4474
 
4475
+ #: pages/checkout.php:269 pages/checkout.php:257 pages/checkout.php:260
4476
+ #: pages/checkout.php:262 pages/checkout.php:269
4477
  #, php-format
4478
  msgid ""
4479
  "You are logged in as <strong>%s</strong>. If you would like to use a "
4480
  "different account for this membership, <a href=\"%s\">log out now</a>."
4481
  msgstr ""
4482
 
4483
+ #: pages/checkout.php:285 pages/checkout.php:276 pages/checkout.php:278
4484
+ #: pages/checkout.php:285 pages/checkout.php:292 pages/checkout.php:299
4485
  msgid "Choose your Payment Method"
4486
  msgstr ""
4487
 
4488
+ #: pages/checkout.php:293 pages/checkout.php:284 pages/checkout.php:286
4489
+ #: pages/checkout.php:293 pages/checkout.php:300 pages/checkout.php:307
4490
  msgid "Check Out with a Credit Card Here"
4491
  msgstr ""
4492
 
4493
+ #: pages/checkout.php:681 pages/checkout.php:277 pages/checkout.php:284
4494
  #: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
4495
+ #: pages/checkout.php:681
4496
  #, php-format
4497
  msgid "I agree to the %s"
4498
  msgstr ""
4499
 
4500
+ #: pages/checkout.php:701 pages/checkout.php:667 pages/checkout.php:674
4501
  #: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
4502
+ #: pages/checkout.php:701
4503
  msgid "Complete Payment"
4504
  msgstr ""
4505
 
4506
+ #: pages/checkout.php:723 pages/checkout.php:687 pages/checkout.php:694
4507
  #: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
4508
+ #: pages/checkout.php:723
4509
  msgid "Processing..."
4510
  msgstr ""
4511
 
4646
  msgid "&larr; Return to Home"
4647
  msgstr ""
4648
 
4649
+ #: paid-memberships-pro.php:123 adminpages/orders.php:398
4650
  #: adminpages/orders.php:448 paid-memberships-pro.php:115
4651
  #: paid-memberships-pro.php:116
4652
  msgid "Testing Only"
4653
  msgstr ""
4654
 
4655
+ #: paid-memberships-pro.php:128 paid-memberships-pro.php:120
4656
  #: paid-memberships-pro.php:121
4657
  msgid "PayPal Payflow Pro/PayPal Pro"
4658
  msgstr ""
4659
 
4660
+ #: paid-memberships-pro.php:133 paid-memberships-pro.php:125
4661
  #: paid-memberships-pro.php:126
4662
  msgid "Cybersource"
4663
  msgstr ""
4726
  msgid "Error updating billing information."
4727
  msgstr ""
4728
 
4729
+ #: preheaders/cancel.php:28 preheaders/cancel.php:24 preheaders/cancel.php:25
4730
+ #: preheaders/cancel.php:28
4731
  msgid "Your membership has been cancelled."
4732
  msgstr ""
4733
 
4747
  msgid "Checkout: Payment Information"
4748
  msgstr ""
4749
 
4750
+ #: preheaders/checkout.php:100 preheaders/checkout.php:100
4751
+ msgid "Set Up Your Account"
 
 
4752
  msgstr ""
4753
 
4754
  #: preheaders/checkout.php:300 preheaders/checkout.php:300
4815
  #: preheaders/checkout.php:665 preheaders/checkout.php:691
4816
  #: preheaders/checkout.php:709 preheaders/checkout.php:710
4817
  msgid ""
4818
+ "Unknown error generating account. Please contact us to set up your "
4819
+ "membership."
4820
  msgstr ""
4821
 
4822
+ #: preheaders/checkout.php:571 preheaders/checkout.php:550
4823
  #: preheaders/checkout.php:552 preheaders/checkout.php:569
4824
+ #: preheaders/checkout.php:571 preheaders/checkout.php:785
4825
+ #: preheaders/checkout.php:792 preheaders/checkout.php:797
4826
+ #: preheaders/checkout.php:825 preheaders/checkout.php:844
4827
+ #: preheaders/checkout.php:859 preheaders/checkout.php:860
4828
  msgid ""
4829
  "Your payment was accepted, but there was an error setting up your account. "
4830
  "Please contact us."
4831
  msgstr ""
4832
 
4833
+ #: preheaders/checkout.php:712 preheaders/checkout.php:691
4834
  #: preheaders/checkout.php:693 preheaders/checkout.php:710
4835
+ #: preheaders/checkout.php:712 preheaders/checkout.php:953
4836
+ #: preheaders/checkout.php:960 preheaders/checkout.php:970
4837
+ #: preheaders/checkout.php:983 preheaders/checkout.php:1030
4838
+ #: preheaders/checkout.php:1045 preheaders/checkout.php:1046
4839
  msgid ""
4840
  "IMPORTANT: Something went wrong during membership creation. Your credit card "
4841
  "authorized, but we cancelled the order immediately. You should not try to "
4842
  "submit this form again. Please contact the site owner to fix this issue."
4843
  msgstr ""
4844
 
4845
+ #: preheaders/checkout.php:715 preheaders/checkout.php:694
4846
  #: preheaders/checkout.php:696 preheaders/checkout.php:713
4847
+ #: preheaders/checkout.php:715 preheaders/checkout.php:956
4848
+ #: preheaders/checkout.php:963 preheaders/checkout.php:973
4849
+ #: preheaders/checkout.php:988 preheaders/checkout.php:1035
4850
+ #: preheaders/checkout.php:1050 preheaders/checkout.php:1051
4851
  msgid ""
4852
  "IMPORTANT: Something went wrong during membership creation. Your credit card "
4853
  "was charged, but we couldn't assign your membership. You should not submit "
4854
  "this form again. Please contact the site owner to fix this issue."
4855
  msgstr ""
4856
 
4857
+ #: preheaders/checkout.php:726 preheaders/checkout.php:705
4858
  #: preheaders/checkout.php:707 preheaders/checkout.php:724
4859
+ #: preheaders/checkout.php:726 preheaders/checkout.php:967
4860
+ #: preheaders/checkout.php:974 preheaders/checkout.php:984
4861
+ #: preheaders/checkout.php:1001 preheaders/checkout.php:1048
4862
+ #: preheaders/checkout.php:1063 preheaders/checkout.php:1064
4863
  #, php-format
4864
  msgid ""
4865
+ "You must <a href=\"%s\">set up a Payment Gateway</a> before any payments "
4866
+ "will be processed."
4867
  msgstr ""
4868
 
4869
+ #: preheaders/checkout.php:728 preheaders/checkout.php:707
4870
  #: preheaders/checkout.php:709 preheaders/checkout.php:726
4871
+ #: preheaders/checkout.php:728 preheaders/checkout.php:969
4872
+ #: preheaders/checkout.php:976 preheaders/checkout.php:986
4873
+ #: preheaders/checkout.php:1003 preheaders/checkout.php:1050
4874
+ #: preheaders/checkout.php:1065 preheaders/checkout.php:1066
4875
  msgid "A Payment Gateway must be set up before any payments will be processed."
4876
  msgstr ""
4877
 
4984
  msgid "Member Links"
4985
  msgstr ""
4986
 
4987
+ #: adminpages/addons.php:79
4988
+ msgid "Disabled"
4989
+ msgstr ""
4990
+
4991
+ #: adminpages/addons.php:79
4992
+ msgid "Enabled"
4993
+ msgstr ""
4994
+
4995
  #: adminpages/discountcodes.php:437
4996
  msgid "Billing Ammount"
4997
  msgstr ""
5034
  msgid "every"
5035
  msgstr ""
5036
 
5037
+ #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:572
5038
+ #: adminpages/membershiplevels.php:574 adminpages/membershiplevels.php:580
5039
+ #: adminpages/membershiplevels.php:601 adminpages/membershiplevels.php:660
5040
+ #, php-format
5041
+ msgid ""
5042
+ "Are you sure you want to delete membership level %s? All subscriptions will "
5043
+ "be cancelled."
5044
+ msgstr ""
5045
+
5046
  #: adminpages/memberslist.php:184 adminpages/memberslist.php:212
5047
  msgid "Never"
5048
  msgstr ""
5191
  #, php-format
5192
  msgid "%s after %d %s."
5193
  msgstr ""
5194
+
5195
+ #: preheaders/checkout.php:99 preheaders/checkout.php:100
5196
+ #: preheaders/checkout.php:102 preheaders/checkout.php:109
5197
+ msgid "Set up Your Account"
5198
+ msgstr ""
license.txt CHANGED
@@ -1,10 +1,10 @@
1
- Paid Memberships Pro
2
-
3
- Copyright (C) 2013 Stranger Studios, LLC and other contributors
4
-
5
- Paid Memberships Pro uses the same software license as the current version of WordPress: GPLv2. You can get the text of that license in the license.txt file of your root WordPress directory or online at http://wordpress.org/about/gpl/.
6
-
7
- Please read the GPLv2 for full details, but what this means in practice is that you may install this plugin on any site for personal or commercial use. You may redistribute this plugin any way you choose as long as you maintain the GPLv2 license. If you distribute an altered version of this code, we ask that you:
8
-
9
- 1. Give your software a name other than "Paid Memberships Pro" or "PMPro" to avoid confusion.
10
  2. Notify us of your distributed version so we can potentially promote the distribution if it's a good effort.
1
+ Paid Memberships Pro
2
+
3
+ Copyright (C) 2015 Stranger Studios, LLC and other contributors
4
+
5
+ Paid Memberships Pro uses the same software license as the current version of WordPress: GPLv2. You can get the text of that license in the license.txt file of your root WordPress directory or online at http://wordpress.org/about/gpl/.
6
+
7
+ Please read the GPLv2 for full details, but what this means in practice is that you may install this plugin on any site for personal or commercial use. You may redistribute this plugin any way you choose as long as you maintain the GPLv2 license. If you distribute an altered version of this code, we ask that you:
8
+
9
+ 1. Give your software a name other than "Paid Memberships Pro" or "PMPro" to avoid confusion.
10
  2. Notify us of your distributed version so we can potentially promote the distribution if it's a good effort.
pages/billing.php CHANGED
@@ -2,6 +2,15 @@
2
  global $wpdb, $current_user, $pmpro_msg, $pmpro_msgt, $show_paypal_link;
3
  global $bfirstname, $blastname, $baddress1, $baddress2, $bcity, $bstate, $bzipcode, $bcountry, $bphone, $bemail, $bconfirmemail, $CardType, $AccountNumber, $ExpirationMonth, $ExpirationYear;
4
 
 
 
 
 
 
 
 
 
 
5
  $gateway = pmpro_getOption("gateway");
6
 
7
  //set to true via filter to have Stripe use the minimal billing fields
@@ -195,11 +204,11 @@
195
  ?>
196
  <div>
197
  <label for="bemail"><?php _e('E-mail Address', 'pmpro');?></label>
198
- <input id="bemail" name="bemail" type="text" class="input" size="20" value="<?php echo esc_attr($bemail)?>" />
199
  </div>
200
  <div>
201
  <label for="bconfirmemail"><?php _e('Confirm E-mail', 'pmpro');?></label>
202
- <input id="bconfirmemail" name="bconfirmemail" type="text" class="input" size="20" value="<?php echo esc_attr($bconfirmemail)?>" />
203
 
204
  </div>
205
  <?php } ?>
2
  global $wpdb, $current_user, $pmpro_msg, $pmpro_msgt, $show_paypal_link;
3
  global $bfirstname, $blastname, $baddress1, $baddress2, $bcity, $bstate, $bzipcode, $bcountry, $bphone, $bemail, $bconfirmemail, $CardType, $AccountNumber, $ExpirationMonth, $ExpirationYear;
4
 
5
+ /**
6
+ * Filter to set if PMPro uses email or text as the type for email field inputs.
7
+ *
8
+ * @since 1.8.4.5
9
+ *
10
+ * @param bool $use_email_type, true to use email type, false to use text type
11
+ */
12
+ $pmpro_email_field_type = apply_filters('pmpro_email_field_type', true);
13
+
14
  $gateway = pmpro_getOption("gateway");
15
 
16
  //set to true via filter to have Stripe use the minimal billing fields
204
  ?>
205
  <div>
206
  <label for="bemail"><?php _e('E-mail Address', 'pmpro');?></label>
207
+ <input id="bemail" name="bemail" type="<?php echo ($pmpro_email_field_type ? 'email' : 'text'); ?>" class="input" size="20" value="<?php echo esc_attr($bemail)?>" />
208
  </div>
209
  <div>
210
  <label for="bconfirmemail"><?php _e('Confirm E-mail', 'pmpro');?></label>
211
+ <input id="bconfirmemail" name="bconfirmemail" type="<?php echo ($pmpro_email_field_type ? 'email' : 'text'); ?>" class="input" size="20" value="<?php echo esc_attr($bconfirmemail)?>" />
212
 
213
  </div>
214
  <?php } ?>
pages/checkout.php CHANGED
@@ -1,14 +1,23 @@
1
- <?php
2
  global $gateway, $pmpro_review, $skip_account_fields, $pmpro_paypal_token, $wpdb, $current_user, $pmpro_msg, $pmpro_msgt, $pmpro_requirebilling, $pmpro_level, $pmpro_levels, $tospage, $pmpro_show_discount_code, $pmpro_error_fields;
3
- global $discount_code, $username, $password, $password2, $bfirstname, $blastname, $baddress1, $baddress2, $bcity, $bstate, $bzipcode, $bcountry, $bphone, $bemail, $bconfirmemail, $CardType, $AccountNumber, $ExpirationMonth,$ExpirationYear;
 
 
 
 
 
 
 
 
 
4
  ?>
5
  <div id="pmpro_level-<?php echo $pmpro_level->id; ?>">
6
  <form id="pmpro_form" class="pmpro_form" action="<?php if(!empty($_REQUEST['review'])) echo pmpro_url("checkout", "?level=" . $pmpro_level->id); ?>" method="post">
7
 
8
- <input type="hidden" id="level" name="level" value="<?php echo esc_attr($pmpro_level->id) ?>" />
9
- <input type="hidden" id="checkjavascript" name="checkjavascript" value="1" />
10
-
11
- <?php if($pmpro_msg)
12
  {
13
  ?>
14
  <div id="pmpro_message" class="pmpro_message <?php echo $pmpro_msgt?>"><?php echo $pmpro_msg?></div>
@@ -21,31 +30,31 @@
21
  <?php
22
  }
23
  ?>
24
-
25
  <?php if($pmpro_review) { ?>
26
  <p><?php _e('Almost done. Review the membership information and pricing below then <strong>click the "Complete Payment" button</strong> to finish your order.', 'pmpro');?></p>
27
  <?php } ?>
28
-
29
  <table id="pmpro_pricing_fields" class="pmpro_checkout" width="100%" cellpadding="0" cellspacing="0" border="0">
30
  <thead>
31
  <tr>
32
  <th>
33
  <?php if(count($pmpro_levels) > 1) { ?><span class="pmpro_thead-msg"><a href="<?php echo pmpro_url("levels"); ?>"><?php _e('change', 'pmpro');?></a></span><?php } ?><?php _e('Membership Level', 'pmpro');?>
34
- </th>
35
  </tr>
36
  </thead>
37
- <tbody>
38
  <tr>
39
- <td>
40
  <p>
41
  <?php printf(__('You have selected the <strong>%s</strong> membership level.', 'pmpro'), $pmpro_level->name);?>
42
  </p>
43
-
44
  <?php
45
  if(!empty($pmpro_level->description))
46
  echo apply_filters("the_content", stripslashes($pmpro_level->description));
47
  ?>
48
-
49
  <div id="pmpro_level_cost">
50
  <?php if($discount_code && pmpro_checkDiscountCode($discount_code)) { ?>
51
  <?php printf(__('<p class="pmpro_level_discount_applied">The <strong>%s</strong> code has been applied to your order.</p>', 'pmpro'), $discount_code);?>
@@ -53,11 +62,11 @@
53
  <?php echo wpautop(pmpro_getLevelCost($pmpro_level)); ?>
54
  <?php echo wpautop(pmpro_getLevelExpiration($pmpro_level)); ?>
55
  </div>
56
-
57
- <?php do_action("pmpro_checkout_after_level_cost"); ?>
58
-
59
  <?php if($pmpro_show_discount_code) { ?>
60
-
61
  <?php if($discount_code && !$pmpro_review) { ?>
62
  <p id="other_discount_code_p" class="pmpro_small"><a id="other_discount_code_a" href="#discount_code"><?php _e('Click here to change your discount code', 'pmpro');?></a>.</p>
63
  <?php } elseif(!$pmpro_review) { ?>
@@ -65,7 +74,7 @@
65
  <?php } elseif($pmpro_review && $discount_code) { ?>
66
  <p><strong><?php _e('Discount Code', 'pmpro');?>:</strong> <?php echo $discount_code?></p>
67
  <?php } ?>
68
-
69
  <?php } ?>
70
  </td>
71
  </tr>
@@ -74,25 +83,25 @@
74
  <td>
75
  <div>
76
  <label for="other_discount_code"><?php _e('Discount Code', 'pmpro');?></label>
77
- <input id="other_discount_code" name="other_discount_code" type="text" class="input <?php echo pmpro_getClassForField("other_discount_code");?>" size="20" value="<?php echo esc_attr($discount_code)?>" />
78
- <input type="button" name="other_discount_code_button" id="other_discount_code_button" value="<?php _e('Apply', 'pmpro');?>" />
79
- </div>
80
  </td>
81
  </tr>
82
  <?php } ?>
83
  </tbody>
84
  </table>
85
-
86
  <?php if($pmpro_show_discount_code) { ?>
87
  <script>
88
  //update discount code link to show field at top of form
89
  jQuery('#other_discount_code_a').attr('href', 'javascript:void(0);');
90
  jQuery('#other_discount_code_a').click(function() {
91
  jQuery('#other_discount_code_tr').show();
92
- jQuery('#other_discount_code_p').hide();
93
  jQuery('#other_discount_code').focus();
94
  });
95
-
96
  //update real discount code field as the other discount code field is updated
97
  jQuery('#other_discount_code').keyup(function() {
98
  jQuery('#discount_code').val(jQuery('#other_discount_code').val());
@@ -100,7 +109,7 @@
100
  jQuery('#other_discount_code').blur(function() {
101
  jQuery('#discount_code').val(jQuery('#other_discount_code').val());
102
  });
103
-
104
  //update other discount code field as the real discount code field is updated
105
  jQuery('#discount_code').keyup(function() {
106
  jQuery('#other_discount_code').val(jQuery('#discount_code').val());
@@ -108,27 +117,27 @@
108
  jQuery('#discount_code').blur(function() {
109
  jQuery('#other_discount_code').val(jQuery('#discount_code').val());
110
  });
111
-
112
  //applying a discount code
113
  jQuery('#other_discount_code_button').click(function() {
114
  var code = jQuery('#other_discount_code').val();
115
  var level_id = jQuery('#level').val();
116
-
117
  if(code)
118
- {
119
  //hide any previous message
120
  jQuery('.pmpro_discount_code_msg').hide();
121
-
122
  //disable the apply button
123
- jQuery('#other_discount_code_button').attr('disabled', 'disabled');
124
-
125
  jQuery.ajax({
126
  url: '<?php echo admin_url('admin-ajax.php')?>',type:'GET',timeout:<?php echo apply_filters("pmpro_ajax_timeout", 5000, "applydiscountcode");?>,
127
  dataType: 'html',
128
  data: "action=applydiscountcode&code=" + code + "&level=" + level_id + "&msgfield=pmpro_message",
129
  error: function(xml){
130
  alert('Error applying discount code [1]');
131
-
132
  //enable apply button
133
  jQuery('#other_discount_code_button').removeAttr('disabled');
134
  },
@@ -140,54 +149,54 @@
140
  else
141
  {
142
  jQuery('#pmpro_message').html(responseHTML);
143
- }
144
-
145
  //enable invite button
146
- jQuery('#other_discount_code_button').removeAttr('disabled');
147
  }
148
  });
149
- }
150
  });
151
  </script>
152
  <?php } ?>
153
-
154
  <?php
155
  do_action('pmpro_checkout_after_pricing_fields');
156
  ?>
157
-
158
  <?php if(!$skip_account_fields && !$pmpro_review) { ?>
159
  <table id="pmpro_user_fields" class="pmpro_checkout" width="100%" cellpadding="0" cellspacing="0" border="0">
160
  <thead>
161
  <tr>
162
  <th>
163
  <span class="pmpro_thead-msg"><?php _e('Already have an account?', 'pmpro');?> <a href="<?php echo wp_login_url(pmpro_url("checkout", "?level=" . $pmpro_level->id))?>"><?php _e('Log in here', 'pmpro');?></a>.</span><?php _e('Account Information', 'pmpro');?>
164
- </th>
165
  </tr>
166
  </thead>
167
- <tbody>
168
  <tr>
169
  <td>
170
  <div>
171
  <label for="username"><?php _e('Username', 'pmpro');?></label>
172
- <input id="username" name="username" type="text" class="input <?php echo pmpro_getClassForField("username");?>" size="30" value="<?php echo esc_attr($username)?>" />
173
  </div>
174
-
175
  <?php
176
  do_action('pmpro_checkout_after_username');
177
  ?>
178
-
179
  <div>
180
  <label for="password"><?php _e('Password', 'pmpro');?></label>
181
- <input id="password" name="password" type="password" class="input <?php echo pmpro_getClassForField("password");?>" size="30" value="<?php echo esc_attr($password)?>" />
182
  </div>
183
  <?php
184
- $pmpro_checkout_confirm_password = apply_filters("pmpro_checkout_confirm_password", true);
185
  if($pmpro_checkout_confirm_password)
186
  {
187
  ?>
188
  <div>
189
  <label for="password2"><?php _e('Confirm Password', 'pmpro');?></label>
190
- <input id="password2" name="password2" type="password" class="input <?php echo pmpro_getClassForField("password2");?>" size="30" value="<?php echo esc_attr($password2)?>" />
191
  </div>
192
  <?php
193
  }
@@ -198,25 +207,25 @@
198
  <?php
199
  }
200
  ?>
201
-
202
  <?php
203
  do_action('pmpro_checkout_after_password');
204
  ?>
205
-
206
  <div>
207
  <label for="bemail"><?php _e('E-mail Address', 'pmpro');?></label>
208
- <input id="bemail" name="bemail" type="text" class="input <?php echo pmpro_getClassForField("bemail");?>" size="30" value="<?php echo esc_attr($bemail)?>" />
209
  </div>
210
  <?php
211
- $pmpro_checkout_confirm_email = apply_filters("pmpro_checkout_confirm_email", true);
212
  if($pmpro_checkout_confirm_email)
213
  {
214
  ?>
215
  <div>
216
  <label for="bconfirmemail"><?php _e('Confirm E-mail Address', 'pmpro');?></label>
217
- <input id="bconfirmemail" name="bconfirmemail" type="text" class="input <?php echo pmpro_getClassForField("bconfirmemail");?>" size="30" value="<?php echo esc_attr($bconfirmemail)?>" />
218
 
219
- </div>
220
  <?php
221
  }
222
  else
@@ -225,50 +234,50 @@
225
  <input type="hidden" name="bconfirmemail_copy" value="1" />
226
  <?php
227
  }
228
- ?>
229
-
230
  <?php
231
  do_action('pmpro_checkout_after_email');
232
  ?>
233
-
234
  <div class="pmpro_hidden">
235
  <label for="fullname"><?php _e('Full Name', 'pmpro');?></label>
236
  <input id="fullname" name="fullname" type="text" class="input <?php echo pmpro_getClassForField("fullname");?>" size="30" value="" /> <strong><?php _e('LEAVE THIS BLANK', 'pmpro');?></strong>
237
- </div>
238
 
239
  <div class="pmpro_captcha">
240
- <?php
241
- global $recaptcha, $recaptcha_publickey;
242
- if($recaptcha == 2 || ($recaptcha == 1 && pmpro_isLevelFree($pmpro_level)))
243
- {
244
- echo pmpro_recaptcha_get_html($recaptcha_publickey, NULL, true);
245
- }
246
- ?>
247
  </div>
248
-
249
  <?php
250
  do_action('pmpro_checkout_after_captcha');
251
  ?>
252
-
253
  </td>
254
  </tr>
255
  </tbody>
256
- </table>
257
- <?php } elseif($current_user->ID && !$pmpro_review) { ?>
258
-
259
  <p id="pmpro_account_loggedin">
260
- <?php printf(__('You are logged in as <strong>%s</strong>. If you would like to use a different account for this membership, <a href="%s">log out now</a>.', 'pmpro'), $current_user->user_login, wp_logout_url($_SERVER['REQUEST_URI'])); ?>
261
  </p>
262
  <?php } ?>
263
-
264
  <?php
265
  do_action('pmpro_checkout_after_user_fields');
266
  ?>
267
-
268
  <?php
269
  do_action('pmpro_checkout_boxes');
270
- ?>
271
-
272
  <?php if(pmpro_getGateway() == "paypal" && empty($pmpro_review)) { ?>
273
  <table id="pmpro_payment_method" class="pmpro_checkout top1em" width="100%" cellpadding="0" cellspacing="0" border="0" <?php if(!$pmpro_requirebilling) { ?>style="display: none;"<?php } ?>>
274
  <thead>
@@ -283,15 +292,15 @@
283
  <input type="radio" name="gateway" value="paypal" <?php if(!$gateway || $gateway == "paypal") { ?>checked="checked"<?php } ?> />
284
  <a href="javascript:void(0);" class="pmpro_radio"><?php _e('Check Out with a Credit Card Here', 'pmpro');?></a> &nbsp;
285
  <input type="radio" name="gateway" value="paypalexpress" <?php if($gateway == "paypalexpress") { ?>checked="checked"<?php } ?> />
286
- <a href="javascript:void(0);" class="pmpro_radio"><?php _e('Check Out with PayPal', 'pmpro');?></a> &nbsp;
287
  </div>
288
  </td>
289
  </tr>
290
  </tbody>
291
  </table>
292
  <?php } ?>
293
-
294
- <?php
295
  $pmpro_include_billing_address_fields = apply_filters('pmpro_include_billing_address_fields', true);
296
  if($pmpro_include_billing_address_fields)
297
  {
@@ -307,21 +316,21 @@
307
  <td>
308
  <div>
309
  <label for="bfirstname"><?php _e('First Name', 'pmpro');?></label>
310
- <input id="bfirstname" name="bfirstname" type="text" class="input <?php echo pmpro_getClassForField("bfirstname");?>" size="30" value="<?php echo esc_attr($bfirstname)?>" />
311
- </div>
312
  <div>
313
  <label for="blastname"><?php _e('Last Name', 'pmpro');?></label>
314
- <input id="blastname" name="blastname" type="text" class="input <?php echo pmpro_getClassForField("blastname");?>" size="30" value="<?php echo esc_attr($blastname)?>" />
315
- </div>
316
  <div>
317
  <label for="baddress1"><?php _e('Address 1', 'pmpro');?></label>
318
- <input id="baddress1" name="baddress1" type="text" class="input <?php echo pmpro_getClassForField("baddress1");?>" size="30" value="<?php echo esc_attr($baddress1)?>" />
319
  </div>
320
  <div>
321
  <label for="baddress2"><?php _e('Address 2', 'pmpro');?></label>
322
  <input id="baddress2" name="baddress2" type="text" class="input <?php echo pmpro_getClassForField("baddress2");?>" size="30" value="<?php echo esc_attr($baddress2)?>" />
323
  </div>
324
-
325
  <?php
326
  $longform_address = apply_filters("pmpro_longform_address", true);
327
  if($longform_address)
@@ -329,16 +338,16 @@
329
  ?>
330
  <div>
331
  <label for="bcity"><?php _e('City', 'pmpro');?></label>
332
- <input id="bcity" name="bcity" type="text" class="input <?php echo pmpro_getClassForField("bcity");?>" size="30" value="<?php echo esc_attr($bcity)?>" />
333
  </div>
334
  <div>
335
- <label for="bstate"><?php _e('State', 'pmpro');?></label>
336
- <input id="bstate" name="bstate" type="text" class="input <?php echo pmpro_getClassForField("bstate");?>" size="30" value="<?php echo esc_attr($bstate)?>" />
337
  </div>
338
  <div>
339
  <label for="bzipcode"><?php _e('Postal Code', 'pmpro');?></label>
340
- <input id="bzipcode" name="bzipcode" type="text" class="input <?php echo pmpro_getClassForField("bzipcode");?>" size="30" value="<?php echo esc_attr($bzipcode)?>" />
341
- </div>
342
  <?php
343
  }
344
  else
@@ -346,18 +355,18 @@
346
  ?>
347
  <div>
348
  <label for="bcity_state_zip"><?php _e('City, State Zip', 'pmpro');?></label>
349
- <input id="bcity" name="bcity" type="text" class="input <?php echo pmpro_getClassForField("bcity");?>" size="14" value="<?php echo esc_attr($bcity)?>" />,
350
  <?php
351
- $state_dropdowns = apply_filters("pmpro_state_dropdowns", false);
352
  if($state_dropdowns === true || $state_dropdowns == "names")
353
  {
354
  global $pmpro_states;
355
  ?>
356
  <select name="bstate" class=" <?php echo pmpro_getClassForField("bstate");?>">
357
  <option value="">--</option>
358
- <?php
359
- foreach($pmpro_states as $ab => $st)
360
- {
361
  ?>
362
  <option value="<?php echo esc_attr($ab);?>" <?php if($ab == $bstate) { ?>selected="selected"<?php } ?>><?php echo $st;?></option>
363
  <?php } ?>
@@ -370,9 +379,9 @@
370
  ?>
371
  <select name="bstate" class=" <?php echo pmpro_getClassForField("bstate");?>">
372
  <option value="">--</option>
373
- <?php
374
- foreach($pmpro_states_abbreviations as $ab)
375
- {
376
  ?>
377
  <option value="<?php echo esc_attr($ab);?>" <?php if($ab == $bstate) { ?>selected="selected"<?php } ?>><?php echo $ab;?></option>
378
  <?php } ?>
@@ -381,17 +390,17 @@
381
  }
382
  else
383
  {
384
- ?>
385
- <input id="bstate" name="bstate" type="text" class="input <?php echo pmpro_getClassForField("bstate");?>" size="2" value="<?php echo esc_attr($bstate)?>" />
386
  <?php
387
  }
388
  ?>
389
- <input id="bzipcode" name="bzipcode" type="text" class="input <?php echo pmpro_getClassForField("bzipcode");?>" size="5" value="<?php echo esc_attr($bzipcode)?>" />
390
  </div>
391
  <?php
392
  }
393
  ?>
394
-
395
  <?php
396
  $show_country = apply_filters("pmpro_international_addresses", true);
397
  if($show_country)
@@ -405,7 +414,7 @@
405
  if(!$bcountry)
406
  $bcountry = $pmpro_default_country;
407
  foreach($pmpro_countries as $abbr => $country)
408
- {
409
  ?>
410
  <option value="<?php echo $abbr?>" <?php if($abbr == $bcountry) { ?>selected="selected"<?php } ?>><?php echo $country?></option>
411
  <?php
@@ -424,32 +433,32 @@
424
  ?>
425
  <div>
426
  <label for="bphone"><?php _e('Phone', 'pmpro');?></label>
427
- <input id="bphone" name="bphone" type="text" class="input <?php echo pmpro_getClassForField("bphone");?>" size="30" value="<?php echo esc_attr(formatPhone($bphone))?>" />
428
- </div>
429
  <?php if($skip_account_fields) { ?>
430
  <?php
431
  if($current_user->ID)
432
  {
433
- if(!$bemail && $current_user->user_email)
434
  $bemail = $current_user->user_email;
435
- if(!$bconfirmemail && $current_user->user_email)
436
- $bconfirmemail = $current_user->user_email;
437
  }
438
  ?>
439
  <div>
440
  <label for="bemail"><?php _e('E-mail Address', 'pmpro');?></label>
441
- <input id="bemail" name="bemail" type="text" class="input <?php echo pmpro_getClassForField("bemail");?>" size="30" value="<?php echo esc_attr($bemail)?>" />
442
  </div>
443
  <?php
444
- $pmpro_checkout_confirm_email = apply_filters("pmpro_checkout_confirm_email", true);
445
  if($pmpro_checkout_confirm_email)
446
  {
447
  ?>
448
  <div>
449
  <label for="bconfirmemail"><?php _e('Confirm E-mail', 'pmpro');?></label>
450
- <input id="bconfirmemail" name="bconfirmemail" type="text" class="input <?php echo pmpro_getClassForField("bconfirmemail");?>" size="30" value="<?php echo esc_attr($bconfirmemail)?>" />
451
 
452
- </div>
453
  <?php
454
  }
455
  else
@@ -459,22 +468,22 @@
459
  <?php
460
  }
461
  ?>
462
- <?php } ?>
463
- </td>
464
- </tr>
465
  </tbody>
466
- </table>
467
  <?php } ?>
468
-
469
  <?php do_action("pmpro_checkout_after_billing_fields"); ?>
470
-
471
  <?php
472
  $pmpro_accepted_credit_cards = pmpro_getOption("accepted_credit_cards");
473
  $pmpro_accepted_credit_cards = explode(",", $pmpro_accepted_credit_cards);
474
- $pmpro_accepted_credit_cards_string = pmpro_implodeToEnglish($pmpro_accepted_credit_cards);
475
  ?>
476
-
477
- <?php
478
  $pmpro_include_payment_information_fields = apply_filters("pmpro_include_payment_information_fields", true);
479
  if($pmpro_include_payment_information_fields)
480
  {
@@ -485,22 +494,22 @@
485
  <th><span class="pmpro_thead-msg"><?php printf(__('We Accept %s', 'pmpro'), $pmpro_accepted_credit_cards_string);?></span><?php _e('Payment Information', 'pmpro');?></th>
486
  </tr>
487
  </thead>
488
- <tbody>
489
- <tr valign="top">
490
- <td>
491
  <?php
492
  $sslseal = pmpro_getOption("sslseal");
493
  if($sslseal)
494
- {
495
  ?>
496
  <div class="pmpro_sslseal"><?php echo stripslashes($sslseal)?></div>
497
  <?php
498
  }
499
  ?>
500
-
501
- <?php
502
  $pmpro_include_cardtype_field = apply_filters('pmpro_include_cardtype_field', false);
503
- if($pmpro_include_cardtype_field)
504
  {
505
  ?>
506
  <div class="pmpro_payment-card-type">
@@ -508,47 +517,47 @@
508
  <select id="CardType" name="CardType" class=" <?php echo pmpro_getClassForField("CardType");?>">
509
  <?php foreach($pmpro_accepted_credit_cards as $cc) { ?>
510
  <option value="<?php echo $cc?>" <?php if($CardType == $cc) { ?>selected="selected"<?php } ?>><?php echo $cc?></option>
511
- <?php } ?>
512
- </select>
513
  </div>
514
- <?php
515
- }
516
  else
517
  {
518
  ?>
519
  <input type="hidden" id="CardType" name="CardType" value="<?php echo esc_attr($CardType);?>" />
520
  <script>
521
- jQuery(document).ready(function() {
522
- jQuery('#AccountNumber').validateCreditCard(function(result) {
523
  var cardtypenames = {
524
- "amex":"American Express",
525
- "diners_club_carte_blanche":"Diners Club Carte Blanche",
526
- "diners_club_international":"Diners Club International",
527
- "discover":"Discover",
528
- "jcb":"JCB",
529
- "laser":"Laser",
530
- "maestro":"Maestro",
531
- "mastercard":"Mastercard",
532
- "visa":"Visa",
533
- "visa_electron":"Visa Electron"
534
  }
535
-
536
  if(result.card_type)
537
  jQuery('#CardType').val(cardtypenames[result.card_type.name]);
538
  else
539
  jQuery('#CardType').val('Unknown Card Type');
540
- });
541
  });
542
  </script>
543
  <?php
544
  }
545
  ?>
546
-
547
  <div class="pmpro_payment-account-number">
548
  <label for="AccountNumber"><?php _e('Card Number', 'pmpro');?></label>
549
- <input id="AccountNumber" name="AccountNumber" class="input <?php echo pmpro_getClassForField("AccountNumber");?>" type="text" size="25" value="<?php echo esc_attr($AccountNumber)?>" data-encrypted-name="number" autocomplete="off" />
550
  </div>
551
-
552
  <div class="pmpro_payment-expiration">
553
  <label for="ExpirationMonth"><?php _e('Expiration Date', 'pmpro');?></label>
554
  <select id="ExpirationMonth" name="ExpirationMonth" class=" <?php echo pmpro_getClassForField("ExpirationMonth");?>">
@@ -573,9 +582,9 @@
573
  <?php
574
  }
575
  ?>
576
- </select>
577
  </div>
578
-
579
  <?php
580
  $pmpro_show_cvv = apply_filters("pmpro_show_cvv", true);
581
  if($pmpro_show_cvv)
@@ -588,7 +597,7 @@
588
  <?php
589
  }
590
  ?>
591
-
592
  <?php if($pmpro_show_discount_code) { ?>
593
  <div class="pmpro_payment-discount-code">
594
  <label for="discount_code"><?php _e('Discount Code', 'pmpro');?></label>
@@ -597,8 +606,8 @@
597
  <p id="discount_code_message" class="pmpro_message" style="display: none;"></p>
598
  </div>
599
  <?php } ?>
600
-
601
- </td>
602
  </tr>
603
  </tbody>
604
  </table>
@@ -608,22 +617,22 @@
608
  jQuery('#discount_code_button').click(function() {
609
  var code = jQuery('#discount_code').val();
610
  var level_id = jQuery('#level').val();
611
-
612
  if(code)
613
- {
614
  //hide any previous message
615
- jQuery('.pmpro_discount_code_msg').hide();
616
-
617
  //disable the apply button
618
  jQuery('#discount_code_button').attr('disabled', 'disabled');
619
-
620
  jQuery.ajax({
621
  url: '<?php echo admin_url('admin-ajax.php')?>',type:'GET',timeout:<?php echo apply_filters("pmpro_ajax_timeout", 5000, "applydiscountcode");?>,
622
  dataType: 'html',
623
  data: "action=applydiscountcode&code=" + code + "&level=" + level_id + "&msgfield=discount_code_message",
624
  error: function(xml){
625
  alert('Error applying discount code [1]');
626
-
627
  //enable apply button
628
  jQuery('#discount_code_button').removeAttr('disabled');
629
  },
@@ -635,27 +644,27 @@
635
  else
636
  {
637
  jQuery('#discount_code_message').html(responseHTML);
638
- }
639
-
640
  //enable invite button
641
- jQuery('#discount_code_button').removeAttr('disabled');
642
  }
643
  });
644
- }
645
  });
646
  </script>
647
-
648
  <?php
649
  if($gateway == "check" && !pmpro_isLevelFree($pmpro_level))
650
  {
651
- $instructions = pmpro_getOption("instructions");
652
  echo '<div class="pmpro_check_instructions">' . wpautop($instructions) . '</div>';
653
  }
654
  ?>
655
-
656
- <?php
657
  if($tospage && !$pmpro_review)
658
- {
659
  ?>
660
  <table id="pmpro_tos_fields" class="pmpro_checkout top1em" width="100%" cellpadding="0" cellspacing="0" border="0">
661
  <thead>
@@ -665,10 +674,10 @@
665
  </thead>
666
  <tbody>
667
  <tr class="odd">
668
- <td>
669
  <div id="pmpro_license">
670
  <?php echo wpautop(do_shortcode($tospage->post_content));?>
671
- </div>
672
  <input type="checkbox" name="tos" value="1" id="tos" /> <label class="pmpro_normal pmpro_clickable" for="tos"><?php printf(__('I agree to the %s', 'pmpro'), $tospage->post_title);?></label>
673
  </td>
674
  </tr>
@@ -677,62 +686,62 @@
677
  <?php
678
  }
679
  ?>
680
-
681
- <?php do_action("pmpro_checkout_after_tos_fields"); ?>
682
-
683
- <?php do_action("pmpro_checkout_before_submit_button"); ?>
684
-
685
  <div class="pmpro_submit">
686
  <?php if($pmpro_review) { ?>
687
-
688
  <span id="pmpro_submit_span">
689
  <input type="hidden" name="confirm" value="1" />
690
  <input type="hidden" name="token" value="<?php echo esc_attr($pmpro_paypal_token)?>" />
691
  <input type="hidden" name="gateway" value="<?php echo esc_attr($gateway); ?>" />
692
  <input type="submit" class="pmpro_btn pmpro_btn-submit-checkout" value="<?php _e('Complete Payment', 'pmpro');?> &raquo;" />
693
  </span>
694
-
695
- <?php } else { ?>
696
-
697
- <?php
698
  $pmpro_checkout_default_submit_button = apply_filters('pmpro_checkout_default_submit_button', true);
699
  if($pmpro_checkout_default_submit_button)
700
  {
701
- ?>
702
  <span id="pmpro_submit_span">
703
- <input type="hidden" name="submit-checkout" value="1" />
704
- <input type="submit" class="pmpro_btn pmpro_btn-submit-checkout" value="<?php if($pmpro_requirebilling) { _e('Submit and Check Out', 'pmpro'); } else { _e('Submit and Confirm', 'pmpro');}?> &raquo;" />
705
  </span>
706
  <?php
707
  }
708
  ?>
709
-
710
  <?php } ?>
711
-
712
  <span id="pmpro_processing_message" style="visibility: hidden;">
713
- <?php
714
  $processing_message = apply_filters("pmpro_processing_message", __("Processing...", "pmpro"));
715
  echo $processing_message;
716
- ?>
717
  </span>
718
- </div>
719
-
720
  </form>
721
 
722
  <?php do_action('pmpro_checkout_after_form'); ?>
723
 
724
  </div> <!-- end pmpro_level-ID -->
725
 
726
- <script>
727
  <!--
728
  // Find ALL <form> tags on your page
729
- jQuery('form').submit(function(){
730
  // On submit disable its submit button
731
  jQuery('input[type=submit]', this).attr('disabled', 'disabled');
732
  jQuery('input[type=image]', this).attr('disabled', 'disabled');
733
- jQuery('#pmpro_processing_message').css('visibility', 'visible');
734
  });
735
-
736
  //iOS Safari fix (see: http://stackoverflow.com/questions/20210093/stop-safari-on-ios7-prompting-to-save-card-data)
737
  var userAgent = window.navigator.userAgent;
738
  if(userAgent.match(/iPad/i) || userAgent.match(/iPhone/i)) {
@@ -743,18 +752,18 @@
743
  try {
744
  jQuery("input[type=password]").prop("type", "hidden");
745
  } catch(ex) {}
746
- }
747
  });
748
  }
749
-
750
  //add required to required fields
751
- jQuery('.pmpro_required').after('<span class="pmpro_asterisk"> *</span>');
752
-
753
  //unhighlight error fields when the user edits them
754
  jQuery('.pmpro_error').bind("change keyup input", function() {
755
  jQuery(this).removeClass('pmpro_error');
756
  });
757
-
758
  //click apply button on enter in discount code box
759
  jQuery('#discount_code').keydown(function (e){
760
  if(e.keyCode == 13){
@@ -762,15 +771,15 @@
762
  jQuery('#discount_code_button').click();
763
  }
764
  });
765
-
766
  //hide apply button if a discount code was passed in
767
  <?php if(!empty($_REQUEST['discount_code'])) {?>
768
  jQuery('#discount_code_button').hide();
769
- jQuery('#discount_code').bind('change keyup', function() {
770
- jQuery('#discount_code_button').show();
771
  });
772
  <?php } ?>
773
-
774
  //click apply button on enter in *other* discount code box
775
  jQuery('#other_discount_code').keydown(function (e){
776
  if(e.keyCode == 13){
1
+ <?php
2
  global $gateway, $pmpro_review, $skip_account_fields, $pmpro_paypal_token, $wpdb, $current_user, $pmpro_msg, $pmpro_msgt, $pmpro_requirebilling, $pmpro_level, $pmpro_levels, $tospage, $pmpro_show_discount_code, $pmpro_error_fields;
3
+ global $discount_code, $username, $password, $password2, $bfirstname, $blastname, $baddress1, $baddress2, $bcity, $bstate, $bzipcode, $bcountry, $bphone, $bemail, $bconfirmemail, $CardType, $AccountNumber, $ExpirationMonth,$ExpirationYear;
4
+
5
+ /**
6
+ * Filter to set if PMPro uses email or text as the type for email field inputs.
7
+ *
8
+ * @since 1.8.4.5
9
+ *
10
+ * @param bool $use_email_type, true to use email type, false to use text type
11
+ */
12
+ $pmpro_email_field_type = apply_filters('pmpro_email_field_type', true);
13
  ?>
14
  <div id="pmpro_level-<?php echo $pmpro_level->id; ?>">
15
  <form id="pmpro_form" class="pmpro_form" action="<?php if(!empty($_REQUEST['review'])) echo pmpro_url("checkout", "?level=" . $pmpro_level->id); ?>" method="post">
16
 
17
+ <input type="hidden" id="level" name="level" value="<?php echo esc_attr($pmpro_level->id) ?>" />
18
+ <input type="hidden" id="checkjavascript" name="checkjavascript" value="1" />
19
+
20
+ <?php if($pmpro_msg)
21
  {
22
  ?>
23
  <div id="pmpro_message" class="pmpro_message <?php echo $pmpro_msgt?>"><?php echo $pmpro_msg?></div>
30
  <?php
31
  }
32
  ?>
33
+
34
  <?php if($pmpro_review) { ?>
35
  <p><?php _e('Almost done. Review the membership information and pricing below then <strong>click the "Complete Payment" button</strong> to finish your order.', 'pmpro');?></p>
36
  <?php } ?>
37
+
38
  <table id="pmpro_pricing_fields" class="pmpro_checkout" width="100%" cellpadding="0" cellspacing="0" border="0">
39
  <thead>
40
  <tr>
41
  <th>
42
  <?php if(count($pmpro_levels) > 1) { ?><span class="pmpro_thead-msg"><a href="<?php echo pmpro_url("levels"); ?>"><?php _e('change', 'pmpro');?></a></span><?php } ?><?php _e('Membership Level', 'pmpro');?>
43
+ </th>
44
  </tr>
45
  </thead>
46
+ <tbody>
47
  <tr>
48
+ <td>
49
  <p>
50
  <?php printf(__('You have selected the <strong>%s</strong> membership level.', 'pmpro'), $pmpro_level->name);?>
51
  </p>
52
+
53
  <?php
54
  if(!empty($pmpro_level->description))
55
  echo apply_filters("the_content", stripslashes($pmpro_level->description));
56
  ?>
57
+
58
  <div id="pmpro_level_cost">
59
  <?php if($discount_code && pmpro_checkDiscountCode($discount_code)) { ?>
60
  <?php printf(__('<p class="pmpro_level_discount_applied">The <strong>%s</strong> code has been applied to your order.</p>', 'pmpro'), $discount_code);?>
62
  <?php echo wpautop(pmpro_getLevelCost($pmpro_level)); ?>
63
  <?php echo wpautop(pmpro_getLevelExpiration($pmpro_level)); ?>
64
  </div>
65
+
66
+ <?php do_action("pmpro_checkout_after_level_cost"); ?>
67
+
68
  <?php if($pmpro_show_discount_code) { ?>
69
+
70
  <?php if($discount_code && !$pmpro_review) { ?>
71
  <p id="other_discount_code_p" class="pmpro_small"><a id="other_discount_code_a" href="#discount_code"><?php _e('Click here to change your discount code', 'pmpro');?></a>.</p>
72
  <?php } elseif(!$pmpro_review) { ?>
74
  <?php } elseif($pmpro_review && $discount_code) { ?>
75
  <p><strong><?php _e('Discount Code', 'pmpro');?>:</strong> <?php echo $discount_code?></p>
76
  <?php } ?>
77
+
78
  <?php } ?>
79
  </td>
80
  </tr>
83
  <td>
84
  <div>
85
  <label for="other_discount_code"><?php _e('Discount Code', 'pmpro');?></label>
86
+ <input id="other_discount_code" name="other_discount_code" type="text" class="input <?php echo pmpro_getClassForField("other_discount_code");?>" size="20" value="<?php echo esc_attr($discount_code)?>" />
87
+ <input type="button" name="other_discount_code_button" id="other_discount_code_button" value="<?php _e('Apply', 'pmpro');?>" />
88
+ </div>
89
  </td>
90
  </tr>
91
  <?php } ?>
92
  </tbody>
93
  </table>
94
+
95
  <?php if($pmpro_show_discount_code) { ?>
96
  <script>
97
  //update discount code link to show field at top of form
98
  jQuery('#other_discount_code_a').attr('href', 'javascript:void(0);');
99
  jQuery('#other_discount_code_a').click(function() {
100
  jQuery('#other_discount_code_tr').show();
101
+ jQuery('#other_discount_code_p').hide();
102
  jQuery('#other_discount_code').focus();
103
  });
104
+
105
  //update real discount code field as the other discount code field is updated
106
  jQuery('#other_discount_code').keyup(function() {
107
  jQuery('#discount_code').val(jQuery('#other_discount_code').val());
109
  jQuery('#other_discount_code').blur(function() {
110
  jQuery('#discount_code').val(jQuery('#other_discount_code').val());
111
  });
112
+
113
  //update other discount code field as the real discount code field is updated
114
  jQuery('#discount_code').keyup(function() {
115
  jQuery('#other_discount_code').val(jQuery('#discount_code').val());
117
  jQuery('#discount_code').blur(function() {
118
  jQuery('#other_discount_code').val(jQuery('#discount_code').val());
119
  });
120
+
121
  //applying a discount code
122
  jQuery('#other_discount_code_button').click(function() {
123
  var code = jQuery('#other_discount_code').val();
124
  var level_id = jQuery('#level').val();
125
+
126
  if(code)
127
+ {
128
  //hide any previous message
129
  jQuery('.pmpro_discount_code_msg').hide();
130
+
131
  //disable the apply button
132
+ jQuery('#other_discount_code_button').attr('disabled', 'disabled');
133
+
134
  jQuery.ajax({
135
  url: '<?php echo admin_url('admin-ajax.php')?>',type:'GET',timeout:<?php echo apply_filters("pmpro_ajax_timeout", 5000, "applydiscountcode");?>,
136
  dataType: 'html',
137
  data: "action=applydiscountcode&code=" + code + "&level=" + level_id + "&msgfield=pmpro_message",
138
  error: function(xml){
139
  alert('Error applying discount code [1]');
140
+
141
  //enable apply button
142
  jQuery('#other_discount_code_button').removeAttr('disabled');
143
  },
149
  else
150
  {
151
  jQuery('#pmpro_message').html(responseHTML);
152
+ }
153
+
154
  //enable invite button
155
+ jQuery('#other_discount_code_button').removeAttr('disabled');
156
  }
157
  });
158
+ }
159
  });
160
  </script>
161
  <?php } ?>
162
+
163
  <?php
164
  do_action('pmpro_checkout_after_pricing_fields');
165
  ?>
166
+
167
  <?php if(!$skip_account_fields && !$pmpro_review) { ?>
168
  <table id="pmpro_user_fields" class="pmpro_checkout" width="100%" cellpadding="0" cellspacing="0" border="0">
169
  <thead>
170
  <tr>
171
  <th>
172
  <span class="pmpro_thead-msg"><?php _e('Already have an account?', 'pmpro');?> <a href="<?php echo wp_login_url(pmpro_url("checkout", "?level=" . $pmpro_level->id))?>"><?php _e('Log in here', 'pmpro');?></a>.</span><?php _e('Account Information', 'pmpro');?>
173
+ </th>
174
  </tr>
175
  </thead>
176
+ <tbody>
177
  <tr>
178
  <td>
179
  <div>
180
  <label for="username"><?php _e('Username', 'pmpro');?></label>
181
+ <input id="username" name="username" type="text" class="input <?php echo pmpro_getClassForField("username");?>" size="30" value="<?php echo esc_attr($username)?>" />
182
  </div>
183
+
184
  <?php
185
  do_action('pmpro_checkout_after_username');
186
  ?>
187
+
188
  <div>
189
  <label for="password"><?php _e('Password', 'pmpro');?></label>
190
+ <input id="password" name="password" type="password" class="input <?php echo pmpro_getClassForField("password");?>" size="30" value="<?php echo esc_attr($password)?>" />
191
  </div>
192
  <?php
193
+ $pmpro_checkout_confirm_password = apply_filters("pmpro_checkout_confirm_password", true);
194
  if($pmpro_checkout_confirm_password)
195
  {
196
  ?>
197
  <div>
198
  <label for="password2"><?php _e('Confirm Password', 'pmpro');?></label>
199
+ <input id="password2" name="password2" type="password" class="input <?php echo pmpro_getClassForField("password2");?>" size="30" value="<?php echo esc_attr($password2)?>" />
200
  </div>
201
  <?php
202
  }
207
  <?php
208
  }
209
  ?>
210
+
211
  <?php
212
  do_action('pmpro_checkout_after_password');
213
  ?>
214
+
215
  <div>
216
  <label for="bemail"><?php _e('E-mail Address', 'pmpro');?></label>
217
+ <input id="bemail" name="bemail" type="<?php echo ($pmpro_email_field_type ? 'email' : 'text'); ?>" class="input <?php echo pmpro_getClassForField("bemail");?>" size="30" value="<?php echo esc_attr($bemail)?>" />
218
  </div>
219
  <?php
220
+ $pmpro_checkout_confirm_email = apply_filters("pmpro_checkout_confirm_email", true);
221
  if($pmpro_checkout_confirm_email)
222
  {
223
  ?>
224
  <div>
225
  <label for="bconfirmemail"><?php _e('Confirm E-mail Address', 'pmpro');?></label>
226
+ <input id="bconfirmemail" name="bconfirmemail" type="<?php echo ($pmpro_email_field_type ? 'email' : 'text'); ?>" class="input <?php echo pmpro_getClassForField("bconfirmemail");?>" size="30" value="<?php echo esc_attr($bconfirmemail)?>" />
227
 
228
+ </div>
229
  <?php
230
  }
231
  else
234
  <input type="hidden" name="bconfirmemail_copy" value="1" />
235
  <?php
236
  }
237
+ ?>
238
+
239
  <?php
240
  do_action('pmpro_checkout_after_email');
241
  ?>
242
+
243
  <div class="pmpro_hidden">
244
  <label for="fullname"><?php _e('Full Name', 'pmpro');?></label>
245
  <input id="fullname" name="fullname" type="text" class="input <?php echo pmpro_getClassForField("fullname");?>" size="30" value="" /> <strong><?php _e('LEAVE THIS BLANK', 'pmpro');?></strong>
246
+ </div>
247
 
248
  <div class="pmpro_captcha">
249
+ <?php
250
+ global $recaptcha, $recaptcha_publickey;
251
+ if($recaptcha == 2 || ($recaptcha == 1 && pmpro_isLevelFree($pmpro_level)))
252
+ {
253
+ echo pmpro_recaptcha_get_html($recaptcha_publickey, NULL, true);
254
+ }
255
+ ?>
256
  </div>
257
+
258
  <?php
259
  do_action('pmpro_checkout_after_captcha');
260
  ?>
261
+
262
  </td>
263
  </tr>
264
  </tbody>
265
+ </table>
266
+ <?php } elseif($current_user->ID && !$pmpro_review) { ?>
267
+
268
  <p id="pmpro_account_loggedin">
269
+ <?php printf(__('You are logged in as <strong>%s</strong>. If you would like to use a different account for this membership, <a href="%s">log out now</a>.', 'pmpro'), $current_user->user_login, wp_logout_url($_SERVER['REQUEST_URI'])); ?>
270
  </p>
271
  <?php } ?>
272
+
273
  <?php
274
  do_action('pmpro_checkout_after_user_fields');
275
  ?>
276
+
277
  <?php
278
  do_action('pmpro_checkout_boxes');
279
+ ?>
280
+
281
  <?php if(pmpro_getGateway() == "paypal" && empty($pmpro_review)) { ?>
282
  <table id="pmpro_payment_method" class="pmpro_checkout top1em" width="100%" cellpadding="0" cellspacing="0" border="0" <?php if(!$pmpro_requirebilling) { ?>style="display: none;"<?php } ?>>
283
  <thead>
292
  <input type="radio" name="gateway" value="paypal" <?php if(!$gateway || $gateway == "paypal") { ?>checked="checked"<?php } ?> />
293
  <a href="javascript:void(0);" class="pmpro_radio"><?php _e('Check Out with a Credit Card Here', 'pmpro');?></a> &nbsp;
294
  <input type="radio" name="gateway" value="paypalexpress" <?php if($gateway == "paypalexpress") { ?>checked="checked"<?php } ?> />
295
+ <a href="javascript:void(0);" class="pmpro_radio"><?php _e('Check Out with PayPal', 'pmpro');?></a> &nbsp;
296
  </div>
297
  </td>
298
  </tr>
299
  </tbody>
300
  </table>
301
  <?php } ?>
302
+
303
+ <?php
304
  $pmpro_include_billing_address_fields = apply_filters('pmpro_include_billing_address_fields', true);
305
  if($pmpro_include_billing_address_fields)
306
  {
316
  <td>
317
  <div>
318
  <label for="bfirstname"><?php _e('First Name', 'pmpro');?></label>
319
+ <input id="bfirstname" name="bfirstname" type="text" class="input <?php echo pmpro_getClassForField("bfirstname");?>" size="30" value="<?php echo esc_attr($bfirstname)?>" />
320
+ </div>
321
  <div>
322
  <label for="blastname"><?php _e('Last Name', 'pmpro');?></label>
323
+ <input id="blastname" name="blastname" type="text" class="input <?php echo pmpro_getClassForField("blastname");?>" size="30" value="<?php echo esc_attr($blastname)?>" />
324
+ </div>
325
  <div>
326
  <label for="baddress1"><?php _e('Address 1', 'pmpro');?></label>
327
+ <input id="baddress1" name="baddress1" type="text" class="input <?php echo pmpro_getClassForField("baddress1");?>" size="30" value="<?php echo esc_attr($baddress1)?>" />
328
  </div>
329
  <div>
330
  <label for="baddress2"><?php _e('Address 2', 'pmpro');?></label>
331
  <input id="baddress2" name="baddress2" type="text" class="input <?php echo pmpro_getClassForField("baddress2");?>" size="30" value="<?php echo esc_attr($baddress2)?>" />
332
  </div>
333
+
334
  <?php
335
  $longform_address = apply_filters("pmpro_longform_address", true);
336
  if($longform_address)
338
  ?>
339
  <div>
340
  <label for="bcity"><?php _e('City', 'pmpro');?></label>
341
+ <input id="bcity" name="bcity" type="text" class="input <?php echo pmpro_getClassForField("bcity");?>" size="30" value="<?php echo esc_attr($bcity)?>" />
342
  </div>
343
  <div>
344
+ <label for="bstate"><?php _e('State', 'pmpro');?></label>
345
+ <input id="bstate" name="bstate" type="text" class="input <?php echo pmpro_getClassForField("bstate");?>" size="30" value="<?php echo esc_attr($bstate)?>" />
346
  </div>
347
  <div>
348
  <label for="bzipcode"><?php _e('Postal Code', 'pmpro');?></label>
349
+ <input id="bzipcode" name="bzipcode" type="text" class="input <?php echo pmpro_getClassForField("bzipcode");?>" size="30" value="<?php echo esc_attr($bzipcode)?>" />
350
+ </div>
351
  <?php
352
  }
353
  else
355
  ?>
356
  <div>
357
  <label for="bcity_state_zip"><?php _e('City, State Zip', 'pmpro');?></label>
358
+ <input id="bcity" name="bcity" type="text" class="input <?php echo pmpro_getClassForField("bcity");?>" size="14" value="<?php echo esc_attr($bcity)?>" />,
359
  <?php
360
+ $state_dropdowns = apply_filters("pmpro_state_dropdowns", false);
361
  if($state_dropdowns === true || $state_dropdowns == "names")
362
  {
363
  global $pmpro_states;
364
  ?>
365
  <select name="bstate" class=" <?php echo pmpro_getClassForField("bstate");?>">
366
  <option value="">--</option>
367
+ <?php
368
+ foreach($pmpro_states as $ab => $st)
369
+ {
370
  ?>
371
  <option value="<?php echo esc_attr($ab);?>" <?php if($ab == $bstate) { ?>selected="selected"<?php } ?>><?php echo $st;?></option>
372
  <?php } ?>
379
  ?>
380
  <select name="bstate" class=" <?php echo pmpro_getClassForField("bstate");?>">
381
  <option value="">--</option>
382
+ <?php
383
+ foreach($pmpro_states_abbreviations as $ab)
384
+ {
385
  ?>
386
  <option value="<?php echo esc_attr($ab);?>" <?php if($ab == $bstate) { ?>selected="selected"<?php } ?>><?php echo $ab;?></option>
387
  <?php } ?>
390
  }
391
  else
392
  {
393
+ ?>
394
+ <input id="bstate" name="bstate" type="text" class="input <?php echo pmpro_getClassForField("bstate");?>" size="2" value="<?php echo esc_attr($bstate)?>" />
395
  <?php
396
  }
397
  ?>
398
+ <input id="bzipcode" name="bzipcode" type="text" class="input <?php echo pmpro_getClassForField("bzipcode");?>" size="5" value="<?php echo esc_attr($bzipcode)?>" />
399
  </div>
400
  <?php
401
  }
402
  ?>
403
+
404
  <?php
405
  $show_country = apply_filters("pmpro_international_addresses", true);
406
  if($show_country)
414
  if(!$bcountry)
415
  $bcountry = $pmpro_default_country;
416
  foreach($pmpro_countries as $abbr => $country)
417
+ {
418
  ?>
419
  <option value="<?php echo $abbr?>" <?php if($abbr == $bcountry) { ?>selected="selected"<?php } ?>><?php echo $country?></option>
420
  <?php
433
  ?>
434
  <div>
435
  <label for="bphone"><?php _e('Phone', 'pmpro');?></label>
436
+ <input id="bphone" name="bphone" type="text" class="input <?php echo pmpro_getClassForField("bphone");?>" size="30" value="<?php echo esc_attr(formatPhone($bphone))?>" />
437
+ </div>
438
  <?php if($skip_account_fields) { ?>
439
  <?php
440
  if($current_user->ID)
441
  {
442
+ if(!$bemail && $current_user->user_email)
443
  $bemail = $current_user->user_email;
444
+ if(!$bconfirmemail && $current_user->user_email)
445
+ $bconfirmemail = $current_user->user_email;
446
  }
447
  ?>
448
  <div>
449
  <label for="bemail"><?php _e('E-mail Address', 'pmpro');?></label>
450
+ <input id="bemail" name="bemail" type="<?php echo ($pmpro_email_field_type ? 'email' : 'text'); ?>" class="input <?php echo pmpro_getClassForField("bemail");?>" size="30" value="<?php echo esc_attr($bemail)?>" />
451
  </div>
452
  <?php
453
+ $pmpro_checkout_confirm_email = apply_filters("pmpro_checkout_confirm_email", true);
454
  if($pmpro_checkout_confirm_email)
455
  {
456
  ?>
457
  <div>
458
  <label for="bconfirmemail"><?php _e('Confirm E-mail', 'pmpro');?></label>
459
+ <input id="bconfirmemail" name="bconfirmemail" type="<?php echo ($pmpro_email_field_type ? 'email' : 'text'); ?>" class="input <?php echo pmpro_getClassForField("bconfirmemail");?>" size="30" value="<?php echo esc_attr($bconfirmemail)?>" />
460
 
461
+ </div>
462
  <?php
463
  }
464
  else
468
  <?php
469
  }
470
  ?>
471
+ <?php } ?>
472
+ </td>
473
+ </tr>
474
  </tbody>
475
+ </table>
476
  <?php } ?>
477
+
478
  <?php do_action("pmpro_checkout_after_billing_fields"); ?>
479
+
480
  <?php
481
  $pmpro_accepted_credit_cards = pmpro_getOption("accepted_credit_cards");
482
  $pmpro_accepted_credit_cards = explode(",", $pmpro_accepted_credit_cards);
483
+ $pmpro_accepted_credit_cards_string = pmpro_implodeToEnglish($pmpro_accepted_credit_cards);
484
  ?>
485
+
486
+ <?php
487
  $pmpro_include_payment_information_fields = apply_filters("pmpro_include_payment_information_fields", true);
488
  if($pmpro_include_payment_information_fields)
489
  {
494
  <th><span class="pmpro_thead-msg"><?php printf(__('We Accept %s', 'pmpro'), $pmpro_accepted_credit_cards_string);?></span><?php _e('Payment Information', 'pmpro');?></th>
495
  </tr>
496
  </thead>
497
+ <tbody>
498
+ <tr valign="top">
499
+ <td>
500
  <?php
501
  $sslseal = pmpro_getOption("sslseal");
502
  if($sslseal)
503
+ {
504
  ?>
505
  <div class="pmpro_sslseal"><?php echo stripslashes($sslseal)?></div>
506
  <?php
507
  }
508
  ?>
509
+
510
+ <?php
511
  $pmpro_include_cardtype_field = apply_filters('pmpro_include_cardtype_field', false);
512
+ if($pmpro_include_cardtype_field)
513
  {
514
  ?>
515
  <div class="pmpro_payment-card-type">
517
  <select id="CardType" name="CardType" class=" <?php echo pmpro_getClassForField("CardType");?>">
518
  <?php foreach($pmpro_accepted_credit_cards as $cc) { ?>
519
  <option value="<?php echo $cc?>" <?php if($CardType == $cc) { ?>selected="selected"<?php } ?>><?php echo $cc?></option>
520
+ <?php } ?>
521
+ </select>
522
  </div>
523
+ <?php
524
+ }
525
  else
526
  {
527
  ?>
528
  <input type="hidden" id="CardType" name="CardType" value="<?php echo esc_attr($CardType);?>" />
529
  <script>
530
+ jQuery(document).ready(function() {
531
+ jQuery('#AccountNumber').validateCreditCard(function(result) {
532
  var cardtypenames = {
533
+ "amex" : "American Express",
534
+ "diners_club_carte_blanche" : "Diners Club Carte Blanche",
535
+ "diners_club_international" : "Diners Club International",
536
+ "discover" : "Discover",
537
+ "jcb" : "JCB",
538
+ "laser" : "Laser",
539
+ "maestro" : "Maestro",
540
+ "mastercard" : "Mastercard",
541
+ "visa" : "Visa",
542
+ "visa_electron" : "Visa Electron"
543
  }
544
+
545
  if(result.card_type)
546
  jQuery('#CardType').val(cardtypenames[result.card_type.name]);
547
  else
548
  jQuery('#CardType').val('Unknown Card Type');
549
+ });
550
  });
551
  </script>
552
  <?php
553
  }
554
  ?>
555
+
556
  <div class="pmpro_payment-account-number">
557
  <label for="AccountNumber"><?php _e('Card Number', 'pmpro');?></label>
558
+ <input id="AccountNumber" name="AccountNumber" class="input <?php echo pmpro_getClassForField("AccountNumber");?>" type="text" size="25" value="<?php echo esc_attr($AccountNumber)?>" data-encrypted-name="number" autocomplete="off" />
559
  </div>
560
+
561
  <div class="pmpro_payment-expiration">
562
  <label for="ExpirationMonth"><?php _e('Expiration Date', 'pmpro');?></label>
563
  <select id="ExpirationMonth" name="ExpirationMonth" class=" <?php echo pmpro_getClassForField("ExpirationMonth");?>">
582
  <?php
583
  }
584
  ?>
585
+ </select>
586
  </div>
587
+
588
  <?php
589
  $pmpro_show_cvv = apply_filters("pmpro_show_cvv", true);
590
  if($pmpro_show_cvv)
597
  <?php
598
  }
599
  ?>
600
+
601
  <?php if($pmpro_show_discount_code) { ?>
602
  <div class="pmpro_payment-discount-code">
603
  <label for="discount_code"><?php _e('Discount Code', 'pmpro');?></label>
606
  <p id="discount_code_message" class="pmpro_message" style="display: none;"></p>
607
  </div>
608
  <?php } ?>
609
+
610
+ </td>
611
  </tr>
612
  </tbody>
613
  </table>
617
  jQuery('#discount_code_button').click(function() {
618
  var code = jQuery('#discount_code').val();
619
  var level_id = jQuery('#level').val();
620
+
621
  if(code)
622
+ {
623
  //hide any previous message
624
+ jQuery('.pmpro_discount_code_msg').hide();
625
+
626
  //disable the apply button
627
  jQuery('#discount_code_button').attr('disabled', 'disabled');
628
+
629
  jQuery.ajax({
630
  url: '<?php echo admin_url('admin-ajax.php')?>',type:'GET',timeout:<?php echo apply_filters("pmpro_ajax_timeout", 5000, "applydiscountcode");?>,
631
  dataType: 'html',
632
  data: "action=applydiscountcode&code=" + code + "&level=" + level_id + "&msgfield=discount_code_message",
633
  error: function(xml){
634
  alert('Error applying discount code [1]');
635
+
636
  //enable apply button
637
  jQuery('#discount_code_button').removeAttr('disabled');
638
  },
644
  else
645
  {
646
  jQuery('#discount_code_message').html(responseHTML);
647
+ }
648
+
649
  //enable invite button
650
+ jQuery('#discount_code_button').removeAttr('disabled');
651
  }
652
  });
653
+ }
654
  });
655
  </script>
656
+
657
  <?php
658
  if($gateway == "check" && !pmpro_isLevelFree($pmpro_level))
659
  {
660
+ $instructions = pmpro_getOption("instructions");
661
  echo '<div class="pmpro_check_instructions">' . wpautop($instructions) . '</div>';
662
  }
663
  ?>
664
+
665
+ <?php
666
  if($tospage && !$pmpro_review)
667
+ {
668
  ?>
669
  <table id="pmpro_tos_fields" class="pmpro_checkout top1em" width="100%" cellpadding="0" cellspacing="0" border="0">
670
  <thead>
674
  </thead>
675
  <tbody>
676
  <tr class="odd">
677
+ <td>
678
  <div id="pmpro_license">
679
  <?php echo wpautop(do_shortcode($tospage->post_content));?>
680
+ </div>
681
  <input type="checkbox" name="tos" value="1" id="tos" /> <label class="pmpro_normal pmpro_clickable" for="tos"><?php printf(__('I agree to the %s', 'pmpro'), $tospage->post_title);?></label>
682
  </td>
683
  </tr>
686
  <?php
687
  }
688
  ?>
689
+
690
+ <?php do_action("pmpro_checkout_after_tos_fields"); ?>
691
+
692
+ <?php do_action("pmpro_checkout_before_submit_button"); ?>
693
+
694
  <div class="pmpro_submit">
695
  <?php if($pmpro_review) { ?>
696
+
697
  <span id="pmpro_submit_span">
698
  <input type="hidden" name="confirm" value="1" />
699
  <input type="hidden" name="token" value="<?php echo esc_attr($pmpro_paypal_token)?>" />
700
  <input type="hidden" name="gateway" value="<?php echo esc_attr($gateway); ?>" />
701
  <input type="submit" class="pmpro_btn pmpro_btn-submit-checkout" value="<?php _e('Complete Payment', 'pmpro');?> &raquo;" />
702
  </span>
703
+
704
+ <?php } else { ?>
705
+
706
+ <?php
707
  $pmpro_checkout_default_submit_button = apply_filters('pmpro_checkout_default_submit_button', true);
708
  if($pmpro_checkout_default_submit_button)
709
  {
710
+ ?>
711
  <span id="pmpro_submit_span">
712
+ <input type="hidden" name="submit-checkout" value="1" />
713
+ <input type="submit" class="pmpro_btn pmpro_btn-submit-checkout" value="<?php if($pmpro_requirebilling) { _e('Submit and Check Out', 'pmpro'); } else { _e('Submit and Confirm', 'pmpro');}?> &raquo;" />
714
  </span>
715
  <?php
716
  }
717
  ?>
718
+
719
  <?php } ?>
720
+
721
  <span id="pmpro_processing_message" style="visibility: hidden;">
722
+ <?php
723
  $processing_message = apply_filters("pmpro_processing_message", __("Processing...", "pmpro"));
724
  echo $processing_message;
725
+ ?>
726
  </span>
727
+ </div>
728
+
729
  </form>
730
 
731
  <?php do_action('pmpro_checkout_after_form'); ?>
732
 
733
  </div> <!-- end pmpro_level-ID -->
734
 
735
+ <script>
736
  <!--
737
  // Find ALL <form> tags on your page
738
+ jQuery('form').submit(function(){
739
  // On submit disable its submit button
740
  jQuery('input[type=submit]', this).attr('disabled', 'disabled');
741
  jQuery('input[type=image]', this).attr('disabled', 'disabled');
742
+ jQuery('#pmpro_processing_message').css('visibility', 'visible');
743
  });
744
+
745
  //iOS Safari fix (see: http://stackoverflow.com/questions/20210093/stop-safari-on-ios7-prompting-to-save-card-data)
746
  var userAgent = window.navigator.userAgent;
747
  if(userAgent.match(/iPad/i) || userAgent.match(/iPhone/i)) {
752
  try {
753
  jQuery("input[type=password]").prop("type", "hidden");
754
  } catch(ex) {}
755
+ }
756
  });
757
  }
758
+
759
  //add required to required fields
760
+ jQuery('.pmpro_required').after('<span class="pmpro_asterisk"> <abbr title="Required Field">*</abbr></span>');
761
+
762
  //unhighlight error fields when the user edits them
763
  jQuery('.pmpro_error').bind("change keyup input", function() {
764
  jQuery(this).removeClass('pmpro_error');
765
  });
766
+
767
  //click apply button on enter in discount code box
768
  jQuery('#discount_code').keydown(function (e){
769
  if(e.keyCode == 13){
771
  jQuery('#discount_code_button').click();
772
  }
773
  });
774
+
775
  //hide apply button if a discount code was passed in
776
  <?php if(!empty($_REQUEST['discount_code'])) {?>
777
  jQuery('#discount_code_button').hide();
778
+ jQuery('#discount_code').bind('change keyup', function() {
779
+ jQuery('#discount_code_button').show();
780
  });
781
  <?php } ?>
782
+
783
  //click apply button on enter in *other* discount code box
784
  jQuery('#other_discount_code').keydown(function (e){
785
  if(e.keyCode == 13){
paid-memberships-pro.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Paid Memberships Pro
4
  Plugin URI: http://www.paidmembershipspro.com
5
  Description: Plugin to Handle Memberships
6
- Version: 1.8.4.4
7
  Author: Stranger Studios
8
  Author URI: http://www.strangerstudios.com
9
  */
@@ -13,7 +13,7 @@ Author URI: http://www.strangerstudios.com
13
  */
14
 
15
  //version constant
16
- define("PMPRO_VERSION", "1.8.4.4");
17
 
18
  //if the session has been started yet, start it (ignore if running from command line)
19
  if(defined('STDIN') )
@@ -42,6 +42,9 @@ require_once(PMPRO_DIR . "/includes/lib/name-parser.php"); //parses "Jason Cole
42
  require_once(PMPRO_DIR . "/includes/functions.php"); //misc functions used by the plugin
43
  require_once(PMPRO_DIR . "/includes/upgradecheck.php"); //database and other updates
44
 
 
 
 
45
  require_once(PMPRO_DIR . "/scheduled/crons.php"); //crons for expiring members, sending expiration emails, etc
46
 
47
  require_once(PMPRO_DIR . "/classes/class.memberorder.php"); //class to process and save orders
@@ -92,6 +95,10 @@ global $wpdb;
92
  if(is_admin())
93
  pmpro_checkForUpgrades();
94
 
 
 
 
 
95
  /*
96
  Definitions
97
  */
3
  Plugin Name: Paid Memberships Pro
4
  Plugin URI: http://www.paidmembershipspro.com
5
  Description: Plugin to Handle Memberships
6
+ Version: 1.8.5
7
  Author: Stranger Studios
8
  Author URI: http://www.strangerstudios.com
9
  */
13
  */
14
 
15
  //version constant
16
+ define("PMPRO_VERSION", "1.8.5");
17
 
18
  //if the session has been started yet, start it (ignore if running from command line)
19
  if(defined('STDIN') )
42
  require_once(PMPRO_DIR . "/includes/functions.php"); //misc functions used by the plugin
43
  require_once(PMPRO_DIR . "/includes/upgradecheck.php"); //database and other updates
44
 
45
+ if(!defined('PMPRO_LICENSE_SERVER'))
46
+ require_once(PMPRO_DIR . "/includes/license.php"); //defines location of addons data and licenses
47
+
48
  require_once(PMPRO_DIR . "/scheduled/crons.php"); //crons for expiring members, sending expiration emails, etc
49
 
50
  require_once(PMPRO_DIR . "/classes/class.memberorder.php"); //class to process and save orders
95
  if(is_admin())
96
  pmpro_checkForUpgrades();
97
 
98
+ //load plugin updater
99
+ if(is_admin())
100
+ require_once(PMPRO_DIR . "/includes/addons.php");
101
+
102
  /*
103
  Definitions
104
  */
preheaders/cancel.php CHANGED
@@ -4,14 +4,17 @@
4
 
5
  global $current_user, $pmpro_msg, $pmpro_msgt, $pmpro_confirm, $pmpro_error;
6
 
 
7
  if($current_user->ID)
8
  $current_user->membership_level = pmpro_getMembershipLevelForUser($current_user->ID);
9
 
10
- //if they don't have a membership, send them back to the subscription page
11
- if(empty($current_user->membership_level->ID)) {
12
  wp_redirect(pmpro_url("levels"));
 
13
  }
14
 
 
15
  if(isset($_REQUEST['confirm']))
16
  $pmpro_confirm = $_REQUEST['confirm'];
17
  else
4
 
5
  global $current_user, $pmpro_msg, $pmpro_msgt, $pmpro_confirm, $pmpro_error;
6
 
7
+ //get level information for current user
8
  if($current_user->ID)
9
  $current_user->membership_level = pmpro_getMembershipLevelForUser($current_user->ID);
10
 
11
+ //if no user or membership level, redirect to levels page
12
+ if(!isset($current_user->membership_level->ID)) {
13
  wp_redirect(pmpro_url("levels"));
14
+ exit;
15
  }
16
 
17
+ //are we confirming a cancellation?
18
  if(isset($_REQUEST['confirm']))
19
  $pmpro_confirm = $_REQUEST['confirm'];
20
  else
preheaders/checkout.php CHANGED
@@ -563,12 +563,14 @@
563
  "last_name" => $last_name)
564
  );
565
 
566
- $user_id = wp_insert_user($new_user_array);
 
 
567
 
568
  if (!$user_id || is_wp_error($user_id)) {
569
  $pmpro_msg = __("Your payment was accepted, but there was an error setting up your account. Please contact us.", "pmpro");
570
  $pmpro_msgt = "pmpro_error";
571
- } else {
572
 
573
  //check pmpro_wp_new_user_notification filter before sending the default WP email
574
  if (apply_filters("pmpro_wp_new_user_notification", true, $user_id, $pmpro_level->id))
563
  "last_name" => $last_name)
564
  );
565
 
566
+ $user_id = apply_filters('pmpro_new_user', '', $new_user_array);
567
+ if (!$user_id)
568
+ $user_id = wp_insert_user($new_user_array);
569
 
570
  if (!$user_id || is_wp_error($user_id)) {
571
  $pmpro_msg = __("Your payment was accepted, but there was an error setting up your account. Please contact us.", "pmpro");
572
  $pmpro_msgt = "pmpro_error";
573
+ } elseif ( apply_filters('pmpro_setup_new_user', true, $user_id, $new_user_array) ) {
574
 
575
  //check pmpro_wp_new_user_notification filter before sending the default WP email
576
  if (apply_filters("pmpro_wp_new_user_notification", true, $user_id, $pmpro_level->id))
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: strangerstudios
3
  Tags: memberships, membership, authorize.net, ecommerce, paypal, stripe, braintree, restrict access, restrict content, directory site, payflow
4
  Requires at least: 3.5
5
- Tested up to: 4.2.2
6
- Stable tag: 1.8.4.4
7
 
8
  The easiest way to GET PAID with your WordPress site. Flexible content control by Membership Level, Reports, Affiliates and Discounts
9
 
@@ -102,6 +102,30 @@ Not sure? You can find out by doing a bit a research.
102
  4. Offer Membership Discounts with specific price rules (restricted by level, unique pricing for each level, # of uses, expiration date.)
103
 
104
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
105
  = 1.8.4.4 =
106
  * BUG: Fixed issue where subscriptions cancelled at Stripe wouldn't cancel the related PMPro membership if the membership was created after updating to v1.8. (Thank, Ninjami-Juho)
107
  * BUG: Now tracking "views" when the wp_head hook is fired instead of the "wp" hook. Previously page redirects and AJAX calls might have been counted as "views". Using wp_head will result in more accurate numbers (compared to something like Google Analytics, e.g.). Also note that the number of views will now be much much lower than before on some sites. (Thanks, Michael Cummings)
2
  Contributors: strangerstudios
3
  Tags: memberships, membership, authorize.net, ecommerce, paypal, stripe, braintree, restrict access, restrict content, directory site, payflow
4
  Requires at least: 3.5
5
+ Tested up to: 4.2.4
6
+ Stable tag: 1.8.5
7
 
8
  The easiest way to GET PAID with your WordPress site. Flexible content control by Membership Level, Reports, Affiliates and Discounts
9
 
102
  4. Offer Membership Discounts with specific price rules (restricted by level, unique pricing for each level, # of uses, expiration date.)
103
 
104
  == Changelog ==
105
+ = 1.8.5 =
106
+ * BUG: Fixed bug where the subscription_transaction_id was not showing up in the orders CSV export.
107
+ * BUG: Fixed bug where gateway subscriptions were not being cancelled when the "cancel at gateway" option was checked when changing a user's level on the edit user page.
108
+ * BUG: Drag and drop for reordering levels has been disabled if there are < 2 levels or if the user is searching the levels list. (Thanks, Isaac Coleman.)
109
+ * BUG: Fixed bug where sales and revenue charts would never show data for the 31st of the month. (Thanks, TYTNetwork)
110
+ * ENHANCEMENT: Now showing the time in date column of on the orders page and in the timestamp column of the orders CSV export.
111
+ * ENHANCEMENT: Added the pmpro_next_payment filter so you can alter how the next payment date is found. Also added a filter to the PayPal Express gateway class, but left it disabled for performance reasons.
112
+ * ENHANCEMENT: Now zeroing out the initial payment and billing amount in pmpro_memberships_users when an order gets cancelled.
113
+ * ENHANCEMENT: Modified how billing information shows up on the edit user page.
114
+ * ENHANCEMENT: Added partial Finnish translations. (Thanks, Onni Hakala)
115
+ * FEATURE: Overhauled the Add Ons page with one click installs and automatic updates of non-WordPress.org add ons for PMPro Plus members.
116
+
117
+ = 1.8.4.5 =
118
+ * BUG: Fixed broken links when adminpages/admin_header.php is loaded outside of the PMPro settings tabs.
119
+ * BUG: Fixed issue with PMPro page templates being loaded from child themes. (Thanks, SeventhQueen)
120
+ * BUG: Fixed bug where gateway subscriptions would sometimes be cancelled even if an admin unchecked the "cancel at gateway" option when changing a user's level on the edit user page. (Thanks, Scott Noelle)
121
+ * ENHANCEMENT: Added debugging to the Braintree webhook. Use define('PMPRO_BRAINTREE_WEBHOOK_DEBUG', true); in your wp-config.php to have debug emails sent to the admin when the Braintree webhook is hit.
122
+ * ENHANCEMENT: Updated email fields on checkout and billing update form to use the "email" field type instead of "text". If you need to revert this back to "text" type, use the pmpro_email_field_type filter like this: apply_filters('pmpro_email_field_type', '__return_false'); (Thanks, Yann Kozon)
123
+ * ENHANCEMENT: French translation updated and now includes email templates. (Thanks, Jean-Christophe Michel)
124
+ * ENHANCEMENT: Added the pmpro_is_ready filter. This should be used by gateway plugins to set the $pmpro_gateway_ready global variable.
125
+ * ENHANCEMENT: Added pmpro_memberslist_per_page and pmpro_orders_per_page filters to change the default number of items to show on those admin pages.
126
+ * ENHANCEMENT: Added pmpro_new_user and pmpro_new_user_setup hooks to allow for alterring the user creation code at checkout. For an example of how to use these see (https://github.com/strangerstudios/paid-memberships-pro/pull/224). (Thanks, David Crabill)
127
+ * ENHANCEMENT: Now setting the Stripe API version in the Stripe class. (Set to version "2015-07-13" right now.) This ensures that Stripe processes PMPro API calls correctly. We will update this to the latest versions as they come out and we test PMPro against them. You will still need to update the API version in the Account Settings of your Stripe dashboard to versio 2015-07-13 (or later as we update the version we work against) so webhook events originating from Stripe are sent out in the correct format.
128
+
129
  = 1.8.4.4 =
130
  * BUG: Fixed issue where subscriptions cancelled at Stripe wouldn't cancel the related PMPro membership if the membership was created after updating to v1.8. (Thank, Ninjami-Juho)
131
  * BUG: Now tracking "views" when the wp_head hook is fired instead of the "wp" hook. Previously page redirects and AJAX calls might have been counted as "views". Using wp_head will result in more accurate numbers (compared to something like Google Analytics, e.g.). Also note that the number of views will now be much much lower than before on some sites. (Thanks, Michael Cummings)
services/braintree-webhook.php CHANGED
@@ -7,6 +7,9 @@
7
  global $isapage;
8
  $isapage = true;
9
 
 
 
 
10
  //in case the file is loaded directly
11
  if(!defined("WP_USE_THEMES"))
12
  {
@@ -22,23 +25,40 @@
22
  $gateway = new PMProGateway_braintree();
23
 
24
  //verify
25
- echo Braintree_WebhookNotification::verify($_REQUEST['bt_challenge']);
 
 
 
26
 
27
  //only verifying?
28
  if(empty($_REQUEST['bt_payload']))
29
- exit;
30
 
31
  //get notification
32
- $webhookNotification = Braintree_WebhookNotification::parse(
33
- $_REQUEST['bt_signature'], $_REQUEST['bt_payload']
34
- );
 
 
 
 
 
 
 
 
 
 
 
35
 
36
  //subscription charged sucessfully
37
  if($webhookNotification->kind == "subscription_charged_successfully")
38
  {
39
  //need a subscription id
40
  if(empty($webhookNotification->subscription->id))
41
- die("No subscription ID.");
 
 
 
42
 
43
  //figure out which order to attach to
44
  $old_order = new MemberOrder();
@@ -46,7 +66,10 @@
46
 
47
  //no order?
48
  if(empty($old_order))
49
- die("Couldn't find the original subscription with ID=" . $webhookNotification->subscription->id . ".");
 
 
 
50
 
51
  //create new order
52
  $user_id = $old_order->user_id;
@@ -54,7 +77,10 @@
54
  $user->membership_level = pmpro_getMembershipLevelForUser($user_id);
55
 
56
  if(empty($user))
57
- die("Couldn't find the old order's user. Order ID = " . $old_order->id . ".");
 
 
 
58
 
59
  //data about this transaction
60
  $transaction = $webhookNotification->transactions[0];
@@ -117,15 +143,20 @@
117
  if($webhookNotification->kind == "subscription_charged_unsuccessfully")
118
  {
119
  //need a subscription id
120
- if(empty($webhookNotification->subscription->id))
121
- die("No subscription ID.");
 
 
122
 
123
  //figure out which order to attach to
124
  $old_order = new MemberOrder();
125
  $old_order->getLastMemberOrderBySubscriptionTransactionID($webhookNotification->subscription->id);
126
 
127
  if(empty($old_order))
128
- die("Couldn't find old order for failed payment with subscription id=" . $webhookNotification->subscription->id);
 
 
 
129
 
130
  $user_id = $old_order->user_id;
131
  $user = get_userdata($user_id);
@@ -170,14 +201,20 @@
170
  {
171
  //need a subscription id
172
  if(empty($webhookNotification->subscription->id))
173
- die("No subscription ID.");
 
 
 
174
 
175
  //figure out which order to attach to
176
  $old_order = new MemberOrder();
177
  $old_order->getLastMemberOrderBySubscriptionTransactionID($webhookNotification->subscription->id);
178
 
179
  if(empty($old_order))
180
- die("Couldn't find old order for failed payment with subscription id=" . $webhookNotification->subscription->id);
 
 
 
181
 
182
  $user_id = $old_order->user_id;
183
  $user = get_userdata($user_id);
@@ -223,14 +260,20 @@
223
  {
224
  //need a subscription id
225
  if(empty($webhookNotification->subscription->id))
226
- die("No subscription ID.");
 
 
 
227
 
228
  //figure out which order to attach to
229
  $old_order = new MemberOrder();
230
  $old_order->getLastMemberOrderBySubscriptionTransactionID($webhookNotification->subscription->id);
231
 
232
  if(empty($old_order))
233
- die("Couldn't find old order for failed payment with subscription id=" . $webhookNotification->subscription->id);
 
 
 
234
 
235
  $user_id = $old_order->user_id;
236
  $user = get_userdata($user_id);
@@ -275,14 +318,20 @@
275
  {
276
  //need a subscription id
277
  if(empty($webhookNotification->subscription->id))
278
- die("No subscription ID.");
 
 
 
279
 
280
  //figure out which order to attach to
281
  $old_order = new MemberOrder();
282
  $old_order->getLastMemberOrderBySubscriptionTransactionID($webhookNotification->subscription->id);
283
 
284
  if(empty($old_order))
285
- die("Couldn't find old order for failed payment with subscription id=" . $webhookNotification->subscription->id);
 
 
 
286
 
287
  $user_id = $old_order->user_id;
288
  $user = get_userdata($user_id);
@@ -320,4 +369,38 @@
320
 
321
  echo "Sent email to the member and site admin. Thanks.";
322
  exit;
323
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  global $isapage;
8
  $isapage = true;
9
 
10
+ global $logstr;
11
+ $logstr = "";
12
+
13
  //in case the file is loaded directly
14
  if(!defined("WP_USE_THEMES"))
15
  {
25
  $gateway = new PMProGateway_braintree();
26
 
27
  //verify
28
+ if(!empty($_REQUEST['bt_challenge']))
29
+ echo Braintree_WebhookNotification::verify($_REQUEST['bt_challenge']);
30
+ else
31
+ $logstr .= "Guessing you are just testing the URL out. Check that the timestamp updates on refresh to make sure this isn't being cached.";
32
 
33
  //only verifying?
34
  if(empty($_REQUEST['bt_payload']))
35
+ pmpro_braintreeWebhookExit();
36
 
37
  //get notification
38
+ try
39
+ {
40
+ $webhookNotification = Braintree_WebhookNotification::parse(
41
+ $_REQUEST['bt_signature'], $_REQUEST['bt_payload']
42
+ );
43
+ }
44
+ catch ( Exception $e )
45
+ {
46
+ {
47
+ $logstr .= "Couldn't get notification with payload " . $_REQUEST['bt_payload'] . ". " . $e->getMessage();
48
+ pmpro_braintreeWebhookExit();
49
+ }
50
+ }
51
+
52
 
53
  //subscription charged sucessfully
54
  if($webhookNotification->kind == "subscription_charged_successfully")
55
  {
56
  //need a subscription id
57
  if(empty($webhookNotification->subscription->id))
58
+ {
59
+ $logstr .= "No subscription ID.";
60
+ pmpro_braintreeWebhookExit();
61
+ }
62
 
63
  //figure out which order to attach to
64
  $old_order = new MemberOrder();
66
 
67
  //no order?
68
  if(empty($old_order))
69
+ {
70
+ $logstr .= "Couldn't find the original subscription with ID=" . $webhookNotification->subscription->id . ".";
71
+ pmpro_braintreeWebhookExit();
72
+ }
73
 
74
  //create new order
75
  $user_id = $old_order->user_id;
77
  $user->membership_level = pmpro_getMembershipLevelForUser($user_id);
78
 
79
  if(empty($user))
80
+ {
81
+ $logstr .= "Couldn't find the old order's user. Order ID = " . $old_order->id . ".";
82
+ pmpro_braintreeWebhookExit();
83
+ }
84
 
85
  //data about this transaction
86
  $transaction = $webhookNotification->transactions[0];
143
  if($webhookNotification->kind == "subscription_charged_unsuccessfully")
144
  {
145
  //need a subscription id
146
+ if(empty($webhookNotification->subscription->id)) {
147
+ $logstr .= "No subscription ID.";
148
+ pmpro_braintreeWebhookExit();
149
+ }
150
 
151
  //figure out which order to attach to
152
  $old_order = new MemberOrder();
153
  $old_order->getLastMemberOrderBySubscriptionTransactionID($webhookNotification->subscription->id);
154
 
155
  if(empty($old_order))
156
+ {
157
+ $logstr .= "Couldn't find old order for failed payment with subscription id=" . $webhookNotification->subscription->id;
158
+ pmpro_braintreeWebhookExit();
159
+ }
160
 
161
  $user_id = $old_order->user_id;
162
  $user = get_userdata($user_id);
201
  {
202
  //need a subscription id
203
  if(empty($webhookNotification->subscription->id))
204
+ {
205
+ $logstr .= "No subscription ID.";
206
+ pmpro_braintreeWebhookExit();
207
+ }
208
 
209
  //figure out which order to attach to
210
  $old_order = new MemberOrder();
211
  $old_order->getLastMemberOrderBySubscriptionTransactionID($webhookNotification->subscription->id);
212
 
213
  if(empty($old_order))
214
+ {
215
+ $logstr .= "Couldn't find old order for failed payment with subscription id=" . $webhookNotification->subscription->id;
216
+ pmpro_braintreeWebhookExit();
217
+ }
218
 
219
  $user_id = $old_order->user_id;
220
  $user = get_userdata($user_id);
260
  {
261
  //need a subscription id
262
  if(empty($webhookNotification->subscription->id))
263
+ {
264
+ $logstr .= "No subscription ID.";
265
+ pmpro_braintreeWebhookExit();
266
+ }
267
 
268
  //figure out which order to attach to
269
  $old_order = new MemberOrder();
270
  $old_order->getLastMemberOrderBySubscriptionTransactionID($webhookNotification->subscription->id);
271
 
272
  if(empty($old_order))
273
+ {
274
+ $logstr .= "Couldn't find old order for failed payment with subscription id=" . $webhookNotification->subscription->id;
275
+ pmpro_braintreeWebhookExit();
276
+ }
277
 
278
  $user_id = $old_order->user_id;
279
  $user = get_userdata($user_id);
318
  {
319
  //need a subscription id
320
  if(empty($webhookNotification->subscription->id))
321
+ {
322
+ $logstr .= "No subscription ID.";
323
+ pmpro_braintreeWebhookExit();
324
+ }
325
 
326
  //figure out which order to attach to
327
  $old_order = new MemberOrder();
328
  $old_order->getLastMemberOrderBySubscriptionTransactionID($webhookNotification->subscription->id);
329
 
330
  if(empty($old_order))
331
+ {
332
+ $logstr .= "Couldn't find old order for failed payment with subscription id=" . $webhookNotification->subscription->id;
333
+ pmpro_braintreeWebhookExit();
334
+ }
335
 
336
  $user_id = $old_order->user_id;
337
  $user = get_userdata($user_id);
369
 
370
  echo "Sent email to the member and site admin. Thanks.";
371
  exit;
372
+ }
373
+
374
+ function pmpro_braintreeWebhookExit()
375
+ {
376
+ global $logstr;
377
+
378
+ //for log
379
+ if($logstr)
380
+ {
381
+ $logstr = "Logged On: " . date("m/d/Y H:i:s") . "\n" . $logstr . "\n-------------\n";
382
+
383
+ echo $logstr;
384
+
385
+ //log in file or email?
386
+ if(defined('PMPRO_BRAINTREE_WEBHOOK_DEBUG') && PMPRO_BRAINTREE_WEBHOOK_DEBUG === "log")
387
+ {
388
+ //file
389
+ $loghandle = fopen(dirname(__FILE__) . "/../logs/braintree-webhook.txt", "a+");
390
+ fwrite($loghandle, $logstr);
391
+ fclose($loghandle);
392
+ }
393
+ elseif(defined('PMPRO_BRAINTREE_WEBHOOK_DEBUG'))
394
+ {
395
+ //email
396
+ if(strpos(PMPRO_BRAINTREE_WEBHOOK_DEBUG, "@"))
397
+ $log_email = PMPRO_BRAINTREE_WEBHOOK_DEBUG; //constant defines a specific email address
398
+ else
399
+ $log_email = get_option("admin_email");
400
+
401
+ wp_mail($log_email, get_option("blogname") . " Braintree Webhook Log", nl2br($logstr));
402
+ }
403
+ }
404
+
405
+ exit;
406
+ }