Paid Memberships Pro - Version 1.9.2.1

Version Description

  • BUG FIX: Fixed issues with activation on single sites.
  • BUG FIX: Starting PHP sessions earlier to fix issues with PayPal/PayPal Express checkouts.
Download this release

Release Info

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

Code changes from version 1.9.1 to 1.9.2.1

CONTRIBUTE.md ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #Contribute to Paid Memberships Pro
2
+
3
+ Paid Memberships Pro is the "community solution" for membership sites on WordPress, and so contributions of all kinds are appreciated.
4
+
5
+ When contributing, please follow these guidelines to ensure things work as smoothly as possible.
6
+
7
+ __Please Note:__ GitHub is for bug reports and contributions only. If you have a support or customization question, go to our [Member Support Page](http://www.paidmembershipspro.com/support/) instead.
8
+
9
+ ## Getting Started
10
+
11
+ * __Do not report potential security vulnerabilities here. Email them privately to [info@paidmembershipspro.com](mailto:info@paidmembershipspro.com) with the words "Security Vulnerability" in the subject.__
12
+ * Submit a ticket for your issue, assuming one does not already exist.
13
+ * Raise it on our [Issue Tracker](https://github.com/strangerstudios/paid-memberships-pro//issues)
14
+ * Clearly describe the issue including steps to reproduce the bug.
15
+ * Make sure you fill in the earliest version that you know has the issue as well as the version of WordPress you're using.
16
+
17
+ ## Making Changes
18
+
19
+ * Fork the repository on GitHub
20
+ * For bug fixes, checkout the latest versioned branch of the PMPro repository (e.g. 1.8.9.3).
21
+ * For new features and enhancements, checkout the DEV branch of the PMPro respository.
22
+ * Make the changes to your forked repository
23
+ * Ensure you stick to the [WordPress Coding Standards](https://codex.wordpress.org/WordPress_Coding_Standards) (even though much of the PMPro code does not currently)
24
+ * When committing, reference your issue (if present) and include a note about the fix
25
+ * Push the changes to your fork
26
+ * For bug fixes, submit a pull request to the latest versioned branch of the PMPro repository (e.g. 1.8.9.3).
27
+ * For new features and enhancements, submit a pull request to the DEV branch of the PMPro repository.
28
+ * We will process all pull requests and make suggestions or changes as soon as possible. Feel free to ping us politely via email or social networks to take a look at your pulls.
29
+
30
+ ## Code Documentation
31
+
32
+ * We would like for every function, filter, class, and class method to be documented using phpDoc standards.
33
+ * An example of [how PMPro uses phpDoc blocks can be found here](https://gist.github.com/sunnyratilal/5308969).
34
+ * Please make sure that every function is documented so that when we update our API Documentation things don't go awry!
35
+ * If you're adding/editing a function in a class, make sure to add `@access {private|public|protected}`
36
+ * Finally, please use tabs and not spaces. The tab indent size should be 4 for all Paid Memberships Pro code.
37
+
38
+ # Additional Resources
39
+ * [General GitHub Documentation](https://help.github.com/)
40
+ * [GitHub Pull Request documentation](https://help.github.com/send-pull-requests/)
adminpages/memberslist-csv.php CHANGED
@@ -161,8 +161,13 @@
161
  $sqlQuery .= "WHERE mu.membership_id > 0 ";
162
 
163
  // looking for a specific user
 
 
164
  if($s)
165
- $sqlQuery .= "AND (u.user_login LIKE '%". esc_sql($s) ."%' OR u.user_email LIKE '%". esc_sql($s) ."%' OR um.meta_value LIKE '%". esc_sql($s) ."%') ";
 
 
 
166
 
167
  // if ($former_members)
168
  // $sqlQuery .= "AND mu2.status = 'active' ";
@@ -295,6 +300,10 @@
295
  {
296
  $i_start += $max_users_per_loop;
297
  }
 
 
 
 
298
 
299
  $userSql = $wpdb->prepare("
300
  SELECT
@@ -319,7 +328,7 @@
319
  LEFT JOIN {$wpdb->pmpro_memberships_users} mu ON u.ID = mu.user_id
320
  LEFT JOIN {$wpdb->pmpro_membership_levels} m ON mu.membership_id = m.id
321
  {$former_member_join}
322
- WHERE u.ID BETWEEN %d AND %d AND mu.membership_id > 0 {$filter}
323
  -- GROUP BY u.ID
324
  ORDER BY u.ID",
325
  $first_uid,
161
  $sqlQuery .= "WHERE mu.membership_id > 0 ";
162
 
163
  // looking for a specific user
164
+ $search = "";
165
+
166
  if($s)
167
+ {
168
+ $search = "AND (u.user_login LIKE '%". esc_sql($s) ."%' OR u.user_email LIKE '%". esc_sql($s) ."%' OR um.meta_value LIKE '%". esc_sql($s) ."%') ";
169
+ $sqlQuery .= $search;
170
+ }
171
 
172
  // if ($former_members)
173
  // $sqlQuery .= "AND mu2.status = 'active' ";
300
  {
301
  $i_start += $max_users_per_loop;
302
  }
303
+
304
+ //escape the % for LIKE comparison with $wpdb
305
+ if(!empty($search))
306
+ $search = str_replace('%', '%%', $search);
307
 
308
  $userSql = $wpdb->prepare("
309
  SELECT
328
  LEFT JOIN {$wpdb->pmpro_memberships_users} mu ON u.ID = mu.user_id
329
  LEFT JOIN {$wpdb->pmpro_membership_levels} m ON mu.membership_id = m.id
330
  {$former_member_join}
331
+ WHERE u.ID BETWEEN %d AND %d AND mu.membership_id > 0 {$filter} {$search}
332
  -- GROUP BY u.ID
333
  ORDER BY u.ID",
334
  $first_uid,
classes/class-deny-network-activation.php ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ defined( 'ABSPATH' ) || die( 'File cannot be accessed directly' );
4
+
5
+ class PMPro_Deny_Network_Activation {
6
+
7
+ public function init() {
8
+ register_activation_hook( PMPRO_BASE_FILE, array( $this, 'pmpro_check_network_activation' ) );
9
+ add_action( 'wp_print_footer_scripts', array( $this, 'wp_admin_style' ) );
10
+ add_action( 'network_admin_notices', array( $this, 'display_message_after_network_activation_attempt' ) );
11
+
12
+ // On the blog list page, show the plugins and theme active on each blog
13
+ add_filter( 'manage_sites-network_columns', array( $this, 'add_sites_column' ), 10, 1 );
14
+ add_action( 'manage_sites_custom_column', array( $this, 'manage_sites_custom_column' ), 10, 3 );
15
+ }
16
+
17
+ public function wp_admin_style() {
18
+ global $current_screen;
19
+ if ( is_admin() && ( 'sites-network' === $current_screen->id || 'plugins-network' === $current_screen->id ) ) {
20
+ ?>
21
+ <style type="text/css">
22
+ .notice.notice-info {
23
+ background-color: #ffd;
24
+ }
25
+ </style>
26
+ <?php
27
+ }
28
+ }
29
+
30
+ public function display_message_after_network_activation_attempt() {
31
+ global $current_screen;
32
+ if ( !empty($_REQUEST['pmpro_deny_network_activation']) && ( 'sites-network' === $current_screen->id || 'plugins-network' === $current_screen->id ) ) {
33
+ //get plugin data
34
+ $plugin = isset($_REQUEST['pmpro_deny_network_activation']) ? $_REQUEST['pmpro_deny_network_activation'] : '';
35
+ $plugin_path = WP_PLUGIN_DIR . '/' . urldecode($plugin);
36
+ $plugin_data = get_plugin_data($plugin_path);
37
+
38
+ if(!empty($plugin_data))
39
+ $plugin_name = $plugin_data['Name'];
40
+ else
41
+ $plugin_name = '';
42
+
43
+ //show notice
44
+ echo '<div class="notice notice-info is-dismissible"><p>';
45
+ $text = sprintf( __("The %s plugin should not be network activated. Activate on each individual site's plugin page.", 'paid-memberships-pro'), $plugin_name);
46
+ echo $text;
47
+ echo '</p></div>';
48
+ }
49
+ }
50
+
51
+ public function pmpro_check_network_activation( $network_wide ) {
52
+ if ( !is_multisite() || !$network_wide ) {
53
+ return;
54
+ }
55
+
56
+ $plugin = isset($_REQUEST['plugin']) ? $_REQUEST['plugin'] : '';
57
+
58
+ deactivate_plugins( $plugin, true, true );
59
+ if ( ! isset( $_REQUEST['pmpro_deny_network_activation']) ) {
60
+ wp_redirect( add_query_arg( 'pmpro_deny_network_activation', $plugin, network_admin_url( 'plugins.php' ) ) );
61
+ exit;
62
+ }
63
+ }
64
+ }
65
+
66
+ // Init the check if the plugin is active.
67
+ if ( class_exists( '\PMPro_Deny_Network_Activation' ) ) {
68
+ $pmp_wpmu_deny = new PMPro_Deny_Network_Activation();
69
+ $pmp_wpmu_deny->init();
70
+ }
classes/gateways/class.pmprogateway_braintree.php CHANGED
@@ -661,6 +661,7 @@
661
  'creditCard' => array(
662
  'number' => $order->braintree->number,
663
  'expirationDate' => $order->braintree->expiration_date,
 
664
  'cardholderName' => trim($order->FirstName . " " . $order->LastName),
665
  'options' => array(
666
  'updateExistingToken' => $this->customer->creditCards[0]->token
@@ -715,7 +716,7 @@
715
 
716
  //no customer id, create one
717
  if(!empty($order->accountnumber))
718
- {
719
  try
720
  {
721
  $result = Braintree_Customer::create(array(
661
  'creditCard' => array(
662
  'number' => $order->braintree->number,
663
  'expirationDate' => $order->braintree->expiration_date,
664
+ 'cvv' => $order->braintree->cvv,
665
  'cardholderName' => trim($order->FirstName . " " . $order->LastName),
666
  'options' => array(
667
  'updateExistingToken' => $this->customer->creditCards[0]->token
716
 
717
  //no customer id, create one
718
  if(!empty($order->accountnumber))
719
+ {
720
  try
721
  {
722
  $result = Braintree_Customer::create(array(
classes/gateways/class.pmprogateway_cybersource.php CHANGED
@@ -254,6 +254,7 @@
254
  $card_types = array(
255
  'Visa' => '001',
256
  'MasterCard' => '002',
 
257
  'Master Card' => '002',
258
  'AMEX' => '003',
259
  'American Express' => '003',
254
  $card_types = array(
255
  'Visa' => '001',
256
  'MasterCard' => '002',
257
+ 'Mastercard' => '002',
258
  'Master Card' => '002',
259
  'AMEX' => '003',
260
  'American Express' => '003',
includes/content.php CHANGED
@@ -140,26 +140,29 @@ function pmpro_has_membership_access($post_id = NULL, $user_id = NULL, $return_m
140
  function pmpro_search_filter($query)
141
  {
142
  global $current_user, $wpdb, $pmpro_pages;
143
-
144
  //hide pmpro pages from search results
145
  if(!$query->is_admin && $query->is_search && empty($query->query['post_parent']))
146
  {
147
- if(empty($query->query_vars['post_parent'])) //avoiding post_parent queries for now
148
  $query->set('post__not_in', $pmpro_pages );
149
 
150
- $query->set('post__not_in', $pmpro_pages ); // id of page or post
151
  }
152
 
153
- //hide member pages from non-members (make sure they aren't hidden from members)
154
  if(!$query->is_admin &&
155
- !$query->is_singular &&
156
  empty($query->query['post_parent']) &&
157
  (
158
- empty($query->query_vars['post_type']) ||
159
  in_array($query->query_vars['post_type'], apply_filters('pmpro_search_filter_post_types', array("page", "post")))
160
- )
 
 
161
  )
162
- {
 
163
  //get page ids that are in my levels
164
  if(!empty($current_user->ID))
165
  $levels = pmpro_getMembershipLevelsForUser($current_user->ID);
@@ -193,11 +196,11 @@ function pmpro_search_filter($query)
193
  $sql = "SELECT page_id FROM $wpdb->pmpro_memberships_pages WHERE page_id NOT IN(" . implode(',', $my_pages) . ")";
194
  else
195
  $sql = "SELECT page_id FROM $wpdb->pmpro_memberships_pages";
196
- $hidden_page_ids = array_values(array_unique($wpdb->get_col($sql)));
197
 
198
  if($hidden_page_ids)
199
  {
200
- if(empty($query->query_vars['post_parent'])) //avoiding post_parent queries for now
201
  $query->set('post__not_in', $hidden_page_ids);
202
  }
203
 
@@ -222,7 +225,7 @@ function pmpro_search_filter($query)
222
 
223
  //make this work
224
  if($hidden_cat_ids)
225
- {
226
  $query->set('category__not_in', $hidden_cat_ids);
227
 
228
  //filter so posts in this member's categories are allowed
@@ -243,7 +246,7 @@ if(!empty($filterqueries))
243
  function pmpro_posts_where_unhide_cats($where)
244
  {
245
  global $pmpro_my_cats, $wpdb;
246
-
247
  //if we have member cats, make sure they are allowed in taxonomy queries
248
  if(!empty($where) && !empty($pmpro_my_cats))
249
  {
@@ -251,21 +254,21 @@ function pmpro_posts_where_unhide_cats($where)
251
  $replacement = $wpdb->posts . '.ID NOT IN (
252
  SELECT tr1.object_id
253
  FROM ' . $wpdb->term_relationships . ' tr1
254
- LEFT JOIN ' . $wpdb->term_relationships . ' tr2 ON tr1.object_id = tr2.object_id AND tr2.term_taxonomy_id IN(' . implode($pmpro_my_cats) . ')
255
- WHERE tr1.term_taxonomy_id IN(${1}) AND tr2.term_taxonomy_id IS NULL ) ';
256
  $where = preg_replace($pattern, $replacement, $where);
257
  }
258
-
259
  //remove filter for next query
260
  remove_action('posts_where', 'pmpro_posts_where_unhide_cats');
261
-
262
  return $where;
263
  }
264
-
265
  function pmpro_membership_content_filter($content, $skipcheck = false)
266
- {
267
  global $post, $current_user;
268
-
269
  if(!$skipcheck)
270
  {
271
  $hasaccess = pmpro_has_membership_access(NULL, NULL, true);
@@ -287,16 +290,16 @@ function pmpro_membership_content_filter($content, $skipcheck = false)
287
  {
288
  //if show excerpts is set, return just the excerpt
289
  if(pmpro_getOption("showexcerpts"))
290
- {
291
  //show excerpt
292
  global $post;
293
  if($post->post_excerpt)
294
- {
295
  //defined exerpt
296
  $content = wpautop($post->post_excerpt);
297
  }
298
  elseif(strpos($content, "<span id=\"more-" . $post->ID . "\"></span>") !== false)
299
- {
300
  //more tag
301
  $pos = strpos($content, "<span id=\"more-" . $post->ID . "\"></span>");
302
  $content = wpautop(substr($content, 0, $pos));
@@ -327,6 +330,7 @@ function pmpro_membership_content_filter($content, $skipcheck = false)
327
  }
328
  else
329
  {
 
330
  //else hide everything
331
  $content = "";
332
  }
140
  function pmpro_search_filter($query)
141
  {
142
  global $current_user, $wpdb, $pmpro_pages;
143
+
144
  //hide pmpro pages from search results
145
  if(!$query->is_admin && $query->is_search && empty($query->query['post_parent']))
146
  {
147
+ if(empty($query->query_vars['post_parent'])) //avoiding post_parent queries for now
148
  $query->set('post__not_in', $pmpro_pages );
149
 
150
+ $query->set('post__not_in', $pmpro_pages ); // id of page or post
151
  }
152
 
153
+ //hide member pages from non-members (make sure they aren't hidden from members)
154
  if(!$query->is_admin &&
155
+ !$query->is_singular &&
156
  empty($query->query['post_parent']) &&
157
  (
158
+ empty($query->query_vars['post_type']) ||
159
  in_array($query->query_vars['post_type'], apply_filters('pmpro_search_filter_post_types', array("page", "post")))
160
+ ) && (
161
+ ( ! defined('REST_REQUEST') || ( defined( 'REST_REQUEST' ) && false === REST_REQUEST ) )
162
+ )
163
  )
164
+ {
165
+
166
  //get page ids that are in my levels
167
  if(!empty($current_user->ID))
168
  $levels = pmpro_getMembershipLevelsForUser($current_user->ID);
196
  $sql = "SELECT page_id FROM $wpdb->pmpro_memberships_pages WHERE page_id NOT IN(" . implode(',', $my_pages) . ")";
197
  else
198
  $sql = "SELECT page_id FROM $wpdb->pmpro_memberships_pages";
199
+ $hidden_page_ids = array_values(array_unique($wpdb->get_col($sql)));
200
 
201
  if($hidden_page_ids)
202
  {
203
+ if(empty($query->query_vars['post_parent'])) //avoiding post_parent queries for now
204
  $query->set('post__not_in', $hidden_page_ids);
205
  }
206
 
225
 
226
  //make this work
227
  if($hidden_cat_ids)
228
+ {
229
  $query->set('category__not_in', $hidden_cat_ids);
230
 
231
  //filter so posts in this member's categories are allowed
246
  function pmpro_posts_where_unhide_cats($where)
247
  {
248
  global $pmpro_my_cats, $wpdb;
249
+
250
  //if we have member cats, make sure they are allowed in taxonomy queries
251
  if(!empty($where) && !empty($pmpro_my_cats))
252
  {
254
  $replacement = $wpdb->posts . '.ID NOT IN (
255
  SELECT tr1.object_id
256
  FROM ' . $wpdb->term_relationships . ' tr1
257
+ LEFT JOIN ' . $wpdb->term_relationships . ' tr2 ON tr1.object_id = tr2.object_id AND tr2.term_taxonomy_id IN(' . implode($pmpro_my_cats) . ')
258
+ WHERE tr1.term_taxonomy_id IN(${1}) AND tr2.term_taxonomy_id IS NULL ) ';
259
  $where = preg_replace($pattern, $replacement, $where);
260
  }
261
+
262
  //remove filter for next query
263
  remove_action('posts_where', 'pmpro_posts_where_unhide_cats');
264
+
265
  return $where;
266
  }
267
+
268
  function pmpro_membership_content_filter($content, $skipcheck = false)
269
+ {
270
  global $post, $current_user;
271
+
272
  if(!$skipcheck)
273
  {
274
  $hasaccess = pmpro_has_membership_access(NULL, NULL, true);
290
  {
291
  //if show excerpts is set, return just the excerpt
292
  if(pmpro_getOption("showexcerpts"))
293
+ {
294
  //show excerpt
295
  global $post;
296
  if($post->post_excerpt)
297
+ {
298
  //defined exerpt
299
  $content = wpautop($post->post_excerpt);
300
  }
301
  elseif(strpos($content, "<span id=\"more-" . $post->ID . "\"></span>") !== false)
302
+ {
303
  //more tag
304
  $pos = strpos($content, "<span id=\"more-" . $post->ID . "\"></span>");
305
  $content = wpautop(substr($content, 0, $pos));
330
  }
331
  else
332
  {
333
+
334
  //else hide everything
335
  $content = "";
336
  }
includes/countries.php CHANGED
@@ -4,254 +4,254 @@
4
  $pmpro_default_country = apply_filters("pmpro_default_country", "US");
5
 
6
  $pmpro_countries = array(
7
- 'AD' => 'Andorra',
8
- 'AE' => 'United Arab Emirates',
9
- 'AF' => 'Afghanistan',
10
- 'AG' => 'Antigua and Barbuda',
11
- 'AI' => 'Anguilla',
12
- 'AL' => 'Albania',
13
- 'AM' => 'Armenia',
14
- 'AN' => 'Netherlands Antilles',
15
- 'AO' => 'Angola',
16
- 'AQ' => 'Antarctica',
17
- 'AR' => 'Argentina',
18
- 'AS' => 'American Samoa',
19
- 'AT' => 'Austria',
20
- 'AU' => 'Australia',
21
- 'AW' => 'Aruba',
22
- 'AX' => 'Aland Islands',
23
- 'AZ' => 'Azerbaijan',
24
- 'BA' => 'Bosnia and Herzegovina',
25
- 'BB' => 'Barbados',
26
- 'BD' => 'Bangladesh',
27
- 'BE' => 'Belgium',
28
- 'BF' => 'Burkina Faso',
29
- 'BG' => 'Bulgaria',
30
- 'BH' => 'Bahrain',
31
- 'BI' => 'Burundi',
32
- 'BJ' => 'Benin',
33
- 'BL' => 'Saint Barthelemy',
34
- 'BM' => 'Bermuda',
35
- 'BN' => 'Brunei',
36
- 'BO' => 'Bolivia',
37
- 'BR' => 'Brazil',
38
- 'BS' => 'Bahamas',
39
- 'BT' => 'Bhutan',
40
- 'BV' => 'Bouvet Island',
41
- 'BW' => 'Botswana',
42
- 'BY' => 'Belarus',
43
- 'BZ' => 'Belize',
44
- 'CA' => 'Canada',
45
- 'CC' => 'Cocos (Keeling) Islands',
46
- 'CD' => 'Congo (Kinshasa)',
47
- 'CF' => 'Central African Republic',
48
- 'CG' => 'Congo (Brazzaville)',
49
- 'CH' => 'Switzerland',
50
- 'CI' => 'Ivory Coast',
51
- 'CK' => 'Cook Islands',
52
- 'CL' => 'Chile',
53
- 'CM' => 'Cameroon',
54
- 'CN' => 'China',
55
- 'CO' => 'Colombia',
56
- 'CR' => 'Costa Rica',
57
- 'CU' => 'Cuba',
58
- 'CV' => 'Cape Verde',
59
- 'CX' => 'Christmas Island',
60
- 'CY' => 'Cyprus',
61
- 'CZ' => 'Czech Republic',
62
- 'DE' => 'Germany',
63
- 'DJ' => 'Djibouti',
64
- 'DK' => 'Denmark',
65
- 'DM' => 'Dominica',
66
- 'DO' => 'Dominican Republic',
67
- 'DZ' => 'Algeria',
68
- 'EC' => 'Ecuador',
69
- 'EE' => 'Estonia',
70
- 'EG' => 'Egypt',
71
- 'EH' => 'Western Sahara',
72
- 'ER' => 'Eritrea',
73
- 'ES' => 'Spain',
74
- 'ET' => 'Ethiopia',
75
- 'FI' => 'Finland',
76
- 'FJ' => 'Fiji',
77
- 'FK' => 'Falkland Islands',
78
- 'FM' => 'Micronesia',
79
- 'FO' => 'Faroe Islands',
80
- 'FR' => 'France',
81
- 'GA' => 'Gabon',
82
- 'GB' => 'United Kingdom',
83
- 'GD' => 'Grenada',
84
- 'GE' => 'Georgia',
85
- 'GF' => 'French Guiana',
86
- 'GG' => 'Guernsey',
87
- 'GH' => 'Ghana',
88
- 'GI' => 'Gibraltar',
89
- 'GL' => 'Greenland',
90
- 'GM' => 'Gambia',
91
- 'GN' => 'Guinea',
92
- 'GP' => 'Guadeloupe',
93
- 'GQ' => 'Equatorial Guinea',
94
- 'GR' => 'Greece',
95
- 'GS' => 'South Georgia and the South Sandwich Islands',
96
- 'GT' => 'Guatemala',
97
- 'GU' => 'Guam',
98
- 'GW' => 'Guinea-Bissau',
99
- 'GY' => 'Guyana',
100
- 'HK' => 'Hong Kong S.A.R., China',
101
- 'HM' => 'Heard Island and McDonald Islands',
102
- 'HN' => 'Honduras',
103
- 'HR' => 'Croatia',
104
- 'HT' => 'Haiti',
105
- 'HU' => 'Hungary',
106
- 'ID' => 'Indonesia',
107
- 'IE' => 'Ireland',
108
- 'IL' => 'Israel',
109
- 'IM' => 'Isle of Man',
110
- 'IN' => 'India',
111
- 'IO' => 'British Indian Ocean Territory',
112
- 'IQ' => 'Iraq',
113
- 'IR' => 'Iran',
114
- 'IS' => 'Iceland',
115
- 'IT' => 'Italy',
116
- 'JE' => 'Jersey',
117
- 'JM' => 'Jamaica',
118
- 'JO' => 'Jordan',
119
- 'JP' => 'Japan',
120
- 'KE' => 'Kenya',
121
- 'KG' => 'Kyrgyzstan',
122
- 'KH' => 'Cambodia',
123
- 'KI' => 'Kiribati',
124
- 'KM' => 'Comoros',
125
- 'KN' => 'Saint Kitts and Nevis',
126
- 'KP' => 'North Korea',
127
- 'KR' => 'South Korea',
128
- 'KW' => 'Kuwait',
129
- 'KY' => 'Cayman Islands',
130
- 'KZ' => 'Kazakhstan',
131
- 'LA' => 'Laos',
132
- 'LB' => 'Lebanon',
133
- 'LC' => 'Saint Lucia',
134
- 'LI' => 'Liechtenstein',
135
- 'LK' => 'Sri Lanka',
136
- 'LR' => 'Liberia',
137
- 'LS' => 'Lesotho',
138
- 'LT' => 'Lithuania',
139
- 'LU' => 'Luxembourg',
140
- 'LV' => 'Latvia',
141
- 'LY' => 'Libya',
142
- 'MA' => 'Morocco',
143
- 'MC' => 'Monaco',
144
- 'MD' => 'Moldova',
145
- 'ME' => 'Montenegro',
146
- 'MF' => 'Saint Martin (French part)',
147
- 'MG' => 'Madagascar',
148
- 'MH' => 'Marshall Islands',
149
- 'MK' => 'Macedonia',
150
- 'ML' => 'Mali',
151
- 'MM' => 'Myanmar',
152
- 'MN' => 'Mongolia',
153
- 'MO' => 'Macao S.A.R., China',
154
- 'MP' => 'Northern Mariana Islands',
155
- 'MQ' => 'Martinique',
156
- 'MR' => 'Mauritania',
157
- 'MS' => 'Montserrat',
158
- 'MT' => 'Malta',
159
- 'MU' => 'Mauritius',
160
- 'MV' => 'Maldives',
161
- 'MW' => 'Malawi',
162
- 'MX' => 'Mexico',
163
- 'MY' => 'Malaysia',
164
- 'MZ' => 'Mozambique',
165
- 'NA' => 'Namibia',
166
- 'NC' => 'New Caledonia',
167
- 'NE' => 'Niger',
168
- 'NF' => 'Norfolk Island',
169
- 'NG' => 'Nigeria',
170
- 'NI' => 'Nicaragua',
171
- 'NL' => 'Netherlands',
172
- 'NO' => 'Norway',
173
- 'NP' => 'Nepal',
174
- 'NR' => 'Nauru',
175
- 'NU' => 'Niue',
176
- 'NZ' => 'New Zealand',
177
- 'OM' => 'Oman',
178
- 'PA' => 'Panama',
179
- 'PE' => 'Peru',
180
- 'PF' => 'French Polynesia',
181
- 'PG' => 'Papua New Guinea',
182
- 'PH' => 'Philippines',
183
- 'PK' => 'Pakistan',
184
- 'PL' => 'Poland',
185
- 'PM' => 'Saint Pierre and Miquelon',
186
- 'PN' => 'Pitcairn',
187
- 'PR' => 'Puerto Rico',
188
- 'PS' => 'Palestinian Territory',
189
- 'PT' => 'Portugal',
190
- 'PW' => 'Palau',
191
- 'PY' => 'Paraguay',
192
- 'QA' => 'Qatar',
193
- 'RE' => 'Reunion',
194
- 'RO' => 'Romania',
195
- 'RS' => 'Serbia',
196
- 'RU' => 'Russia',
197
- 'RW' => 'Rwanda',
198
- 'SA' => 'Saudi Arabia',
199
- 'SB' => 'Solomon Islands',
200
- 'SC' => 'Seychelles',
201
- 'SD' => 'Sudan',
202
- 'SE' => 'Sweden',
203
- 'SG' => 'Singapore',
204
- 'SH' => 'Saint Helena',
205
- 'SI' => 'Slovenia',
206
- 'SJ' => 'Svalbard and Jan Mayen',
207
- 'SK' => 'Slovakia',
208
- 'SL' => 'Sierra Leone',
209
- 'SM' => 'San Marino',
210
- 'SN' => 'Senegal',
211
- 'SO' => 'Somalia',
212
- 'SR' => 'Suriname',
213
- 'ST' => 'Sao Tome and Principe',
214
- 'SV' => 'El Salvador',
215
- 'SY' => 'Syria',
216
- 'SZ' => 'Swaziland',
217
- 'TC' => 'Turks and Caicos Islands',
218
- 'TD' => 'Chad',
219
- 'TF' => 'French Southern Territories',
220
- 'TG' => 'Togo',
221
- 'TH' => 'Thailand',
222
- 'TJ' => 'Tajikistan',
223
- 'TK' => 'Tokelau',
224
- 'TL' => 'Timor-Leste',
225
- 'TM' => 'Turkmenistan',
226
- 'TN' => 'Tunisia',
227
- 'TO' => 'Tonga',
228
- 'TR' => 'Turkey',
229
- 'TT' => 'Trinidad and Tobago',
230
- 'TV' => 'Tuvalu',
231
- 'TW' => 'Taiwan',
232
- 'TZ' => 'Tanzania',
233
- 'UA' => 'Ukraine',
234
- 'UG' => 'Uganda',
235
- 'UM' => 'United States Minor Outlying Islands',
236
- 'US' => 'United States',
237
- 'UY' => 'Uruguay',
238
- 'UZ' => 'Uzbekistan',
239
- 'VA' => 'Vatican',
240
- 'VC' => 'Saint Vincent and the Grenadines',
241
- 'VE' => 'Venezuela',
242
- 'VG' => 'British Virgin Islands',
243
- 'VI' => 'U.S. Virgin Islands',
244
- 'VN' => 'Vietnam',
245
- 'VU' => 'Vanuatu',
246
- 'WF' => 'Wallis and Futuna',
247
- 'WS' => 'Samoa',
248
- 'YE' => 'Yemen',
249
- 'YT' => 'Mayotte',
250
- 'ZA' => 'South Africa',
251
- 'ZM' => 'Zambia',
252
- 'ZW' => 'Zimbabwe',
253
- 'USAF' => 'US Armed Forces' ,
254
- 'VE' => 'Venezuela',
255
  );
256
 
257
  asort($pmpro_countries);
4
  $pmpro_default_country = apply_filters("pmpro_default_country", "US");
5
 
6
  $pmpro_countries = array(
7
+ 'AD' => __( 'Andorra', 'paid-memberships-pro' ),
8
+ 'AE' => __( 'United Arab Emirates', 'paid-memberships-pro' ),
9
+ 'AF' => __( 'Afghanistan', 'paid-memberships-pro' ),
10
+ 'AG' => __( 'Antigua and Barbuda', 'paid-memberships-pro' ),
11
+ 'AI' => __( 'Anguilla', 'paid-memberships-pro' ),
12
+ 'AL' => __( 'Albania', 'paid-memberships-pro' ),
13
+ 'AM' => __( 'Armenia', 'paid-memberships-pro' ),
14
+ 'AN' => __( 'Netherlands Antilles', 'paid-memberships-pro' ),
15
+ 'AO' => __( 'Angola', 'paid-memberships-pro' ),
16
+ 'AQ' => __( 'Antarctica', 'paid-memberships-pro' ),
17
+ 'AR' => __( 'Argentina', 'paid-memberships-pro' ),
18
+ 'AS' => __( 'American Samoa', 'paid-memberships-pro' ),
19
+ 'AT' => __( 'Austria', 'paid-memberships-pro' ),
20
+ 'AU' => __( 'Australia', 'paid-memberships-pro' ),
21
+ 'AW' => __( 'Aruba', 'paid-memberships-pro' ),
22
+ 'AX' => __( 'Aland Islands', 'paid-memberships-pro' ),
23
+ 'AZ' => __( 'Azerbaijan', 'paid-memberships-pro' ),
24
+ 'BA' => __( 'Bosnia and Herzegovina', 'paid-memberships-pro' ),
25
+ 'BB' => __( 'Barbados', 'paid-memberships-pro' ),
26
+ 'BD' => __( 'Bangladesh', 'paid-memberships-pro' ),
27
+ 'BE' => __( 'Belgium', 'paid-memberships-pro' ),
28
+ 'BF' => __( 'Burkina Faso', 'paid-memberships-pro' ),
29
+ 'BG' => __( 'Bulgaria', 'paid-memberships-pro' ),
30
+ 'BH' => __( 'Bahrain', 'paid-memberships-pro' ),
31
+ 'BI' => __( 'Burundi', 'paid-memberships-pro' ),
32
+ 'BJ' => __( 'Benin', 'paid-memberships-pro' ),
33
+ 'BL' => __( 'Saint Barthelemy', 'paid-memberships-pro' ),
34
+ 'BM' => __( 'Bermuda', 'paid-memberships-pro' ),
35
+ 'BN' => __( 'Brunei', 'paid-memberships-pro' ),
36
+ 'BO' => __( 'Bolivia', 'paid-memberships-pro' ),
37
+ 'BR' => __( 'Brazil', 'paid-memberships-pro' ),
38
+ 'BS' => __( 'Bahamas', 'paid-memberships-pro' ),
39
+ 'BT' => __( 'Bhutan', 'paid-memberships-pro' ),
40
+ 'BV' => __( 'Bouvet Island', 'paid-memberships-pro' ),
41
+ 'BW' => __( 'Botswana', 'paid-memberships-pro' ),
42
+ 'BY' => __( 'Belarus', 'paid-memberships-pro' ),
43
+ 'BZ' => __( 'Belize', 'paid-memberships-pro' ),
44
+ 'CA' => __( 'Canada', 'paid-memberships-pro' ),
45
+ 'CC' => __( 'Cocos (Keeling) Islands', 'paid-memberships-pro' ),
46
+ 'CD' => __( 'Congo (Kinshasa)', 'paid-memberships-pro' ),
47
+ 'CF' => __( 'Central African Republic', 'paid-memberships-pro' ),
48
+ 'CG' => __( 'Congo (Brazzaville)', 'paid-memberships-pro' ),
49
+ 'CH' => __( 'Switzerland', 'paid-memberships-pro' ),
50
+ 'CI' => __( 'Ivory Coast', 'paid-memberships-pro' ),
51
+ 'CK' => __( 'Cook Islands', 'paid-memberships-pro' ),
52
+ 'CL' => __( 'Chile', 'paid-memberships-pro' ),
53
+ 'CM' => __( 'Cameroon', 'paid-memberships-pro' ),
54
+ 'CN' => __( 'China', 'paid-memberships-pro' ),
55
+ 'CO' => __( 'Colombia', 'paid-memberships-pro' ),
56
+ 'CR' => __( 'Costa Rica', 'paid-memberships-pro' ),
57
+ 'CU' => __( 'Cuba', 'paid-memberships-pro' ),
58
+ 'CV' => __( 'Cape Verde', 'paid-memberships-pro' ),
59
+ 'CX' => __( 'Christmas Island', 'paid-memberships-pro' ),
60
+ 'CY' => __( 'Cyprus', 'paid-memberships-pro' ),
61
+ 'CZ' => __( 'Czech Republic', 'paid-memberships-pro' ),
62
+ 'DE' => __( 'Germany', 'paid-memberships-pro' ),
63
+ 'DJ' => __( 'Djibouti', 'paid-memberships-pro' ),
64
+ 'DK' => __( 'Denmark', 'paid-memberships-pro' ),
65
+ 'DM' => __( 'Dominica', 'paid-memberships-pro' ),
66
+ 'DO' => __( 'Dominican Republic', 'paid-memberships-pro' ),
67
+ 'DZ' => __( 'Algeria', 'paid-memberships-pro' ),
68
+ 'EC' => __( 'Ecuador', 'paid-memberships-pro' ),
69
+ 'EE' => __( 'Estonia', 'paid-memberships-pro' ),
70
+ 'EG' => __( 'Egypt', 'paid-memberships-pro' ),
71
+ 'EH' => __( 'Western Sahara', 'paid-memberships-pro' ),
72
+ 'ER' => __( 'Eritrea', 'paid-memberships-pro' ),
73
+ 'ES' => __( 'Spain', 'paid-memberships-pro' ),
74
+ 'ET' => __( 'Ethiopia', 'paid-memberships-pro' ),
75
+ 'FI' => __( 'Finland', 'paid-memberships-pro' ),
76
+ 'FJ' => __( 'Fiji', 'paid-memberships-pro' ),
77
+ 'FK' => __( 'Falkland Islands', 'paid-memberships-pro' ),
78
+ 'FM' => __( 'Micronesia', 'paid-memberships-pro' ),
79
+ 'FO' => __( 'Faroe Islands', 'paid-memberships-pro' ),
80
+ 'FR' => __( 'France', 'paid-memberships-pro' ),
81
+ 'GA' => __( 'Gabon', 'paid-memberships-pro' ),
82
+ 'GB' => __( 'United Kingdom', 'paid-memberships-pro' ),
83
+ 'GD' => __( 'Grenada', 'paid-memberships-pro' ),
84
+ 'GE' => __( 'Georgia', 'paid-memberships-pro' ),
85
+ 'GF' => __( 'French Guiana', 'paid-memberships-pro' ),
86
+ 'GG' => __( 'Guernsey', 'paid-memberships-pro' ),
87
+ 'GH' => __( 'Ghana', 'paid-memberships-pro' ),
88
+ 'GI' => __( 'Gibraltar', 'paid-memberships-pro' ),
89
+ 'GL' => __( 'Greenland', 'paid-memberships-pro' ),
90
+ 'GM' => __( 'Gambia', 'paid-memberships-pro' ),
91
+ 'GN' => __( 'Guinea', 'paid-memberships-pro' ),
92
+ 'GP' => __( 'Guadeloupe', 'paid-memberships-pro' ),
93
+ 'GQ' => __( 'Equatorial Guinea', 'paid-memberships-pro' ),
94
+ 'GR' => __( 'Greece', 'paid-memberships-pro' ),
95
+ 'GS' => __( 'South Georgia and the South Sandwich Islands', 'paid-memberships-pro' ),
96
+ 'GT' => __( 'Guatemala', 'paid-memberships-pro' ),
97
+ 'GU' => __( 'Guam', 'paid-memberships-pro' ),
98
+ 'GW' => __( 'Guinea-Bissau', 'paid-memberships-pro' ),
99
+ 'GY' => __( 'Guyana', 'paid-memberships-pro' ),
100
+ 'HK' => __( 'Hong Kong S.A.R., China', 'paid-memberships-pro' ),
101
+ 'HM' => __( 'Heard Island and McDonald Islands', 'paid-memberships-pro' ),
102
+ 'HN' => __( 'Honduras', 'paid-memberships-pro' ),
103
+ 'HR' => __( 'Croatia', 'paid-memberships-pro' ),
104
+ 'HT' => __( 'Haiti', 'paid-memberships-pro' ),
105
+ 'HU' => __( 'Hungary', 'paid-memberships-pro' ),
106
+ 'ID' => __( 'Indonesia', 'paid-memberships-pro' ),
107
+ 'IE' => __( 'Ireland', 'paid-memberships-pro' ),
108
+ 'IL' => __( 'Israel', 'paid-memberships-pro' ),
109
+ 'IM' => __( 'Isle of Man', 'paid-memberships-pro' ),
110
+ 'IN' => __( 'India', 'paid-memberships-pro' ),
111
+ 'IO' => __( 'British Indian Ocean Territory', 'paid-memberships-pro' ),
112
+ 'IQ' => __( 'Iraq', 'paid-memberships-pro' ),
113
+ 'IR' => __( 'Iran', 'paid-memberships-pro' ),
114
+ 'IS' => __( 'Iceland', 'paid-memberships-pro' ),
115
+ 'IT' => __( 'Italy', 'paid-memberships-pro' ),
116
+ 'JE' => __( 'Jersey', 'paid-memberships-pro' ),
117
+ 'JM' => __( 'Jamaica', 'paid-memberships-pro' ),
118
+ 'JO' => __( 'Jordan', 'paid-memberships-pro' ),
119
+ 'JP' => __( 'Japan', 'paid-memberships-pro' ),
120
+ 'KE' => __( 'Kenya', 'paid-memberships-pro' ),
121
+ 'KG' => __( 'Kyrgyzstan', 'paid-memberships-pro' ),
122
+ 'KH' => __( 'Cambodia', 'paid-memberships-pro' ),
123
+ 'KI' => __( 'Kiribati', 'paid-memberships-pro' ),
124
+ 'KM' => __( 'Comoros', 'paid-memberships-pro' ),
125
+ 'KN' => __( 'Saint Kitts and Nevis', 'paid-memberships-pro' ),
126
+ 'KP' => __( 'North Korea', 'paid-memberships-pro' ),
127
+ 'KR' => __( 'South Korea', 'paid-memberships-pro' ),
128
+ 'KW' => __( 'Kuwait', 'paid-memberships-pro' ),
129
+ 'KY' => __( 'Cayman Islands', 'paid-memberships-pro' ),
130
+ 'KZ' => __( 'Kazakhstan', 'paid-memberships-pro' ),
131
+ 'LA' => __( 'Laos', 'paid-memberships-pro' ),
132
+ 'LB' => __( 'Lebanon', 'paid-memberships-pro' ),
133
+ 'LC' => __( 'Saint Lucia', 'paid-memberships-pro' ),
134
+ 'LI' => __( 'Liechtenstein', 'paid-memberships-pro' ),
135
+ 'LK' => __( 'Sri Lanka', 'paid-memberships-pro' ),
136
+ 'LR' => __( 'Liberia', 'paid-memberships-pro' ),
137
+ 'LS' => __( 'Lesotho', 'paid-memberships-pro' ),
138
+ 'LT' => __( 'Lithuania', 'paid-memberships-pro' ),
139
+ 'LU' => __( 'Luxembourg', 'paid-memberships-pro' ),
140
+ 'LV' => __( 'Latvia', 'paid-memberships-pro' ),
141
+ 'LY' => __( 'Libya', 'paid-memberships-pro' ),
142
+ 'MA' => __( 'Morocco', 'paid-memberships-pro' ),
143
+ 'MC' => __( 'Monaco', 'paid-memberships-pro' ),
144
+ 'MD' => __( 'Moldova', 'paid-memberships-pro' ),
145
+ 'ME' => __( 'Montenegro', 'paid-memberships-pro' ),
146
+ 'MF' => __( 'Saint Martin (French part)', 'paid-memberships-pro' ),
147
+ 'MG' => __( 'Madagascar', 'paid-memberships-pro' ),
148
+ 'MH' => __( 'Marshall Islands', 'paid-memberships-pro' ),
149
+ 'MK' => __( 'Macedonia', 'paid-memberships-pro' ),
150
+ 'ML' => __( 'Mali', 'paid-memberships-pro' ),
151
+ 'MM' => __( 'Myanmar', 'paid-memberships-pro' ),
152
+ 'MN' => __( 'Mongolia', 'paid-memberships-pro' ),
153
+ 'MO' => __( 'Macao S.A.R., China', 'paid-memberships-pro' ),
154
+ 'MP' => __( 'Northern Mariana Islands', 'paid-memberships-pro' ),
155
+ 'MQ' => __( 'Martinique', 'paid-memberships-pro' ),
156
+ 'MR' => __( 'Mauritania', 'paid-memberships-pro' ),
157
+ 'MS' => __( 'Montserrat', 'paid-memberships-pro' ),
158
+ 'MT' => __( 'Malta', 'paid-memberships-pro' ),
159
+ 'MU' => __( 'Mauritius', 'paid-memberships-pro' ),
160
+ 'MV' => __( 'Maldives', 'paid-memberships-pro' ),
161
+ 'MW' => __( 'Malawi', 'paid-memberships-pro' ),
162
+ 'MX' => __( 'Mexico', 'paid-memberships-pro' ),
163
+ 'MY' => __( 'Malaysia', 'paid-memberships-pro' ),
164
+ 'MZ' => __( 'Mozambique', 'paid-memberships-pro' ),
165
+ 'NA' => __( 'Namibia', 'paid-memberships-pro' ),
166
+ 'NC' => __( 'New Caledonia', 'paid-memberships-pro' ),
167
+ 'NE' => __( 'Niger', 'paid-memberships-pro' ),
168
+ 'NF' => __( 'Norfolk Island', 'paid-memberships-pro' ),
169
+ 'NG' => __( 'Nigeria', 'paid-memberships-pro' ),
170
+ 'NI' => __( 'Nicaragua', 'paid-memberships-pro' ),
171
+ 'NL' => __( 'Netherlands', 'paid-memberships-pro' ),
172
+ 'NO' => __( 'Norway', 'paid-memberships-pro' ),
173
+ 'NP' => __( 'Nepal', 'paid-memberships-pro' ),
174
+ 'NR' => __( 'Nauru', 'paid-memberships-pro' ),
175
+ 'NU' => __( 'Niue', 'paid-memberships-pro' ),
176
+ 'NZ' => __( 'New Zealand', 'paid-memberships-pro' ),
177
+ 'OM' => __( 'Oman', 'paid-memberships-pro' ),
178
+ 'PA' => __( 'Panama', 'paid-memberships-pro' ),
179
+ 'PE' => __( 'Peru', 'paid-memberships-pro' ),
180
+ 'PF' => __( 'French Polynesia', 'paid-memberships-pro' ),
181
+ 'PG' => __( 'Papua New Guinea', 'paid-memberships-pro' ),
182
+ 'PH' => __( 'Philippines', 'paid-memberships-pro' ),
183
+ 'PK' => __( 'Pakistan', 'paid-memberships-pro' ),
184
+ 'PL' => __( 'Poland', 'paid-memberships-pro' ),
185
+ 'PM' => __( 'Saint Pierre and Miquelon', 'paid-memberships-pro' ),
186
+ 'PN' => __( 'Pitcairn', 'paid-memberships-pro' ),
187
+ 'PR' => __( 'Puerto Rico', 'paid-memberships-pro' ),
188
+ 'PS' => __( 'Palestinian Territory', 'paid-memberships-pro' ),
189
+ 'PT' => __( 'Portugal', 'paid-memberships-pro' ),
190
+ 'PW' => __( 'Palau', 'paid-memberships-pro' ),
191
+ 'PY' => __( 'Paraguay', 'paid-memberships-pro' ),
192
+ 'QA' => __( 'Qatar', 'paid-memberships-pro' ),
193
+ 'RE' => __( 'Reunion', 'paid-memberships-pro' ),
194
+ 'RO' => __( 'Romania', 'paid-memberships-pro' ),
195
+ 'RS' => __( 'Serbia', 'paid-memberships-pro' ),
196
+ 'RU' => __( 'Russia', 'paid-memberships-pro' ),
197
+ 'RW' => __( 'Rwanda', 'paid-memberships-pro' ),
198
+ 'SA' => __( 'Saudi Arabia', 'paid-memberships-pro' ),
199
+ 'SB' => __( 'Solomon Islands', 'paid-memberships-pro' ),
200
+ 'SC' => __( 'Seychelles', 'paid-memberships-pro' ),
201
+ 'SD' => __( 'Sudan', 'paid-memberships-pro' ),
202
+ 'SE' => __( 'Sweden', 'paid-memberships-pro' ),
203
+ 'SG' => __( 'Singapore', 'paid-memberships-pro' ),
204
+ 'SH' => __( 'Saint Helena', 'paid-memberships-pro' ),
205
+ 'SI' => __( 'Slovenia', 'paid-memberships-pro' ),
206
+ 'SJ' => __( 'Svalbard and Jan Mayen', 'paid-memberships-pro' ),
207
+ 'SK' => __( 'Slovakia', 'paid-memberships-pro' ),
208
+ 'SL' => __( 'Sierra Leone', 'paid-memberships-pro' ),
209
+ 'SM' => __( 'San Marino', 'paid-memberships-pro' ),
210
+ 'SN' => __( 'Senegal', 'paid-memberships-pro' ),
211
+ 'SO' => __( 'Somalia', 'paid-memberships-pro' ),
212
+ 'SR' => __( 'Suriname', 'paid-memberships-pro' ),
213
+ 'ST' => __( 'Sao Tome and Principe', 'paid-memberships-pro' ),
214
+ 'SV' => __( 'El Salvador', 'paid-memberships-pro' ),
215
+ 'SY' => __( 'Syria', 'paid-memberships-pro' ),
216
+ 'SZ' => __( 'Swaziland', 'paid-memberships-pro' ),
217
+ 'TC' => __( 'Turks and Caicos Islands', 'paid-memberships-pro' ),
218
+ 'TD' => __( 'Chad', 'paid-memberships-pro' ),
219
+ 'TF' => __( 'French Southern Territories', 'paid-memberships-pro' ),
220
+ 'TG' => __( 'Togo', 'paid-memberships-pro' ),
221
+ 'TH' => __( 'Thailand', 'paid-memberships-pro' ),
222
+ 'TJ' => __( 'Tajikistan', 'paid-memberships-pro' ),
223
+ 'TK' => __( 'Tokelau', 'paid-memberships-pro' ),
224
+ 'TL' => __( 'Timor-Leste', 'paid-memberships-pro' ),
225
+ 'TM' => __( 'Turkmenistan', 'paid-memberships-pro' ),
226
+ 'TN' => __( 'Tunisia', 'paid-memberships-pro' ),
227
+ 'TO' => __( 'Tonga', 'paid-memberships-pro' ),
228
+ 'TR' => __( 'Turkey', 'paid-memberships-pro' ),
229
+ 'TT' => __( 'Trinidad and Tobago', 'paid-memberships-pro' ),
230
+ 'TV' => __( 'Tuvalu', 'paid-memberships-pro' ),
231
+ 'TW' => __( 'Taiwan', 'paid-memberships-pro' ),
232
+ 'TZ' => __( 'Tanzania', 'paid-memberships-pro' ),
233
+ 'UA' => __( 'Ukraine', 'paid-memberships-pro' ),
234
+ 'UG' => __( 'Uganda', 'paid-memberships-pro' ),
235
+ 'UM' => __( 'United States Minor Outlying Islands', 'paid-memberships-pro' ),
236
+ 'US' => __( 'United States', 'paid-memberships-pro' ),
237
+ 'UY' => __( 'Uruguay', 'paid-memberships-pro' ),
238
+ 'UZ' => __( 'Uzbekistan', 'paid-memberships-pro' ),
239
+ 'VA' => __( 'Vatican', 'paid-memberships-pro' ),
240
+ 'VC' => __( 'Saint Vincent and the Grenadines', 'paid-memberships-pro' ),
241
+ 'VE' => __( 'Venezuela', 'paid-memberships-pro' ),
242
+ 'VG' => __( 'British Virgin Islands', 'paid-memberships-pro' ),
243
+ 'VI' => __( 'U.S. Virgin Islands', 'paid-memberships-pro' ),
244
+ 'VN' => __( 'Vietnam', 'paid-memberships-pro' ),
245
+ 'VU' => __( 'Vanuatu', 'paid-memberships-pro' ),
246
+ 'WF' => __( 'Wallis and Futuna', 'paid-memberships-pro' ),
247
+ 'WS' => __( 'Samoa', 'paid-memberships-pro' ),
248
+ 'YE' => __( 'Yemen', 'paid-memberships-pro' ),
249
+ 'YT' => __( 'Mayotte', 'paid-memberships-pro' ),
250
+ 'ZA' => __( 'South Africa', 'paid-memberships-pro' ),
251
+ 'ZM' => __( 'Zambia', 'paid-memberships-pro' ),
252
+ 'ZW' => __( 'Zimbabwe', 'paid-memberships-pro' ),
253
+ 'USAF' => __( 'US Armed Forces', 'paid-memberships-pro' ),
254
+ 'VE' => __( 'Venezuela', 'paid-memberships-pro' ),
255
  );
256
 
257
  asort($pmpro_countries);
includes/filters.php CHANGED
@@ -168,3 +168,63 @@ function pmpro_pmpro_level_description($description) {
168
  return apply_filters('the_content', $description);
169
  }
170
  add_filter('pmpro_level_description', 'pmpro_pmpro_level_description');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
168
  return apply_filters('the_content', $description);
169
  }
170
  add_filter('pmpro_level_description', 'pmpro_pmpro_level_description');
171
+
172
+ /*
173
+ PayPal doesn't allow start dates > 1 year out.
174
+ So if we detect that, let's try to squeeze some of
175
+ that time into a trial.
176
+
177
+ Otherwise, let's cap at 1 year out.
178
+
179
+ Note that this affects PayPal Standard as well, but the fix
180
+ for that flavor of PayPal is different and may be included in future
181
+ updates.
182
+ */
183
+ function pmpro_pmpro_subscribe_order_startdate_limit($order, $gateway) {
184
+ $affected_gateways = array('paypalexpress', 'paypal');
185
+
186
+ if(in_array($gateway->gateway, $affected_gateways)) {
187
+ $original_start_date = strtotime($order->ProfileStartDate, current_time('timestamp'));
188
+ $one_year_out = strtotime('+1 Year', current_time('timestamp'));
189
+ $two_years_out = strtotime('+2 Year', current_time('timestamp'));
190
+ $one_year_out_date = date_i18n('Y-m-d', $one_year_out) . 'T0:0:0';
191
+ if(!empty($order->ProfileStartDate) && $order->ProfileStartDate > $one_year_out_date) {
192
+ //try to squeeze into the trial
193
+ if(empty($order->TrialBillingPeriod)) {
194
+ //update the order
195
+ $order->TrialAmount = 0;
196
+ $order->TrialBillingPeriod = 'Day';
197
+ $order->TrialBillingFrequency = min(365, strtotime($order->ProfileStartDate, current_time('timestamp')));
198
+ $order->TrialBillingCycles = 1;
199
+ }
200
+
201
+ //max out at 1 year out no matter what
202
+ $order->ProfileStartDate = $one_year_out_date;
203
+
204
+ //if we were going to try to push it more than 2 years out, let's notify the admin
205
+ if(!empty($order->TrialBillilngPeriod) || $original_start_date > $two_years_out) {
206
+ //setup user data
207
+ global $current_user;
208
+ if(empty($order->user_id))
209
+ $order->user_id = $current_user->ID;
210
+ $order->getUser();
211
+
212
+ //get level data
213
+ $level = pmpro_getLevel($order->membership_id);
214
+
215
+ //create email
216
+ $pmproemail = new PMProEmail();
217
+ $body = '<p>' . __("There was a potential issue while setting the 'Profile Start Date' for a user's subscription at checkout. PayPal does not allow one to set a Profile Start Date further than 1 year out. Typically, this is not an issue, but sometimes a combination of custom code or add ons for PMPro (e.g. the Prorating or Auto-renewal Checkbox add ons) will try to set a Profile Start Date out past 1 year in order to respect an existing user's original expiration date before they checked out. The user's information is below. PMPro has allowed the checkout and simply restricted the Profile Start Date to 1 year out with a possible additional free Trial of up to 1 year. You should double check this information to determine if maybe the user has overpaid or otherwise needs to be addressed. If you get many of these emails, you should consider adjusting your custom code to avoid these situations.", 'paid-memberships-pro') . '</p>';
218
+ $body .= '<p>' . sprintf(__("User: %s<br />Email: %s<br />Membership Level: %s<br />Order #: %s<br />Original Profile Start Date: %s<br />Adjusted Profile Start Date: %s<br />Trial Period: %s<br />Trial Frequency: %s<br />", 'paid-memberships-pro'), $order->user->user_nicename, $order->user->user_email, $level->name, $order->code, date('c', $original_start_date), $one_year_out_date, $order->TrialBillingPeriod, $order->TrialBillingFrequency) . '</p>';
219
+ $pmproemail->template = 'profile_start_date_limit_check';
220
+ $pmproemail->subject = sprintf(__('Profile Start Date Issue Detected and Fixed at %s', 'paid-memberships-pro'), get_bloginfo('name'));
221
+ $pmproemail->data = array('body'=>$body);
222
+ $pmproemail->sendEmail(get_bloginfo("admin_email"));
223
+ }
224
+ }
225
+ }
226
+
227
+ return $order;
228
+ }
229
+ add_filter('pmpro_subscribe_order', 'pmpro_pmpro_subscribe_order_startdate_limit', 99, 2);
230
+
includes/sessions.php ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ Copyright 2011 Stranger Studios (email : jason@strangerstudios.com)
4
+ GPLv2 Full license details in license.txt
5
+ */
6
+
7
+ function pmpro_start_session() {
8
+
9
+ //if the session has been started yet, start it (ignore if running from command line)
10
+ if ( ! defined( 'PMPRO_USE_SESSIONS' ) || PMPRO_USE_SESSIONS == true ) {
11
+ if ( defined( 'STDIN' ) ) {
12
+ //command line
13
+ } else {
14
+ if ( version_compare( phpversion(), '5.4.0', '>=' ) ) {
15
+ if ( session_status() == PHP_SESSION_NONE ) {
16
+ session_start();
17
+ }
18
+ } else {
19
+ if ( ! session_id() ) {
20
+ session_start();
21
+ }
22
+ }
23
+ }
24
+ }
25
+ }
26
+
27
+ add_action( 'pmpro_checkout_preheader', 'pmpro_start_session', -1 );
28
+
29
+ /**
30
+ * Close the session object for new updates
31
+ * @return MemberOrder
32
+ */
33
+ function pmpro_close_session() {
34
+
35
+ if ( ! defined( 'PMPRO_USE_SESSIONS' ) || PMPRO_USE_SESSIONS == true ) {
36
+ if ( defined( 'STDIN' ) ) {
37
+ //command line
38
+ } else {
39
+ if ( version_compare( phpversion(), '5.4.0', '>=' ) ) {
40
+ if ( session_status() == PHP_SESSION_ACTIVE ) {
41
+ session_write_close();
42
+ }
43
+ } else {
44
+ if ( session_id() ) {
45
+ session_write_close();
46
+ }
47
+ }
48
+ }
49
+ }
50
+ }
51
+
52
+ add_action( 'pmpro_after_checkout', 'pmpro_close_session', 32768 );
includes/updates/upgrade_1_8_9_1.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /*
3
  Upgrade to 1.8.9.1
4
  * Fixing Stripe orders where user_id/membership_id = 0
1
  <?php
2
+ use Stripe\Customer as Stripe_Customer;
3
  /*
4
  Upgrade to 1.8.9.1
5
  * Fixing Stripe orders where user_id/membership_id = 0
languages/paid-memberships-pro.mo CHANGED
Binary file
languages/paid-memberships-pro.po CHANGED
@@ -1,17 +1,15 @@
1
- # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
- # This file is distributed under the same license as the PACKAGE package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
  #
6
- #, fuzzy
 
 
7
  msgid ""
8
  msgstr ""
9
- "Project-Id-Version: PACKAGE VERSION\n"
10
  "Report-Msgid-Bugs-To: jason@strangerstudios.com\n"
11
- "POT-Creation-Date: 2017-05-10 14:14-0400\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
- "Language-Team: LANGUAGE <LL@li.org>\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
@@ -846,8 +844,8 @@ msgstr ""
846
 
847
  #: adminpages/discountcodes.php:442
848
  #: classes/gateways/class.pmprogateway_braintree.php:423
849
- #: classes/gateways/class.pmprogateway_stripe.php:597 pages/billing.php:316
850
- #: pages/checkout.php:582 adminpages/discountcodes.php:367
851
  #: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
852
  #: adminpages/discountcodes.php:372 adminpages/discountcodes.php:377
853
  #: adminpages/discountcodes.php:442
@@ -1713,7 +1711,7 @@ msgid "Save Level"
1713
  msgstr ""
1714
 
1715
  #: adminpages/membershiplevels.php:530 adminpages/orders.php:796
1716
- #: pages/billing.php:371 pages/cancel.php:84 shortcodes/pmpro_account.php:72
1717
  #: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:508
1718
  #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:518
1719
  #: adminpages/membershiplevels.php:530 adminpages/orders.php:511
@@ -1912,7 +1910,7 @@ msgstr ""
1912
  msgid "%d members found."
1913
  msgstr ""
1914
 
1915
- #: adminpages/memberslist.php:165 pages/checkout.php:191
1916
  #: shortcodes/pmpro_account.php:110 adminpages/memberslist.php:112
1917
  #: adminpages/memberslist.php:145 adminpages/memberslist.php:155
1918
  #: adminpages/memberslist.php:165 pages/account.php:51 pages/account.php:55
@@ -1936,7 +1934,7 @@ msgstr ""
1936
  msgid "Last&nbsp;Name"
1937
  msgstr ""
1938
 
1939
- #: adminpages/memberslist.php:170 pages/billing.php:77 pages/checkout.php:326
1940
  #: pages/confirmation.php:67 pages/invoice.php:48
1941
  #: adminpages/memberslist.php:117 adminpages/memberslist.php:150
1942
  #: adminpages/memberslist.php:160 adminpages/memberslist.php:170
@@ -2182,8 +2180,8 @@ msgstr ""
2182
 
2183
  #: adminpages/orders.php:563
2184
  #: classes/gateways/class.pmprogateway_braintree.php:406
2185
- #: classes/gateways/class.pmprogateway_stripe.php:549 pages/billing.php:268
2186
- #: pages/checkout.php:534 adminpages/orders.php:339 adminpages/orders.php:389
2187
  #: adminpages/orders.php:461 adminpages/orders.php:490
2188
  #: adminpages/orders.php:532 adminpages/orders.php:563
2189
  #: classes/gateways/class.pmprogateway_braintree.php:291
@@ -2494,7 +2492,7 @@ msgid "User"
2494
  msgstr ""
2495
 
2496
  #: adminpages/orders.php:1138 includes/init.php:244 includes/profile.php:36
2497
- #: pages/checkout.php:42 pages/confirmation.php:53 pages/confirmation.php:70
2498
  #: pages/confirmation.php:116 pages/invoice.php:28 pages/invoice.php:51
2499
  #: adminpages/orders.php:601 adminpages/orders.php:904
2500
  #: adminpages/orders.php:914 adminpages/orders.php:941
@@ -2856,7 +2854,7 @@ msgstr ""
2856
  msgid "Sales Tax"
2857
  msgstr ""
2858
 
2859
- #: adminpages/paymentsettings.php:188 pages/billing.php:97
2860
  #: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:398
2861
  #: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
2862
  #: adminpages/paymentsettings.php:445 pages/billing.php:78
@@ -3253,6 +3251,13 @@ msgstr ""
3253
  msgid "Update complete."
3254
  msgstr ""
3255
 
 
 
 
 
 
 
 
3256
  #: classes/class.memberorder.php:729 classes/class.memberorder.php:553
3257
  #: classes/class.memberorder.php:561 classes/class.memberorder.php:564
3258
  #: classes/class.memberorder.php:573 classes/class.memberorder.php:644
@@ -3300,8 +3305,8 @@ msgstr ""
3300
  #: classes/class.pmproemail.php:378 classes/class.pmproemail.php:696
3301
  #: classes/class.pmproemail.php:698
3302
  #: classes/gateways/class.pmprogateway_braintree.php:464
3303
- #: classes/gateways/class.pmprogateway_stripe.php:638 pages/checkout.php:83
3304
- #: pages/checkout.php:93 pages/checkout.php:619 pages/confirmation.php:58
3305
  #: pages/invoice.php:33 classes/class.pmproemail.php:216
3306
  #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
3307
  #: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
@@ -3634,7 +3639,7 @@ msgid ""
3634
  msgstr ""
3635
 
3636
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
3637
- #: paid-memberships-pro.php:142
3638
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
3639
  #: paid-memberships-pro.php:122 paid-memberships-pro.php:123
3640
  #: paid-memberships-pro.php:130 paid-memberships-pro.php:131
@@ -3703,7 +3708,7 @@ msgid ""
3703
  msgstr ""
3704
 
3705
  #: classes/gateways/class.pmprogateway_braintree.php:172
3706
- #: paid-memberships-pro.php:143
3707
  #: classes/gateways/class.pmprogateway_braintree.php:63
3708
  #: classes/gateways/class.pmprogateway_braintree.php:76
3709
  #: classes/gateways/class.pmprogateway_braintree.php:77
@@ -3815,7 +3820,7 @@ msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
3815
  msgstr ""
3816
 
3817
  #: classes/gateways/class.pmprogateway_braintree.php:383
3818
- #: classes/gateways/class.pmprogateway_stripe.php:526 pages/checkout.php:510
3819
  #: classes/gateways/class.pmprogateway_braintree.php:270
3820
  #: classes/gateways/class.pmprogateway_braintree.php:283
3821
  #: classes/gateways/class.pmprogateway_braintree.php:285
@@ -3843,7 +3848,7 @@ msgid "Payment Information"
3843
  msgstr ""
3844
 
3845
  #: classes/gateways/class.pmprogateway_braintree.php:384
3846
- #: classes/gateways/class.pmprogateway_stripe.php:527 pages/checkout.php:511
3847
  #: classes/gateways/class.pmprogateway_braintree.php:270
3848
  #: classes/gateways/class.pmprogateway_braintree.php:283
3849
  #: classes/gateways/class.pmprogateway_braintree.php:285
@@ -3872,8 +3877,8 @@ msgid "We Accept %s"
3872
  msgstr ""
3873
 
3874
  #: classes/gateways/class.pmprogateway_braintree.php:418
3875
- #: classes/gateways/class.pmprogateway_stripe.php:592 pages/billing.php:311
3876
- #: pages/checkout.php:577
3877
  #: classes/gateways/class.pmprogateway_braintree.php:303
3878
  #: classes/gateways/class.pmprogateway_braintree.php:316
3879
  #: classes/gateways/class.pmprogateway_braintree.php:318
@@ -3904,8 +3909,8 @@ msgid "Card Number"
3904
  msgstr ""
3905
 
3906
  #: classes/gateways/class.pmprogateway_braintree.php:455
3907
- #: classes/gateways/class.pmprogateway_stripe.php:629 pages/billing.php:354
3908
- #: pages/checkout.php:612
3909
  #: classes/gateways/class.pmprogateway_braintree.php:340
3910
  #: classes/gateways/class.pmprogateway_braintree.php:353
3911
  #: classes/gateways/class.pmprogateway_braintree.php:355
@@ -3937,8 +3942,8 @@ msgid "CVV"
3937
  msgstr ""
3938
 
3939
  #: classes/gateways/class.pmprogateway_braintree.php:456
3940
- #: classes/gateways/class.pmprogateway_stripe.php:630 pages/billing.php:355
3941
- #: pages/checkout.php:613
3942
  #: classes/gateways/class.pmprogateway_braintree.php:341
3943
  #: classes/gateways/class.pmprogateway_braintree.php:354
3944
  #: classes/gateways/class.pmprogateway_braintree.php:356
@@ -3970,8 +3975,8 @@ msgid "what's this?"
3970
  msgstr ""
3971
 
3972
  #: classes/gateways/class.pmprogateway_braintree.php:466
3973
- #: classes/gateways/class.pmprogateway_stripe.php:640 pages/checkout.php:95
3974
- #: pages/checkout.php:621
3975
  #: classes/gateways/class.pmprogateway_braintree.php:351
3976
  #: classes/gateways/class.pmprogateway_braintree.php:364
3977
  #: classes/gateways/class.pmprogateway_braintree.php:366
@@ -4003,9 +4008,9 @@ msgstr ""
4003
  #: classes/gateways/class.pmprogateway_braintree.php:524
4004
  #: classes/gateways/class.pmprogateway_braintree.php:541
4005
  #: classes/gateways/class.pmprogateway_braintree.php:623
4006
- #: classes/gateways/class.pmprogateway_braintree.php:781
4007
- #: classes/gateways/class.pmprogateway_braintree.php:886
4008
- #: classes/gateways/class.pmprogateway_braintree.php:906
4009
  #: classes/gateways/class.pmprogateway_braintree.php:524
4010
  #: classes/gateways/class.pmprogateway_braintree.php:541
4011
  #: classes/gateways/class.pmprogateway_braintree.php:623
@@ -4069,7 +4074,7 @@ msgstr ""
4069
  msgid "Error during charge:"
4070
  msgstr ""
4071
 
4072
- #: classes/gateways/class.pmprogateway_braintree.php:702
4073
  #: classes/gateways/class.pmprogateway_braintree.php:198
4074
  #: classes/gateways/class.pmprogateway_braintree.php:221
4075
  #: classes/gateways/class.pmprogateway_braintree.php:566
@@ -4083,7 +4088,7 @@ msgstr ""
4083
  msgid "Failed to update customer."
4084
  msgstr ""
4085
 
4086
- #: classes/gateways/class.pmprogateway_braintree.php:750
4087
  #: classes/gateways/class.pmprogateway_braintree.php:246
4088
  #: classes/gateways/class.pmprogateway_braintree.php:269
4089
  #: classes/gateways/class.pmprogateway_braintree.php:614
@@ -4097,7 +4102,7 @@ msgstr ""
4097
  msgid "Failed to create customer."
4098
  msgstr ""
4099
 
4100
- #: classes/gateways/class.pmprogateway_braintree.php:757
4101
  #: classes/gateways/class.pmprogateway_braintree.php:253
4102
  #: classes/gateways/class.pmprogateway_braintree.php:276
4103
  #: classes/gateways/class.pmprogateway_braintree.php:621
@@ -4111,7 +4116,7 @@ msgstr ""
4111
  msgid "Error creating customer record with Braintree:"
4112
  msgstr ""
4113
 
4114
- #: classes/gateways/class.pmprogateway_braintree.php:862
4115
  #: classes/gateways/class.pmprogateway_braintree.php:344
4116
  #: classes/gateways/class.pmprogateway_braintree.php:345
4117
  #: classes/gateways/class.pmprogateway_braintree.php:376
@@ -4126,7 +4131,7 @@ msgstr ""
4126
  msgid "Error subscribing customer to plan with Braintree:"
4127
  msgstr ""
4128
 
4129
- #: classes/gateways/class.pmprogateway_braintree.php:877
4130
  #: classes/gateways/class.pmprogateway_braintree.php:359
4131
  #: classes/gateways/class.pmprogateway_braintree.php:360
4132
  #: classes/gateways/class.pmprogateway_braintree.php:391
@@ -4141,9 +4146,9 @@ msgstr ""
4141
  msgid "Failed to subscribe with Braintree:"
4142
  msgstr ""
4143
 
4144
- #: classes/gateways/class.pmprogateway_braintree.php:925
4145
- #: classes/gateways/class.pmprogateway_braintree.php:938
4146
- #: classes/gateways/class.pmprogateway_braintree.php:945
4147
  #: classes/gateways/class.pmprogateway_braintree.php:397
4148
  #: classes/gateways/class.pmprogateway_braintree.php:398
4149
  #: classes/gateways/class.pmprogateway_braintree.php:410
@@ -4189,7 +4194,7 @@ msgid "Could not find the subscription."
4189
  msgstr ""
4190
 
4191
  #: classes/gateways/class.pmprogateway_check.php:49
4192
- #: paid-memberships-pro.php:136 adminpages/orders.php:399
4193
  #: adminpages/orders.php:449 adminpages/paymentsettings.php:157
4194
  #: adminpages/paymentsettings.php:159
4195
  #: classes/gateways/class.pmprogateway_check.php:48
@@ -4276,7 +4281,7 @@ msgid "Vendor"
4276
  msgstr ""
4277
 
4278
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
4279
- #: pages/checkout.php:200 adminpages/paymentsettings.php:219
4280
  #: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:228
4281
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
4282
  #: pages/checkout.php:177 pages/checkout.php:180 pages/checkout.php:182
@@ -4312,7 +4317,7 @@ msgid ""
4312
  msgstr ""
4313
 
4314
  #: classes/gateways/class.pmprogateway_paypal.php:68
4315
- #: paid-memberships-pro.php:139
4316
  #: classes/gateways/class.pmprogateway_paypal.php:57
4317
  #: classes/gateways/class.pmprogateway_paypal.php:68
4318
  #: paid-memberships-pro.php:119 paid-memberships-pro.php:120
@@ -4450,7 +4455,7 @@ msgstr ""
4450
  #: classes/gateways/class.pmprogateway_paypal.php:201
4451
  #: classes/gateways/class.pmprogateway_paypalexpress.php:438
4452
  #: classes/gateways/class.pmprogateway_paypalstandard.php:201
4453
- #: pages/checkout.php:309 classes/gateways/class.pmprogateway_paypal.php:178
4454
  #: classes/gateways/class.pmprogateway_paypal.php:201
4455
  #: classes/gateways/class.pmprogateway_paypalexpress.php:402
4456
  #: classes/gateways/class.pmprogateway_paypalexpress.php:412
@@ -4467,7 +4472,7 @@ msgstr ""
4467
  #: classes/gateways/class.pmprogateway_paypal.php:207
4468
  #: classes/gateways/class.pmprogateway_paypalexpress.php:443
4469
  #: classes/gateways/class.pmprogateway_paypalstandard.php:206
4470
- #: pages/checkout.php:725 classes/gateways/class.pmprogateway_paypal.php:184
4471
  #: classes/gateways/class.pmprogateway_paypal.php:207
4472
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
4473
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
@@ -4485,7 +4490,7 @@ msgstr ""
4485
  #: classes/gateways/class.pmprogateway_paypalexpress.php:443
4486
  #: classes/gateways/class.pmprogateway_paypalstandard.php:206
4487
  #: classes/gateways/class.pmprogateway_twocheckout.php:203
4488
- #: pages/checkout.php:725 classes/gateways/class.pmprogateway_paypal.php:184
4489
  #: classes/gateways/class.pmprogateway_paypal.php:207
4490
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
4491
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
@@ -4530,7 +4535,7 @@ msgid ""
4530
  msgstr ""
4531
 
4532
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
4533
- #: paid-memberships-pro.php:138
4534
  #: classes/gateways/class.pmprogateway_paypalexpress.php:63
4535
  #: classes/gateways/class.pmprogateway_paypalexpress.php:73
4536
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
@@ -4568,7 +4573,7 @@ msgid "The PayPal Token was lost."
4568
  msgstr ""
4569
 
4570
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
4571
- #: paid-memberships-pro.php:141
4572
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
4573
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:122
4574
  #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
@@ -4585,7 +4590,7 @@ msgid ""
4585
  msgstr ""
4586
 
4587
  #: classes/gateways/class.pmprogateway_stripe.php:169
4588
- #: paid-memberships-pro.php:137
4589
  #: classes/gateways/class.pmprogateway_stripe.php:93
4590
  #: classes/gateways/class.pmprogateway_stripe.php:94
4591
  #: classes/gateways/class.pmprogateway_stripe.php:104
@@ -4752,7 +4757,7 @@ msgid ""
4752
  "at predefined times. Be sure to click Update User after making changes."
4753
  msgstr ""
4754
 
4755
- #: classes/gateways/class.pmprogateway_stripe.php:721 pages/billing.php:370
4756
  #: classes/gateways/class.pmprogateway_stripe.php:578
4757
  #: classes/gateways/class.pmprogateway_stripe.php:579
4758
  #: classes/gateways/class.pmprogateway_stripe.php:589
@@ -4961,7 +4966,7 @@ msgid "Error: Unkown error while refunding charge #%s"
4961
  msgstr ""
4962
 
4963
  #: classes/gateways/class.pmprogateway_twocheckout.php:59
4964
- #: paid-memberships-pro.php:144
4965
  #: classes/gateways/class.pmprogateway_twocheckout.php:53
4966
  #: classes/gateways/class.pmprogateway_twocheckout.php:59
4967
  #: classes/gateways/class.pmprogateway_twocheckout.php:60
@@ -5141,231 +5146,1249 @@ msgstr ""
5141
  msgid "Visit Customer Support Forum"
5142
  msgstr ""
5143
 
5144
- #: includes/currencies.php:17 includes/currencies.php:94
5145
- #: includes/currencies.php:7 includes/currencies.php:17
5146
- #: includes/currencies.php:37 includes/currencies.php:44
5147
- #: includes/currencies.php:64 includes/currencies.php:68
5148
- #: includes/currencies.php:75 includes/currencies.php:85
5149
- #: includes/currencies.php:87 includes/currencies.php:94
5150
- msgid "US Dollars (&#36;)"
5151
  msgstr ""
5152
 
5153
- #: includes/currencies.php:19 includes/currencies.php:97
5154
- #: includes/currencies.php:8 includes/currencies.php:9
5155
- #: includes/currencies.php:19 includes/currencies.php:40
5156
- #: includes/currencies.php:47 includes/currencies.php:67
5157
- #: includes/currencies.php:71 includes/currencies.php:78
5158
- #: includes/currencies.php:88 includes/currencies.php:90
5159
- #: includes/currencies.php:97
5160
- msgid "Euros (&euro;)"
5161
  msgstr ""
5162
 
5163
- #: includes/currencies.php:24 includes/currencies.php:96
5164
- #: includes/currencies.php:9 includes/currencies.php:14
5165
- #: includes/currencies.php:24 includes/currencies.php:39
5166
- #: includes/currencies.php:46 includes/currencies.php:66
5167
- #: includes/currencies.php:70 includes/currencies.php:77
5168
- #: includes/currencies.php:87 includes/currencies.php:89
5169
- #: includes/currencies.php:96
5170
- msgid "Pounds Sterling (&pound;)"
5171
  msgstr ""
5172
 
5173
- #: includes/currencies.php:28 includes/currencies.php:28
5174
- msgid "Argentine Peso (&#36;)"
5175
  msgstr ""
5176
 
5177
- #: includes/currencies.php:29 includes/currencies.php:10
5178
- #: includes/currencies.php:18 includes/currencies.php:28
5179
- #: includes/currencies.php:29
5180
- msgid "Australian Dollars (&#36;)"
5181
  msgstr ""
5182
 
5183
- #: includes/currencies.php:31 includes/currencies.php:20
5184
- #: includes/currencies.php:30 includes/currencies.php:31
5185
- msgid "Brazilian Real (R&#36;)"
5186
  msgstr ""
5187
 
5188
- #: includes/currencies.php:35 includes/currencies.php:95
5189
- #: includes/currencies.php:12 includes/currencies.php:24
5190
- #: includes/currencies.php:34 includes/currencies.php:35
5191
- #: includes/currencies.php:38 includes/currencies.php:45
5192
- #: includes/currencies.php:65 includes/currencies.php:69
5193
- #: includes/currencies.php:76 includes/currencies.php:86
5194
- #: includes/currencies.php:88 includes/currencies.php:95
5195
- msgid "Canadian Dollars (&#36;)"
5196
  msgstr ""
5197
 
5198
- #: includes/currencies.php:36 includes/currencies.php:13
5199
- #: includes/currencies.php:25 includes/currencies.php:35
5200
- #: includes/currencies.php:36
5201
- msgid "Chinese Yuan"
5202
  msgstr ""
5203
 
5204
- #: includes/currencies.php:38 includes/currencies.php:13
5205
- #: includes/currencies.php:14 includes/currencies.php:26
5206
- #: includes/currencies.php:27 includes/currencies.php:37
5207
- #: includes/currencies.php:38
5208
- msgid "Czech Koruna"
5209
  msgstr ""
5210
 
5211
- #: includes/currencies.php:45 includes/currencies.php:14
5212
- #: includes/currencies.php:15 includes/currencies.php:27
5213
- #: includes/currencies.php:34 includes/currencies.php:44
5214
- #: includes/currencies.php:45
5215
- msgid "Danish Krone"
5216
  msgstr ""
5217
 
5218
- #: includes/currencies.php:46 includes/currencies.php:15
5219
- #: includes/currencies.php:16 includes/currencies.php:28
5220
- #: includes/currencies.php:35 includes/currencies.php:45
5221
- #: includes/currencies.php:46
5222
- msgid "Hong Kong Dollar (&#36;)"
5223
  msgstr ""
5224
 
5225
- #: includes/currencies.php:47 includes/currencies.php:16
5226
- #: includes/currencies.php:17 includes/currencies.php:29
5227
- #: includes/currencies.php:36 includes/currencies.php:46
5228
- #: includes/currencies.php:47
5229
- msgid "Hungarian Forint"
5230
  msgstr ""
5231
 
5232
- #: includes/currencies.php:48 includes/currencies.php:18
5233
- #: includes/currencies.php:30 includes/currencies.php:37
5234
- #: includes/currencies.php:47 includes/currencies.php:48
5235
- msgid "Indian Rupee"
5236
  msgstr ""
5237
 
5238
- #: includes/currencies.php:49 includes/currencies.php:19
5239
- #: includes/currencies.php:31 includes/currencies.php:38
5240
- #: includes/currencies.php:48 includes/currencies.php:49
5241
- msgid "Indonesia Rupiah"
5242
  msgstr ""
5243
 
5244
- #: includes/currencies.php:50 includes/currencies.php:17
5245
- #: includes/currencies.php:20 includes/currencies.php:32
5246
- #: includes/currencies.php:39 includes/currencies.php:49
5247
- #: includes/currencies.php:50
5248
- msgid "Israeli Shekel"
5249
  msgstr ""
5250
 
5251
- #: includes/currencies.php:52 includes/currencies.php:18
5252
- #: includes/currencies.php:21 includes/currencies.php:34
5253
- #: includes/currencies.php:41 includes/currencies.php:51
5254
- #: includes/currencies.php:52
5255
- msgid "Japanese Yen (&yen;)"
5256
  msgstr ""
5257
 
5258
- #: includes/currencies.php:57 includes/currencies.php:19
5259
- #: includes/currencies.php:22 includes/currencies.php:38
5260
- #: includes/currencies.php:45 includes/currencies.php:55
5261
- #: includes/currencies.php:56 includes/currencies.php:57
5262
- msgid "Malaysian Ringgits"
5263
  msgstr ""
5264
 
5265
- #: includes/currencies.php:58 includes/currencies.php:20
5266
- #: includes/currencies.php:23 includes/currencies.php:39
5267
- #: includes/currencies.php:46 includes/currencies.php:56
5268
- #: includes/currencies.php:57 includes/currencies.php:58
5269
- msgid "Mexican Peso (&#36;)"
5270
  msgstr ""
5271
 
5272
- #: includes/currencies.php:59 includes/currencies.php:58
5273
- #: includes/currencies.php:59
5274
- msgid "Nigerian Naira (&#8358;)"
5275
  msgstr ""
5276
 
5277
- #: includes/currencies.php:60 includes/currencies.php:21
5278
- #: includes/currencies.php:24 includes/currencies.php:40
5279
- #: includes/currencies.php:47 includes/currencies.php:57
5280
- #: includes/currencies.php:59 includes/currencies.php:60
5281
- msgid "New Zealand Dollar (&#36;)"
5282
  msgstr ""
5283
 
5284
- #: includes/currencies.php:61 includes/currencies.php:22
5285
- #: includes/currencies.php:25 includes/currencies.php:41
5286
- #: includes/currencies.php:48 includes/currencies.php:58
5287
- #: includes/currencies.php:60 includes/currencies.php:61
5288
- msgid "Norwegian Krone"
5289
  msgstr ""
5290
 
5291
- #: includes/currencies.php:62 includes/currencies.php:23
5292
- #: includes/currencies.php:26 includes/currencies.php:42
5293
- #: includes/currencies.php:49 includes/currencies.php:59
5294
- #: includes/currencies.php:61 includes/currencies.php:62
5295
- msgid "Philippine Pesos"
5296
  msgstr ""
5297
 
5298
- #: includes/currencies.php:63 includes/currencies.php:24
5299
- #: includes/currencies.php:27 includes/currencies.php:43
5300
- #: includes/currencies.php:50 includes/currencies.php:60
5301
- #: includes/currencies.php:62 includes/currencies.php:63
5302
- msgid "Polish Zloty"
5303
  msgstr ""
5304
 
5305
- #: includes/currencies.php:65 includes/currencies.php:25
5306
- #: includes/currencies.php:28 includes/currencies.php:45
5307
- #: includes/currencies.php:52 includes/currencies.php:62
5308
- #: includes/currencies.php:64 includes/currencies.php:65
5309
- msgid "Singapore Dollar (&#36;)"
5310
  msgstr ""
5311
 
5312
- #: includes/currencies.php:70 includes/currencies.php:50
5313
- #: includes/currencies.php:57 includes/currencies.php:67
5314
- #: includes/currencies.php:69 includes/currencies.php:70
5315
- msgid "South African Rand (R)"
5316
  msgstr ""
5317
 
5318
- #: includes/currencies.php:75 includes/currencies.php:30
5319
- #: includes/currencies.php:50 includes/currencies.php:54
5320
- #: includes/currencies.php:61 includes/currencies.php:71
5321
- #: includes/currencies.php:73 includes/currencies.php:75
5322
- msgid "South Korean Won"
5323
  msgstr ""
5324
 
5325
- #: includes/currencies.php:78 includes/currencies.php:26
5326
- #: includes/currencies.php:31 includes/currencies.php:51
5327
- #: includes/currencies.php:55 includes/currencies.php:62
5328
- #: includes/currencies.php:72 includes/currencies.php:74
5329
- #: includes/currencies.php:78
5330
- msgid "Swedish Krona"
5331
  msgstr ""
5332
 
5333
- #: includes/currencies.php:79 includes/currencies.php:27
5334
- #: includes/currencies.php:32 includes/currencies.php:52
5335
- #: includes/currencies.php:56 includes/currencies.php:63
5336
- #: includes/currencies.php:73 includes/currencies.php:75
5337
- #: includes/currencies.php:79
5338
- msgid "Swiss Franc"
5339
  msgstr ""
5340
 
5341
- #: includes/currencies.php:80 includes/currencies.php:28
5342
- #: includes/currencies.php:33 includes/currencies.php:53
5343
- #: includes/currencies.php:57 includes/currencies.php:64
5344
- #: includes/currencies.php:74 includes/currencies.php:76
5345
- #: includes/currencies.php:80
5346
- msgid "Taiwan New Dollars"
5347
  msgstr ""
5348
 
5349
- #: includes/currencies.php:81 includes/currencies.php:29
5350
- #: includes/currencies.php:34 includes/currencies.php:54
5351
- #: includes/currencies.php:58 includes/currencies.php:65
5352
- #: includes/currencies.php:75 includes/currencies.php:77
5353
- #: includes/currencies.php:81
5354
- msgid "Thai Baht"
5355
  msgstr ""
5356
 
5357
- #: includes/currencies.php:82 includes/currencies.php:35
5358
- #: includes/currencies.php:55 includes/currencies.php:59
5359
- #: includes/currencies.php:66 includes/currencies.php:76
5360
- #: includes/currencies.php:78 includes/currencies.php:82
5361
- msgid "Turkish Lira"
5362
  msgstr ""
5363
 
5364
- #: includes/currencies.php:84 includes/currencies.php:36
5365
- #: includes/currencies.php:56 includes/currencies.php:60
5366
- #: includes/currencies.php:67 includes/currencies.php:77
5367
- #: includes/currencies.php:79 includes/currencies.php:84
5368
- msgid "Vietnamese Dong"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5369
  msgstr ""
5370
 
5371
  #: includes/functions.php:320 includes/functions.php:455
@@ -5645,6 +6668,7 @@ msgstr ""
5645
 
5646
  #: includes/functions.php:1129 includes/functions.php:907
5647
  #: includes/functions.php:1123 includes/functions.php:1127
 
5648
  #, php-format
5649
  msgid "Error interacting with database: %s"
5650
  msgstr ""
@@ -5668,8 +6692,9 @@ msgstr ""
5668
  #: includes/functions.php:948 includes/functions.php:953
5669
  #: includes/functions.php:986 includes/functions.php:987
5670
  #: includes/functions.php:992 includes/functions.php:1198
5671
- #: includes/functions.php:1202 includes/functions.php:1237
5672
- #: includes/functions.php:1241
 
5673
  msgid "Membership level not found."
5674
  msgstr ""
5675
 
@@ -5681,6 +6706,7 @@ msgstr ""
5681
  #: includes/functions.php:1290 includes/functions.php:1356
5682
  #: includes/functions.php:1357 includes/functions.php:1362
5683
  #: includes/functions.php:1605 includes/functions.php:1609
 
5684
  msgid "No code was given to check."
5685
  msgstr ""
5686
 
@@ -5695,7 +6721,7 @@ msgstr ""
5695
  #: includes/functions.php:1205 includes/functions.php:1299
5696
  #: includes/functions.php:1365 includes/functions.php:1366
5697
  #: includes/functions.php:1371 includes/functions.php:1614
5698
- #: includes/functions.php:1618
5699
  msgid "The discount code could not be found."
5700
  msgstr ""
5701
 
@@ -5710,7 +6736,7 @@ msgstr ""
5710
  #: includes/functions.php:1220 includes/functions.php:1314
5711
  #: includes/functions.php:1380 includes/functions.php:1381
5712
  #: includes/functions.php:1386 includes/functions.php:1629
5713
- #: includes/functions.php:1633
5714
  #, php-format
5715
  msgid "This discount code goes into effect on %s."
5716
  msgstr ""
@@ -5726,7 +6752,7 @@ msgstr ""
5726
  #: includes/functions.php:1227 includes/functions.php:1321
5727
  #: includes/functions.php:1387 includes/functions.php:1388
5728
  #: includes/functions.php:1393 includes/functions.php:1636
5729
- #: includes/functions.php:1640
5730
  #, php-format
5731
  msgid "This discount code expired on %s."
5732
  msgstr ""
@@ -5742,7 +6768,7 @@ msgstr ""
5742
  #: includes/functions.php:1237 includes/functions.php:1331
5743
  #: includes/functions.php:1397 includes/functions.php:1398
5744
  #: includes/functions.php:1403 includes/functions.php:1646
5745
- #: includes/functions.php:1650
5746
  msgid "This discount code is no longer valid."
5747
  msgstr ""
5748
 
@@ -5757,6 +6783,7 @@ msgstr ""
5757
  #: includes/functions.php:1344 includes/functions.php:1410
5758
  #: includes/functions.php:1411 includes/functions.php:1416
5759
  #: includes/functions.php:1666 includes/functions.php:1670
 
5760
  msgid "This discount code does not apply to this membership level."
5761
  msgstr ""
5762
 
@@ -5771,7 +6798,7 @@ msgstr ""
5771
  #: includes/functions.php:1276 includes/functions.php:1370
5772
  #: includes/functions.php:1436 includes/functions.php:1442
5773
  #: includes/functions.php:1448 includes/functions.php:1703
5774
- #: includes/functions.php:1707
5775
  msgid "This discount code is okay."
5776
  msgstr ""
5777
 
@@ -5786,7 +6813,7 @@ msgstr ""
5786
  #: includes/functions.php:1395 includes/functions.php:1397
5787
  #: includes/functions.php:1463 includes/functions.php:1469
5788
  #: includes/functions.php:1475 includes/functions.php:1730
5789
- #: includes/functions.php:1734
5790
  msgid "and"
5791
  msgstr ""
5792
 
@@ -5802,7 +6829,7 @@ msgstr ""
5802
  #: includes/functions.php:1624 includes/functions.php:1691
5803
  #: includes/functions.php:1697 includes/functions.php:1703
5804
  #: includes/functions.php:2015 includes/functions.php:2019
5805
- #: includes/functions.php:2022
5806
  msgid "Sign Up for !!name!! Now"
5807
  msgstr ""
5808
 
@@ -5818,7 +6845,7 @@ msgstr ""
5818
  #: includes/functions.php:1630 includes/functions.php:1697
5819
  #: includes/functions.php:1703 includes/functions.php:1709
5820
  #: includes/functions.php:2021 includes/functions.php:2025
5821
- #: includes/functions.php:2028
5822
  msgid "Please specify a level id."
5823
  msgstr ""
5824
 
@@ -5877,60 +6904,64 @@ msgid "Verify Key"
5877
  msgstr ""
5878
 
5879
  #: includes/license.php:298 includes/license.php:273 includes/license.php:278
5880
- #: includes/license.php:288 includes/license.php:291
5881
  msgid "Invalid PMPro License Key."
5882
  msgstr ""
5883
 
5884
  #: includes/license.php:301 includes/license.php:273 includes/license.php:278
5885
- #: includes/license.php:288 includes/license.php:291
5886
  msgid ""
5887
  "If you're running Paid Memberships Pro on a production website, we recommend "
5888
  "an annual support license."
5889
  msgstr ""
5890
 
5891
  #: includes/license.php:302 includes/license.php:274 includes/license.php:279
5892
- #: includes/license.php:289 includes/license.php:292
5893
  msgid "Dismiss"
5894
  msgstr ""
5895
 
5896
  #: includes/license.php:302 includes/license.php:274 includes/license.php:279
5897
- #: includes/license.php:289 includes/license.php:292
5898
  msgid "More Info"
5899
  msgstr ""
5900
 
5901
  #: includes/localization.php:33 includes/localization.php:23
5902
- #: includes/localization.php:26
5903
  msgid "Day"
5904
  msgstr ""
5905
 
5906
  #: includes/localization.php:35 includes/localization.php:25
5907
- #: includes/localization.php:28
5908
  msgid "Week"
5909
  msgstr ""
5910
 
5911
  #: includes/localization.php:37 includes/localization.php:27
5912
- #: includes/localization.php:30
5913
  msgid "Month"
5914
  msgstr ""
5915
 
5916
  #: includes/localization.php:39 includes/localization.php:29
5917
- #: includes/localization.php:32
5918
  msgid "Year"
5919
  msgstr ""
5920
 
5921
  #: includes/localization.php:44 includes/localization.php:37
 
5922
  msgid "Days"
5923
  msgstr ""
5924
 
5925
  #: includes/localization.php:46 includes/localization.php:39
 
5926
  msgid "Weeks"
5927
  msgstr ""
5928
 
5929
  #: includes/localization.php:48 includes/localization.php:41
 
5930
  msgid "Months"
5931
  msgstr ""
5932
 
5933
  #: includes/localization.php:50 includes/localization.php:43
 
5934
  msgid "Years"
5935
  msgstr ""
5936
 
@@ -6017,18 +7048,18 @@ msgid ""
6017
  "register to read."
6018
  msgstr ""
6019
 
6020
- #: pages/billing.php:25 pages/billing.php:14 pages/billing.php:23
6021
  #: pages/billing.php:25 pages/billing.php:26 pages/billing.php:28
6022
  #, php-format
6023
  msgid "Logged in as <strong>%s</strong>."
6024
  msgstr ""
6025
 
6026
- #: pages/billing.php:25 pages/billing.php:14 pages/billing.php:23
6027
  #: pages/billing.php:25 pages/billing.php:26 pages/billing.php:28
6028
  msgid "logout"
6029
  msgstr ""
6030
 
6031
- #: pages/billing.php:27 pages/cancel.php:61 pages/invoice.php:109
6032
  #: pages/levels.php:35 shortcodes/pmpro_account.php:44
6033
  #: shortcodes/pmpro_account.php:128 pages/account.php:12 pages/account.php:18
6034
  #: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
@@ -6041,33 +7072,33 @@ msgstr ""
6041
  msgid "Level"
6042
  msgstr ""
6043
 
6044
- #: pages/billing.php:29 pages/account.php:14 pages/billing.php:18
6045
  #: pages/billing.php:27 pages/billing.php:29 pages/billing.php:30
6046
  #: pages/billing.php:32
6047
  msgid "Membership Fee"
6048
  msgstr ""
6049
 
6050
- #: pages/billing.php:33 pages/account.php:18 pages/billing.php:22
6051
  #: pages/billing.php:31 pages/billing.php:33 pages/billing.php:34
6052
  #: pages/billing.php:36 pages/levels.php:70
6053
  #, php-format
6054
  msgid "%s every %d %s."
6055
  msgstr ""
6056
 
6057
- #: pages/billing.php:35 pages/account.php:20 pages/billing.php:24
6058
  #: pages/billing.php:33 pages/billing.php:35 pages/billing.php:36
6059
  #: pages/billing.php:38 pages/levels.php:66
6060
  #, php-format
6061
  msgid "%s per %s."
6062
  msgstr ""
6063
 
6064
- #: pages/billing.php:44 pages/account.php:25 pages/account.php:29
6065
  #: pages/billing.php:29 pages/billing.php:33 pages/billing.php:42
6066
  #: pages/billing.php:44 pages/billing.php:45 pages/billing.php:47
6067
  msgid "Duration"
6068
  msgstr ""
6069
 
6070
- #: pages/billing.php:54 pages/billing.php:39 pages/billing.php:43
6071
  #: pages/billing.php:52 pages/billing.php:54 pages/billing.php:55
6072
  #: pages/billing.php:57
6073
  msgid ""
@@ -6075,7 +7106,7 @@ msgid ""
6075
  "paypal.com\">login to PayPal here</a> to update your billing information."
6076
  msgstr ""
6077
 
6078
- #: pages/billing.php:84 pages/checkout.php:333 pages/billing.php:65
6079
  #: pages/billing.php:69 pages/billing.php:78 pages/billing.php:81
6080
  #: pages/billing.php:83 pages/billing.php:84 pages/billing.php:87
6081
  #: pages/checkout.php:305 pages/checkout.php:307 pages/checkout.php:309
@@ -6084,7 +7115,7 @@ msgstr ""
6084
  msgid "First Name"
6085
  msgstr ""
6086
 
6087
- #: pages/billing.php:88 pages/checkout.php:337 pages/billing.php:69
6088
  #: pages/billing.php:73 pages/billing.php:82 pages/billing.php:85
6089
  #: pages/billing.php:87 pages/billing.php:88 pages/billing.php:91
6090
  #: pages/checkout.php:309 pages/checkout.php:311 pages/checkout.php:313
@@ -6093,7 +7124,7 @@ msgstr ""
6093
  msgid "Last Name"
6094
  msgstr ""
6095
 
6096
- #: pages/billing.php:92 pages/checkout.php:341 pages/billing.php:73
6097
  #: pages/billing.php:77 pages/billing.php:86 pages/billing.php:89
6098
  #: pages/billing.php:91 pages/billing.php:92 pages/billing.php:95
6099
  #: pages/checkout.php:313 pages/checkout.php:315 pages/checkout.php:317
@@ -6102,7 +7133,7 @@ msgstr ""
6102
  msgid "Address 1"
6103
  msgstr ""
6104
 
6105
- #: pages/billing.php:96 pages/checkout.php:345 pages/billing.php:77
6106
  #: pages/billing.php:81 pages/billing.php:90 pages/billing.php:93
6107
  #: pages/billing.php:95 pages/billing.php:96 pages/billing.php:99
6108
  #: pages/checkout.php:317 pages/checkout.php:319 pages/checkout.php:321
@@ -6111,7 +7142,7 @@ msgstr ""
6111
  msgid "Address 2"
6112
  msgstr ""
6113
 
6114
- #: pages/billing.php:106 pages/checkout.php:355 pages/billing.php:87
6115
  #: pages/billing.php:91 pages/billing.php:100 pages/billing.php:103
6116
  #: pages/billing.php:105 pages/billing.php:106 pages/billing.php:109
6117
  #: pages/checkout.php:327 pages/checkout.php:329 pages/checkout.php:331
@@ -6120,7 +7151,7 @@ msgstr ""
6120
  msgid "City"
6121
  msgstr ""
6122
 
6123
- #: pages/billing.php:110 pages/checkout.php:359 pages/billing.php:91
6124
  #: pages/billing.php:95 pages/billing.php:104 pages/billing.php:107
6125
  #: pages/billing.php:109 pages/billing.php:110 pages/billing.php:113
6126
  #: pages/checkout.php:331 pages/checkout.php:333 pages/checkout.php:335
@@ -6129,7 +7160,7 @@ msgstr ""
6129
  msgid "State"
6130
  msgstr ""
6131
 
6132
- #: pages/billing.php:114 pages/checkout.php:363 pages/billing.php:95
6133
  #: pages/billing.php:99 pages/billing.php:108 pages/billing.php:111
6134
  #: pages/billing.php:113 pages/billing.php:114 pages/billing.php:117
6135
  #: pages/checkout.php:335 pages/checkout.php:337 pages/checkout.php:339
@@ -6138,7 +7169,7 @@ msgstr ""
6138
  msgid "Postal Code"
6139
  msgstr ""
6140
 
6141
- #: pages/billing.php:123 pages/checkout.php:372 pages/billing.php:104
6142
  #: pages/billing.php:108 pages/billing.php:117 pages/billing.php:120
6143
  #: pages/billing.php:122 pages/billing.php:123 pages/billing.php:126
6144
  #: pages/checkout.php:344 pages/checkout.php:346 pages/checkout.php:348
@@ -6147,7 +7178,7 @@ msgstr ""
6147
  msgid "City, State Zip"
6148
  msgstr ""
6149
 
6150
- #: pages/billing.php:176 pages/checkout.php:425 pages/billing.php:157
6151
  #: pages/billing.php:161 pages/billing.php:170 pages/billing.php:173
6152
  #: pages/billing.php:175 pages/billing.php:176 pages/billing.php:179
6153
  #: pages/checkout.php:397 pages/checkout.php:399 pages/checkout.php:401
@@ -6156,7 +7187,7 @@ msgstr ""
6156
  msgid "Country"
6157
  msgstr ""
6158
 
6159
- #: pages/billing.php:201 pages/checkout.php:450 pages/billing.php:182
6160
  #: pages/billing.php:186 pages/billing.php:195 pages/billing.php:198
6161
  #: pages/billing.php:200 pages/billing.php:201 pages/billing.php:204
6162
  #: pages/checkout.php:422 pages/checkout.php:424 pages/checkout.php:426
@@ -6165,7 +7196,7 @@ msgstr ""
6165
  msgid "Phone"
6166
  msgstr ""
6167
 
6168
- #: pages/billing.php:212 pages/checkout.php:227 pages/checkout.php:464
6169
  #: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
6170
  #: pages/billing.php:209 pages/billing.php:211 pages/billing.php:212
6171
  #: pages/billing.php:215 pages/checkout.php:204 pages/checkout.php:207
@@ -6177,7 +7208,7 @@ msgstr ""
6177
  msgid "E-mail Address"
6178
  msgstr ""
6179
 
6180
- #: pages/billing.php:216 pages/checkout.php:473 pages/billing.php:197
6181
  #: pages/billing.php:201 pages/billing.php:210 pages/billing.php:213
6182
  #: pages/billing.php:215 pages/billing.php:216 pages/billing.php:219
6183
  #: pages/checkout.php:445 pages/checkout.php:447 pages/checkout.php:449
@@ -6186,20 +7217,20 @@ msgstr ""
6186
  msgid "Confirm E-mail"
6187
  msgstr ""
6188
 
6189
- #: pages/billing.php:244 pages/billing.php:217 pages/billing.php:221
6190
  #: pages/billing.php:230 pages/billing.php:231 pages/billing.php:234
6191
  #: pages/billing.php:238 pages/billing.php:244 pages/billing.php:247
6192
  msgid "Credit Card Information"
6193
  msgstr ""
6194
 
6195
- #: pages/billing.php:245 pages/billing.php:217 pages/billing.php:221
6196
  #: pages/billing.php:230 pages/billing.php:232 pages/billing.php:235
6197
  #: pages/billing.php:239 pages/billing.php:245 pages/billing.php:248
6198
  #, php-format
6199
  msgid "We accept %s"
6200
  msgstr ""
6201
 
6202
- #: pages/billing.php:387 pages/billing.php:309 pages/billing.php:313
6203
  #: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
6204
  #: pages/billing.php:360 pages/billing.php:364 pages/billing.php:387
6205
  #: pages/billing.php:408 pages/billing.php:417 pages/billing.php:422
@@ -6243,25 +7274,25 @@ msgstr ""
6243
  msgid "Click here to go to the home page."
6244
  msgstr ""
6245
 
6246
- #: pages/checkout.php:35 pages/checkout.php:26 pages/checkout.php:27
6247
  #: pages/checkout.php:28 pages/checkout.php:35
6248
  msgid ""
6249
  "Almost done. Review the membership information and pricing below then "
6250
  "<strong>click the \"Complete Payment\" button</strong> to finish your order."
6251
  msgstr ""
6252
 
6253
- #: pages/checkout.php:43 pages/checkout.php:33 pages/checkout.php:34
6254
  #: pages/checkout.php:35 pages/checkout.php:42 pages/checkout.php:43
6255
  msgid "change"
6256
  msgstr ""
6257
 
6258
- #: pages/checkout.php:51 pages/checkout.php:41 pages/checkout.php:42
6259
  #: pages/checkout.php:43 pages/checkout.php:50 pages/checkout.php:51
6260
  #, php-format
6261
  msgid "You have selected the <strong>%s</strong> membership level."
6262
  msgstr ""
6263
 
6264
- #: pages/checkout.php:68 pages/checkout.php:51 pages/checkout.php:53
6265
  #: pages/checkout.php:60 pages/checkout.php:61 pages/checkout.php:68
6266
  #, php-format
6267
  msgid ""
@@ -6269,7 +7300,7 @@ msgid ""
6269
  "been applied to your order.</p>"
6270
  msgstr ""
6271
 
6272
- #: pages/checkout.php:79 services/applydiscountcode.php:92
6273
  #: pages/checkout.php:62 pages/checkout.php:63 pages/checkout.php:64
6274
  #: pages/checkout.php:71 pages/checkout.php:72 pages/checkout.php:79
6275
  #: services/applydiscountcode.php:74 services/applydiscountcode.php:75
@@ -6278,61 +7309,61 @@ msgstr ""
6278
  msgid "Click here to change your discount code"
6279
  msgstr ""
6280
 
6281
- #: pages/checkout.php:81 pages/checkout.php:64 pages/checkout.php:65
6282
  #: pages/checkout.php:66 pages/checkout.php:73 pages/checkout.php:74
6283
  #: pages/checkout.php:81
6284
  msgid "Click here to enter your discount code"
6285
  msgstr ""
6286
 
6287
- #: pages/checkout.php:81 pages/checkout.php:64 pages/checkout.php:65
6288
  #: pages/checkout.php:66 pages/checkout.php:73 pages/checkout.php:74
6289
  #: pages/checkout.php:81
6290
  msgid "Do you have a discount code?"
6291
  msgstr ""
6292
 
6293
- #: pages/checkout.php:182 pages/checkout.php:160 pages/checkout.php:163
6294
  #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:173
6295
  #: pages/checkout.php:175 pages/checkout.php:182
6296
  msgid "Account Information"
6297
  msgstr ""
6298
 
6299
- #: pages/checkout.php:183 pages/checkout.php:160 pages/checkout.php:163
6300
  #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:174
6301
  #: pages/checkout.php:176 pages/checkout.php:183
6302
  msgid "Already have an account?"
6303
  msgstr ""
6304
 
6305
- #: pages/checkout.php:183 pages/checkout.php:160 pages/checkout.php:163
6306
  #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:174
6307
  #: pages/checkout.php:176 pages/checkout.php:183
6308
  msgid "Log in here"
6309
  msgstr ""
6310
 
6311
- #: pages/checkout.php:209 pages/checkout.php:186 pages/checkout.php:189
6312
  #: pages/checkout.php:191 pages/checkout.php:198 pages/checkout.php:200
6313
  #: pages/checkout.php:202 pages/checkout.php:209
6314
  msgid "Confirm Password"
6315
  msgstr ""
6316
 
6317
- #: pages/checkout.php:236 pages/checkout.php:213 pages/checkout.php:216
6318
  #: pages/checkout.php:218 pages/checkout.php:225 pages/checkout.php:227
6319
  #: pages/checkout.php:229 pages/checkout.php:236
6320
  msgid "Confirm E-mail Address"
6321
  msgstr ""
6322
 
6323
- #: pages/checkout.php:255 pages/checkout.php:232 pages/checkout.php:235
6324
  #: pages/checkout.php:237 pages/checkout.php:244 pages/checkout.php:246
6325
  #: pages/checkout.php:248 pages/checkout.php:255
6326
  msgid "Full Name"
6327
  msgstr ""
6328
 
6329
- #: pages/checkout.php:256 pages/checkout.php:233 pages/checkout.php:236
6330
  #: pages/checkout.php:238 pages/checkout.php:245 pages/checkout.php:247
6331
  #: pages/checkout.php:249 pages/checkout.php:256
6332
  msgid "LEAVE THIS BLANK"
6333
  msgstr ""
6334
 
6335
- #: pages/checkout.php:280 pages/checkout.php:257 pages/checkout.php:260
6336
  #: pages/checkout.php:262 pages/checkout.php:269 pages/checkout.php:271
6337
  #: pages/checkout.php:273 pages/checkout.php:280
6338
  #, php-format
@@ -6341,19 +7372,19 @@ msgid ""
6341
  "different account for this membership, <a href=\"%s\">log out now</a>."
6342
  msgstr ""
6343
 
6344
- #: pages/checkout.php:296 pages/checkout.php:276 pages/checkout.php:278
6345
  #: pages/checkout.php:285 pages/checkout.php:287 pages/checkout.php:289
6346
  #: pages/checkout.php:292 pages/checkout.php:296 pages/checkout.php:299
6347
  msgid "Choose your Payment Method"
6348
  msgstr ""
6349
 
6350
- #: pages/checkout.php:305 pages/checkout.php:284 pages/checkout.php:286
6351
  #: pages/checkout.php:293 pages/checkout.php:296 pages/checkout.php:298
6352
  #: pages/checkout.php:300 pages/checkout.php:305 pages/checkout.php:307
6353
  msgid "Check Out with a Credit Card Here"
6354
  msgstr ""
6355
 
6356
- #: pages/checkout.php:693 pages/checkout.php:277 pages/checkout.php:284
6357
  #: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
6358
  #: pages/checkout.php:681 pages/checkout.php:686 pages/checkout.php:690
6359
  #: pages/checkout.php:692 pages/checkout.php:693 pages/checkout.php:696
@@ -6362,7 +7393,7 @@ msgstr ""
6362
  msgid "I agree to the %s"
6363
  msgstr ""
6364
 
6365
- #: pages/checkout.php:713 pages/checkout.php:667 pages/checkout.php:674
6366
  #: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
6367
  #: pages/checkout.php:701 pages/checkout.php:706 pages/checkout.php:710
6368
  #: pages/checkout.php:712 pages/checkout.php:713 pages/checkout.php:716
@@ -6370,7 +7401,7 @@ msgstr ""
6370
  msgid "Complete Payment"
6371
  msgstr ""
6372
 
6373
- #: pages/checkout.php:735 pages/checkout.php:687 pages/checkout.php:694
6374
  #: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
6375
  #: pages/checkout.php:723 pages/checkout.php:728 pages/checkout.php:732
6376
  #: pages/checkout.php:734 pages/checkout.php:735 pages/checkout.php:738
@@ -6515,7 +7546,7 @@ msgstr ""
6515
  msgid "&larr; Return to Home"
6516
  msgstr ""
6517
 
6518
- #: paid-memberships-pro.php:135 adminpages/orders.php:398
6519
  #: adminpages/orders.php:448 paid-memberships-pro.php:115
6520
  #: paid-memberships-pro.php:116 paid-memberships-pro.php:123
6521
  #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
@@ -6524,7 +7555,7 @@ msgstr ""
6524
  msgid "Testing Only"
6525
  msgstr ""
6526
 
6527
- #: paid-memberships-pro.php:140 paid-memberships-pro.php:120
6528
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:128
6529
  #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
6530
  #: paid-memberships-pro.php:131 paid-memberships-pro.php:133
@@ -6532,7 +7563,7 @@ msgstr ""
6532
  msgid "PayPal Payflow Pro/PayPal Pro"
6533
  msgstr ""
6534
 
6535
- #: paid-memberships-pro.php:145 paid-memberships-pro.php:125
6536
  #: paid-memberships-pro.php:126 paid-memberships-pro.php:133
6537
  #: paid-memberships-pro.php:134 paid-memberships-pro.php:135
6538
  #: paid-memberships-pro.php:136 paid-memberships-pro.php:138
@@ -6540,7 +7571,7 @@ msgstr ""
6540
  msgid "Cybersource"
6541
  msgstr ""
6542
 
6543
- #: paid-memberships-pro.php:166 paid-memberships-pro.php:156
6544
  #: paid-memberships-pro.php:157 paid-memberships-pro.php:159
6545
  #: paid-memberships-pro.php:166
6546
  msgid "Once a month"
@@ -6623,7 +7654,7 @@ msgid "Error updating billing information."
6623
  msgstr ""
6624
 
6625
  #: preheaders/cancel.php:60 preheaders/cancel.php:24 preheaders/cancel.php:25
6626
- #: preheaders/cancel.php:28 preheaders/cancel.php:59
6627
  msgid "Your membership has been cancelled."
6628
  msgstr ""
6629
 
 
 
 
 
1
  #
2
+ # Hi there! Details on how to help out translating Paid Memberships Pro can be found at:
3
+ # http://www.paidmembershipspro.com/documentation/languages/
4
+ #
5
  msgid ""
6
  msgstr ""
7
+ "Project-Id-Version: paid-memberships-pro\n"
8
  "Report-Msgid-Bugs-To: jason@strangerstudios.com\n"
9
+ "POT-Creation-Date: 2017-06-03 09:18-0400\n"
10
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
11
+ "Last-Translator: \n"
12
+ "Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
844
 
845
  #: adminpages/discountcodes.php:442
846
  #: classes/gateways/class.pmprogateway_braintree.php:423
847
+ #: classes/gateways/class.pmprogateway_stripe.php:597 pages/billing.php:342
848
+ #: pages/checkout.php:585 adminpages/discountcodes.php:367
849
  #: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
850
  #: adminpages/discountcodes.php:372 adminpages/discountcodes.php:377
851
  #: adminpages/discountcodes.php:442
1711
  msgstr ""
1712
 
1713
  #: adminpages/membershiplevels.php:530 adminpages/orders.php:796
1714
+ #: pages/billing.php:397 pages/cancel.php:84 shortcodes/pmpro_account.php:72
1715
  #: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:508
1716
  #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:518
1717
  #: adminpages/membershiplevels.php:530 adminpages/orders.php:511
1910
  msgid "%d members found."
1911
  msgstr ""
1912
 
1913
+ #: adminpages/memberslist.php:165 pages/checkout.php:194
1914
  #: shortcodes/pmpro_account.php:110 adminpages/memberslist.php:112
1915
  #: adminpages/memberslist.php:145 adminpages/memberslist.php:155
1916
  #: adminpages/memberslist.php:165 pages/account.php:51 pages/account.php:55
1934
  msgid "Last&nbsp;Name"
1935
  msgstr ""
1936
 
1937
+ #: adminpages/memberslist.php:170 pages/billing.php:103 pages/checkout.php:329
1938
  #: pages/confirmation.php:67 pages/invoice.php:48
1939
  #: adminpages/memberslist.php:117 adminpages/memberslist.php:150
1940
  #: adminpages/memberslist.php:160 adminpages/memberslist.php:170
2180
 
2181
  #: adminpages/orders.php:563
2182
  #: classes/gateways/class.pmprogateway_braintree.php:406
2183
+ #: classes/gateways/class.pmprogateway_stripe.php:549 pages/billing.php:294
2184
+ #: pages/checkout.php:537 adminpages/orders.php:339 adminpages/orders.php:389
2185
  #: adminpages/orders.php:461 adminpages/orders.php:490
2186
  #: adminpages/orders.php:532 adminpages/orders.php:563
2187
  #: classes/gateways/class.pmprogateway_braintree.php:291
2492
  msgstr ""
2493
 
2494
  #: adminpages/orders.php:1138 includes/init.php:244 includes/profile.php:36
2495
+ #: pages/checkout.php:45 pages/confirmation.php:53 pages/confirmation.php:70
2496
  #: pages/confirmation.php:116 pages/invoice.php:28 pages/invoice.php:51
2497
  #: adminpages/orders.php:601 adminpages/orders.php:904
2498
  #: adminpages/orders.php:914 adminpages/orders.php:941
2854
  msgid "Sales Tax"
2855
  msgstr ""
2856
 
2857
+ #: adminpages/paymentsettings.php:188 pages/billing.php:123
2858
  #: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:398
2859
  #: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
2860
  #: adminpages/paymentsettings.php:445 pages/billing.php:78
3251
  msgid "Update complete."
3252
  msgstr ""
3253
 
3254
+ #: classes/class-deny-network-activation.php:45
3255
+ #, php-format
3256
+ msgid ""
3257
+ "The %s plugin should not be network activated. Activate on each individual "
3258
+ "site's plugin page."
3259
+ msgstr ""
3260
+
3261
  #: classes/class.memberorder.php:729 classes/class.memberorder.php:553
3262
  #: classes/class.memberorder.php:561 classes/class.memberorder.php:564
3263
  #: classes/class.memberorder.php:573 classes/class.memberorder.php:644
3305
  #: classes/class.pmproemail.php:378 classes/class.pmproemail.php:696
3306
  #: classes/class.pmproemail.php:698
3307
  #: classes/gateways/class.pmprogateway_braintree.php:464
3308
+ #: classes/gateways/class.pmprogateway_stripe.php:638 pages/checkout.php:86
3309
+ #: pages/checkout.php:96 pages/checkout.php:622 pages/confirmation.php:58
3310
  #: pages/invoice.php:33 classes/class.pmproemail.php:216
3311
  #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
3312
  #: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
3639
  msgstr ""
3640
 
3641
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
3642
+ #: paid-memberships-pro.php:134
3643
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
3644
  #: paid-memberships-pro.php:122 paid-memberships-pro.php:123
3645
  #: paid-memberships-pro.php:130 paid-memberships-pro.php:131
3708
  msgstr ""
3709
 
3710
  #: classes/gateways/class.pmprogateway_braintree.php:172
3711
+ #: paid-memberships-pro.php:135
3712
  #: classes/gateways/class.pmprogateway_braintree.php:63
3713
  #: classes/gateways/class.pmprogateway_braintree.php:76
3714
  #: classes/gateways/class.pmprogateway_braintree.php:77
3820
  msgstr ""
3821
 
3822
  #: classes/gateways/class.pmprogateway_braintree.php:383
3823
+ #: classes/gateways/class.pmprogateway_stripe.php:526 pages/checkout.php:513
3824
  #: classes/gateways/class.pmprogateway_braintree.php:270
3825
  #: classes/gateways/class.pmprogateway_braintree.php:283
3826
  #: classes/gateways/class.pmprogateway_braintree.php:285
3848
  msgstr ""
3849
 
3850
  #: classes/gateways/class.pmprogateway_braintree.php:384
3851
+ #: classes/gateways/class.pmprogateway_stripe.php:527 pages/checkout.php:514
3852
  #: classes/gateways/class.pmprogateway_braintree.php:270
3853
  #: classes/gateways/class.pmprogateway_braintree.php:283
3854
  #: classes/gateways/class.pmprogateway_braintree.php:285
3877
  msgstr ""
3878
 
3879
  #: classes/gateways/class.pmprogateway_braintree.php:418
3880
+ #: classes/gateways/class.pmprogateway_stripe.php:592 pages/billing.php:337
3881
+ #: pages/checkout.php:580
3882
  #: classes/gateways/class.pmprogateway_braintree.php:303
3883
  #: classes/gateways/class.pmprogateway_braintree.php:316
3884
  #: classes/gateways/class.pmprogateway_braintree.php:318
3909
  msgstr ""
3910
 
3911
  #: classes/gateways/class.pmprogateway_braintree.php:455
3912
+ #: classes/gateways/class.pmprogateway_stripe.php:629 pages/billing.php:380
3913
+ #: pages/checkout.php:615
3914
  #: classes/gateways/class.pmprogateway_braintree.php:340
3915
  #: classes/gateways/class.pmprogateway_braintree.php:353
3916
  #: classes/gateways/class.pmprogateway_braintree.php:355
3942
  msgstr ""
3943
 
3944
  #: classes/gateways/class.pmprogateway_braintree.php:456
3945
+ #: classes/gateways/class.pmprogateway_stripe.php:630 pages/billing.php:381
3946
+ #: pages/checkout.php:616
3947
  #: classes/gateways/class.pmprogateway_braintree.php:341
3948
  #: classes/gateways/class.pmprogateway_braintree.php:354
3949
  #: classes/gateways/class.pmprogateway_braintree.php:356
3975
  msgstr ""
3976
 
3977
  #: classes/gateways/class.pmprogateway_braintree.php:466
3978
+ #: classes/gateways/class.pmprogateway_stripe.php:640 pages/checkout.php:98
3979
+ #: pages/checkout.php:624
3980
  #: classes/gateways/class.pmprogateway_braintree.php:351
3981
  #: classes/gateways/class.pmprogateway_braintree.php:364
3982
  #: classes/gateways/class.pmprogateway_braintree.php:366
4008
  #: classes/gateways/class.pmprogateway_braintree.php:524
4009
  #: classes/gateways/class.pmprogateway_braintree.php:541
4010
  #: classes/gateways/class.pmprogateway_braintree.php:623
4011
+ #: classes/gateways/class.pmprogateway_braintree.php:782
4012
+ #: classes/gateways/class.pmprogateway_braintree.php:887
4013
+ #: classes/gateways/class.pmprogateway_braintree.php:907
4014
  #: classes/gateways/class.pmprogateway_braintree.php:524
4015
  #: classes/gateways/class.pmprogateway_braintree.php:541
4016
  #: classes/gateways/class.pmprogateway_braintree.php:623
4074
  msgid "Error during charge:"
4075
  msgstr ""
4076
 
4077
+ #: classes/gateways/class.pmprogateway_braintree.php:703
4078
  #: classes/gateways/class.pmprogateway_braintree.php:198
4079
  #: classes/gateways/class.pmprogateway_braintree.php:221
4080
  #: classes/gateways/class.pmprogateway_braintree.php:566
4088
  msgid "Failed to update customer."
4089
  msgstr ""
4090
 
4091
+ #: classes/gateways/class.pmprogateway_braintree.php:751
4092
  #: classes/gateways/class.pmprogateway_braintree.php:246
4093
  #: classes/gateways/class.pmprogateway_braintree.php:269
4094
  #: classes/gateways/class.pmprogateway_braintree.php:614
4102
  msgid "Failed to create customer."
4103
  msgstr ""
4104
 
4105
+ #: classes/gateways/class.pmprogateway_braintree.php:758
4106
  #: classes/gateways/class.pmprogateway_braintree.php:253
4107
  #: classes/gateways/class.pmprogateway_braintree.php:276
4108
  #: classes/gateways/class.pmprogateway_braintree.php:621
4116
  msgid "Error creating customer record with Braintree:"
4117
  msgstr ""
4118
 
4119
+ #: classes/gateways/class.pmprogateway_braintree.php:863
4120
  #: classes/gateways/class.pmprogateway_braintree.php:344
4121
  #: classes/gateways/class.pmprogateway_braintree.php:345
4122
  #: classes/gateways/class.pmprogateway_braintree.php:376
4131
  msgid "Error subscribing customer to plan with Braintree:"
4132
  msgstr ""
4133
 
4134
+ #: classes/gateways/class.pmprogateway_braintree.php:878
4135
  #: classes/gateways/class.pmprogateway_braintree.php:359
4136
  #: classes/gateways/class.pmprogateway_braintree.php:360
4137
  #: classes/gateways/class.pmprogateway_braintree.php:391
4146
  msgid "Failed to subscribe with Braintree:"
4147
  msgstr ""
4148
 
4149
+ #: classes/gateways/class.pmprogateway_braintree.php:926
4150
+ #: classes/gateways/class.pmprogateway_braintree.php:939
4151
+ #: classes/gateways/class.pmprogateway_braintree.php:946
4152
  #: classes/gateways/class.pmprogateway_braintree.php:397
4153
  #: classes/gateways/class.pmprogateway_braintree.php:398
4154
  #: classes/gateways/class.pmprogateway_braintree.php:410
4194
  msgstr ""
4195
 
4196
  #: classes/gateways/class.pmprogateway_check.php:49
4197
+ #: paid-memberships-pro.php:128 adminpages/orders.php:399
4198
  #: adminpages/orders.php:449 adminpages/paymentsettings.php:157
4199
  #: adminpages/paymentsettings.php:159
4200
  #: classes/gateways/class.pmprogateway_check.php:48
4281
  msgstr ""
4282
 
4283
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
4284
+ #: pages/checkout.php:203 adminpages/paymentsettings.php:219
4285
  #: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:228
4286
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
4287
  #: pages/checkout.php:177 pages/checkout.php:180 pages/checkout.php:182
4317
  msgstr ""
4318
 
4319
  #: classes/gateways/class.pmprogateway_paypal.php:68
4320
+ #: paid-memberships-pro.php:131
4321
  #: classes/gateways/class.pmprogateway_paypal.php:57
4322
  #: classes/gateways/class.pmprogateway_paypal.php:68
4323
  #: paid-memberships-pro.php:119 paid-memberships-pro.php:120
4455
  #: classes/gateways/class.pmprogateway_paypal.php:201
4456
  #: classes/gateways/class.pmprogateway_paypalexpress.php:438
4457
  #: classes/gateways/class.pmprogateway_paypalstandard.php:201
4458
+ #: pages/checkout.php:312 classes/gateways/class.pmprogateway_paypal.php:178
4459
  #: classes/gateways/class.pmprogateway_paypal.php:201
4460
  #: classes/gateways/class.pmprogateway_paypalexpress.php:402
4461
  #: classes/gateways/class.pmprogateway_paypalexpress.php:412
4472
  #: classes/gateways/class.pmprogateway_paypal.php:207
4473
  #: classes/gateways/class.pmprogateway_paypalexpress.php:443
4474
  #: classes/gateways/class.pmprogateway_paypalstandard.php:206
4475
+ #: pages/checkout.php:728 classes/gateways/class.pmprogateway_paypal.php:184
4476
  #: classes/gateways/class.pmprogateway_paypal.php:207
4477
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
4478
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
4490
  #: classes/gateways/class.pmprogateway_paypalexpress.php:443
4491
  #: classes/gateways/class.pmprogateway_paypalstandard.php:206
4492
  #: classes/gateways/class.pmprogateway_twocheckout.php:203
4493
+ #: pages/checkout.php:728 classes/gateways/class.pmprogateway_paypal.php:184
4494
  #: classes/gateways/class.pmprogateway_paypal.php:207
4495
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
4496
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
4535
  msgstr ""
4536
 
4537
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
4538
+ #: paid-memberships-pro.php:130
4539
  #: classes/gateways/class.pmprogateway_paypalexpress.php:63
4540
  #: classes/gateways/class.pmprogateway_paypalexpress.php:73
4541
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
4573
  msgstr ""
4574
 
4575
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
4576
+ #: paid-memberships-pro.php:133
4577
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
4578
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:122
4579
  #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
4590
  msgstr ""
4591
 
4592
  #: classes/gateways/class.pmprogateway_stripe.php:169
4593
+ #: paid-memberships-pro.php:129
4594
  #: classes/gateways/class.pmprogateway_stripe.php:93
4595
  #: classes/gateways/class.pmprogateway_stripe.php:94
4596
  #: classes/gateways/class.pmprogateway_stripe.php:104
4757
  "at predefined times. Be sure to click Update User after making changes."
4758
  msgstr ""
4759
 
4760
+ #: classes/gateways/class.pmprogateway_stripe.php:721 pages/billing.php:396
4761
  #: classes/gateways/class.pmprogateway_stripe.php:578
4762
  #: classes/gateways/class.pmprogateway_stripe.php:579
4763
  #: classes/gateways/class.pmprogateway_stripe.php:589
4966
  msgstr ""
4967
 
4968
  #: classes/gateways/class.pmprogateway_twocheckout.php:59
4969
+ #: paid-memberships-pro.php:136
4970
  #: classes/gateways/class.pmprogateway_twocheckout.php:53
4971
  #: classes/gateways/class.pmprogateway_twocheckout.php:59
4972
  #: classes/gateways/class.pmprogateway_twocheckout.php:60
5146
  msgid "Visit Customer Support Forum"
5147
  msgstr ""
5148
 
5149
+ #: includes/countries.php:7
5150
+ msgid "Andorra"
 
 
 
 
 
5151
  msgstr ""
5152
 
5153
+ #: includes/countries.php:8
5154
+ msgid "United Arab Emirates"
 
 
 
 
 
 
5155
  msgstr ""
5156
 
5157
+ #: includes/countries.php:9
5158
+ msgid "Afghanistan"
 
 
 
 
 
 
5159
  msgstr ""
5160
 
5161
+ #: includes/countries.php:10
5162
+ msgid "Antigua and Barbuda"
5163
  msgstr ""
5164
 
5165
+ #: includes/countries.php:11
5166
+ msgid "Anguilla"
 
 
5167
  msgstr ""
5168
 
5169
+ #: includes/countries.php:12
5170
+ msgid "Albania"
 
5171
  msgstr ""
5172
 
5173
+ #: includes/countries.php:13
5174
+ msgid "Armenia"
 
 
 
 
 
 
5175
  msgstr ""
5176
 
5177
+ #: includes/countries.php:14
5178
+ msgid "Netherlands Antilles"
 
 
5179
  msgstr ""
5180
 
5181
+ #: includes/countries.php:15
5182
+ msgid "Angola"
 
 
 
5183
  msgstr ""
5184
 
5185
+ #: includes/countries.php:16
5186
+ msgid "Antarctica"
 
 
 
5187
  msgstr ""
5188
 
5189
+ #: includes/countries.php:17
5190
+ msgid "Argentina"
 
 
 
5191
  msgstr ""
5192
 
5193
+ #: includes/countries.php:18
5194
+ msgid "American Samoa"
 
 
 
5195
  msgstr ""
5196
 
5197
+ #: includes/countries.php:19
5198
+ msgid "Austria"
 
 
5199
  msgstr ""
5200
 
5201
+ #: includes/countries.php:20
5202
+ msgid "Australia"
 
 
5203
  msgstr ""
5204
 
5205
+ #: includes/countries.php:21
5206
+ msgid "Aruba"
 
 
 
5207
  msgstr ""
5208
 
5209
+ #: includes/countries.php:22
5210
+ msgid "Aland Islands"
 
 
 
5211
  msgstr ""
5212
 
5213
+ #: includes/countries.php:23
5214
+ msgid "Azerbaijan"
 
 
 
5215
  msgstr ""
5216
 
5217
+ #: includes/countries.php:24
5218
+ msgid "Bosnia and Herzegovina"
 
 
 
5219
  msgstr ""
5220
 
5221
+ #: includes/countries.php:25
5222
+ msgid "Barbados"
 
5223
  msgstr ""
5224
 
5225
+ #: includes/countries.php:26
5226
+ msgid "Bangladesh"
 
 
 
5227
  msgstr ""
5228
 
5229
+ #: includes/countries.php:27
5230
+ msgid "Belgium"
 
 
 
5231
  msgstr ""
5232
 
5233
+ #: includes/countries.php:28
5234
+ msgid "Burkina Faso"
 
 
 
5235
  msgstr ""
5236
 
5237
+ #: includes/countries.php:29
5238
+ msgid "Bulgaria"
 
 
 
5239
  msgstr ""
5240
 
5241
+ #: includes/countries.php:30
5242
+ msgid "Bahrain"
 
 
 
5243
  msgstr ""
5244
 
5245
+ #: includes/countries.php:31
5246
+ msgid "Burundi"
 
 
5247
  msgstr ""
5248
 
5249
+ #: includes/countries.php:32
5250
+ msgid "Benin"
 
 
 
5251
  msgstr ""
5252
 
5253
+ #: includes/countries.php:33
5254
+ msgid "Saint Barthelemy"
 
 
 
 
5255
  msgstr ""
5256
 
5257
+ #: includes/countries.php:34
5258
+ msgid "Bermuda"
 
 
 
 
5259
  msgstr ""
5260
 
5261
+ #: includes/countries.php:35
5262
+ msgid "Brunei"
 
 
 
 
5263
  msgstr ""
5264
 
5265
+ #: includes/countries.php:36
5266
+ msgid "Bolivia"
 
 
 
 
5267
  msgstr ""
5268
 
5269
+ #: includes/countries.php:37
5270
+ msgid "Brazil"
 
 
 
5271
  msgstr ""
5272
 
5273
+ #: includes/countries.php:38
5274
+ msgid "Bahamas"
5275
+ msgstr ""
5276
+
5277
+ #: includes/countries.php:39
5278
+ msgid "Bhutan"
5279
+ msgstr ""
5280
+
5281
+ #: includes/countries.php:40
5282
+ msgid "Bouvet Island"
5283
+ msgstr ""
5284
+
5285
+ #: includes/countries.php:41
5286
+ msgid "Botswana"
5287
+ msgstr ""
5288
+
5289
+ #: includes/countries.php:42
5290
+ msgid "Belarus"
5291
+ msgstr ""
5292
+
5293
+ #: includes/countries.php:43
5294
+ msgid "Belize"
5295
+ msgstr ""
5296
+
5297
+ #: includes/countries.php:44
5298
+ msgid "Canada"
5299
+ msgstr ""
5300
+
5301
+ #: includes/countries.php:45
5302
+ msgid "Cocos (Keeling) Islands"
5303
+ msgstr ""
5304
+
5305
+ #: includes/countries.php:46
5306
+ msgid "Congo (Kinshasa)"
5307
+ msgstr ""
5308
+
5309
+ #: includes/countries.php:47
5310
+ msgid "Central African Republic"
5311
+ msgstr ""
5312
+
5313
+ #: includes/countries.php:48
5314
+ msgid "Congo (Brazzaville)"
5315
+ msgstr ""
5316
+
5317
+ #: includes/countries.php:49
5318
+ msgid "Switzerland"
5319
+ msgstr ""
5320
+
5321
+ #: includes/countries.php:50
5322
+ msgid "Ivory Coast"
5323
+ msgstr ""
5324
+
5325
+ #: includes/countries.php:51
5326
+ msgid "Cook Islands"
5327
+ msgstr ""
5328
+
5329
+ #: includes/countries.php:52
5330
+ msgid "Chile"
5331
+ msgstr ""
5332
+
5333
+ #: includes/countries.php:53
5334
+ msgid "Cameroon"
5335
+ msgstr ""
5336
+
5337
+ #: includes/countries.php:54
5338
+ msgid "China"
5339
+ msgstr ""
5340
+
5341
+ #: includes/countries.php:55
5342
+ msgid "Colombia"
5343
+ msgstr ""
5344
+
5345
+ #: includes/countries.php:56
5346
+ msgid "Costa Rica"
5347
+ msgstr ""
5348
+
5349
+ #: includes/countries.php:57
5350
+ msgid "Cuba"
5351
+ msgstr ""
5352
+
5353
+ #: includes/countries.php:58
5354
+ msgid "Cape Verde"
5355
+ msgstr ""
5356
+
5357
+ #: includes/countries.php:59
5358
+ msgid "Christmas Island"
5359
+ msgstr ""
5360
+
5361
+ #: includes/countries.php:60
5362
+ msgid "Cyprus"
5363
+ msgstr ""
5364
+
5365
+ #: includes/countries.php:61
5366
+ msgid "Czech Republic"
5367
+ msgstr ""
5368
+
5369
+ #: includes/countries.php:62
5370
+ msgid "Germany"
5371
+ msgstr ""
5372
+
5373
+ #: includes/countries.php:63
5374
+ msgid "Djibouti"
5375
+ msgstr ""
5376
+
5377
+ #: includes/countries.php:64
5378
+ msgid "Denmark"
5379
+ msgstr ""
5380
+
5381
+ #: includes/countries.php:65
5382
+ msgid "Dominica"
5383
+ msgstr ""
5384
+
5385
+ #: includes/countries.php:66
5386
+ msgid "Dominican Republic"
5387
+ msgstr ""
5388
+
5389
+ #: includes/countries.php:67
5390
+ msgid "Algeria"
5391
+ msgstr ""
5392
+
5393
+ #: includes/countries.php:68
5394
+ msgid "Ecuador"
5395
+ msgstr ""
5396
+
5397
+ #: includes/countries.php:69
5398
+ msgid "Estonia"
5399
+ msgstr ""
5400
+
5401
+ #: includes/countries.php:70
5402
+ msgid "Egypt"
5403
+ msgstr ""
5404
+
5405
+ #: includes/countries.php:71
5406
+ msgid "Western Sahara"
5407
+ msgstr ""
5408
+
5409
+ #: includes/countries.php:72
5410
+ msgid "Eritrea"
5411
+ msgstr ""
5412
+
5413
+ #: includes/countries.php:73
5414
+ msgid "Spain"
5415
+ msgstr ""
5416
+
5417
+ #: includes/countries.php:74
5418
+ msgid "Ethiopia"
5419
+ msgstr ""
5420
+
5421
+ #: includes/countries.php:75
5422
+ msgid "Finland"
5423
+ msgstr ""
5424
+
5425
+ #: includes/countries.php:76
5426
+ msgid "Fiji"
5427
+ msgstr ""
5428
+
5429
+ #: includes/countries.php:77
5430
+ msgid "Falkland Islands"
5431
+ msgstr ""
5432
+
5433
+ #: includes/countries.php:78
5434
+ msgid "Micronesia"
5435
+ msgstr ""
5436
+
5437
+ #: includes/countries.php:79
5438
+ msgid "Faroe Islands"
5439
+ msgstr ""
5440
+
5441
+ #: includes/countries.php:80
5442
+ msgid "France"
5443
+ msgstr ""
5444
+
5445
+ #: includes/countries.php:81
5446
+ msgid "Gabon"
5447
+ msgstr ""
5448
+
5449
+ #: includes/countries.php:82
5450
+ msgid "United Kingdom"
5451
+ msgstr ""
5452
+
5453
+ #: includes/countries.php:83
5454
+ msgid "Grenada"
5455
+ msgstr ""
5456
+
5457
+ #: includes/countries.php:84
5458
+ msgid "Georgia"
5459
+ msgstr ""
5460
+
5461
+ #: includes/countries.php:85
5462
+ msgid "French Guiana"
5463
+ msgstr ""
5464
+
5465
+ #: includes/countries.php:86
5466
+ msgid "Guernsey"
5467
+ msgstr ""
5468
+
5469
+ #: includes/countries.php:87
5470
+ msgid "Ghana"
5471
+ msgstr ""
5472
+
5473
+ #: includes/countries.php:88
5474
+ msgid "Gibraltar"
5475
+ msgstr ""
5476
+
5477
+ #: includes/countries.php:89
5478
+ msgid "Greenland"
5479
+ msgstr ""
5480
+
5481
+ #: includes/countries.php:90
5482
+ msgid "Gambia"
5483
+ msgstr ""
5484
+
5485
+ #: includes/countries.php:91
5486
+ msgid "Guinea"
5487
+ msgstr ""
5488
+
5489
+ #: includes/countries.php:92
5490
+ msgid "Guadeloupe"
5491
+ msgstr ""
5492
+
5493
+ #: includes/countries.php:93
5494
+ msgid "Equatorial Guinea"
5495
+ msgstr ""
5496
+
5497
+ #: includes/countries.php:94
5498
+ msgid "Greece"
5499
+ msgstr ""
5500
+
5501
+ #: includes/countries.php:95
5502
+ msgid "South Georgia and the South Sandwich Islands"
5503
+ msgstr ""
5504
+
5505
+ #: includes/countries.php:96
5506
+ msgid "Guatemala"
5507
+ msgstr ""
5508
+
5509
+ #: includes/countries.php:97
5510
+ msgid "Guam"
5511
+ msgstr ""
5512
+
5513
+ #: includes/countries.php:98
5514
+ msgid "Guinea-Bissau"
5515
+ msgstr ""
5516
+
5517
+ #: includes/countries.php:99
5518
+ msgid "Guyana"
5519
+ msgstr ""
5520
+
5521
+ #: includes/countries.php:100
5522
+ msgid "Hong Kong S.A.R., China"
5523
+ msgstr ""
5524
+
5525
+ #: includes/countries.php:101
5526
+ msgid "Heard Island and McDonald Islands"
5527
+ msgstr ""
5528
+
5529
+ #: includes/countries.php:102
5530
+ msgid "Honduras"
5531
+ msgstr ""
5532
+
5533
+ #: includes/countries.php:103
5534
+ msgid "Croatia"
5535
+ msgstr ""
5536
+
5537
+ #: includes/countries.php:104
5538
+ msgid "Haiti"
5539
+ msgstr ""
5540
+
5541
+ #: includes/countries.php:105
5542
+ msgid "Hungary"
5543
+ msgstr ""
5544
+
5545
+ #: includes/countries.php:106
5546
+ msgid "Indonesia"
5547
+ msgstr ""
5548
+
5549
+ #: includes/countries.php:107
5550
+ msgid "Ireland"
5551
+ msgstr ""
5552
+
5553
+ #: includes/countries.php:108
5554
+ msgid "Israel"
5555
+ msgstr ""
5556
+
5557
+ #: includes/countries.php:109
5558
+ msgid "Isle of Man"
5559
+ msgstr ""
5560
+
5561
+ #: includes/countries.php:110
5562
+ msgid "India"
5563
+ msgstr ""
5564
+
5565
+ #: includes/countries.php:111
5566
+ msgid "British Indian Ocean Territory"
5567
+ msgstr ""
5568
+
5569
+ #: includes/countries.php:112
5570
+ msgid "Iraq"
5571
+ msgstr ""
5572
+
5573
+ #: includes/countries.php:113
5574
+ msgid "Iran"
5575
+ msgstr ""
5576
+
5577
+ #: includes/countries.php:114
5578
+ msgid "Iceland"
5579
+ msgstr ""
5580
+
5581
+ #: includes/countries.php:115
5582
+ msgid "Italy"
5583
+ msgstr ""
5584
+
5585
+ #: includes/countries.php:116
5586
+ msgid "Jersey"
5587
+ msgstr ""
5588
+
5589
+ #: includes/countries.php:117
5590
+ msgid "Jamaica"
5591
+ msgstr ""
5592
+
5593
+ #: includes/countries.php:118
5594
+ msgid "Jordan"
5595
+ msgstr ""
5596
+
5597
+ #: includes/countries.php:119
5598
+ msgid "Japan"
5599
+ msgstr ""
5600
+
5601
+ #: includes/countries.php:120
5602
+ msgid "Kenya"
5603
+ msgstr ""
5604
+
5605
+ #: includes/countries.php:121
5606
+ msgid "Kyrgyzstan"
5607
+ msgstr ""
5608
+
5609
+ #: includes/countries.php:122
5610
+ msgid "Cambodia"
5611
+ msgstr ""
5612
+
5613
+ #: includes/countries.php:123
5614
+ msgid "Kiribati"
5615
+ msgstr ""
5616
+
5617
+ #: includes/countries.php:124
5618
+ msgid "Comoros"
5619
+ msgstr ""
5620
+
5621
+ #: includes/countries.php:125
5622
+ msgid "Saint Kitts and Nevis"
5623
+ msgstr ""
5624
+
5625
+ #: includes/countries.php:126
5626
+ msgid "North Korea"
5627
+ msgstr ""
5628
+
5629
+ #: includes/countries.php:127
5630
+ msgid "South Korea"
5631
+ msgstr ""
5632
+
5633
+ #: includes/countries.php:128
5634
+ msgid "Kuwait"
5635
+ msgstr ""
5636
+
5637
+ #: includes/countries.php:129
5638
+ msgid "Cayman Islands"
5639
+ msgstr ""
5640
+
5641
+ #: includes/countries.php:130
5642
+ msgid "Kazakhstan"
5643
+ msgstr ""
5644
+
5645
+ #: includes/countries.php:131
5646
+ msgid "Laos"
5647
+ msgstr ""
5648
+
5649
+ #: includes/countries.php:132
5650
+ msgid "Lebanon"
5651
+ msgstr ""
5652
+
5653
+ #: includes/countries.php:133
5654
+ msgid "Saint Lucia"
5655
+ msgstr ""
5656
+
5657
+ #: includes/countries.php:134
5658
+ msgid "Liechtenstein"
5659
+ msgstr ""
5660
+
5661
+ #: includes/countries.php:135
5662
+ msgid "Sri Lanka"
5663
+ msgstr ""
5664
+
5665
+ #: includes/countries.php:136
5666
+ msgid "Liberia"
5667
+ msgstr ""
5668
+
5669
+ #: includes/countries.php:137
5670
+ msgid "Lesotho"
5671
+ msgstr ""
5672
+
5673
+ #: includes/countries.php:138
5674
+ msgid "Lithuania"
5675
+ msgstr ""
5676
+
5677
+ #: includes/countries.php:139
5678
+ msgid "Luxembourg"
5679
+ msgstr ""
5680
+
5681
+ #: includes/countries.php:140
5682
+ msgid "Latvia"
5683
+ msgstr ""
5684
+
5685
+ #: includes/countries.php:141
5686
+ msgid "Libya"
5687
+ msgstr ""
5688
+
5689
+ #: includes/countries.php:142
5690
+ msgid "Morocco"
5691
+ msgstr ""
5692
+
5693
+ #: includes/countries.php:143
5694
+ msgid "Monaco"
5695
+ msgstr ""
5696
+
5697
+ #: includes/countries.php:144
5698
+ msgid "Moldova"
5699
+ msgstr ""
5700
+
5701
+ #: includes/countries.php:145
5702
+ msgid "Montenegro"
5703
+ msgstr ""
5704
+
5705
+ #: includes/countries.php:146
5706
+ msgid "Saint Martin (French part)"
5707
+ msgstr ""
5708
+
5709
+ #: includes/countries.php:147
5710
+ msgid "Madagascar"
5711
+ msgstr ""
5712
+
5713
+ #: includes/countries.php:148
5714
+ msgid "Marshall Islands"
5715
+ msgstr ""
5716
+
5717
+ #: includes/countries.php:149
5718
+ msgid "Macedonia"
5719
+ msgstr ""
5720
+
5721
+ #: includes/countries.php:150
5722
+ msgid "Mali"
5723
+ msgstr ""
5724
+
5725
+ #: includes/countries.php:151
5726
+ msgid "Myanmar"
5727
+ msgstr ""
5728
+
5729
+ #: includes/countries.php:152
5730
+ msgid "Mongolia"
5731
+ msgstr ""
5732
+
5733
+ #: includes/countries.php:153
5734
+ msgid "Macao S.A.R., China"
5735
+ msgstr ""
5736
+
5737
+ #: includes/countries.php:154
5738
+ msgid "Northern Mariana Islands"
5739
+ msgstr ""
5740
+
5741
+ #: includes/countries.php:155
5742
+ msgid "Martinique"
5743
+ msgstr ""
5744
+
5745
+ #: includes/countries.php:156
5746
+ msgid "Mauritania"
5747
+ msgstr ""
5748
+
5749
+ #: includes/countries.php:157
5750
+ msgid "Montserrat"
5751
+ msgstr ""
5752
+
5753
+ #: includes/countries.php:158
5754
+ msgid "Malta"
5755
+ msgstr ""
5756
+
5757
+ #: includes/countries.php:159
5758
+ msgid "Mauritius"
5759
+ msgstr ""
5760
+
5761
+ #: includes/countries.php:160
5762
+ msgid "Maldives"
5763
+ msgstr ""
5764
+
5765
+ #: includes/countries.php:161
5766
+ msgid "Malawi"
5767
+ msgstr ""
5768
+
5769
+ #: includes/countries.php:162
5770
+ msgid "Mexico"
5771
+ msgstr ""
5772
+
5773
+ #: includes/countries.php:163
5774
+ msgid "Malaysia"
5775
+ msgstr ""
5776
+
5777
+ #: includes/countries.php:164
5778
+ msgid "Mozambique"
5779
+ msgstr ""
5780
+
5781
+ #: includes/countries.php:165
5782
+ msgid "Namibia"
5783
+ msgstr ""
5784
+
5785
+ #: includes/countries.php:166
5786
+ msgid "New Caledonia"
5787
+ msgstr ""
5788
+
5789
+ #: includes/countries.php:167
5790
+ msgid "Niger"
5791
+ msgstr ""
5792
+
5793
+ #: includes/countries.php:168
5794
+ msgid "Norfolk Island"
5795
+ msgstr ""
5796
+
5797
+ #: includes/countries.php:169
5798
+ msgid "Nigeria"
5799
+ msgstr ""
5800
+
5801
+ #: includes/countries.php:170
5802
+ msgid "Nicaragua"
5803
+ msgstr ""
5804
+
5805
+ #: includes/countries.php:171
5806
+ msgid "Netherlands"
5807
+ msgstr ""
5808
+
5809
+ #: includes/countries.php:172
5810
+ msgid "Norway"
5811
+ msgstr ""
5812
+
5813
+ #: includes/countries.php:173
5814
+ msgid "Nepal"
5815
+ msgstr ""
5816
+
5817
+ #: includes/countries.php:174
5818
+ msgid "Nauru"
5819
+ msgstr ""
5820
+
5821
+ #: includes/countries.php:175
5822
+ msgid "Niue"
5823
+ msgstr ""
5824
+
5825
+ #: includes/countries.php:176
5826
+ msgid "New Zealand"
5827
+ msgstr ""
5828
+
5829
+ #: includes/countries.php:177
5830
+ msgid "Oman"
5831
+ msgstr ""
5832
+
5833
+ #: includes/countries.php:178
5834
+ msgid "Panama"
5835
+ msgstr ""
5836
+
5837
+ #: includes/countries.php:179
5838
+ msgid "Peru"
5839
+ msgstr ""
5840
+
5841
+ #: includes/countries.php:180
5842
+ msgid "French Polynesia"
5843
+ msgstr ""
5844
+
5845
+ #: includes/countries.php:181
5846
+ msgid "Papua New Guinea"
5847
+ msgstr ""
5848
+
5849
+ #: includes/countries.php:182
5850
+ msgid "Philippines"
5851
+ msgstr ""
5852
+
5853
+ #: includes/countries.php:183
5854
+ msgid "Pakistan"
5855
+ msgstr ""
5856
+
5857
+ #: includes/countries.php:184
5858
+ msgid "Poland"
5859
+ msgstr ""
5860
+
5861
+ #: includes/countries.php:185
5862
+ msgid "Saint Pierre and Miquelon"
5863
+ msgstr ""
5864
+
5865
+ #: includes/countries.php:186
5866
+ msgid "Pitcairn"
5867
+ msgstr ""
5868
+
5869
+ #: includes/countries.php:187
5870
+ msgid "Puerto Rico"
5871
+ msgstr ""
5872
+
5873
+ #: includes/countries.php:188
5874
+ msgid "Palestinian Territory"
5875
+ msgstr ""
5876
+
5877
+ #: includes/countries.php:189
5878
+ msgid "Portugal"
5879
+ msgstr ""
5880
+
5881
+ #: includes/countries.php:190
5882
+ msgid "Palau"
5883
+ msgstr ""
5884
+
5885
+ #: includes/countries.php:191
5886
+ msgid "Paraguay"
5887
+ msgstr ""
5888
+
5889
+ #: includes/countries.php:192
5890
+ msgid "Qatar"
5891
+ msgstr ""
5892
+
5893
+ #: includes/countries.php:193
5894
+ msgid "Reunion"
5895
+ msgstr ""
5896
+
5897
+ #: includes/countries.php:194
5898
+ msgid "Romania"
5899
+ msgstr ""
5900
+
5901
+ #: includes/countries.php:195
5902
+ msgid "Serbia"
5903
+ msgstr ""
5904
+
5905
+ #: includes/countries.php:196
5906
+ msgid "Russia"
5907
+ msgstr ""
5908
+
5909
+ #: includes/countries.php:197
5910
+ msgid "Rwanda"
5911
+ msgstr ""
5912
+
5913
+ #: includes/countries.php:198
5914
+ msgid "Saudi Arabia"
5915
+ msgstr ""
5916
+
5917
+ #: includes/countries.php:199
5918
+ msgid "Solomon Islands"
5919
+ msgstr ""
5920
+
5921
+ #: includes/countries.php:200
5922
+ msgid "Seychelles"
5923
+ msgstr ""
5924
+
5925
+ #: includes/countries.php:201
5926
+ msgid "Sudan"
5927
+ msgstr ""
5928
+
5929
+ #: includes/countries.php:202
5930
+ msgid "Sweden"
5931
+ msgstr ""
5932
+
5933
+ #: includes/countries.php:203
5934
+ msgid "Singapore"
5935
+ msgstr ""
5936
+
5937
+ #: includes/countries.php:204
5938
+ msgid "Saint Helena"
5939
+ msgstr ""
5940
+
5941
+ #: includes/countries.php:205
5942
+ msgid "Slovenia"
5943
+ msgstr ""
5944
+
5945
+ #: includes/countries.php:206
5946
+ msgid "Svalbard and Jan Mayen"
5947
+ msgstr ""
5948
+
5949
+ #: includes/countries.php:207
5950
+ msgid "Slovakia"
5951
+ msgstr ""
5952
+
5953
+ #: includes/countries.php:208
5954
+ msgid "Sierra Leone"
5955
+ msgstr ""
5956
+
5957
+ #: includes/countries.php:209
5958
+ msgid "San Marino"
5959
+ msgstr ""
5960
+
5961
+ #: includes/countries.php:210
5962
+ msgid "Senegal"
5963
+ msgstr ""
5964
+
5965
+ #: includes/countries.php:211
5966
+ msgid "Somalia"
5967
+ msgstr ""
5968
+
5969
+ #: includes/countries.php:212
5970
+ msgid "Suriname"
5971
+ msgstr ""
5972
+
5973
+ #: includes/countries.php:213
5974
+ msgid "Sao Tome and Principe"
5975
+ msgstr ""
5976
+
5977
+ #: includes/countries.php:214
5978
+ msgid "El Salvador"
5979
+ msgstr ""
5980
+
5981
+ #: includes/countries.php:215
5982
+ msgid "Syria"
5983
+ msgstr ""
5984
+
5985
+ #: includes/countries.php:216
5986
+ msgid "Swaziland"
5987
+ msgstr ""
5988
+
5989
+ #: includes/countries.php:217
5990
+ msgid "Turks and Caicos Islands"
5991
+ msgstr ""
5992
+
5993
+ #: includes/countries.php:218
5994
+ msgid "Chad"
5995
+ msgstr ""
5996
+
5997
+ #: includes/countries.php:219
5998
+ msgid "French Southern Territories"
5999
+ msgstr ""
6000
+
6001
+ #: includes/countries.php:220
6002
+ msgid "Togo"
6003
+ msgstr ""
6004
+
6005
+ #: includes/countries.php:221
6006
+ msgid "Thailand"
6007
+ msgstr ""
6008
+
6009
+ #: includes/countries.php:222
6010
+ msgid "Tajikistan"
6011
+ msgstr ""
6012
+
6013
+ #: includes/countries.php:223
6014
+ msgid "Tokelau"
6015
+ msgstr ""
6016
+
6017
+ #: includes/countries.php:224
6018
+ msgid "Timor-Leste"
6019
+ msgstr ""
6020
+
6021
+ #: includes/countries.php:225
6022
+ msgid "Turkmenistan"
6023
+ msgstr ""
6024
+
6025
+ #: includes/countries.php:226
6026
+ msgid "Tunisia"
6027
+ msgstr ""
6028
+
6029
+ #: includes/countries.php:227
6030
+ msgid "Tonga"
6031
+ msgstr ""
6032
+
6033
+ #: includes/countries.php:228
6034
+ msgid "Turkey"
6035
+ msgstr ""
6036
+
6037
+ #: includes/countries.php:229
6038
+ msgid "Trinidad and Tobago"
6039
+ msgstr ""
6040
+
6041
+ #: includes/countries.php:230
6042
+ msgid "Tuvalu"
6043
+ msgstr ""
6044
+
6045
+ #: includes/countries.php:231
6046
+ msgid "Taiwan"
6047
+ msgstr ""
6048
+
6049
+ #: includes/countries.php:232
6050
+ msgid "Tanzania"
6051
+ msgstr ""
6052
+
6053
+ #: includes/countries.php:233
6054
+ msgid "Ukraine"
6055
+ msgstr ""
6056
+
6057
+ #: includes/countries.php:234
6058
+ msgid "Uganda"
6059
+ msgstr ""
6060
+
6061
+ #: includes/countries.php:235
6062
+ msgid "United States Minor Outlying Islands"
6063
+ msgstr ""
6064
+
6065
+ #: includes/countries.php:236
6066
+ msgid "United States"
6067
+ msgstr ""
6068
+
6069
+ #: includes/countries.php:237
6070
+ msgid "Uruguay"
6071
+ msgstr ""
6072
+
6073
+ #: includes/countries.php:238
6074
+ msgid "Uzbekistan"
6075
+ msgstr ""
6076
+
6077
+ #: includes/countries.php:239
6078
+ msgid "Vatican"
6079
+ msgstr ""
6080
+
6081
+ #: includes/countries.php:240
6082
+ msgid "Saint Vincent and the Grenadines"
6083
+ msgstr ""
6084
+
6085
+ #: includes/countries.php:241 includes/countries.php:254
6086
+ msgid "Venezuela"
6087
+ msgstr ""
6088
+
6089
+ #: includes/countries.php:242
6090
+ msgid "British Virgin Islands"
6091
+ msgstr ""
6092
+
6093
+ #: includes/countries.php:243
6094
+ msgid "U.S. Virgin Islands"
6095
+ msgstr ""
6096
+
6097
+ #: includes/countries.php:244
6098
+ msgid "Vietnam"
6099
+ msgstr ""
6100
+
6101
+ #: includes/countries.php:245
6102
+ msgid "Vanuatu"
6103
+ msgstr ""
6104
+
6105
+ #: includes/countries.php:246
6106
+ msgid "Wallis and Futuna"
6107
+ msgstr ""
6108
+
6109
+ #: includes/countries.php:247
6110
+ msgid "Samoa"
6111
+ msgstr ""
6112
+
6113
+ #: includes/countries.php:248
6114
+ msgid "Yemen"
6115
+ msgstr ""
6116
+
6117
+ #: includes/countries.php:249
6118
+ msgid "Mayotte"
6119
+ msgstr ""
6120
+
6121
+ #: includes/countries.php:250
6122
+ msgid "South Africa"
6123
+ msgstr ""
6124
+
6125
+ #: includes/countries.php:251
6126
+ msgid "Zambia"
6127
+ msgstr ""
6128
+
6129
+ #: includes/countries.php:252
6130
+ msgid "Zimbabwe"
6131
+ msgstr ""
6132
+
6133
+ #: includes/countries.php:253
6134
+ msgid "US Armed Forces"
6135
+ msgstr ""
6136
+
6137
+ #: includes/currencies.php:17 includes/currencies.php:94
6138
+ #: includes/currencies.php:7 includes/currencies.php:17
6139
+ #: includes/currencies.php:37 includes/currencies.php:44
6140
+ #: includes/currencies.php:64 includes/currencies.php:68
6141
+ #: includes/currencies.php:75 includes/currencies.php:85
6142
+ #: includes/currencies.php:87 includes/currencies.php:94
6143
+ msgid "US Dollars (&#36;)"
6144
+ msgstr ""
6145
+
6146
+ #: includes/currencies.php:19 includes/currencies.php:97
6147
+ #: includes/currencies.php:8 includes/currencies.php:9
6148
+ #: includes/currencies.php:19 includes/currencies.php:40
6149
+ #: includes/currencies.php:47 includes/currencies.php:67
6150
+ #: includes/currencies.php:71 includes/currencies.php:78
6151
+ #: includes/currencies.php:88 includes/currencies.php:90
6152
+ #: includes/currencies.php:97
6153
+ msgid "Euros (&euro;)"
6154
+ msgstr ""
6155
+
6156
+ #: includes/currencies.php:24 includes/currencies.php:96
6157
+ #: includes/currencies.php:9 includes/currencies.php:14
6158
+ #: includes/currencies.php:24 includes/currencies.php:39
6159
+ #: includes/currencies.php:46 includes/currencies.php:66
6160
+ #: includes/currencies.php:70 includes/currencies.php:77
6161
+ #: includes/currencies.php:87 includes/currencies.php:89
6162
+ #: includes/currencies.php:96
6163
+ msgid "Pounds Sterling (&pound;)"
6164
+ msgstr ""
6165
+
6166
+ #: includes/currencies.php:28 includes/currencies.php:28
6167
+ msgid "Argentine Peso (&#36;)"
6168
+ msgstr ""
6169
+
6170
+ #: includes/currencies.php:29 includes/currencies.php:10
6171
+ #: includes/currencies.php:18 includes/currencies.php:28
6172
+ #: includes/currencies.php:29
6173
+ msgid "Australian Dollars (&#36;)"
6174
+ msgstr ""
6175
+
6176
+ #: includes/currencies.php:31 includes/currencies.php:20
6177
+ #: includes/currencies.php:30 includes/currencies.php:31
6178
+ msgid "Brazilian Real (R&#36;)"
6179
+ msgstr ""
6180
+
6181
+ #: includes/currencies.php:35 includes/currencies.php:95
6182
+ #: includes/currencies.php:12 includes/currencies.php:24
6183
+ #: includes/currencies.php:34 includes/currencies.php:35
6184
+ #: includes/currencies.php:38 includes/currencies.php:45
6185
+ #: includes/currencies.php:65 includes/currencies.php:69
6186
+ #: includes/currencies.php:76 includes/currencies.php:86
6187
+ #: includes/currencies.php:88 includes/currencies.php:95
6188
+ msgid "Canadian Dollars (&#36;)"
6189
+ msgstr ""
6190
+
6191
+ #: includes/currencies.php:36 includes/currencies.php:13
6192
+ #: includes/currencies.php:25 includes/currencies.php:35
6193
+ #: includes/currencies.php:36
6194
+ msgid "Chinese Yuan"
6195
+ msgstr ""
6196
+
6197
+ #: includes/currencies.php:38 includes/currencies.php:13
6198
+ #: includes/currencies.php:14 includes/currencies.php:26
6199
+ #: includes/currencies.php:27 includes/currencies.php:37
6200
+ #: includes/currencies.php:38
6201
+ msgid "Czech Koruna"
6202
+ msgstr ""
6203
+
6204
+ #: includes/currencies.php:45 includes/currencies.php:14
6205
+ #: includes/currencies.php:15 includes/currencies.php:27
6206
+ #: includes/currencies.php:34 includes/currencies.php:44
6207
+ #: includes/currencies.php:45
6208
+ msgid "Danish Krone"
6209
+ msgstr ""
6210
+
6211
+ #: includes/currencies.php:46 includes/currencies.php:15
6212
+ #: includes/currencies.php:16 includes/currencies.php:28
6213
+ #: includes/currencies.php:35 includes/currencies.php:45
6214
+ #: includes/currencies.php:46
6215
+ msgid "Hong Kong Dollar (&#36;)"
6216
+ msgstr ""
6217
+
6218
+ #: includes/currencies.php:47 includes/currencies.php:16
6219
+ #: includes/currencies.php:17 includes/currencies.php:29
6220
+ #: includes/currencies.php:36 includes/currencies.php:46
6221
+ #: includes/currencies.php:47
6222
+ msgid "Hungarian Forint"
6223
+ msgstr ""
6224
+
6225
+ #: includes/currencies.php:48 includes/currencies.php:18
6226
+ #: includes/currencies.php:30 includes/currencies.php:37
6227
+ #: includes/currencies.php:47 includes/currencies.php:48
6228
+ msgid "Indian Rupee"
6229
+ msgstr ""
6230
+
6231
+ #: includes/currencies.php:49 includes/currencies.php:19
6232
+ #: includes/currencies.php:31 includes/currencies.php:38
6233
+ #: includes/currencies.php:48 includes/currencies.php:49
6234
+ msgid "Indonesia Rupiah"
6235
+ msgstr ""
6236
+
6237
+ #: includes/currencies.php:50 includes/currencies.php:17
6238
+ #: includes/currencies.php:20 includes/currencies.php:32
6239
+ #: includes/currencies.php:39 includes/currencies.php:49
6240
+ #: includes/currencies.php:50
6241
+ msgid "Israeli Shekel"
6242
+ msgstr ""
6243
+
6244
+ #: includes/currencies.php:52 includes/currencies.php:18
6245
+ #: includes/currencies.php:21 includes/currencies.php:34
6246
+ #: includes/currencies.php:41 includes/currencies.php:51
6247
+ #: includes/currencies.php:52
6248
+ msgid "Japanese Yen (&yen;)"
6249
+ msgstr ""
6250
+
6251
+ #: includes/currencies.php:57 includes/currencies.php:19
6252
+ #: includes/currencies.php:22 includes/currencies.php:38
6253
+ #: includes/currencies.php:45 includes/currencies.php:55
6254
+ #: includes/currencies.php:56 includes/currencies.php:57
6255
+ msgid "Malaysian Ringgits"
6256
+ msgstr ""
6257
+
6258
+ #: includes/currencies.php:58 includes/currencies.php:20
6259
+ #: includes/currencies.php:23 includes/currencies.php:39
6260
+ #: includes/currencies.php:46 includes/currencies.php:56
6261
+ #: includes/currencies.php:57 includes/currencies.php:58
6262
+ msgid "Mexican Peso (&#36;)"
6263
+ msgstr ""
6264
+
6265
+ #: includes/currencies.php:59 includes/currencies.php:58
6266
+ #: includes/currencies.php:59
6267
+ msgid "Nigerian Naira (&#8358;)"
6268
+ msgstr ""
6269
+
6270
+ #: includes/currencies.php:60 includes/currencies.php:21
6271
+ #: includes/currencies.php:24 includes/currencies.php:40
6272
+ #: includes/currencies.php:47 includes/currencies.php:57
6273
+ #: includes/currencies.php:59 includes/currencies.php:60
6274
+ msgid "New Zealand Dollar (&#36;)"
6275
+ msgstr ""
6276
+
6277
+ #: includes/currencies.php:61 includes/currencies.php:22
6278
+ #: includes/currencies.php:25 includes/currencies.php:41
6279
+ #: includes/currencies.php:48 includes/currencies.php:58
6280
+ #: includes/currencies.php:60 includes/currencies.php:61
6281
+ msgid "Norwegian Krone"
6282
+ msgstr ""
6283
+
6284
+ #: includes/currencies.php:62 includes/currencies.php:23
6285
+ #: includes/currencies.php:26 includes/currencies.php:42
6286
+ #: includes/currencies.php:49 includes/currencies.php:59
6287
+ #: includes/currencies.php:61 includes/currencies.php:62
6288
+ msgid "Philippine Pesos"
6289
+ msgstr ""
6290
+
6291
+ #: includes/currencies.php:63 includes/currencies.php:24
6292
+ #: includes/currencies.php:27 includes/currencies.php:43
6293
+ #: includes/currencies.php:50 includes/currencies.php:60
6294
+ #: includes/currencies.php:62 includes/currencies.php:63
6295
+ msgid "Polish Zloty"
6296
+ msgstr ""
6297
+
6298
+ #: includes/currencies.php:65 includes/currencies.php:25
6299
+ #: includes/currencies.php:28 includes/currencies.php:45
6300
+ #: includes/currencies.php:52 includes/currencies.php:62
6301
+ #: includes/currencies.php:64 includes/currencies.php:65
6302
+ msgid "Singapore Dollar (&#36;)"
6303
+ msgstr ""
6304
+
6305
+ #: includes/currencies.php:70 includes/currencies.php:50
6306
+ #: includes/currencies.php:57 includes/currencies.php:67
6307
+ #: includes/currencies.php:69 includes/currencies.php:70
6308
+ msgid "South African Rand (R)"
6309
+ msgstr ""
6310
+
6311
+ #: includes/currencies.php:75 includes/currencies.php:30
6312
+ #: includes/currencies.php:50 includes/currencies.php:54
6313
+ #: includes/currencies.php:61 includes/currencies.php:71
6314
+ #: includes/currencies.php:73 includes/currencies.php:75
6315
+ msgid "South Korean Won"
6316
+ msgstr ""
6317
+
6318
+ #: includes/currencies.php:78 includes/currencies.php:26
6319
+ #: includes/currencies.php:31 includes/currencies.php:51
6320
+ #: includes/currencies.php:55 includes/currencies.php:62
6321
+ #: includes/currencies.php:72 includes/currencies.php:74
6322
+ #: includes/currencies.php:78
6323
+ msgid "Swedish Krona"
6324
+ msgstr ""
6325
+
6326
+ #: includes/currencies.php:79 includes/currencies.php:27
6327
+ #: includes/currencies.php:32 includes/currencies.php:52
6328
+ #: includes/currencies.php:56 includes/currencies.php:63
6329
+ #: includes/currencies.php:73 includes/currencies.php:75
6330
+ #: includes/currencies.php:79
6331
+ msgid "Swiss Franc"
6332
+ msgstr ""
6333
+
6334
+ #: includes/currencies.php:80 includes/currencies.php:28
6335
+ #: includes/currencies.php:33 includes/currencies.php:53
6336
+ #: includes/currencies.php:57 includes/currencies.php:64
6337
+ #: includes/currencies.php:74 includes/currencies.php:76
6338
+ #: includes/currencies.php:80
6339
+ msgid "Taiwan New Dollars"
6340
+ msgstr ""
6341
+
6342
+ #: includes/currencies.php:81 includes/currencies.php:29
6343
+ #: includes/currencies.php:34 includes/currencies.php:54
6344
+ #: includes/currencies.php:58 includes/currencies.php:65
6345
+ #: includes/currencies.php:75 includes/currencies.php:77
6346
+ #: includes/currencies.php:81
6347
+ msgid "Thai Baht"
6348
+ msgstr ""
6349
+
6350
+ #: includes/currencies.php:82 includes/currencies.php:35
6351
+ #: includes/currencies.php:55 includes/currencies.php:59
6352
+ #: includes/currencies.php:66 includes/currencies.php:76
6353
+ #: includes/currencies.php:78 includes/currencies.php:82
6354
+ msgid "Turkish Lira"
6355
+ msgstr ""
6356
+
6357
+ #: includes/currencies.php:84 includes/currencies.php:36
6358
+ #: includes/currencies.php:56 includes/currencies.php:60
6359
+ #: includes/currencies.php:67 includes/currencies.php:77
6360
+ #: includes/currencies.php:79 includes/currencies.php:84
6361
+ msgid "Vietnamese Dong"
6362
+ msgstr ""
6363
+
6364
+ #: includes/filters.php:217
6365
+ msgid ""
6366
+ "There was a potential issue while setting the 'Profile Start Date' for a "
6367
+ "user's subscription at checkout. PayPal does not allow one to set a Profile "
6368
+ "Start Date further than 1 year out. Typically, this is not an issue, but "
6369
+ "sometimes a combination of custom code or add ons for PMPro (e.g. the "
6370
+ "Prorating or Auto-renewal Checkbox add ons) will try to set a Profile Start "
6371
+ "Date out past 1 year in order to respect an existing user's original "
6372
+ "expiration date before they checked out. The user's information is below. "
6373
+ "PMPro has allowed the checkout and simply restricted the Profile Start Date "
6374
+ "to 1 year out with a possible additional free Trial of up to 1 year. You "
6375
+ "should double check this information to determine if maybe the user has "
6376
+ "overpaid or otherwise needs to be addressed. If you get many of these "
6377
+ "emails, you should consider adjusting your custom code to avoid these "
6378
+ "situations."
6379
+ msgstr ""
6380
+
6381
+ #: includes/filters.php:218
6382
+ #, php-format
6383
+ msgid ""
6384
+ "User: %s<br />Email: %s<br />Membership Level: %s<br />Order #: %s<br /"
6385
+ ">Original Profile Start Date: %s<br />Adjusted Profile Start Date: %s<br /"
6386
+ ">Trial Period: %s<br />Trial Frequency: %s<br />"
6387
+ msgstr ""
6388
+
6389
+ #: includes/filters.php:220
6390
+ #, php-format
6391
+ msgid "Profile Start Date Issue Detected and Fixed at %s"
6392
  msgstr ""
6393
 
6394
  #: includes/functions.php:320 includes/functions.php:455
6668
 
6669
  #: includes/functions.php:1129 includes/functions.php:907
6670
  #: includes/functions.php:1123 includes/functions.php:1127
6671
+ #: includes/functions.php:1129
6672
  #, php-format
6673
  msgid "Error interacting with database: %s"
6674
  msgstr ""
6692
  #: includes/functions.php:948 includes/functions.php:953
6693
  #: includes/functions.php:986 includes/functions.php:987
6694
  #: includes/functions.php:992 includes/functions.php:1198
6695
+ #: includes/functions.php:1202 includes/functions.php:1204
6696
+ #: includes/functions.php:1237 includes/functions.php:1241
6697
+ #: includes/functions.php:1243
6698
  msgid "Membership level not found."
6699
  msgstr ""
6700
 
6706
  #: includes/functions.php:1290 includes/functions.php:1356
6707
  #: includes/functions.php:1357 includes/functions.php:1362
6708
  #: includes/functions.php:1605 includes/functions.php:1609
6709
+ #: includes/functions.php:1611
6710
  msgid "No code was given to check."
6711
  msgstr ""
6712
 
6721
  #: includes/functions.php:1205 includes/functions.php:1299
6722
  #: includes/functions.php:1365 includes/functions.php:1366
6723
  #: includes/functions.php:1371 includes/functions.php:1614
6724
+ #: includes/functions.php:1618 includes/functions.php:1620
6725
  msgid "The discount code could not be found."
6726
  msgstr ""
6727
 
6736
  #: includes/functions.php:1220 includes/functions.php:1314
6737
  #: includes/functions.php:1380 includes/functions.php:1381
6738
  #: includes/functions.php:1386 includes/functions.php:1629
6739
+ #: includes/functions.php:1633 includes/functions.php:1635
6740
  #, php-format
6741
  msgid "This discount code goes into effect on %s."
6742
  msgstr ""
6752
  #: includes/functions.php:1227 includes/functions.php:1321
6753
  #: includes/functions.php:1387 includes/functions.php:1388
6754
  #: includes/functions.php:1393 includes/functions.php:1636
6755
+ #: includes/functions.php:1640 includes/functions.php:1642
6756
  #, php-format
6757
  msgid "This discount code expired on %s."
6758
  msgstr ""
6768
  #: includes/functions.php:1237 includes/functions.php:1331
6769
  #: includes/functions.php:1397 includes/functions.php:1398
6770
  #: includes/functions.php:1403 includes/functions.php:1646
6771
+ #: includes/functions.php:1650 includes/functions.php:1652
6772
  msgid "This discount code is no longer valid."
6773
  msgstr ""
6774
 
6783
  #: includes/functions.php:1344 includes/functions.php:1410
6784
  #: includes/functions.php:1411 includes/functions.php:1416
6785
  #: includes/functions.php:1666 includes/functions.php:1670
6786
+ #: includes/functions.php:1672
6787
  msgid "This discount code does not apply to this membership level."
6788
  msgstr ""
6789
 
6798
  #: includes/functions.php:1276 includes/functions.php:1370
6799
  #: includes/functions.php:1436 includes/functions.php:1442
6800
  #: includes/functions.php:1448 includes/functions.php:1703
6801
+ #: includes/functions.php:1707 includes/functions.php:1709
6802
  msgid "This discount code is okay."
6803
  msgstr ""
6804
 
6813
  #: includes/functions.php:1395 includes/functions.php:1397
6814
  #: includes/functions.php:1463 includes/functions.php:1469
6815
  #: includes/functions.php:1475 includes/functions.php:1730
6816
+ #: includes/functions.php:1734 includes/functions.php:1736
6817
  msgid "and"
6818
  msgstr ""
6819
 
6829
  #: includes/functions.php:1624 includes/functions.php:1691
6830
  #: includes/functions.php:1697 includes/functions.php:1703
6831
  #: includes/functions.php:2015 includes/functions.php:2019
6832
+ #: includes/functions.php:2022 includes/functions.php:2024
6833
  msgid "Sign Up for !!name!! Now"
6834
  msgstr ""
6835
 
6845
  #: includes/functions.php:1630 includes/functions.php:1697
6846
  #: includes/functions.php:1703 includes/functions.php:1709
6847
  #: includes/functions.php:2021 includes/functions.php:2025
6848
+ #: includes/functions.php:2028 includes/functions.php:2030
6849
  msgid "Please specify a level id."
6850
  msgstr ""
6851
 
6904
  msgstr ""
6905
 
6906
  #: includes/license.php:298 includes/license.php:273 includes/license.php:278
6907
+ #: includes/license.php:288 includes/license.php:291 includes/license.php:298
6908
  msgid "Invalid PMPro License Key."
6909
  msgstr ""
6910
 
6911
  #: includes/license.php:301 includes/license.php:273 includes/license.php:278
6912
+ #: includes/license.php:288 includes/license.php:291 includes/license.php:301
6913
  msgid ""
6914
  "If you're running Paid Memberships Pro on a production website, we recommend "
6915
  "an annual support license."
6916
  msgstr ""
6917
 
6918
  #: includes/license.php:302 includes/license.php:274 includes/license.php:279
6919
+ #: includes/license.php:289 includes/license.php:292 includes/license.php:302
6920
  msgid "Dismiss"
6921
  msgstr ""
6922
 
6923
  #: includes/license.php:302 includes/license.php:274 includes/license.php:279
6924
+ #: includes/license.php:289 includes/license.php:292 includes/license.php:302
6925
  msgid "More Info"
6926
  msgstr ""
6927
 
6928
  #: includes/localization.php:33 includes/localization.php:23
6929
+ #: includes/localization.php:26 includes/localization.php:33
6930
  msgid "Day"
6931
  msgstr ""
6932
 
6933
  #: includes/localization.php:35 includes/localization.php:25
6934
+ #: includes/localization.php:28 includes/localization.php:35
6935
  msgid "Week"
6936
  msgstr ""
6937
 
6938
  #: includes/localization.php:37 includes/localization.php:27
6939
+ #: includes/localization.php:30 includes/localization.php:37
6940
  msgid "Month"
6941
  msgstr ""
6942
 
6943
  #: includes/localization.php:39 includes/localization.php:29
6944
+ #: includes/localization.php:32 includes/localization.php:39
6945
  msgid "Year"
6946
  msgstr ""
6947
 
6948
  #: includes/localization.php:44 includes/localization.php:37
6949
+ #: includes/localization.php:44
6950
  msgid "Days"
6951
  msgstr ""
6952
 
6953
  #: includes/localization.php:46 includes/localization.php:39
6954
+ #: includes/localization.php:46
6955
  msgid "Weeks"
6956
  msgstr ""
6957
 
6958
  #: includes/localization.php:48 includes/localization.php:41
6959
+ #: includes/localization.php:48
6960
  msgid "Months"
6961
  msgstr ""
6962
 
6963
  #: includes/localization.php:50 includes/localization.php:43
6964
+ #: includes/localization.php:50
6965
  msgid "Years"
6966
  msgstr ""
6967
 
7048
  "register to read."
7049
  msgstr ""
7050
 
7051
+ #: pages/billing.php:26 pages/billing.php:14 pages/billing.php:23
7052
  #: pages/billing.php:25 pages/billing.php:26 pages/billing.php:28
7053
  #, php-format
7054
  msgid "Logged in as <strong>%s</strong>."
7055
  msgstr ""
7056
 
7057
+ #: pages/billing.php:26 pages/billing.php:14 pages/billing.php:23
7058
  #: pages/billing.php:25 pages/billing.php:26 pages/billing.php:28
7059
  msgid "logout"
7060
  msgstr ""
7061
 
7062
+ #: pages/billing.php:44 pages/cancel.php:61 pages/invoice.php:109
7063
  #: pages/levels.php:35 shortcodes/pmpro_account.php:44
7064
  #: shortcodes/pmpro_account.php:128 pages/account.php:12 pages/account.php:18
7065
  #: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
7072
  msgid "Level"
7073
  msgstr ""
7074
 
7075
+ #: pages/billing.php:46 pages/account.php:14 pages/billing.php:18
7076
  #: pages/billing.php:27 pages/billing.php:29 pages/billing.php:30
7077
  #: pages/billing.php:32
7078
  msgid "Membership Fee"
7079
  msgstr ""
7080
 
7081
+ #: pages/billing.php:50 pages/account.php:18 pages/billing.php:22
7082
  #: pages/billing.php:31 pages/billing.php:33 pages/billing.php:34
7083
  #: pages/billing.php:36 pages/levels.php:70
7084
  #, php-format
7085
  msgid "%s every %d %s."
7086
  msgstr ""
7087
 
7088
+ #: pages/billing.php:52 pages/account.php:20 pages/billing.php:24
7089
  #: pages/billing.php:33 pages/billing.php:35 pages/billing.php:36
7090
  #: pages/billing.php:38 pages/levels.php:66
7091
  #, php-format
7092
  msgid "%s per %s."
7093
  msgstr ""
7094
 
7095
+ #: pages/billing.php:62 pages/account.php:25 pages/account.php:29
7096
  #: pages/billing.php:29 pages/billing.php:33 pages/billing.php:42
7097
  #: pages/billing.php:44 pages/billing.php:45 pages/billing.php:47
7098
  msgid "Duration"
7099
  msgstr ""
7100
 
7101
+ #: pages/billing.php:80 pages/billing.php:39 pages/billing.php:43
7102
  #: pages/billing.php:52 pages/billing.php:54 pages/billing.php:55
7103
  #: pages/billing.php:57
7104
  msgid ""
7106
  "paypal.com\">login to PayPal here</a> to update your billing information."
7107
  msgstr ""
7108
 
7109
+ #: pages/billing.php:110 pages/checkout.php:336 pages/billing.php:65
7110
  #: pages/billing.php:69 pages/billing.php:78 pages/billing.php:81
7111
  #: pages/billing.php:83 pages/billing.php:84 pages/billing.php:87
7112
  #: pages/checkout.php:305 pages/checkout.php:307 pages/checkout.php:309
7115
  msgid "First Name"
7116
  msgstr ""
7117
 
7118
+ #: pages/billing.php:114 pages/checkout.php:340 pages/billing.php:69
7119
  #: pages/billing.php:73 pages/billing.php:82 pages/billing.php:85
7120
  #: pages/billing.php:87 pages/billing.php:88 pages/billing.php:91
7121
  #: pages/checkout.php:309 pages/checkout.php:311 pages/checkout.php:313
7124
  msgid "Last Name"
7125
  msgstr ""
7126
 
7127
+ #: pages/billing.php:118 pages/checkout.php:344 pages/billing.php:73
7128
  #: pages/billing.php:77 pages/billing.php:86 pages/billing.php:89
7129
  #: pages/billing.php:91 pages/billing.php:92 pages/billing.php:95
7130
  #: pages/checkout.php:313 pages/checkout.php:315 pages/checkout.php:317
7133
  msgid "Address 1"
7134
  msgstr ""
7135
 
7136
+ #: pages/billing.php:122 pages/checkout.php:348 pages/billing.php:77
7137
  #: pages/billing.php:81 pages/billing.php:90 pages/billing.php:93
7138
  #: pages/billing.php:95 pages/billing.php:96 pages/billing.php:99
7139
  #: pages/checkout.php:317 pages/checkout.php:319 pages/checkout.php:321
7142
  msgid "Address 2"
7143
  msgstr ""
7144
 
7145
+ #: pages/billing.php:132 pages/checkout.php:358 pages/billing.php:87
7146
  #: pages/billing.php:91 pages/billing.php:100 pages/billing.php:103
7147
  #: pages/billing.php:105 pages/billing.php:106 pages/billing.php:109
7148
  #: pages/checkout.php:327 pages/checkout.php:329 pages/checkout.php:331
7151
  msgid "City"
7152
  msgstr ""
7153
 
7154
+ #: pages/billing.php:136 pages/checkout.php:362 pages/billing.php:91
7155
  #: pages/billing.php:95 pages/billing.php:104 pages/billing.php:107
7156
  #: pages/billing.php:109 pages/billing.php:110 pages/billing.php:113
7157
  #: pages/checkout.php:331 pages/checkout.php:333 pages/checkout.php:335
7160
  msgid "State"
7161
  msgstr ""
7162
 
7163
+ #: pages/billing.php:140 pages/checkout.php:366 pages/billing.php:95
7164
  #: pages/billing.php:99 pages/billing.php:108 pages/billing.php:111
7165
  #: pages/billing.php:113 pages/billing.php:114 pages/billing.php:117
7166
  #: pages/checkout.php:335 pages/checkout.php:337 pages/checkout.php:339
7169
  msgid "Postal Code"
7170
  msgstr ""
7171
 
7172
+ #: pages/billing.php:149 pages/checkout.php:375 pages/billing.php:104
7173
  #: pages/billing.php:108 pages/billing.php:117 pages/billing.php:120
7174
  #: pages/billing.php:122 pages/billing.php:123 pages/billing.php:126
7175
  #: pages/checkout.php:344 pages/checkout.php:346 pages/checkout.php:348
7178
  msgid "City, State Zip"
7179
  msgstr ""
7180
 
7181
+ #: pages/billing.php:202 pages/checkout.php:428 pages/billing.php:157
7182
  #: pages/billing.php:161 pages/billing.php:170 pages/billing.php:173
7183
  #: pages/billing.php:175 pages/billing.php:176 pages/billing.php:179
7184
  #: pages/checkout.php:397 pages/checkout.php:399 pages/checkout.php:401
7187
  msgid "Country"
7188
  msgstr ""
7189
 
7190
+ #: pages/billing.php:227 pages/checkout.php:453 pages/billing.php:182
7191
  #: pages/billing.php:186 pages/billing.php:195 pages/billing.php:198
7192
  #: pages/billing.php:200 pages/billing.php:201 pages/billing.php:204
7193
  #: pages/checkout.php:422 pages/checkout.php:424 pages/checkout.php:426
7196
  msgid "Phone"
7197
  msgstr ""
7198
 
7199
+ #: pages/billing.php:238 pages/checkout.php:230 pages/checkout.php:467
7200
  #: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
7201
  #: pages/billing.php:209 pages/billing.php:211 pages/billing.php:212
7202
  #: pages/billing.php:215 pages/checkout.php:204 pages/checkout.php:207
7208
  msgid "E-mail Address"
7209
  msgstr ""
7210
 
7211
+ #: pages/billing.php:242 pages/checkout.php:476 pages/billing.php:197
7212
  #: pages/billing.php:201 pages/billing.php:210 pages/billing.php:213
7213
  #: pages/billing.php:215 pages/billing.php:216 pages/billing.php:219
7214
  #: pages/checkout.php:445 pages/checkout.php:447 pages/checkout.php:449
7217
  msgid "Confirm E-mail"
7218
  msgstr ""
7219
 
7220
+ #: pages/billing.php:270 pages/billing.php:217 pages/billing.php:221
7221
  #: pages/billing.php:230 pages/billing.php:231 pages/billing.php:234
7222
  #: pages/billing.php:238 pages/billing.php:244 pages/billing.php:247
7223
  msgid "Credit Card Information"
7224
  msgstr ""
7225
 
7226
+ #: pages/billing.php:271 pages/billing.php:217 pages/billing.php:221
7227
  #: pages/billing.php:230 pages/billing.php:232 pages/billing.php:235
7228
  #: pages/billing.php:239 pages/billing.php:245 pages/billing.php:248
7229
  #, php-format
7230
  msgid "We accept %s"
7231
  msgstr ""
7232
 
7233
+ #: pages/billing.php:413 pages/billing.php:309 pages/billing.php:313
7234
  #: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
7235
  #: pages/billing.php:360 pages/billing.php:364 pages/billing.php:387
7236
  #: pages/billing.php:408 pages/billing.php:417 pages/billing.php:422
7274
  msgid "Click here to go to the home page."
7275
  msgstr ""
7276
 
7277
+ #: pages/checkout.php:38 pages/checkout.php:26 pages/checkout.php:27
7278
  #: pages/checkout.php:28 pages/checkout.php:35
7279
  msgid ""
7280
  "Almost done. Review the membership information and pricing below then "
7281
  "<strong>click the \"Complete Payment\" button</strong> to finish your order."
7282
  msgstr ""
7283
 
7284
+ #: pages/checkout.php:46 pages/checkout.php:33 pages/checkout.php:34
7285
  #: pages/checkout.php:35 pages/checkout.php:42 pages/checkout.php:43
7286
  msgid "change"
7287
  msgstr ""
7288
 
7289
+ #: pages/checkout.php:54 pages/checkout.php:41 pages/checkout.php:42
7290
  #: pages/checkout.php:43 pages/checkout.php:50 pages/checkout.php:51
7291
  #, php-format
7292
  msgid "You have selected the <strong>%s</strong> membership level."
7293
  msgstr ""
7294
 
7295
+ #: pages/checkout.php:71 pages/checkout.php:51 pages/checkout.php:53
7296
  #: pages/checkout.php:60 pages/checkout.php:61 pages/checkout.php:68
7297
  #, php-format
7298
  msgid ""
7300
  "been applied to your order.</p>"
7301
  msgstr ""
7302
 
7303
+ #: pages/checkout.php:82 services/applydiscountcode.php:92
7304
  #: pages/checkout.php:62 pages/checkout.php:63 pages/checkout.php:64
7305
  #: pages/checkout.php:71 pages/checkout.php:72 pages/checkout.php:79
7306
  #: services/applydiscountcode.php:74 services/applydiscountcode.php:75
7309
  msgid "Click here to change your discount code"
7310
  msgstr ""
7311
 
7312
+ #: pages/checkout.php:84 pages/checkout.php:64 pages/checkout.php:65
7313
  #: pages/checkout.php:66 pages/checkout.php:73 pages/checkout.php:74
7314
  #: pages/checkout.php:81
7315
  msgid "Click here to enter your discount code"
7316
  msgstr ""
7317
 
7318
+ #: pages/checkout.php:84 pages/checkout.php:64 pages/checkout.php:65
7319
  #: pages/checkout.php:66 pages/checkout.php:73 pages/checkout.php:74
7320
  #: pages/checkout.php:81
7321
  msgid "Do you have a discount code?"
7322
  msgstr ""
7323
 
7324
+ #: pages/checkout.php:185 pages/checkout.php:160 pages/checkout.php:163
7325
  #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:173
7326
  #: pages/checkout.php:175 pages/checkout.php:182
7327
  msgid "Account Information"
7328
  msgstr ""
7329
 
7330
+ #: pages/checkout.php:186 pages/checkout.php:160 pages/checkout.php:163
7331
  #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:174
7332
  #: pages/checkout.php:176 pages/checkout.php:183
7333
  msgid "Already have an account?"
7334
  msgstr ""
7335
 
7336
+ #: pages/checkout.php:186 pages/checkout.php:160 pages/checkout.php:163
7337
  #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:174
7338
  #: pages/checkout.php:176 pages/checkout.php:183
7339
  msgid "Log in here"
7340
  msgstr ""
7341
 
7342
+ #: pages/checkout.php:212 pages/checkout.php:186 pages/checkout.php:189
7343
  #: pages/checkout.php:191 pages/checkout.php:198 pages/checkout.php:200
7344
  #: pages/checkout.php:202 pages/checkout.php:209
7345
  msgid "Confirm Password"
7346
  msgstr ""
7347
 
7348
+ #: pages/checkout.php:239 pages/checkout.php:213 pages/checkout.php:216
7349
  #: pages/checkout.php:218 pages/checkout.php:225 pages/checkout.php:227
7350
  #: pages/checkout.php:229 pages/checkout.php:236
7351
  msgid "Confirm E-mail Address"
7352
  msgstr ""
7353
 
7354
+ #: pages/checkout.php:258 pages/checkout.php:232 pages/checkout.php:235
7355
  #: pages/checkout.php:237 pages/checkout.php:244 pages/checkout.php:246
7356
  #: pages/checkout.php:248 pages/checkout.php:255
7357
  msgid "Full Name"
7358
  msgstr ""
7359
 
7360
+ #: pages/checkout.php:259 pages/checkout.php:233 pages/checkout.php:236
7361
  #: pages/checkout.php:238 pages/checkout.php:245 pages/checkout.php:247
7362
  #: pages/checkout.php:249 pages/checkout.php:256
7363
  msgid "LEAVE THIS BLANK"
7364
  msgstr ""
7365
 
7366
+ #: pages/checkout.php:283 pages/checkout.php:257 pages/checkout.php:260
7367
  #: pages/checkout.php:262 pages/checkout.php:269 pages/checkout.php:271
7368
  #: pages/checkout.php:273 pages/checkout.php:280
7369
  #, php-format
7372
  "different account for this membership, <a href=\"%s\">log out now</a>."
7373
  msgstr ""
7374
 
7375
+ #: pages/checkout.php:299 pages/checkout.php:276 pages/checkout.php:278
7376
  #: pages/checkout.php:285 pages/checkout.php:287 pages/checkout.php:289
7377
  #: pages/checkout.php:292 pages/checkout.php:296 pages/checkout.php:299
7378
  msgid "Choose your Payment Method"
7379
  msgstr ""
7380
 
7381
+ #: pages/checkout.php:308 pages/checkout.php:284 pages/checkout.php:286
7382
  #: pages/checkout.php:293 pages/checkout.php:296 pages/checkout.php:298
7383
  #: pages/checkout.php:300 pages/checkout.php:305 pages/checkout.php:307
7384
  msgid "Check Out with a Credit Card Here"
7385
  msgstr ""
7386
 
7387
+ #: pages/checkout.php:696 pages/checkout.php:277 pages/checkout.php:284
7388
  #: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
7389
  #: pages/checkout.php:681 pages/checkout.php:686 pages/checkout.php:690
7390
  #: pages/checkout.php:692 pages/checkout.php:693 pages/checkout.php:696
7393
  msgid "I agree to the %s"
7394
  msgstr ""
7395
 
7396
+ #: pages/checkout.php:716 pages/checkout.php:667 pages/checkout.php:674
7397
  #: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
7398
  #: pages/checkout.php:701 pages/checkout.php:706 pages/checkout.php:710
7399
  #: pages/checkout.php:712 pages/checkout.php:713 pages/checkout.php:716
7401
  msgid "Complete Payment"
7402
  msgstr ""
7403
 
7404
+ #: pages/checkout.php:738 pages/checkout.php:687 pages/checkout.php:694
7405
  #: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
7406
  #: pages/checkout.php:723 pages/checkout.php:728 pages/checkout.php:732
7407
  #: pages/checkout.php:734 pages/checkout.php:735 pages/checkout.php:738
7546
  msgid "&larr; Return to Home"
7547
  msgstr ""
7548
 
7549
+ #: paid-memberships-pro.php:127 adminpages/orders.php:398
7550
  #: adminpages/orders.php:448 paid-memberships-pro.php:115
7551
  #: paid-memberships-pro.php:116 paid-memberships-pro.php:123
7552
  #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
7555
  msgid "Testing Only"
7556
  msgstr ""
7557
 
7558
+ #: paid-memberships-pro.php:132 paid-memberships-pro.php:120
7559
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:128
7560
  #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
7561
  #: paid-memberships-pro.php:131 paid-memberships-pro.php:133
7563
  msgid "PayPal Payflow Pro/PayPal Pro"
7564
  msgstr ""
7565
 
7566
+ #: paid-memberships-pro.php:137 paid-memberships-pro.php:125
7567
  #: paid-memberships-pro.php:126 paid-memberships-pro.php:133
7568
  #: paid-memberships-pro.php:134 paid-memberships-pro.php:135
7569
  #: paid-memberships-pro.php:136 paid-memberships-pro.php:138
7571
  msgid "Cybersource"
7572
  msgstr ""
7573
 
7574
+ #: paid-memberships-pro.php:158 paid-memberships-pro.php:156
7575
  #: paid-memberships-pro.php:157 paid-memberships-pro.php:159
7576
  #: paid-memberships-pro.php:166
7577
  msgid "Once a month"
7654
  msgstr ""
7655
 
7656
  #: preheaders/cancel.php:60 preheaders/cancel.php:24 preheaders/cancel.php:25
7657
+ #: preheaders/cancel.php:28 preheaders/cancel.php:59 preheaders/cancel.php:60
7658
  msgid "Your membership has been cancelled."
7659
  msgstr ""
7660
 
languages/paid-memberships-pro.pot CHANGED
@@ -1,17 +1,15 @@
1
- # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
- # This file is distributed under the same license as the PACKAGE package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
  #
6
- #, fuzzy
 
 
7
  msgid ""
8
  msgstr ""
9
- "Project-Id-Version: PACKAGE VERSION\n"
10
  "Report-Msgid-Bugs-To: jason@strangerstudios.com\n"
11
- "POT-Creation-Date: 2017-05-10 14:14-0400\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
- "Language-Team: LANGUAGE <LL@li.org>\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
@@ -846,8 +844,8 @@ msgstr ""
846
 
847
  #: adminpages/discountcodes.php:442
848
  #: classes/gateways/class.pmprogateway_braintree.php:423
849
- #: classes/gateways/class.pmprogateway_stripe.php:597 pages/billing.php:316
850
- #: pages/checkout.php:582 adminpages/discountcodes.php:367
851
  #: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
852
  #: adminpages/discountcodes.php:372 adminpages/discountcodes.php:377
853
  #: adminpages/discountcodes.php:442
@@ -1713,7 +1711,7 @@ msgid "Save Level"
1713
  msgstr ""
1714
 
1715
  #: adminpages/membershiplevels.php:530 adminpages/orders.php:796
1716
- #: pages/billing.php:371 pages/cancel.php:84 shortcodes/pmpro_account.php:72
1717
  #: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:508
1718
  #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:518
1719
  #: adminpages/membershiplevels.php:530 adminpages/orders.php:511
@@ -1912,7 +1910,7 @@ msgstr ""
1912
  msgid "%d members found."
1913
  msgstr ""
1914
 
1915
- #: adminpages/memberslist.php:165 pages/checkout.php:191
1916
  #: shortcodes/pmpro_account.php:110 adminpages/memberslist.php:112
1917
  #: adminpages/memberslist.php:145 adminpages/memberslist.php:155
1918
  #: adminpages/memberslist.php:165 pages/account.php:51 pages/account.php:55
@@ -1936,7 +1934,7 @@ msgstr ""
1936
  msgid "Last&nbsp;Name"
1937
  msgstr ""
1938
 
1939
- #: adminpages/memberslist.php:170 pages/billing.php:77 pages/checkout.php:326
1940
  #: pages/confirmation.php:67 pages/invoice.php:48
1941
  #: adminpages/memberslist.php:117 adminpages/memberslist.php:150
1942
  #: adminpages/memberslist.php:160 adminpages/memberslist.php:170
@@ -2182,8 +2180,8 @@ msgstr ""
2182
 
2183
  #: adminpages/orders.php:563
2184
  #: classes/gateways/class.pmprogateway_braintree.php:406
2185
- #: classes/gateways/class.pmprogateway_stripe.php:549 pages/billing.php:268
2186
- #: pages/checkout.php:534 adminpages/orders.php:339 adminpages/orders.php:389
2187
  #: adminpages/orders.php:461 adminpages/orders.php:490
2188
  #: adminpages/orders.php:532 adminpages/orders.php:563
2189
  #: classes/gateways/class.pmprogateway_braintree.php:291
@@ -2494,7 +2492,7 @@ msgid "User"
2494
  msgstr ""
2495
 
2496
  #: adminpages/orders.php:1138 includes/init.php:244 includes/profile.php:36
2497
- #: pages/checkout.php:42 pages/confirmation.php:53 pages/confirmation.php:70
2498
  #: pages/confirmation.php:116 pages/invoice.php:28 pages/invoice.php:51
2499
  #: adminpages/orders.php:601 adminpages/orders.php:904
2500
  #: adminpages/orders.php:914 adminpages/orders.php:941
@@ -2856,7 +2854,7 @@ msgstr ""
2856
  msgid "Sales Tax"
2857
  msgstr ""
2858
 
2859
- #: adminpages/paymentsettings.php:188 pages/billing.php:97
2860
  #: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:398
2861
  #: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
2862
  #: adminpages/paymentsettings.php:445 pages/billing.php:78
@@ -3253,6 +3251,13 @@ msgstr ""
3253
  msgid "Update complete."
3254
  msgstr ""
3255
 
 
 
 
 
 
 
 
3256
  #: classes/class.memberorder.php:729 classes/class.memberorder.php:553
3257
  #: classes/class.memberorder.php:561 classes/class.memberorder.php:564
3258
  #: classes/class.memberorder.php:573 classes/class.memberorder.php:644
@@ -3300,8 +3305,8 @@ msgstr ""
3300
  #: classes/class.pmproemail.php:378 classes/class.pmproemail.php:696
3301
  #: classes/class.pmproemail.php:698
3302
  #: classes/gateways/class.pmprogateway_braintree.php:464
3303
- #: classes/gateways/class.pmprogateway_stripe.php:638 pages/checkout.php:83
3304
- #: pages/checkout.php:93 pages/checkout.php:619 pages/confirmation.php:58
3305
  #: pages/invoice.php:33 classes/class.pmproemail.php:216
3306
  #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
3307
  #: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
@@ -3634,7 +3639,7 @@ msgid ""
3634
  msgstr ""
3635
 
3636
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
3637
- #: paid-memberships-pro.php:142
3638
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
3639
  #: paid-memberships-pro.php:122 paid-memberships-pro.php:123
3640
  #: paid-memberships-pro.php:130 paid-memberships-pro.php:131
@@ -3703,7 +3708,7 @@ msgid ""
3703
  msgstr ""
3704
 
3705
  #: classes/gateways/class.pmprogateway_braintree.php:172
3706
- #: paid-memberships-pro.php:143
3707
  #: classes/gateways/class.pmprogateway_braintree.php:63
3708
  #: classes/gateways/class.pmprogateway_braintree.php:76
3709
  #: classes/gateways/class.pmprogateway_braintree.php:77
@@ -3815,7 +3820,7 @@ msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
3815
  msgstr ""
3816
 
3817
  #: classes/gateways/class.pmprogateway_braintree.php:383
3818
- #: classes/gateways/class.pmprogateway_stripe.php:526 pages/checkout.php:510
3819
  #: classes/gateways/class.pmprogateway_braintree.php:270
3820
  #: classes/gateways/class.pmprogateway_braintree.php:283
3821
  #: classes/gateways/class.pmprogateway_braintree.php:285
@@ -3843,7 +3848,7 @@ msgid "Payment Information"
3843
  msgstr ""
3844
 
3845
  #: classes/gateways/class.pmprogateway_braintree.php:384
3846
- #: classes/gateways/class.pmprogateway_stripe.php:527 pages/checkout.php:511
3847
  #: classes/gateways/class.pmprogateway_braintree.php:270
3848
  #: classes/gateways/class.pmprogateway_braintree.php:283
3849
  #: classes/gateways/class.pmprogateway_braintree.php:285
@@ -3872,8 +3877,8 @@ msgid "We Accept %s"
3872
  msgstr ""
3873
 
3874
  #: classes/gateways/class.pmprogateway_braintree.php:418
3875
- #: classes/gateways/class.pmprogateway_stripe.php:592 pages/billing.php:311
3876
- #: pages/checkout.php:577
3877
  #: classes/gateways/class.pmprogateway_braintree.php:303
3878
  #: classes/gateways/class.pmprogateway_braintree.php:316
3879
  #: classes/gateways/class.pmprogateway_braintree.php:318
@@ -3904,8 +3909,8 @@ msgid "Card Number"
3904
  msgstr ""
3905
 
3906
  #: classes/gateways/class.pmprogateway_braintree.php:455
3907
- #: classes/gateways/class.pmprogateway_stripe.php:629 pages/billing.php:354
3908
- #: pages/checkout.php:612
3909
  #: classes/gateways/class.pmprogateway_braintree.php:340
3910
  #: classes/gateways/class.pmprogateway_braintree.php:353
3911
  #: classes/gateways/class.pmprogateway_braintree.php:355
@@ -3937,8 +3942,8 @@ msgid "CVV"
3937
  msgstr ""
3938
 
3939
  #: classes/gateways/class.pmprogateway_braintree.php:456
3940
- #: classes/gateways/class.pmprogateway_stripe.php:630 pages/billing.php:355
3941
- #: pages/checkout.php:613
3942
  #: classes/gateways/class.pmprogateway_braintree.php:341
3943
  #: classes/gateways/class.pmprogateway_braintree.php:354
3944
  #: classes/gateways/class.pmprogateway_braintree.php:356
@@ -3970,8 +3975,8 @@ msgid "what's this?"
3970
  msgstr ""
3971
 
3972
  #: classes/gateways/class.pmprogateway_braintree.php:466
3973
- #: classes/gateways/class.pmprogateway_stripe.php:640 pages/checkout.php:95
3974
- #: pages/checkout.php:621
3975
  #: classes/gateways/class.pmprogateway_braintree.php:351
3976
  #: classes/gateways/class.pmprogateway_braintree.php:364
3977
  #: classes/gateways/class.pmprogateway_braintree.php:366
@@ -4003,9 +4008,9 @@ msgstr ""
4003
  #: classes/gateways/class.pmprogateway_braintree.php:524
4004
  #: classes/gateways/class.pmprogateway_braintree.php:541
4005
  #: classes/gateways/class.pmprogateway_braintree.php:623
4006
- #: classes/gateways/class.pmprogateway_braintree.php:781
4007
- #: classes/gateways/class.pmprogateway_braintree.php:886
4008
- #: classes/gateways/class.pmprogateway_braintree.php:906
4009
  #: classes/gateways/class.pmprogateway_braintree.php:524
4010
  #: classes/gateways/class.pmprogateway_braintree.php:541
4011
  #: classes/gateways/class.pmprogateway_braintree.php:623
@@ -4069,7 +4074,7 @@ msgstr ""
4069
  msgid "Error during charge:"
4070
  msgstr ""
4071
 
4072
- #: classes/gateways/class.pmprogateway_braintree.php:702
4073
  #: classes/gateways/class.pmprogateway_braintree.php:198
4074
  #: classes/gateways/class.pmprogateway_braintree.php:221
4075
  #: classes/gateways/class.pmprogateway_braintree.php:566
@@ -4083,7 +4088,7 @@ msgstr ""
4083
  msgid "Failed to update customer."
4084
  msgstr ""
4085
 
4086
- #: classes/gateways/class.pmprogateway_braintree.php:750
4087
  #: classes/gateways/class.pmprogateway_braintree.php:246
4088
  #: classes/gateways/class.pmprogateway_braintree.php:269
4089
  #: classes/gateways/class.pmprogateway_braintree.php:614
@@ -4097,7 +4102,7 @@ msgstr ""
4097
  msgid "Failed to create customer."
4098
  msgstr ""
4099
 
4100
- #: classes/gateways/class.pmprogateway_braintree.php:757
4101
  #: classes/gateways/class.pmprogateway_braintree.php:253
4102
  #: classes/gateways/class.pmprogateway_braintree.php:276
4103
  #: classes/gateways/class.pmprogateway_braintree.php:621
@@ -4111,7 +4116,7 @@ msgstr ""
4111
  msgid "Error creating customer record with Braintree:"
4112
  msgstr ""
4113
 
4114
- #: classes/gateways/class.pmprogateway_braintree.php:862
4115
  #: classes/gateways/class.pmprogateway_braintree.php:344
4116
  #: classes/gateways/class.pmprogateway_braintree.php:345
4117
  #: classes/gateways/class.pmprogateway_braintree.php:376
@@ -4126,7 +4131,7 @@ msgstr ""
4126
  msgid "Error subscribing customer to plan with Braintree:"
4127
  msgstr ""
4128
 
4129
- #: classes/gateways/class.pmprogateway_braintree.php:877
4130
  #: classes/gateways/class.pmprogateway_braintree.php:359
4131
  #: classes/gateways/class.pmprogateway_braintree.php:360
4132
  #: classes/gateways/class.pmprogateway_braintree.php:391
@@ -4141,9 +4146,9 @@ msgstr ""
4141
  msgid "Failed to subscribe with Braintree:"
4142
  msgstr ""
4143
 
4144
- #: classes/gateways/class.pmprogateway_braintree.php:925
4145
- #: classes/gateways/class.pmprogateway_braintree.php:938
4146
- #: classes/gateways/class.pmprogateway_braintree.php:945
4147
  #: classes/gateways/class.pmprogateway_braintree.php:397
4148
  #: classes/gateways/class.pmprogateway_braintree.php:398
4149
  #: classes/gateways/class.pmprogateway_braintree.php:410
@@ -4189,7 +4194,7 @@ msgid "Could not find the subscription."
4189
  msgstr ""
4190
 
4191
  #: classes/gateways/class.pmprogateway_check.php:49
4192
- #: paid-memberships-pro.php:136 adminpages/orders.php:399
4193
  #: adminpages/orders.php:449 adminpages/paymentsettings.php:157
4194
  #: adminpages/paymentsettings.php:159
4195
  #: classes/gateways/class.pmprogateway_check.php:48
@@ -4276,7 +4281,7 @@ msgid "Vendor"
4276
  msgstr ""
4277
 
4278
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
4279
- #: pages/checkout.php:200 adminpages/paymentsettings.php:219
4280
  #: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:228
4281
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
4282
  #: pages/checkout.php:177 pages/checkout.php:180 pages/checkout.php:182
@@ -4312,7 +4317,7 @@ msgid ""
4312
  msgstr ""
4313
 
4314
  #: classes/gateways/class.pmprogateway_paypal.php:68
4315
- #: paid-memberships-pro.php:139
4316
  #: classes/gateways/class.pmprogateway_paypal.php:57
4317
  #: classes/gateways/class.pmprogateway_paypal.php:68
4318
  #: paid-memberships-pro.php:119 paid-memberships-pro.php:120
@@ -4450,7 +4455,7 @@ msgstr ""
4450
  #: classes/gateways/class.pmprogateway_paypal.php:201
4451
  #: classes/gateways/class.pmprogateway_paypalexpress.php:438
4452
  #: classes/gateways/class.pmprogateway_paypalstandard.php:201
4453
- #: pages/checkout.php:309 classes/gateways/class.pmprogateway_paypal.php:178
4454
  #: classes/gateways/class.pmprogateway_paypal.php:201
4455
  #: classes/gateways/class.pmprogateway_paypalexpress.php:402
4456
  #: classes/gateways/class.pmprogateway_paypalexpress.php:412
@@ -4467,7 +4472,7 @@ msgstr ""
4467
  #: classes/gateways/class.pmprogateway_paypal.php:207
4468
  #: classes/gateways/class.pmprogateway_paypalexpress.php:443
4469
  #: classes/gateways/class.pmprogateway_paypalstandard.php:206
4470
- #: pages/checkout.php:725 classes/gateways/class.pmprogateway_paypal.php:184
4471
  #: classes/gateways/class.pmprogateway_paypal.php:207
4472
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
4473
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
@@ -4485,7 +4490,7 @@ msgstr ""
4485
  #: classes/gateways/class.pmprogateway_paypalexpress.php:443
4486
  #: classes/gateways/class.pmprogateway_paypalstandard.php:206
4487
  #: classes/gateways/class.pmprogateway_twocheckout.php:203
4488
- #: pages/checkout.php:725 classes/gateways/class.pmprogateway_paypal.php:184
4489
  #: classes/gateways/class.pmprogateway_paypal.php:207
4490
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
4491
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
@@ -4530,7 +4535,7 @@ msgid ""
4530
  msgstr ""
4531
 
4532
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
4533
- #: paid-memberships-pro.php:138
4534
  #: classes/gateways/class.pmprogateway_paypalexpress.php:63
4535
  #: classes/gateways/class.pmprogateway_paypalexpress.php:73
4536
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
@@ -4568,7 +4573,7 @@ msgid "The PayPal Token was lost."
4568
  msgstr ""
4569
 
4570
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
4571
- #: paid-memberships-pro.php:141
4572
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
4573
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:122
4574
  #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
@@ -4585,7 +4590,7 @@ msgid ""
4585
  msgstr ""
4586
 
4587
  #: classes/gateways/class.pmprogateway_stripe.php:169
4588
- #: paid-memberships-pro.php:137
4589
  #: classes/gateways/class.pmprogateway_stripe.php:93
4590
  #: classes/gateways/class.pmprogateway_stripe.php:94
4591
  #: classes/gateways/class.pmprogateway_stripe.php:104
@@ -4752,7 +4757,7 @@ msgid ""
4752
  "at predefined times. Be sure to click Update User after making changes."
4753
  msgstr ""
4754
 
4755
- #: classes/gateways/class.pmprogateway_stripe.php:721 pages/billing.php:370
4756
  #: classes/gateways/class.pmprogateway_stripe.php:578
4757
  #: classes/gateways/class.pmprogateway_stripe.php:579
4758
  #: classes/gateways/class.pmprogateway_stripe.php:589
@@ -4961,7 +4966,7 @@ msgid "Error: Unkown error while refunding charge #%s"
4961
  msgstr ""
4962
 
4963
  #: classes/gateways/class.pmprogateway_twocheckout.php:59
4964
- #: paid-memberships-pro.php:144
4965
  #: classes/gateways/class.pmprogateway_twocheckout.php:53
4966
  #: classes/gateways/class.pmprogateway_twocheckout.php:59
4967
  #: classes/gateways/class.pmprogateway_twocheckout.php:60
@@ -5141,231 +5146,1249 @@ msgstr ""
5141
  msgid "Visit Customer Support Forum"
5142
  msgstr ""
5143
 
5144
- #: includes/currencies.php:17 includes/currencies.php:94
5145
- #: includes/currencies.php:7 includes/currencies.php:17
5146
- #: includes/currencies.php:37 includes/currencies.php:44
5147
- #: includes/currencies.php:64 includes/currencies.php:68
5148
- #: includes/currencies.php:75 includes/currencies.php:85
5149
- #: includes/currencies.php:87 includes/currencies.php:94
5150
- msgid "US Dollars (&#36;)"
5151
  msgstr ""
5152
 
5153
- #: includes/currencies.php:19 includes/currencies.php:97
5154
- #: includes/currencies.php:8 includes/currencies.php:9
5155
- #: includes/currencies.php:19 includes/currencies.php:40
5156
- #: includes/currencies.php:47 includes/currencies.php:67
5157
- #: includes/currencies.php:71 includes/currencies.php:78
5158
- #: includes/currencies.php:88 includes/currencies.php:90
5159
- #: includes/currencies.php:97
5160
- msgid "Euros (&euro;)"
5161
  msgstr ""
5162
 
5163
- #: includes/currencies.php:24 includes/currencies.php:96
5164
- #: includes/currencies.php:9 includes/currencies.php:14
5165
- #: includes/currencies.php:24 includes/currencies.php:39
5166
- #: includes/currencies.php:46 includes/currencies.php:66
5167
- #: includes/currencies.php:70 includes/currencies.php:77
5168
- #: includes/currencies.php:87 includes/currencies.php:89
5169
- #: includes/currencies.php:96
5170
- msgid "Pounds Sterling (&pound;)"
5171
  msgstr ""
5172
 
5173
- #: includes/currencies.php:28 includes/currencies.php:28
5174
- msgid "Argentine Peso (&#36;)"
5175
  msgstr ""
5176
 
5177
- #: includes/currencies.php:29 includes/currencies.php:10
5178
- #: includes/currencies.php:18 includes/currencies.php:28
5179
- #: includes/currencies.php:29
5180
- msgid "Australian Dollars (&#36;)"
5181
  msgstr ""
5182
 
5183
- #: includes/currencies.php:31 includes/currencies.php:20
5184
- #: includes/currencies.php:30 includes/currencies.php:31
5185
- msgid "Brazilian Real (R&#36;)"
5186
  msgstr ""
5187
 
5188
- #: includes/currencies.php:35 includes/currencies.php:95
5189
- #: includes/currencies.php:12 includes/currencies.php:24
5190
- #: includes/currencies.php:34 includes/currencies.php:35
5191
- #: includes/currencies.php:38 includes/currencies.php:45
5192
- #: includes/currencies.php:65 includes/currencies.php:69
5193
- #: includes/currencies.php:76 includes/currencies.php:86
5194
- #: includes/currencies.php:88 includes/currencies.php:95
5195
- msgid "Canadian Dollars (&#36;)"
5196
  msgstr ""
5197
 
5198
- #: includes/currencies.php:36 includes/currencies.php:13
5199
- #: includes/currencies.php:25 includes/currencies.php:35
5200
- #: includes/currencies.php:36
5201
- msgid "Chinese Yuan"
5202
  msgstr ""
5203
 
5204
- #: includes/currencies.php:38 includes/currencies.php:13
5205
- #: includes/currencies.php:14 includes/currencies.php:26
5206
- #: includes/currencies.php:27 includes/currencies.php:37
5207
- #: includes/currencies.php:38
5208
- msgid "Czech Koruna"
5209
  msgstr ""
5210
 
5211
- #: includes/currencies.php:45 includes/currencies.php:14
5212
- #: includes/currencies.php:15 includes/currencies.php:27
5213
- #: includes/currencies.php:34 includes/currencies.php:44
5214
- #: includes/currencies.php:45
5215
- msgid "Danish Krone"
5216
  msgstr ""
5217
 
5218
- #: includes/currencies.php:46 includes/currencies.php:15
5219
- #: includes/currencies.php:16 includes/currencies.php:28
5220
- #: includes/currencies.php:35 includes/currencies.php:45
5221
- #: includes/currencies.php:46
5222
- msgid "Hong Kong Dollar (&#36;)"
5223
  msgstr ""
5224
 
5225
- #: includes/currencies.php:47 includes/currencies.php:16
5226
- #: includes/currencies.php:17 includes/currencies.php:29
5227
- #: includes/currencies.php:36 includes/currencies.php:46
5228
- #: includes/currencies.php:47
5229
- msgid "Hungarian Forint"
5230
  msgstr ""
5231
 
5232
- #: includes/currencies.php:48 includes/currencies.php:18
5233
- #: includes/currencies.php:30 includes/currencies.php:37
5234
- #: includes/currencies.php:47 includes/currencies.php:48
5235
- msgid "Indian Rupee"
5236
  msgstr ""
5237
 
5238
- #: includes/currencies.php:49 includes/currencies.php:19
5239
- #: includes/currencies.php:31 includes/currencies.php:38
5240
- #: includes/currencies.php:48 includes/currencies.php:49
5241
- msgid "Indonesia Rupiah"
5242
  msgstr ""
5243
 
5244
- #: includes/currencies.php:50 includes/currencies.php:17
5245
- #: includes/currencies.php:20 includes/currencies.php:32
5246
- #: includes/currencies.php:39 includes/currencies.php:49
5247
- #: includes/currencies.php:50
5248
- msgid "Israeli Shekel"
5249
  msgstr ""
5250
 
5251
- #: includes/currencies.php:52 includes/currencies.php:18
5252
- #: includes/currencies.php:21 includes/currencies.php:34
5253
- #: includes/currencies.php:41 includes/currencies.php:51
5254
- #: includes/currencies.php:52
5255
- msgid "Japanese Yen (&yen;)"
5256
  msgstr ""
5257
 
5258
- #: includes/currencies.php:57 includes/currencies.php:19
5259
- #: includes/currencies.php:22 includes/currencies.php:38
5260
- #: includes/currencies.php:45 includes/currencies.php:55
5261
- #: includes/currencies.php:56 includes/currencies.php:57
5262
- msgid "Malaysian Ringgits"
5263
  msgstr ""
5264
 
5265
- #: includes/currencies.php:58 includes/currencies.php:20
5266
- #: includes/currencies.php:23 includes/currencies.php:39
5267
- #: includes/currencies.php:46 includes/currencies.php:56
5268
- #: includes/currencies.php:57 includes/currencies.php:58
5269
- msgid "Mexican Peso (&#36;)"
5270
  msgstr ""
5271
 
5272
- #: includes/currencies.php:59 includes/currencies.php:58
5273
- #: includes/currencies.php:59
5274
- msgid "Nigerian Naira (&#8358;)"
5275
  msgstr ""
5276
 
5277
- #: includes/currencies.php:60 includes/currencies.php:21
5278
- #: includes/currencies.php:24 includes/currencies.php:40
5279
- #: includes/currencies.php:47 includes/currencies.php:57
5280
- #: includes/currencies.php:59 includes/currencies.php:60
5281
- msgid "New Zealand Dollar (&#36;)"
5282
  msgstr ""
5283
 
5284
- #: includes/currencies.php:61 includes/currencies.php:22
5285
- #: includes/currencies.php:25 includes/currencies.php:41
5286
- #: includes/currencies.php:48 includes/currencies.php:58
5287
- #: includes/currencies.php:60 includes/currencies.php:61
5288
- msgid "Norwegian Krone"
5289
  msgstr ""
5290
 
5291
- #: includes/currencies.php:62 includes/currencies.php:23
5292
- #: includes/currencies.php:26 includes/currencies.php:42
5293
- #: includes/currencies.php:49 includes/currencies.php:59
5294
- #: includes/currencies.php:61 includes/currencies.php:62
5295
- msgid "Philippine Pesos"
5296
  msgstr ""
5297
 
5298
- #: includes/currencies.php:63 includes/currencies.php:24
5299
- #: includes/currencies.php:27 includes/currencies.php:43
5300
- #: includes/currencies.php:50 includes/currencies.php:60
5301
- #: includes/currencies.php:62 includes/currencies.php:63
5302
- msgid "Polish Zloty"
5303
  msgstr ""
5304
 
5305
- #: includes/currencies.php:65 includes/currencies.php:25
5306
- #: includes/currencies.php:28 includes/currencies.php:45
5307
- #: includes/currencies.php:52 includes/currencies.php:62
5308
- #: includes/currencies.php:64 includes/currencies.php:65
5309
- msgid "Singapore Dollar (&#36;)"
5310
  msgstr ""
5311
 
5312
- #: includes/currencies.php:70 includes/currencies.php:50
5313
- #: includes/currencies.php:57 includes/currencies.php:67
5314
- #: includes/currencies.php:69 includes/currencies.php:70
5315
- msgid "South African Rand (R)"
5316
  msgstr ""
5317
 
5318
- #: includes/currencies.php:75 includes/currencies.php:30
5319
- #: includes/currencies.php:50 includes/currencies.php:54
5320
- #: includes/currencies.php:61 includes/currencies.php:71
5321
- #: includes/currencies.php:73 includes/currencies.php:75
5322
- msgid "South Korean Won"
5323
  msgstr ""
5324
 
5325
- #: includes/currencies.php:78 includes/currencies.php:26
5326
- #: includes/currencies.php:31 includes/currencies.php:51
5327
- #: includes/currencies.php:55 includes/currencies.php:62
5328
- #: includes/currencies.php:72 includes/currencies.php:74
5329
- #: includes/currencies.php:78
5330
- msgid "Swedish Krona"
5331
  msgstr ""
5332
 
5333
- #: includes/currencies.php:79 includes/currencies.php:27
5334
- #: includes/currencies.php:32 includes/currencies.php:52
5335
- #: includes/currencies.php:56 includes/currencies.php:63
5336
- #: includes/currencies.php:73 includes/currencies.php:75
5337
- #: includes/currencies.php:79
5338
- msgid "Swiss Franc"
5339
  msgstr ""
5340
 
5341
- #: includes/currencies.php:80 includes/currencies.php:28
5342
- #: includes/currencies.php:33 includes/currencies.php:53
5343
- #: includes/currencies.php:57 includes/currencies.php:64
5344
- #: includes/currencies.php:74 includes/currencies.php:76
5345
- #: includes/currencies.php:80
5346
- msgid "Taiwan New Dollars"
5347
  msgstr ""
5348
 
5349
- #: includes/currencies.php:81 includes/currencies.php:29
5350
- #: includes/currencies.php:34 includes/currencies.php:54
5351
- #: includes/currencies.php:58 includes/currencies.php:65
5352
- #: includes/currencies.php:75 includes/currencies.php:77
5353
- #: includes/currencies.php:81
5354
- msgid "Thai Baht"
5355
  msgstr ""
5356
 
5357
- #: includes/currencies.php:82 includes/currencies.php:35
5358
- #: includes/currencies.php:55 includes/currencies.php:59
5359
- #: includes/currencies.php:66 includes/currencies.php:76
5360
- #: includes/currencies.php:78 includes/currencies.php:82
5361
- msgid "Turkish Lira"
5362
  msgstr ""
5363
 
5364
- #: includes/currencies.php:84 includes/currencies.php:36
5365
- #: includes/currencies.php:56 includes/currencies.php:60
5366
- #: includes/currencies.php:67 includes/currencies.php:77
5367
- #: includes/currencies.php:79 includes/currencies.php:84
5368
- msgid "Vietnamese Dong"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5369
  msgstr ""
5370
 
5371
  #: includes/functions.php:320 includes/functions.php:455
@@ -5645,6 +6668,7 @@ msgstr ""
5645
 
5646
  #: includes/functions.php:1129 includes/functions.php:907
5647
  #: includes/functions.php:1123 includes/functions.php:1127
 
5648
  #, php-format
5649
  msgid "Error interacting with database: %s"
5650
  msgstr ""
@@ -5668,8 +6692,9 @@ msgstr ""
5668
  #: includes/functions.php:948 includes/functions.php:953
5669
  #: includes/functions.php:986 includes/functions.php:987
5670
  #: includes/functions.php:992 includes/functions.php:1198
5671
- #: includes/functions.php:1202 includes/functions.php:1237
5672
- #: includes/functions.php:1241
 
5673
  msgid "Membership level not found."
5674
  msgstr ""
5675
 
@@ -5681,6 +6706,7 @@ msgstr ""
5681
  #: includes/functions.php:1290 includes/functions.php:1356
5682
  #: includes/functions.php:1357 includes/functions.php:1362
5683
  #: includes/functions.php:1605 includes/functions.php:1609
 
5684
  msgid "No code was given to check."
5685
  msgstr ""
5686
 
@@ -5695,7 +6721,7 @@ msgstr ""
5695
  #: includes/functions.php:1205 includes/functions.php:1299
5696
  #: includes/functions.php:1365 includes/functions.php:1366
5697
  #: includes/functions.php:1371 includes/functions.php:1614
5698
- #: includes/functions.php:1618
5699
  msgid "The discount code could not be found."
5700
  msgstr ""
5701
 
@@ -5710,7 +6736,7 @@ msgstr ""
5710
  #: includes/functions.php:1220 includes/functions.php:1314
5711
  #: includes/functions.php:1380 includes/functions.php:1381
5712
  #: includes/functions.php:1386 includes/functions.php:1629
5713
- #: includes/functions.php:1633
5714
  #, php-format
5715
  msgid "This discount code goes into effect on %s."
5716
  msgstr ""
@@ -5726,7 +6752,7 @@ msgstr ""
5726
  #: includes/functions.php:1227 includes/functions.php:1321
5727
  #: includes/functions.php:1387 includes/functions.php:1388
5728
  #: includes/functions.php:1393 includes/functions.php:1636
5729
- #: includes/functions.php:1640
5730
  #, php-format
5731
  msgid "This discount code expired on %s."
5732
  msgstr ""
@@ -5742,7 +6768,7 @@ msgstr ""
5742
  #: includes/functions.php:1237 includes/functions.php:1331
5743
  #: includes/functions.php:1397 includes/functions.php:1398
5744
  #: includes/functions.php:1403 includes/functions.php:1646
5745
- #: includes/functions.php:1650
5746
  msgid "This discount code is no longer valid."
5747
  msgstr ""
5748
 
@@ -5757,6 +6783,7 @@ msgstr ""
5757
  #: includes/functions.php:1344 includes/functions.php:1410
5758
  #: includes/functions.php:1411 includes/functions.php:1416
5759
  #: includes/functions.php:1666 includes/functions.php:1670
 
5760
  msgid "This discount code does not apply to this membership level."
5761
  msgstr ""
5762
 
@@ -5771,7 +6798,7 @@ msgstr ""
5771
  #: includes/functions.php:1276 includes/functions.php:1370
5772
  #: includes/functions.php:1436 includes/functions.php:1442
5773
  #: includes/functions.php:1448 includes/functions.php:1703
5774
- #: includes/functions.php:1707
5775
  msgid "This discount code is okay."
5776
  msgstr ""
5777
 
@@ -5786,7 +6813,7 @@ msgstr ""
5786
  #: includes/functions.php:1395 includes/functions.php:1397
5787
  #: includes/functions.php:1463 includes/functions.php:1469
5788
  #: includes/functions.php:1475 includes/functions.php:1730
5789
- #: includes/functions.php:1734
5790
  msgid "and"
5791
  msgstr ""
5792
 
@@ -5802,7 +6829,7 @@ msgstr ""
5802
  #: includes/functions.php:1624 includes/functions.php:1691
5803
  #: includes/functions.php:1697 includes/functions.php:1703
5804
  #: includes/functions.php:2015 includes/functions.php:2019
5805
- #: includes/functions.php:2022
5806
  msgid "Sign Up for !!name!! Now"
5807
  msgstr ""
5808
 
@@ -5818,7 +6845,7 @@ msgstr ""
5818
  #: includes/functions.php:1630 includes/functions.php:1697
5819
  #: includes/functions.php:1703 includes/functions.php:1709
5820
  #: includes/functions.php:2021 includes/functions.php:2025
5821
- #: includes/functions.php:2028
5822
  msgid "Please specify a level id."
5823
  msgstr ""
5824
 
@@ -5877,60 +6904,64 @@ msgid "Verify Key"
5877
  msgstr ""
5878
 
5879
  #: includes/license.php:298 includes/license.php:273 includes/license.php:278
5880
- #: includes/license.php:288 includes/license.php:291
5881
  msgid "Invalid PMPro License Key."
5882
  msgstr ""
5883
 
5884
  #: includes/license.php:301 includes/license.php:273 includes/license.php:278
5885
- #: includes/license.php:288 includes/license.php:291
5886
  msgid ""
5887
  "If you're running Paid Memberships Pro on a production website, we recommend "
5888
  "an annual support license."
5889
  msgstr ""
5890
 
5891
  #: includes/license.php:302 includes/license.php:274 includes/license.php:279
5892
- #: includes/license.php:289 includes/license.php:292
5893
  msgid "Dismiss"
5894
  msgstr ""
5895
 
5896
  #: includes/license.php:302 includes/license.php:274 includes/license.php:279
5897
- #: includes/license.php:289 includes/license.php:292
5898
  msgid "More Info"
5899
  msgstr ""
5900
 
5901
  #: includes/localization.php:33 includes/localization.php:23
5902
- #: includes/localization.php:26
5903
  msgid "Day"
5904
  msgstr ""
5905
 
5906
  #: includes/localization.php:35 includes/localization.php:25
5907
- #: includes/localization.php:28
5908
  msgid "Week"
5909
  msgstr ""
5910
 
5911
  #: includes/localization.php:37 includes/localization.php:27
5912
- #: includes/localization.php:30
5913
  msgid "Month"
5914
  msgstr ""
5915
 
5916
  #: includes/localization.php:39 includes/localization.php:29
5917
- #: includes/localization.php:32
5918
  msgid "Year"
5919
  msgstr ""
5920
 
5921
  #: includes/localization.php:44 includes/localization.php:37
 
5922
  msgid "Days"
5923
  msgstr ""
5924
 
5925
  #: includes/localization.php:46 includes/localization.php:39
 
5926
  msgid "Weeks"
5927
  msgstr ""
5928
 
5929
  #: includes/localization.php:48 includes/localization.php:41
 
5930
  msgid "Months"
5931
  msgstr ""
5932
 
5933
  #: includes/localization.php:50 includes/localization.php:43
 
5934
  msgid "Years"
5935
  msgstr ""
5936
 
@@ -6017,18 +7048,18 @@ msgid ""
6017
  "register to read."
6018
  msgstr ""
6019
 
6020
- #: pages/billing.php:25 pages/billing.php:14 pages/billing.php:23
6021
  #: pages/billing.php:25 pages/billing.php:26 pages/billing.php:28
6022
  #, php-format
6023
  msgid "Logged in as <strong>%s</strong>."
6024
  msgstr ""
6025
 
6026
- #: pages/billing.php:25 pages/billing.php:14 pages/billing.php:23
6027
  #: pages/billing.php:25 pages/billing.php:26 pages/billing.php:28
6028
  msgid "logout"
6029
  msgstr ""
6030
 
6031
- #: pages/billing.php:27 pages/cancel.php:61 pages/invoice.php:109
6032
  #: pages/levels.php:35 shortcodes/pmpro_account.php:44
6033
  #: shortcodes/pmpro_account.php:128 pages/account.php:12 pages/account.php:18
6034
  #: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
@@ -6041,33 +7072,33 @@ msgstr ""
6041
  msgid "Level"
6042
  msgstr ""
6043
 
6044
- #: pages/billing.php:29 pages/account.php:14 pages/billing.php:18
6045
  #: pages/billing.php:27 pages/billing.php:29 pages/billing.php:30
6046
  #: pages/billing.php:32
6047
  msgid "Membership Fee"
6048
  msgstr ""
6049
 
6050
- #: pages/billing.php:33 pages/account.php:18 pages/billing.php:22
6051
  #: pages/billing.php:31 pages/billing.php:33 pages/billing.php:34
6052
  #: pages/billing.php:36 pages/levels.php:70
6053
  #, php-format
6054
  msgid "%s every %d %s."
6055
  msgstr ""
6056
 
6057
- #: pages/billing.php:35 pages/account.php:20 pages/billing.php:24
6058
  #: pages/billing.php:33 pages/billing.php:35 pages/billing.php:36
6059
  #: pages/billing.php:38 pages/levels.php:66
6060
  #, php-format
6061
  msgid "%s per %s."
6062
  msgstr ""
6063
 
6064
- #: pages/billing.php:44 pages/account.php:25 pages/account.php:29
6065
  #: pages/billing.php:29 pages/billing.php:33 pages/billing.php:42
6066
  #: pages/billing.php:44 pages/billing.php:45 pages/billing.php:47
6067
  msgid "Duration"
6068
  msgstr ""
6069
 
6070
- #: pages/billing.php:54 pages/billing.php:39 pages/billing.php:43
6071
  #: pages/billing.php:52 pages/billing.php:54 pages/billing.php:55
6072
  #: pages/billing.php:57
6073
  msgid ""
@@ -6075,7 +7106,7 @@ msgid ""
6075
  "paypal.com\">login to PayPal here</a> to update your billing information."
6076
  msgstr ""
6077
 
6078
- #: pages/billing.php:84 pages/checkout.php:333 pages/billing.php:65
6079
  #: pages/billing.php:69 pages/billing.php:78 pages/billing.php:81
6080
  #: pages/billing.php:83 pages/billing.php:84 pages/billing.php:87
6081
  #: pages/checkout.php:305 pages/checkout.php:307 pages/checkout.php:309
@@ -6084,7 +7115,7 @@ msgstr ""
6084
  msgid "First Name"
6085
  msgstr ""
6086
 
6087
- #: pages/billing.php:88 pages/checkout.php:337 pages/billing.php:69
6088
  #: pages/billing.php:73 pages/billing.php:82 pages/billing.php:85
6089
  #: pages/billing.php:87 pages/billing.php:88 pages/billing.php:91
6090
  #: pages/checkout.php:309 pages/checkout.php:311 pages/checkout.php:313
@@ -6093,7 +7124,7 @@ msgstr ""
6093
  msgid "Last Name"
6094
  msgstr ""
6095
 
6096
- #: pages/billing.php:92 pages/checkout.php:341 pages/billing.php:73
6097
  #: pages/billing.php:77 pages/billing.php:86 pages/billing.php:89
6098
  #: pages/billing.php:91 pages/billing.php:92 pages/billing.php:95
6099
  #: pages/checkout.php:313 pages/checkout.php:315 pages/checkout.php:317
@@ -6102,7 +7133,7 @@ msgstr ""
6102
  msgid "Address 1"
6103
  msgstr ""
6104
 
6105
- #: pages/billing.php:96 pages/checkout.php:345 pages/billing.php:77
6106
  #: pages/billing.php:81 pages/billing.php:90 pages/billing.php:93
6107
  #: pages/billing.php:95 pages/billing.php:96 pages/billing.php:99
6108
  #: pages/checkout.php:317 pages/checkout.php:319 pages/checkout.php:321
@@ -6111,7 +7142,7 @@ msgstr ""
6111
  msgid "Address 2"
6112
  msgstr ""
6113
 
6114
- #: pages/billing.php:106 pages/checkout.php:355 pages/billing.php:87
6115
  #: pages/billing.php:91 pages/billing.php:100 pages/billing.php:103
6116
  #: pages/billing.php:105 pages/billing.php:106 pages/billing.php:109
6117
  #: pages/checkout.php:327 pages/checkout.php:329 pages/checkout.php:331
@@ -6120,7 +7151,7 @@ msgstr ""
6120
  msgid "City"
6121
  msgstr ""
6122
 
6123
- #: pages/billing.php:110 pages/checkout.php:359 pages/billing.php:91
6124
  #: pages/billing.php:95 pages/billing.php:104 pages/billing.php:107
6125
  #: pages/billing.php:109 pages/billing.php:110 pages/billing.php:113
6126
  #: pages/checkout.php:331 pages/checkout.php:333 pages/checkout.php:335
@@ -6129,7 +7160,7 @@ msgstr ""
6129
  msgid "State"
6130
  msgstr ""
6131
 
6132
- #: pages/billing.php:114 pages/checkout.php:363 pages/billing.php:95
6133
  #: pages/billing.php:99 pages/billing.php:108 pages/billing.php:111
6134
  #: pages/billing.php:113 pages/billing.php:114 pages/billing.php:117
6135
  #: pages/checkout.php:335 pages/checkout.php:337 pages/checkout.php:339
@@ -6138,7 +7169,7 @@ msgstr ""
6138
  msgid "Postal Code"
6139
  msgstr ""
6140
 
6141
- #: pages/billing.php:123 pages/checkout.php:372 pages/billing.php:104
6142
  #: pages/billing.php:108 pages/billing.php:117 pages/billing.php:120
6143
  #: pages/billing.php:122 pages/billing.php:123 pages/billing.php:126
6144
  #: pages/checkout.php:344 pages/checkout.php:346 pages/checkout.php:348
@@ -6147,7 +7178,7 @@ msgstr ""
6147
  msgid "City, State Zip"
6148
  msgstr ""
6149
 
6150
- #: pages/billing.php:176 pages/checkout.php:425 pages/billing.php:157
6151
  #: pages/billing.php:161 pages/billing.php:170 pages/billing.php:173
6152
  #: pages/billing.php:175 pages/billing.php:176 pages/billing.php:179
6153
  #: pages/checkout.php:397 pages/checkout.php:399 pages/checkout.php:401
@@ -6156,7 +7187,7 @@ msgstr ""
6156
  msgid "Country"
6157
  msgstr ""
6158
 
6159
- #: pages/billing.php:201 pages/checkout.php:450 pages/billing.php:182
6160
  #: pages/billing.php:186 pages/billing.php:195 pages/billing.php:198
6161
  #: pages/billing.php:200 pages/billing.php:201 pages/billing.php:204
6162
  #: pages/checkout.php:422 pages/checkout.php:424 pages/checkout.php:426
@@ -6165,7 +7196,7 @@ msgstr ""
6165
  msgid "Phone"
6166
  msgstr ""
6167
 
6168
- #: pages/billing.php:212 pages/checkout.php:227 pages/checkout.php:464
6169
  #: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
6170
  #: pages/billing.php:209 pages/billing.php:211 pages/billing.php:212
6171
  #: pages/billing.php:215 pages/checkout.php:204 pages/checkout.php:207
@@ -6177,7 +7208,7 @@ msgstr ""
6177
  msgid "E-mail Address"
6178
  msgstr ""
6179
 
6180
- #: pages/billing.php:216 pages/checkout.php:473 pages/billing.php:197
6181
  #: pages/billing.php:201 pages/billing.php:210 pages/billing.php:213
6182
  #: pages/billing.php:215 pages/billing.php:216 pages/billing.php:219
6183
  #: pages/checkout.php:445 pages/checkout.php:447 pages/checkout.php:449
@@ -6186,20 +7217,20 @@ msgstr ""
6186
  msgid "Confirm E-mail"
6187
  msgstr ""
6188
 
6189
- #: pages/billing.php:244 pages/billing.php:217 pages/billing.php:221
6190
  #: pages/billing.php:230 pages/billing.php:231 pages/billing.php:234
6191
  #: pages/billing.php:238 pages/billing.php:244 pages/billing.php:247
6192
  msgid "Credit Card Information"
6193
  msgstr ""
6194
 
6195
- #: pages/billing.php:245 pages/billing.php:217 pages/billing.php:221
6196
  #: pages/billing.php:230 pages/billing.php:232 pages/billing.php:235
6197
  #: pages/billing.php:239 pages/billing.php:245 pages/billing.php:248
6198
  #, php-format
6199
  msgid "We accept %s"
6200
  msgstr ""
6201
 
6202
- #: pages/billing.php:387 pages/billing.php:309 pages/billing.php:313
6203
  #: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
6204
  #: pages/billing.php:360 pages/billing.php:364 pages/billing.php:387
6205
  #: pages/billing.php:408 pages/billing.php:417 pages/billing.php:422
@@ -6243,25 +7274,25 @@ msgstr ""
6243
  msgid "Click here to go to the home page."
6244
  msgstr ""
6245
 
6246
- #: pages/checkout.php:35 pages/checkout.php:26 pages/checkout.php:27
6247
  #: pages/checkout.php:28 pages/checkout.php:35
6248
  msgid ""
6249
  "Almost done. Review the membership information and pricing below then "
6250
  "<strong>click the \"Complete Payment\" button</strong> to finish your order."
6251
  msgstr ""
6252
 
6253
- #: pages/checkout.php:43 pages/checkout.php:33 pages/checkout.php:34
6254
  #: pages/checkout.php:35 pages/checkout.php:42 pages/checkout.php:43
6255
  msgid "change"
6256
  msgstr ""
6257
 
6258
- #: pages/checkout.php:51 pages/checkout.php:41 pages/checkout.php:42
6259
  #: pages/checkout.php:43 pages/checkout.php:50 pages/checkout.php:51
6260
  #, php-format
6261
  msgid "You have selected the <strong>%s</strong> membership level."
6262
  msgstr ""
6263
 
6264
- #: pages/checkout.php:68 pages/checkout.php:51 pages/checkout.php:53
6265
  #: pages/checkout.php:60 pages/checkout.php:61 pages/checkout.php:68
6266
  #, php-format
6267
  msgid ""
@@ -6269,7 +7300,7 @@ msgid ""
6269
  "been applied to your order.</p>"
6270
  msgstr ""
6271
 
6272
- #: pages/checkout.php:79 services/applydiscountcode.php:92
6273
  #: pages/checkout.php:62 pages/checkout.php:63 pages/checkout.php:64
6274
  #: pages/checkout.php:71 pages/checkout.php:72 pages/checkout.php:79
6275
  #: services/applydiscountcode.php:74 services/applydiscountcode.php:75
@@ -6278,61 +7309,61 @@ msgstr ""
6278
  msgid "Click here to change your discount code"
6279
  msgstr ""
6280
 
6281
- #: pages/checkout.php:81 pages/checkout.php:64 pages/checkout.php:65
6282
  #: pages/checkout.php:66 pages/checkout.php:73 pages/checkout.php:74
6283
  #: pages/checkout.php:81
6284
  msgid "Click here to enter your discount code"
6285
  msgstr ""
6286
 
6287
- #: pages/checkout.php:81 pages/checkout.php:64 pages/checkout.php:65
6288
  #: pages/checkout.php:66 pages/checkout.php:73 pages/checkout.php:74
6289
  #: pages/checkout.php:81
6290
  msgid "Do you have a discount code?"
6291
  msgstr ""
6292
 
6293
- #: pages/checkout.php:182 pages/checkout.php:160 pages/checkout.php:163
6294
  #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:173
6295
  #: pages/checkout.php:175 pages/checkout.php:182
6296
  msgid "Account Information"
6297
  msgstr ""
6298
 
6299
- #: pages/checkout.php:183 pages/checkout.php:160 pages/checkout.php:163
6300
  #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:174
6301
  #: pages/checkout.php:176 pages/checkout.php:183
6302
  msgid "Already have an account?"
6303
  msgstr ""
6304
 
6305
- #: pages/checkout.php:183 pages/checkout.php:160 pages/checkout.php:163
6306
  #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:174
6307
  #: pages/checkout.php:176 pages/checkout.php:183
6308
  msgid "Log in here"
6309
  msgstr ""
6310
 
6311
- #: pages/checkout.php:209 pages/checkout.php:186 pages/checkout.php:189
6312
  #: pages/checkout.php:191 pages/checkout.php:198 pages/checkout.php:200
6313
  #: pages/checkout.php:202 pages/checkout.php:209
6314
  msgid "Confirm Password"
6315
  msgstr ""
6316
 
6317
- #: pages/checkout.php:236 pages/checkout.php:213 pages/checkout.php:216
6318
  #: pages/checkout.php:218 pages/checkout.php:225 pages/checkout.php:227
6319
  #: pages/checkout.php:229 pages/checkout.php:236
6320
  msgid "Confirm E-mail Address"
6321
  msgstr ""
6322
 
6323
- #: pages/checkout.php:255 pages/checkout.php:232 pages/checkout.php:235
6324
  #: pages/checkout.php:237 pages/checkout.php:244 pages/checkout.php:246
6325
  #: pages/checkout.php:248 pages/checkout.php:255
6326
  msgid "Full Name"
6327
  msgstr ""
6328
 
6329
- #: pages/checkout.php:256 pages/checkout.php:233 pages/checkout.php:236
6330
  #: pages/checkout.php:238 pages/checkout.php:245 pages/checkout.php:247
6331
  #: pages/checkout.php:249 pages/checkout.php:256
6332
  msgid "LEAVE THIS BLANK"
6333
  msgstr ""
6334
 
6335
- #: pages/checkout.php:280 pages/checkout.php:257 pages/checkout.php:260
6336
  #: pages/checkout.php:262 pages/checkout.php:269 pages/checkout.php:271
6337
  #: pages/checkout.php:273 pages/checkout.php:280
6338
  #, php-format
@@ -6341,19 +7372,19 @@ msgid ""
6341
  "different account for this membership, <a href=\"%s\">log out now</a>."
6342
  msgstr ""
6343
 
6344
- #: pages/checkout.php:296 pages/checkout.php:276 pages/checkout.php:278
6345
  #: pages/checkout.php:285 pages/checkout.php:287 pages/checkout.php:289
6346
  #: pages/checkout.php:292 pages/checkout.php:296 pages/checkout.php:299
6347
  msgid "Choose your Payment Method"
6348
  msgstr ""
6349
 
6350
- #: pages/checkout.php:305 pages/checkout.php:284 pages/checkout.php:286
6351
  #: pages/checkout.php:293 pages/checkout.php:296 pages/checkout.php:298
6352
  #: pages/checkout.php:300 pages/checkout.php:305 pages/checkout.php:307
6353
  msgid "Check Out with a Credit Card Here"
6354
  msgstr ""
6355
 
6356
- #: pages/checkout.php:693 pages/checkout.php:277 pages/checkout.php:284
6357
  #: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
6358
  #: pages/checkout.php:681 pages/checkout.php:686 pages/checkout.php:690
6359
  #: pages/checkout.php:692 pages/checkout.php:693 pages/checkout.php:696
@@ -6362,7 +7393,7 @@ msgstr ""
6362
  msgid "I agree to the %s"
6363
  msgstr ""
6364
 
6365
- #: pages/checkout.php:713 pages/checkout.php:667 pages/checkout.php:674
6366
  #: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
6367
  #: pages/checkout.php:701 pages/checkout.php:706 pages/checkout.php:710
6368
  #: pages/checkout.php:712 pages/checkout.php:713 pages/checkout.php:716
@@ -6370,7 +7401,7 @@ msgstr ""
6370
  msgid "Complete Payment"
6371
  msgstr ""
6372
 
6373
- #: pages/checkout.php:735 pages/checkout.php:687 pages/checkout.php:694
6374
  #: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
6375
  #: pages/checkout.php:723 pages/checkout.php:728 pages/checkout.php:732
6376
  #: pages/checkout.php:734 pages/checkout.php:735 pages/checkout.php:738
@@ -6515,7 +7546,7 @@ msgstr ""
6515
  msgid "&larr; Return to Home"
6516
  msgstr ""
6517
 
6518
- #: paid-memberships-pro.php:135 adminpages/orders.php:398
6519
  #: adminpages/orders.php:448 paid-memberships-pro.php:115
6520
  #: paid-memberships-pro.php:116 paid-memberships-pro.php:123
6521
  #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
@@ -6524,7 +7555,7 @@ msgstr ""
6524
  msgid "Testing Only"
6525
  msgstr ""
6526
 
6527
- #: paid-memberships-pro.php:140 paid-memberships-pro.php:120
6528
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:128
6529
  #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
6530
  #: paid-memberships-pro.php:131 paid-memberships-pro.php:133
@@ -6532,7 +7563,7 @@ msgstr ""
6532
  msgid "PayPal Payflow Pro/PayPal Pro"
6533
  msgstr ""
6534
 
6535
- #: paid-memberships-pro.php:145 paid-memberships-pro.php:125
6536
  #: paid-memberships-pro.php:126 paid-memberships-pro.php:133
6537
  #: paid-memberships-pro.php:134 paid-memberships-pro.php:135
6538
  #: paid-memberships-pro.php:136 paid-memberships-pro.php:138
@@ -6540,7 +7571,7 @@ msgstr ""
6540
  msgid "Cybersource"
6541
  msgstr ""
6542
 
6543
- #: paid-memberships-pro.php:166 paid-memberships-pro.php:156
6544
  #: paid-memberships-pro.php:157 paid-memberships-pro.php:159
6545
  #: paid-memberships-pro.php:166
6546
  msgid "Once a month"
@@ -6623,7 +7654,7 @@ msgid "Error updating billing information."
6623
  msgstr ""
6624
 
6625
  #: preheaders/cancel.php:60 preheaders/cancel.php:24 preheaders/cancel.php:25
6626
- #: preheaders/cancel.php:28 preheaders/cancel.php:59
6627
  msgid "Your membership has been cancelled."
6628
  msgstr ""
6629
 
 
 
 
 
1
  #
2
+ # Hi there! Details on how to help out translating Paid Memberships Pro can be found at:
3
+ # http://www.paidmembershipspro.com/documentation/languages/
4
+ #
5
  msgid ""
6
  msgstr ""
7
+ "Project-Id-Version: paid-memberships-pro\n"
8
  "Report-Msgid-Bugs-To: jason@strangerstudios.com\n"
9
+ "POT-Creation-Date: 2017-06-03 09:18-0400\n"
10
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
11
+ "Last-Translator: \n"
12
+ "Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
844
 
845
  #: adminpages/discountcodes.php:442
846
  #: classes/gateways/class.pmprogateway_braintree.php:423
847
+ #: classes/gateways/class.pmprogateway_stripe.php:597 pages/billing.php:342
848
+ #: pages/checkout.php:585 adminpages/discountcodes.php:367
849
  #: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
850
  #: adminpages/discountcodes.php:372 adminpages/discountcodes.php:377
851
  #: adminpages/discountcodes.php:442
1711
  msgstr ""
1712
 
1713
  #: adminpages/membershiplevels.php:530 adminpages/orders.php:796
1714
+ #: pages/billing.php:397 pages/cancel.php:84 shortcodes/pmpro_account.php:72
1715
  #: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:508
1716
  #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:518
1717
  #: adminpages/membershiplevels.php:530 adminpages/orders.php:511
1910
  msgid "%d members found."
1911
  msgstr ""
1912
 
1913
+ #: adminpages/memberslist.php:165 pages/checkout.php:194
1914
  #: shortcodes/pmpro_account.php:110 adminpages/memberslist.php:112
1915
  #: adminpages/memberslist.php:145 adminpages/memberslist.php:155
1916
  #: adminpages/memberslist.php:165 pages/account.php:51 pages/account.php:55
1934
  msgid "Last&nbsp;Name"
1935
  msgstr ""
1936
 
1937
+ #: adminpages/memberslist.php:170 pages/billing.php:103 pages/checkout.php:329
1938
  #: pages/confirmation.php:67 pages/invoice.php:48
1939
  #: adminpages/memberslist.php:117 adminpages/memberslist.php:150
1940
  #: adminpages/memberslist.php:160 adminpages/memberslist.php:170
2180
 
2181
  #: adminpages/orders.php:563
2182
  #: classes/gateways/class.pmprogateway_braintree.php:406
2183
+ #: classes/gateways/class.pmprogateway_stripe.php:549 pages/billing.php:294
2184
+ #: pages/checkout.php:537 adminpages/orders.php:339 adminpages/orders.php:389
2185
  #: adminpages/orders.php:461 adminpages/orders.php:490
2186
  #: adminpages/orders.php:532 adminpages/orders.php:563
2187
  #: classes/gateways/class.pmprogateway_braintree.php:291
2492
  msgstr ""
2493
 
2494
  #: adminpages/orders.php:1138 includes/init.php:244 includes/profile.php:36
2495
+ #: pages/checkout.php:45 pages/confirmation.php:53 pages/confirmation.php:70
2496
  #: pages/confirmation.php:116 pages/invoice.php:28 pages/invoice.php:51
2497
  #: adminpages/orders.php:601 adminpages/orders.php:904
2498
  #: adminpages/orders.php:914 adminpages/orders.php:941
2854
  msgid "Sales Tax"
2855
  msgstr ""
2856
 
2857
+ #: adminpages/paymentsettings.php:188 pages/billing.php:123
2858
  #: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:398
2859
  #: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
2860
  #: adminpages/paymentsettings.php:445 pages/billing.php:78
3251
  msgid "Update complete."
3252
  msgstr ""
3253
 
3254
+ #: classes/class-deny-network-activation.php:45
3255
+ #, php-format
3256
+ msgid ""
3257
+ "The %s plugin should not be network activated. Activate on each individual "
3258
+ "site's plugin page."
3259
+ msgstr ""
3260
+
3261
  #: classes/class.memberorder.php:729 classes/class.memberorder.php:553
3262
  #: classes/class.memberorder.php:561 classes/class.memberorder.php:564
3263
  #: classes/class.memberorder.php:573 classes/class.memberorder.php:644
3305
  #: classes/class.pmproemail.php:378 classes/class.pmproemail.php:696
3306
  #: classes/class.pmproemail.php:698
3307
  #: classes/gateways/class.pmprogateway_braintree.php:464
3308
+ #: classes/gateways/class.pmprogateway_stripe.php:638 pages/checkout.php:86
3309
+ #: pages/checkout.php:96 pages/checkout.php:622 pages/confirmation.php:58
3310
  #: pages/invoice.php:33 classes/class.pmproemail.php:216
3311
  #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
3312
  #: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
3639
  msgstr ""
3640
 
3641
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
3642
+ #: paid-memberships-pro.php:134
3643
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
3644
  #: paid-memberships-pro.php:122 paid-memberships-pro.php:123
3645
  #: paid-memberships-pro.php:130 paid-memberships-pro.php:131
3708
  msgstr ""
3709
 
3710
  #: classes/gateways/class.pmprogateway_braintree.php:172
3711
+ #: paid-memberships-pro.php:135
3712
  #: classes/gateways/class.pmprogateway_braintree.php:63
3713
  #: classes/gateways/class.pmprogateway_braintree.php:76
3714
  #: classes/gateways/class.pmprogateway_braintree.php:77
3820
  msgstr ""
3821
 
3822
  #: classes/gateways/class.pmprogateway_braintree.php:383
3823
+ #: classes/gateways/class.pmprogateway_stripe.php:526 pages/checkout.php:513
3824
  #: classes/gateways/class.pmprogateway_braintree.php:270
3825
  #: classes/gateways/class.pmprogateway_braintree.php:283
3826
  #: classes/gateways/class.pmprogateway_braintree.php:285
3848
  msgstr ""
3849
 
3850
  #: classes/gateways/class.pmprogateway_braintree.php:384
3851
+ #: classes/gateways/class.pmprogateway_stripe.php:527 pages/checkout.php:514
3852
  #: classes/gateways/class.pmprogateway_braintree.php:270
3853
  #: classes/gateways/class.pmprogateway_braintree.php:283
3854
  #: classes/gateways/class.pmprogateway_braintree.php:285
3877
  msgstr ""
3878
 
3879
  #: classes/gateways/class.pmprogateway_braintree.php:418
3880
+ #: classes/gateways/class.pmprogateway_stripe.php:592 pages/billing.php:337
3881
+ #: pages/checkout.php:580
3882
  #: classes/gateways/class.pmprogateway_braintree.php:303
3883
  #: classes/gateways/class.pmprogateway_braintree.php:316
3884
  #: classes/gateways/class.pmprogateway_braintree.php:318
3909
  msgstr ""
3910
 
3911
  #: classes/gateways/class.pmprogateway_braintree.php:455
3912
+ #: classes/gateways/class.pmprogateway_stripe.php:629 pages/billing.php:380
3913
+ #: pages/checkout.php:615
3914
  #: classes/gateways/class.pmprogateway_braintree.php:340
3915
  #: classes/gateways/class.pmprogateway_braintree.php:353
3916
  #: classes/gateways/class.pmprogateway_braintree.php:355
3942
  msgstr ""
3943
 
3944
  #: classes/gateways/class.pmprogateway_braintree.php:456
3945
+ #: classes/gateways/class.pmprogateway_stripe.php:630 pages/billing.php:381
3946
+ #: pages/checkout.php:616
3947
  #: classes/gateways/class.pmprogateway_braintree.php:341
3948
  #: classes/gateways/class.pmprogateway_braintree.php:354
3949
  #: classes/gateways/class.pmprogateway_braintree.php:356
3975
  msgstr ""
3976
 
3977
  #: classes/gateways/class.pmprogateway_braintree.php:466
3978
+ #: classes/gateways/class.pmprogateway_stripe.php:640 pages/checkout.php:98
3979
+ #: pages/checkout.php:624
3980
  #: classes/gateways/class.pmprogateway_braintree.php:351
3981
  #: classes/gateways/class.pmprogateway_braintree.php:364
3982
  #: classes/gateways/class.pmprogateway_braintree.php:366
4008
  #: classes/gateways/class.pmprogateway_braintree.php:524
4009
  #: classes/gateways/class.pmprogateway_braintree.php:541
4010
  #: classes/gateways/class.pmprogateway_braintree.php:623
4011
+ #: classes/gateways/class.pmprogateway_braintree.php:782
4012
+ #: classes/gateways/class.pmprogateway_braintree.php:887
4013
+ #: classes/gateways/class.pmprogateway_braintree.php:907
4014
  #: classes/gateways/class.pmprogateway_braintree.php:524
4015
  #: classes/gateways/class.pmprogateway_braintree.php:541
4016
  #: classes/gateways/class.pmprogateway_braintree.php:623
4074
  msgid "Error during charge:"
4075
  msgstr ""
4076
 
4077
+ #: classes/gateways/class.pmprogateway_braintree.php:703
4078
  #: classes/gateways/class.pmprogateway_braintree.php:198
4079
  #: classes/gateways/class.pmprogateway_braintree.php:221
4080
  #: classes/gateways/class.pmprogateway_braintree.php:566
4088
  msgid "Failed to update customer."
4089
  msgstr ""
4090
 
4091
+ #: classes/gateways/class.pmprogateway_braintree.php:751
4092
  #: classes/gateways/class.pmprogateway_braintree.php:246
4093
  #: classes/gateways/class.pmprogateway_braintree.php:269
4094
  #: classes/gateways/class.pmprogateway_braintree.php:614
4102
  msgid "Failed to create customer."
4103
  msgstr ""
4104
 
4105
+ #: classes/gateways/class.pmprogateway_braintree.php:758
4106
  #: classes/gateways/class.pmprogateway_braintree.php:253
4107
  #: classes/gateways/class.pmprogateway_braintree.php:276
4108
  #: classes/gateways/class.pmprogateway_braintree.php:621
4116
  msgid "Error creating customer record with Braintree:"
4117
  msgstr ""
4118
 
4119
+ #: classes/gateways/class.pmprogateway_braintree.php:863
4120
  #: classes/gateways/class.pmprogateway_braintree.php:344
4121
  #: classes/gateways/class.pmprogateway_braintree.php:345
4122
  #: classes/gateways/class.pmprogateway_braintree.php:376
4131
  msgid "Error subscribing customer to plan with Braintree:"
4132
  msgstr ""
4133
 
4134
+ #: classes/gateways/class.pmprogateway_braintree.php:878
4135
  #: classes/gateways/class.pmprogateway_braintree.php:359
4136
  #: classes/gateways/class.pmprogateway_braintree.php:360
4137
  #: classes/gateways/class.pmprogateway_braintree.php:391
4146
  msgid "Failed to subscribe with Braintree:"
4147
  msgstr ""
4148
 
4149
+ #: classes/gateways/class.pmprogateway_braintree.php:926
4150
+ #: classes/gateways/class.pmprogateway_braintree.php:939
4151
+ #: classes/gateways/class.pmprogateway_braintree.php:946
4152
  #: classes/gateways/class.pmprogateway_braintree.php:397
4153
  #: classes/gateways/class.pmprogateway_braintree.php:398
4154
  #: classes/gateways/class.pmprogateway_braintree.php:410
4194
  msgstr ""
4195
 
4196
  #: classes/gateways/class.pmprogateway_check.php:49
4197
+ #: paid-memberships-pro.php:128 adminpages/orders.php:399
4198
  #: adminpages/orders.php:449 adminpages/paymentsettings.php:157
4199
  #: adminpages/paymentsettings.php:159
4200
  #: classes/gateways/class.pmprogateway_check.php:48
4281
  msgstr ""
4282
 
4283
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
4284
+ #: pages/checkout.php:203 adminpages/paymentsettings.php:219
4285
  #: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:228
4286
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
4287
  #: pages/checkout.php:177 pages/checkout.php:180 pages/checkout.php:182
4317
  msgstr ""
4318
 
4319
  #: classes/gateways/class.pmprogateway_paypal.php:68
4320
+ #: paid-memberships-pro.php:131
4321
  #: classes/gateways/class.pmprogateway_paypal.php:57
4322
  #: classes/gateways/class.pmprogateway_paypal.php:68
4323
  #: paid-memberships-pro.php:119 paid-memberships-pro.php:120
4455
  #: classes/gateways/class.pmprogateway_paypal.php:201
4456
  #: classes/gateways/class.pmprogateway_paypalexpress.php:438
4457
  #: classes/gateways/class.pmprogateway_paypalstandard.php:201
4458
+ #: pages/checkout.php:312 classes/gateways/class.pmprogateway_paypal.php:178
4459
  #: classes/gateways/class.pmprogateway_paypal.php:201
4460
  #: classes/gateways/class.pmprogateway_paypalexpress.php:402
4461
  #: classes/gateways/class.pmprogateway_paypalexpress.php:412
4472
  #: classes/gateways/class.pmprogateway_paypal.php:207
4473
  #: classes/gateways/class.pmprogateway_paypalexpress.php:443
4474
  #: classes/gateways/class.pmprogateway_paypalstandard.php:206
4475
+ #: pages/checkout.php:728 classes/gateways/class.pmprogateway_paypal.php:184
4476
  #: classes/gateways/class.pmprogateway_paypal.php:207
4477
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
4478
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
4490
  #: classes/gateways/class.pmprogateway_paypalexpress.php:443
4491
  #: classes/gateways/class.pmprogateway_paypalstandard.php:206
4492
  #: classes/gateways/class.pmprogateway_twocheckout.php:203
4493
+ #: pages/checkout.php:728 classes/gateways/class.pmprogateway_paypal.php:184
4494
  #: classes/gateways/class.pmprogateway_paypal.php:207
4495
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
4496
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
4535
  msgstr ""
4536
 
4537
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
4538
+ #: paid-memberships-pro.php:130
4539
  #: classes/gateways/class.pmprogateway_paypalexpress.php:63
4540
  #: classes/gateways/class.pmprogateway_paypalexpress.php:73
4541
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
4573
  msgstr ""
4574
 
4575
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
4576
+ #: paid-memberships-pro.php:133
4577
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
4578
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:122
4579
  #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
4590
  msgstr ""
4591
 
4592
  #: classes/gateways/class.pmprogateway_stripe.php:169
4593
+ #: paid-memberships-pro.php:129
4594
  #: classes/gateways/class.pmprogateway_stripe.php:93
4595
  #: classes/gateways/class.pmprogateway_stripe.php:94
4596
  #: classes/gateways/class.pmprogateway_stripe.php:104
4757
  "at predefined times. Be sure to click Update User after making changes."
4758
  msgstr ""
4759
 
4760
+ #: classes/gateways/class.pmprogateway_stripe.php:721 pages/billing.php:396
4761
  #: classes/gateways/class.pmprogateway_stripe.php:578
4762
  #: classes/gateways/class.pmprogateway_stripe.php:579
4763
  #: classes/gateways/class.pmprogateway_stripe.php:589
4966
  msgstr ""
4967
 
4968
  #: classes/gateways/class.pmprogateway_twocheckout.php:59
4969
+ #: paid-memberships-pro.php:136
4970
  #: classes/gateways/class.pmprogateway_twocheckout.php:53
4971
  #: classes/gateways/class.pmprogateway_twocheckout.php:59
4972
  #: classes/gateways/class.pmprogateway_twocheckout.php:60
5146
  msgid "Visit Customer Support Forum"
5147
  msgstr ""
5148
 
5149
+ #: includes/countries.php:7
5150
+ msgid "Andorra"
 
 
 
 
 
5151
  msgstr ""
5152
 
5153
+ #: includes/countries.php:8
5154
+ msgid "United Arab Emirates"
 
 
 
 
 
 
5155
  msgstr ""
5156
 
5157
+ #: includes/countries.php:9
5158
+ msgid "Afghanistan"
 
 
 
 
 
 
5159
  msgstr ""
5160
 
5161
+ #: includes/countries.php:10
5162
+ msgid "Antigua and Barbuda"
5163
  msgstr ""
5164
 
5165
+ #: includes/countries.php:11
5166
+ msgid "Anguilla"
 
 
5167
  msgstr ""
5168
 
5169
+ #: includes/countries.php:12
5170
+ msgid "Albania"
 
5171
  msgstr ""
5172
 
5173
+ #: includes/countries.php:13
5174
+ msgid "Armenia"
 
 
 
 
 
 
5175
  msgstr ""
5176
 
5177
+ #: includes/countries.php:14
5178
+ msgid "Netherlands Antilles"
 
 
5179
  msgstr ""
5180
 
5181
+ #: includes/countries.php:15
5182
+ msgid "Angola"
 
 
 
5183
  msgstr ""
5184
 
5185
+ #: includes/countries.php:16
5186
+ msgid "Antarctica"
 
 
 
5187
  msgstr ""
5188
 
5189
+ #: includes/countries.php:17
5190
+ msgid "Argentina"
 
 
 
5191
  msgstr ""
5192
 
5193
+ #: includes/countries.php:18
5194
+ msgid "American Samoa"
 
 
 
5195
  msgstr ""
5196
 
5197
+ #: includes/countries.php:19
5198
+ msgid "Austria"
 
 
5199
  msgstr ""
5200
 
5201
+ #: includes/countries.php:20
5202
+ msgid "Australia"
 
 
5203
  msgstr ""
5204
 
5205
+ #: includes/countries.php:21
5206
+ msgid "Aruba"
 
 
 
5207
  msgstr ""
5208
 
5209
+ #: includes/countries.php:22
5210
+ msgid "Aland Islands"
 
 
 
5211
  msgstr ""
5212
 
5213
+ #: includes/countries.php:23
5214
+ msgid "Azerbaijan"
 
 
 
5215
  msgstr ""
5216
 
5217
+ #: includes/countries.php:24
5218
+ msgid "Bosnia and Herzegovina"
 
 
 
5219
  msgstr ""
5220
 
5221
+ #: includes/countries.php:25
5222
+ msgid "Barbados"
 
5223
  msgstr ""
5224
 
5225
+ #: includes/countries.php:26
5226
+ msgid "Bangladesh"
 
 
 
5227
  msgstr ""
5228
 
5229
+ #: includes/countries.php:27
5230
+ msgid "Belgium"
 
 
 
5231
  msgstr ""
5232
 
5233
+ #: includes/countries.php:28
5234
+ msgid "Burkina Faso"
 
 
 
5235
  msgstr ""
5236
 
5237
+ #: includes/countries.php:29
5238
+ msgid "Bulgaria"
 
 
 
5239
  msgstr ""
5240
 
5241
+ #: includes/countries.php:30
5242
+ msgid "Bahrain"
 
 
 
5243
  msgstr ""
5244
 
5245
+ #: includes/countries.php:31
5246
+ msgid "Burundi"
 
 
5247
  msgstr ""
5248
 
5249
+ #: includes/countries.php:32
5250
+ msgid "Benin"
 
 
 
5251
  msgstr ""
5252
 
5253
+ #: includes/countries.php:33
5254
+ msgid "Saint Barthelemy"
 
 
 
 
5255
  msgstr ""
5256
 
5257
+ #: includes/countries.php:34
5258
+ msgid "Bermuda"
 
 
 
 
5259
  msgstr ""
5260
 
5261
+ #: includes/countries.php:35
5262
+ msgid "Brunei"
 
 
 
 
5263
  msgstr ""
5264
 
5265
+ #: includes/countries.php:36
5266
+ msgid "Bolivia"
 
 
 
 
5267
  msgstr ""
5268
 
5269
+ #: includes/countries.php:37
5270
+ msgid "Brazil"
 
 
 
5271
  msgstr ""
5272
 
5273
+ #: includes/countries.php:38
5274
+ msgid "Bahamas"
5275
+ msgstr ""
5276
+
5277
+ #: includes/countries.php:39
5278
+ msgid "Bhutan"
5279
+ msgstr ""
5280
+
5281
+ #: includes/countries.php:40
5282
+ msgid "Bouvet Island"
5283
+ msgstr ""
5284
+
5285
+ #: includes/countries.php:41
5286
+ msgid "Botswana"
5287
+ msgstr ""
5288
+
5289
+ #: includes/countries.php:42
5290
+ msgid "Belarus"
5291
+ msgstr ""
5292
+
5293
+ #: includes/countries.php:43
5294
+ msgid "Belize"
5295
+ msgstr ""
5296
+
5297
+ #: includes/countries.php:44
5298
+ msgid "Canada"
5299
+ msgstr ""
5300
+
5301
+ #: includes/countries.php:45
5302
+ msgid "Cocos (Keeling) Islands"
5303
+ msgstr ""
5304
+
5305
+ #: includes/countries.php:46
5306
+ msgid "Congo (Kinshasa)"
5307
+ msgstr ""
5308
+
5309
+ #: includes/countries.php:47
5310
+ msgid "Central African Republic"
5311
+ msgstr ""
5312
+
5313
+ #: includes/countries.php:48
5314
+ msgid "Congo (Brazzaville)"
5315
+ msgstr ""
5316
+
5317
+ #: includes/countries.php:49
5318
+ msgid "Switzerland"
5319
+ msgstr ""
5320
+
5321
+ #: includes/countries.php:50
5322
+ msgid "Ivory Coast"
5323
+ msgstr ""
5324
+
5325
+ #: includes/countries.php:51
5326
+ msgid "Cook Islands"
5327
+ msgstr ""
5328
+
5329
+ #: includes/countries.php:52
5330
+ msgid "Chile"
5331
+ msgstr ""
5332
+
5333
+ #: includes/countries.php:53
5334
+ msgid "Cameroon"
5335
+ msgstr ""
5336
+
5337
+ #: includes/countries.php:54
5338
+ msgid "China"
5339
+ msgstr ""
5340
+
5341
+ #: includes/countries.php:55
5342
+ msgid "Colombia"
5343
+ msgstr ""
5344
+
5345
+ #: includes/countries.php:56
5346
+ msgid "Costa Rica"
5347
+ msgstr ""
5348
+
5349
+ #: includes/countries.php:57
5350
+ msgid "Cuba"
5351
+ msgstr ""
5352
+
5353
+ #: includes/countries.php:58
5354
+ msgid "Cape Verde"
5355
+ msgstr ""
5356
+
5357
+ #: includes/countries.php:59
5358
+ msgid "Christmas Island"
5359
+ msgstr ""
5360
+
5361
+ #: includes/countries.php:60
5362
+ msgid "Cyprus"
5363
+ msgstr ""
5364
+
5365
+ #: includes/countries.php:61
5366
+ msgid "Czech Republic"
5367
+ msgstr ""
5368
+
5369
+ #: includes/countries.php:62
5370
+ msgid "Germany"
5371
+ msgstr ""
5372
+
5373
+ #: includes/countries.php:63
5374
+ msgid "Djibouti"
5375
+ msgstr ""
5376
+
5377
+ #: includes/countries.php:64
5378
+ msgid "Denmark"
5379
+ msgstr ""
5380
+
5381
+ #: includes/countries.php:65
5382
+ msgid "Dominica"
5383
+ msgstr ""
5384
+
5385
+ #: includes/countries.php:66
5386
+ msgid "Dominican Republic"
5387
+ msgstr ""
5388
+
5389
+ #: includes/countries.php:67
5390
+ msgid "Algeria"
5391
+ msgstr ""
5392
+
5393
+ #: includes/countries.php:68
5394
+ msgid "Ecuador"
5395
+ msgstr ""
5396
+
5397
+ #: includes/countries.php:69
5398
+ msgid "Estonia"
5399
+ msgstr ""
5400
+
5401
+ #: includes/countries.php:70
5402
+ msgid "Egypt"
5403
+ msgstr ""
5404
+
5405
+ #: includes/countries.php:71
5406
+ msgid "Western Sahara"
5407
+ msgstr ""
5408
+
5409
+ #: includes/countries.php:72
5410
+ msgid "Eritrea"
5411
+ msgstr ""
5412
+
5413
+ #: includes/countries.php:73
5414
+ msgid "Spain"
5415
+ msgstr ""
5416
+
5417
+ #: includes/countries.php:74
5418
+ msgid "Ethiopia"
5419
+ msgstr ""
5420
+
5421
+ #: includes/countries.php:75
5422
+ msgid "Finland"
5423
+ msgstr ""
5424
+
5425
+ #: includes/countries.php:76
5426
+ msgid "Fiji"
5427
+ msgstr ""
5428
+
5429
+ #: includes/countries.php:77
5430
+ msgid "Falkland Islands"
5431
+ msgstr ""
5432
+
5433
+ #: includes/countries.php:78
5434
+ msgid "Micronesia"
5435
+ msgstr ""
5436
+
5437
+ #: includes/countries.php:79
5438
+ msgid "Faroe Islands"
5439
+ msgstr ""
5440
+
5441
+ #: includes/countries.php:80
5442
+ msgid "France"
5443
+ msgstr ""
5444
+
5445
+ #: includes/countries.php:81
5446
+ msgid "Gabon"
5447
+ msgstr ""
5448
+
5449
+ #: includes/countries.php:82
5450
+ msgid "United Kingdom"
5451
+ msgstr ""
5452
+
5453
+ #: includes/countries.php:83
5454
+ msgid "Grenada"
5455
+ msgstr ""
5456
+
5457
+ #: includes/countries.php:84
5458
+ msgid "Georgia"
5459
+ msgstr ""
5460
+
5461
+ #: includes/countries.php:85
5462
+ msgid "French Guiana"
5463
+ msgstr ""
5464
+
5465
+ #: includes/countries.php:86
5466
+ msgid "Guernsey"
5467
+ msgstr ""
5468
+
5469
+ #: includes/countries.php:87
5470
+ msgid "Ghana"
5471
+ msgstr ""
5472
+
5473
+ #: includes/countries.php:88
5474
+ msgid "Gibraltar"
5475
+ msgstr ""
5476
+
5477
+ #: includes/countries.php:89
5478
+ msgid "Greenland"
5479
+ msgstr ""
5480
+
5481
+ #: includes/countries.php:90
5482
+ msgid "Gambia"
5483
+ msgstr ""
5484
+
5485
+ #: includes/countries.php:91
5486
+ msgid "Guinea"
5487
+ msgstr ""
5488
+
5489
+ #: includes/countries.php:92
5490
+ msgid "Guadeloupe"
5491
+ msgstr ""
5492
+
5493
+ #: includes/countries.php:93
5494
+ msgid "Equatorial Guinea"
5495
+ msgstr ""
5496
+
5497
+ #: includes/countries.php:94
5498
+ msgid "Greece"
5499
+ msgstr ""
5500
+
5501
+ #: includes/countries.php:95
5502
+ msgid "South Georgia and the South Sandwich Islands"
5503
+ msgstr ""
5504
+
5505
+ #: includes/countries.php:96
5506
+ msgid "Guatemala"
5507
+ msgstr ""
5508
+
5509
+ #: includes/countries.php:97
5510
+ msgid "Guam"
5511
+ msgstr ""
5512
+
5513
+ #: includes/countries.php:98
5514
+ msgid "Guinea-Bissau"
5515
+ msgstr ""
5516
+
5517
+ #: includes/countries.php:99
5518
+ msgid "Guyana"
5519
+ msgstr ""
5520
+
5521
+ #: includes/countries.php:100
5522
+ msgid "Hong Kong S.A.R., China"
5523
+ msgstr ""
5524
+
5525
+ #: includes/countries.php:101
5526
+ msgid "Heard Island and McDonald Islands"
5527
+ msgstr ""
5528
+
5529
+ #: includes/countries.php:102
5530
+ msgid "Honduras"
5531
+ msgstr ""
5532
+
5533
+ #: includes/countries.php:103
5534
+ msgid "Croatia"
5535
+ msgstr ""
5536
+
5537
+ #: includes/countries.php:104
5538
+ msgid "Haiti"
5539
+ msgstr ""
5540
+
5541
+ #: includes/countries.php:105
5542
+ msgid "Hungary"
5543
+ msgstr ""
5544
+
5545
+ #: includes/countries.php:106
5546
+ msgid "Indonesia"
5547
+ msgstr ""
5548
+
5549
+ #: includes/countries.php:107
5550
+ msgid "Ireland"
5551
+ msgstr ""
5552
+
5553
+ #: includes/countries.php:108
5554
+ msgid "Israel"
5555
+ msgstr ""
5556
+
5557
+ #: includes/countries.php:109
5558
+ msgid "Isle of Man"
5559
+ msgstr ""
5560
+
5561
+ #: includes/countries.php:110
5562
+ msgid "India"
5563
+ msgstr ""
5564
+
5565
+ #: includes/countries.php:111
5566
+ msgid "British Indian Ocean Territory"
5567
+ msgstr ""
5568
+
5569
+ #: includes/countries.php:112
5570
+ msgid "Iraq"
5571
+ msgstr ""
5572
+
5573
+ #: includes/countries.php:113
5574
+ msgid "Iran"
5575
+ msgstr ""
5576
+
5577
+ #: includes/countries.php:114
5578
+ msgid "Iceland"
5579
+ msgstr ""
5580
+
5581
+ #: includes/countries.php:115
5582
+ msgid "Italy"
5583
+ msgstr ""
5584
+
5585
+ #: includes/countries.php:116
5586
+ msgid "Jersey"
5587
+ msgstr ""
5588
+
5589
+ #: includes/countries.php:117
5590
+ msgid "Jamaica"
5591
+ msgstr ""
5592
+
5593
+ #: includes/countries.php:118
5594
+ msgid "Jordan"
5595
+ msgstr ""
5596
+
5597
+ #: includes/countries.php:119
5598
+ msgid "Japan"
5599
+ msgstr ""
5600
+
5601
+ #: includes/countries.php:120
5602
+ msgid "Kenya"
5603
+ msgstr ""
5604
+
5605
+ #: includes/countries.php:121
5606
+ msgid "Kyrgyzstan"
5607
+ msgstr ""
5608
+
5609
+ #: includes/countries.php:122
5610
+ msgid "Cambodia"
5611
+ msgstr ""
5612
+
5613
+ #: includes/countries.php:123
5614
+ msgid "Kiribati"
5615
+ msgstr ""
5616
+
5617
+ #: includes/countries.php:124
5618
+ msgid "Comoros"
5619
+ msgstr ""
5620
+
5621
+ #: includes/countries.php:125
5622
+ msgid "Saint Kitts and Nevis"
5623
+ msgstr ""
5624
+
5625
+ #: includes/countries.php:126
5626
+ msgid "North Korea"
5627
+ msgstr ""
5628
+
5629
+ #: includes/countries.php:127
5630
+ msgid "South Korea"
5631
+ msgstr ""
5632
+
5633
+ #: includes/countries.php:128
5634
+ msgid "Kuwait"
5635
+ msgstr ""
5636
+
5637
+ #: includes/countries.php:129
5638
+ msgid "Cayman Islands"
5639
+ msgstr ""
5640
+
5641
+ #: includes/countries.php:130
5642
+ msgid "Kazakhstan"
5643
+ msgstr ""
5644
+
5645
+ #: includes/countries.php:131
5646
+ msgid "Laos"
5647
+ msgstr ""
5648
+
5649
+ #: includes/countries.php:132
5650
+ msgid "Lebanon"
5651
+ msgstr ""
5652
+
5653
+ #: includes/countries.php:133
5654
+ msgid "Saint Lucia"
5655
+ msgstr ""
5656
+
5657
+ #: includes/countries.php:134
5658
+ msgid "Liechtenstein"
5659
+ msgstr ""
5660
+
5661
+ #: includes/countries.php:135
5662
+ msgid "Sri Lanka"
5663
+ msgstr ""
5664
+
5665
+ #: includes/countries.php:136
5666
+ msgid "Liberia"
5667
+ msgstr ""
5668
+
5669
+ #: includes/countries.php:137
5670
+ msgid "Lesotho"
5671
+ msgstr ""
5672
+
5673
+ #: includes/countries.php:138
5674
+ msgid "Lithuania"
5675
+ msgstr ""
5676
+
5677
+ #: includes/countries.php:139
5678
+ msgid "Luxembourg"
5679
+ msgstr ""
5680
+
5681
+ #: includes/countries.php:140
5682
+ msgid "Latvia"
5683
+ msgstr ""
5684
+
5685
+ #: includes/countries.php:141
5686
+ msgid "Libya"
5687
+ msgstr ""
5688
+
5689
+ #: includes/countries.php:142
5690
+ msgid "Morocco"
5691
+ msgstr ""
5692
+
5693
+ #: includes/countries.php:143
5694
+ msgid "Monaco"
5695
+ msgstr ""
5696
+
5697
+ #: includes/countries.php:144
5698
+ msgid "Moldova"
5699
+ msgstr ""
5700
+
5701
+ #: includes/countries.php:145
5702
+ msgid "Montenegro"
5703
+ msgstr ""
5704
+
5705
+ #: includes/countries.php:146
5706
+ msgid "Saint Martin (French part)"
5707
+ msgstr ""
5708
+
5709
+ #: includes/countries.php:147
5710
+ msgid "Madagascar"
5711
+ msgstr ""
5712
+
5713
+ #: includes/countries.php:148
5714
+ msgid "Marshall Islands"
5715
+ msgstr ""
5716
+
5717
+ #: includes/countries.php:149
5718
+ msgid "Macedonia"
5719
+ msgstr ""
5720
+
5721
+ #: includes/countries.php:150
5722
+ msgid "Mali"
5723
+ msgstr ""
5724
+
5725
+ #: includes/countries.php:151
5726
+ msgid "Myanmar"
5727
+ msgstr ""
5728
+
5729
+ #: includes/countries.php:152
5730
+ msgid "Mongolia"
5731
+ msgstr ""
5732
+
5733
+ #: includes/countries.php:153
5734
+ msgid "Macao S.A.R., China"
5735
+ msgstr ""
5736
+
5737
+ #: includes/countries.php:154
5738
+ msgid "Northern Mariana Islands"
5739
+ msgstr ""
5740
+
5741
+ #: includes/countries.php:155
5742
+ msgid "Martinique"
5743
+ msgstr ""
5744
+
5745
+ #: includes/countries.php:156
5746
+ msgid "Mauritania"
5747
+ msgstr ""
5748
+
5749
+ #: includes/countries.php:157
5750
+ msgid "Montserrat"
5751
+ msgstr ""
5752
+
5753
+ #: includes/countries.php:158
5754
+ msgid "Malta"
5755
+ msgstr ""
5756
+
5757
+ #: includes/countries.php:159
5758
+ msgid "Mauritius"
5759
+ msgstr ""
5760
+
5761
+ #: includes/countries.php:160
5762
+ msgid "Maldives"
5763
+ msgstr ""
5764
+
5765
+ #: includes/countries.php:161
5766
+ msgid "Malawi"
5767
+ msgstr ""
5768
+
5769
+ #: includes/countries.php:162
5770
+ msgid "Mexico"
5771
+ msgstr ""
5772
+
5773
+ #: includes/countries.php:163
5774
+ msgid "Malaysia"
5775
+ msgstr ""
5776
+
5777
+ #: includes/countries.php:164
5778
+ msgid "Mozambique"
5779
+ msgstr ""
5780
+
5781
+ #: includes/countries.php:165
5782
+ msgid "Namibia"
5783
+ msgstr ""
5784
+
5785
+ #: includes/countries.php:166
5786
+ msgid "New Caledonia"
5787
+ msgstr ""
5788
+
5789
+ #: includes/countries.php:167
5790
+ msgid "Niger"
5791
+ msgstr ""
5792
+
5793
+ #: includes/countries.php:168
5794
+ msgid "Norfolk Island"
5795
+ msgstr ""
5796
+
5797
+ #: includes/countries.php:169
5798
+ msgid "Nigeria"
5799
+ msgstr ""
5800
+
5801
+ #: includes/countries.php:170
5802
+ msgid "Nicaragua"
5803
+ msgstr ""
5804
+
5805
+ #: includes/countries.php:171
5806
+ msgid "Netherlands"
5807
+ msgstr ""
5808
+
5809
+ #: includes/countries.php:172
5810
+ msgid "Norway"
5811
+ msgstr ""
5812
+
5813
+ #: includes/countries.php:173
5814
+ msgid "Nepal"
5815
+ msgstr ""
5816
+
5817
+ #: includes/countries.php:174
5818
+ msgid "Nauru"
5819
+ msgstr ""
5820
+
5821
+ #: includes/countries.php:175
5822
+ msgid "Niue"
5823
+ msgstr ""
5824
+
5825
+ #: includes/countries.php:176
5826
+ msgid "New Zealand"
5827
+ msgstr ""
5828
+
5829
+ #: includes/countries.php:177
5830
+ msgid "Oman"
5831
+ msgstr ""
5832
+
5833
+ #: includes/countries.php:178
5834
+ msgid "Panama"
5835
+ msgstr ""
5836
+
5837
+ #: includes/countries.php:179
5838
+ msgid "Peru"
5839
+ msgstr ""
5840
+
5841
+ #: includes/countries.php:180
5842
+ msgid "French Polynesia"
5843
+ msgstr ""
5844
+
5845
+ #: includes/countries.php:181
5846
+ msgid "Papua New Guinea"
5847
+ msgstr ""
5848
+
5849
+ #: includes/countries.php:182
5850
+ msgid "Philippines"
5851
+ msgstr ""
5852
+
5853
+ #: includes/countries.php:183
5854
+ msgid "Pakistan"
5855
+ msgstr ""
5856
+
5857
+ #: includes/countries.php:184
5858
+ msgid "Poland"
5859
+ msgstr ""
5860
+
5861
+ #: includes/countries.php:185
5862
+ msgid "Saint Pierre and Miquelon"
5863
+ msgstr ""
5864
+
5865
+ #: includes/countries.php:186
5866
+ msgid "Pitcairn"
5867
+ msgstr ""
5868
+
5869
+ #: includes/countries.php:187
5870
+ msgid "Puerto Rico"
5871
+ msgstr ""
5872
+
5873
+ #: includes/countries.php:188
5874
+ msgid "Palestinian Territory"
5875
+ msgstr ""
5876
+
5877
+ #: includes/countries.php:189
5878
+ msgid "Portugal"
5879
+ msgstr ""
5880
+
5881
+ #: includes/countries.php:190
5882
+ msgid "Palau"
5883
+ msgstr ""
5884
+
5885
+ #: includes/countries.php:191
5886
+ msgid "Paraguay"
5887
+ msgstr ""
5888
+
5889
+ #: includes/countries.php:192
5890
+ msgid "Qatar"
5891
+ msgstr ""
5892
+
5893
+ #: includes/countries.php:193
5894
+ msgid "Reunion"
5895
+ msgstr ""
5896
+
5897
+ #: includes/countries.php:194
5898
+ msgid "Romania"
5899
+ msgstr ""
5900
+
5901
+ #: includes/countries.php:195
5902
+ msgid "Serbia"
5903
+ msgstr ""
5904
+
5905
+ #: includes/countries.php:196
5906
+ msgid "Russia"
5907
+ msgstr ""
5908
+
5909
+ #: includes/countries.php:197
5910
+ msgid "Rwanda"
5911
+ msgstr ""
5912
+
5913
+ #: includes/countries.php:198
5914
+ msgid "Saudi Arabia"
5915
+ msgstr ""
5916
+
5917
+ #: includes/countries.php:199
5918
+ msgid "Solomon Islands"
5919
+ msgstr ""
5920
+
5921
+ #: includes/countries.php:200
5922
+ msgid "Seychelles"
5923
+ msgstr ""
5924
+
5925
+ #: includes/countries.php:201
5926
+ msgid "Sudan"
5927
+ msgstr ""
5928
+
5929
+ #: includes/countries.php:202
5930
+ msgid "Sweden"
5931
+ msgstr ""
5932
+
5933
+ #: includes/countries.php:203
5934
+ msgid "Singapore"
5935
+ msgstr ""
5936
+
5937
+ #: includes/countries.php:204
5938
+ msgid "Saint Helena"
5939
+ msgstr ""
5940
+
5941
+ #: includes/countries.php:205
5942
+ msgid "Slovenia"
5943
+ msgstr ""
5944
+
5945
+ #: includes/countries.php:206
5946
+ msgid "Svalbard and Jan Mayen"
5947
+ msgstr ""
5948
+
5949
+ #: includes/countries.php:207
5950
+ msgid "Slovakia"
5951
+ msgstr ""
5952
+
5953
+ #: includes/countries.php:208
5954
+ msgid "Sierra Leone"
5955
+ msgstr ""
5956
+
5957
+ #: includes/countries.php:209
5958
+ msgid "San Marino"
5959
+ msgstr ""
5960
+
5961
+ #: includes/countries.php:210
5962
+ msgid "Senegal"
5963
+ msgstr ""
5964
+
5965
+ #: includes/countries.php:211
5966
+ msgid "Somalia"
5967
+ msgstr ""
5968
+
5969
+ #: includes/countries.php:212
5970
+ msgid "Suriname"
5971
+ msgstr ""
5972
+
5973
+ #: includes/countries.php:213
5974
+ msgid "Sao Tome and Principe"
5975
+ msgstr ""
5976
+
5977
+ #: includes/countries.php:214
5978
+ msgid "El Salvador"
5979
+ msgstr ""
5980
+
5981
+ #: includes/countries.php:215
5982
+ msgid "Syria"
5983
+ msgstr ""
5984
+
5985
+ #: includes/countries.php:216
5986
+ msgid "Swaziland"
5987
+ msgstr ""
5988
+
5989
+ #: includes/countries.php:217
5990
+ msgid "Turks and Caicos Islands"
5991
+ msgstr ""
5992
+
5993
+ #: includes/countries.php:218
5994
+ msgid "Chad"
5995
+ msgstr ""
5996
+
5997
+ #: includes/countries.php:219
5998
+ msgid "French Southern Territories"
5999
+ msgstr ""
6000
+
6001
+ #: includes/countries.php:220
6002
+ msgid "Togo"
6003
+ msgstr ""
6004
+
6005
+ #: includes/countries.php:221
6006
+ msgid "Thailand"
6007
+ msgstr ""
6008
+
6009
+ #: includes/countries.php:222
6010
+ msgid "Tajikistan"
6011
+ msgstr ""
6012
+
6013
+ #: includes/countries.php:223
6014
+ msgid "Tokelau"
6015
+ msgstr ""
6016
+
6017
+ #: includes/countries.php:224
6018
+ msgid "Timor-Leste"
6019
+ msgstr ""
6020
+
6021
+ #: includes/countries.php:225
6022
+ msgid "Turkmenistan"
6023
+ msgstr ""
6024
+
6025
+ #: includes/countries.php:226
6026
+ msgid "Tunisia"
6027
+ msgstr ""
6028
+
6029
+ #: includes/countries.php:227
6030
+ msgid "Tonga"
6031
+ msgstr ""
6032
+
6033
+ #: includes/countries.php:228
6034
+ msgid "Turkey"
6035
+ msgstr ""
6036
+
6037
+ #: includes/countries.php:229
6038
+ msgid "Trinidad and Tobago"
6039
+ msgstr ""
6040
+
6041
+ #: includes/countries.php:230
6042
+ msgid "Tuvalu"
6043
+ msgstr ""
6044
+
6045
+ #: includes/countries.php:231
6046
+ msgid "Taiwan"
6047
+ msgstr ""
6048
+
6049
+ #: includes/countries.php:232
6050
+ msgid "Tanzania"
6051
+ msgstr ""
6052
+
6053
+ #: includes/countries.php:233
6054
+ msgid "Ukraine"
6055
+ msgstr ""
6056
+
6057
+ #: includes/countries.php:234
6058
+ msgid "Uganda"
6059
+ msgstr ""
6060
+
6061
+ #: includes/countries.php:235
6062
+ msgid "United States Minor Outlying Islands"
6063
+ msgstr ""
6064
+
6065
+ #: includes/countries.php:236
6066
+ msgid "United States"
6067
+ msgstr ""
6068
+
6069
+ #: includes/countries.php:237
6070
+ msgid "Uruguay"
6071
+ msgstr ""
6072
+
6073
+ #: includes/countries.php:238
6074
+ msgid "Uzbekistan"
6075
+ msgstr ""
6076
+
6077
+ #: includes/countries.php:239
6078
+ msgid "Vatican"
6079
+ msgstr ""
6080
+
6081
+ #: includes/countries.php:240
6082
+ msgid "Saint Vincent and the Grenadines"
6083
+ msgstr ""
6084
+
6085
+ #: includes/countries.php:241 includes/countries.php:254
6086
+ msgid "Venezuela"
6087
+ msgstr ""
6088
+
6089
+ #: includes/countries.php:242
6090
+ msgid "British Virgin Islands"
6091
+ msgstr ""
6092
+
6093
+ #: includes/countries.php:243
6094
+ msgid "U.S. Virgin Islands"
6095
+ msgstr ""
6096
+
6097
+ #: includes/countries.php:244
6098
+ msgid "Vietnam"
6099
+ msgstr ""
6100
+
6101
+ #: includes/countries.php:245
6102
+ msgid "Vanuatu"
6103
+ msgstr ""
6104
+
6105
+ #: includes/countries.php:246
6106
+ msgid "Wallis and Futuna"
6107
+ msgstr ""
6108
+
6109
+ #: includes/countries.php:247
6110
+ msgid "Samoa"
6111
+ msgstr ""
6112
+
6113
+ #: includes/countries.php:248
6114
+ msgid "Yemen"
6115
+ msgstr ""
6116
+
6117
+ #: includes/countries.php:249
6118
+ msgid "Mayotte"
6119
+ msgstr ""
6120
+
6121
+ #: includes/countries.php:250
6122
+ msgid "South Africa"
6123
+ msgstr ""
6124
+
6125
+ #: includes/countries.php:251
6126
+ msgid "Zambia"
6127
+ msgstr ""
6128
+
6129
+ #: includes/countries.php:252
6130
+ msgid "Zimbabwe"
6131
+ msgstr ""
6132
+
6133
+ #: includes/countries.php:253
6134
+ msgid "US Armed Forces"
6135
+ msgstr ""
6136
+
6137
+ #: includes/currencies.php:17 includes/currencies.php:94
6138
+ #: includes/currencies.php:7 includes/currencies.php:17
6139
+ #: includes/currencies.php:37 includes/currencies.php:44
6140
+ #: includes/currencies.php:64 includes/currencies.php:68
6141
+ #: includes/currencies.php:75 includes/currencies.php:85
6142
+ #: includes/currencies.php:87 includes/currencies.php:94
6143
+ msgid "US Dollars (&#36;)"
6144
+ msgstr ""
6145
+
6146
+ #: includes/currencies.php:19 includes/currencies.php:97
6147
+ #: includes/currencies.php:8 includes/currencies.php:9
6148
+ #: includes/currencies.php:19 includes/currencies.php:40
6149
+ #: includes/currencies.php:47 includes/currencies.php:67
6150
+ #: includes/currencies.php:71 includes/currencies.php:78
6151
+ #: includes/currencies.php:88 includes/currencies.php:90
6152
+ #: includes/currencies.php:97
6153
+ msgid "Euros (&euro;)"
6154
+ msgstr ""
6155
+
6156
+ #: includes/currencies.php:24 includes/currencies.php:96
6157
+ #: includes/currencies.php:9 includes/currencies.php:14
6158
+ #: includes/currencies.php:24 includes/currencies.php:39
6159
+ #: includes/currencies.php:46 includes/currencies.php:66
6160
+ #: includes/currencies.php:70 includes/currencies.php:77
6161
+ #: includes/currencies.php:87 includes/currencies.php:89
6162
+ #: includes/currencies.php:96
6163
+ msgid "Pounds Sterling (&pound;)"
6164
+ msgstr ""
6165
+
6166
+ #: includes/currencies.php:28 includes/currencies.php:28
6167
+ msgid "Argentine Peso (&#36;)"
6168
+ msgstr ""
6169
+
6170
+ #: includes/currencies.php:29 includes/currencies.php:10
6171
+ #: includes/currencies.php:18 includes/currencies.php:28
6172
+ #: includes/currencies.php:29
6173
+ msgid "Australian Dollars (&#36;)"
6174
+ msgstr ""
6175
+
6176
+ #: includes/currencies.php:31 includes/currencies.php:20
6177
+ #: includes/currencies.php:30 includes/currencies.php:31
6178
+ msgid "Brazilian Real (R&#36;)"
6179
+ msgstr ""
6180
+
6181
+ #: includes/currencies.php:35 includes/currencies.php:95
6182
+ #: includes/currencies.php:12 includes/currencies.php:24
6183
+ #: includes/currencies.php:34 includes/currencies.php:35
6184
+ #: includes/currencies.php:38 includes/currencies.php:45
6185
+ #: includes/currencies.php:65 includes/currencies.php:69
6186
+ #: includes/currencies.php:76 includes/currencies.php:86
6187
+ #: includes/currencies.php:88 includes/currencies.php:95
6188
+ msgid "Canadian Dollars (&#36;)"
6189
+ msgstr ""
6190
+
6191
+ #: includes/currencies.php:36 includes/currencies.php:13
6192
+ #: includes/currencies.php:25 includes/currencies.php:35
6193
+ #: includes/currencies.php:36
6194
+ msgid "Chinese Yuan"
6195
+ msgstr ""
6196
+
6197
+ #: includes/currencies.php:38 includes/currencies.php:13
6198
+ #: includes/currencies.php:14 includes/currencies.php:26
6199
+ #: includes/currencies.php:27 includes/currencies.php:37
6200
+ #: includes/currencies.php:38
6201
+ msgid "Czech Koruna"
6202
+ msgstr ""
6203
+
6204
+ #: includes/currencies.php:45 includes/currencies.php:14
6205
+ #: includes/currencies.php:15 includes/currencies.php:27
6206
+ #: includes/currencies.php:34 includes/currencies.php:44
6207
+ #: includes/currencies.php:45
6208
+ msgid "Danish Krone"
6209
+ msgstr ""
6210
+
6211
+ #: includes/currencies.php:46 includes/currencies.php:15
6212
+ #: includes/currencies.php:16 includes/currencies.php:28
6213
+ #: includes/currencies.php:35 includes/currencies.php:45
6214
+ #: includes/currencies.php:46
6215
+ msgid "Hong Kong Dollar (&#36;)"
6216
+ msgstr ""
6217
+
6218
+ #: includes/currencies.php:47 includes/currencies.php:16
6219
+ #: includes/currencies.php:17 includes/currencies.php:29
6220
+ #: includes/currencies.php:36 includes/currencies.php:46
6221
+ #: includes/currencies.php:47
6222
+ msgid "Hungarian Forint"
6223
+ msgstr ""
6224
+
6225
+ #: includes/currencies.php:48 includes/currencies.php:18
6226
+ #: includes/currencies.php:30 includes/currencies.php:37
6227
+ #: includes/currencies.php:47 includes/currencies.php:48
6228
+ msgid "Indian Rupee"
6229
+ msgstr ""
6230
+
6231
+ #: includes/currencies.php:49 includes/currencies.php:19
6232
+ #: includes/currencies.php:31 includes/currencies.php:38
6233
+ #: includes/currencies.php:48 includes/currencies.php:49
6234
+ msgid "Indonesia Rupiah"
6235
+ msgstr ""
6236
+
6237
+ #: includes/currencies.php:50 includes/currencies.php:17
6238
+ #: includes/currencies.php:20 includes/currencies.php:32
6239
+ #: includes/currencies.php:39 includes/currencies.php:49
6240
+ #: includes/currencies.php:50
6241
+ msgid "Israeli Shekel"
6242
+ msgstr ""
6243
+
6244
+ #: includes/currencies.php:52 includes/currencies.php:18
6245
+ #: includes/currencies.php:21 includes/currencies.php:34
6246
+ #: includes/currencies.php:41 includes/currencies.php:51
6247
+ #: includes/currencies.php:52
6248
+ msgid "Japanese Yen (&yen;)"
6249
+ msgstr ""
6250
+
6251
+ #: includes/currencies.php:57 includes/currencies.php:19
6252
+ #: includes/currencies.php:22 includes/currencies.php:38
6253
+ #: includes/currencies.php:45 includes/currencies.php:55
6254
+ #: includes/currencies.php:56 includes/currencies.php:57
6255
+ msgid "Malaysian Ringgits"
6256
+ msgstr ""
6257
+
6258
+ #: includes/currencies.php:58 includes/currencies.php:20
6259
+ #: includes/currencies.php:23 includes/currencies.php:39
6260
+ #: includes/currencies.php:46 includes/currencies.php:56
6261
+ #: includes/currencies.php:57 includes/currencies.php:58
6262
+ msgid "Mexican Peso (&#36;)"
6263
+ msgstr ""
6264
+
6265
+ #: includes/currencies.php:59 includes/currencies.php:58
6266
+ #: includes/currencies.php:59
6267
+ msgid "Nigerian Naira (&#8358;)"
6268
+ msgstr ""
6269
+
6270
+ #: includes/currencies.php:60 includes/currencies.php:21
6271
+ #: includes/currencies.php:24 includes/currencies.php:40
6272
+ #: includes/currencies.php:47 includes/currencies.php:57
6273
+ #: includes/currencies.php:59 includes/currencies.php:60
6274
+ msgid "New Zealand Dollar (&#36;)"
6275
+ msgstr ""
6276
+
6277
+ #: includes/currencies.php:61 includes/currencies.php:22
6278
+ #: includes/currencies.php:25 includes/currencies.php:41
6279
+ #: includes/currencies.php:48 includes/currencies.php:58
6280
+ #: includes/currencies.php:60 includes/currencies.php:61
6281
+ msgid "Norwegian Krone"
6282
+ msgstr ""
6283
+
6284
+ #: includes/currencies.php:62 includes/currencies.php:23
6285
+ #: includes/currencies.php:26 includes/currencies.php:42
6286
+ #: includes/currencies.php:49 includes/currencies.php:59
6287
+ #: includes/currencies.php:61 includes/currencies.php:62
6288
+ msgid "Philippine Pesos"
6289
+ msgstr ""
6290
+
6291
+ #: includes/currencies.php:63 includes/currencies.php:24
6292
+ #: includes/currencies.php:27 includes/currencies.php:43
6293
+ #: includes/currencies.php:50 includes/currencies.php:60
6294
+ #: includes/currencies.php:62 includes/currencies.php:63
6295
+ msgid "Polish Zloty"
6296
+ msgstr ""
6297
+
6298
+ #: includes/currencies.php:65 includes/currencies.php:25
6299
+ #: includes/currencies.php:28 includes/currencies.php:45
6300
+ #: includes/currencies.php:52 includes/currencies.php:62
6301
+ #: includes/currencies.php:64 includes/currencies.php:65
6302
+ msgid "Singapore Dollar (&#36;)"
6303
+ msgstr ""
6304
+
6305
+ #: includes/currencies.php:70 includes/currencies.php:50
6306
+ #: includes/currencies.php:57 includes/currencies.php:67
6307
+ #: includes/currencies.php:69 includes/currencies.php:70
6308
+ msgid "South African Rand (R)"
6309
+ msgstr ""
6310
+
6311
+ #: includes/currencies.php:75 includes/currencies.php:30
6312
+ #: includes/currencies.php:50 includes/currencies.php:54
6313
+ #: includes/currencies.php:61 includes/currencies.php:71
6314
+ #: includes/currencies.php:73 includes/currencies.php:75
6315
+ msgid "South Korean Won"
6316
+ msgstr ""
6317
+
6318
+ #: includes/currencies.php:78 includes/currencies.php:26
6319
+ #: includes/currencies.php:31 includes/currencies.php:51
6320
+ #: includes/currencies.php:55 includes/currencies.php:62
6321
+ #: includes/currencies.php:72 includes/currencies.php:74
6322
+ #: includes/currencies.php:78
6323
+ msgid "Swedish Krona"
6324
+ msgstr ""
6325
+
6326
+ #: includes/currencies.php:79 includes/currencies.php:27
6327
+ #: includes/currencies.php:32 includes/currencies.php:52
6328
+ #: includes/currencies.php:56 includes/currencies.php:63
6329
+ #: includes/currencies.php:73 includes/currencies.php:75
6330
+ #: includes/currencies.php:79
6331
+ msgid "Swiss Franc"
6332
+ msgstr ""
6333
+
6334
+ #: includes/currencies.php:80 includes/currencies.php:28
6335
+ #: includes/currencies.php:33 includes/currencies.php:53
6336
+ #: includes/currencies.php:57 includes/currencies.php:64
6337
+ #: includes/currencies.php:74 includes/currencies.php:76
6338
+ #: includes/currencies.php:80
6339
+ msgid "Taiwan New Dollars"
6340
+ msgstr ""
6341
+
6342
+ #: includes/currencies.php:81 includes/currencies.php:29
6343
+ #: includes/currencies.php:34 includes/currencies.php:54
6344
+ #: includes/currencies.php:58 includes/currencies.php:65
6345
+ #: includes/currencies.php:75 includes/currencies.php:77
6346
+ #: includes/currencies.php:81
6347
+ msgid "Thai Baht"
6348
+ msgstr ""
6349
+
6350
+ #: includes/currencies.php:82 includes/currencies.php:35
6351
+ #: includes/currencies.php:55 includes/currencies.php:59
6352
+ #: includes/currencies.php:66 includes/currencies.php:76
6353
+ #: includes/currencies.php:78 includes/currencies.php:82
6354
+ msgid "Turkish Lira"
6355
+ msgstr ""
6356
+
6357
+ #: includes/currencies.php:84 includes/currencies.php:36
6358
+ #: includes/currencies.php:56 includes/currencies.php:60
6359
+ #: includes/currencies.php:67 includes/currencies.php:77
6360
+ #: includes/currencies.php:79 includes/currencies.php:84
6361
+ msgid "Vietnamese Dong"
6362
+ msgstr ""
6363
+
6364
+ #: includes/filters.php:217
6365
+ msgid ""
6366
+ "There was a potential issue while setting the 'Profile Start Date' for a "
6367
+ "user's subscription at checkout. PayPal does not allow one to set a Profile "
6368
+ "Start Date further than 1 year out. Typically, this is not an issue, but "
6369
+ "sometimes a combination of custom code or add ons for PMPro (e.g. the "
6370
+ "Prorating or Auto-renewal Checkbox add ons) will try to set a Profile Start "
6371
+ "Date out past 1 year in order to respect an existing user's original "
6372
+ "expiration date before they checked out. The user's information is below. "
6373
+ "PMPro has allowed the checkout and simply restricted the Profile Start Date "
6374
+ "to 1 year out with a possible additional free Trial of up to 1 year. You "
6375
+ "should double check this information to determine if maybe the user has "
6376
+ "overpaid or otherwise needs to be addressed. If you get many of these "
6377
+ "emails, you should consider adjusting your custom code to avoid these "
6378
+ "situations."
6379
+ msgstr ""
6380
+
6381
+ #: includes/filters.php:218
6382
+ #, php-format
6383
+ msgid ""
6384
+ "User: %s<br />Email: %s<br />Membership Level: %s<br />Order #: %s<br /"
6385
+ ">Original Profile Start Date: %s<br />Adjusted Profile Start Date: %s<br /"
6386
+ ">Trial Period: %s<br />Trial Frequency: %s<br />"
6387
+ msgstr ""
6388
+
6389
+ #: includes/filters.php:220
6390
+ #, php-format
6391
+ msgid "Profile Start Date Issue Detected and Fixed at %s"
6392
  msgstr ""
6393
 
6394
  #: includes/functions.php:320 includes/functions.php:455
6668
 
6669
  #: includes/functions.php:1129 includes/functions.php:907
6670
  #: includes/functions.php:1123 includes/functions.php:1127
6671
+ #: includes/functions.php:1129
6672
  #, php-format
6673
  msgid "Error interacting with database: %s"
6674
  msgstr ""
6692
  #: includes/functions.php:948 includes/functions.php:953
6693
  #: includes/functions.php:986 includes/functions.php:987
6694
  #: includes/functions.php:992 includes/functions.php:1198
6695
+ #: includes/functions.php:1202 includes/functions.php:1204
6696
+ #: includes/functions.php:1237 includes/functions.php:1241
6697
+ #: includes/functions.php:1243
6698
  msgid "Membership level not found."
6699
  msgstr ""
6700
 
6706
  #: includes/functions.php:1290 includes/functions.php:1356
6707
  #: includes/functions.php:1357 includes/functions.php:1362
6708
  #: includes/functions.php:1605 includes/functions.php:1609
6709
+ #: includes/functions.php:1611
6710
  msgid "No code was given to check."
6711
  msgstr ""
6712
 
6721
  #: includes/functions.php:1205 includes/functions.php:1299
6722
  #: includes/functions.php:1365 includes/functions.php:1366
6723
  #: includes/functions.php:1371 includes/functions.php:1614
6724
+ #: includes/functions.php:1618 includes/functions.php:1620
6725
  msgid "The discount code could not be found."
6726
  msgstr ""
6727
 
6736
  #: includes/functions.php:1220 includes/functions.php:1314
6737
  #: includes/functions.php:1380 includes/functions.php:1381
6738
  #: includes/functions.php:1386 includes/functions.php:1629
6739
+ #: includes/functions.php:1633 includes/functions.php:1635
6740
  #, php-format
6741
  msgid "This discount code goes into effect on %s."
6742
  msgstr ""
6752
  #: includes/functions.php:1227 includes/functions.php:1321
6753
  #: includes/functions.php:1387 includes/functions.php:1388
6754
  #: includes/functions.php:1393 includes/functions.php:1636
6755
+ #: includes/functions.php:1640 includes/functions.php:1642
6756
  #, php-format
6757
  msgid "This discount code expired on %s."
6758
  msgstr ""
6768
  #: includes/functions.php:1237 includes/functions.php:1331
6769
  #: includes/functions.php:1397 includes/functions.php:1398
6770
  #: includes/functions.php:1403 includes/functions.php:1646
6771
+ #: includes/functions.php:1650 includes/functions.php:1652
6772
  msgid "This discount code is no longer valid."
6773
  msgstr ""
6774
 
6783
  #: includes/functions.php:1344 includes/functions.php:1410
6784
  #: includes/functions.php:1411 includes/functions.php:1416
6785
  #: includes/functions.php:1666 includes/functions.php:1670
6786
+ #: includes/functions.php:1672
6787
  msgid "This discount code does not apply to this membership level."
6788
  msgstr ""
6789
 
6798
  #: includes/functions.php:1276 includes/functions.php:1370
6799
  #: includes/functions.php:1436 includes/functions.php:1442
6800
  #: includes/functions.php:1448 includes/functions.php:1703
6801
+ #: includes/functions.php:1707 includes/functions.php:1709
6802
  msgid "This discount code is okay."
6803
  msgstr ""
6804
 
6813
  #: includes/functions.php:1395 includes/functions.php:1397
6814
  #: includes/functions.php:1463 includes/functions.php:1469
6815
  #: includes/functions.php:1475 includes/functions.php:1730
6816
+ #: includes/functions.php:1734 includes/functions.php:1736
6817
  msgid "and"
6818
  msgstr ""
6819
 
6829
  #: includes/functions.php:1624 includes/functions.php:1691
6830
  #: includes/functions.php:1697 includes/functions.php:1703
6831
  #: includes/functions.php:2015 includes/functions.php:2019
6832
+ #: includes/functions.php:2022 includes/functions.php:2024
6833
  msgid "Sign Up for !!name!! Now"
6834
  msgstr ""
6835
 
6845
  #: includes/functions.php:1630 includes/functions.php:1697
6846
  #: includes/functions.php:1703 includes/functions.php:1709
6847
  #: includes/functions.php:2021 includes/functions.php:2025
6848
+ #: includes/functions.php:2028 includes/functions.php:2030
6849
  msgid "Please specify a level id."
6850
  msgstr ""
6851
 
6904
  msgstr ""
6905
 
6906
  #: includes/license.php:298 includes/license.php:273 includes/license.php:278
6907
+ #: includes/license.php:288 includes/license.php:291 includes/license.php:298
6908
  msgid "Invalid PMPro License Key."
6909
  msgstr ""
6910
 
6911
  #: includes/license.php:301 includes/license.php:273 includes/license.php:278
6912
+ #: includes/license.php:288 includes/license.php:291 includes/license.php:301
6913
  msgid ""
6914
  "If you're running Paid Memberships Pro on a production website, we recommend "
6915
  "an annual support license."
6916
  msgstr ""
6917
 
6918
  #: includes/license.php:302 includes/license.php:274 includes/license.php:279
6919
+ #: includes/license.php:289 includes/license.php:292 includes/license.php:302
6920
  msgid "Dismiss"
6921
  msgstr ""
6922
 
6923
  #: includes/license.php:302 includes/license.php:274 includes/license.php:279
6924
+ #: includes/license.php:289 includes/license.php:292 includes/license.php:302
6925
  msgid "More Info"
6926
  msgstr ""
6927
 
6928
  #: includes/localization.php:33 includes/localization.php:23
6929
+ #: includes/localization.php:26 includes/localization.php:33
6930
  msgid "Day"
6931
  msgstr ""
6932
 
6933
  #: includes/localization.php:35 includes/localization.php:25
6934
+ #: includes/localization.php:28 includes/localization.php:35
6935
  msgid "Week"
6936
  msgstr ""
6937
 
6938
  #: includes/localization.php:37 includes/localization.php:27
6939
+ #: includes/localization.php:30 includes/localization.php:37
6940
  msgid "Month"
6941
  msgstr ""
6942
 
6943
  #: includes/localization.php:39 includes/localization.php:29
6944
+ #: includes/localization.php:32 includes/localization.php:39
6945
  msgid "Year"
6946
  msgstr ""
6947
 
6948
  #: includes/localization.php:44 includes/localization.php:37
6949
+ #: includes/localization.php:44
6950
  msgid "Days"
6951
  msgstr ""
6952
 
6953
  #: includes/localization.php:46 includes/localization.php:39
6954
+ #: includes/localization.php:46
6955
  msgid "Weeks"
6956
  msgstr ""
6957
 
6958
  #: includes/localization.php:48 includes/localization.php:41
6959
+ #: includes/localization.php:48
6960
  msgid "Months"
6961
  msgstr ""
6962
 
6963
  #: includes/localization.php:50 includes/localization.php:43
6964
+ #: includes/localization.php:50
6965
  msgid "Years"
6966
  msgstr ""
6967
 
7048
  "register to read."
7049
  msgstr ""
7050
 
7051
+ #: pages/billing.php:26 pages/billing.php:14 pages/billing.php:23
7052
  #: pages/billing.php:25 pages/billing.php:26 pages/billing.php:28
7053
  #, php-format
7054
  msgid "Logged in as <strong>%s</strong>."
7055
  msgstr ""
7056
 
7057
+ #: pages/billing.php:26 pages/billing.php:14 pages/billing.php:23
7058
  #: pages/billing.php:25 pages/billing.php:26 pages/billing.php:28
7059
  msgid "logout"
7060
  msgstr ""
7061
 
7062
+ #: pages/billing.php:44 pages/cancel.php:61 pages/invoice.php:109
7063
  #: pages/levels.php:35 shortcodes/pmpro_account.php:44
7064
  #: shortcodes/pmpro_account.php:128 pages/account.php:12 pages/account.php:18
7065
  #: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
7072
  msgid "Level"
7073
  msgstr ""
7074
 
7075
+ #: pages/billing.php:46 pages/account.php:14 pages/billing.php:18
7076
  #: pages/billing.php:27 pages/billing.php:29 pages/billing.php:30
7077
  #: pages/billing.php:32
7078
  msgid "Membership Fee"
7079
  msgstr ""
7080
 
7081
+ #: pages/billing.php:50 pages/account.php:18 pages/billing.php:22
7082
  #: pages/billing.php:31 pages/billing.php:33 pages/billing.php:34
7083
  #: pages/billing.php:36 pages/levels.php:70
7084
  #, php-format
7085
  msgid "%s every %d %s."
7086
  msgstr ""
7087
 
7088
+ #: pages/billing.php:52 pages/account.php:20 pages/billing.php:24
7089
  #: pages/billing.php:33 pages/billing.php:35 pages/billing.php:36
7090
  #: pages/billing.php:38 pages/levels.php:66
7091
  #, php-format
7092
  msgid "%s per %s."
7093
  msgstr ""
7094
 
7095
+ #: pages/billing.php:62 pages/account.php:25 pages/account.php:29
7096
  #: pages/billing.php:29 pages/billing.php:33 pages/billing.php:42
7097
  #: pages/billing.php:44 pages/billing.php:45 pages/billing.php:47
7098
  msgid "Duration"
7099
  msgstr ""
7100
 
7101
+ #: pages/billing.php:80 pages/billing.php:39 pages/billing.php:43
7102
  #: pages/billing.php:52 pages/billing.php:54 pages/billing.php:55
7103
  #: pages/billing.php:57
7104
  msgid ""
7106
  "paypal.com\">login to PayPal here</a> to update your billing information."
7107
  msgstr ""
7108
 
7109
+ #: pages/billing.php:110 pages/checkout.php:336 pages/billing.php:65
7110
  #: pages/billing.php:69 pages/billing.php:78 pages/billing.php:81
7111
  #: pages/billing.php:83 pages/billing.php:84 pages/billing.php:87
7112
  #: pages/checkout.php:305 pages/checkout.php:307 pages/checkout.php:309
7115
  msgid "First Name"
7116
  msgstr ""
7117
 
7118
+ #: pages/billing.php:114 pages/checkout.php:340 pages/billing.php:69
7119
  #: pages/billing.php:73 pages/billing.php:82 pages/billing.php:85
7120
  #: pages/billing.php:87 pages/billing.php:88 pages/billing.php:91
7121
  #: pages/checkout.php:309 pages/checkout.php:311 pages/checkout.php:313
7124
  msgid "Last Name"
7125
  msgstr ""
7126
 
7127
+ #: pages/billing.php:118 pages/checkout.php:344 pages/billing.php:73
7128
  #: pages/billing.php:77 pages/billing.php:86 pages/billing.php:89
7129
  #: pages/billing.php:91 pages/billing.php:92 pages/billing.php:95
7130
  #: pages/checkout.php:313 pages/checkout.php:315 pages/checkout.php:317
7133
  msgid "Address 1"
7134
  msgstr ""
7135
 
7136
+ #: pages/billing.php:122 pages/checkout.php:348 pages/billing.php:77
7137
  #: pages/billing.php:81 pages/billing.php:90 pages/billing.php:93
7138
  #: pages/billing.php:95 pages/billing.php:96 pages/billing.php:99
7139
  #: pages/checkout.php:317 pages/checkout.php:319 pages/checkout.php:321
7142
  msgid "Address 2"
7143
  msgstr ""
7144
 
7145
+ #: pages/billing.php:132 pages/checkout.php:358 pages/billing.php:87
7146
  #: pages/billing.php:91 pages/billing.php:100 pages/billing.php:103
7147
  #: pages/billing.php:105 pages/billing.php:106 pages/billing.php:109
7148
  #: pages/checkout.php:327 pages/checkout.php:329 pages/checkout.php:331
7151
  msgid "City"
7152
  msgstr ""
7153
 
7154
+ #: pages/billing.php:136 pages/checkout.php:362 pages/billing.php:91
7155
  #: pages/billing.php:95 pages/billing.php:104 pages/billing.php:107
7156
  #: pages/billing.php:109 pages/billing.php:110 pages/billing.php:113
7157
  #: pages/checkout.php:331 pages/checkout.php:333 pages/checkout.php:335
7160
  msgid "State"
7161
  msgstr ""
7162
 
7163
+ #: pages/billing.php:140 pages/checkout.php:366 pages/billing.php:95
7164
  #: pages/billing.php:99 pages/billing.php:108 pages/billing.php:111
7165
  #: pages/billing.php:113 pages/billing.php:114 pages/billing.php:117
7166
  #: pages/checkout.php:335 pages/checkout.php:337 pages/checkout.php:339
7169
  msgid "Postal Code"
7170
  msgstr ""
7171
 
7172
+ #: pages/billing.php:149 pages/checkout.php:375 pages/billing.php:104
7173
  #: pages/billing.php:108 pages/billing.php:117 pages/billing.php:120
7174
  #: pages/billing.php:122 pages/billing.php:123 pages/billing.php:126
7175
  #: pages/checkout.php:344 pages/checkout.php:346 pages/checkout.php:348
7178
  msgid "City, State Zip"
7179
  msgstr ""
7180
 
7181
+ #: pages/billing.php:202 pages/checkout.php:428 pages/billing.php:157
7182
  #: pages/billing.php:161 pages/billing.php:170 pages/billing.php:173
7183
  #: pages/billing.php:175 pages/billing.php:176 pages/billing.php:179
7184
  #: pages/checkout.php:397 pages/checkout.php:399 pages/checkout.php:401
7187
  msgid "Country"
7188
  msgstr ""
7189
 
7190
+ #: pages/billing.php:227 pages/checkout.php:453 pages/billing.php:182
7191
  #: pages/billing.php:186 pages/billing.php:195 pages/billing.php:198
7192
  #: pages/billing.php:200 pages/billing.php:201 pages/billing.php:204
7193
  #: pages/checkout.php:422 pages/checkout.php:424 pages/checkout.php:426
7196
  msgid "Phone"
7197
  msgstr ""
7198
 
7199
+ #: pages/billing.php:238 pages/checkout.php:230 pages/checkout.php:467
7200
  #: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
7201
  #: pages/billing.php:209 pages/billing.php:211 pages/billing.php:212
7202
  #: pages/billing.php:215 pages/checkout.php:204 pages/checkout.php:207
7208
  msgid "E-mail Address"
7209
  msgstr ""
7210
 
7211
+ #: pages/billing.php:242 pages/checkout.php:476 pages/billing.php:197
7212
  #: pages/billing.php:201 pages/billing.php:210 pages/billing.php:213
7213
  #: pages/billing.php:215 pages/billing.php:216 pages/billing.php:219
7214
  #: pages/checkout.php:445 pages/checkout.php:447 pages/checkout.php:449
7217
  msgid "Confirm E-mail"
7218
  msgstr ""
7219
 
7220
+ #: pages/billing.php:270 pages/billing.php:217 pages/billing.php:221
7221
  #: pages/billing.php:230 pages/billing.php:231 pages/billing.php:234
7222
  #: pages/billing.php:238 pages/billing.php:244 pages/billing.php:247
7223
  msgid "Credit Card Information"
7224
  msgstr ""
7225
 
7226
+ #: pages/billing.php:271 pages/billing.php:217 pages/billing.php:221
7227
  #: pages/billing.php:230 pages/billing.php:232 pages/billing.php:235
7228
  #: pages/billing.php:239 pages/billing.php:245 pages/billing.php:248
7229
  #, php-format
7230
  msgid "We accept %s"
7231
  msgstr ""
7232
 
7233
+ #: pages/billing.php:413 pages/billing.php:309 pages/billing.php:313
7234
  #: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
7235
  #: pages/billing.php:360 pages/billing.php:364 pages/billing.php:387
7236
  #: pages/billing.php:408 pages/billing.php:417 pages/billing.php:422
7274
  msgid "Click here to go to the home page."
7275
  msgstr ""
7276
 
7277
+ #: pages/checkout.php:38 pages/checkout.php:26 pages/checkout.php:27
7278
  #: pages/checkout.php:28 pages/checkout.php:35
7279
  msgid ""
7280
  "Almost done. Review the membership information and pricing below then "
7281
  "<strong>click the \"Complete Payment\" button</strong> to finish your order."
7282
  msgstr ""
7283
 
7284
+ #: pages/checkout.php:46 pages/checkout.php:33 pages/checkout.php:34
7285
  #: pages/checkout.php:35 pages/checkout.php:42 pages/checkout.php:43
7286
  msgid "change"
7287
  msgstr ""
7288
 
7289
+ #: pages/checkout.php:54 pages/checkout.php:41 pages/checkout.php:42
7290
  #: pages/checkout.php:43 pages/checkout.php:50 pages/checkout.php:51
7291
  #, php-format
7292
  msgid "You have selected the <strong>%s</strong> membership level."
7293
  msgstr ""
7294
 
7295
+ #: pages/checkout.php:71 pages/checkout.php:51 pages/checkout.php:53
7296
  #: pages/checkout.php:60 pages/checkout.php:61 pages/checkout.php:68
7297
  #, php-format
7298
  msgid ""
7300
  "been applied to your order.</p>"
7301
  msgstr ""
7302
 
7303
+ #: pages/checkout.php:82 services/applydiscountcode.php:92
7304
  #: pages/checkout.php:62 pages/checkout.php:63 pages/checkout.php:64
7305
  #: pages/checkout.php:71 pages/checkout.php:72 pages/checkout.php:79
7306
  #: services/applydiscountcode.php:74 services/applydiscountcode.php:75
7309
  msgid "Click here to change your discount code"
7310
  msgstr ""
7311
 
7312
+ #: pages/checkout.php:84 pages/checkout.php:64 pages/checkout.php:65
7313
  #: pages/checkout.php:66 pages/checkout.php:73 pages/checkout.php:74
7314
  #: pages/checkout.php:81
7315
  msgid "Click here to enter your discount code"
7316
  msgstr ""
7317
 
7318
+ #: pages/checkout.php:84 pages/checkout.php:64 pages/checkout.php:65
7319
  #: pages/checkout.php:66 pages/checkout.php:73 pages/checkout.php:74
7320
  #: pages/checkout.php:81
7321
  msgid "Do you have a discount code?"
7322
  msgstr ""
7323
 
7324
+ #: pages/checkout.php:185 pages/checkout.php:160 pages/checkout.php:163
7325
  #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:173
7326
  #: pages/checkout.php:175 pages/checkout.php:182
7327
  msgid "Account Information"
7328
  msgstr ""
7329
 
7330
+ #: pages/checkout.php:186 pages/checkout.php:160 pages/checkout.php:163
7331
  #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:174
7332
  #: pages/checkout.php:176 pages/checkout.php:183
7333
  msgid "Already have an account?"
7334
  msgstr ""
7335
 
7336
+ #: pages/checkout.php:186 pages/checkout.php:160 pages/checkout.php:163
7337
  #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:174
7338
  #: pages/checkout.php:176 pages/checkout.php:183
7339
  msgid "Log in here"
7340
  msgstr ""
7341
 
7342
+ #: pages/checkout.php:212 pages/checkout.php:186 pages/checkout.php:189
7343
  #: pages/checkout.php:191 pages/checkout.php:198 pages/checkout.php:200
7344
  #: pages/checkout.php:202 pages/checkout.php:209
7345
  msgid "Confirm Password"
7346
  msgstr ""
7347
 
7348
+ #: pages/checkout.php:239 pages/checkout.php:213 pages/checkout.php:216
7349
  #: pages/checkout.php:218 pages/checkout.php:225 pages/checkout.php:227
7350
  #: pages/checkout.php:229 pages/checkout.php:236
7351
  msgid "Confirm E-mail Address"
7352
  msgstr ""
7353
 
7354
+ #: pages/checkout.php:258 pages/checkout.php:232 pages/checkout.php:235
7355
  #: pages/checkout.php:237 pages/checkout.php:244 pages/checkout.php:246
7356
  #: pages/checkout.php:248 pages/checkout.php:255
7357
  msgid "Full Name"
7358
  msgstr ""
7359
 
7360
+ #: pages/checkout.php:259 pages/checkout.php:233 pages/checkout.php:236
7361
  #: pages/checkout.php:238 pages/checkout.php:245 pages/checkout.php:247
7362
  #: pages/checkout.php:249 pages/checkout.php:256
7363
  msgid "LEAVE THIS BLANK"
7364
  msgstr ""
7365
 
7366
+ #: pages/checkout.php:283 pages/checkout.php:257 pages/checkout.php:260
7367
  #: pages/checkout.php:262 pages/checkout.php:269 pages/checkout.php:271
7368
  #: pages/checkout.php:273 pages/checkout.php:280
7369
  #, php-format
7372
  "different account for this membership, <a href=\"%s\">log out now</a>."
7373
  msgstr ""
7374
 
7375
+ #: pages/checkout.php:299 pages/checkout.php:276 pages/checkout.php:278
7376
  #: pages/checkout.php:285 pages/checkout.php:287 pages/checkout.php:289
7377
  #: pages/checkout.php:292 pages/checkout.php:296 pages/checkout.php:299
7378
  msgid "Choose your Payment Method"
7379
  msgstr ""
7380
 
7381
+ #: pages/checkout.php:308 pages/checkout.php:284 pages/checkout.php:286
7382
  #: pages/checkout.php:293 pages/checkout.php:296 pages/checkout.php:298
7383
  #: pages/checkout.php:300 pages/checkout.php:305 pages/checkout.php:307
7384
  msgid "Check Out with a Credit Card Here"
7385
  msgstr ""
7386
 
7387
+ #: pages/checkout.php:696 pages/checkout.php:277 pages/checkout.php:284
7388
  #: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
7389
  #: pages/checkout.php:681 pages/checkout.php:686 pages/checkout.php:690
7390
  #: pages/checkout.php:692 pages/checkout.php:693 pages/checkout.php:696
7393
  msgid "I agree to the %s"
7394
  msgstr ""
7395
 
7396
+ #: pages/checkout.php:716 pages/checkout.php:667 pages/checkout.php:674
7397
  #: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
7398
  #: pages/checkout.php:701 pages/checkout.php:706 pages/checkout.php:710
7399
  #: pages/checkout.php:712 pages/checkout.php:713 pages/checkout.php:716
7401
  msgid "Complete Payment"
7402
  msgstr ""
7403
 
7404
+ #: pages/checkout.php:738 pages/checkout.php:687 pages/checkout.php:694
7405
  #: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
7406
  #: pages/checkout.php:723 pages/checkout.php:728 pages/checkout.php:732
7407
  #: pages/checkout.php:734 pages/checkout.php:735 pages/checkout.php:738
7546
  msgid "&larr; Return to Home"
7547
  msgstr ""
7548
 
7549
+ #: paid-memberships-pro.php:127 adminpages/orders.php:398
7550
  #: adminpages/orders.php:448 paid-memberships-pro.php:115
7551
  #: paid-memberships-pro.php:116 paid-memberships-pro.php:123
7552
  #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
7555
  msgid "Testing Only"
7556
  msgstr ""
7557
 
7558
+ #: paid-memberships-pro.php:132 paid-memberships-pro.php:120
7559
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:128
7560
  #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
7561
  #: paid-memberships-pro.php:131 paid-memberships-pro.php:133
7563
  msgid "PayPal Payflow Pro/PayPal Pro"
7564
  msgstr ""
7565
 
7566
+ #: paid-memberships-pro.php:137 paid-memberships-pro.php:125
7567
  #: paid-memberships-pro.php:126 paid-memberships-pro.php:133
7568
  #: paid-memberships-pro.php:134 paid-memberships-pro.php:135
7569
  #: paid-memberships-pro.php:136 paid-memberships-pro.php:138
7571
  msgid "Cybersource"
7572
  msgstr ""
7573
 
7574
+ #: paid-memberships-pro.php:158 paid-memberships-pro.php:156
7575
  #: paid-memberships-pro.php:157 paid-memberships-pro.php:159
7576
  #: paid-memberships-pro.php:166
7577
  msgid "Once a month"
7654
  msgstr ""
7655
 
7656
  #: preheaders/cancel.php:60 preheaders/cancel.php:24 preheaders/cancel.php:25
7657
+ #: preheaders/cancel.php:28 preheaders/cancel.php:59 preheaders/cancel.php:60
7658
  msgid "Your membership has been cancelled."
7659
  msgstr ""
7660
 
pages/billing.php CHANGED
@@ -18,12 +18,29 @@
18
 
19
  $level = $current_user->membership_level;
20
 
 
21
  //Make sure the $level object is a valid level definition
22
  if(isset($level->id) && !empty($level->id))
23
  {
24
  ?>
25
  <p><?php printf(__("Logged in as <strong>%s</strong>.", 'paid-memberships-pro' ), $current_user->user_login);?> <small><a href="<?php echo wp_logout_url(get_bloginfo("url") . "/membership-checkout/?level=" . $level->id);?>"><?php _e("logout", 'paid-memberships-pro' );?></a></small></p>
 
 
 
 
 
 
 
 
26
  <ul>
 
 
 
 
 
 
 
 
27
  <li><strong><?php _e("Level", 'paid-memberships-pro' );?>:</strong> <?php echo $level->name?></li>
28
  <?php if($level->billing_amount > 0) { ?>
29
  <li><strong><?php _e("Membership Fee", 'paid-memberships-pro' );?>:</strong>
@@ -37,12 +54,21 @@
37
  echo pmpro_formatPrice($current_user->membership_level->billing_amount);
38
  }
39
  ?>
 
40
  </li>
41
  <?php } ?>
42
 
43
  <?php if($level->billing_limit) { ?>
44
  <li><strong><?php _e("Duration", 'paid-memberships-pro' );?>:</strong> <?php echo $level->billing_limit.' '.sornot($level->cycle_period,$level->billing_limit)?></li>
45
  <?php } ?>
 
 
 
 
 
 
 
 
46
  </ul>
47
  <?php
48
  }
18
 
19
  $level = $current_user->membership_level;
20
 
21
+
22
  //Make sure the $level object is a valid level definition
23
  if(isset($level->id) && !empty($level->id))
24
  {
25
  ?>
26
  <p><?php printf(__("Logged in as <strong>%s</strong>.", 'paid-memberships-pro' ), $current_user->user_login);?> <small><a href="<?php echo wp_logout_url(get_bloginfo("url") . "/membership-checkout/?level=" . $level->id);?>"><?php _e("logout", 'paid-memberships-pro' );?></a></small></p>
27
+ <?php
28
+ /**
29
+ * pmpro_billing_message_top hook to add in general content to the billing page without using custom page templates.
30
+ *
31
+ * @since 1.9.2
32
+ */
33
+ do_action('pmpro_billing_message_top'); ?>
34
+
35
  <ul>
36
+ <?php
37
+ /**
38
+ * pmpro_billing_bullets_top hook allows you to add information to the billing list (at the top).
39
+ *
40
+ * @since 1.9.2
41
+ * @param {objects} {$level} {Passes the $level object}
42
+ */
43
+ do_action('pmpro_billing_bullets_top', $level);?>
44
  <li><strong><?php _e("Level", 'paid-memberships-pro' );?>:</strong> <?php echo $level->name?></li>
45
  <?php if($level->billing_amount > 0) { ?>
46
  <li><strong><?php _e("Membership Fee", 'paid-memberships-pro' );?>:</strong>
54
  echo pmpro_formatPrice($current_user->membership_level->billing_amount);
55
  }
56
  ?>
57
+
58
  </li>
59
  <?php } ?>
60
 
61
  <?php if($level->billing_limit) { ?>
62
  <li><strong><?php _e("Duration", 'paid-memberships-pro' );?>:</strong> <?php echo $level->billing_limit.' '.sornot($level->cycle_period,$level->billing_limit)?></li>
63
  <?php } ?>
64
+ <?php
65
+ /**
66
+ * pmpro_billing_bullets_top hook allows you to add information to the billing list (at the bottom).
67
+ *
68
+ * @since 1.9.2
69
+ * @param {objects} {$level} {Passes the $level object}
70
+ */
71
+ do_action('pmpro_billing_bullets_bottom', $level);?>
72
  </ul>
73
  <?php
74
  }
pages/checkout.php CHANGED
@@ -16,6 +16,9 @@
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
  {
@@ -423,7 +426,7 @@
423
  ?>
424
  <div>
425
  <label for="bcountry"><?php _e('Country', 'paid-memberships-pro' );?></label>
426
- <select name="bcountry" class=" <?php echo pmpro_getClassForField("bcountry");?>">
427
  <?php
428
  global $pmpro_countries, $pmpro_default_country;
429
  if(!$bcountry)
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
+ <?php if ($discount_code && $pmpro_review) { ?>
20
+ <input class="input <?php echo pmpro_getClassForField("discount_code");?>" id="discount_code" name="discount_code" type="hidden" size="20" value="<?php echo esc_attr($discount_code) ?>" />
21
+ <?php } ?>
22
 
23
  <?php if($pmpro_msg)
24
  {
426
  ?>
427
  <div>
428
  <label for="bcountry"><?php _e('Country', 'paid-memberships-pro' );?></label>
429
+ <select name="bcountry" id="bcountry" class=" <?php echo pmpro_getClassForField("bcountry");?>">
430
  <?php
431
  global $pmpro_countries, $pmpro_default_country;
432
  if(!$bcountry)
pages/levels.php CHANGED
@@ -95,9 +95,9 @@ if($pmpro_msg)
95
  <nav id="nav-below" class="navigation" role="navigation">
96
  <div class="nav-previous alignleft">
97
  <?php if(!empty($current_user->membership_level->ID)) { ?>
98
- <a href="<?php echo pmpro_url("account")?>"><?php _e('&larr; Return to Your Account', 'paid-memberships-pro' );?></a>
99
  <?php } else { ?>
100
- <a href="<?php echo home_url()?>"><?php _e('&larr; Return to Home', 'paid-memberships-pro' );?></a>
101
  <?php } ?>
102
  </div>
103
  </nav>
95
  <nav id="nav-below" class="navigation" role="navigation">
96
  <div class="nav-previous alignleft">
97
  <?php if(!empty($current_user->membership_level->ID)) { ?>
98
+ <a href="<?php echo pmpro_url("account")?>" id="pmpro_levels-return-account"><?php _e('&larr; Return to Your Account', 'paid-memberships-pro' );?></a>
99
  <?php } else { ?>
100
+ <a href="<?php echo home_url()?>" id="pmpro_levels-return-home"><?php _e('&larr; Return to Home', 'paid-memberships-pro' );?></a>
101
  <?php } ?>
102
  </div>
103
  </nav>
paid-memberships-pro.php CHANGED
@@ -1,198 +1,191 @@
1
- <?php
2
- /*
3
- Plugin Name: Paid Memberships Pro
4
- Plugin URI: http://www.paidmembershipspro.com
5
- Description: Plugin to Handle Memberships
6
- Version: 1.9.1
7
- Author: Stranger Studios
8
- Author URI: http://www.strangerstudios.com
9
- Text Domain: paid-memberships-pro
10
- Domain Path: /languages
11
- */
12
- /*
13
- Copyright 2011 Stranger Studios (email : jason@strangerstudios.com)
14
- GPLv2 Full license details in license.txt
15
- */
16
-
17
- //version constant
18
- define('PMPRO_VERSION', '1.9.1');
19
- define('PMPRO_USER_AGENT', 'Paid Memberships Pro v' . PMPRO_VERSION . '; ' . site_url());
20
- define('PMPRO_MIN_PHP_VERSION', '5.6');
21
-
22
- //if the session has been started yet, start it (ignore if running from command line)
23
- if(!defined('PMPRO_USE_SESSIONS') || PMPRO_USE_SESSIONS == true) {
24
- if(defined('STDIN')) {
25
- //command line
26
- } else {
27
- if (version_compare(phpversion(), '5.4.0', '>=')) {
28
- if (session_status() == PHP_SESSION_NONE)
29
- session_start();
30
- } else {
31
- if(!session_id())
32
- session_start();
33
- }
34
- }
35
- }
36
-
37
- /*
38
- Includes
39
- */
40
- define("PMPRO_DIR", dirname(__FILE__));
41
- require_once(PMPRO_DIR . "/includes/localization.php"); //localization functions
42
- require_once(PMPRO_DIR . "/includes/lib/name-parser.php"); //parses "Jason Coleman" into firstname=>Jason, lastname=>Coleman
43
- require_once(PMPRO_DIR . "/includes/functions.php"); //misc functions used by the plugin
44
- require_once(PMPRO_DIR . "/includes/updates.php"); //database and other updates
45
- require_once(PMPRO_DIR . "/includes/upgradecheck.php"); //database and other updates
46
-
47
- if(!defined('PMPRO_LICENSE_SERVER'))
48
- require_once(PMPRO_DIR . "/includes/license.php"); //defines location of addons data and licenses
49
-
50
- require_once(PMPRO_DIR . "/scheduled/crons.php"); //crons for expiring members, sending expiration emails, etc
51
-
52
- require_once(PMPRO_DIR . "/classes/class.memberorder.php"); //class to process and save orders
53
- require_once(PMPRO_DIR . "/classes/class.pmproemail.php"); //setup and filter emails sent by PMPro
54
-
55
- require_once(PMPRO_DIR . "/includes/filters.php"); //filters, hacks, etc, moved into the plugin
56
- require_once(PMPRO_DIR . "/includes/reports.php"); //load reports for admin (reports may also include tracking code, etc)
57
- require_once(PMPRO_DIR . "/includes/adminpages.php"); //dashboard pages
58
- require_once(PMPRO_DIR . "/includes/services.php"); //services loaded by AJAX and via webhook, etc
59
- require_once(PMPRO_DIR . "/includes/metaboxes.php"); //metaboxes for dashboard
60
- require_once(PMPRO_DIR . "/includes/profile.php"); //edit user/profile fields
61
- require_once(PMPRO_DIR . "/includes/https.php"); //code related to HTTPS/SSL
62
- require_once(PMPRO_DIR . "/includes/notifications.php"); //check for notifications at PMPro, shown in PMPro settings
63
- require_once(PMPRO_DIR . "/includes/init.php"); //code run during init, set_current_user, and wp hooks
64
- require_once(PMPRO_DIR . "/includes/content.php"); //code to check for memebrship and protect content
65
- require_once(PMPRO_DIR . "/includes/email.php"); //code related to email
66
- require_once(PMPRO_DIR . "/includes/recaptcha.php"); //load recaptcha files if needed
67
- require_once(PMPRO_DIR . "/includes/cleanup.php"); //clean things up when deletes happen, etc.
68
- require_once(PMPRO_DIR . "/includes/login.php"); //code to redirect away from login/register page
69
- require_once(PMPRO_DIR . "/includes/capabilities.php"); //manage PMPro capabilities for roles
70
-
71
- require_once(PMPRO_DIR . "/includes/xmlrpc.php"); //xmlrpc methods
72
-
73
- require_once(PMPRO_DIR . "/shortcodes/checkout_button.php"); //[pmpro_checkout_button] shortcode to show link to checkout for a level
74
- require_once(PMPRO_DIR . "/shortcodes/membership.php"); //[membership] shortcode to hide/show member content
75
- require_once(PMPRO_DIR . "/shortcodes/pmpro_account.php"); //[pmpro_account] shortcode to show account information
76
- require_once(PMPRO_DIR . "/shortcodes/pmpro_member.php"); //[pmpro_member] shortcode to show user fields
77
-
78
- //load gateway
79
- require_once(PMPRO_DIR . "/classes/gateways/class.pmprogateway.php"); //loaded by memberorder class when needed
80
-
81
- //load payment gateway class
82
- require_once(PMPRO_DIR . "/classes/gateways/class.pmprogateway_authorizenet.php");
83
-
84
- if ( version_compare( PHP_VERSION, '5.4.45', '>=' )) {
85
- require_once( PMPRO_DIR . "/classes/gateways/class.pmprogateway_braintree.php" );
86
- }
87
-
88
- require_once(PMPRO_DIR . "/classes/gateways/class.pmprogateway_check.php");
89
- require_once(PMPRO_DIR . "/classes/gateways/class.pmprogateway_cybersource.php");
90
- require_once(PMPRO_DIR . "/classes/gateways/class.pmprogateway_payflowpro.php");
91
- require_once(PMPRO_DIR . "/classes/gateways/class.pmprogateway_paypal.php");
92
- require_once(PMPRO_DIR . "/classes/gateways/class.pmprogateway_paypalexpress.php");
93
- require_once(PMPRO_DIR . "/classes/gateways/class.pmprogateway_paypalstandard.php");
94
-
95
- if ( version_compare( PHP_VERSION, '5.3.29', '>=' )) {
96
- require_once( PMPRO_DIR . "/classes/gateways/class.pmprogateway_stripe.php" );
97
- }
98
-
99
- require_once(PMPRO_DIR . "/classes/gateways/class.pmprogateway_twocheckout.php");
100
-
101
- /*
102
- Setup the DB and check for upgrades
103
- */
104
- global $wpdb;
105
-
106
- //check if the DB needs to be upgraded
107
- if(is_admin())
108
- pmpro_checkForUpgrades();
109
-
110
- //load plugin updater
111
- if(is_admin())
112
- require_once(PMPRO_DIR . "/includes/addons.php");
113
-
114
- /*
115
- Definitions
116
- */
117
- define("SITENAME", str_replace("&#039;", "'", get_bloginfo("name")));
118
- $urlparts = explode("//", home_url());
119
- define("SITEURL", $urlparts[1]);
120
- define("SECUREURL", str_replace("http://", "https://", get_bloginfo("wpurl")));
121
- define("PMPRO_URL", WP_PLUGIN_URL . "/paid-memberships-pro");
122
- define("PMPRO_DOMAIN", pmpro_getDomainFromURL(site_url()));
123
- define("PAYPAL_BN_CODE", "PaidMembershipsPro_SP");
124
-
125
- /*
126
- Globals
127
- */
128
- global $gateway_environment;
129
- $gateway_environment = pmpro_getOption("gateway_environment");
130
-
131
-
132
- // Returns a list of all available gateway
133
- function pmpro_gateways(){
134
- $pmpro_gateways = array(
135
- '' => __('Testing Only', 'paid-memberships-pro' ),
136
- 'check' => __('Pay by Check', 'paid-memberships-pro' ),
137
- 'stripe' => __('Stripe', 'paid-memberships-pro' ),
138
- 'paypalexpress' => __('PayPal Express', 'paid-memberships-pro' ),
139
- 'paypal' => __('PayPal Website Payments Pro', 'paid-memberships-pro' ),
140
- 'payflowpro' => __('PayPal Payflow Pro/PayPal Pro', 'paid-memberships-pro' ),
141
- 'paypalstandard' => __('PayPal Standard', 'paid-memberships-pro' ),
142
- 'authorizenet' => __('Authorize.net', 'paid-memberships-pro' ),
143
- 'braintree' => __('Braintree Payments', 'paid-memberships-pro' ),
144
- 'twocheckout' => __('2Checkout', 'paid-memberships-pro' ),
145
- 'cybersource' => __('Cybersource', 'paid-memberships-pro' )
146
- );
147
-
148
- return apply_filters( 'pmpro_gateways', $pmpro_gateways );
149
- }
150
-
151
-
152
- //when checking levels for users, we save the info here for caching. each key is a user id for level object for that user.
153
- global $all_membership_levels;
154
-
155
- //we sometimes refer to this array of levels
156
- global $membership_levels;
157
- $membership_levels = $wpdb->get_results( "SELECT * FROM {$wpdb->pmpro_membership_levels}", OBJECT );
158
-
159
- /*
160
- Activation/Deactivation
161
- */
162
- //we need monthly crons
163
- function pmpro_cron_schedules_monthly($schedules) {
164
- $schedules['monthly'] = array(
165
- 'interval' => 2635200,
166
- 'display' => __('Once a month')
167
- );
168
- return $schedules;
169
- }
170
- add_filter( 'cron_schedules', 'pmpro_cron_schedules_monthly');
171
-
172
- //activation
173
- function pmpro_activation() {
174
- //schedule crons
175
- pmpro_maybe_schedule_event(current_time('timestamp'), 'daily', 'pmpro_cron_expire_memberships');
176
- pmpro_maybe_schedule_event(current_time('timestamp')+1, 'daily', 'pmpro_cron_expiration_warnings');
177
- pmpro_maybe_schedule_event(current_time('timestamp'), 'monthly', 'pmpro_cron_credit_card_expiring_warnings');
178
-
179
- pmpro_set_capabilities_for_role( 'administrator', 'enable' );
180
-
181
- do_action('pmpro_activation');
182
- }
183
-
184
- //deactivation
185
- function pmpro_deactivation() {
186
- //remove crons
187
- wp_clear_scheduled_hook('pmpro_cron_expiration_warnings');
188
- wp_clear_scheduled_hook('pmpro_cron_trial_ending_warnings');
189
- wp_clear_scheduled_hook('pmpro_cron_expire_memberships');
190
- wp_clear_scheduled_hook('pmpro_cron_credit_card_expiring_warnings');
191
-
192
- //remove caps from admin role
193
- pmpro_set_capabilities_for_role('administrator', 'disable');
194
-
195
- do_action('pmpro_deactivation');
196
- }
197
- register_activation_hook(__FILE__, 'pmpro_activation');
198
- register_deactivation_hook(__FILE__, 'pmpro_deactivation');
1
+ <?php
2
+ /*
3
+ Plugin Name: Paid Memberships Pro
4
+ Plugin URI: http://www.paidmembershipspro.com
5
+ Description: Plugin to Handle Memberships
6
+ Version: 1.9.2.1
7
+ Author: Stranger Studios
8
+ Author URI: http://www.strangerstudios.com
9
+ Text Domain: paid-memberships-pro
10
+ Domain Path: /languages
11
+ */
12
+ /*
13
+ Copyright 2011 Stranger Studios (email : jason@strangerstudios.com)
14
+ GPLv2 Full license details in license.txt
15
+ */
16
+
17
+ // version constant
18
+ define( 'PMPRO_VERSION', '1.9.2.1' );
19
+ define( 'PMPRO_USER_AGENT', 'Paid Memberships Pro v' . PMPRO_VERSION . '; ' . site_url() );
20
+ define( 'PMPRO_MIN_PHP_VERSION', '5.6' );
21
+
22
+ /*
23
+ Includes
24
+ */
25
+ define( 'PMPRO_BASE_FILE', __FILE__ );
26
+ define( 'PMPRO_DIR', dirname( __FILE__ ) );
27
+
28
+ require_once( PMPRO_DIR . '/classes/class-deny-network-activation.php' ); //stop PMPro from being network activated
29
+ require_once( PMPRO_DIR . '/includes/sessions.php' ); // start/close PHP seession vars
30
+
31
+ require_once( PMPRO_DIR . '/includes/localization.php' ); // localization functions
32
+ require_once( PMPRO_DIR . '/includes/lib/name-parser.php' ); // parses "Jason Coleman" into firstname=>Jason, lastname=>Coleman
33
+ require_once( PMPRO_DIR . '/includes/functions.php' ); // misc functions used by the plugin
34
+ require_once( PMPRO_DIR . '/includes/updates.php' ); // database and other updates
35
+ require_once( PMPRO_DIR . '/includes/upgradecheck.php' ); // database and other updates
36
+
37
+ if ( ! defined( 'PMPRO_LICENSE_SERVER' ) ) {
38
+ require_once( PMPRO_DIR . '/includes/license.php' ); // defines location of addons data and licenses
39
+ }
40
+
41
+ require_once( PMPRO_DIR . '/scheduled/crons.php' ); // crons for expiring members, sending expiration emails, etc
42
+
43
+ require_once( PMPRO_DIR . '/classes/class.memberorder.php' ); // class to process and save orders
44
+ require_once( PMPRO_DIR . '/classes/class.pmproemail.php' ); // setup and filter emails sent by PMPro
45
+
46
+ require_once( PMPRO_DIR . '/includes/filters.php' ); // filters, hacks, etc, moved into the plugin
47
+ require_once( PMPRO_DIR . '/includes/reports.php' ); // load reports for admin (reports may also include tracking code, etc)
48
+ require_once( PMPRO_DIR . '/includes/adminpages.php' ); // dashboard pages
49
+ require_once( PMPRO_DIR . '/includes/services.php' ); // services loaded by AJAX and via webhook, etc
50
+ require_once( PMPRO_DIR . '/includes/metaboxes.php' ); // metaboxes for dashboard
51
+ require_once( PMPRO_DIR . '/includes/profile.php' ); // edit user/profile fields
52
+ require_once( PMPRO_DIR . '/includes/https.php' ); // code related to HTTPS/SSL
53
+ require_once( PMPRO_DIR . '/includes/notifications.php' ); // check for notifications at PMPro, shown in PMPro settings
54
+ require_once( PMPRO_DIR . '/includes/init.php' ); // code run during init, set_current_user, and wp hooks
55
+ require_once( PMPRO_DIR . '/includes/content.php' ); // code to check for memebrship and protect content
56
+ require_once( PMPRO_DIR . '/includes/email.php' ); // code related to email
57
+ require_once( PMPRO_DIR . '/includes/recaptcha.php' ); // load recaptcha files if needed
58
+ require_once( PMPRO_DIR . '/includes/cleanup.php' ); // clean things up when deletes happen, etc.
59
+ require_once( PMPRO_DIR . '/includes/login.php' ); // code to redirect away from login/register page
60
+ require_once( PMPRO_DIR . '/includes/capabilities.php' ); // manage PMPro capabilities for roles
61
+
62
+ require_once( PMPRO_DIR . '/includes/xmlrpc.php' ); // xmlrpc methods
63
+
64
+ require_once( PMPRO_DIR . '/shortcodes/checkout_button.php' ); // [pmpro_checkout_button] shortcode to show link to checkout for a level
65
+ require_once( PMPRO_DIR . '/shortcodes/membership.php' ); // [membership] shortcode to hide/show member content
66
+ require_once( PMPRO_DIR . '/shortcodes/pmpro_account.php' ); // [pmpro_account] shortcode to show account information
67
+ require_once( PMPRO_DIR . '/shortcodes/pmpro_member.php' ); // [pmpro_member] shortcode to show user fields
68
+
69
+ // load gateway
70
+ require_once( PMPRO_DIR . '/classes/gateways/class.pmprogateway.php' ); // loaded by memberorder class when needed
71
+
72
+ // load payment gateway class
73
+ require_once( PMPRO_DIR . '/classes/gateways/class.pmprogateway_authorizenet.php' );
74
+
75
+ if ( version_compare( PHP_VERSION, '5.4.45', '>=' ) ) {
76
+ require_once( PMPRO_DIR . '/classes/gateways/class.pmprogateway_braintree.php' );
77
+ }
78
+
79
+ require_once( PMPRO_DIR . '/classes/gateways/class.pmprogateway_check.php' );
80
+ require_once( PMPRO_DIR . '/classes/gateways/class.pmprogateway_cybersource.php' );
81
+ require_once( PMPRO_DIR . '/classes/gateways/class.pmprogateway_payflowpro.php' );
82
+ require_once( PMPRO_DIR . '/classes/gateways/class.pmprogateway_paypal.php' );
83
+ require_once( PMPRO_DIR . '/classes/gateways/class.pmprogateway_paypalexpress.php' );
84
+ require_once( PMPRO_DIR . '/classes/gateways/class.pmprogateway_paypalstandard.php' );
85
+
86
+ if ( version_compare( PHP_VERSION, '5.3.29', '>=' ) ) {
87
+ require_once( PMPRO_DIR . '/classes/gateways/class.pmprogateway_stripe.php' );
88
+ }
89
+
90
+ require_once( PMPRO_DIR . '/classes/gateways/class.pmprogateway_twocheckout.php' );
91
+
92
+ /*
93
+ Setup the DB and check for upgrades
94
+ */
95
+ global $wpdb;
96
+
97
+ // check if the DB needs to be upgraded
98
+ if ( is_admin() ) {
99
+ pmpro_checkForUpgrades();
100
+ }
101
+
102
+ // load plugin updater
103
+ if ( is_admin() ) {
104
+ require_once( PMPRO_DIR . '/includes/addons.php' );
105
+ }
106
+
107
+ /*
108
+ Definitions
109
+ */
110
+ define( 'SITENAME', str_replace( '&#039;', "'", get_bloginfo( 'name' ) ) );
111
+ $urlparts = explode( '//', home_url() );
112
+ define( 'SITEURL', $urlparts[1] );
113
+ define( 'SECUREURL', str_replace( 'http://', 'https://', get_bloginfo( 'wpurl' ) ) );
114
+ define( 'PMPRO_URL', WP_PLUGIN_URL . '/paid-memberships-pro' );
115
+ define( 'PMPRO_DOMAIN', pmpro_getDomainFromURL( site_url() ) );
116
+ define( 'PAYPAL_BN_CODE', 'PaidMembershipsPro_SP' );
117
+
118
+ /*
119
+ Globals
120
+ */
121
+ global $gateway_environment;
122
+ $gateway_environment = pmpro_getOption( 'gateway_environment' );
123
+
124
+
125
+ // Returns a list of all available gateway
126
+ function pmpro_gateways() {
127
+ $pmpro_gateways = array(
128
+ '' => __( 'Testing Only', 'paid-memberships-pro' ),
129
+ 'check' => __( 'Pay by Check', 'paid-memberships-pro' ),
130
+ 'stripe' => __( 'Stripe', 'paid-memberships-pro' ),
131
+ 'paypalexpress' => __( 'PayPal Express', 'paid-memberships-pro' ),
132
+ 'paypal' => __( 'PayPal Website Payments Pro', 'paid-memberships-pro' ),
133
+ 'payflowpro' => __( 'PayPal Payflow Pro/PayPal Pro', 'paid-memberships-pro' ),
134
+ 'paypalstandard' => __( 'PayPal Standard', 'paid-memberships-pro' ),
135
+ 'authorizenet' => __( 'Authorize.net', 'paid-memberships-pro' ),
136
+ 'braintree' => __( 'Braintree Payments', 'paid-memberships-pro' ),
137
+ 'twocheckout' => __( '2Checkout', 'paid-memberships-pro' ),
138
+ 'cybersource' => __( 'Cybersource', 'paid-memberships-pro' ),
139
+ );
140
+
141
+ return apply_filters( 'pmpro_gateways', $pmpro_gateways );
142
+ }
143
+
144
+
145
+ // when checking levels for users, we save the info here for caching. each key is a user id for level object for that user.
146
+ global $all_membership_levels;
147
+
148
+ // we sometimes refer to this array of levels
149
+ global $membership_levels;
150
+ $membership_levels = $wpdb->get_results( "SELECT * FROM {$wpdb->pmpro_membership_levels}", OBJECT );
151
+
152
+ /*
153
+ Activation/Deactivation
154
+ */
155
+ // we need monthly crons
156
+ function pmpro_cron_schedules_monthly( $schedules ) {
157
+ $schedules['monthly'] = array(
158
+ 'interval' => 2635200,
159
+ 'display' => __( 'Once a month' ),
160
+ );
161
+ return $schedules;
162
+ }
163
+ add_filter( 'cron_schedules', 'pmpro_cron_schedules_monthly' );
164
+
165
+ // activation
166
+ function pmpro_activation() {
167
+ // schedule crons
168
+ pmpro_maybe_schedule_event( current_time( 'timestamp' ), 'daily', 'pmpro_cron_expire_memberships' );
169
+ pmpro_maybe_schedule_event( current_time( 'timestamp' ) + 1, 'daily', 'pmpro_cron_expiration_warnings' );
170
+ pmpro_maybe_schedule_event( current_time( 'timestamp' ), 'monthly', 'pmpro_cron_credit_card_expiring_warnings' );
171
+
172
+ pmpro_set_capabilities_for_role( 'administrator', 'enable' );
173
+
174
+ do_action( 'pmpro_activation' );
175
+ }
176
+
177
+ // deactivation
178
+ function pmpro_deactivation() {
179
+ // remove crons
180
+ wp_clear_scheduled_hook( 'pmpro_cron_expiration_warnings' );
181
+ wp_clear_scheduled_hook( 'pmpro_cron_trial_ending_warnings' );
182
+ wp_clear_scheduled_hook( 'pmpro_cron_expire_memberships' );
183
+ wp_clear_scheduled_hook( 'pmpro_cron_credit_card_expiring_warnings' );
184
+
185
+ // remove caps from admin role
186
+ pmpro_set_capabilities_for_role( 'administrator', 'disable' );
187
+
188
+ do_action( 'pmpro_deactivation' );
189
+ }
190
+ register_activation_hook( __FILE__, 'pmpro_activation' );
191
+ register_deactivation_hook( __FILE__, 'pmpro_deactivation' );
 
 
 
 
 
 
 
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: 4
5
- Tested up to: 4.7.4
6
- Stable tag: 1.9.1
7
 
8
  A revenue-generating machine for membership sites. Unlimited levels with recurring payment, protected content and member management.
9
 
@@ -115,6 +115,23 @@ Not sure? You can find out by doing a bit a research.
115
  [View All Screenshots](http://www.paidmembershipspro.com/features/screenshots/)
116
 
117
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
118
  = 1.9.1 =
119
  * BUG FIX: Fixed the code checking if the Stripe library is already loaded to compatability issues with other plugins bundling the Stripe API library.
120
  * BUG FIX: Cancel code now properly uses preg_replace when sanitizing the list of level ids to cancel.
2
  Contributors: strangerstudios
3
  Tags: memberships, membership, authorize.net, ecommerce, paypal, stripe, braintree, restrict access, restrict content, directory site, payflow
4
  Requires at least: 4
5
+ Tested up to: 4.8
6
+ Stable tag: 1.9.2.1
7
 
8
  A revenue-generating machine for membership sites. Unlimited levels with recurring payment, protected content and member management.
9
 
115
  [View All Screenshots](http://www.paidmembershipspro.com/features/screenshots/)
116
 
117
  == Changelog ==
118
+ = 1.9.2.1 =
119
+ * BUG FIX: Fixed issues with activation on single sites.
120
+ * BUG FIX: Starting PHP sessions earlier to fix issues with PayPal/PayPal Express checkouts.
121
+
122
+ = 1.9.2 =
123
+ * BUG FIX: Fixed issue where Braintree checkouts were failing with a CVV error when existing users checked out.
124
+ * BUG FIX: Fixed issue loading the Stripe library in PHP 5.6.
125
+ * BUG FIX: Member List CSV export was ignoring search parameter.
126
+ * BUG FIX: Discount codes weren't being remembered during the "review" step of a PayPal Express checkout. (Thanks, Rafe Colton)
127
+ * ENHANCEMENT/FIX: Search Filter would trigger incorrectly for REST API request by slug.
128
+ * ENHANCEMENT/FIX: Didn't always identify MasterCard cards correctly to set the CardType with some gateways.
129
+ * ENHANCEMENT/FIX: Some custom code or add ons (e.g. the Prorating and Auto-renewal Checkbox add ons) would sometimes break PayPal Website Payments Pro and PayPal Express subscriptions by trying to set the "Profile Start Date" longer than 1 year out. We now limit the Profile Start Date to 1 year out and try to squeeze up to 1 additional year into a trial if it's not already being used. This bug affects PayPal Standard as well, but the fix is different and not included in this release.
130
+ * ENHANCEMENT: Tested up to WordPress 4.8.
131
+ * ENHANCEMENT: Made countries translatable.
132
+ * ENHANCEMENT: Improved performance via PHP $_SESSION management improvements. We now only open the session before we set session vars and close the session when we are finished with it.
133
+ * ENHANCEMENT: Added to code to stop network activation of Paid Memberships Pro. (Thanks, Paul Barthmaier)
134
+
135
  = 1.9.1 =
136
  * BUG FIX: Fixed the code checking if the Stripe library is already loaded to compatability issues with other plugins bundling the Stripe API library.
137
  * BUG FIX: Cancel code now properly uses preg_replace when sanitizing the list of level ids to cancel.
services/stripe-webhook.php CHANGED
@@ -24,13 +24,13 @@
24
  require_once(dirname(__FILE__) . '/../../../../wp-load.php');
25
  }
26
 
27
- if(!class_exists("\\Stripe")) {
28
  require_once( PMPRO_DIR . "/includes/lib/Stripe/init.php" );
29
  }
30
 
31
 
32
  try {
33
- \Stripe\Stripe::setApiKey( pmpro_getOption( "stripe_secretkey" ) );
34
  } catch ( Exception $e ) {
35
  $logstr .= "Unable to set API key for Stripe gateway: " . $e->getMessage();
36
  pmpro_stripeWebhookExit();
24
  require_once(dirname(__FILE__) . '/../../../../wp-load.php');
25
  }
26
 
27
+ if(!class_exists("Stripe\Stripe")) {
28
  require_once( PMPRO_DIR . "/includes/lib/Stripe/init.php" );
29
  }
30
 
31
 
32
  try {
33
+ Stripe\Stripe::setApiKey( pmpro_getOption( "stripe_secretkey" ) );
34
  } catch ( Exception $e ) {
35
  $logstr .= "Unable to set API key for Stripe gateway: " . $e->getMessage();
36
  pmpro_stripeWebhookExit();
shortcodes/pmpro_account.php CHANGED
@@ -67,9 +67,9 @@ function pmpro_shortcode_account($atts, $content=null, $code="")
67
  <?php
68
  //To do: Only show CHANGE link if this level is in a group that has upgrade/downgrade rules
69
  if(count($pmpro_levels) > 1 && !defined("PMPRO_DEFAULT_LEVEL")) { ?>
70
- <a href="<?php echo pmpro_url("levels")?>"><?php _e("Change", 'paid-memberships-pro' );?></a>
71
  <?php } ?>
72
- <a href="<?php echo pmpro_url("cancel", "?levelstocancel=" . $level->id)?>"><?php _e("Cancel", 'paid-memberships-pro' );?></a>
73
  <?php do_action("pmpro_member_action_links_after"); ?>
74
  </div> <!-- end pmpro_actionlinks -->
75
  </td>
@@ -112,8 +112,8 @@ function pmpro_shortcode_account($atts, $content=null, $code="")
112
  <?php do_action('pmpro_account_bullets_bottom');?>
113
  </ul>
114
  <div class="pmpro_actionlinks">
115
- <a href="<?php echo admin_url('profile.php')?>"><?php _e("Edit Profile", 'paid-memberships-pro' );?></a>
116
- <a href="<?php echo admin_url('profile.php')?>"><?php _e('Change Password', 'paid-memberships-pro' );?></a>
117
  </div>
118
  </div> <!-- end pmpro_account-profile -->
119
  <?php } ?>
67
  <?php
68
  //To do: Only show CHANGE link if this level is in a group that has upgrade/downgrade rules
69
  if(count($pmpro_levels) > 1 && !defined("PMPRO_DEFAULT_LEVEL")) { ?>
70
+ <a href="<?php echo pmpro_url("levels")?>" id="pmpro_account-change"><?php _e("Change", 'paid-memberships-pro' );?></a>
71
  <?php } ?>
72
+ <a href="<?php echo pmpro_url("cancel", "?levelstocancel=" . $level->id)?>" id="pmpro_account-cancel"><?php _e("Cancel", 'paid-memberships-pro' );?></a>
73
  <?php do_action("pmpro_member_action_links_after"); ?>
74
  </div> <!-- end pmpro_actionlinks -->
75
  </td>
112
  <?php do_action('pmpro_account_bullets_bottom');?>
113
  </ul>
114
  <div class="pmpro_actionlinks">
115
+ <a href="<?php echo admin_url('profile.php')?>" id="pmpro_account-edit-profile"><?php _e("Edit Profile", 'paid-memberships-pro' );?></a>
116
+ <a href="<?php echo admin_url('profile.php')?>" id="pmpro_account-change-password"><?php _e('Change Password', 'paid-memberships-pro' );?></a>
117
  </div>
118
  </div> <!-- end pmpro_account-profile -->
119
  <?php } ?>